@charset "UTF-8";
:root {
  /* font */
  --font: "Shippori Mincho", serif;
  --font-zen-old: "Zen Old Mincho", serif;
  --font-en: "EB Garamond", serif;
  /* color */
  --corporate: #F5ABAB;
  /* value */
  --header-h: 60px;
}
@media (min-width: 64em) {
  :root {
    --header-h: 100px;
  }
}

html {
  font-size: revert;
}

body {
  font-size: 1rem;
  font-family: var(--font);
  color: #444;
  overflow-wrap: anywhere;
  /* 収まらない場合に折り返す */
  word-break: normal;
  /* 単語の分割はデフォルトに依存 */
  line-break: strict;
  /* 禁則処理を厳格に適用 */
  font-feature-settings: "palt";
  overflow: hidden;
}

a {
  transition-property: color, opacity, background-color;
  transition-duration: 0.8s;
}

main {
  margin-top: var(--header-h);
}

.en {
  font-family: var(--font-en);
}

.container-m {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 86.25rem;
  padding: 0 !important;
}

.wrapper {
  padding-left: clamp(0.938rem, -0.341rem + 6.39vw, 3.75rem);
  padding-right: clamp(0.938rem, -0.341rem + 6.39vw, 3.75rem);
  /* val：15px-60px | view：320px-1024px */
  max-width: none;
}

/* title-section */
.title-section {
  color: var(--corporate);
  margin-bottom: clamp(74px, 4.6875vw, 90px);
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: min(0.9375vw, 18px);
  font-weight: normal;
  text-align: center;
}
.title-section .sub {
  font-size: 1rem;
  font-family: var(--font-en);
}
@media (min-width: 40em) {
  .title-section .sub {
    font-size: 1.25rem;
  }
}
.title-section .title {
  font-size: 1.75rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.4em;
  text-decoration-thickness: 2px;
}
@media (min-width: 40em) {
  .title-section .title {
    font-size: 2.25rem;
  }
}
.title-section .title .small {
  font-size: 1.125rem;
}
@media (min-width: 40em) {
  .title-section .title .small {
    font-size: 1.375rem;
  }
}

/* icon-sakura */
.icon-sakura {
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 40em) {
  .icon-sakura {
    margin-bottom: 40px;
  }
}

/* button-square */
.button-square {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  color: var(--corporate);
  background: #fff;
  min-height: 89px;
  padding: 30px;
  align-items: center;
  justify-items: end;
}
@media not all and (min-width: 40em) {
  .button-square {
    padding: 15px;
    min-height: 65px;
  }
}
.button-square::before {
  content: "";
}
.button-square::after {
  content: "\f08e";
  font: var(--fa-font-solid);
  margin-left: 10px;
}
.button-square.--red {
  background: #FF7363;
  color: #fff;
}

/* list-item */
.list-item-circle {
  --color: #F3B783;
  padding-left: 18px;
  text-indent: -18px;
}
.list-item-circle::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  --size: 8px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: var(--color);
  transform: translateY(-0.2em);
}
.list-item-circle + .list-item-circle {
  margin-top: 10px;
}

/* mv */
.mv {
  background: url(img/lp-sakura/bg_mv_01.jpg) no-repeat center/cover;
  min-height: 59vh;
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 0 7.2916666667vw 0 10.4166666667vw;
}
@media (min-width: 40em) {
  .mv {
    min-height: 78vh;
  }
}

