@charset "UTF-8";
@font-face {
  font-family: sans;
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/notosans/NotoSansJP-Light.otf");
  src: url("../fonts/notosans/NotoSansJP-Light.woff2") format("woff"), url("../fonts/notosans/NotoSansJP-Light.ttf") format("truetype");
}
@font-face {
  font-family: sans;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/notosans/NotoSansJP-Regular.otf");
  src: url("../fonts/notosans/NotoSansJP-Regular.woff2") format("woff"), url("../fonts/notosans/NotoSansJP-Regular.ttf") format("truetype");
}
@font-face {
  font-family: sans;
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/notosans/NotoSansJP-Medium.otf");
  src: url("../fonts/notosans/NotoSansJP-Medium.woff2") format("woff"), url("../fonts/notosans/NotoSansJP-Medium.ttf") format("truetype");
}
@font-face {
  font-family: sans;
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/notosans/NotoSansJP-Bold.otf");
  src: url("../fonts/notosans/NotoSansJP-Bold.woff2") format("woff"), url("../fonts/notosans/NotoSansJP-Bold.ttf") format("truetype");
}
@font-face {
  font-family: sans;
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/notosans/NotoSansJP-Regular.otf");
  src: url("../fonts/notosans/NotoSansJP-Regular.woff2") format("woff"), url("../fonts/notosans/NotoSansJP-Regular.ttf") format("truetype");
}
.sans {
  font-family: sans, sans-serif;
}

@font-face {
  font-family: avenir;
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/avenir/AvenirNext-UltraLight.otf");
  src: url("../fonts/avenir/AvenirNext-UltraLight.woff") format("woff"), url("../fonts/avenir/AvenirNext-UltraLight.ttf") format("truetype");
}
.avenir {
  font-family: avenir, sans-serif;
}

html {
  font-family: sans, sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}
@media screen and (max-width: 750px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body {
  font-size: 1.6rem;
  font-feature-settings: "palt" 1;
  color: #595757;
}
@media screen and (max-width: 750px) {
  body {
    font-size: 1.4rem;
  }
}

.lwrap {
  width: 100%;
  max-width: 118rem;
  padding-inline: 1.5rem;
  margin-inline: auto;
}

@media screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 750px) {
  .sp {
    display: block !important;
  }
}

ruby {
  font-size: 0.75em;
  vertical-align: super;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .header__inner {
    padding: 2.5rem 4.5rem;
  }
}

.header__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: min(12vw, 18rem);
}
@media screen and (max-width: 750px) {
  .header__logo {
    margin-left: 0;
  }
}
.header__logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.header__logo a:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .header__logo a:hover {
    opacity: 0.8;
  }
}
.header__logo img {
  width: clamp(9rem, 14.0625vw, 18rem);
}
@media screen and (max-width: 750px) {
  .header__logo img {
    width: 26.4rem;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 750px) {
  .header__nav {
    display: none;
  }
}

.header__nav__menu {
  display: flex;
  align-items: center;
}

.header__nav__item {
  border-left: 1px solid #231815;
}

.header__nav__link {
  display: flex;
  gap: clamp(0.5rem, 0.78125vw, 1rem);
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: clamp(4rem, 6.25vw, 8rem);
  padding: clamp(0.5rem, 0.78125vw, 1rem) clamp(1rem, 1.5625vw, 2rem);
  font-size: clamp(0.55rem, 0.859375vw, 1.1rem);
  font-weight: 400;
  line-height: 1.1818181818;
  color: #595757;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.3s;
}
.header__nav__link:focus-visible {
  color: #77516b;
}
@media (any-hover: hover) {
  .header__nav__link:hover {
    color: #77516b;
  }
}

.header__nav__link__icon {
  position: relative;
  width: clamp(1.25rem, 1.953125vw, 2.5rem);
}
.header__nav__link__icon img:nth-of-type(2) {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
}
.header__nav__link__icon img:nth-of-type(2):where(.header__nav__link:focus-visible *) {
  opacity: 1;
}
@media (any-hover: hover) {
  .header__nav__link__icon img:nth-of-type(2):where(.header__nav__link:hover *) {
    opacity: 1;
  }
}

.header__nav__buttons {
  position: relative;
  height: 100%;
}
.header__nav__buttons button {
  display: flex;
  gap: clamp(0.5rem, 0.78125vw, 1rem);
  align-items: center;
  justify-content: center;
  width: 250px;
  min-height: clamp(4rem, 6.25vw, 8rem);
  padding: 0.5em 3em;
  border: 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.03em;
  cursor: pointer;
  background-color: #000;
  transition: opacity 0.3s;
}
.header__nav__buttons__menu {
  position: absolute;
  top: 81px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  width: 100%;
  background-color: #fff;
}
.header__nav__buttons button:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .header__nav__buttons button:hover {
    opacity: 0.8;
  }
}
.header__nav__buttons__menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  background-color: #c9b7b1;
  color: #595757;
  text-decoration: none;
  transition: background-color .4s, color .4s;
}
.header__nav__buttons__menu a:hover {
  background-color: #000;
  color: #fff;
}
.header__nav__buttons__menu a span:after {
  content: '';
  display: inline-block;
  margin-left: 6px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #595757;
  border-right: 2px solid #595757;
  transform: rotate(45deg) translateY(-2px);
  transition: border-color .4s;
}
.header__nav__buttons__menu a:hover span:after {
  border-color: #fff;
}

.drawer-button {
  position: relative;
  z-index: 1001;
  display: none;
  width: 5.5rem;
  height: 4rem;
  cursor: pointer;
  background-color: transparent;
  border: none;
  transition: opacity var(--transition-duration) var(--transition-timing-function);
}
@media screen and (max-width: 750px) {
  .drawer-button {
    display: block;
  }
}
@media (any-hover: hover) {
  .drawer-button:hover {
    opacity: 0.8;
  }
}
.drawer-button > span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 5.5rem;
  height: 0.6rem;
  background-color: #000;
  border-radius: 100vh;
}
.drawer-button > span:nth-child(1) {
  transition: transform 0.3s ease;
  transform: translate(-50%, calc(-50% - 1rem));
}
.drawer-button > span:nth-child(2) {
  transition: opacity var(--transition-duration) var(--transition-timing-function);
  transform: translate(-50%, -50%);
}
.drawer-button > span:nth-child(3) {
  transition: transform 0.3s ease;
  transform: translate(-50%, calc(-50% + 1rem));
}
.drawer-button.is-open > span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.drawer-button.is-open > span:nth-child(2) {
  opacity: 0;
}
.drawer-button.is-open > span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer-nav {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  transition: transform 0.3s;
  transform: translateY(-100%);
}
@media screen and (max-width: 750px) {
  .drawer-nav {
    display: block;
  }
}
.drawer-nav.is-open {
  transform: none;
}

