@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;
}

/* 共通 color
*******************/
/* カラー
*******************/
.c-white {
  color: #ffffff !important;
}
.c-black {
  color: #595757 !important;
}
.c-blue {
  color: #144aa6 !important;
}
.c-yellow {
  color: #fff582 !important;
}
.c-red {
  color: #eb6d56 !important;
}
.c-green {
  color: #c4d700 !important;
}
.c-orange {
  color: #ff9020 !important;
}
.c-gray {
  color: #000000 !important;
}

/* bgカラー
*******************/
.bg-white {
  background-color: #ffffff !important;
}
.bg-black {
  background-color: #595757 !important;
}
.bg-blue {
  background-color: #144aa6 !important;
}
.bg-yellow {
  background-color: #fff582 !important;
}
.bg-red {
  background-color: #eb6d56 !important;
}
.bg-green {
  background-color: #c4d700 !important;
}
.bg-orange {
  background-color: #ff9020 !important;
}
.bg-gray {
  background-color: #000000 !important;
}

/* border color
*******************/
.bc-white {
  border-color: #ffffff !important;
}
.bc-black {
  border-color: #595757 !important;
}
.bc-blue {
  border-color: #144aa6 !important;
}
.bc-yellow {
  border-color: #fff582 !important;
}
.bc-red {
  border-color: #eb6d56 !important;
}
.bc-green {
  border-color: #c4d700 !important;
}
.bc-orange {
  border-color: #ff9020 !important;
}
.bc-gray {
  border-color: #000000 !important;
}

html {
  font-size: 62.5%;
  font-family: "sans", sans-serif;
  color: #000000;
}
html * {
  box-sizing: border-box;
}

body.fixed {
  overflow: hidden;
}

p,
a,
li,
dd,
dt,
th,
td {
  font-size: 1.6rem;
  line-height: 1.7;
}

.sp {
  display: none !important;
}

img {
  max-width: 100%;
  pointer-events: none;
}

.block {
  display: block;
}

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

.pc_block {
  display: block;
}

.container {
  overflow: hidden;
}

.lwrap {
  max-width: 1150px;
  margin: auto;
}

.tel a {
  pointer-events: none;
}

/* float
*******************/
.fl-l {
  float: left;
}
.fl-r {
  float: right;
}

/* clear
*******************/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* txt 揃え
*******************/
.alignCenter {
  text-align: center;
}
.alignLeft {
  text-align: left;
}
.alignRight {
  text-align: right;
}

/* flex
*******************/
.flex {
  display: flex;
}
.flex.col-2 {
  flex-wrap: wrap;
}
.flex.col-2 .item {
  width: 48%;
  margin-right: 4%;
}
.flex.col-2 .item:nth-child(2n) {
  margin-right: 0;
}
.flex.col-3 {
  flex-wrap: wrap;
}
.flex.col-3 .item {
  width: 32%;
  margin-right: 2%;
}
.flex.col-3 .item:nth-child(3n) {
  margin-right: 0;
}
.flex.col-4 {
  flex-wrap: wrap;
}
.flex.col-4 .item {
  width: 23.5%;
  margin-right: 2%;
}
.flex.col-4 .item:nth-child(4n) {
  margin-right: 0;
}
.flex.col-5 {
  flex-wrap: wrap;
}
.flex.col-5 .item {
  width: 18.4%;
  margin-right: 2%;
}
.flex.col-5 .item:nth-child(5n) {
  margin-right: 0;
}

/* border
*******************/
.border-solid-top {
  border-top: 1px solid #000000;
}
.border-solid-left {
  border-left: 1px solid #000000;
}
.border-solid-right {
  border-right: 1px solid #000000;
}
.border-solid-bottom {
  border-bottom: 1px solid #000000;
}
.border-dashed-top {
  border-top: 1px dashed #000000;
}
.border-dashed-left {
  border-left: 1px dashed #000000;
}
.border-dashed-right {
  border-right: 1px dashed #000000;
}
.border-dashed-bottom {
  border-bottom: 1px dashed #000000;
}
.border-dotted-top {
  border-top: 1px dotted #000000;
}
.border-dotted-left {
  border-left: 1px dotted #000000;
}
.border-dotted-right {
  border-right: 1px dotted #000000;
}
.border-dotted-bottom {
  border-bottom: 1px dotted #000000;
}

/* circle
*******************/
.circle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 10rem;
  height: 10rem;
  border-radius: 100%;
  background-color: #000000;
  text-align: center;
  position: relative;
}
/* square
*******************/
.square {
  display: inline-block;
  width: 10rem;
  height: 10rem;
  background-color: #000000;
  text-align: center;
  position: relative;
}
.square > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
}

/* 角丸
*******************/
.round-15 {
  border-radius: 1.5rem;
}
.round-30 {
  border-radius: 3rem;
}
.round-60 {
  border-radius: 6rem;
}
.round-90 {
  border-radius: 9rem;
}
.round-100 {
  border-radius: 100%;
}

/* box shadow
*******************/
.b-shadow {
  box-shadow: 0.5rem 0.5rem 0.4rem rgba(0, 0, 0, 0.2);
}

/* text shadow
*******************/
.t-shadow {
  text-shadow: 0.43rem 0.43rem 0.323rem rgba(0, 0, 0, 0.6);
}