/* intro */
.intro {
  font-family: var(--font-zen-old);
  position: relative;
  z-index: 0;
  background: no-repeat;
  background-image: url(img/lp-sakura/bg_intro_02.svg), url(img/lp-sakura/bg_intro_01.png);
  background-position: bottom center, center;
  background-size: 100% auto, cover;
  padding: 353px 15px 400px;
  font-size: 1.125rem;
  text-shadow: 0px 0px 10px #FDF6F6, 0px 0px 10px #FDF6F6, 0px 0px 10px #FDF6F6, 0px 0px 10px #FDF6F6, 0px 0px 10px #FDF6F6;
}
@media (min-width: 27.5em) {
  .intro {
    padding: 317px 15px 340px;
  }
}
@media (min-width: 40em) {
  .intro {
    padding: 135px 15px;
  }
}
@media (min-width: 48em) {
  .intro {
    font-size: 1.25rem;
    padding: 135px min(23.2291666667vw, 446px);
  }
}
@media not all and (min-width: 48em) {
  .intro .container-m {
    max-width: 411px;
  }
}

.intro__title {
  font-size: 1.625rem;
  text-align: center;
  font-weight: normal;
}
@media (min-width: 48em) {
  .intro__title {
    font-size: 2rem;
  }
}

.intro__deco {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.intro__deco img {
  position: absolute;
}
.intro__deco img:nth-of-type(1) {
  left: -96px;
  top: -10px;
  z-index: 1;
}
@media (min-width: 27.5em) {
  .intro__deco img:nth-of-type(1) {
    top: min(0.8333333333vw, 16px);
    left: 0;
  }
}
.intro__deco img:nth-of-type(2) {
  right: -65px;
  top: 124px;
}
@media (min-width: 27.5em) {
  .intro__deco img:nth-of-type(2) {
    left: clamp(-1.438rem, -2.396rem + 2vw, 0rem);
    /* val：-23px-0px | view：768px-1920px */
    top: clamp(7.75rem, 5.25rem + 5.21vw, 11.5rem);
    /* val：124px-189px | view：768px-1920px */
  }
}
@media (min-width: 85.4375em) {
  .intro__deco img:nth-of-type(2) {
    left: min(4.21875vw, 81px);
  }
}
.intro__deco img:nth-of-type(3) {
  left: 0px;
  top: 212px;
}
@media (min-width: 27.5em) {
  .intro__deco img:nth-of-type(3) {
    right: 30px;
    left: auto;
    top: 225px;
  }
}
@media (min-width: 40em) {
  .intro__deco img:nth-of-type(3) {
    right: auto;
    left: clamp(1.563rem, 0.521rem + 2.17vw, 3.125rem);
    /* val：25px-50px | view：768px-1920px */
    top: clamp(18.438rem, 12.646rem + 12.07vw, 27.125rem);
    /* val：295px-434px | view：768px-1920px */
  }
}
@media (min-width: 85.4375em) {
  .intro__deco img:nth-of-type(3) {
    left: min(15.6770833333vw, 301px);
  }
}
.intro__deco img:nth-of-type(4) {
  right: min(7.7604166667vw, 149px);
  bottom: 100px;
}
@media (min-width: 27.5em) {
  .intro__deco img:nth-of-type(4) {
    right: 123px;
    bottom: 50px;
  }
}
@media (min-width: 40em) {
  .intro__deco img:nth-of-type(4) {
    right: clamp(-0.75rem, -1.25rem + 1.04vw, 0rem);
    /* val：-12px-0px | view：768px-1920px */
    bottom: clamp(3.875rem, 2.292rem + 3.3vw, 6.25rem);
    /* val：62px-100px | view：768px-1920px */
  }
}
@media (min-width: 85.4375em) {
  .intro__deco img:nth-of-type(4) {
    right: min(7.7604166667vw, 149px);
  }
}
.intro__deco img:nth-of-type(5) {
  right: -57px;
  bottom: 0;
}
@media (min-width: 27.5em) {
  .intro__deco img:nth-of-type(5) {
    right: 5px;
    bottom: -48px;
  }
}
@media (min-width: 40em) {
  .intro__deco img:nth-of-type(5) {
    bottom: clamp(-0.938rem, 0.188rem - 2.34vw, -2.625rem);
    /* val：-15px--42px | view：768px-1920px */
  }
}

/* point */
.point {
  padding-top: 114px;
  background: no-repeat;
  background-image: url(img/lp-sakura/deco_point_01.png), url(img/lp-sakura/deco_point_02.png), url(img/lp-sakura/deco_point_03.png);
  background-position: top clamp(2.625rem, 1.925rem + 3.5vw, 6.125rem) left clamp(-1.438rem, -2.5rem + 5.31vw, 3.875rem), bottom clamp(18.75rem, 21.1rem - 11.75vw, 7rem) right, bottom clamp(-0.5rem, -3.45rem + 14.75vw, 14.25rem) right clamp(-0.625rem, -3.375rem + 13.75vw, 13.125rem);
  /* val：-10px-210px | view：320px-1920px */
  background-size: min(30%, 145px), min(35%, 175px), min(30%, 144px);
}

.point-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 60px min(4.1666666667vw, 80px);
  counter-reset: item;
}
@media not all and (min-width: 48em) {
  .point-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media not all and (min-width: 40em) {
  .point-list {
    grid-template-columns: 1fr;
  }
}

.point-list__item {
  text-align: center;
  counter-increment: item;
}
@media not all and (min-width: 48em) {
  .point-list__item:nth-of-type(n+3) {
    grid-column: 1/3;
    width: 50%;
    margin: 0 auto;
  }
}
@media not all and (min-width: 40em) {
  .point-list__item:nth-of-type(n+3) {
    grid-column: auto;
    width: 100%;
  }
}
.point-list__item .img {
  position: relative;
  margin-bottom: 55px;
}
@media (min-width: 48em) {
  .point-list__item .img {
    margin-bottom: 82px;
  }
}
.point-list__item .img::before {
  content: counter(item, decimal-leading-zero);
  border-radius: 50%;
  background: transparent linear-gradient(229deg, rgba(245, 171, 171, 0.8) 0%, rgba(245, 208, 171, 0.8) 100%) 0% 0% no-repeat padding-box;
  --size: 60px;
  width: var(--size);
  height: var(--size);
  display: grid;
  place-items: center;
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%) translateY(100%);
  font-size: 22px;
  color: #fff;
  font-family: var(--font-en);
}
@media (min-width: 48em) {
  .point-list__item .img::before {
    --size: 80px;
    font-size: 29px;
  }
}
.point-list__item .img img {
  aspect-ratio: 407/271;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.point-list__item .title {
  font-size: 1.125rem;
}
@media (min-width: 48em) {
  .point-list__item .title {
    font-size: 1.375rem;
  }
}

/* point-map */
.point-map {
  color: var(--corporate);
  border: 2px solid var(--corporate);
  position: relative;
  padding: 20px;
  width: fit-content;
  height: fit-content;
  margin: 130px auto 0;
  background: #fff;
}
@media (min-width: 40em) {
  .point-map {
    padding: 40px;
  }
}
.point-map .title {
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  line-height: 1;
  padding: 0 45px;
  background: #fff;
  white-space: nowrap;
}
@media (min-width: 40em) {
  .point-map .title {
    font-size: 2rem;
  }
}
.point-map .img::before {
  content: "";
  display: inline-block;
  background: url(img/lp-sakura/icon_zoom.png) no-repeat center/contain;
  background-image: image-set(url(img/lp-sakura/icon_zoom@2x.png) 2x);
  --size: 40px;
  width: var(--size);
  height: var(--size);
  position: absolute;
  bottom: 10px;
  right: 10px;
}
@media (min-width: 40em) {
  .point-map .img::before {
    --size: 69px;
    bottom: 20px;
    right: 20px;
  }
}

/* links */
.links {
  background: no-repeat;
  background-image: url(img/lp-sakura/bg_links_01.png), url(img/lp-sakura/bg_links_02.png);
  background-position: center;
  background-size: 1920px auto, cover;
}

.links-list {
  display: grid;
  gap: 20px min(2.0833333333vw, 40px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  max-width: 1040px;
  margin: 0 auto;
}

/* plan */
.plan {
  background: no-repeat;
  background-image: url(img/lp-sakura/deco_plan_01.png), url(img/lp-sakura/deco_plan_02.png), linear-gradient(180deg, rgba(245, 171, 171, 0.2) 0%, rgba(245, 171, 171, 0.2) 100%);
  background-position: left top 45px, right bottom, top left;
}

.plan-list {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  gap: 80px 60px;
}

.plan-list__item {
  background: #fff;
  flex: 1;
  min-width: min(100%, 385px);
  max-width: 420px;
  display: flex;
  flex-flow: column;
  --color: #F3B783;
}
.plan-list__item.--pink {
  --color: var(--corporate);
}
.plan-list__item.--red {
  --color: #E98585;
}
.plan-list__item .title-box {
  position: relative;
  background: var(--color);
  color: #fff;
  min-height: 155px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.plan-list__item .title-box__recommend {
  position: relative;
  width: 176px;
  max-width: 50%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 100vw;
  border: 1px solid var(--corporate);
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
  z-index: 1;
}
@media (min-width: 26.5em) {
  .plan-list__item .title-box__recommend {
    top: -16px;
  }
}
.plan-list__item .title-box__recommend::before {
  content: "";
  width: 22px;
  height: 12px;
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: 3px;
  transform: translateX(-50%) translateY(100%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.plan-list__item .title-box__recommend img {
  max-width: 80%;
}
.plan-list__item .title-box__img {
  position: absolute;
  left: -50px;
  top: -81px;
}
.plan-list__item .title-box__title {
  text-align: center;
  display: flex;
  flex-flow: column;
  gap: 2px;
}
.plan-list__item .title-box__title .sub {
  font-size: 0.875rem;
  font-family: var(--font-en);
}
.plan-list__item .title-box__title .title {
  font-weight: bold;
  font-size: 1.75rem;
}
.plan-list__item .content {
  padding: 30px 20px;
  display: flex;
  flex-flow: column;
  width: 100%;
  font-size: 1rem;
  max-width: none !important;
  gap: 40px;
  flex: 1;
  line-height: 1.2;
}
@media (min-width: 40em) {
  .plan-list__item .content {
    font-size: 1.25rem;
    padding: 40px 30px;
  }
}
.plan-list__item .content .small {
  font-size: 0.875rem;
}
@media (min-width: 40em) {
  .plan-list__item .content .small {
    font-size: 1rem;
  }
}
.plan-list__item .content__row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.plan-list__item .content__row + .content__row {
  margin-top: 25px;
}
.plan-list__item .content__row .icon {
  flex-shrink: 0;
}
.plan-list__item .content__total {
  border-top: 1px solid var(--color);
  color: var(--color);
  margin-top: auto;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}
.plan-list__item .content__total th,
.plan-list__item .content__total td {
  vertical-align: middle;
}
.plan-list__item .content__total th {
  position: relative;
  z-index: 0;
  text-align: left;
}
.plan-list__item .content__total th::before {
  content: "";
  position: absolute;
  border: 1px dashed var(--color);
  right: 0;
  left: 8px;
  top: 50%;
  transform: translate(0, -50%);
  z-index: -1;
}
.plan-list__item .content__total th .title {
  background: #fff;
  padding: 8px;
}
.plan-list__item .content__total td {
  width: 160px;
  background: #fff;
  padding: 8px;
}
@media (min-width: 40em) {
  .plan-list__item .content__total td {
    width: 200px;
  }
}
.plan-list__item .content__total .price {
  font-size: 1.75rem;
  font-family: var(--font-en);
}
@media (min-width: 40em) {
  .plan-list__item .content__total .price {
    font-size: 2.5rem;
  }
}

.flow {
  background: #FDF6F6;
  overflow: hidden;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(40%, 180px), 1fr));
  justify-content: space-between;
  gap: 40px 20px;
  overflow: hidden;
  padding: 25px;
  margin: -25px;
}

.flow-list__item {
  text-align: center;
  position: relative;
  z-index: 0;
}
.flow-list__item:not(:last-of-type) .img::after {
  content: "";
  border: 1px dashed #F5ABAB;
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(80%, 0);
}
.flow-list__item .img {
  --size: min(89%, 160px);
  width: var(--size);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 40px rgba(245, 171, 171, 0.5);
  display: grid;
  place-items: center;
  margin: 0 auto;
  position: relative;
}
.flow-list__item .img::before {
  content: "";
  z-index: -1;
  position: absolute;
  background: #FDF6F6;
  inset: -10px;
}
.flow-list__item .img img {
  max-width: 45%;
}
.flow-list__item .time {
  color: var(--corporate);
  font-family: var(--font-en);
  font-size: 1.125rem;
  margin-top: 24px;
  line-height: 1;
}
@media (min-width: 40em) {
  .flow-list__item .time {
    font-size: 1.25rem;
  }
}
.flow-list__item .title {
  margin-top: 10px;
  line-height: 1.3;
  font-size: 0.875rem;
}
@media (min-width: 40em) {
  .flow-list__item .title {
    font-size: 1.25rem;
  }
}

/* gallery */
.gallery {
  background: no-repeat;
  background-image: url(img/lp-sakura/deco_gallery_01.png), url(img/lp-sakura/deco_gallery_02.png);
  background-position: left clamp(-1.125rem, -2.188rem + 5.31vw, 4.188rem) top clamp(8.438rem, 8.125rem + 1.56vw, 10rem), right clamp(-0.5rem, -1.55rem + 5.25vw, 4.75rem) bottom clamp(0rem, -4.288rem + 21.44vw, 21.438rem);
  /* val：0-343px | view：320px-1920px */
  background-size: min(30%, 145px), min(30%, 144px);
}

.gallery-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(5.1041666667vw, 98px) min(4.1666666667vw, 80px);
  position: relative;
}

/* footer */
footer {
  color: #fff;
  background: no-repeat;
  background-image: url(img/lp-sakura/bg_footer_02.svg), url(img/lp-sakura/bg_footer_01.png);
  background-size: 100% auto, cover;
  background-position: top center, center;
  padding-top: 8.75vw;
  padding-bottom: 66px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.footer__links {
  margin-top: 7.5520833333vw;
  position: relative;
  z-index: 0;
}
.footer__links::before {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  z-index: -1;
  background: no-repeat;
  background-image: url(img/lp-sakura/bg_links_01.png);
  background-position: center;
  background-size: 1920px auto;
  margin: -53px calc(50% - 50vw);
}

.footer-tel {
  text-align: center;
  margin-top: 20px;
  font-size: 1.375rem;
  font-family: var(--font-en);
  color: #fff !important;
}
.footer-tel .number {
  font-size: 2.5rem;
  color: #fff !important;
}
.footer-tel a {
  color: #fff !important;
}

.footer-nav {
  border-top: 1px solid #fff;
  padding-top: 70px;
  font-family: var(--font-zen-old);
  margin-top: min(7.8125vw, 150px);
}

.footer-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: wrap;
}

.footer-nav__item + .footer-nav__item::before {
  content: "／";
}

.footer-nav__link {
  padding: 5px 30px;
  color: #fff;
}
@media not all and (min-width: 48em) {
  .footer-nav__link {
    padding: 5px 15px;
  }
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: min(10.625vw, 204px);
}
@media not all and (min-width: 64em) {
  .footer__bottom {
    flex-flow: column;
    justify-content: center;
  }
}

.footer-logo {
  font-size: clamp(2.063rem, 1.725rem + 1.69vw, 3.75rem);
  /* val：33px-60px | view：320px-1920px */
  font-family: var(--font-en);
  margin-bottom: 30px;
  font-weight: normal;
}

.footer-logo a{
  color: #fff;
}

.footer__instagram {
  --size: 240px;
  width: var(--size);
  height: var(--size);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 25px;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
}
.footer__instagram .fa-instagram {
  font-size: 33px;
}

.copyright {
  font-size: 0.875rem;
  font-family: var(--font-en);
  display: flex;
  justify-content: end;
}
@media not all and (min-width: 64em) {
  .copyright {
    justify-content: center;
    margin-top: 30px;
  }
}

/* header */
#header {
  position: fixed;
  background: #fff;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  inset: 0;
  bottom: auto;
  z-index: 1000;
}

#logo {
  font-size: 26px;
  font-family: var(--font-en);
  font-weight: normal;
  padding: 0 0 0 max(15px, 2.1875vw);
}
#logo a {
  color: #444;
}