.drawer-nav__inner {
  width: 100%;
  height: 100%;
  padding-top: 23rem;
  overflow: scroll;
  background-color: #c9b7b1;
}
.drawer-nav__inner > * {
  max-width: 62rem;
  margin-inline: auto;
}

.drawer-nav__logo {
  margin-bottom: 11rem;
}
.drawer-nav__logo img {
  width: 36.9rem;
}

.drawer-nav__title {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  font-size: 3rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #595757;
}

.drawer_nav__menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 0;
  margin-bottom: 17rem;
}

.drawer_nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2.2rem;
  font-weight: normal;
  line-height: 1.1363636364;
  color: inherit;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.drawer_nav__link__icon {
  display: grid;
  place-items: center;
  width: 8rem;
  aspect-ratio: 1;
}

.drawer-nav__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.drawer-nav__button {
  position: relative;
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  min-width: 43.6rem;
  min-height: 8.8rem;
  margin-bottom: 4rem;
  font-size: 3rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.03em;
  cursor: pointer;
  background-color: #000;
  border-radius: 1rem;
  transition: opacity 0.3s;
}
.drawer-nav__button::after {
  width: 1.6rem;
  height: auto;
  aspect-ratio: 1;
  content: "";
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
}
.drawer-nav__button:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .drawer-nav__button:hover {
    opacity: 0.8;
  }
}
.drawer-nav__button > img {
  width: 4rem;
}

.mv {
  position: relative;
}

.mv__image img {
  width: 100vw;
  max-width: unset;
}

.mv__cta {
  position: absolute;
  right: clamp(3.75rem, 5.859375vw, 7.5rem);
  bottom: clamp(1.5rem, 2.34375vw, 3rem);
}
@media screen and (max-width: 750px) {
  .mv__cta {
    right: 3rem;
    bottom: 4rem;
  }
}

.mv__cta__link {
  display: block;
  width: clamp(8rem, 12.5vw, 16rem);
  transition: opacity 0.3s;
}
@media screen and (max-width: 750px) {
  .mv__cta__link {
    width: 24rem;
  }
}
.mv__cta__link:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .mv__cta__link:hover {
    opacity: 0.8;
  }
}

.intro {
  padding-top: clamp(8.5rem, 13.28125vw, 17rem);
  padding-bottom: clamp(2rem, 3.125vw, 4rem);
}
@media screen and (max-width: 750px) {
  .intro {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }
}

.intro__title {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(1.75rem, 2.734375vw, 3.5rem);
}
@media screen and (max-width: 750px) {
  .intro__title {
    margin-bottom: 5rem;
  }
}
.intro__title img {
  width: clamp(25.4666666667rem, 29.84375vw, 38.2rem);
}
@media screen and (max-width: 750px) {
  .intro__title img {
    width: 48rem;
  }
}

.intro__text {
  margin-bottom: clamp(2.5rem, 3.90625vw, 5rem);
  font-size: clamp(1.4rem, 1.5625vw, 2rem);
  line-height: 2.7;
  text-align: center;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 750px) {
  .intro__text {
    margin-bottom: 7rem;
    font-size: 2.8rem;
    line-height: 2.4285714286;
  }
}

.intro__image {
  max-width: 38rem;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .intro__image {
    max-width: 56rem;
  }
}

.bg-brown {
  background-color: #c9b7b1;
}

.worries {
  position: relative;
  padding-top: clamp(12.5rem, 19.53125vw, 25rem);
  padding-bottom: clamp(11rem, 17.1875vw, 22rem);
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .worries {
    padding-top: 22rem;
    padding-bottom: 20rem;
  }
}
.worries::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 120vw;
  height: auto;
  aspect-ratio: 1800/550;
  content: "";
  background-color: #fff;
  border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  transform: translate(-50%, -75%);
}

.worries__inner {
  position: relative;
  padding-inline: 1.5rem;
  background-color: #fff;
}
.worries__inner::before {
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 10/2;
  -webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
          clip-path: polygon(50% 100%, 100% 0, 0 0);
  content: "";
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .worries__inner::before {
    aspect-ratio: 10/2.5;
  }
}

.worries__title {
  display: grid;
  place-items: center;
  width: clamp(32.4rem, 50.625vw, 64.8rem);
  height: auto;
  aspect-ratio: 648/74;
  margin: 0 auto 1rem;
  font-size: clamp(1.5rem, 2.34375vw, 3rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  background: url(../images/worries_title_bg.svg) no-repeat center/cover;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .worries__title {
    width: 62.8rem;
    font-size: 2.9rem;
  }
}

.worries__text {
  max-width: 101.5rem;
  margin: 0 auto;
  font-size: clamp(1.4rem, 1.40625vw, 1.8rem);
  line-height: 1.6666666667;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 750px) {
  .worries__text {
    max-width: 60rem;
    margin-bottom: 4rem;
    font-size: 2.6rem;
    line-height: 1.5384615385;
  }
}

.worries__remarks {
  max-width: 101.5rem;
  margin: 0 auto 2.5rem;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 750px) {
  .worries__remarks {
    max-width: 60rem;
    font-size: 1.5rem;
    line-height: 1.5333333333;
  }
}

.worries__info {
  max-width: 101.5rem;
  margin: 0 auto clamp(4rem, 6.25vw, 8rem);
  font-size: clamp(1.4rem, 1.484375vw, 1.9rem);
  text-align: end;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 750px) {
  .worries__info {
    max-width: 60rem;
    margin-bottom: 13rem;
    font-size: 2.2rem;
  }
}

.worries__info__name {
  margin-left: 0.5em;
  font-size: 1.4210526316em;
  font-weight: 500;
}

.worries__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(6rem, 9.375vw, 12rem);
  max-width: clamp(40rem, 62.5vw, 80rem);
  margin: 0 auto 2rem;
}
@media screen and (max-width: 750px) {
  .worries__list {
    grid-template-columns: unset;
    max-width: 50rem;
  }
}

.worries__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: clamp(0.75rem, 1.171875vw, 1.5rem);
}

.worries__item__text {
  font-size: clamp(1.4rem, 1.875vw, 2.2rem);
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 750px) {
  .worries__item__text {
    font-size: 3rem;
  }
}
.worries__item__text span {
  padding: 0.1em 0.4em;
  color: #fff;
  background-color: #77516b;
}

.posture {
  padding-top: clamp(4.5rem, 7.03125vw, 9rem);
  padding-bottom: clamp(6rem, 9.375vw, 12rem);
}
@media screen and (max-width: 750px) {
  .posture {
    padding-top: 9rem;
    padding-bottom: 25rem;
  }
}

