@charset "UTF-8";

/* =============================
common
============================= */
:root {
  --white: #fefefe;
  --red: #d34f5c;
  --pink: #f4e4e4;
  --rightPink: #f9f3f0;
  --green: #79ad65;
  --blue: #438cbf;
  --orange: #eb912a;
  --purple: #615fac;
  --black: #4d4d4d;
  --yellow: #fecd63;
  --rightYellow: #faf4e3;
  --contentPaddingSp: 5%;
  --contentPaddingPc: 11%;
  --shadow: 1px 1px 15px 0 rgba(0, 0, 0, 0.25);
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--black, #4d4d4d);
  background-color: var(--rightPink, #f9f6f4);
  line-height: 2;
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
}

.btnShadow img {
  filter: drop-shadow(1px 1px 15px rgba(0, 0, 0, 0.15));
}

.btnShadow {
  filter: drop-shadow(1px 1px 15px rgba(0, 0, 0, 0.15));
}

.shadow {
  filter: drop-shadow(1px 1px 15px rgba(0, 0, 0, 0.15));
}

.sp-only {
  display: block;
}

.pc-only {
  display: none;
}

.section-title {
  margin: 80px auto 40px;
  text-align: center;
}

.section-title__en {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: var(--red);
}

.section-title__jp {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 10px;
}

.section-title__jp::before {
  position: absolute;
  border-bottom: 3px solid var(--red);
  top: 100%;
  left: 50%;
  transform: translate(-50%);
  width: 30px;
  content: "";
}

.page-title {
  margin: 140px auto 40px;
  text-align: center;
}

.page-title__en {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: var(--red);
}

.page-title__jp {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 10px;
}

.page-title__jp::before {
  position: absolute;
  border-bottom: 3px solid var(--red);
  top: 100%;
  left: 50%;
  transform: translate(-50%);
  width: 30px;
  content: "";
}

.pcBr {
  display: none;
}

.underline {
  background: linear-gradient(transparent 70%, var(--yellow) 50%);
}

/* common pc */
@media screen and (min-width: 769px) {
  body {
    font-size: 2.4rem;
    line-height: 2;
  }

  .sp-only {
    display: none;
  }

  .pc-only {
    display: block;
  }

  .section-title {
    margin: 200px auto 120px;
  }

  .section-title__en {
    font-size: 2.4rem;
  }

  .section-title__jp {
    font-size: 4.8rem;
    padding-bottom: 20px;
  }

  .section-title__jp::before {
    border-bottom: 5px solid var(--red);
    top: 100%;
    left: 50%;
    transform: translate(-50%);
    width: 60px;
  }

  .page-title {
    margin: 200px auto 120px;
  }

  .page-title__en {
    font-size: 2.4rem;
  }

  .page-title__jp {
    font-size: 4.8rem;
    padding-bottom: 20px;
  }

  .page-title__jp::before {
    border-bottom: 5px solid var(--red);
    top: 100%;
    left: 50%;
    transform: translate(-50%);
    width: 60px;
  }

  .spBr {
    display: none;
  }
}
/* pc 769px */

/* =============================
Header
============================= */
.header-pc {
  display: none;
}

.header-sp {
  display: block;
}

.header__inner {
  width: 100%;
  height: 60px;
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  position: fixed;
  z-index: 100;
  top: 0;
}

.header__logo {
  width: 45vw;
  max-width: 180px;
  margin-left: 10px;
}

.header__btn {
  display: flex;
}

/* common pc */
@media screen and (min-width: 1024px) {
  .header-pc {
    display: block;
  }

  .header-sp {
    display: none;
  }

  .header__inner {
    width: min(97%, 1440px);
    height: 70px;
    border-radius: 50px;
    filter: drop-shadow(1px 1px 15px rgba(0, 0, 0, 0.15));

    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
  }
  .header__logo {
    margin-left: 3.47vw;
    margin-bottom: 0;
  }

  .header__logo a {
    display: flex;
    align-items: center;
    height: 45px;
  }

  .header__logo img {
    display: block;
    height: 45px;
    width: auto;
    max-width: none;
  }

  .header__menu {
    display: flex;
    gap: 0 30px;
    margin-right: 12px;
    align-items: center;
  }

  .header__nav-list {
    display: flex;
    gap: 0 2em;
  }

  .header__nav-item {
    font-size: 1.8rem;
    position: relative;
  }

  .header__nav-item::after {
    position: absolute;
    top: 20%;
    left: 100%;
    margin: 0 1.5em;
    content: "";
    width: 1px;
    height: 60%;
    background-color: #949494;
  }

  .header__nav-item:last-child::after {
    display: none;
  }

  .header__btn.pc-only {
    width: 14vw;
  }
}
/* pc 769px */

/* =============================
Drawer
============================= */
/* .drawer 初期表示 */
.drawer {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  background-color: var(--rightPink);
}

.drawer__inner {
  padding: 87px var(--contentPaddingSp) 0;
}

.drawer__list {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}

.drawer__item {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  background-color: var(--pink);
  font-size: 2rem;
  display: flex;
  align-items: center;
  border-radius: 10px;
  gap: 10px;
}

.drawer__item::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 14px;
  background-image: url(../images/icon/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.drawer__info {
  margin-top: 20px;
}

.drawer__address {
  font-size: 1.6rem;
}

.drawer__telfax {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
}

.drawer__btn {
  display: block;
  width: 250px;
  margin: 20px auto;
}

/* .drawer.active */
.drawer.active {
  transform: translateX(0);
}

body.active {
  overflow: hidden;
}

.header__menu-button.active {
  opacity: 0.7;
}

/* =============================
footer
============================= */

.footer {
  background-color: var(--pink);
}

.footer__inner {
  padding: 40px var(--contentPaddingSp);
  margin: 0 auto;
}

.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  background-image: repeating-linear-gradient(
    90deg,
    #f75493,
    #f75493 5px,
    transparent 5px,
    transparent 10px
  );
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}

.footer__logo {
  width: 216px;
  padding: 0;
}

.footer__pagetop {
  width: 60px;
}

.footer__info {
  padding: 20px 0;
}

/* .footer__detail {
      display: flex;
    flex-direction: column;
    gap: 10px 0;
} */

.footer__address {
  font-size: 1.6rem;
}

.footer__map {
  border-bottom: 1px solid var(--black);
}

.footer__telfax {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.footer__nav-list {
  font-size: 20px;
  line-height: 2.4;
}

.footer__btn {
  width: 250px;
  margin-top: 20px;
}

.footer__copy {
  background-color: var(--white);
  padding: 20px;
  text-align: center;
  font-size: 1.4rem;
  font-style: regular;
}

/* footer pc */
@media screen and (min-width: 769px) {
  .footer__inner {
    padding: 100px 5%;
    max-width: 1440px;
  }

  .footer__main {
    padding-bottom: 40px;
  }

  .footer__logo {
    width: 360px;
  }

  .footer__pagetop {
    width: 80px;
  }

  .footer__info {
    padding: 40px 0 0;
    display: flex;
    justify-content: space-between;
  }

  .footer__address {
    font-size: 2rem;
  }

  .footer__telfax {
    font-size: 3.2rem;
  }

  .footer__nav {
    text-align: start;
  }

  .footer__btn {
    margin-top: 20px;
  }

  .footer__copy {
    padding: 45px 0;
    text-align: center;
    font-size: 2rem;
  }
}
