@charset "UTF-8";
/* =======================================================
color
========================================================== */
/* =======================================================
font family, font size, weight, line-height
========================================================== */
/* =======================================================
layout
========================================================== */
/* ==============================================================
重なり順の定義
================================================================= */
/* ==============================================================
breakpoints (sm, md, lg, xl)
================================================================= */
/*================================================================
「最小値をSP時の数値」「最大値をPC時の数値」とし、
レスポンシブデザインは「画面幅に応じた数値」とする関数
================================================================*/
/*================================================================
「最小値をSP時の数値」「最大値をPC時の数値」とする関数
================================================================*/
/*================================================================
「最大値をPC時の数値」とする関数
================================================================*/
/*================================================================
「最小値をSP時の数値」とする関数
================================================================*/
/*================================================================
「SP時の数値」「PC時の数値」を合わせた上で、
最大値と最小値を設定せず「画面幅に応じた数値」とする関数
================================================================*/
/* =======================================================
共通パーツ
========================================================== */
/*
共通
*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Noto Sans", "Helvetica", "Arial", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #574143;
  line-height: 1.56;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.inner {
  padding-inline: 20px;
  max-width: 520px;
  margin-inline: auto;
}

.c-heading {
  font-size: min(14.0110497238px + 4.5303867403vw, 72px);
  line-height: 1.2;
  font-weight: 700;
}

.c-heading--square {
  width: 100%;
  text-align: center;
  display: inline-block;
  font-size: min(10.2486187845px + 1.9337016575vw, 35px);
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.18px;
  padding-block: 2.5px;
  background: #e24c67;
  color: #FFFEFE;
}
@media screen and (min-width: 900px) {
  .c-heading--square {
    padding-block: 8px;
  }
}

.c-heading {
  color: #282525;
  font-size: min(18.1546961326px + 3.4254143646vw, 62px);
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.31px;
}
.c-heading--red {
  color: #e24c67;
}
@media screen and (min-width: 900px) {
  .c-heading {
    letter-spacing: 0.62px;
  }
}

/*
ハンバーガーボタン
*/
.c-button-drawer {
  display: block;
  width: 42px;
  height: 20.5px;
  padding: 0;
  position: relative;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .c-button-drawer {
    display: none;
  }
}
.c-button-drawer.is-checked {
  width: 27px;
  height: 27px;
  border-radius: 50%;
}
.c-button-drawer.is-checked .c-button-drawer__bar {
  background: #e24c67;
  width: 11px;
  height: 0.5px;
  position: absolute;
}
.c-button-drawer.is-checked .c-button-drawer__bar:nth-child(1) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.c-button-drawer.is-checked .c-button-drawer__bar:nth-child(2) {
  display: none;
}
.c-button-drawer.is-checked .c-button-drawer__bar:nth-child(3) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.c-button-drawer__bar {
  display: block;
  width: 100%;
  height: 1px;
  background: #574143;
  right: 0;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-button-drawer__bar:nth-child(1) {
  top: 0;
}
.c-button-drawer__bar:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-button-drawer__bar:nth-child(3) {
  bottom: 0;
}

.u-pc-hidden {
  display: block;
}
@media screen and (min-width: 900px) {
  .u-pc-hidden {
    display: none;
  }
}

.u-sp-hidden {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-sp-hidden {
    display: block;
  }
}

.u-hidden-visually {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =======================================================
アニメーション
========================================================== */
.slideinRight {
  -webkit-animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: translateX(180px);
            transform: translateX(180px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    -webkit-transform: translateX(180px);
            transform: translateX(180px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
/* =======================================================
header (layout)
========================================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 55.5px;
  background: #ffffff;
  z-index: 20;
}
.l-header.is-checked {
  background: #e24c67;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 70px;
  }
}

.l-header__inner {
  max-width: 100%;
  padding-inline: 4.2666666667% 4.1333333333%;
  height: 55.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    height: 70px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 80px;
  }
}
@media screen and (min-width: 1440px) {
  .l-header__inner {
    padding-inline: 13px;
    gap: 19.3055555556%;
  }
}

.l-header__nav {
  height: 100%;
}

.l-header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .l-header-nav__list {
    gap: 35px;
  }
}
@media screen and (min-width: 1200px) {
  .l-header-nav__list {
    gap: 53px;
  }
}

.l-header-nav__link {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* =======================================================
header (project)
========================================================== */
.p-header__logo {
  width: 139.5px;
}
.p-header__logo.is-checked {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 175px;
  }
}
@media screen and (min-width: 1200px) {
  .p-header__logo {
    width: 218px;
  }
}

.p-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-header__nav.is-checked {
  opacity: 0;
}

.p-header-nav__item:hover .p-header-nav__link {
  opacity: 0.7;
}

.p-header-nav__link {
  font-size: min(13.7569060773px + 0.3314917127vw, 18px);
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.31px;
}
@media screen and (min-width: 1200px) {
  .p-header-nav__link {
    font-size: 25px;
  }
}

/* =======================================================
drawer (layout)
========================================================== */
.l-drawer-content {
  text-align: center;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 55.5px;
  bottom: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  z-index: 40;
  overflow-y: auto;
}
.l-drawer-content.is-checked {
  pointer-events: auto;
  opacity: 1;
}
@media screen and (min-width: 1440px) {
  .l-drawer-content {
    height: 100vh;
  }
}

.l-drawer-nav {
  padding-inline: 31.5px 0;
  padding-top: 39px;
  height: 100vh;
}
@media screen and (min-width: 1440px) {
  .l-drawer-nav {
    padding-inline: 62px 0;
  }
}

/* =======================================================
drawer (project)
========================================================== */
.p-drawer-nav {
  background: #e24c67;
}

.p-drawer-nav__list {
  max-width: 540px;
  margin: auto;
}

.p-drawer-nav__item {
  width: 100%;
  border-bottom: 2px solid #FFFEFE;
}

.p-drawer-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 14px;
  padding-block: 26px 4.5px;
  padding-right: 14px;
  color: #FFFEFE;
  font-size: min(8.3701657459px + 1.7679558011vw, 31px);
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.15px;
  position: relative;
}
@media screen and (min-width: 1440px) {
  .p-drawer-nav__link {
    padding-block: 52px 9px;
  }
}
.p-drawer-nav__link::after {
  content: "";
  width: 6px;
  height: 9.5px;
  position: absolute;
  right: 10.5px;
  top: 70%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(./../img/drawer_icon_arrow.webp) no-repeat center center/contain;
}
@media screen and (min-width: 1440px) {
  .p-drawer-nav__link::after {
    width: 12px;
    height: 19px;
  }
}

/* =======================================================
fv (layout)
========================================================== */
@media screen and (min-width: 768px) {
  .l-fv {
    margin-top: 70px;
  }
}

/*
=======================================================
fv (project)
========================================================== */
.p-fv {
  width: 100%;
}
.p-fv-swiper__slide {
  width: 100%;
}

.p-fv-swiper__image {
  display: block;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-fv-swiper__image {
    margin-top: -4%;
  }
}
@media screen and (min-width: 768px) {
  .p-fv-swiper__image {
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .p-fv-swiper__image {
    margin-top: 0;
  }
}
.p-fv-swiper__image img {
  width: 100%;
}

.p-fv-swiper__button--prev,
.p-fv-swiper__button--next {
  width: 23.5px;
  height: 23.5px;
  position: absolute;
  top: 40%;
}
@media screen and (min-width: 375px) {
  .p-fv-swiper__button--prev,
  .p-fv-swiper__button--next {
    top: clamp(285px, 121.3259668508px + 43.6464088398vw, 680px);
  }
}
@media screen and (min-width: 600px) {
  .p-fv-swiper__button--prev,
  .p-fv-swiper__button--next {
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 768px) {
  .p-fv-swiper__button--prev,
  .p-fv-swiper__button--next {
    width: 40px;
    height: 40px;
    top: 55%;
  }
}
@media screen and (min-width: 1200px) {
  .p-fv-swiper__button--prev,
  .p-fv-swiper__button--next {
    width: 75px;
    height: 75px;
  }
}
.p-fv-swiper__button--prev::after,
.p-fv-swiper__button--next::after {
  display: none;
}

.p-fv-swiper__button--prev {
  background: url(./../img/fv_icon_arrow_left.svg) no-repeat center center/contain;
  left: 3.5px;
}
@media screen and (min-width: 768px) {
  .p-fv-swiper__button--prev {
    left: 5px;
  }
}

.p-fv-swiper__button--next {
  background: url(./../img/fv_icon_arrow_right.svg) no-repeat center center/contain;
  right: 1px;
}
@media screen and (min-width: 768px) {
  .p-fv-swiper__button--next {
    right: 7px;
  }
}

/* =======================================================
about (layout)
========================================================== */
.l-about {
  padding-top: 33.5px;
}
@media screen and (min-width: 900px) {
  .l-about {
    padding-top: 96px;
    padding-bottom: 60px;
  }
}

.l-about__inner {
  padding-inline: 4% 4.6666666667%;
}
@media screen and (min-width: 768px) {
  .l-about__inner {
    padding-inline: 28px;
  }
}
@media screen and (min-width: 900px) {
  .l-about__inner {
    padding-inline: 32px;
    max-width: 1022px;
    margin-inline: auto;
  }
}

.l-about__heading {
  padding-inline: 7px 4px;
}

.l-about__description:nth-of-type(1) {
  margin-top: 15px;
  line-height: 1.74;
}
@media screen and (min-width: 900px) {
  .l-about__description:nth-of-type(1) {
    margin-top: 16px;
  }
}
.l-about__description:nth-of-type(2) {
  margin-top: 1px;
}

/* =======================================================
about (project)
========================================================== */
.p-about {
  background: url(./../img/about_bg_sp.webp) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .p-about {
    background: url(./../img/about_bg_pc.webp) no-repeat center 100%/cover;
    text-align: center;
  }
}

.p-about__heading {
  font-size: clamp(1.125rem, -0.33rem + 7.27vw, 1.375rem);
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.7px;
}
@media screen and (min-width: 375px) {
  .p-about__heading {
    font-size: min(10.3977900552px + 3.0939226519vw, 50px);
  }
}

.p-about__description {
  font-size: min(9.0276243094px + 1.3259668508vw, 26px);
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.55px;
}
@media screen and (min-width: 900px) {
  .p-about__description {
    letter-spacing: 0.71px;
  }
}

/* =======================================================
pack (layout)
========================================================== */
.l-pack {
  padding-top: 15.5px;
  padding-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .l-pack {
    padding-top: 37px;
    padding-bottom: 36px;
  }
}

.l-pack__inner {
  max-width: 540px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .l-pack__inner {
    padding-inline: 32px;
    max-width: 1022px;
    margin-inline: auto;
  }
}

.l-pack__heading {
  text-align: center;
}

.l-pack__content {
  margin-top: 18.5px;
}
@media screen and (min-width: 768px) {
  .l-pack__content {
    margin-top: 21px;
  }
}

.l-pack__content-description {
  padding-inline: 15.5px 7px;
}
@media screen and (min-width: 900px) {
  .l-pack__content-description {
    padding-inline: 0;
  }
}

.l-pack__content-images {
  margin-top: 8px;
  padding-inline: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 4.5px;
     -moz-column-gap: 4.5px;
          column-gap: 4.5px;
}
@media screen and (min-width: 900px) {
  .l-pack__content-images {
    margin-top: 27px;
    padding-inline: 0;
    -webkit-column-gap: 23px;
       -moz-column-gap: 23px;
            column-gap: 23px;
  }
}

.l-pack__content-list {
  margin-top: 12px;
  padding-inline: 15px;
}
@media screen and (min-width: 900px) {
  .l-pack__content-list {
    margin-top: 28px;
    padding-inline: 0;
  }
}

.l-pack__content-item {
  margin-top: 4.5px;
}
@media screen and (min-width: 768px) {
  .l-pack__content-item {
    margin-top: 19px;
  }
}
.l-pack__content-item:nth-child(1) {
  margin-top: 0;
}
.l-pack__content-item:nth-child(3) {
  margin-top: -1px;
}
@media screen and (min-width: 768px) {
  .l-pack__content-item:nth-child(3) {
    margin-top: 4px;
  }
}

/* =======================================================
pack (project)
========================================================== */
.p-pack {
  background-color: #f0eded;
}

.p-pack__content-description {
  font-size: min(7.6132596685px + 1.4364640884vw, 26px);
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.13px;
}
@media screen and (min-width: 768px) {
  .p-pack__content-description {
    letter-spacing: 0.26px;
  }
}

.p-pack__content-image figcaption {
  text-align: center;
  font-size: 9.3px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.57;
  letter-spacing: 0.09px;
  color: #e24c67;
}
@media screen and (min-width: 768px) {
  .p-pack__content-image figcaption {
    font-size: 23px;
    line-height: 1.56;
    letter-spacing: 0.25px;
  }
}
@media screen and (min-width: 1440px) {
  .p-pack__content-image figcaption {
    font-size: 25px;
  }
}

.p-pack__content-item {
  display: grid;
  grid-template-columns: 14.6376811594% 1fr;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-pack__content-item {
    grid-template-columns: 10.5427974948% 1fr;
    -webkit-column-gap: 14px;
       -moz-column-gap: 14px;
            column-gap: 14px;
  }
}

.p-pack__content-item-head {
  color: #FFFEFE;
  font-size: min(7.6132596685px + 1.4364640884vw, 26px);
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.13px;
  background-color: #e58898;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-pack__content-item-head {
    letter-spacing: 0.26px;
  }
}

.p-pack__content-item:nth-child(1) .p-pack__content-item-head {
  padding-block: 3.5px 4px;
}
@media screen and (min-width: 768px) {
  .p-pack__content-item:nth-child(1) .p-pack__content-item-head {
    padding-block: 6px 6px;
  }
}

.p-pack__content-item:nth-child(2) .p-pack__content-item-head {
  padding-block: 3.5px;
}
@media screen and (min-width: 768px) {
  .p-pack__content-item:nth-child(2) .p-pack__content-item-head {
    padding-block: 6.5px;
  }
}

.p-pack__content-item:nth-child(3) .p-pack__content-item-head {
  padding-block: 6px 6.5px;
}
@media screen and (min-width: 768px) {
  .p-pack__content-item:nth-child(3) .p-pack__content-item-head {
    padding-block: 12px 13px;
  }
}

.p-pack__content-item-text {
  font-size: min(5.2486187845px + 1.9337016575vw, 30px);
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.13px;
}
@media screen and (min-width: 768px) {
  .p-pack__content-item-text {
    letter-spacing: 0.3px;
  }
}

.p-pack__content-item-texts .p-pack__content-item-text:nth-child(1) {
  font-size: min(4.4419889503px + 1.2154696133vw, 20px);
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.09px;
}
@media screen and (min-width: 768px) {
  .p-pack__content-item-texts .p-pack__content-item-text:nth-child(1) {
    letter-spacing: 0.2px;
  }
}

.p-pack__content-item-texts .p-pack__content-item-text:nth-child(1) span:nth-child(1),
.p-pack__content-item-texts .p-pack__content-item-text:nth-child(1) span:nth-child(6) {
  font-size: min(4.7447513812px + 1.3480662983vw, 22px);
  letter-spacing: 0.1px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-pack__content-item-texts .p-pack__content-item-text:nth-child(1) span:nth-child(1),
  .p-pack__content-item-texts .p-pack__content-item-text:nth-child(1) span:nth-child(6) {
    letter-spacing: 0.22px;
  }
}

.p-pack__content-item-texts .p-pack__content-item-text:nth-child(1) span:nth-child(2),
.p-pack__content-item-texts .p-pack__content-item-text:nth-child(1) span:nth-child(3),
.p-pack__content-item-texts .p-pack__content-item-text:nth-child(1) span:nth-child(5) {
  font-size: min(5.4917127072px + 1.6022099448vw, 26px);
  letter-spacing: 0.12px;
}
@media screen and (min-width: 768px) {
  .p-pack__content-item-texts .p-pack__content-item-text:nth-child(1) span:nth-child(2),
  .p-pack__content-item-texts .p-pack__content-item-text:nth-child(1) span:nth-child(3),
  .p-pack__content-item-texts .p-pack__content-item-text:nth-child(1) span:nth-child(5) {
    letter-spacing: 0.26px;
  }
}

.p-pack__content-item-texts .p-pack__content-item-text:nth-child(1) span:nth-child(4) {
  font-size: min(4.4419889503px + 1.2154696133vw, 20px);
  letter-spacing: 0.09px;
}
@media screen and (min-width: 768px) {
  .p-pack__content-item-texts .p-pack__content-item-text:nth-child(1) span:nth-child(4) {
    letter-spacing: 0.2px;
  }
}

.p-pack__content-item-text .price-group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.p-pack__content-item-text .price-main {
  font-size: min(8.6011049724px + 2.453038674vw, 40px);
  letter-spacing: 0.07em;
}

.p-pack__content-item-text .price-group {
  margin-top: -5px;
}

.p-pack__content-item-text .price-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-pack__content-item-text .price-unit .price-tax {
  margin-bottom: -4px;
  font-size: min(2.5237569061px + 0.7403314917vw, 12px);
  font-weight: 700;
  letter-spacing: 0.05px;
}
@media screen and (min-width: 768px) {
  .p-pack__content-item-text .price-unit .price-tax {
    letter-spacing: 0.12px;
  }
}

.p-pack__content-item-text .price-unit span:last-child {
  font-size: min(5.4917127072px + 1.6022099448vw, 26px);
  font-weight: 700;
  letter-spacing: 0.12px;
}
@media screen and (min-width: 768px) {
  .p-pack__content-item-text .price-unit span:last-child {
    letter-spacing: 0.26px;
  }
}

.p-pack__content-item-text .divider {
  margin-left: -5px;
  font-size: min(6.6629834254px + 1.8232044199vw, 30px);
  letter-spacing: 0.14px;
}
@media screen and (min-width: 768px) {
  .p-pack__content-item-text .divider {
    margin-left: -13px;
    letter-spacing: 0.3px;
  }
}

/* =======================================================
training (layout)
========================================================== */
.l-training {
  padding-top: 32px;
  padding-bottom: 45px;
}
@media screen and (min-width: 900px) {
  .l-training {
    margin-top: 65px;
    padding-bottom: 120px;
  }
}

.l-training__inner {
  max-width: 540px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-training__inner {
    padding-inline: 32px;
    max-width: 1034px;
    margin-inline: auto;
  }
}

.l-training__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .l-training__top {
    margin-top: 7px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}
@media screen and (min-width: 900px) {
  .l-training__top {
    gap: 35px;
  }
}

.l-training-top__title {
  margin-top: 8px;
  padding-inline: 16px 16px;
}
@media screen and (min-width: 768px) {
  .l-training-top__title {
    margin-top: 0;
    padding-inline: 0;
  }
}

.l-training-top__description {
  margin-top: 0;
  padding-inline: 16px 17.5px;
}
@media screen and (min-width: 768px) {
  .l-training-top__description {
    margin-top: 5px;
    padding-inline: 0;
  }
}

.p-training__box-1 .l-training-top__description,
.p-training__box-4 .l-training-top__description {
  padding-inline: 16px 17.5px;
}

.p-training__box-2 .l-training-top__description {
  padding-inline: 15px 21px;
}

.p-training__box-3 .l-training-top__description {
  padding-inline: 15.5px 21px;
}

.p-training__box-3 .l-training-top__description {
  padding-inline: 15.5px 21px;
}

.p-training__box-5 .l-training-top__description,
.p-training__box-6 .l-training-top__description {
  padding-inline: 16px 19.5px;
}

.l-training-top__image {
  display: block;
  margin-top: 8.5px;
  padding-inline: 17.5px 17.5px;
}
@media screen and (min-width: 768px) {
  .l-training-top__image {
    padding-inline: 0;
    margin-top: 10px;
  }
}

.l-training__boxes {
  margin-top: 19px;
  padding-inline: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .l-training__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 12px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
@media screen and (min-width: 900px) {
  .l-training__boxes {
    row-gap: 24px;
    -webkit-column-gap: 26px;
       -moz-column-gap: 26px;
            column-gap: 26px;
  }
}

.l-training__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .l-training__box {
    width: calc(33.3333333333% - 6.6666666667px);
  }
}
@media screen and (min-width: 900px) {
  .l-training__box {
    width: calc(33.3333333333% - 17.3333333333px);
  }
}

.l-training-box__head {
  position: relative;
}

.l-training-box__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: -9%;
}
@media screen and (min-width: 768px) {
  .l-training-box__body {
    margin-top: -27%;
  }
}

.l-training-box__body-texts {
  margin-top: 1.5px;
  padding: 13px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .l-training-box__body-texts {
    padding: 10px;
  }
}

.l-training-box__body-price {
  margin-top: -0.5px;
}
@media screen and (min-width: 900px) {
  .l-training-box__body-price {
    margin-top: -2px;
  }
}

.l-training-box__body-price--tax {
  margin-top: -2.5px;
}
@media screen and (min-width: 900px) {
  .l-training-box__body-price--tax {
    margin-top: -7px;
  }
}

.l-training-box__body-description {
  margin-top: 1.5px;
}
@media screen and (min-width: 900px) {
  .l-training-box__body-description {
    margin-top: 9px;
    padding-inline: 0;
  }
}

.l-training-box__body-link {
  margin-top: 15.5px;
}
@media screen and (min-width: 900px) {
  .l-training-box__body-link {
    margin-top: 9px;
  }
}

/* =======================================================
project (project)
========================================================== */
.p-training {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-training-top__texts {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-training-top__title {
  text-align: left;
  font-size: 22.5px;
  font-weight: 700;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.23px;
}
@media screen and (min-width: 900px) {
  .p-training-top__title {
    font-size: 27px;
    letter-spacing: 0.32px;
  }
}
@media screen and (min-width: 1200px) {
  .p-training-top__title {
    font-size: 32px;
  }
}

.p-training-top__description {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.82;
  letter-spacing: 0.14px;
  word-break: break-all;
}
@media screen and (min-width: 900px) {
  .p-training-top__description {
    font-size: 22px;
    line-height: 1.56;
    letter-spacing: 0.08px;
  }
}
@media screen and (min-width: 1200px) {
  .p-training-top__description {
    font-size: 25px;
  }
}

.p-training-top__image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-training-top__image {
    width: 50%;
  }
}
@media screen and (min-width: 900px) {
  .p-training-top__image {
    width: 48.8517745303%;
  }
}
.p-training-top__image img {
  width: 100%;
}

.p-training-box__head img {
  width: 67.5px;
  height: 67.5px;
}
@media screen and (min-width: 900px) {
  .p-training-box__head img {
    width: 80px;
    height: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .p-training-box__head img {
    width: 135px;
    height: 135px;
  }
}

.p-training-box__body-texts {
  background: #f0eded;
}

.p-training-box__body-image {
  display: block;
  width: 100%;
}
.p-training-box__body-image img {
  width: 100%;
}

.p-training-box__body-title {
  color: #e24c67;
  font-size: 17.5px;
  font-family: "Jost", sans-serif;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.11;
  letter-spacing: 0.18px;
}
@media screen and (min-width: 768px) {
  .p-training-box__body-title {
    min-height: 55.8px;
  }
}
@media screen and (min-width: 900px) {
  .p-training-box__body-title {
    font-size: 20px;
    line-height: 1.56;
    letter-spacing: 0.25px;
    min-height: 62.59px;
  }
}
@media screen and (min-width: 1200px) {
  .p-training-box__body-title {
    font-size: 24px;
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
}
@media screen and (min-width: 1440px) {
  .p-training-box__body-title {
    font-size: 25px;
  }
}

.p-training-box__body-title span {
  font-size: 10.5px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.11px;
}
@media screen and (min-width: 768px) {
  .p-training-box__body-title span {
    font-size: 15px;
    letter-spacing: 0.15px;
  }
}

.p-training-box__body-price {
  font-size: 19.5px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.2px;
}
@media screen and (min-width: 900px) {
  .p-training-box__body-price {
    font-size: 22px;
    letter-spacing: 0.3px;
  }
}
@media screen and (min-width: 1200px) {
  .p-training-box__body-price {
    font-size: 30px;
    letter-spacing: 0.3px;
  }
}
.p-training-box__body-price span {
  font-size: min(13.0994475138px + 0.773480663vw, 23px);
  font-weight: 500;
  letter-spacing: 0.16px;
}
@media screen and (min-width: 900px) {
  .p-training-box__body-price span {
    letter-spacing: 0.23px;
  }
}

.p-training-box__body-price--tax {
  font-size: 13.5px;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.14px;
}
@media screen and (min-width: 900px) {
  .p-training-box__body-price--tax {
    font-size: 18px;
    letter-spacing: 0.23px;
  }
}
@media screen and (min-width: 1200px) {
  .p-training-box__body-price--tax {
    font-size: 23px;
    letter-spacing: 0.23px;
  }
}
.p-training-box__body-price--tax span:nth-child(1) {
  font-size: 10.5px;
  letter-spacing: 0.11px;
}
@media screen and (min-width: 900px) {
  .p-training-box__body-price--tax span:nth-child(1) {
    font-size: 13px;
    letter-spacing: 0.17px;
  }
}
@media screen and (min-width: 1200px) {
  .p-training-box__body-price--tax span:nth-child(1) {
    font-size: 17px;
  }
}
.p-training-box__body-price--tax span:nth-child(2) {
  font-size: 8.5px;
  letter-spacing: 0.09px;
}
@media screen and (min-width: 900px) {
  .p-training-box__body-price--tax span:nth-child(2) {
    font-size: 13px;
    letter-spacing: 0.17px;
  }
}
@media screen and (min-width: 1200px) {
  .p-training-box__body-price--tax span:nth-child(2) {
    font-size: 17px;
  }
}

.p-training-box__body-hours {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.16px;
  color: #504e4e;
}
@media screen and (min-width: 900px) {
  .p-training-box__body-hours {
    font-size: 22px;
    letter-spacing: 0.28px;
  }
}
@media screen and (min-width: 1200px) {
  .p-training-box__body-hours {
    font-size: 28px;
    letter-spacing: 0.28px;
  }
}
.p-training-box__body-hours span {
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.14px;
}
@media screen and (min-width: 900px) {
  .p-training-box__body-hours span {
    font-size: 20px;
    letter-spacing: 0.25px;
  }
}
@media screen and (min-width: 1200px) {
  .p-training-box__body-hours span {
    font-size: 25px;
    letter-spacing: 0.25px;
  }
}

.p-training-box__body-description {
  text-align: left;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.77;
  letter-spacing: 0.16px;
  word-break: break-all;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 900px) {
  .p-training-box__body-description {
    font-size: 20px;
    letter-spacing: 0.08px;
  }
}
@media screen and (min-width: 1200px) {
  .p-training-box__body-description {
    font-size: 25px;
    letter-spacing: 0.08px;
  }
}
.p-training-box__body-description span {
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.13px;
}
@media screen and (min-width: 900px) {
  .p-training-box__body-description span {
    font-size: 20px;
    letter-spacing: 3px;
  }
}
@media screen and (min-width: 1200px) {
  .p-training-box__body-description span {
    font-size: 25px;
    letter-spacing: 3px;
  }
}

.p-training__box:nth-child(2) .p-training-box__body-description span {
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .p-training__box:nth-child(2) .p-training-box__body-description span {
    letter-spacing: 1.4px;
  }
}
@media screen and (min-width: 900px) {
  .p-training__box:nth-child(2) .p-training-box__body-description {
    letter-spacing: 0.08px;
  }
}

.p-training__box:nth-child(3) .p-training-box__body-description span,
.p-training__box:nth-child(4) .p-training-box__body-description span {
  letter-spacing: 0.5px;
  line-height: 1.5;
}
@media screen and (min-width: 900px) {
  .p-training__box:nth-child(3) .p-training-box__body-description span,
  .p-training__box:nth-child(4) .p-training-box__body-description span {
    letter-spacing: 0.2px;
  }
}
@media screen and (min-width: 900px) {
  .p-training__box:nth-child(3) .p-training-box__body-description,
  .p-training__box:nth-child(4) .p-training-box__body-description {
    letter-spacing: 0.08px;
  }
}

.p-training__box:nth-child(5) .p-training-box__body-description span,
.p-training__box:nth-child(6) .p-training-box__body-description span {
  letter-spacing: 0.4px;
  line-height: 1.5;
}
@media screen and (min-width: 900px) {
  .p-training__box:nth-child(5) .p-training-box__body-description span,
  .p-training__box:nth-child(6) .p-training-box__body-description span {
    letter-spacing: 0.17px;
  }
}
@media screen and (min-width: 900px) {
  .p-training__box:nth-child(5) .p-training-box__body-description,
  .p-training__box:nth-child(6) .p-training-box__body-description {
    letter-spacing: 0.08px;
  }
}

.p-training-box__body-link {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.14px;
  color: #e24c67;
}
@media screen and (min-width: 768px) {
  .p-training-box__body-link {
    font-size: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .p-training-box__body-link {
    font-size: 30px;
  }
}

/* =======================================================
health (layout)
========================================================== */
.l-health {
  padding-top: 32.5px;
  padding-bottom: 20px;
}
@media screen and (min-width: 900px) {
  .l-health {
    padding-top: 100px;
    padding-bottom: 35px;
  }
}

.l-health__inner {
  max-width: 540px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .l-health__inner {
    padding-inline: 32px;
    max-width: 1024px;
    margin-inline: auto;
  }
}

.l-health__top {
  margin-top: 1px;
}
@media screen and (min-width: 900px) {
  .l-health__top {
    margin-top: 7px;
  }
}

.l-health-top__title {
  padding-inline: 18px;
}
@media screen and (min-width: 900px) {
  .l-health-top__title {
    padding-inline: 0;
  }
}

.l-health-top__image {
  margin-top: 4px;
  padding-inline: 15px 14.5px;
}
@media screen and (min-width: 900px) {
  .l-health-top__image {
    margin-top: 11px;
    padding-inline: 0;
  }
}

.l-health-top__description {
  margin-top: 9px;
  padding-inline: 15px 22.5px;
}
@media screen and (min-width: 900px) {
  .l-health-top__description {
    margin-top: 8px;
    padding-inline: 0;
  }
}

.l-health__content {
  margin-top: 12.5px;
  padding-inline: 15.5px;
}
@media screen and (min-width: 900px) {
  .l-health__content {
    margin-top: 28px;
    padding-inline: 0;
  }
}

.l-health-content__description {
  margin-top: 10.5px;
  padding-inline: 0.5px 3.5px;
}
@media screen and (min-width: 900px) {
  .l-health-content__description {
    margin-top: 1px;
    padding-inline: 0;
  }
}

.l-health-content__images {
  margin-top: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .l-health-content__images {
    margin-top: 9px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    row-gap: 10px;
  }
}

.l-health-content__image:nth-child(2) {
  margin-top: 6.5px;
}
.l-health-content__image:nth-child(3) {
  margin-top: 5.5px;
}

/* =======================================================
health (project)
========================================================== */
.p-health {
  text-align: center;
}

.p-health-top__title {
  text-align: left;
  font-size: min(9.3701657459px + 1.7679558011vw, 32px);
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.16px;
}
@media screen and (min-width: 900px) {
  .p-health-top__title {
    letter-spacing: 0.32px;
  }
}

.p-health-top__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  aspect-ratio: 375/166;
}
.p-health-top__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% center;
     object-position: 100% center;
}
@media screen and (min-width: 900px) {
  .p-health-top__image {
    aspect-ratio: 950/401;
  }
}

.p-health-top__description {
  text-align: left;
  font-size: min(9.0276243094px + 1.3259668508vw, 26px);
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.05px;
  word-break: break-all;
}

.p-health__content {
  text-align: left;
}

.p-health-content__heading {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .p-health-content__heading {
    min-width: 469px;
  }
}

.p-health-content__description {
  font-size: min(7.6132596685px + 1.4364640884vw, 26px);
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.05px;
  word-break: break-all;
}
@media screen and (min-width: 900px) {
  .p-health-content__description {
    letter-spacing: 0.26px;
  }
}

.p-health-content__image {
  width: 100%;
}
.p-health-content__image:nth-of-type(1) {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .p-health-content__image:nth-of-type(1) {
    width: 86.0947368421%;
  }
}
.p-health-content__image:nth-of-type(2) {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-health-content__image:nth-of-type(2) {
    width: calc(50% - 12px);
  }
}
.p-health-content__image:nth-of-type(3) {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-health-content__image:nth-of-type(3) {
    width: calc(50% - 12px);
  }
}

/* =======================================================
movie (layout)
========================================================== */
.l-movie {
  padding-top: 15.5px;
  padding-bottom: 20.1px;
}
@media screen and (min-width: 900px) {
  .l-movie {
    padding-top: 9px;
    padding-bottom: 25.2px;
  }
}

.l-movie__inner {
  max-width: 540px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .l-movie__inner {
    padding-inline: 32px;
    max-width: 1022px;
    margin-inline: auto;
  }
}

.l-movie__heading {
  padding-inline: 16.5px;
}
@media screen and (min-width: 900px) {
  .l-movie__heading {
    padding-inline: 0;
  }
}

.l-movie__boxes {
  padding-inline: 44px 36.5px;
  margin-top: 6.8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .l-movie__boxes {
    padding-inline: 0;
    margin-top: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 25px;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}

.l-movie__box:nth-of-type(2) {
  margin-top: 7.7px;
}
@media screen and (min-width: 900px) {
  .l-movie__box:nth-of-type(2) {
    margin-top: 0;
  }
}

.l-movie__box:nth-of-type(3) {
  margin-top: 8.7px;
}
@media screen and (min-width: 900px) {
  .l-movie__box:nth-of-type(3) {
    margin-top: 0;
  }
}

.l-movie__box:nth-of-type(4) {
  margin-top: 12.8px;
}
@media screen and (min-width: 900px) {
  .l-movie__box:nth-of-type(4) {
    margin-top: 0;
  }
}

/* =======================================================
movie (project)
========================================================== */
.p-movie {
  background: #bfa5a6;
}

.p-movie__heading {
  font-size: min(10.2486187845px + 1.9337016575vw, 35px);
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.18px;
}
@media screen and (min-width: 900px) {
  .p-movie__heading {
    letter-spacing: 0.35px;
  }
}

.p-movie__box-youtube {
  width: 100%;
  overflow: hidden;
  border: none; /* ボーダーをリセット */
}
@media screen and (min-width: 768px) {
  .p-movie__box-youtube {
    width: calc(50% - 12px);
  }
}

.p-movie__box-youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 294.5/162.2;
  border: none;
  vertical-align: top;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (min-width: 900px) {
  .p-movie__box-youtube iframe {
    aspect-ratio: 468/256;
  }
}

/* =======================================================
achievement (layout)
========================================================== */
.l-achievement {
  padding-top: 18.5px;
  padding-bottom: 18.5px;
}
@media screen and (min-width: 900px) {
  .l-achievement {
    padding-top: 35px;
    padding-bottom: 36px;
  }
}

.l-achievement__inner {
  max-width: 540px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .l-achievement__inner {
    padding-inline: 32px;
    max-width: 1020px;
    margin-inline: auto;
  }
}

.l-achievement__top {
  padding-inline: 15.5px;
}
@media screen and (min-width: 768px) {
  .l-achievement__top {
    padding-inline: 0;
  }
}

.l-achievement-top__description {
  margin-top: 5.5px;
  padding-inline: 0.5px 3.5px;
}
@media screen and (min-width: 900px) {
  .l-achievement-top__description {
    margin-top: 4px;
    padding-inline: 0;
  }
}

.l-achievement__content {
  margin-top: 3.5px;
  padding-inline: 12.7px 17.5px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .l-achievement__content {
    margin-top: 14px;
    padding-inline: 0;
  }
}

.l-achievement-content__title {
  margin-bottom: 17.5px;
}
@media screen and (min-width: 900px) {
  .l-achievement-content__title {
    margin-bottom: 6.5px;
  }
}

/* =======================================================
achievement (project)
========================================================== */
.p-achievement {
  background: url(./../img/achievement_bg_sp.webp) no-repeat center 90%/contain;
}
@media screen and (min-width: 900px) {
  .p-achievement {
    background: url(./../img/achievement_bg_pc.webp) no-repeat center 115%/contain;
  }
}

.p-achievement-top__description {
  font-size: min(9.0276243094px + 1.3259668508vw, 26px);
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.08px;
}
@media screen and (min-width: 900px) {
  .p-achievement-top__description {
    letter-spacing: 0.26px;
  }
}

.p-achievement-content__title {
  font-size: min(7.6132596685px + 1.4364640884vw, 26px);
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.13px;
}
@media screen and (min-width: 900px) {
  .p-achievement-content__title {
    letter-spacing: 0.26px;
  }
}

.p-achievement-content__image {
  width: 100%;
}

/* =======================================================
university (layout)
========================================================== */
.l-university__inner {
  max-width: 540px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-university__inner {
    padding-inline: 32px;
    max-width: 1024px;
    margin-inline: auto;
  }
}

.l-university__top {
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .l-university__top {
    padding-inline: 70px;
  }
}
@media screen and (min-width: 900px) {
  .l-university__top {
    padding-inline: 0;
  }
}

.l-university-top__description {
  margin-top: 4.5px;
  padding-inline: 1px 6px;
}
@media screen and (min-width: 900px) {
  .l-university-top__description {
    margin-top: 11px;
    padding-inline: 0;
  }
}

.l-university__boxes {
  margin-top: 20px;
  padding-inline: 18.5px 18.5px;
}
@media screen and (min-width: 900px) {
  .l-university__boxes {
    margin-top: 20px;
    padding-inline: 0;
  }
}

.l-university-box__text {
  padding: 7px 23px 35px;
}
@media screen and (min-width: 900px) {
  .l-university-box__text {
    padding: 10px 26px 10px 26px;
  }
}

.l-university__box:nth-of-type(3) .l-university-box__text {
  padding: 7px 23px;
}
@media screen and (min-width: 900px) {
  .l-university__box:nth-of-type(3) .l-university-box__text {
    padding: 10px 25px 10px 28px;
  }
}

/* =======================================================
university (project)
========================================================== */
.p-university-top__heading {
  padding: 3px 15px 3px 12px;
}
@media screen and (min-width: 900px) {
  .p-university-top__heading {
    padding: 3px 33px 3px 23px;
  }
}

.p-university-top__description {
  font-size: min(9.0276243094px + 1.3259668508vw, 26px);
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.32;
  letter-spacing: 0.08px;
}
@media screen and (min-width: 900px) {
  .p-university-top__description {
    line-height: 1.42;
    letter-spacing: 0.26px;
  }
}

.p-university__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  row-gap: 14.5px;
}
@media screen and (min-width: 900px) {
  .p-university__boxes {
    -webkit-column-gap: 38px;
       -moz-column-gap: 38px;
            column-gap: 38px;
  }
}

.p-university__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(50% - 2.5px);
  -webkit-box-shadow: 0.9px 1.8px 1.5px 0 rgba(96, 93, 93, 0.16);
          box-shadow: 0.9px 1.8px 1.5px 0 rgba(96, 93, 93, 0.16);
  background-color: #e58898;
}
@media screen and (min-width: 768px) {
  .p-university__box {
    width: calc(25% - 29.25px);
  }
}

.p-university-box__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #FFFEFE;
  text-shadow: 0.9px 1.2px 1px rgba(35, 30, 30, 0.36);
  font-size: min(13.2209944751px + 0.6077348066vw, 21px);
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.85;
  letter-spacing: 0.16px;
  word-break: break-all;
}
@media screen and (min-width: 900px) {
  .p-university-box__text {
    line-height: 1.76;
    letter-spacing: 0.21px;
  }
}

/* =======================================================
lineup (layout)
========================================================== */
.l-lineup {
  padding-top: 20px;
}

.l-lineup__inner {
  padding-inline: 14px 14.5px;
}
@media screen and (min-width: 768px) {
  .l-lineup__inner {
    padding-inline: 32px;
    max-width: 1020px;
    margin-inline: auto;
  }
}

.l-lineup__boxes {
  max-width: 540px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .l-lineup__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 17px;
  }
}
@media screen and (min-width: 900px) {
  .l-lineup__boxes {
    padding-inline: 32px;
    max-width: 1020px;
    margin-inline: auto;
  }
}

.l-lineup__box {
  max-width: 400px;
  margin-inline: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-lineup-box__content {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.l-lineup-box__content-top {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.l-lineup-box__content-top::after {
  content: "";
  width: 100%;
  height: 1px;
  background: url(./../img/lineup_deco_line.webp) no-repeat center center/contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .l-lineup-box__content-top::after {
    width: 161px;
    height: 2px;
  }
}

.l-lineup-box__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.l-lineup-box__content-top-description {
  margin-top: 9.5px;
}
@media screen and (min-width: 768px) {
  .l-lineup-box__content-top-description {
    margin-top: 23px;
  }
}

.l-lineup-box__content-top-price {
  margin-top: 15.5px;
  padding-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .l-lineup-box__content-top-price {
    margin-top: 40px;
    padding-bottom: 49px;
  }
}

.l-lineup__box:nth-child(2) .l-lineup-box__content-top-price, .l-lineup__box:nth-child(3) .l-lineup-box__content-top-price {
  margin-top: 18px;
  padding-bottom: 4.5px;
}
@media screen and (min-width: 768px) {
  .l-lineup__box:nth-child(2) .l-lineup-box__content-top-price, .l-lineup__box:nth-child(3) .l-lineup-box__content-top-price {
    margin-top: 37px;
    padding-bottom: 43px;
  }
}

.l-lineup-box__content-bottom {
  margin-top: 12px;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .l-lineup-box__content-bottom {
    margin-top: 37px;
    gap: 34px;
  }
}

.l-lineup-box__content-bottom-mat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6.5px;
}
@media screen and (min-width: 768px) {
  .l-lineup-box__content-bottom-mat {
    gap: 8px;
  }
}

.l-lineup-box__content-bottom-voltage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7.5px;
}
@media screen and (min-width: 768px) {
  .l-lineup-box__content-bottom-voltage {
    gap: 11px;
  }
}

.l-lineup-box__content-bottom-weight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
@media screen and (min-width: 768px) {
  .l-lineup-box__content-bottom-weight {
    gap: 9px;
  }
}

/* =======================================================
lineup (project)
========================================================== */
.p-lineup__heading {
  padding: 5px 13px 2px 11.5px;
}
@media screen and (min-width: 900px) {
  .p-lineup__heading {
    padding: 5px 20px 2px 16px;
    letter-spacing: 1.2px;
  }
}

.p-lineup__box:nth-of-type(1) .p-lineup-box__image {
  margin-bottom: 2.6px;
  width: 59.2711370262%;
}
@media screen and (min-width: 768px) {
  .p-lineup__box:nth-of-type(1) .p-lineup-box__image {
    width: 100%;
    margin-bottom: 11px;
  }
}

.p-lineup__box:nth-of-type(2) .p-lineup-box__image {
  margin-bottom: 10.5px;
  width: 61.0787172012%;
  aspect-ratio: 209.5/143;
}
.p-lineup__box:nth-of-type(2) .p-lineup-box__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-lineup__box:nth-of-type(2) .p-lineup-box__image {
    width: 100%;
    aspect-ratio: 308/198;
    margin-bottom: 11px;
  }
}

.p-lineup__box:nth-of-type(3) .p-lineup-box__image {
  margin-bottom: 11px;
  width: 61.0787172012%;
  aspect-ratio: 209.5/143;
}
.p-lineup__box:nth-of-type(3) .p-lineup-box__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-lineup__box:nth-of-type(3) .p-lineup-box__image {
    margin-bottom: 11px;
    width: 100%;
    aspect-ratio: 308/198;
  }
}

.p-lineup-box__content {
  background: #f2f2f2;
  padding-block: 14px 15px;
  -webkit-box-shadow: 2.2px 2.8px 1px 0 rgba(65, 65, 65, 0.16);
          box-shadow: 2.2px 2.8px 1px 0 rgba(65, 65, 65, 0.16);
}
@media screen and (min-width: 900px) {
  .p-lineup-box__content {
    padding-block: 40px 41px;
    -webkit-box-shadow: 4.3px 5.5px 2px 0 rgba(65, 65, 65, 0.16);
            box-shadow: 4.3px 5.5px 2px 0 rgba(65, 65, 65, 0.16);
  }
}

.p-lineup-box__content-top-name {
  text-align: center;
  color: #e24c67;
  font-size: clamp(0.938rem, -0.881rem + 9.09vw, 1.25rem);
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.93;
  letter-spacing: 0.2px;
}
@media screen and (min-width: 375px) {
  .p-lineup-box__content-top-name {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-lineup-box__content-top-name {
    line-height: 1.23;
    letter-spacing: 0.3px;
    min-height: 73.8px;
  }
}
@media screen and (min-width: 900px) {
  .p-lineup-box__content-top-name {
    font-size: 27px;
  }
}
@media screen and (min-width: 1200px) {
  .p-lineup-box__content-top-name {
    font-size: 30px;
  }
}
.p-lineup-box__content-top-name span {
  font-weight: 700;
}

.p-lineup-box__content-top-description {
  font-size: clamp(0.719rem, -0.554rem + 6.36vw, 0.938rem);
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.23;
  letter-spacing: 0.15px;
}
@media screen and (min-width: 375px) {
  .p-lineup-box__content-top-description {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .p-lineup-box__content-top-description {
    font-size: 22px;
  }
}
@media screen and (min-width: 1200px) {
  .p-lineup-box__content-top-description {
    font-size: 25px;
    line-height: 1.48;
    letter-spacing: 0.25px;
  }
}

.p-lineup__box:nth-of-type(2) .p-lineup-box__content-top-description span {
  display: inline-block;
}

.p-lineup__box:nth-of-type(3) .p-lineup-box__content-top-description {
  font-size: clamp(0.719rem, -0.554rem + 6.36vw, 0.938rem);
}
@media screen and (min-width: 375px) {
  .p-lineup__box:nth-of-type(3) .p-lineup-box__content-top-description {
    font-size: 14.5px;
  }
}
@media screen and (min-width: 768px) {
  .p-lineup__box:nth-of-type(3) .p-lineup-box__content-top-description {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .p-lineup__box:nth-of-type(3) .p-lineup-box__content-top-description {
    font-size: 22px;
  }
}
@media screen and (min-width: 1200px) {
  .p-lineup__box:nth-of-type(3) .p-lineup-box__content-top-description {
    font-size: 25px;
  }
}

.p-lineup-box__content-top-price {
  color: #e24c67;
  font-size: 19px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.97;
  letter-spacing: 0.19px;
}
@media screen and (min-width: 768px) {
  .p-lineup-box__content-top-price {
    font-size: 24px;
  }
}
@media screen and (min-width: 900px) {
  .p-lineup-box__content-top-price {
    font-size: 35px;
  }
}
@media screen and (min-width: 1200px) {
  .p-lineup-box__content-top-price {
    font-size: 38px;
    line-height: 0.97;
    letter-spacing: 0.38px;
  }
}
.p-lineup-box__content-top-price span:nth-child(1) {
  font-size: min(13.1491712707px + 1.1602209945vw, 28px);
  letter-spacing: 0.18px;
}
@media screen and (min-width: 768px) {
  .p-lineup-box__content-top-price span:nth-child(1) {
    letter-spacing: 0.28px;
  }
}
.p-lineup-box__content-top-price span:nth-child(2) {
  font-size: min(10.7569060773px + 0.3314917127vw, 15px);
  letter-spacing: 0.12px;
}
@media screen and (min-width: 768px) {
  .p-lineup-box__content-top-price span:nth-child(2) {
    line-height: 2.47;
    letter-spacing: 0.15px;
  }
}

.p-lineup__box:nth-of-type(2) .p-lineup-box__content-top-price, .p-lineup__box:nth-of-type(3) .p-lineup-box__content-top-price {
  font-size: 25px;
}
@media screen and (min-width: 768px) {
  .p-lineup__box:nth-of-type(2) .p-lineup-box__content-top-price, .p-lineup__box:nth-of-type(3) .p-lineup-box__content-top-price {
    font-size: 24px;
  }
}
@media screen and (min-width: 900px) {
  .p-lineup__box:nth-of-type(2) .p-lineup-box__content-top-price, .p-lineup__box:nth-of-type(3) .p-lineup-box__content-top-price {
    font-size: 38px;
  }
}

.p-lineup-box__content-bottom-mat span:nth-child(1) {
  font-size: 15px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.23;
  letter-spacing: 0.15px;
}
@media screen and (min-width: 768px) {
  .p-lineup-box__content-bottom-mat span:nth-child(1) {
    font-size: 18px;
  }
}
@media screen and (min-width: 900px) {
  .p-lineup-box__content-bottom-mat span:nth-child(1) {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .p-lineup-box__content-bottom-mat span:nth-child(1) {
    font-size: 26px;
  }
}
.p-lineup-box__content-bottom-mat span:nth-child(2) {
  font-size: 20px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.93;
  letter-spacing: 0.2px;
}
@media screen and (min-width: 768px) {
  .p-lineup-box__content-bottom-mat span:nth-child(2) {
    font-size: 22px;
  }
}
@media screen and (min-width: 900px) {
  .p-lineup-box__content-bottom-mat span:nth-child(2) {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .p-lineup-box__content-bottom-mat span:nth-child(2) {
    font-size: 26px;
  }
}

.p-lineup-box__content-bottom-voltage span:nth-child(1) {
  font-size: 15px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.23;
  letter-spacing: 0.15px;
}
@media screen and (min-width: 768px) {
  .p-lineup-box__content-bottom-voltage span:nth-child(1) {
    font-size: 18px;
  }
}
@media screen and (min-width: 900px) {
  .p-lineup-box__content-bottom-voltage span:nth-child(1) {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .p-lineup-box__content-bottom-voltage span:nth-child(1) {
    font-size: 26px;
  }
}
.p-lineup-box__content-bottom-voltage span:nth-child(2) {
  font-size: 20px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.93;
  letter-spacing: 0.2px;
}
@media screen and (min-width: 768px) {
  .p-lineup-box__content-bottom-voltage span:nth-child(2) {
    font-size: 22px;
  }
}
@media screen and (min-width: 900px) {
  .p-lineup-box__content-bottom-voltage span:nth-child(2) {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .p-lineup-box__content-bottom-voltage span:nth-child(2) {
    font-size: 26px;
  }
}

.p-lineup-box__content-bottom-weight span:nth-child(1) {
  font-size: 15px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.23;
  letter-spacing: 0.15px;
}
@media screen and (min-width: 768px) {
  .p-lineup-box__content-bottom-weight span:nth-child(1) {
    font-size: 18px;
  }
}
@media screen and (min-width: 900px) {
  .p-lineup-box__content-bottom-weight span:nth-child(1) {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .p-lineup-box__content-bottom-weight span:nth-child(1) {
    font-size: 26px;
  }
}
.p-lineup-box__content-bottom-weight span:nth-child(2) {
  font-size: 20px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.93;
  letter-spacing: 0.2px;
}
@media screen and (min-width: 768px) {
  .p-lineup-box__content-bottom-weight span:nth-child(2) {
    font-size: 22px;
  }
}
@media screen and (min-width: 900px) {
  .p-lineup-box__content-bottom-weight span:nth-child(2) {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .p-lineup-box__content-bottom-weight span:nth-child(2) {
    font-size: 26px;
  }
}

/* =======================================================
cta (layout)
========================================================== */
.l-cta {
  padding-top: 19px;
}
@media screen and (min-width: 900px) {
  .l-cta {
    padding-top: 12px;
  }
}

.l-cta__inner {
  padding-inline: 16px 15px;
  max-width: 540px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-cta__inner {
    padding-inline: 32px;
    max-width: 1024px;
    margin-inline: auto;
  }
}

@media screen and (min-width: 768px) {
  .l-cta__content {
    padding-inline: 81px;
  }
}

.l-cta__description {
  margin-top: 3.5px;
}

.l-cta__link {
  margin-top: 14px;
}
@media screen and (min-width: 900px) {
  .l-cta__link {
    margin-top: 21px;
  }
}

/* =======================================================
cta (project)
========================================================== */
.p-cta__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-cta__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}
@media screen and (min-width: 900px) {
  .p-cta__content {
    gap: 25px;
  }
}

@media screen and (min-width: 768px) {
  .p-cta__texts {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-cta__heading {
  padding: 6px 75px 6px 75px;
  line-height: 1.16;
  letter-spacing: 0.16px;
}
@media screen and (min-width: 375px) {
  .p-cta__heading {
    padding: 6px 103px 6px 102px;
  }
}
@media screen and (min-width: 768px) {
  .p-cta__heading {
    width: 100%;
    text-align: center;
  }
}

.p-cta__description {
  font-size: min(9.4419889503px + 1.2154696133vw, 25px);
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.32;
  letter-spacing: 0.14px;
}
@media screen and (min-width: 900px) {
  .p-cta__description {
    line-height: 1.48;
    letter-spacing: 0.25px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-cta__link {
  margin-inline: auto;
  width: 41.1337209302%;
}
@media screen and (min-width: 768px) {
  .p-cta__link {
    width: 25.73%;
  }
}

/* =======================================================
company (layout)
========================================================== */
.l-company {
  padding-top: 30.5px;
}
@media screen and (min-width: 900px) {
  .l-company {
    margin-top: 68px;
  }
}

.l-company__inner {
  padding-inline: 15.5px 14.5px;
  max-width: 540px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .l-company__inner {
    padding-inline: 32px;
    max-width: 1025px;
    margin-inline: auto;
  }
}

.l-company__heading {
  text-align: center;
  padding-right: 10px;
}

.l-company__content {
  margin-top: 5.5px;
}
@media screen and (min-width: 900px) {
  .l-company__content {
    margin-top: 23px;
  }
}

/* =======================================================
company (project)
========================================================== */
.p-company__table {
  width: 100%;
  border-collapse: collapse;
}

.p-company__table-row {
  text-align: left;
  font-size: min(9.0276243094px + 1.3259668508vw, 26px);
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.14px;
}

.p-company__table-header {
  padding: 11px 5px 8.5px;
  width: clamp(8.156rem, 5.083rem + 13.11vw, 10rem);
}
@media screen and (min-width: 600px) {
  .p-company__table-header {
    width: clamp(10rem, 5.223rem + 12.74vw, 16.688rem);
  }
}
@media screen and (min-width: 900px) {
  .p-company__table-header {
    padding: 22px 28px 22px;
    width: 267px;
  }
}

.p-company__table-row:nth-child(2) .p-company__table-header {
  padding: 2px 5px 3px;
}
@media screen and (min-width: 900px) {
  .p-company__table-row:nth-child(2) .p-company__table-header {
    padding: 22px 28px 22px;
    width: 267px;
  }
}

.p-company__table-data {
  padding: 11px 11px 8.5px;
}
@media screen and (min-width: 900px) {
  .p-company__table-data {
    padding: 22px 37px 22px;
  }
}
.p-company__table-data span {
  display: block;
}
@media screen and (min-width: 900px) {
  .p-company__table-data span {
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
  }
  .p-company__table-data span:last-child {
    margin-right: 0;
  }
}

.p-company__table-row:nth-child(2) .p-company__table-data {
  font-size: clamp(0.688rem, -0.04rem + 3.64vw, 0.813rem);
  padding: 2px 9px 3px;
  line-height: 1.2;
}
@media screen and (min-width: 375px) {
  .p-company__table-row:nth-child(2) .p-company__table-data {
    font-size: min(7.6132596685px + 1.4364640884vw, 26px);
  }
}
@media screen and (min-width: 900px) {
  .p-company__table-row:nth-child(2) .p-company__table-data {
    padding: 22px 37px 22px;
  }
}

th, td {
  border: 1px solid #b7b4b1;
}

/* =======================================================
greeting (layout)
========================================================== */
.l-greeting {
  padding-top: 30.5px;
  padding-bottom: 31px;
}
@media screen and (min-width: 900px) {
  .l-greeting {
    padding-top: 95px;
    padding-bottom: 52px;
  }
}

.l-greeting__inner {
  max-width: 540px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .l-greeting__inner {
    padding-inline: 32px;
    max-width: 1022px;
    margin-inline: auto;
  }
}

.l-greeting__heading {
  text-align: center;
  padding-inline: 25.5px 25px;
}
@media screen and (min-width: 900px) {
  .l-greeting__heading {
    padding-inline: 0;
  }
}

.l-greeting__content {
  margin-top: 40px;
  padding-inline: 17px 20px;
}
@media screen and (min-width: 900px) {
  .l-greeting__content {
    margin-top: 85px;
    padding-inline: 0;
  }
}

.l-greeting-content__image {
  margin-inline: auto;
}

.l-greeting-content__text-name {
  margin-top: 9px;
}
@media screen and (min-width: 900px) {
  .l-greeting-content__text-name {
    margin-top: 12px;
  }
}

.l-greeting-content__text-message {
  margin-top: 9px;
}
@media screen and (min-width: 900px) {
  .l-greeting-content__text-message {
    margin-top: 18px;
  }
}

/* =======================================================
greeting (project)
========================================================== */
.p-greeting {
  overflow: hidden;
}

.p-greeting__content {
  position: relative;
}
.p-greeting__content::before {
  content: "";
  width: 662px;
  height: 675.5px;
  border-radius: 50%;
  background: #e24c67;
  position: absolute;
  top: -7%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 375px) {
  .p-greeting__content::before {
    width: 841px;
    height: 841px;
  }
}
@media screen and (min-width: 600px) {
  .p-greeting__content::before {
    width: 1683px;
    height: 1344px;
  }
}
@media screen and (min-width: 900px) {
  .p-greeting__content::before {
    top: -11%;
  }
}

.p-greeting-content__image {
  width: 39.4387001477%;
}
@media screen and (min-width: 900px) {
  .p-greeting-content__image {
    width: 27.8705636743%;
  }
}

.p-greeting-content__text-name {
  text-align: center;
  font-size: min(7.320441989px + 1.3812154696vw, 25px);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: 0.13px;
  color: #e24c67;
  text-shadow: 0.5px 0.5px 0 #FFFEFE, -0.5px -0.5px 0 #FFFEFE, 0.5px -0.5px 0 #FFFEFE, -0.5px 0.5px 0 #FFFEFE; /* 左下 */
}
@media screen and (min-width: 900px) {
  .p-greeting-content__text-name {
    line-height: 1.32;
    letter-spacing: 0.25px;
  }
}
.p-greeting-content__text-name span {
  display: block;
}

.p-greeting-content__text-message {
  color: #FFFEFE;
  font-size: min(9.4419889503px + 1.2154696133vw, 25px);
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.08px;
  word-break: break-all;
}
@media screen and (min-width: 900px) {
  .p-greeting-content__text-message {
    letter-spacing: 0.25px;
  }
}

/* =======================================================
contact (layout)
========================================================== */
.l-contact {
  padding-block: 40px 29.5px;
  padding-inline: 15px;
}
@media screen and (min-width: 900px) {
  .l-contact {
    padding-block: 103px;
  }
}

.l-contact__inner {
  max-width: 540px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .l-contact__inner {
    padding-inline: 32px;
    max-width: 1026px;
    margin-inline: auto;
  }
}

.l-contact__form {
  margin-top: 23px;
}
@media screen and (min-width: 900px) {
  .l-contact__form {
    margin-top: 25px;
  }
}

.l-contact__field:nth-of-type(2) {
  margin-top: 6.5px;
}
@media screen and (min-width: 900px) {
  .l-contact__field:nth-of-type(2) {
    margin-top: 22.5px;
  }
}

.l-contact__field:nth-child(3) {
  margin-top: 9px;
}
@media screen and (min-width: 900px) {
  .l-contact__field:nth-child(3) {
    margin-top: 21px;
  }
}

.l-contact__field:nth-child(4) {
  margin-top: 11px;
}
@media screen and (min-width: 900px) {
  .l-contact__field:nth-child(4) {
    margin-top: 26px;
  }
}

.l-contact__field:nth-child(5) {
  margin-top: 13px;
}
@media screen and (min-width: 900px) {
  .l-contact__field:nth-child(5) {
    margin-top: 24px;
  }
}

.l-contact__field:nth-child(1) .l-contact__form-field {
  gap: 14.5px;
}
@media screen and (min-width: 900px) {
  .l-contact__field:nth-child(1) .l-contact__form-field {
    gap: 4.5px;
  }
}

.l-contact__field:nth-child(2) .l-contact__form-field {
  gap: 12.5px;
}

.l-contact__field:nth-child(3) .l-contact__form-field {
  gap: 10.5px;
}

.l-contact__field:nth-child(4) .l-contact__form-field {
  gap: 8px;
}

.l-contact__field:nth-child(5) .l-contact__form-field {
  gap: 6px;
}

.l-contact__button {
  margin-top: 23.5px;
}
@media screen and (min-width: 900px) {
  .l-contact__button {
    margin-top: 70px;
  }
}

/* =======================================================
contact (project)
========================================================== */
.p-contact {
  text-align: center;
}

.p-contact__form {
  padding-block: 25px 30px;
  padding-inline: 11.5px;
  background: #f0eded;
}
@media screen and (min-width: 900px) {
  .p-contact__form {
    padding-block: 70px;
    padding-inline: 81px 88px;
  }
}

.p-contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-contact__form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-contact__form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.5px;
}
@media screen and (min-width: 900px) {
  .p-contact__form-field__head {
    gap: 6px;
  }
}

.p-contact__form-field__label {
  font-size: min(5.2486187845px + 1.9337016575vw, 30px);
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.13px;
}
@media screen and (min-width: 900px) {
  .p-contact__form-field__label {
    letter-spacing: 0.3px;
  }
}

.p-contact__form-field__tag {
  color: #e24c67;
  font-size: min(5.2486187845px + 1.9337016575vw, 30px);
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.13px;
}
@media screen and (min-width: 900px) {
  .p-contact__form-field__tag {
    letter-spacing: 0.3px;
  }
}

.p-contact__form-field__item {
  width: 100%;
  background: #f0eded;
}

.p-contact__form-text {
  width: 100%;
  height: 33px;
  background: #ffffff;
  border: 1px solid #f0eded;
}
@media screen and (min-width: 900px) {
  .p-contact__form-text {
    height: 81px;
  }
}

.p-contact__form-textarea {
  width: 100%;
  height: 125px;
  background: #ffffff;
  border: 1px solid #f0eded;
}
@media screen and (min-width: 900px) {
  .p-contact__form-textarea {
    height: 307px;
  }
}

.p-contact__form-text,
.p-contact__form-textarea {
  font-size: min(5.2486187845px + 1.9337016575vw, 30px);
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.13px;
}
.p-contact__form-text:hover, .p-contact__form-text:focus,
.p-contact__form-textarea:hover,
.p-contact__form-textarea:focus {
  border: 1px solid #bfa5a6;
  outline: none;
}
.p-contact__form-text.is-error,
.p-contact__form-textarea.is-error {
  border: 1px solid #e24c67;
  background: #E98293;
}

.p-contact__button {
  text-align: center;
}
.p-contact__button input[type=submit] {
  padding-block: 12px 11px;
  padding-inline: clamp(6.063rem, -3.574rem + 48.18vw, 7.719rem);
  background: #e24c67;
  color: #FFFEFE;
  font-size: min(7.529281768px + 3.0055248619vw, 46px);
  font-weight: 700;
  letter-spacing: 0.19px;
  border: 1px solid transparent;
}
@media screen and (min-width: 375px) {
  .p-contact__button input[type=submit] {
    padding-inline: 123.5px;
  }
}
@media screen and (min-width: 1200px) {
  .p-contact__button input[type=submit] {
    padding-inline: 305px 303px;
    letter-spacing: 0.46px;
  }
}
.p-contact__button input[type=submit]:hover, .p-contact__button input[type=submit]:focus {
  opacity: 0.7;
}

.p-contact__button input[type=submit].is-error {
  background: #E98293 !important;
}

/* =======================================================
thanks.html (layout)
========================================================== */
.l-thanks {
  margin-top: 55.5px;
  height: calc(100vh - 55.5px);
}
@media screen and (min-width: 768px) {
  .l-thanks {
    margin-top: 70px;
    height: calc(100vh - 70px);
  }
}

.l-thanks__inner {
  height: 100%;
  padding-block: 33.5px;
  padding-inline: 16px 15.5px;
}
@media screen and (min-width: 1440px) {
  .l-thanks__inner {
    padding-block: 83px 120px;
    padding-inline: 100px 99px;
  }
}

.l-thanks__content {
  padding-top: 124px;
  height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 600px) {
  .l-thanks__content {
    padding-top: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .l-thanks__content {
    max-width: 1080px;
    margin-inline: auto;
    padding-top: 97px;
  }
}
@media screen and (min-width: 1440px) {
  .l-thanks__content {
    max-width: 1241px;
    margin-inline: auto;
    max-height: 656px;
    padding-top: 97px;
  }
}

.l-thanks-content__top {
  padding-bottom: 26px;
}

.l-thanks-content__top__mark {
  margin-top: 19px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-thanks-content__top__mark {
    margin-top: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .l-thanks-content__top__mark {
    margin-top: 43px;
  }
}

.l-thanks-content__bottom {
  margin-top: 45px;
}
@media screen and (min-width: 768px) {
  .l-thanks-content__bottom {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1440px) {
  .l-thanks-content__bottom {
    margin-top: 41px;
  }
}

/* =======================================================
thanks.html (project)
========================================================== */
.p-thanks__inner {
  background: #f0eded;
}

.p-thanks__content {
  background: #ffffff;
}

.p-thanks-content__top {
  position: relative;
}
.p-thanks-content__top::after {
  content: "";
  display: block;
  background: url(./../img/thanks_deco_border.webp) no-repeat center center/cover;
  width: 81.9505094614%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-thanks-content__top::after {
    width: 82.0306204674%;
  }
}

.p-thanks-content__top-heading {
  font-size: clamp(1.781rem, 0.69rem + 5.45vw, 1.969rem);
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.32px;
}
@media screen and (min-width: 375px) {
  .p-thanks-content__top-heading {
    font-size: 31.5px;
  }
}
@media screen and (min-width: 1200px) {
  .p-thanks-content__top-heading {
    font-size: 63px;
    letter-spacing: 0.63px;
  }
}

.p-thanks-content__top__mark {
  width: 69px;
}
.p-thanks-content__top__mark img {
  width: 100%;
}
@media screen and (min-width: 1440px) {
  .p-thanks-content__top__mark {
    width: 138px;
  }
}

.p-thanks-content__bottom-text {
  font-size: clamp(0.813rem, 0.449rem + 1.82vw, 0.875rem);
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.14px;
}
@media screen and (min-width: 375px) {
  .p-thanks-content__bottom-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .p-thanks-content__bottom-text {
    font-size: 28px;
    letter-spacing: 0.28px;
  }
}
.p-thanks-content__bottom-text span:nth-child(1) {
  display: block;
}
.p-thanks-content__bottom-text span:nth-child(2) {
  display: block;
  margin-top: 11px;
}
@media screen and (min-width: 1200px) {
  .p-thanks-content__bottom-text span:nth-child(2) {
    display: inline-block;
    margin-top: 10px;
  }
}
.p-thanks-content__bottom-text span:nth-child(2) span {
  display: none;
}
@media screen and (min-width: 1200px) {
  .p-thanks-content__bottom-text span:nth-child(2) span {
    display: inline;
  }
}
.p-thanks-content__bottom-text span:nth-child(3) {
  display: block;
  margin-top: 8.5px;
}
@media screen and (min-width: 1200px) {
  .p-thanks-content__bottom-text span:nth-child(3) {
    display: inline-block;
    margin-top: 10px;
  }
}