.posture__title {
  width: clamp(21.7rem, 33.90625vw, 43.4rem);
  margin: 0 auto clamp(6rem, 9.375vw, 12rem);
}
@media screen and (max-width: 750px) {
  .posture__title {
    width: 53.4rem;
    margin-bottom: 5rem;
  }
}

.posture__lead {
  margin-bottom: clamp(2rem, 3.125vw, 4rem);
  font-size: clamp(1.4rem, 2.03125vw, 2.6rem);
  color: #77516b;
  text-align: center;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  .posture__lead {
    font-size: 3rem;
  }
}
.posture__lead span {
  display: block;
  font-size: 1.9230769231em;
  font-weight: 700;
  color: #595757;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 750px) {
  .posture__lead span {
    margin-top: 0.5em;
    font-size: 1.6666666667em;
  }
}

.posture__lead span.s-txt {
	display: inline-block;
	font-weight: 400;
	font-size: .3em;
}
@media screen and (max-width: 750px) {
  .posture__lead span.s-txt {
    display: block;
    text-align: right;
    font-size: 2.6rem;
    margin-top: 0;
    padding-right: 1.5rem;
  }
}

.posture__media {
  display: grid;
  grid-template-columns: 49% 1fr;
  gap: 5rem clamp(1rem, 1.5625vw, 2rem);
  margin-bottom: clamp(5rem, 7.8125vw, 10rem);
}
@media screen and (max-width: 750px) {
  .posture__media {
    grid-template-columns: unset;
    margin-bottom: 15rem;
  }
}

.posture__media__image {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.posture__media__image img {
  width: 100%;
  max-width: 44rem;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .posture__media__image img {
    max-width: 62rem;
  }
}

.posture__media__point {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.4em 2em;
  margin: 0 auto clamp(1rem, 1.5625vw, 2rem);
  font-size: clamp(1.4rem, 1.71875vw, 2.2rem);
  font-weight: 700;
  line-height: 1.4545454545;
  color: #595757;
  text-align: center;
  letter-spacing: 0.08em;
  background-color: #fff;
  border-radius: 100vh;
}
@media screen and (max-width: 750px) {
  .posture__media__point {
    margin-bottom: 4.5rem;
    font-size: 3rem;
  }
}

.posture__media__text {
  font-size: clamp(1.4rem, 1.5625vw, 2rem);
  font-weight: 500;
  line-height: 1.7;
  color: #595757;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
  .posture__media__text {
    font-size: 2.7rem;
  }
}

.posture__media__body {
  display: grid;
  align-items: end;
}

.posture__media__list {
  display: grid;
  gap: clamp(0.75rem, 1.171875vw, 1.5rem);
  counter-reset: counter;
}
@media screen and (max-width: 750px) {
  .posture__media__list {
    display: none;
  }
}

.posture__media__item {
  display: grid;
  grid-template-columns: clamp(5rem, 7.8125vw, 10rem) 1fr clamp(9.5rem, 14.84375vw, 19rem);
  align-items: center;
  border: 2px dotted #595757;
  border-radius: 0.8rem;
}
.posture__media__item::before {
  font-family: avenir, sans-serif;
  font-size: clamp(4rem, 6.25vw, 8rem);
  font-weight: 300;
  color: #595757;
  text-align: center;
  content: "" counter(counter);
  counter-increment: counter 1;
}

.posture__media__item-content {
  display: grid;
  gap: clamp(0.75rem, 1.171875vw, 1.5rem);
  align-content: center;
  padding-right: clamp(0.75rem, 1.171875vw, 1.5rem);
}

.posture__media__item-title {
  display: grid;
  place-items: center;
  align-self: end;
  min-width: clamp(9.85rem, 15.390625vw, 19.7rem);
  min-height: clamp(2.1rem, 3.28125vw, 4.2rem);
  font-size: clamp(1.4rem, 1.71875vw, 2.2rem);
  font-weight: 500;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
  background-color: #77516b;
}

.posture__media__item-text {
  font-size: clamp(1.4rem, 1.40625vw, 1.8rem);
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.posture__media__item-image {
  height: 100%;
}
.posture__media__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0.8rem 0.8rem 0;
}

.posture__accordions {
  display: none;
  gap: 2rem;
  padding-inline: 2rem;
  list-style: none;
  counter-reset: counter;
}
@media screen and (max-width: 750px) {
  .posture__accordions {
    display: grid;
  }
}

.posture__accordion {
  --border-radius: 0.5rem;
  --border-width: 0.4rem;
  --inner-radius: calc(var(--border-radius) - var(--border-width));
  position: relative;
  background-color: #fff;
  border: var(--border-width) solid #77516b;
  border-radius: var(--border-radius);
}

.posture__accordion__head {
  display: flex;
  gap: 3rem;
  align-items: center;
  padding: 0.5em 1.5em;
  font-size: 3.6rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  background: #77516b;
  border-radius: var(--inner-radius) var(--inner-radius) 0 0;
}
.posture__accordion__head::before {
  font-family: avenir, sans-serif;
  font-size: 2.1388888889em;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.03em;
  content: "" counter(counter);
  counter-increment: counter 1;
}

.posture__accordion__body {
  display: none;
}

.posture__accordion__text {
  min-height: 2lh;
  padding: 1.2em 1.5em;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.4666666667;
  letter-spacing: 0.05em;
}

.posture__accordion__toggle {
  position: absolute;
  right: 3rem;
  bottom: 2.5rem;
  width: 5.3rem;
  height: auto;
  aspect-ratio: 1;
  cursor: pointer;
  border: 0.15rem solid #595757;
  border-radius: 50%;
}
.posture__accordion__toggle:where(.is-open *) {
  rotate: 180deg;
}
.posture__accordion__toggle::before {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 2.2rem;
  height: auto;
  aspect-ratio: 1;
  content: "";
  border-bottom: 0.15rem solid #595757;
  border-left: 0.15rem solid #595757;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.posture__aspect {
  padding: clamp(2rem, 3.125vw, 4rem) 1.5rem clamp(3rem, 4.6875vw, 6rem);
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .posture__aspect {
    width: calc(100% - 6rem);
    padding: 5rem 3rem;
    margin-inline: auto;
  }
}

.posture__aspect__title {
  margin-bottom: clamp(2.5rem, 3.90625vw, 5rem);
  font-size: clamp(1.4rem, 1.953125vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 0.96em;
  -webkit-text-decoration-color: #c9b7b1;
          text-decoration-color: #c9b7b1;
  text-underline-offset: -0.3em;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  .posture__aspect__title {
    margin-bottom: 4rem;
    font-size: 3rem;
  }
}

.posture__aspect__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(5rem, 7.8125vw, 10rem);
  max-width: 101rem;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .posture__aspect__list {
    grid-template-columns: unset;
  }
}

.posture__aspect__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 1.5rem;
}