#gnav {
  display: flex;
  gap: 30px 10px;
  flex: 1;
  justify-content: end;
}
@media not all and (min-width: 64em) {
  #gnav {
    position: fixed;
    inset: 0;
    color: var(--color-base);
    overflow-y: scroll;
    overflow-x: hidden;
    transform: translateY(-100%);
    z-index: 3;
    background: transparent;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
  }
  #gnav[aria-hidden=false] {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.9);
    transition-duration: 0.6s;
    transition-property: transform, background-color;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }
  #gnav[aria-hidden=true] {
    transition-duration: 0.6s;
    transition-property: transform, background-color;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.gnav-list {
  display: flex;
  align-items: center;
}
@media not all and (min-width: 64em) {
  .gnav-list {
    flex-flow: column;
  }
}

.gnav-list__link {
  padding: 5px 20px;
  font-size: 16px;
  font-family: var(--font-zen-old);
  color: #444;
  display: inline-block;
}
.gnav-list__link:hover {
  color: var(--corporate);
  opacity: 1;
}
@media not all and (min-width: 64em) {
  .gnav-list__link {
    font-size: 20px;
  }
}

.gnav__button {
  background: url(img/lp-sakura/bg_gnav-button_01.png) no-repeat center/cover;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 295px;
  width: 100%;
  padding: 10px;
}
.gnav__button::after {
  content: "\f08e";
  font: var(--fa-font-solid);
  font-size: 14px;
}

