:root {
  --viewport-width: min(100vw, 1920px);
  --b: calc(var(--viewport-width) / 192);
}

html {
  background: #ffffff;
  scroll-behavior: smooth;
}

body {
  opacity: 0;
  -webkit-animation: fadeInBody 0.6s ease-out 0.1s forwards;
          animation: fadeInBody 0.6s ease-out 0.1s forwards;
}

main {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.hero__top__title,
.hero__top__bg {
  will-change: transform, opacity;
}

@-webkit-keyframes fadeInBody {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInBody {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
* {
  color: #000000;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.1em;
}

a > *,
button > * {
  pointer-events: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

a,
button {
  display: block;
}

span {
  display: inline-block;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

span.attention {
  display: block;
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

span.attention > * {
  display: block;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
span.attention > * > * {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.nolink {
  pointer-events: none !important;
  opacity: 0.6 !important;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  width: 100%;
  height: max(7rem, 56px);
  padding-left: max(6.5rem, 30px);
  background: #fff;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  z-index: 100;
  -webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 550px) {
  .header {
    padding-left: 5%;
  }
}
.header__logo {
  width: max(29rem, 200px);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 550px) {
  .header__logo {
    width: 140px;
  }
}
.header__logo:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 0.85;
}
.header__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #d8c300;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  gap: max(3rem, 25px);
  width: max(28rem, 190px);
  height: 100%;
  z-index: 0;
}
@media screen and (max-width: 550px) {
  .header__link {
    gap: 10px;
    width: 50%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.header__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  z-index: -1;
}
.header__link--text {
  position: relative;
  font-size: max(1.8rem, 14px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  padding-left: max(6rem, 20px);
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
@media screen and (max-width: 550px) {
  .header__link--text {
    padding-left: 0;
  }
}
.header__link--icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: max(3.5rem, 25px);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: rgba(93, 93, 93, 0.5);
  overflow: hidden;
  -webkit-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
}
.header__link--icon .arrow {
  position: absolute;
  inset: 0;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.header__link--icon .arrow:nth-of-type(2) {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.header__link--icon .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  height: auto;
  aspect-ratio: 1/1;
  border-right: max(0.2rem, 2px) solid #fff;
  border-bottom: max(0.2rem, 2px) solid #fff;
  -webkit-transform: rotate(-45deg) translate(-12.5%, -87.5%);
          transform: rotate(-45deg) translate(-12.5%, -87.5%);
  z-index: 10;
  -webkit-transition: border-color 0.3s ease-out;
  transition: border-color 0.3s ease-out;
}
.header__link:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.header__link:hover .header__link--text {
  color: #fff;
}
.header__link:hover .header__link--icon {
  background: #fff;
}
.header__link:hover .header__link--icon .arrow::before {
  border-color: #000;
}
.header__link:hover .header__link--icon .arrow:nth-of-type(1) {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.header__link:hover .header__link--icon .arrow:nth-of-type(2) {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.footer {
  background: #2d2d2d;
}
.footer__wrapper {
  position: relative;
  padding-top: max(9rem, 50px);
  padding-bottom: max(9rem, 50px);
}
.footer__top {
  position: absolute;
  display: grid;
  place-items: center;
  top: 50%;
  right: 0;
  width: max(6rem, 50px);
  height: auto;
  aspect-ratio: 1/1;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  border-radius: 50%;
  background: #000;
  z-index: 10;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 550px) {
  .footer__top {
    -webkit-transform: translate(25%, -50%);
            transform: translate(25%, -50%);
  }
}
.footer__top svg {
  width: 50%;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.footer__top svg path {
  color: #fff;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer__top:hover {
  background: #d8c300;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 550px) {
  .footer__top:hover {
    -webkit-transform: translate(25%, -55%);
            transform: translate(25%, -55%);
  }
}
@media (min-width: 769px) {
  .footer__top:hover {
    -webkit-transform: translate(50%, -55%);
            transform: translate(50%, -55%);
  }
}
.footer__top:hover svg {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.footer__top:hover svg path {
  color: #000;
}
.footer__info {
  display: grid;
  gap: 10px max(3rem, 20px);
  grid-template-columns: auto 1fr;
  padding-right: 12.5%;
}
@media screen and (max-width: 768px) {
  .footer__info {
    grid-template-columns: 1fr;
  }
}
.footer__info dt,
.footer__info dd,
.footer__info address,
.footer__info time {
  color: #fff;
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
.footer__copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(3rem, 20px);
  margin-top: max(6rem, 50px);
}
.footer__copyright a,
.footer__copyright small {
  color: #fff;
  font-size: max(1.2rem, 12px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
.footer__copyright a {
  -webkit-text-decoration: underline 1px solid #fff;
          text-decoration: underline 1px solid #fff;
}
.footer__copyright a:hover {
  opacity: 0.6;
}

.cta {
  background: #e6e1b1;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.23;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n' x='0' y='0'><feTurbulence baseFrequency='0.95' numOctaves='3' seed='2' type='fractalNoise'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 250px 250px;
  mix-blend-mode: multiply;
}
.cta > * {
  position: relative;
  z-index: 1;
}
.cta__wrapper {
  padding-top: max(6rem, 30px);
  padding-bottom: max(2rem, 20px);
}
.cta__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  gap: max(5rem, 20px);
}
.cta__header__text {
  font-size: max(2.2rem, 16px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
  padding-top: max(3rem, 30px);
  padding-bottom: max(1rem, 10px);
}
.cta__header__diagonal {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  width: max(0.4rem, 4px);
  background: #fff;
  -webkit-transform-origin: top;
          transform-origin: top;
}
.cta__header__diagonal--left {
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
.cta__header__diagonal--right {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
.cta__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: max(1rem, 10px);
  margin-top: max(5rem, 30px);
}
@media screen and (max-width: 1000px) {
  .cta__content {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    margin-top: 15px;
  }
}
.cta__content__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  -webkit-transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
}
@media screen and (max-width: 1000px) {
  .cta__content__item {
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-rows: 1fr;
    grid-row: span 1;
  }
}
@media screen and (max-width: 768px) {
  .cta__content__item {
    grid-template-columns: 100%;
    width: 100%;
  }
}
.cta__content__item:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.cta__content__item .imageBox {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 31/16;
}
@media screen and (max-width: 1000px) {
  .cta__content__item .imageBox {
    aspect-ratio: unset;
  }
}
@media screen and (max-width: 768px) {
  .cta__content__item .imageBox {
    aspect-ratio: 31/16;
  }
}
.cta__content__item .imageBox > img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}
.cta__content__item .imageBox__icon {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  display: grid;
  place-items: center;
  width: max(9rem, 60px);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #eeeeee;
}
@media screen and (max-width: 1000px) {
  .cta__content__item .imageBox__icon {
    bottom: 50%;
    left: 100%;
  }
}
@media screen and (max-width: 768px) {
  .cta__content__item .imageBox__icon {
    bottom: 0;
    left: 50%;
  }
}
.cta__content__item .imageBox__icon img {
  width: 50%;
}
.cta__content__item .textBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  padding: max(10rem, 50px) 5%;
  background: #fff;
}
.cta__content__item .textBox .cta__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: max(1rem, 10px);
  margin-bottom: max(2rem, 5px);
}
.cta__content__item .textBox .cta__title--supplement {
  display: inline-block;
  padding: max(1rem, 10px) max(1rem, 10px);
  background: #d8c300;
  font-size: max(1.6rem, 16px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
.cta__content__item .textBox .cta__title--text {
  font-size: max(2.4rem, 18px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}
.cta__content__item .textBox p {
  font-size: max(1.7rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
.cta__content__item .textBox .cta__btn {
  position: relative;
  width: 80%;
  margin: 0 auto;
  padding: max(2rem, 10px) max(1rem, 5px);
  border-radius: 50px;
  margin-top: max(3rem, 15px);
  z-index: 0;
  overflow: hidden;
  outline: 1px solid #000;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.cta__content__item .textBox .cta__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-transform-origin: right;
          transform-origin: right;
  background: #000;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  z-index: -1;
}
.cta__content__item .textBox .cta__btn--text {
  position: relative;
  color: #fff;
  font-size: max(1.7rem, 12px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  z-index: 1;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.cta__content__item .textBox .cta__btn:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.cta__content__item .textBox .cta__btn:hover::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.cta__content__item .textBox .cta__btn:hover .cta__btn--text {
  color: #000;
}
.cta__content__item .textBox .cta__btn:active {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero {
  margin-top: max(7rem, 56px);
}
.hero__top {
  position: relative;
}
.hero__top__bg {
  width: max(61.15%, 800px);
  aspect-ratio: 587/310;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .hero__top__bg {
    width: 100%;
    height: auto;
    aspect-ratio: 5/4;
  }
}
.hero__top__title {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: max(32.5%, 340px);
  height: 70%;
  top: 50%;
  left: 10%;
  background: #fff;
  padding: max(8rem, 50px) max(5%, 40px);
  -webkit-box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .hero__top__title {
    position: static;
    text-align: center;
    width: 90%;
    margin: 0 auto;
    -webkit-transform: translateY(-20%);
            transform: translateY(-20%);
  }
}
.hero__top__title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: max(18rem, 100px);
  height: max(0.7rem, 5px);
  background: #000;
}
@media screen and (max-width: 768px) {
  .hero__top__title::before {
    top: 0;
    right: 50%;
    -webkit-transform: translate(-50%, -70%);
            transform: translate(-50%, -70%);
    width: max(0.7rem, 5px);
    height: max(10rem, 80px);
  }
}
.hero__top__title h1 {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-size: max(2.075vw, 26px);
  font-weight: 500;
  line-height: 1.9;
  margin-bottom: max(1.5rem, 15px);
}
.hero__top__title p {
  line-height: 1.5;
}
.hero__construction {
  padding: max(3rem, 30px) 10%;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .hero__construction {
    padding-top: 0;
  }
}
@media screen and (max-width: 550px) {
  .hero__construction {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.hero__construction dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 5px;
}
.hero__construction dl dt,
.hero__construction dl dd {
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
.hero__construction dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: grid;
  place-items: center;
  align-self: stretch;
  padding: 0 max(5rem, 30px);
  margin-right: max(5rem, 30px);
  border-left: max(0.2rem, 2px) solid #d9d9d9;
  border-right: max(0.2rem, 2px) solid #d9d9d9;
}
.hero__construction dl dd {
  padding-top: max(1.5rem, 10px);
  padding-bottom: max(1.5rem, 10px);
}
@media screen and (max-width: 768px) {
  .hero__construction dl dd {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.hero__construction dl dd .attention {
  font-size: max(1.4rem, 12px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: max(0.5rem, 5px);
}

.problem {
  position: relative;
  z-index: 0;
}
.problem__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.problem__bg img {
  width: 100%;
  height: 100%;
}
.problem__wrapper {
  padding-top: max(12rem, 70px);
  padding-bottom: max(12rem, 70px);
}
.problem__title {
  color: #fff;
  font-size: max(3.2rem, 22px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0;
  text-align: center;
}
.problem__content {
  margin-top: max(5rem, 30px);
}
.problem__content ul {
  --gap: max(8rem, 15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: var(--gap);
     -moz-column-gap: var(--gap);
          column-gap: var(--gap);
}
@media screen and (max-width: 1000px) {
  .problem__content ul {
    row-gap: max(5rem, 20px);
  }
}
.problem__content ul .problem__item {
  -webkit-filter: drop-shadow(max(0.3rem, 2px) max(0.5rem, 3px) 0px #d8c300);
          filter: drop-shadow(max(0.3rem, 2px) max(0.5rem, 3px) 0px #d8c300);
  min-width: calc(33.3333333333% - var(--gap));
  width: calc(33.3333333333% - var(--gap));
  height: 100%;
  aspect-ratio: 0.9/1;
  -webkit-transition: -webkit-transform 0.4s ease, -webkit-filter 0.4s ease;
  transition: -webkit-transform 0.4s ease, -webkit-filter 0.4s ease;
  transition: transform 0.4s ease, filter 0.4s ease;
  transition: transform 0.4s ease, filter 0.4s ease, -webkit-transform 0.4s ease, -webkit-filter 0.4s ease;
}
@media screen and (max-width: 1000px) {
  .problem__content ul .problem__item {
    min-width: calc(50% - var(--gap) / 2);
  }
}
.problem__content ul .problem__item:hover {
  -webkit-transform: translateY(-10px) scale(1.02);
          transform: translateY(-10px) scale(1.02);
  -webkit-filter: drop-shadow(max(0.5rem, 3px) max(1rem, 6px) max(1rem, 8px) rgba(216, 195, 0, 0.4));
          filter: drop-shadow(max(0.5rem, 3px) max(1rem, 6px) max(1rem, 8px) rgba(216, 195, 0, 0.4));
}
@media screen and (max-width: 1000px) {
  .problem__content ul .problem__item:nth-of-type(3) {
    margin-top: -12.5%;
    margin-left: 10%;
    margin-right: 10%;
  }
}
.problem__content ul .problem__item:nth-of-type(4) {
  margin-top: -2.5%;
}
@media screen and (max-width: 1000px) {
  .problem__content ul .problem__item:nth-of-type(4) {
    margin-top: -12.5%;
  }
}
.problem__content ul .problem__item:nth-of-type(5) {
  margin-top: -2.5%;
}
@media screen and (max-width: 1000px) {
  .problem__content ul .problem__item:nth-of-type(5) {
    margin-top: -12.5%;
  }
}
.problem__content ul .problem__item__inner {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
          clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: #2d2d2d;
}
.problem__content ul .problem__item__inner h3 {
  color: #fff;
  font-size: max(2.4rem, 14px);
  font-weight: 400;
  line-height: 2.5;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 550px) {
  .problem__content ul .problem__item__inner h3 {
    font-size: 2.8vw;
  }
}
.problem__content ul .problem__item__inner h3 b {
  color: #fff;
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

.preface {
  position: relative;
  z-index: 0;
}
.preface__wrapper {
  padding-top: max(29.5rem, 320px);
  padding-bottom: max(29.5rem, 265px);
}
.preface__wrapper h2 {
  text-align: center;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-size: max(2.2rem, 16px);
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.1em;
}
.preface__wrapper h2 b {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-size: 1.5em;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.preface__wrapper h2 .marker {
  position: relative;
  z-index: 0;
}
.preface__wrapper h2 .marker::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 10%;
  bottom: 10%;
  background: rgba(216, 195, 0, 0.4);
  z-index: -1;
}
.preface__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.preface__bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background: #eee;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .preface__bg::before {
    height: 40%;
  }
}
.preface__bg--left img {
  position: absolute;
}
.preface__bg--left img:nth-of-type(1) {
  top: 5%;
  left: 5%;
  width: max(38rem, 200px);
  aspect-ratio: 19/18;
}
@media screen and (min-width: 1920px) {
  .preface__bg--left img:nth-of-type(1) {
    left: 45%;
    -webkit-transform: translateX(-800px);
            transform: translateX(-800px);
  }
}
.preface__bg--left img:nth-of-type(2) {
  bottom: 12.5%;
  left: 12.5%;
  width: max(28.5rem, 130px);
  aspect-ratio: 19/20;
}
@media screen and (min-width: 1920px) {
  .preface__bg--left img:nth-of-type(2) {
    left: 55%;
    -webkit-transform: translateX(-800px);
            transform: translateX(-800px);
  }
}
.preface__bg--right img {
  position: absolute;
}
.preface__bg--right img:nth-of-type(1) {
  top: 7.5%;
  right: 7.5%;
  width: max(19rem, 110px);
  aspect-ratio: 19/20;
}
@media screen and (min-width: 1920px) {
  .preface__bg--right img:nth-of-type(1) {
    right: 47.5%;
    -webkit-transform: translateX(800px);
            transform: translateX(800px);
  }
}
.preface__bg--right img:nth-of-type(2) {
  top: 20%;
  right: 15%;
  width: max(23rem, 130px);
  aspect-ratio: 23/22;
}
@media screen and (min-width: 1920px) {
  .preface__bg--right img:nth-of-type(2) {
    right: 55%;
    -webkit-transform: translateX(800px);
            transform: translateX(800px);
  }
}
.preface__bg--right img:nth-of-type(3) {
  bottom: 5%;
  right: 5%;
  width: max(33rem, 170px);
  aspect-ratio: 1/1;
}
@media screen and (min-width: 1920px) {
  .preface__bg--right img:nth-of-type(3) {
    right: 45%;
    -webkit-transform: translateX(800px);
            transform: translateX(800px);
  }
}

.reason {
  background: #fff;
}
.reason__wrapper {
  padding-top: max(16.5rem, 50px);
  padding-bottom: max(16.5rem, 50px);
}
.reason__header {
  font-size: max(2.6rem, 20px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}
.reason__header b {
  font-size: 1.3em;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.reason__header .number {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
.reason__content {
  display: grid;
  row-gap: max(20rem, 50px);
  margin-top: max(6rem, 40px);
}
.reason__content .reason__item {
  position: relative;
  z-index: 0;
}
.reason__content .reason__item::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  width: 150%;
  height: max(11rem, 100px);
  background: #eee;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .reason__content .reason__item::before {
    top: 50%;
  }
}
.reason__content .reason__item:nth-of-type(odd)::before {
  -webkit-transform: translateX(-50%) rotate(-15deg);
          transform: translateX(-50%) rotate(-15deg);
}
@media screen and (max-width: 768px) {
  .reason__content .reason__item:nth-of-type(odd)::before {
    -webkit-transform: translateX(-50%) rotate(-30deg);
            transform: translateX(-50%) rotate(-30deg);
  }
}
.reason__content .reason__item:nth-of-type(even)::before {
  -webkit-transform: translateX(-50%) rotate(15deg);
          transform: translateX(-50%) rotate(15deg);
}
@media screen and (max-width: 768px) {
  .reason__content .reason__item:nth-of-type(even)::before {
    -webkit-transform: translateX(-50%) rotate(30deg);
            transform: translateX(-50%) rotate(30deg);
  }
}
.reason__content .reason__item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(5rem, 20px);
}
@media screen and (max-width: 1000px) {
  .reason__content .reason__item:nth-of-type(odd) .reason__item__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .reason__content .reason__item:nth-of-type(even) .reason__item__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.reason__content .reason__item .imageBox {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: max(40% - max(5rem, 20px), 320px);
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .reason__content .reason__item .imageBox {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}
.reason__content .reason__item .imageBox img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}
.reason__content .reason__item .textBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.reason__content .reason__item .textBox .tag {
  position: relative;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-size: max(4rem, 30px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: max(7rem, 35px);
}
.reason__content .reason__item .textBox .tag::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: max(0.2rem, 2px);
  height: 150%;
  background: #000;
  -webkit-transform: translate(-50%, 50%) rotate(45deg);
          transform: translate(-50%, 50%) rotate(45deg);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}
.reason__content .reason__item .textBox h3 {
  font-size: max(2.4rem, 18px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: max(3rem, 20px);
}
.reason__content .reason__item .textBox > p {
  font-size: max(1.6rem, 13px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
.reason__content .reason__item .textBox .reason__item__supplement {
  width: 100%;
  margin-top: 20px;
}
.reason__content .reason__item .textBox .reason__item__supplement .accordion__header {
  width: 100%;
  padding-bottom: 20px;
}
.reason__content .reason__item .textBox .reason__item__supplement .accordion__header span {
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  border-bottom: max(0.1rem, 1px) solid #000;
}
.reason__content .reason__item .textBox .reason__item__supplement .accordion__header:hover {
  opacity: 0.5;
}
.reason__content .reason__item .textBox .reason__item__supplement .accordion__content {
  max-height: 0;
  overflow: hidden;
  padding-left: max(3rem, 20px);
  padding-right: max(3rem, 20px);
  -webkit-transition: max-height 0.3s ease-out, padding 0.3s ease-out, background 0.3s ease-out;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out, background 0.3s ease-out;
}
.reason__content .reason__item .textBox .reason__item__supplement .accordion__content h4 {
  font-size: max(1.6rem, 13px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: max(1.5rem, 15px);
}
.reason__content .reason__item .textBox .reason__item__supplement .accordion__content p {
  padding-left: 1em;
}
.reason__content .reason__item .textBox .reason__item__supplement .accordion__content__button {
  margin: max(3rem, 20px) auto 0 auto;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.reason__content .reason__item .textBox .reason__item__supplement .accordion__content__button--text {
  border-bottom: max(0.1rem, 1px) solid #000;
}
.reason__content .reason__item .textBox .reason__item__supplement .accordion__content__button:hover {
  opacity: 0.7;
}
.reason__content .reason__item .textBox .reason__item__supplement.is-open .accordion__content {
  padding: max(3rem, 20px);
  background: #d9d9d9;
}
.reason__content .reason__item .textBox .reason__item__point {
  display: grid;
  row-gap: max(0.2rem, 2px);
  margin-top: max(5rem, 20px);
}
.reason__content .reason__item .textBox .reason__item__point__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: max(1rem, 10px);
  padding: max(2rem, 15px);
  background: #e6e1b1;
}
.reason__content .reason__item .textBox .reason__item__point__item .point__checkmark {
  width: max(3rem, 20px);
}
.reason__content .reason__item .textBox .reason__item__point__item .point__text {
  font-size: max(1.5rem, 12px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}

.price__wrapper {
  padding-bottom: max(16rem, 80px);
  background: #EAEAEA;
}
.price__header {
  position: relative;
  background: #d4b563;
  padding-top: max(11.5rem, 50px);
  padding-bottom: max(4rem, 30px);
  z-index: 0;
}
.price__header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n' x='0' y='0'><feTurbulence baseFrequency='0.95' numOctaves='3' seed='2' type='fractalNoise'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 20vw 20vw;
  mix-blend-mode: multiply;
  z-index: -1;
}
.price__header h2 {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-size: max(3.2rem, 22px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
}
.price__header h2 b.marker {
  background: #fff;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  padding: 0 max(1rem, 5px);
}
.price__content {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(15%, #d4b563), color-stop(15%, #EAEAEA));
  background: linear-gradient(to bottom, #d4b563 15%, #EAEAEA 15%);
  z-index: 0;
}
.price__content::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n' x='0' y='0'><feTurbulence baseFrequency='0.95' numOctaves='3' seed='2' type='fractalNoise'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 20vw 20vw;
  mix-blend-mode: multiply;
  z-index: -1;
}
.price__content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(15%, transparent), color-stop(15%, #EAEAEA));
  background: linear-gradient(to bottom, transparent 15%, #EAEAEA 15%);
  z-index: 0;
}
.price__content__inner {
  position: relative;
  padding: max(9rem, 40px) 5%;
  background: #fff;
  z-index: 10;
}
.price__content__pick {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: max(5rem, 20px);
  padding-bottom: max(3.5rem, 30px);
  margin-bottom: max(3.5rem, 30px);
}
@media screen and (max-width: 1300px) {
  .price__content__pick {
    gap: max(2rem, 10px);
  }
}
@media screen and (max-width: 1000px) {
  .price__content__pick {
    gap: max(5rem, 15px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.price__content__pick::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-image: linear-gradient(to right, #000 6px, transparent 4px);
  background-size: 10px 3px;
  background-repeat: repeat-x;
}
.price__content__pick__tag {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  gap: 10px;
  padding: max(1rem, 10px) max(1.5rem, 15px);
  margin-right: 10px;
  border-radius: 20px;
  background: #e6e1b1;
}
@media screen and (max-width: 1000px) {
  .price__content__pick__tag {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.price__content__pick__tag::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -9.9px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 20%;
  background: transparent;
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  background-color: inherit;
  pointer-events: none;
}
@media screen and (max-width: 1000px) {
  .price__content__pick__tag::before {
    top: auto;
    bottom: -10px;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 20px;
    height: 10px;
    -webkit-clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
            clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  }
}
.price__content__pick__tag--text {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-size: max(1.4rem, 12px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .price__content__pick__tag--text {
    font-size: max(3rem, 12px);
  }
}
.price__content__pick__tag--number {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-size: max(4.5rem, 30px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
}
.price__content__pick__text {
  text-align: center;
  font-size: max(2.2rem, 14px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .price__content__pick__text {
    font-size: max(4rem, 18px);
  }
}
.price__content__pick__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(5rem, 20px);
}
@media screen and (max-width: 1300px) {
  .price__content__pick__detail {
    gap: max(2rem, 10px);
  }
}
@media screen and (max-width: 1000px) {
  .price__content__pick__detail {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 30px;
  }
}
.price__content__pick__detail__house {
  width: max(31rem, 250px);
}
@media screen and (max-width: 550px) {
  .price__content__pick__detail__house {
    width: 100%;
  }
}
.price__content__pick__detail__value {
  position: relative;
  width: max(24rem, 190px);
}
@media screen and (max-width: 550px) {
  .price__content__pick__detail__value {
    width: 80%;
  }
}
.price__content__pick__detail__value__icon {
  position: absolute;
  top: 90%;
  right: 80%;
  width: 30%;
}
@media screen and (max-width: 550px) {
  .price__content__pick__detail__value__icon {
    width: max(20%, 60px);
    right: 0%;
  }
}
.price__content__supplement {
  text-align: center;
  padding: max(2rem, 15px) 5%;
  background: #E6E1B1;
  border-radius: max(1rem, 10px);
  font-size: max(2rem, 16px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
.price__content__supplement b {
  font-size: 1.5em;
  font-weight: inherit;
  line-height: 1;
  letter-spacing: 0.05em;
}
.price__content__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  gap: max(5rem, 0px);
  margin-top: max(10rem, 50px);
  width: 90%;
  margin: 50px auto 0 auto;
}
.price__content__header__text {
  font-size: max(2.2rem, 16px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
  padding-top: max(3rem, 10px);
  padding-bottom: max(1rem, 10px);
}
.price__content__header__diagonal {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  width: max(0.4rem, 4px);
  background: #bdbdbd;
}
.price__content__header__diagonal--left {
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
}
@media screen and (max-width: 768px) {
  .price__content__header__diagonal--left {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
}
.price__content__header__diagonal--right {
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}
@media screen and (max-width: 768px) {
  .price__content__header__diagonal--right {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
}
.price__content__option {
  display: grid;
  gap: max(1.5rem, 10px) max(1.5rem, 5px);
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  max-width: 100%;
  margin-top: max(4rem, 15px);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  grid-auto-rows: 1fr;
  overflow-x: auto;
}
@media screen and (max-width: 550px) {
  .price__content__option {
    grid-template-columns: repeat(5, minmax(max(40%, 140px), 1fr));
  }
}
.price__content__option .option__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: max(2rem, 10px) 0;
  border-radius: 5px;
  background: #f8f5de;
  font-size: max(1.5rem, 12px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

.onecut {
  background: #fff;
}
.onecut__wrapper {
  padding-top: max(16rem, 50px);
}
.onecut__header {
  font-size: max(2.2rem, 16px);
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: max(5rem, 30px);
}
.onecut__header b {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-size: 1.7em;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
}
.onecut__content {
  display: grid;
}
.onecut__content__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: max(2rem, 15px);
}
@media screen and (max-width: 768px) {
  .onecut__content__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.onecut__content__item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .onecut__content__item:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.onecut__content__item .imageBox {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  width: max(60%, 400px);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .onecut__content__item .imageBox {
    width: 100%;
  }
}
.onecut__content__item .imageBox img {
  width: 100%;
  height: 100%;
}
.onecut__content__item .textBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  gap: max(4rem, 30px);
  padding: 0 5%;
  width: auto;
}
@media screen and (max-width: 768px) {
  .onecut__content__item .textBox {
    padding: 5%;
  }
}
@media screen and (max-width: 550px) {
  .onecut__content__item .textBox {
    padding: 10% 2.5%;
  }
}
.onecut__content__item .textBox .tag {
  display: grid;
  row-gap: 5px;
}
.onecut__content__item .textBox .tag__text {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-size: max(2.2rem, 18px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
.onecut__content__item .textBox .tag__number {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-size: max(7.1rem, 50px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
.onecut__content__item .textBox p {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-size: max(2.1rem, 17px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.1em;
}
.onecut__content__item:nth-of-type(even) .textBox {
  background: #E6E1B1;
}
.onecut__content__item:nth-of-type(odd) .textBox {
  background: #D9D9D9;
}

.works {
  background: #fff;
}
.works__wrapper {
  padding-top: max(16rem, 50px);
  padding-bottom: max(16rem, 80px);
}
.works__header {
  display: grid;
  text-align: center;
  gap: max(1rem, 10px);
}
.works__header h2 {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-size: max(7rem, 40px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}
.works__header p {
  font-size: max(2rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
.works__content__item {
  padding-top: max(7rem, 30px);
  padding-bottom: max(7rem, 50px);
}
.works__content__item .works__preface {
  width: max(70%, 600px);
  margin: 0 auto max(6rem, 40px);
}
@media screen and (max-width: 768px) {
  .works__content__item .works__preface {
    width: 100%;
  }
}
.works__content__item .works__preface__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 10px;
  margin-bottom: max(3rem, 20px);
}
@media screen and (max-width: 768px) {
  .works__content__item .works__preface__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.works__content__item .works__preface__title--number {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-size: max(2rem, 18px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-right: max(2rem, 15px);
  margin-right: max(2rem, 15px);
  border-right: max(0.4rem, 4px) solid #d8c300;
}
@media screen and (max-width: 768px) {
  .works__content__item .works__preface__title--number {
    padding-left: max(2rem, 15px);
    padding-right: 0;
    margin-right: 0;
    border-right: none;
    border-left: max(0.4rem, 4px) solid #d8c300;
  }
}
.works__content__item .works__preface__title--text {
  font-size: max(2rem, 16px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
.works__content__item .works__preface > p {
  font-size: max(1.5rem, 14px);
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.1em;
}
.works__content__item .works__detail {
  display: grid;
  gap: max(3.5rem, 20px);
  grid-template-columns: repeat(2, 1fr);
  margin-top: max(5rem, 30px);
  padding-bottom: max(5rem, 50px);
}
@media screen and (max-width: 1000px) {
  .works__content__item .works__detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    row-gap: max(10rem, 60px);
    padding-bottom: 20px;
  }
}
.works__content__item .works__detail__image {
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.works__content__item .works__detail__image__list {
  position: relative;
  height: 100%;
}
.works__content__item .works__detail__image__list__inner {
  overflow: hidden;
  width: 100%;
  height: 100%;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}
@media screen and (max-width: 1000px) {
  .works__content__item .works__detail__image__list__inner {
    aspect-ratio: 11/8;
  }
}
.works__content__item .works__detail__image__list__inner .imageBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  width: 100%;
  height: 100%;
}
.works__content__item .works__detail__image__list__inner .imageBox img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.works__content__item .works__detail__image__list__dots {
  position: absolute;
  top: calc(100% + max(2rem, 20px));
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(1.5rem, 15px);
}
.works__content__item .works__detail__image__list__dots__dot {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: max(1.2rem, 10px);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #D9D9D9;
  cursor: pointer;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.2s ease;
  transition: background 0.3s ease, -webkit-transform 0.2s ease;
  transition: background 0.3s ease, transform 0.2s ease;
  transition: background 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.works__content__item .works__detail__image__list__dots__dot:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.works__content__item .works__detail__image__list__dots__dot.active {
  background: #d8c300;
}
.works__content__item .works__detail__text {
  -ms-flex-item-align: center;
      align-self: center;
}
.works__content__item .works__detail__text__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: max(1.5rem, 10px);
  margin-bottom: max(2rem, 15px);
}
.works__content__item .works__detail__text__price__supplement {
  display: grid;
  place-items: center;
  padding: max(1rem, 10px) max(1.5rem, 15px);
  background: #2d2d2d;
  color: #fff;
  font-size: max(1.5rem, 13px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
.works__content__item .works__detail__text__price__value {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-size: max(3.8rem, 38px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
.works__content__item .works__detail__text__price__value__unit {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 0.5em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
.works__content__item .works__detail__text > p {
  font-size: max(1.5rem, 13px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
.works__content__item .works__detail__text > p b {
  font-size: 1.2em;
  font-weight: 700;
  line-height: inherit;
  letter-spacing: inherit;
}
.works__content__item .works__detail__text__list {
  margin-top: max(4rem, 25px);
}
.works__content__item .works__detail__text__list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: max(2.5rem, 20px) 0;
  border-top: max(0.2rem, 2px) solid #eee;
}
.works__content__item .works__detail__text__list dl:last-of-type {
  border-bottom: max(0.2rem, 2px) solid #eee;
}
.works__content__item .works__detail__text__list dl dt,
.works__content__item .works__detail__text__list dl dd {
  font-size: max(1.5rem, 13px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
  .works__content__item:nth-of-type(odd) .works__detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .works__content__item:nth-of-type(even) .works__detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.works__content__item .works__voice {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: max(4.5rem, 30px) 10%;
  margin-top: max(5rem, 30px);
  background: #EAEAEA;
}
@media screen and (max-width: 1000px) {
  .works__content__item .works__voice {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.works__content__item .works__voice__sup {
  position: absolute;
  top: 0;
  left: 5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-size: max(3rem, 24px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
.works__content__item .works__voice__title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(1rem, 10px);
  padding-right: max(4rem, 30px);
  margin-right: max(4rem, 30px);
  border-right: max(0.1rem, 1px) solid #bdbdbd;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .works__content__item .works__voice__title {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
    border-right: none;
    cursor: pointer;
    position: relative;
  }
  .works__content__item .works__voice__title:hover {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}
.works__content__item .works__voice__title > * {
  pointer-events: none;
}
.works__content__item .works__voice__title--icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: max(9rem, 70px);
}
.works__content__item .works__voice__title h3 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: max(1.8rem, 14px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
.works__content__item .works__voice__title--arrow {
  display: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: max(3rem, 30px);
  height: max(3rem, 30px);
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .works__content__item .works__voice__title--arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.works__content__item .works__voice__title--arrow svg {
  width: 80%;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.works__content__item .works__voice__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 1000px) {
  .works__content__item .works__voice__content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease-out, border-top 0.3s ease-out, padding-top 0.3s ease-out, margin-top 0.3s ease-out;
    transition: max-height 0.3s ease-out, border-top 0.3s ease-out, padding-top 0.3s ease-out, margin-top 0.3s ease-out;
  }
}
@media screen and (max-width: 1000px) {
  .works__content__item .works__voice.is-open .works__voice__title--arrow svg {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .works__content__item .works__voice.is-open .works__voice__content {
    margin-top: max(4.5rem, 30px);
    padding-top: max(4.5rem, 30px);
    border-top: max(0.2rem, 2px) solid #bdbdbd;
  }
}
.works__cta .btn {
  position: relative;
  text-align: center;
  width: max(50%, 400px);
  margin: 0 auto;
  padding: max(3rem, 10px) 5%;
  border-radius: 50px;
  overflow: hidden;
  outline: 1px solid #000;
  z-index: 0;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media screen and (max-width: 550px) {
  .works__cta .btn {
    width: 100%;
  }
}
.works__cta .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-transform-origin: right;
          transform-origin: right;
  background: #000;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  z-index: -1;
}
.works__cta .btn--text {
  color: #fff;
  font-size: max(1.7rem, 14px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.works__cta .btn:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.works__cta .btn:hover::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.works__cta .btn:hover .btn--text {
  color: #000;
}
.works__cta .btn:active {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq {
  background: #eee;
}
.faq__wrapper {
  padding-top: max(12rem, 70px);
  padding-bottom: max(12rem, 70px);
}
.faq__title {
  text-align: center;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-size: max(7rem, 36px);
  margin-bottom: max(3rem, 20px);
}
.faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: max(2rem, 15px);
}
.faq__list__item__header {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 1em 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(2rem, 15px);
  padding: max(3rem, 20px) 5%;
  background: #fff;
  cursor: pointer;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.2s ease;
  transition: background 0.3s ease, -webkit-transform 0.2s ease;
  transition: background 0.3s ease, transform 0.2s ease;
  transition: background 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.faq__list__item__header > * {
  pointer-events: none;
}
.faq__list__item__header--icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: baseline;
      align-self: baseline;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-size: max(2.2rem, 18px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}
.faq__list__item__header h3 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: max(1.7rem, 14px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
.faq__list__item__header--arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: max(4rem, 30px);
  height: max(4rem, 30px);
  background: #eee;
  -webkit-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
}
.faq__list__item__header--arrow svg {
  width: 80%;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.faq__list__item__header--arrow svg path {
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.faq__list__item__header:hover {
  background: #f9f9f9;
}
.faq__list__item__header:hover .faq__list__item__header--arrow {
  background: #2d2d2d;
}
.faq__list__item__header:hover .faq__list__item__header--arrow svg path {
  color: #fff;
}
.faq__list__item__content {
  display: grid;
  grid-template-columns: 1em 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(2rem, 15px);
  padding: 0 5%;
  background: #d9d9d9;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-out, padding-top 0.3s ease-out, padding-bottom 0.3s ease-out;
  transition: max-height 0.3s ease-out, padding-top 0.3s ease-out, padding-bottom 0.3s ease-out;
}
.faq__list__item__content--icon {
  -ms-flex-item-align: baseline;
      align-self: baseline;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-size: max(2.2rem, 18px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}
.faq__list__item__content p {
  font-size: max(1.6rem, 13px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
.faq__list__item.is-open .faq__list__item__header--arrow svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq__list__item.is-open .faq__list__item__content {
  padding-top: max(3rem, 20px);
  padding-bottom: max(3rem, 20px);
}/*# sourceMappingURL=style.css.map */