.posture__aspect__item__image:where(.posture__aspect__item:not(:first-of-type) *) {
  position: relative;
}
.posture__aspect__item__image:where(.posture__aspect__item:not(:first-of-type) *)::before {
  position: absolute;
  top: 50%;
  right: calc(100% + clamp(1.25rem, 1.953125vw, 2.5rem));
  width: clamp(1.75rem, 2.734375vw, 3.5rem);
  aspect-ratio: 35/45;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  background-color: #77516b;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .posture__aspect__item__image:where(.posture__aspect__item:not(:first-of-type) *)::before {
    top: unset;
    right: auto;
    bottom: calc(100% + 2rem);
    left: 50%;
    width: 9.2rem;
    aspect-ratio: 92/26;
    -webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
            clip-path: polygon(50% 100%, 100% 0, 0 0);
    transform: translateX(-50%);
  }
}

.posture__aspect__item__text {
  font-size: clamp(1.4rem, 1.40625vw, 1.8rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .posture__aspect__item__text {
    font-size: 2.6rem;
  }
}

.function {
  position: relative;
  padding-top: clamp(9rem, 14.0625vw, 18rem);
  padding-bottom: min(17.3333333333vw, 26rem);
  background: url(../images/bg.png) repeat center/auto;
  background-color: #e6e9eb;
}
@media screen and (max-width: 750px) {
  .function {
    padding-top: 23rem;
    padding-bottom: 30rem;
  }
}

.function__inner {
  position: relative;
  padding: 0 1.5rem 4rem;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .function__inner {
    width: calc(100% - 4rem);
    padding: 0 2.5rem 6rem;
    margin-inline: auto;
  }
}
.function__inner::before {
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 100/15;
  -webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
          clip-path: polygon(50% 100%, 100% 0, 0 0);
  content: "";
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .function__inner::before {
    aspect-ratio: 100/23;
  }
}
.function__inner > * {
  max-width: 101.5rem;
  margin-inline: auto;
}

.function__top-image {
  display: flex;
  justify-content: center;
  margin-bottom: -7%;
  transform: translateY(-35%);
}
@media screen and (max-width: 750px) {
  .function__top-image {
    margin-bottom: -23%;
    transform: translateY(-70%);
  }
}
.function__top-image img {
  width: clamp(15rem, 23.4375vw, 30rem);
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .function__top-image img {
    width: 30rem;
  }
}

.function__title {
  position: relative;
  padding-bottom: clamp(1rem, 1.5625vw, 2rem);
  margin-bottom: clamp(1rem, 1.5625vw, 2rem);
  font-size: clamp(2.2rem, 3.4375vw, 4.4rem);
  font-weight: 300;
  color: #595757;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .function__title {
    font-size: 4.4rem;
  }
}
.function__title::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: clamp(1.5rem, 2.34375vw, 3rem);
  height: 1px;
  content: "";
  background-color: #595757;
  transform: translateX(-50%);
}
.function__title img {
  width: 5.6em;
  height: 1lh;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline: auto;
}

.function__lead {
  margin-bottom: clamp(3.5rem, 5.46875vw, 7rem);
  font-size: clamp(1.4rem, 2.34375vw, 3rem);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 750px) {
  .function__lead {
    margin-bottom: 6rem;
    font-size: 3.4rem;
  }
}

.function__contents {
  display: grid;
  gap: 11rem clamp(3.75rem, 5.859375vw, 7.5rem);
  margin-bottom: clamp(7rem, 10.9375vw, 14rem);
}
@media screen and (max-width: 750px) {
  .function__contents {
    margin-bottom: 22rem;
  }
}

.function__content {
  border: 2px solid #77516b;
}

.function__content__title {
  display: grid;
  place-items: center;
  min-height: clamp(4.4rem, 6.875vw, 8.8rem);
  font-size: clamp(1.5rem, 2.34375vw, 3rem);
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
  background-color: #77516b;
  border-radius: calc(var(--border-radius) - 2px) calc(var(--border-radius) - 2px) 0 0;
}
@media screen and (max-width: 750px) {
  .function__content__title {
    min-height: 7.6rem;
    font-size: 3rem;
  }
}

.function__content__body {
  position: relative;
  padding: clamp(2rem, 3.125vw, 4rem) clamp(3rem, 4.6875vw, 6rem);
}
@media screen and (max-width: 750px) {
  .function__content__body {
    padding: 4rem;
  }
}

.function__content__subtitle {
  margin-bottom: clamp(0.75rem, 1.171875vw, 1.5rem);
  font-size: clamp(1.45rem, 2.265625vw, 2.9rem);
  font-weight: 500;
  line-height: 1.5172413793;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .function__content__subtitle {
    margin-bottom: 3rem;
    font-size: 2.9rem;
    font-weight: 500;
  }
}

.function__content__media {
  display: grid;
  grid-template-columns: clamp(16rem, 25vw, 32rem) 1fr;
  gap: 17rem clamp(2rem, 3.125vw, 4rem);
}
@media screen and (max-width: 750px) {
  .function__content__media {
    grid-template-columns: unset;
  }
}

.function__content__text {
  font-size: clamp(1.4rem, 1.40625vw, 1.8rem);
  font-weight: 400;
  line-height: 1.6111111111;
  color: #595757;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .function__content__text {
    font-size: 2.6rem;
  }
}

.function__content__images {
  position: relative;
  display: flex;
  gap: clamp(0.75rem, 1.171875vw, 1.5rem);
}
.function__content__images:where(.function__content:nth-of-type(2) *) {
  padding-top: clamp(3.75rem, 5.859375vw, 7.5rem);
}
@media screen and (max-width: 750px) {
  .function__content__images:where(.function__content:nth-of-type(2) *) {
    padding-top: 0;
  }
}

.function__content__image {
  position: relative;
  flex: 1;
}
.function__content__image img {
  width: 100%;
}
.function__content__image figcaption {
  padding-top: 1rem;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .function__content__image figcaption {
    padding-top: 2rem;
    font-size: 2.6rem;
  }
}

.function__content__subject {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  left: 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: #595757;
  text-align: right;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .function__content__subject {
    font-size: 2.1rem;
  }
}