/* marker
*******************/
.marker-yellow {
  background: linear-gradient(transparent 0%, #fff582 0%);
  display: inline-block;
}
.marker-green {
  background: linear-gradient(transparent 60%, #c4d700 60%);
  display: inline-block;
}

@media screen and (max-width: 1180px) {
  .lwrap {
    margin: 0 1.5rem;
  }
}
/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  html {
    font-size: 1.33333vw;
  }
  p,
a,
li,
dd,
dt,
th,
td {
    font-size: 2.8rem;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .tel a {
    pointer-events: auto;
  }
  .lwrap {
    margin: 0 2.5rem;
  }
}
.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 990;
  transition: box-shadow 0.3s ease;
}
.header.fixed {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.header__inner {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .header__inner {
    top: 5.5rem;
  }
}
@media (min-width: 1150px) {
  .header__inner {
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.header__logo * {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.header__logo a {
  transition: opacity 0.3s;
}
.header__logo a:hover {
  opacity: 0.8;
}
.header__logo img {
  width: clamp(8.85rem, 11.8vw, 17.7rem);
}
@media screen and (max-width: 750px) {
  .header__logo img {
    width: 26.4rem;
  }
}

.header__nav {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 750px) {
  .header__nav {
    flex-wrap: wrap;
  }
}

.header__menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .header__menu {
    order: 2;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem;
    padding-top: 0.3rem;
  }
}

.header__item {
  height: 100%;
  display: flex;
  align-items: center;
  border-left: solid 1px #595757;
}
@media screen and (max-width: 750px) {
  .header__item {
    border-left: none;
  }
}

.header__link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #595757;
  transition: color 0.3s;
  gap: 1rem;
  padding: clamp(1rem, 1.3333333333vw, 2rem);
}
@media (max-width: 1023px) {
  .header__link {
    padding: 0.25rem;
  }
}
@media screen and (max-width: 750px) {
  .header__link {
    background-color: #ebebec;
    padding-left: 2rem;
    width: 100%;
    height: 100%;
    min-height: 8.2rem;
  }
}
.header__link:hover {
  color: #c4d700;
}

.header__link__icon {
  position: relative;
  display: grid;
  place-items: center;
}
.header__link__icon > img {
  width: clamp(1.5rem, 2vw, 3rem);
}
@media screen and (max-width: 750px) {
  .header__link__icon > img {
    width: 3.5rem;
  }
}
.header__link__icon > img:nth-of-type(2) {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity 0.3s;
  opacity: 0;
}
.header__link__icon > img:nth-of-type(2):where(.header__link:hover *) {
  opacity: 1;
}

.header__link__text {
  font-size: clamp(1rem, 0.7333333333vw, 1.1rem);
  letter-spacing: 0.03em;
  line-height: 1.1818181818;
}
@media screen and (max-width: 750px) {
  .header__link__text {
    font-size: 1.8rem;
  }
}

.header__buttons {
  position: relative;
  display: block;
}
.header__buttons button {
  width: clamp(12rem, 16vw, 24rem);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background-color: #000000;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.025em;
  text-decoration: none;
}
.header__buttons button:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .header__buttons button {
    width: 30.5rem;
    height: 11rem;
    font-size: 2.5rem;
  }
  .header__buttons button:hover {
    opacity: 1;
  }
}

.header__buttons__menu {
  position: absolute;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  width: 100%;
  background-color: #fff;
}
.header__buttons__menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  background-color: #C2D807;
  color: #595757;
  text-decoration: none;
  transition: background-color .4s, color .4s;
}
.header__buttons__menu a:hover {
  background-color: #000;
  color: #fff;
}
.header__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__buttons__menu a:hover span:after {
  border-color: #fff;
}
@media screen and (max-width: 767px) {
  .header__buttons__menu {
    top: 11rem;
  }
  .header__buttons__menu a {
    font-size: 2.4rem;
  }
}

.footer {
  padding: 8rem 0 9rem;
}
.footer-logo {
  text-align: center;
  margin-top: 7rem;
}
.footer-logo img {
  width: 31rem;
}
.footer .btn {
  text-align: center;
}
.footer .btn a {
  text-decoration: none;
  background-color: #000;
  border-radius: 1rem;
  font-size: 2.6rem;
  text-align: center;
  color: #fff;
  padding: 5rem 0;
  max-width: 56rem;
  width: 100%;
  display: inline-block;
  position: relative;
}
.footer .btn a::before {
  content: "";
  position: absolute;
  right: 8rem;
  top: 50%;
  width: 1.1rem;
  height: 1.1rem;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.footer .btn a i {
  margin-right: 3rem;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}
.footer .btn a i img {
  width: 6.2rem;
}

/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .footer {
    padding: 19rem 0 10rem;
  }
  .footer-logo img {
    width: 39.3rem;
  }
  .footer .btn a {
    font-size: 2.6rem;
    padding: 4.55rem 0;
  }
  .footer .btn a::before {
    right: 4rem;
    width: 1.6rem;
    height: 1.6rem;
    border-top: 0.3rem solid #fff;
    border-right: 0.3rem solid #fff;
  }
  .footer .btn a i {
    margin-left: 0rem;
  }
  .footer .btn a i img {
    width: 5.2rem;
  }
}
/* CSS Document */
.animation span {
  opacity: 0;
}
.animation span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.animation span:nth-of-type(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.animation span:nth-of-type(3) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.animation span:nth-of-type(4) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.animation span:nth-of-type(5) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.animation span:nth-of-type(6) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.animation span:nth-of-type(7) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.animation span:nth-of-type(8) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.animation span:nth-of-type(9) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.animation span:nth-of-type(10) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.animation span:nth-of-type(11) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.animation span:nth-of-type(12) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.animation span:nth-of-type(13) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.animation span:nth-of-type(14) {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.animation span:nth-of-type(15) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.animation span:nth-of-type(16) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.animation.active span {
  -webkit-animation-name: horizontalRotate;
          animation-name: horizontalRotate;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.3, 1);
          animation-timing-function: cubic-bezier(0, 0.4, 0.3, 1);
}

.fadein {
  opacity: 0;
}
.fadein.active {
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.fadein2 {
  opacity: 0;
}
.fadein2.active {
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
}

@-webkit-keyframes horizontalRotate {
  0% {
    transform: translateY(36%);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes horizontalRotate {
  0% {
    transform: translateY(36%);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* margin
*******************/
.mt-0 {
  margin-top: 0rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.mt-5 {
  margin-top: 0.5rem !important;
}

.mb-5 {
  margin-bottom: 0.5rem !important;
}

.mt-10 {
  margin-top: 1rem !important;
}

.mb-10 {
  margin-bottom: 1rem !important;
}

.mt-15 {
  margin-top: 1.5rem !important;
}

.mb-15 {
  margin-bottom: 1.5rem !important;
}

.mt-20 {
  margin-top: 2rem !important;
}

.mb-20 {
  margin-bottom: 2rem !important;
}

.mt-25 {
  margin-top: 2.5rem !important;
}

.mb-25 {
  margin-bottom: 2.5rem !important;
}

.mt-30 {
  margin-top: 3rem !important;
}

.mb-30 {
  margin-bottom: 3rem !important;
}

.mt-35 {
  margin-top: 3.5rem !important;
}

.mb-35 {
  margin-bottom: 3.5rem !important;
}

.mt-40 {
  margin-top: 4rem !important;
}

.mb-40 {
  margin-bottom: 4rem !important;
}

.mt-45 {
  margin-top: 4.5rem !important;
}

.mb-45 {
  margin-bottom: 4.5rem !important;
}

.mt-50 {
  margin-top: 5rem !important;
}

.mb-50 {
  margin-bottom: 5rem !important;
}

.mt-55 {
  margin-top: 5.5rem !important;
}

.mb-55 {
  margin-bottom: 5.5rem !important;
}

.mt-60 {
  margin-top: 6rem !important;
}

.mb-60 {
  margin-bottom: 6rem !important;
}

.mt-65 {
  margin-top: 6.5rem !important;
}

.mb-65 {
  margin-bottom: 6.5rem !important;
}

.mt-70 {
  margin-top: 7rem !important;
}

.mb-70 {
  margin-bottom: 7rem !important;
}

.mt-75 {
  margin-top: 7.5rem !important;
}

.mb-75 {
  margin-bottom: 7.5rem !important;
}

.mt-80 {
  margin-top: 8rem !important;
}

.mb-80 {
  margin-bottom: 8rem !important;
}

.mt-85 {
  margin-top: 8.5rem !important;
}

.mb-85 {
  margin-bottom: 8.5rem !important;
}

.mt-90 {
  margin-top: 9rem !important;
}

.mb-90 {
  margin-bottom: 9rem !important;
}

.mt-95 {
  margin-top: 9.5rem !important;
}

.mb-95 {
  margin-bottom: 9.5rem !important;
}

.mt-100 {
  margin-top: 10rem !important;
}

.mb-100 {
  margin-bottom: 10rem !important;
}

.mt-105 {
  margin-top: 10.5rem !important;
}

.mb-105 {
  margin-bottom: 10.5rem !important;
}

.mt-110 {
  margin-top: 11rem !important;
}

.mb-110 {
  margin-bottom: 11rem !important;
}

.mt-115 {
  margin-top: 11.5rem !important;
}

.mb-115 {
  margin-bottom: 11.5rem !important;
}

.mt-120 {
  margin-top: 12rem !important;
}

.mb-120 {
  margin-bottom: 12rem !important;
}

.mt-125 {
  margin-top: 12.5rem !important;
}

.mb-125 {
  margin-bottom: 12.5rem !important;
}

.mt-130 {
  margin-top: 13rem !important;
}

.mb-130 {
  margin-bottom: 13rem !important;
}

.mt-135 {
  margin-top: 13.5rem !important;
}

.mb-135 {
  margin-bottom: 13.5rem !important;
}

.mt-140 {
  margin-top: 14rem !important;
}

.mb-140 {
  margin-bottom: 14rem !important;
}

.mt-145 {
  margin-top: 14.5rem !important;
}

.mb-145 {
  margin-bottom: 14.5rem !important;
}

.mt-150 {
  margin-top: 15rem !important;
}

.mb-150 {
  margin-bottom: 15rem !important;
}

/* padding
*******************/
.pd-0 {
  padding: 0rem !important;
  box-sizing: border-box;
}

.pd-5 {
  padding: 0.5rem !important;
  box-sizing: border-box;
}

.pd-10 {
  padding: 1rem !important;
  box-sizing: border-box;
}

.pd-15 {
  padding: 1.5rem !important;
  box-sizing: border-box;
}

.pd-20 {
  padding: 2rem !important;
  box-sizing: border-box;
}

.pd-25 {
  padding: 2.5rem !important;
  box-sizing: border-box;
}

.pd-30 {
  padding: 3rem !important;
  box-sizing: border-box;
}

.pd-35 {
  padding: 3.5rem !important;
  box-sizing: border-box;
}

.pd-40 {
  padding: 4rem !important;
  box-sizing: border-box;
}

.pd-45 {
  padding: 4.5rem !important;
  box-sizing: border-box;
}

.pd-50 {
  padding: 5rem !important;
  box-sizing: border-box;
}

.pd-55 {
  padding: 5.5rem !important;
  box-sizing: border-box;
}

.pd-60 {
  padding: 6rem !important;
  box-sizing: border-box;
}

.pd-65 {
  padding: 6.5rem !important;
  box-sizing: border-box;
}

.pd-70 {
  padding: 7rem !important;
  box-sizing: border-box;
}

.pd-75 {
  padding: 7.5rem !important;
  box-sizing: border-box;
}

.pd-80 {
  padding: 8rem !important;
  box-sizing: border-box;
}

.pd-85 {
  padding: 8.5rem !important;
  box-sizing: border-box;
}

.pd-90 {
  padding: 9rem !important;
  box-sizing: border-box;
}

.pd-95 {
  padding: 9.5rem !important;
  box-sizing: border-box;
}

.pd-100 {
  padding: 10rem !important;
  box-sizing: border-box;
}

.pd-105 {
  padding: 10.5rem !important;
  box-sizing: border-box;
}

.pd-110 {
  padding: 11rem !important;
  box-sizing: border-box;
}

.pd-115 {
  padding: 11.5rem !important;
  box-sizing: border-box;
}

.pd-120 {
  padding: 12rem !important;
  box-sizing: border-box;
}

.pd-125 {
  padding: 12.5rem !important;
  box-sizing: border-box;
}

.pd-130 {
  padding: 13rem !important;
  box-sizing: border-box;
}

.pd-135 {
  padding: 13.5rem !important;
  box-sizing: border-box;
}

.pd-140 {
  padding: 14rem !important;
  box-sizing: border-box;
}

.pd-145 {
  padding: 14.5rem !important;
  box-sizing: border-box;
}

.pd-150 {
  padding: 15rem !important;
  box-sizing: border-box;
}

body {
  font-feature-settings: "palt" 1;
}

img {
  vertical-align: bottom;
}

.mv img {
  width: 100vw;
  max-width: unset;
}

.posture {
  padding-top: clamp(7.25rem, 12.6086956522vw, 14.5rem);
  padding-bottom: clamp(8.5rem, 14.7826086957vw, 17rem);
  background: url(../images/bg.png) repeat center/auto;
  background-color: #e6e9eb;
}

.posture__logo {
  width: 50rem;
  margin: 0 auto 8rem;
}

.posture__title {
  font-weight: 400;
  font-size: clamp(1.3rem, 2.2608695652vw, 2.6rem);
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.5;
  color: #595757;
}
@media screen and (max-width: 750px) {
  .posture__title {
    font-size: 3rem;
  }
}
.posture__title span {
  font-weight: 700;
  font-size: 2.1153846154em;
  letter-spacing: 0.03em;
  display: block;
  margin-top: 0.4em;
}
@media screen and (max-width: 750px) {
  .posture__title span {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
.posture__title span ruby {
  font-size: 0.5em;
  vertical-align: super;
}
.posture__title span small {
  font-weight: 400;
  font-size: 0.2909090909em;
  letter-spacing: 0.08em;
}

.posture__media {
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 5rem clamp(1rem, 1.7391304348vw, 2rem);
  margin-bottom: clamp(1rem, 17.3913043478vw, 20rem);
}
@media screen and (max-width: 750px) {
  .posture__media {
    grid-template-columns: unset;
    margin-bottom: 20rem;
  }
}

.posture__media__point {
  font-weight: 700;
  font-size: clamp(1.1rem, 1.9130434783vw, 2.2rem);
  letter-spacing: 0.08em;
  line-height: 1.4545454545;
  text-align: center;
  color: #595757;
  background-color: #ffffff;
  border-radius: 100vh;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto clamp(1rem, 1.7391304348vw, 2rem);
  padding: 0.4em 2em;
}
@media screen and (max-width: 750px) {
  .posture__media__point {
    font-size: 3rem;
    margin-bottom: 4.5rem;
  }
}

.posture__media__text {
  font-weight: 500;
  font-size: clamp(1rem, 1.7391304348vw, 2rem);
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-align: center;
  color: #595757;
}
@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(1.25rem, 2.1739130435vw, 2.5rem);
  counter-reset: counter;
}
@media screen and (max-width: 750px) {
  .posture__media__list {
    display: none;
  }
}

.posture__media__item {
  display: grid;
  grid-template-columns: clamp(5.5rem, 9.5652173913vw, 11rem) 1fr clamp(11.9rem, 20.6956521739vw, 23.8rem);
  align-items: center;
  border-radius: 0.8rem;
  border: 2px dotted #595757;
}
.posture__media__item::before {
  counter-increment: counter 1;
  content: "" counter(counter);
  font-family: AvenirNext-UltraLight;
  font-weight: 300;
  font-size: clamp(4rem, 6.9565217391vw, 8rem);
  text-align: center;
  color: #595757;
}

.posture__media__item-content {
  display: grid;
  align-content: center;
  gap: clamp(0.75rem, 1.3043478261vw, 1.5rem);
  padding-right: clamp(0.75rem, 1.3043478261vw, 1.5rem);
}

.posture__media__item-title {
  font-weight: 500;
  font-size: clamp(1.1rem, 1.9130434783vw, 2.2rem);
  letter-spacing: 0.05em;
  color: #595757;
  display: grid;
  align-self: end;
  place-items: center;
  min-width: clamp(9.85rem, 17.1304347826vw, 19.7rem);
  min-height: clamp(2.1rem, 3.652173913vw, 4.2rem);
  background-color: #c4d700;
  text-align: center;
}

.posture__media__item-text {
  font-weight: normal;
  font-size: clamp(0.9rem, 1.5652173913vw, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #595757;
}

.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;
  list-style: none;
  counter-reset: counter;
  padding-inline: 2rem;
  gap: 2rem;
}
@media screen and (max-width: 750px) {
  .posture__accordions {
    display: grid;
  }
}

.posture__accordion {
  --border-radius: 2rem;
  --border-width: 0.4rem;
  --inner-radius: calc(var(--border-radius) - var(--border-width));
  border-radius: var(--border-radius);
  border: var(--border-width) solid #c4d700;
  background-color: #fff;
  position: relative;
}

.posture__accordion__head {
  border-radius: var(--inner-radius) var(--inner-radius) 0 0;
  background: #c4d700;
  display: flex;
  align-items: center;
  gap: 3rem;
  font-weight: 500;
  font-size: 3.6rem;
  letter-spacing: 0.05em;
  color: #595757;
  padding: 0.5em 1.5em;
}
.posture__accordion__head::before {
  counter-increment: counter 1;
  content: "" counter(counter);
  line-height: 1;
  font-family: AvenirNext-UltraLight;
  font-weight: 300;
  font-size: 2.1388888889em;
  letter-spacing: 0.03em;
}

.posture__accordion__body:where(.posture__accordion:not(:first-of-type) *) {
  display: none;
}

.posture__accordion__text {
  font-weight: 400;
  font-size: 3rem;
  letter-spacing: 0.05em;
  line-height: 1.4666666667;
  color: #595757;
  padding: 1.2em 1.5em;
  min-height: 2lh;
}

.posture__accordion__toggle {
  position: absolute;
  width: 5.3rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 0.15rem solid #595757;
  bottom: 2.5rem;
  right: 3rem;
  cursor: pointer;
}
.posture__accordion__toggle:where(.is-open *) {
  rotate: 180deg;
}
.posture__accordion__toggle::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  width: 2.2rem;
  height: auto;
  aspect-ratio: 1;
  border-left: 0.15rem solid #595757;
  border-bottom: 0.15rem solid #595757;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.posture__points {
  display: grid;
  gap: clamp(5rem, 8.6956521739vw, 10rem);
  margin-bottom: clamp(6.5rem, 11.3043478261vw, 13rem);
}
@media screen and (max-width: 750px) {
  .posture__points {
    gap: 15rem;
  }
}

.posture__point {
  border-radius: clamp(1.85rem, 3.2173913043vw, 3.7rem);
  background-color: #ffffff;
  padding: 0 clamp(2.5rem, 4.347826087vw, 5rem) clamp(3.5rem, 6.0869565217vw, 7rem);
}
@media screen and (max-width: 750px) {
  .posture__point {
    padding: 0 0 7rem;
  }
}

.posture__point__title {
  position: relative;
  left: 50%;
  transform: translate(-50%, -50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: clamp(34rem, 59.1304347826vw, 68rem);
  min-height: clamp(4.25rem, 7.3913043478vw, 8.5rem);
  padding: 0.5em 2em;
  background-color: #c4d700;
  border: 0.6rem solid #ffffff;
  border-radius: 100vh;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4347826087vw, 2.8rem);
  letter-spacing: 0.1em;
  text-align: center;
  color: #595757;
  display: grid;
  place-items: center;
}
.posture__point__title::before {
  content: "";
  position: absolute;
  right: 28%;
  top: calc(100% - 1px);
  z-index: 1;
  width: 4rem;
  aspect-ratio: 4/3;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  background-color: #c4d700;
}
@media screen and (max-width: 750px) {
  .posture__point__title::before {
    aspect-ratio: 1;
  }
}
@media screen and (max-width: 750px) {
  .posture__point__title {
    font-size: 2.6rem;
    width: 100%;
    padding: 1.3em 0.1em;
  }
}

.posture__point__lead {
  font-size: clamp(1.25rem, 2.1739130435vw, 2.5rem);
  max-width: clamp(4.35rem, 75.652173913vw, 87rem);
  margin-inline: auto;
  letter-spacing: 0.08em;
  line-height: 1.76;
  color: #595757;
}
@media screen and (max-width: 750px) {
  .posture__point__lead {
    font-size: 2.6rem;
    letter-spacing: 0.03em;
    line-height: 1.5384615385;
    max-width: 61rem;
  }
}

.posture__point__list {
  position: relative;
  aspect-ratio: 19/10;
}
@media screen and (max-width: 750px) {
  .posture__point__list {
    aspect-ratio: unset;
    padding: 3rem 4rem 0;
    margin-bottom: 4rem;
  }
}

.posture__point__item {
  position: absolute;
}
@media screen and (max-width: 750px) {
  .posture__point__item {
    position: unset;
  }
}
.posture__point__item:nth-of-type(1) {
  width: clamp(16.6rem, 28.8695652174vw, 33.2rem);
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 750px) {
  .posture__point__item:nth-of-type(1) {
    width: 54.3rem;
  }
}
.posture__point__item:nth-of-type(2) {
  width: clamp(19.2rem, 33.3913043478vw, 38.4rem);
  top: 10%;
  left: 48%;
  transform: translateX(-50%);
}
@media screen and (max-width: 750px) {
  .posture__point__item:nth-of-type(2) {
    width: 55.8rem;
    margin: -7rem 1rem 0 auto;
    transform: unset;
  }
}
.posture__point__item:nth-of-type(3) {
  width: clamp(16.6rem, 28.8695652174vw, 33.2rem);
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 750px) {
  .posture__point__item:nth-of-type(3) {
    width: 54.9rem;
    margin-top: -2rem;
  }
}

.posture__point__end-text {
  font-weight: 400;
  font-size: clamp(1.25rem, 2.1739130435vw, 2.5rem);
  letter-spacing: 0.08em;
  line-height: 1.76;
  text-align: center;
  color: #595757;
}
@media screen and (max-width: 750px) {
  .posture__point__end-text {
    font-size: 2.6rem;
  }
}
.posture__point__end-text span {
  display: block;
  font-weight: 700;
  font-size: 1.28em;
  letter-spacing: 0.1em;
  text-decoration: underline;
  -webkit-text-decoration-color: #c4d700;
          text-decoration-color: #c4d700;
  text-decoration-thickness: 1.4rem;
  text-underline-offset: -0.2em;
  margin-bottom: 0.7em;
}
@media screen and (max-width: 750px) {
  .posture__point__end-text span {
    font-size: 1.5384615385em;
  }
}

.posture__point__graph {
  display: grid;
  grid-template-columns: clamp(22.15rem, 38.5217391304vw, 44.3rem) 1fr;
  padding-top: clamp(2.5rem, 4.347826087vw, 5rem);
  padding-left: 3%;
  gap: 0 4rem;
}
@media screen and (max-width: 750px) {
  .posture__point__graph {
    grid-template-columns: unset;
  }
}

.posture__point__graph-title {
  grid-area: 1/2/2/3;
  display: flex;
  gap: clamp(1.5rem, 2.6086956522vw, 3rem);
  align-items: center;
  font-weight: 700;
  font-size: clamp(1.35rem, 2.347826087vw, 2.7rem);
  line-height: 1.6333333333;
  letter-spacing: 0.1em;
  color: #595757;
}
@media screen and (max-width: 750px) {
  .posture__point__graph-title {
    letter-spacing: 0;
    grid-area: unset;
    font-size: 3.7rem;
    margin-bottom: 5rem;
  }
}
.posture__point__graph-title::before {
  content: "q";
  font-family: DINAlternate-Bold;
  font-weight: 700;
  line-height: 1;
  font-size: 1.9em;
  color: #ffffff;
  text-transform: uppercase;
  display: grid;
  place-items: center;
  width: clamp(4rem, 6.9565217391vw, 8rem);
  height: auto;
  aspect-ratio: 1;
  background-color: #c4d700;
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .posture__point__graph-title::before {
    width: 8.3rem;
  }
}

.posture__point__graph-image {
  grid-area: 1/1/3/2;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .posture__point__graph-image {
    grid-area: unset;
    width: 51.3rem;
    margin-inline: auto;
  }
}

.posture__point__graph-text {
  grid-area: 2/2/3/3;
  font-weight: 700;
  font-size: clamp(2rem, 3.4782608696vw, 4rem);
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  color: #eb6d56;
  -webkit-text-decoration: wavy underline;
          text-decoration: wavy underline;
  text-underline-offset: 0.5em;
  position: relative;
}
@media screen and (max-width: 750px) {
  .posture__point__graph-text {
    grid-area: unset;
    font-size: 4rem;
    letter-spacing: 0.1em;
  }
}
.posture__point__graph-text::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 50%;
  height: 0;
  border-bottom: 4px dotted #eb6d56;
}
@media screen and (max-width: 750px) {
  .posture__point__graph-text::before {
    content: none;
  }
}
.posture__point__graph-text span {
  font-size: 1.5em;
}

.posture__point__media {
  max-width: 82rem;
  margin: 0 auto clamp(2rem, 3.4782608696vw, 4rem);
  padding-top: clamp(1.5rem, 2.6086956522vw, 3rem);
  align-items: center;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(3rem, 5.2173913043vw, 6rem);
}
@media screen and (max-width: 750px) {
  .posture__point__media {
    grid-template-columns: unset;
  }
}

.posture__point__media-image {
  display: grid;
  justify-items: center;
  gap: clamp(0.5rem, 0.8695652174vw, 1rem) 3rem;
}
@media screen and (max-width: 750px) {
  .posture__point__media-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.posture__point__media-image img {
  width: clamp(7.7rem, 13.3913043478vw, 15.4rem);
}
@media screen and (max-width: 750px) {
  .posture__point__media-image img {
    width: 15.4rem;
  }
}

.posture__point__media-info {
  text-align: center;
}
@media screen and (max-width: 750px) {
  .posture__point__media-info {
    text-align: start;
  }
}

.posture__point__media-job {
  font-weight: 400;
  font-size: clamp(1rem, 1.7391304348vw, 2rem);
  letter-spacing: 0.05em;
  line-height: 1.35;
  color: #595757;
}
@media screen and (max-width: 750px) {
  .posture__point__media-job {
    font-size: 2.3rem;
  }
}

.posture__point__media-name {
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6086956522vw, 3rem);
  letter-spacing: 0.05em;
  color: #595757;
}
@media screen and (max-width: 750px) {
  .posture__point__media-name {
    font-size: 3.3rem;
  }
}

.posture__point__media-text {
  font-weight: 400;
  font-size: clamp(1rem, 1.7391304348vw, 2rem);
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #595757;
}
@media screen and (max-width: 750px) {
  .posture__point__media-text {
    font-size: 2.6rem;
    max-width: 59.4rem;
    margin: 0 auto 3rem;
  }
}

@media screen and (max-width: 750px) {
  .posture__point__img-full {
    max-width: 59.4rem;
    margin-inline: auto;
  }
}

.posture__features {
  border-radius: clamp(1.85rem, 3.2173913043vw, 3.7rem);
  background-color: #ffffff;
  padding: clamp(4rem, 6.9565217391vw, 8rem) clamp(3.5rem, 6.0869565217vw, 7rem);
  display: grid;
  gap: clamp(3rem, 5.2173913043vw, 6rem);
}
@media screen and (max-width: 750px) {
  .posture__features {
    padding: 7rem 3rem;
    gap: 7rem;
  }
}

.posture__feature {
  --border-radius: clamp(calc(3.7rem / 2), calc(100vw * 37 / 1150), 3.7rem);
  border-radius: var(--border-radius);
  border: 2px solid #c4d700;
}

.posture__feature__head {
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6086956522vw, 3rem);
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
  color: #595757;
  min-height: clamp(4.4rem, 7.652173913vw, 8.8rem);
  background-color: #c4d700;
  border-radius: calc(var(--border-radius) - 2px) calc(var(--border-radius) - 2px) 0 0;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 750px) {
  .posture__feature__head {
    font-size: 3.6rem;
    min-height: 7.6rem;
  }
}

.posture__feature__body {
  position: relative;
  padding: clamp(1.75rem, 3.0434782609vw, 3.5rem) clamp(3rem, 5.2173913043vw, 6rem);
  position: relative;
}
@media screen and (max-width: 750px) {
  .posture__feature__body {
    padding: 4rem;
  }
}

.posture__feature__subtitle {
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2608695652vw, 2.6rem);
  letter-spacing: 0.05em;
  line-height: 1.3846153846;
  color: #595757;
  margin-bottom: clamp(0.75rem, 1.3043478261vw, 1.5rem);
}
@media screen and (max-width: 750px) {
  .posture__feature__subtitle {
    font-weight: 500;
    font-size: 2.9rem;
    margin-bottom: 3rem;
  }
}

.posture__feature__media {
  display: grid;
  grid-template-columns: clamp(14.2rem, 24.6956521739vw, 28.4rem) 1fr;
  gap: 6rem clamp(1.5rem, 2.6086956522vw, 3rem);
}
@media screen and (max-width: 750px) {
  .posture__feature__media {
    grid-template-columns: unset;
  }
}

.posture__feature__text {
  font-weight: 400;
  font-size: clamp(0.9rem, 1.5652173913vw, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 1.6111111111;
  color: #595757;
}
@media screen and (max-width: 750px) {
  .posture__feature__text {
    font-size: 2.6rem;
  }
}

.posture__feature__images {
  display: flex;
  gap: clamp(0.5rem, 0.8695652174vw, 1rem);
  position: relative;
}
.posture__feature__images:where(.posture__feature:nth-of-type(1) *) {
  margin-top: clamp(-3rem, -5.2173913043vw, -3rem);
}
@media screen and (max-width: 750px) {
  .posture__feature__images:where(.posture__feature:nth-of-type(1) *) {
    margin-top: unset;
    flex-direction: column;
    gap: 4rem;
  }
}
@media screen and (max-width: 750px) {
  .posture__feature__images:where(.posture__feature:nth-of-type(2) *) {
    flex-wrap: wrap;
    gap: 17rem 1.5rem;
  }
  .posture__feature__images:where(.posture__feature:nth-of-type(2) *) .posture__feature__image {
    flex: unset;
  }
  .posture__feature__images:where(.posture__feature:nth-of-type(2) *) .posture__feature__image:nth-of-type(1) {
    flex-basis: 100%;
  }
  .posture__feature__images:where(.posture__feature:nth-of-type(2) *) .posture__feature__image:nth-of-type(1) figure {
    text-align: center;
  }
  .posture__feature__images:where(.posture__feature:nth-of-type(2) *) .posture__feature__image:nth-of-type(1) img {
    width: 35.1rem;
  }
  .posture__feature__images:where(.posture__feature:nth-of-type(2) *) .posture__feature__image:nth-of-type(1) figcaption {
    font-size: 2.1rem;
  }
  .posture__feature__images:where(.posture__feature:nth-of-type(2) *) .posture__feature__image:nth-of-type(2) {
    flex-basis: calc(50% - 0.75rem);
  }
  .posture__feature__images:where(.posture__feature:nth-of-type(2) *) .posture__feature__image:nth-of-type(2) figcaption {
    font-size: 2.4rem;
  }
  .posture__feature__images:where(.posture__feature:nth-of-type(2) *) .posture__feature__image:nth-of-type(3) {
    flex-basis: calc(50% - 0.75rem);
  }
  .posture__feature__images:where(.posture__feature:nth-of-type(2) *) .posture__feature__image:nth-of-type(3) figcaption {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 750px) {
  .posture__feature__images:where(.posture__feature:nth-of-type(3) *) {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14rem 1.5rem;
    padding-top: 10rem;
  }
  .posture__feature__images:where(.posture__feature:nth-of-type(3) *) .posture__feature__image {
    flex: unset;
  }
  .posture__feature__images:where(.posture__feature:nth-of-type(3) *) .posture__feature__image:nth-of-type(1), .posture__feature__images:where(.posture__feature:nth-of-type(3) *) .posture__feature__image:nth-of-type(2) {
    flex-basis: calc(50% - 0.75rem);
  }
  .posture__feature__images:where(.posture__feature:nth-of-type(3) *) .posture__feature__image:nth-of-type(3) {
    flex-basis: 100%;
  }
  .posture__feature__images:where(.posture__feature:nth-of-type(3) *) .posture__feature__image:nth-of-type(3) figure {
    text-align: center;
  }
  .posture__feature__images:where(.posture__feature:nth-of-type(3) *) .posture__feature__image:nth-of-type(3) img {
    width: 26.86rem;
  }
  .posture__feature__images:where(.posture__feature:nth-of-type(3) *) .posture__feature__image .posture__feature__balloon {
    max-width: 26.86rem;
    font-size: 2.4rem;
  }
  .posture__feature__images:where(.posture__feature:nth-of-type(3) *) .posture__feature__image figcaption {
    font-size: 2.4rem;
  }
}

.posture__feature__image {
  position: relative;
  flex: 1;
}
.posture__feature__image img {
  width: 100%;
}
.posture__feature__image figcaption {
  font-weight: 500;
  font-size: clamp(0.7rem, 1.2173913043vw, 1.4rem);
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.4285714286;
  color: #595757;
}
@media screen and (max-width: 750px) {
  .posture__feature__image figcaption {
    font-size: 2.6rem;
    padding-top: 2rem;
  }
}

.posture__feature__subject {
  position: absolute;
  top: clamp(0.5rem, 0.8695652174vw, 1rem);
  left: 0;
  right: 0;
  padding-inline: clamp(2rem, 3.4782608696vw, 4rem);
  font-weight: 400;
  font-size: clamp(0.7rem, 1.2173913043vw, 1.4rem);
  letter-spacing: 0.05em;
  text-align: right;
  color: #595757;
}
@media screen and (max-width: 750px) {
  .posture__feature__subject {
    position: absolute;
    top: 100%;
    font-size: 2.1rem;
    padding-inline: 0;
  }
}

.posture__feature__balloon {
  position: absolute;
  z-index: 1;
  bottom: calc(100% + 1.5rem);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-height: clamp(2.65rem, 4.6086956522vw, 5.3rem);
  padding: 0.5em;
  border-radius: 100vh;
  --background-color: #888;
  background-color: var(--background-color);
  font-weight: 500;
  font-size: clamp(0.8rem, 1.3913043478vw, 1.6rem);
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-align: center;
  color: #ffffff;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 750px) {
  .posture__feature__balloon {
    font-size: 2.7rem;
    bottom: calc(100% + 2rem);
    min-height: 8rem;
  }
}
.posture__feature__balloon::before {
  aspect-ratio: 12/10;
  -webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
          clip-path: polygon(50% 100%, 100% 0, 0 0);
  background-color: var(--background-color);
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  width: clamp(0.6rem, 1.0434782609vw, 1.2rem);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 750px) {
  .posture__feature__balloon::before {
    width: 2rem;
  }
}
.posture__feature__balloon.-red {
  --background-color: #eb6d56;
}
.posture__feature__balloon.-lg {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-height: clamp(3.2rem, 5.5652173913vw, 6.4rem);
  padding-inline: 1.5em;
}

.posture__feature__graph {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(100% + 1rem);
  width: clamp(1.75rem, 3.0434782609vw, 3.5rem);
}
@media screen and (max-width: 750px) {
  .posture__feature__graph {
    width: 5.5rem;
    top: auto;
    bottom: 12rem;
    left: calc(100% - 13rem);
  }
}

.function {
  position: relative;
  --background-color: #c4d700;
  background-color: var(--background-color);
  padding-top: clamp(9rem, 15.652173913vw, 18rem);
  padding-bottom: clamp(3.5rem, 6.0869565217vw, 7rem);
  margin-bottom: 12vw;
}
@media screen and (max-width: 750px) {
  .function {
    padding-top: 20rem;
    padding-bottom: 6rem;
    margin-bottom: 28vw;
  }
}
.function::before {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  width: 100vw;
  aspect-ratio: 100/12;
  -webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
          clip-path: polygon(50% 100%, 100% 0, 0 0);
  background-color: var(--background-color);
}
@media screen and (max-width: 750px) {
  .function::before {
    aspect-ratio: 100/28;
  }
}

.function__inner {
  border-radius: clamp(1.85rem, 3.2173913043vw, 3.7rem);
  background-color: #ffffff;
}

.function__title {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 500;
  font-size: clamp(1.55rem, 2.6956521739vw, 3.1rem);
  letter-spacing: 0.05em;
  text-align: center;
  color: #595757;
  padding: 1.1em 1.8em;
  background-color: #ffffff;
  box-shadow: 0 1rem 0 #c4d700;
  border-radius: 100vh;
}
@media screen and (max-width: 750px) {
  .function__title {
    font-size: 3.6rem;
    padding: 1em 1em;
  }
}

.function__list {
  display: grid;
  padding: 0 clamp(3rem, 5.2173913043vw, 6rem) clamp(3rem, 5.2173913043vw, 6rem);
}
@media screen and (max-width: 750px) {
  .function__list {
    padding: 4rem 6rem 11rem;
  }
}

.function__item {
  display: grid;
  grid-template-columns: 1fr clamp(30rem, 52.1739130435vw, 60rem);
  grid-template-rows: auto 1fr;
  gap: clamp(1.5rem, 2.6086956522vw, 3rem) clamp(4rem, 6.9565217391vw, 8rem);
}
@media screen and (max-width: 750px) {
  .function__item {
    grid-template-columns: unset;
    grid-template-rows: unset;
  }
}
.function__item:not(:first-of-type) {
  padding-top: clamp(2rem, 3.4782608696vw, 4rem);
}
@media screen and (max-width: 750px) {
  .function__item:not(:first-of-type) {
    padding-top: 6rem;
  }
}
.function__item:not(:last-of-type) {
  border-bottom: 1px solid #595757;
  padding-bottom: clamp(1rem, 1.7391304348vw, 2rem);
}
@media screen and (max-width: 750px) {
  .function__item:not(:last-of-type) {
    border-bottom: none;
  }
}

.function__item__title {
  grid-area: 1/1/2/2;
  display: grid;
  grid-template-columns: clamp(4rem, 6.9565217391vw, 8rem) 1fr;
  align-items: center;
  gap: clamp(1rem, 1.7391304348vw, 2rem);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.1739130435vw, 2.5rem);
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #595757;
}
@media screen and (max-width: 750px) {
  .function__item__title {
    grid-area: unset;
    grid-template-columns: 8rem 1fr;
    font-weight: 500;
    font-size: 3rem;
  }
}

.function__item__text {
  grid-area: 2/1/3/2;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.5652173913vw, 1.8rem);
  letter-spacing: 0.03em;
  line-height: 1.6666666667;
  color: #595757;
}
@media screen and (max-width: 750px) {
  .function__item__text {
    grid-area: unset;
    order: 3;
    font-size: 2.6rem;
  }
}

.function__item__image {
  position: relative;
  grid-area: 1/2/3/3;
}
@media screen and (max-width: 750px) {
  .function__item__image {
    grid-area: unset;
  }
}

.function__item__image-text {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -25%);
  font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 2.3rem);
  letter-spacing: 0.05em;
  text-align: center;
  color: #ffffff;
  padding: 0.1em 2em;
  min-height: clamp(2.5rem, 4.347826087vw, 5rem);
  background-color: #eb6d56;
  border-radius: 100vh;
}
@media screen and (max-width: 750px) {
  .function__item__image-text {
    font-size: 3rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

.lineup {
  padding-top: clamp(8rem, 13.9130434783vw, 16rem);
}
@media screen and (max-width: 750px) {
  .lineup {
    padding-top: 15rem;
  }
}

.lineup__title {
  position: relative;
  font-weight: 300;
  font-size: clamp(2.2rem, 3.8260869565vw, 4.4rem);
  letter-spacing: 0.05em;
  text-align: center;
  color: #595757;
  padding-bottom: clamp(1rem, 1.7391304348vw, 2rem);
  margin-bottom: clamp(4.5rem, 7.8260869565vw, 9rem);
}
@media screen and (max-width: 750px) {
  .lineup__title {
    font-size: 4.4rem;
  }
}
.lineup__title::before {
  content: "";
  position: absolute;
  width: clamp(1.5rem, 2.6086956522vw, 3rem);
  height: 1px;
  background-color: #595757;
  bottom: 0;
  left: 50%;
  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;
  justify-content: center;
  margin-bottom: clamp(2.5rem, 4.347826087vw, 5rem);
}
@media screen and (max-width: 750px) {
  .lineup__list {
    flex-direction: column;
    align-items: center;
    padding-inline: 13rem;
    gap: 5rem;
  }
}

.lineup__item {
  flex-basis: clamp(15rem, 26.0869565217vw, 30rem);
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .lineup__item:nth-of-type(1) {
    order: 2;
  }
  .lineup__item:nth-of-type(2) {
    order: 1;
  }
  .lineup__item:nth-of-type(3) {
    order: 3;
  }
}
.lineup__item figcaption {
  font-size: clamp(1.25rem, 2.1739130435vw, 2.5rem);
  letter-spacing: 0.03em;
  text-align: center;
  color: #595757;
}
@media screen and (max-width: 750px) {
  .lineup__item figcaption {
    font-size: 3rem;
    padding-top: 2rem;
  }
}

.lineup__price {
  font-weight: 500;
  font-size: clamp(1.1rem, 1.9130434783vw, 2.2rem);
  letter-spacing: 0.05em;
  text-align: center;
  color: #595757;
  margin-bottom: clamp(4rem, 6.9565217391vw, 8rem);
}
@media screen and (max-width: 750px) {
  .lineup__price {
    font-size: 3rem;
  }
}

.lineup__table {
  margin-inline: auto;
  width: 100%;
  max-width: 82.5rem;
  border-collapse: collapse;
}
.lineup__table th,
.lineup__table td {
  vertical-align: middle;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.5652173913vw, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 1.2777777778;
  color: #595757;
  text-align: start;
  padding: 0.8em;
  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 th {
  background-color: #e8ebec;
}
.lineup__table td {
  background-color: #f4f5f6;
}
.lineup__table dl {
  display: grid;
  grid-template-columns: auto 1fr;
}
.lineup__table dl > * {
  font-size: inherit;
}
.lineup__table dl dd::before {
  content: "：";
}