#toggle {
  font-family: var(--font-be-vietnam);
  position: relative;
  z-index: 10;
  --size: 60px;
  width: var(--size);
  height: var(--size);
  background: var(--corporate);
  font-size: 8px;
  font-family: var(--font-en);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  letter-spacing: 0.08em;
}

@media (min-width: 64em) {
  #toggle {
    display: none;
  }
}
#toggle[aria-expanded=true] .line:nth-of-type(1) {
  transform: translate(0, 6px) rotate(45deg);
}

#toggle[aria-expanded=true] .line:nth-of-type(2) {
  opacity: 0;
}

#toggle[aria-expanded=true] .line:nth-of-type(3) {
  transform: translate(0, -6px) rotate(-45deg);
}

#toggle .line {
  display: block;
  width: 17px;
  height: 2px;
  background: #fff;
}

#toggle .line + .line {
  margin-top: 4px;
}

#toggle .text {
  margin-top: 4px;
}

/* font-size */
.fz18 {
  font-size: 1.125rem;
}

.fz20 {
  font-size: 1.25rem;
}

.fz24 {
  font-size: 1.5rem;
}

.inline-block {
  display: inline-block;
}

/* padding */
.pt-section-m {
  padding-top: clamp(6.25rem, 5.256rem + 4.97vw, 8.438rem);
  /* val：100px-135px | view：320px-1024px */
}

.pt-section-l {
  padding-top: clamp(6.875rem, 5.313rem + 7.81vw, 10.313rem);
  /* val：100px-165px | view：320px-1024px */
}

.pb-section-m {
  padding-bottom: clamp(6.25rem, 5.256rem + 4.97vw, 8.438rem);
  /* val：100px-135px | view：320px-1024px */
}

.pb-section-l {
  padding-bottom: clamp(6.875rem, 5.313rem + 7.81vw, 10.313rem);
  /* val：100px-165px | view：320px-1024px */
}