.function__content__balloon {
  position: absolute;
  bottom: calc(100% + 1.5rem);
  left: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(2.65rem, 4.140625vw, 5.3rem);
  padding: 0.5em;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
  text-align: center;
  letter-spacing: 0.01em;
  background-color: var(--background-color);
  border-radius: 100vh;
  transform: translateX(-50%);
  --background-color: #77516b;
}
@media screen and (max-width: 750px) {
  .function__content__balloon {
    bottom: calc(100% + 2rem);
    min-height: 8rem;
    font-size: 2.7rem;
  }
}
.function__content__balloon::before {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  width: clamp(0.6rem, 0.9375vw, 1.2rem);
  aspect-ratio: 12/10;
  -webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
          clip-path: polygon(50% 100%, 100% 0, 0 0);
  content: "";
  background-color: var(--background-color);
  transform: translateX(-50%);
}
@media screen and (max-width: 750px) {
  .function__content__balloon::before {
    width: 2rem;
  }
}
.function__content__balloon.-red {
  --background-color: #eb6d56;
}
.function__content__balloon.-lg {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-height: clamp(3.2rem, 5vw, 6.4rem);
  padding-inline: 1.5em;
}
@media screen and (max-width: 750px) {
  .function__content__balloon.-lg {
    left: -110%;
    transform: none;
  }
  .function__content__balloon.-lg::before {
    left: 73%;
  }
}

.function__content__graph {
  position: absolute;
  bottom: clamp(3.5rem, 5.46875vw, 7rem);
  left: calc(100% + 1rem);
  width: clamp(1.5rem, 2.34375vw, 3rem);
}
@media screen and (max-width: 750px) {
  .function__content__graph {
    top: auto;
    bottom: 8rem;
    left: calc(100% + 0.5rem);
    width: 3rem;
  }
}

.function-points__title {
  position: relative;
  left: 50%;
  display: inline-block;
  padding-block: 0.7em;
  margin-bottom: clamp(3.5rem, 5.46875vw, 7rem);
  font-size: clamp(1.5rem, 2.34375vw, 3rem);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  border-top: solid 1px #595757;
  border-bottom: solid 1px #595757;
  transform: translateX(-50%);
}
@media screen and (max-width: 750px) {
  .function-points__title {
    font-size: 3.6rem;
  }
}

.function-points__list {
  --gap: clamp(calc(5rem / 2), calc(100vw * 50 / 1280), 5rem);
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .function-points__list {
    --gap: 5rem;
    padding-inline: 2rem;
  }
}

.function-points__item {
  display: flex;
  flex-basis: calc(33.3333333333% - var(--gap) * 2 / 3);
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 750px) {
  .function-points__item {
    flex-basis: 100%;
    gap: 2rem;
  }
}

.function-points__item__title {
  display: grid;
  grid-template-columns: clamp(3.2rem, 5vw, 6.4rem) 1fr;
  gap: clamp(0.75rem, 1.171875vw, 1.5rem);
  align-items: center;
  font-size: clamp(1.4rem, 2.1875vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .function-points__item__title {
    grid-template-columns: 7.5rem 1fr;
    gap: 2rem;
    font-size: 3.8rem;
  }
}

.function-points__item__text {
  font-size: clamp(1.4rem, 1.40625vw, 1.8rem);
  line-height: 1.4444444444;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .function-points__item__text {
    font-size: 2.6rem;
  }
}

.interview {
  padding-top: clamp(6rem, 9.375vw, 12rem);
  padding-bottom: clamp(9rem, 14.0625vw, 18rem);
  background-color: #77516b;
}
@media screen and (max-width: 750px) {
  .interview {
    padding-top: 21rem;
    padding-bottom: 14rem;
  }
}

.interview__title {
  position: relative;
  padding-bottom: clamp(1rem, 1.5625vw, 2rem);
  margin-bottom: clamp(1rem, 1.5625vw, 2rem);
  font-size: clamp(2.2rem, 3.4375vw, 4.4rem);
  font-weight: 300;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .interview__title {
    font-size: 4.4rem;
  }
}
.interview__title::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: clamp(1.5rem, 2.34375vw, 3rem);
  height: 1px;
  content: "";
  background-color: #595757;
  transform: translateX(-50%);
}
.interview__title img {
  width: 7.2em;
  height: 1lh;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline: auto;
}

.interview__lead {
  margin-bottom: clamp(4.75rem, 7.421875vw, 9.5rem);
  font-size: clamp(1.5rem, 2.34375vw, 3rem);
  font-weight: 500;
  color: #fff;
  text-align: center;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  .interview__lead {
    margin-bottom: 7rem;
    font-size: 3.4rem;
  }
}

.interview__box {
  padding: clamp(1.5rem, 2.34375vw, 3rem) clamp(2rem, 3.125vw, 4rem) clamp(3.5rem, 5.46875vw, 7rem);
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .interview__box {
    width: calc(100% - 2rem);
    padding: 4rem 3rem 17rem;
    margin-inline: auto;
  }
}

.interview__subtitle {
  padding: 0.7em;
  margin-bottom: clamp(1.5rem, 2.34375vw, 3rem);
  font-size: clamp(1.4rem, 1.71875vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 0.03em;
  background-color: #77516b;
}
@media screen and (max-width: 750px) {
  .interview__subtitle {
    padding: 1em;
    margin-bottom: 4rem;
    font-size: 2.8rem;
  }
}

.interview__media {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 6rem 1rem;
  align-items: center;
  padding: 0 clamp(3.25rem, 4.3333333333vw, 6.5rem) clamp(2.5rem, 3.90625vw, 5rem);
  border-bottom: 1px dashed #77516b;
}
@media screen and (max-width: 750px) {
  .interview__media {
    grid-template-columns: unset;
    padding: 0 0 6.5rem;
  }
}

.interview__text {
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  line-height: 1.9375;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .interview__text {
    font-size: 2.6rem;
    line-height: 1.5384615385;
  }
}

.interview__images {
  display: flex;
  gap: 1rem;
  justify-content: space-around;
}
@media screen and (max-width: 750px) {
  .interview__images {
    gap: 5rem;
    justify-content: center;
  }
}

.interview__image {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.interview__image img {
  max-width: 13.5rem;
}
@media screen and (max-width: 750px) {
  .interview__image img {
    max-width: 18rem;
  }
}

.interview__info {
  text-align: center;
}

.interview__info__job {
  display: block;
  font-size: clamp(1.1rem, 0.9375vw, 1.2rem);
  font-weight: 300;
  line-height: 1.4166666667;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .interview__info__job {
    font-size: 2.4rem;
  }
}

.interview__info__name {
  display: block;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
  .interview__info__name {
    font-size: 2.8rem;
  }
}
.interview__info__name span {
  font-size: 1.1875em;
}
@media screen and (max-width: 750px) {
  .interview__info__name span {
    font-size: 1em;
  }
}

.interview__flows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(4rem, 6.25vw, 8rem);
  padding-top: clamp(1.5rem, 2.34375vw, 3rem);
}
@media screen and (max-width: 750px) {
  .interview__flows {
    grid-template-columns: unset;
    gap: 13rem;
    padding-inline: 3rem;
    padding-top: 9rem;
  }
}

.interview__flow {
  display: grid;
  grid-template-rows: auto 1fr;
}
@media screen and (max-width: 750px) {
  .interview__flow {
    gap: 1rem;
  }
}

.interview__flow__title {
  font-size: clamp(1.4rem, 1.5625vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 750px) {
  .interview__flow__title {
    font-size: 2.9rem;
  }
}

.interview__flow__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(3rem, 4.6875vw, 6rem);
}

.interview__flow__item {
  position: relative;
  display: grid;
}
.interview__flow__item:not(:first-of-type)::before {
  position: absolute;
  top: calc(50% - clamp(0.7rem, 1.09375vw, 1.4rem));
  right: calc(100% + clamp(1rem, 1.5625vw, 2rem));
  width: clamp(1rem, 1.5625vw, 2rem);
  aspect-ratio: 21/26;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  background-color: #77516b;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .interview__flow__item:not(:first-of-type)::before {
    right: calc(100% + 0.5rem);
    width: 2rem;
  }
}
.interview__flow__item figure {
  display: grid;
}
.interview__flow__item figcaption {
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  text-align: center;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 750px) {
  .interview__flow__item figcaption {
    font-size: 2.5rem;
  }
}

.interview__flow__image__point {
  position: absolute;
  bottom: 88%;
  left: 55%;
  width: clamp(6.6rem, 10.3125vw, 13.2rem);
}
@media screen and (max-width: 750px) {
  .interview__flow__image__point {
    left: 43%;
    width: 20.1rem;
  }
}

.lineup {
  padding-top: clamp(7rem, 10.9375vw, 14rem);
  padding-bottom: clamp(11rem, 17.1875vw, 22rem);
  background-color: #e4e7e9;
}
@media screen and (max-width: 750px) {
  .lineup {
    padding-top: 16rem;
    padding-bottom: 24rem;
  }
}

.lineup__title {
  position: relative;
  padding-bottom: clamp(1rem, 1.5625vw, 2rem);
  margin-bottom: clamp(1rem, 1.5625vw, 2rem);
  font-size: clamp(2.2rem, 3.4375vw, 4.4rem);
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .lineup__title {
    margin-bottom: 4rem;
    font-size: 4.4rem;
  }
}
.lineup__title::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: clamp(1.5rem, 2.34375vw, 3rem);
  height: 1px;
  content: "";
  background-color: #595757;
  transform: translateX(-50%);
}
.lineup__title img {
  width: 9.6em;
  height: 1lh;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline: auto;
}

.lineup__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem clamp(4rem, 6.25vw, 8rem);
  justify-content: center;
  margin-bottom: clamp(2rem, 3.125vw, 4rem);
}
@media screen and (max-width: 750px) {
  .lineup__list {
    flex-direction: column;
    margin-bottom: 9rem;
  }
}

.lineup__item {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5625vw, 2rem);
  align-items: center;
}
@media screen and (max-width: 750px) {
  .lineup__item {
    gap: 3rem;
  }
}

.lineup__item__image {
  width: clamp(13rem, 20.3125vw, 26rem);
}
@media screen and (max-width: 750px) {
  .lineup__item__image {
    width: 45rem;
  }
}

.lineup__item__name {
  font-size: clamp(1.4rem, 1.953125vw, 2.5rem);
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 750px) {
  .lineup__item__name {
    font-size: 3rem;
  }
}

.button__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.button {
  position: relative;
  display: grid;
  place-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: clamp(13.55rem, 21.171875vw, 27.1rem);
  min-height: clamp(2.35rem, 3.671875vw, 4.7rem);
  padding: 0.1em 2em;
  font-size: clamp(1.4rem, 1.5625vw, 2rem);
  color: #fff;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.03em;
  cursor: pointer;
  background-color: #000;
  border-radius: 0.8rem;
  transition: opacity 0.3s;
}
@media screen and (max-width: 750px) {
  .button {
    min-width: 30.4rem;
    min-height: 7.6rem;
    font-size: 2.5rem;
  }
}
.button::after {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: clamp(0.8rem, 1.25vw, 1.6rem);
  height: auto;
  aspect-ratio: 1;
  content: "";
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 750px) {
  .button::after {
    right: 2.5rem;
    width: 2rem;
  }
}
.button:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .button:hover {
    opacity: 0.8;
  }
}

.lineup__price {
  margin-bottom: clamp(4rem, 6.25vw, 8rem);
  font-size: clamp(1.4rem, 1.71875vw, 2.2rem);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .lineup__price {
    margin-bottom: 12rem;
    font-size: 3rem;
  }
}

.lineup__table {
  width: 100%;
  max-width: 82.5rem;
  margin-inline: auto;
  border-collapse: collapse;
  background-color: #fff;
}
.lineup__table th,
.lineup__table td {
  padding: 0.8em;
  font-size: clamp(1.4rem, 1.5652173913vw, 1.8rem);
  font-weight: 400;
  line-height: 1.2777777778;
  text-align: start;
  letter-spacing: 0.05em;
  vertical-align: middle;
  border: 1px solid #211815;
}
@media screen and (max-width: 750px) {
  .lineup__table th,
.lineup__table td {
    font-size: 2.5rem;
    letter-spacing: 0;
  }
}
.lineup__table tr:first-child > * {
  border-top: none;
}
.lineup__table tr:last-child > * {
  border-bottom: none;
}
.lineup__table tr > *:first-child {
  border-left: none;
}
.lineup__table tr > *:last-child {
  border-right: none;
}
.lineup__table dl {
  display: grid;
  grid-template-columns: auto 1fr;
}
.lineup__table dl > * {
  font-size: inherit;
}
.lineup__table dl dd::before {
  content: "：";
}

.yoga {
  position: relative;
  padding-top: clamp(7rem, 10.9375vw, 14rem);
  padding-bottom: clamp(6.5rem, 10.15625vw, 13rem);
  background-color: #c9b7b1;
}
@media screen and (max-width: 750px) {
  .yoga {
    padding-top: 17rem;
    padding-bottom: 16rem;
  }
}
.yoga::before {
  position: absolute;
  right: 0;
  bottom: calc(100% - 1px);
  left: 0;
  height: clamp(2rem, 3.125vw, 4rem);
  content: "";
  background: url(../images/yoga_bg.svg) repeat-x center/contain;
}

.yoga__head {
  position: relative;
  max-width: clamp(48.4rem, 75.625vw, 96.8rem);
  margin: 0 auto clamp(3.5rem, 5.46875vw, 7rem);
}
@media screen and (max-width: 750px) {
  .yoga__head {
    max-width: 59rem;
    margin-bottom: 8rem;
  }
}

.yoga__head__title {
  position: absolute;
  top: 20%;
  left: 15%;
  z-index: 1;
  font-size: clamp(1.4rem, 1.796875vw, 2.3rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .yoga__head__title {
    top: 10%;
    left: 50%;
    width: 100%;
    font-size: 2.9rem;
    transform: translateX(-50%);
  }
}
.yoga__head__title span {
  display: grid;
  place-items: center;
  width: clamp(17.7rem, 27.65625vw, 35.4rem);
  aspect-ratio: 354/45;
  margin-bottom: clamp(1.25rem, 1.953125vw, 2.5rem);
  font-size: 1.0434782609em;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.08em;
  background: url(../images/yoga_title_bg.svg) no-repeat center/cover;
}
@media screen and (max-width: 750px) {
  .yoga__head__title span {
    width: 40rem;
    margin-inline: auto;
    font-size: 0.9310344828em;
  }
}
.yoga__head__title strong {
  display: block;
  margin-top: clamp(0.5rem, 0.78125vw, 1rem);
  font-size: 1.5652173913em;
  line-height: 1.5;
  color: #77516b;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .yoga__head__title strong {
    font-size: 1.4827586207em;
  }
}

.yoga__grid {
  display: grid;
  grid-template-columns: clamp(10.85rem, 16.953125vw, 21.7rem) 1fr;
  gap: 0 clamp(2.4rem, 3.75vw, 4.8rem);
  max-width: 80rem;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .yoga__grid {
    grid-template-columns: 22rem 1fr;
    align-items: center;
    max-width: 60rem;
    margin-inline: auto;
  }
}

.yoga__grid__content {
  grid-area: 1/2/2/3;
}
@media screen and (max-width: 750px) {
  .yoga__grid__content {
    grid-area: 1/1/2/3;
  }
}

.yoga__grid__title {
  grid-area: 2/2/3/3;
  margin-bottom: 0.6em;
  font-size: clamp(1.4rem, 2.109375vw, 2.7rem);
  font-weight: 500;
  line-height: 1.7777777778;
  text-decoration: underline;
  text-decoration-thickness: 0.8lh;
  -webkit-text-decoration-color: #fff;
          text-decoration-color: #fff;
  text-underline-offset: -0.6lh;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .yoga__grid__title {
    grid-area: 2/1/3/3;
    font-size: 3.5rem;
    line-height: 1.7714285714;
  }
}

.yoga__grid__text {
  padding-bottom: 1em;
  margin-bottom: 0.5em;
  font-size: clamp(1.4rem, 1.40625vw, 1.8rem);
  line-height: 1.7777777778;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #595757;
}
@media screen and (max-width: 750px) {
  .yoga__grid__text {
    padding-bottom: 5rem;
    margin-bottom: 3rem;
    font-size: 2.6rem;
    line-height: 1.6538461538;
  }
}

.yoga__grid__image {
  grid-area: 1/1/3/2;
}
@media screen and (max-width: 750px) {
  .yoga__grid__image {
    grid-area: 3/1/4/2;
  }
  .yoga__grid__image img {
    width: 16.1rem;
    margin-inline: auto;
  }
}

.yoga__grid__name {
  grid-area: 2/2/3/3;
  font-size: clamp(1.4rem, 1.40625vw, 1.8rem);
  letter-spacing: 0.03em;
}
@media screen and (max-width: 750px) {
  .yoga__grid__name {
    grid-area: 3/2/4/3;
    font-size: 2.6rem;
  }
}
.yoga__grid__name span {
  font-size: 1.1666666667em;
}
@media screen and (max-width: 750px) {
  .yoga__grid__name span {
    display: block;
    font-size: 1.3076923077em;
  }
}

.yoga__swiper {
  margin-top: clamp(5.5rem, 8.59375vw, 11rem);
}
@media screen and (max-width: 750px) {
  .yoga__swiper {
    margin-top: 18rem;
  }
}

.swiper-pagination.yoga__swiper-pagination {
  all: unset;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(2.5rem, 3.90625vw, 5rem);
}
@media screen and (max-width: 750px) {
  .swiper-pagination.yoga__swiper-pagination {
    margin-bottom: 4rem;
  }
}
.swiper-pagination.yoga__swiper-pagination .swiper-pagination-bullet {
  all: unset;
  padding: 0.7em 1.4em;
  font-size: clamp(1.4rem, 1.484375vw, 1.9rem);
  font-weight: 500;
  line-height: 1;
  color: #7c516c;
  text-align: center;
  letter-spacing: 0.05em;
  cursor: pointer;
  background: transparent;
  border: 1px solid #7c516c;
  border-radius: 100vh;
  transition: 0.1s;
}
@media screen and (max-width: 750px) {
  .swiper-pagination.yoga__swiper-pagination .swiper-pagination-bullet {
    padding: 1.1em;
    font-size: 2.2rem;
  }
}
.swiper-pagination.yoga__swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #fff;
  background-color: #7c516c;
}

.yoga__swiper-slide {
  height: auto !important;
}

.yoga__swiper-slide__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border: 2px solid #7c516c;
  border-radius: 1.6rem;
}

.yoga__swiper__head {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.25rem, 1.953125vw, 2.5rem) clamp(3rem, 4.6875vw, 6rem);
  border-bottom: 1px solid #c9b7b1;
}
@media screen and (max-width: 750px) {
  .yoga__swiper__head {
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 4rem 0;
    border-bottom: none;
  }
}

.yoga__swiper__title {
  flex-shrink: 0;
  font-size: clamp(1.5rem, 2.34375vw, 3rem);
  font-weight: 700;
  color: #7c516c;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .yoga__swiper__title {
    width: 100%;
    padding-bottom: 4rem;
    margin-bottom: 1rem;
    font-size: 4rem;
    border-bottom: solid 1px #595757;
  }
}

.yoga__swiper__effect {
  display: flex;
  gap: 2rem;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .yoga__swiper__effect {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 3rem;
    border-bottom: 1px solid #c9b7b1;
  }
}
.yoga__swiper__effect dt {
  flex-shrink: 0;
  font-size: clamp(1.4rem, 1.40625vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .yoga__swiper__effect dt {
    font-size: 2.7rem;
  }
}
.yoga__swiper__effect dd {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.yoga__swiper__effect dd > span {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: clamp(6.3rem, 9.84375vw, 12.6rem);
  padding: 0.5em;
  font-size: clamp(1.4rem, 1.171875vw, 1.5rem);
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
  border-radius: 0.5rem;
}
@media screen and (max-width: 750px) {
  .yoga__swiper__effect dd > span {
    min-width: 17.5rem;
    font-size: 2.2rem;
  }
}
.yoga__swiper__effect dd > span.-blue {
  background-color: #6a8bb1;
}
.yoga__swiper__effect dd > span.-green {
  background-color: #84ab7d;
}
.yoga__swiper__effect dd > span.-purple {
  background-color: #a188b1;
}
.yoga__swiper__effect dd > span.-red {
  background-color: #a35b5f;
}
.yoga__swiper__effect dd > span.-red2 {
  background-color: #a14a69;
}
.yoga__swiper__effect dd > span.-beige {
  background-color: #a18868;
}

.yoga__swiper__grid {
  display: grid;
  flex-grow: 1;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0 1rem;
  padding: 2rem 2.5rem;
}
@media screen and (max-width: 750px) {
  .yoga__swiper__grid {
    display: flex;
    flex-direction: column;
    padding: 3rem 3rem;
  }
}

.yoga__swiper__grid-title {
  grid-area: 1/1/2/2;
  font-size: clamp(1.4rem, 1.40625vw, 1.8rem);
  font-weight: 500;
  line-height: 1.5555555556;
}
@media screen and (max-width: 750px) {
  .yoga__swiper__grid-title {
    padding-inline: 1.5rem;
    margin-left: unset;
    font-size: 2.6rem;
  }
}
.yoga__swiper__grid-title > b {
  display: block;
}

.yoga__swiper__grid-image {
  display: flex;
  grid-area: 2/1/3/3;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .yoga__swiper__grid-image {
    flex-grow: 1;
    max-height: unset;
    margin-bottom: 7rem;
  }
}
.yoga__swiper__grid-image * {
  height: clamp(17.5rem, 27.34375vw, 35rem);
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 750px) {
  .yoga__swiper__grid-image * {
    height: auto;
  }
}

.yoga__swiper__grid-point {
  display: flex;
  grid-area: 1/2/2/3;
  gap: clamp(1rem, 1.5625vw, 2rem);
  align-items: center;
  justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: clamp(0.75rem, 1.171875vw, 1.5rem) clamp(1rem, 1.5625vw, 2rem);
  color: #fff;
  background-color: #7c516c;
  border-radius: 1rem;
}
@media screen and (max-width: 750px) {
  .yoga__swiper__grid-point {
    justify-content: space-between;
    width: 100%;
    padding: 6rem 3rem;
    gap: 4rem;
    margin-left: auto;
  }
}
.yoga__swiper__grid-point dt {
  font-size: clamp(1.4rem, 1.40625vw, 1.8rem);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .yoga__swiper__grid-point dt {
    font-size: 3.2rem;
  }
}
.yoga__swiper__grid-point dd {
  font-size: clamp(1.4rem, 1.328125vw, 1.7rem);
  font-weight: 500;
  line-height: 1.2777777778;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .yoga__swiper__grid-point dd {
    flex-grow: 1;
    font-size: 3rem;
  }
}

.swiper-button-next.yoga__swiper-button-next {
  all: unset;
  position: absolute;
  top: 55%;
  right: 10%;
  z-index: 10;
}
@media screen and (max-width: 750px) {
  .swiper-button-next.yoga__swiper-button-next {
    display: none;
  }
}
.swiper-button-next.yoga__swiper-button-next::before {
  display: block;
  width: clamp(1.35rem, 2.109375vw, 2.7rem);
  aspect-ratio: 35/45;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  background-color: #77516b;
}
.swiper-button-next.yoga__swiper-button-next::after {
  content: none;
}

.footer {
  padding-block: clamp(6rem, 9.375vw, 12rem);
}
@media screen and (max-width: 750px) {
  .footer {
    padding-block: 15rem;
  }
}

.footer__ec-button {
  position: relative;
  display: flex;
  gap: clamp(1.5rem, 2.34375vw, 3rem);
  align-items: center;
  justify-content: center;
  min-width: clamp(30rem, 46.875vw, 60rem);
  min-height: clamp(9rem, 14.0625vw, 18rem);
  font-size: clamp(1.5rem, 2.34375vw, 3rem);
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.03em;
  cursor: pointer;
  background-color: #000;
  border-radius: 1rem;
  transition: opacity 0.3s;
}
@media screen and (max-width: 750px) {
  .footer__ec-button {
    gap: 3rem;
    min-width: 60rem;
    min-height: 18rem;
    font-size: 3rem;
  }
}
.footer__ec-button::after {
  width: clamp(0.8rem, 1.25vw, 1.6rem);
  height: auto;
  aspect-ratio: 1;
  content: "";
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 750px) {
  .footer__ec-button::after {
    width: 1.6rem;
  }
}
.footer__ec-button:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .footer__ec-button:hover {
    opacity: 0.8;
  }
}
.footer__ec-button > img {
  width: clamp(3.3rem, 5.15625vw, 6.6rem);
}
@media screen and (max-width: 750px) {
  .footer__ec-button > img {
    width: 6.6rem;
  }
}

.footer__logo {
  display: flex;
  justify-content: center;
  padding-top: clamp(3rem, 4.6875vw, 6rem);
}
@media screen and (max-width: 750px) {
  .footer__logo {
    padding-top: 5rem;
  }
}
.footer__logo img {
  max-width: clamp(15.5rem, 24.21875vw, 31rem);
}
@media screen and (max-width: 750px) {
  .footer__logo img {
    max-width: 39rem;
  }
}

.lineup__list .item_btn {
  text-align: center;
  font-size: 1.8rem;
  padding: 1rem 0;
  line-height: 1;
  background: #000;
  color: #fff;
  width: 27rem;
  margin: 2rem auto 0;
  display: block;
  text-decoration: none;
  border-radius: 0.7rem;
  position: relative;
}
.lineup__list .item_btn::before {
  content: "";
  position: absolute;
  right: 2.3rem;
  line-height: 1;
  top: 50%;
  width: 1rem;
  height: 1rem;
  border-top: 0.1rem solid #fff;
  border-right: 0.1rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 750px) {
  .lineup__list .item_btn {
    font-size: 2.9rem;
    width: 44rem;
    margin: 2rem auto 0;
    padding: 2rem 0;
  }
  .lineup__list .item_btn::before {
    right: 4rem;
    width: 1.4rem;
    height: 1.4rem;
    border-top: 0.2rem solid #fff;
    border-right: 0.2rem solid #fff;
  }
}
.lineup__note {
  text-align: right;
  margin-top: 80px;
  font-size: 1.4rem;
  @media screen and (max-width: 750px) {
    text-align: left;
    font-size: 2.1rem;
  }
}
