@font-face {
  font-family: "Gen Interface JP";
  src: url("../fonts/GenInterfaceJPDisplay-Thin.ttf") format("truetype");
  font-weight: 100;
  font-display: swap;
}
@font-face {
  font-family: "Gen Interface JP";
  src: url("../fonts/GenInterfaceJPDisplay-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: "Gen Interface JP";
  src: url("../fonts/GenInterfaceJPDisplay-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Gen Interface JP";
  src: url("../fonts/GenInterfaceJPDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Gen Interface JP";
  src: url("../fonts/GenInterfaceJPDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Gen Interface JP";
  src: url("../fonts/GenInterfaceJPDisplay-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Gen Interface JP";
  src: url("../fonts/GenInterfaceJPDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Gen Interface JP";
  src: url("../fonts/GenInterfaceJPDisplay-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Gen Interface JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.03em;
  color: #55533d;
  background-image: url("../img/fv_bg.jpg?up0709");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media screen and (max-width: 768px) {
  body {
    background: none;
  }
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: url("../img/fv_bg.jpg?up0709");
    background-size: cover;
    background-position: center;
  }
}

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

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  appearance: none;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.u-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp {
    display: inline;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .header__inner {
    margin: 12px;
    padding: 12px 15px 12px 21px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 7.5px rgba(0, 0, 0, 0.09);
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  line-height: 0;
}
@media screen and (min-width: 769px) {
  .header__logo {
    display: none;
  }
}
.header__logo img {
  width: 154px;
}
.header__toggle {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 9px 6px;
  }
}
.header__toggle span {
  display: block;
  width: 30px;
  height: 1px;
  background: #55533d;
  transition: transform 0.3s, opacity 0.3s;
}
.header__toggle[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.header__toggle[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .header__nav {
    width: 100%;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
  }
  .is-menu-open .header__nav {
    max-height: 400px;
  }
}
.header__list {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 30px 48px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.09em;
  color: #fff;
  filter: drop-shadow(0 3px 15px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 768px) {
  .header__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 0 6px;
    color: #55533d;
    filter: none;
  }
  .header__list li {
    width: 100%;
  }
  .header__list li a {
    display: block;
    padding: 9px 3px;
  }
}
@media screen and (min-width: 769px) {
  .header.is-scrolled .header__list {
    color: #55533d;
    filter: none;
    transition: color 0.3s;
  }
}

.fv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
}
.fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(85, 83, 61, 0.3);
}
.fv__logo {
  position: relative;
  filter: drop-shadow(0 3px 9px rgba(0, 0, 0, 0.25));
}
.fv__logo img {
  width: 185px;
}
@media screen and (max-width: 768px) {
  .fv__logo img {
    width: 150px;
  }
}

.about {
  position: relative;
  padding: 150px 0 90px;
  background: #fcfbf7;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .about {
    padding: 90px 21px 60px;
  }
}
.about__heading, .about__body, .about__btn-wrap {
  width: 980px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1040px) {
  .about__heading, .about__body, .about__btn-wrap {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media screen and (max-width: 768px) {
  .about__heading, .about__body, .about__btn-wrap {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.about__heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 120px;
  letter-spacing: 0.48em;
  line-height: 1;
  color: #ece9d4;
  white-space: nowrap;
  margin-bottom: -30px;
}
@media screen and (max-width: 768px) {
  .about__heading {
    font-size: 60px;
    margin-bottom: 0;
  }
}
.about__body {
  display: flex;
  gap: 90px;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .about__body {
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
  }
}
.about__text {
  display: flex;
  flex-direction: column;
  gap: 48px;
  flex-shrink: 0;
  width: 372px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .about__text {
    width: 100%;
    gap: 30px;
  }
}
.about__copy {
  font-weight: 800;
  font-size: 27px;
  letter-spacing: 0.12em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .about__copy {
    font-size: 21px;
  }
}
.about__desc {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #8d8b6e;
  width: 330px;
}
@media screen and (max-width: 768px) {
  .about__desc {
    width: 100%;
  }
}
.about__note {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .about__gallery {
    flex-shrink: 0;
    width: 750px;
    overflow: visible;
  }
}
@media screen and (max-width: 768px) {
  .about__gallery {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
  }
}
@media screen and (min-width: 769px) {
  .about__gallery-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    transform: none !important;
  }
}
@media screen and (min-width: 769px) {
  .about__gallery-list .swiper-slide {
    width: 360px !important;
    height: 210px;
  }
}
@media screen and (max-width: 768px) {
  .about__gallery-list .swiper-slide {
    aspect-ratio: 360/210;
  }
}
.about__gallery-list .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.about__btn-wrap {
  display: flex;
  justify-content: flex-end;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .about__btn-wrap {
    justify-content: center;
    padding-top: 30px;
  }
}
.about__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  padding: 12px 36px;
  border: 1px solid rgba(85, 83, 61, 0.3);
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 0.09em;
  line-height: 1.8;
  transition: background 0.3s;
}
.about__btn:hover {
  background: #ece9d4;
}

.scene {
  position: relative;
  padding: 150px 0;
  background: #ece9d4;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .scene {
    padding: 90px 12px;
  }
}
.scene__heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: 0.6em;
  text-indent: 0.6em;
  color: #55533d;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .scene__heading {
    font-size: 27px;
  }
}
.scene__heading {
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .scene__heading {
    margin-bottom: 45px;
  }
}
.scene__list {
  width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 90px;
}
@media screen and (max-width: 1040px) {
  .scene__list {
    width: 100%;
    padding: 0 12px;
  }
}
@media screen and (max-width: 768px) {
  .scene__list {
    padding: 0;
    gap: 30px;
  }
}
.scene__item {
  position: relative;
  padding: 60px 78px 48px;
}
@media screen and (max-width: 768px) {
  .scene__item {
    padding: 45px 15px;
  }
}
.scene__bracket {
  position: absolute;
  width: 60px;
}
@media screen and (max-width: 768px) {
  .scene__bracket {
    width: 40px;
  }
}
.scene__bracket img {
  display: block;
  width: 100%;
}
.scene__bracket--open {
  left: 0;
  bottom: 0;
}
.scene__bracket--close {
  right: 0;
  top: 0;
  transform: rotate(180deg);
}
.scene__num {
  position: absolute;
  top: 120px;
  left: 0;
  z-index: 2;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 120px;
  line-height: 1;
  color: #fcfbf7;
}
@media screen and (max-width: 768px) {
  .scene__num {
    top: 30px;
    left: 0;
    font-size: 64px;
  }
}
.scene__contents {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .scene__contents {
    flex-direction: column;
    gap: 24px;
    padding: 0 30px;
  }
}
.scene__img {
  position: relative;
  border-radius: 48px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .scene__img {
    order: 1;
    width: 100%;
    aspect-ratio: 5/4;
    border-radius: 24px;
  }
}
.scene__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scene__text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .scene__text {
    order: 2;
    width: 100%;
    align-items: flex-start;
  }
}
.scene__title {
  font-weight: 800;
  font-size: 45px;
  letter-spacing: 0.09em;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .scene__title {
    font-size: 30px;
  }
  .scene__title br {
    display: none;
  }
}
.scene__desc {
  color: #8d8b6e;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .scene__desc br {
    display: none;
  }
}
.scene__note {
  color: #8d8b6e;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.8;
}
.scene__item--01 .scene__contents {
  flex-direction: column;
  gap: 30px;
}
.scene__item--01 .scene__img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .scene__item--01 .scene__img {
    height: 360px;
  }
}
.scene__item--01 .scene__text {
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .scene__item--01 .scene__text {
    align-items: flex-start;
    text-align: left;
  }
}
.scene__item--02 .scene__num {
  top: 60px;
}
@media screen and (max-width: 768px) {
  .scene__item--02 .scene__num {
    top: 30px;
  }
}
@media screen and (min-width: 769px) {
  .scene__item--02 .scene__img {
    flex: 1;
    aspect-ratio: 529/540;
  }
}
@media screen and (min-width: 769px) {
  .scene__item--02 .scene__text {
    flex-shrink: 0;
  }
}
@media screen and (min-width: 769px) {
  .scene__item--03 .scene__img {
    flex: 1;
    aspect-ratio: 458/468;
  }
}
@media screen and (min-width: 769px) {
  .scene__item--03 .scene__text {
    flex-shrink: 0;
  }
}

.lifedesk {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  background: #fcfbf7;
  border-radius: 60px;
  box-shadow: 0 3px 27px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .lifedesk {
    padding: 15px 0 45px;
    border-radius: 30px;
  }
}
.lifedesk__img {
  width: calc(100% - 120px);
  margin-bottom: 30px;
  border-radius: 36px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .lifedesk__img {
    width: calc(100% - 30px);
    border-radius: 24px;
  }
}
.lifedesk__img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .lifedesk__img img {
    height: auto;
    aspect-ratio: 348/360;
  }
}
.lifedesk__label {
  margin-bottom: 36px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.45em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lifedesk__label {
    margin-bottom: 24px;
    font-size: 18px;
    letter-spacing: 0.3em;
  }
}
.lifedesk__title {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  margin-bottom: 36px;
  font-weight: 800;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .lifedesk__title {
    margin-bottom: 24px;
  }
}
.lifedesk__title-sub {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 768px) {
  .lifedesk__title-sub {
    font-size: 18px;
  }
}
.lifedesk__title-main {
  font-size: 45px;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 768px) {
  .lifedesk__title-main {
    font-size: 27px;
  }
}
.lifedesk__marquee {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 36px;
}
.lifedesk__marquee::before, .lifedesk__marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10%;
  z-index: 2;
  pointer-events: none;
}
.lifedesk__marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fcfbf7 2%, rgba(252, 251, 247, 0) 100%);
}
.lifedesk__marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fcfbf7 2%, rgba(252, 251, 247, 0) 100%);
}
@media screen and (max-width: 768px) {
  .lifedesk__marquee {
    margin-bottom: 24px;
  }
}
.lifedesk__row {
  display: flex;
  width: max-content;
}
.lifedesk__row--left .lifedesk__row-inner {
  animation: marquee-left 40s linear infinite;
}
.lifedesk__row--right .lifedesk__row-inner {
  animation: marquee-right 40s linear infinite;
}
.lifedesk__row-inner {
  display: flex;
  gap: 23px;
  padding-right: 23px;
}
@media screen and (max-width: 768px) {
  .lifedesk__row-inner {
    gap: 19px;
    padding-right: 19px;
  }
}
.lifedesk__row-inner li {
  flex-shrink: 0;
  padding: 11px 23px;
  background: #ece9d4;
  border-radius: 0 18px 18px 18px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.09em;
  line-height: 1.3;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .lifedesk__row-inner li {
    padding: 9px 19px;
    font-size: 12px;
  }
}
.lifedesk__cta {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin: 0 60px;
  padding: 30px 90px;
  border: 1px solid rgba(141, 139, 110, 0.3);
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .lifedesk__cta {
    margin: 0 15px;
    padding: 24px 20px;
  }
}
.lifedesk__cta-text {
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}
.lifedesk__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 54px;
  background: linear-gradient(180deg, #ffe100 0%, #f0c400 100%);
  border-radius: 60px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.09em;
  line-height: 1.3;
  transition: opacity 0.3s;
}
.lifedesk__btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .lifedesk__btn {
    padding: 18px 40px;
    font-size: 15px;
  }
}
.lifedesk__btn--disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.6;
}
.lifedesk__cta-note {
  color: #8d8b6e;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
}
.lifedesk__cta-note a {
  text-decoration: underline;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes marquee-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.price {
  position: relative;
  padding: 120px 180px;
  background: #fcfbf7;
}
.price::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/price_bg.png?up0709") center/cover no-repeat;
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  .price {
    padding: 90px 21px;
  }
}
.price__head, .price__table-wrap {
  position: relative;
}
.price__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .price__head {
    margin-bottom: 45px;
  }
}
.price__heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: 0.6em;
  text-indent: 0.6em;
  color: #55533d;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .price__heading {
    font-size: 27px;
  }
}
.price__label {
  padding: 12px 24px;
  border: 1px solid #8d8b6e;
  color: #8d8b6e;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.09em;
  line-height: 1;
  text-align: center;
}
.price__table-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  max-width: 920px;
  margin: 0 auto;
}
.price__table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid transparent;
  background: rgba(141, 139, 110, 0.3);
  text-align: center;
}
.price__table th,
.price__table td {
  width: 33.3333333333%;
  border: 1px solid rgba(141, 139, 110, 0.3);
  vertical-align: middle;
}
.price__table thead th,
.price__table thead td {
  height: 64px;
  background: #ece9d4;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .price__table thead th,
  .price__table thead td {
    height: 55px;
    font-size: 15px;
  }
}
.price__table tbody th,
.price__table tbody td {
  height: 84px;
  background: #fcfbf7;
}
@media screen and (max-width: 768px) {
  .price__table tbody th,
  .price__table tbody td {
    height: 66px;
  }
}
.price__table tbody th {
  color: #8d8b6e;
  font-weight: 400;
}
.price__unit {
  font-weight: 400;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .price__unit {
    font-size: 18px;
  }
}
.price__min {
  font-weight: 600;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .price__min {
    font-size: 18px;
  }
}
.price__yen {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .price__yen {
    font-size: 18px;
  }
}
.price__num {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 27px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .price__num {
    font-size: 21px;
  }
}
.price__note {
  color: #8d8b6e;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.8;
}

.howto {
  padding: 120px;
  background: rgba(252, 251, 247, 0.92);
}
@media screen and (max-width: 768px) {
  .howto {
    padding: 90px 21px;
  }
}
.howto__heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: 0.6em;
  text-indent: 0.6em;
  color: #55533d;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .howto__heading {
    font-size: 27px;
  }
}
.howto__heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .howto__heading {
    margin-bottom: 45px;
  }
}
.howto__list {
  display: flex;
  gap: 48px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .howto__list {
    flex-direction: column;
    gap: 45px;
  }
}
.howto__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  width: 275px;
}
@media screen and (max-width: 768px) {
  .howto__item {
    width: 100%;
  }
}
.howto__icon {
  display: flex;
  align-items: flex-start;
}
.howto__icon img:not(.howto__num) {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
}
.howto__num {
  position: relative;
  z-index: 2;
  width: auto;
  height: 47px;
  margin-right: -28px;
}
.howto__title {
  font-weight: 800;
  font-size: 27px;
  letter-spacing: 0.09em;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .howto__title {
    font-size: 21px;
  }
}
.howto__desc {
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .howto__desc {
    width: 100%;
  }
}

.service {
  padding: 120px;
  background: #ece9d4;
}
@media screen and (max-width: 768px) {
  .service {
    padding: 90px 21px;
  }
}
.service__heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: 0.6em;
  text-indent: 0.6em;
  color: #55533d;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service__heading {
    font-size: 27px;
  }
}
.service__heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .service__heading {
    margin-bottom: 45px;
  }
}
.service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 47px;
  row-gap: 60px;
  max-width: 1040px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .service__list {
    grid-template-columns: 1fr;
    row-gap: 45px;
  }
}
.service__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.service__num {
  margin-bottom: -12px;
  position: relative;
  z-index: 2;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 60px;
  line-height: 1;
  text-align: center;
  color: #fcfbf7;
}
@media screen and (max-width: 768px) {
  .service__num {
    font-size: 48px;
  }
}
.service__img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 48px;
  overflow: hidden;
}
.service__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 315/240;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .service__img img {
    aspect-ratio: 360/300;
  }
}
.service__title {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 15px;
  font-weight: 800;
  font-size: 27px;
  letter-spacing: 0.09em;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .service__title {
    font-size: 24px;
  }
}
.service__title::before, .service__title::after {
  content: "";
  width: 24px;
  height: 49px;
  background: url("../img/bracket_s.svg?up0709") no-repeat center/contain;
}
.service__title::after {
  transform: rotate(180deg);
}
.service__desc {
  color: #8d8b6e;
  line-height: 1.8;
}
.service__item--noimg .service__num {
  margin-bottom: 18px;
}

.space {
  padding: 150px 0 120px;
  background: rgba(252, 251, 247, 0.85);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .space {
    padding: 90px 0;
  }
}
.space__heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: 0.6em;
  text-indent: 0.6em;
  color: #55533d;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .space__heading {
    font-size: 27px;
  }
}
.space__heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .space__heading {
    margin-bottom: 45px;
  }
}
.space__slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 120px;
}
@media screen and (max-width: 768px) {
  .space__slider-wrap {
    gap: 21px;
    padding: 0 21px;
  }
}
.space__slider {
  width: 100%;
  overflow: visible;
}
.space__slide {
  width: 600px;
}
@media screen and (max-width: 768px) {
  .space__slide {
    width: 300px;
  }
}
.space__img {
  margin-bottom: 18px;
  border-radius: 36px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .space__img {
    margin-bottom: 12px;
    border-radius: 24px;
  }
}
.space__img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .space__img img {
    height: 175px;
  }
}
.space__caption {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 27px;
  letter-spacing: 0.09em;
  line-height: 1.3;
  color: #55533d;
}
@media screen and (max-width: 768px) {
  .space__caption {
    font-size: 21px;
  }
}
.space__caption::before, .space__caption::after {
  content: "";
  width: 24px;
  height: 49px;
  background: url("../img/bracket_s.svg?up0709") no-repeat center/contain;
}
.space__caption::after {
  transform: rotate(180deg);
}
.space__nav {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.space__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #fcfbf7;
  border: 1px solid rgba(85, 83, 61, 0.3);
  border-radius: 50%;
  transition: background 0.3s;
}
.space__nav-btn:hover {
  background: #ece9d4;
}
.space__nav-btn img {
  width: 12px;
}
.space__nav-btn--prev img {
  transform: rotate(90deg);
}
.space__nav-btn--next img {
  transform: rotate(-90deg);
}

.access {
  padding-top: 120px;
  background: #ece9d4;
}
@media screen and (max-width: 768px) {
  .access {
    padding-top: 90px;
  }
}
.access__heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: 0.6em;
  text-indent: 0.6em;
  color: #55533d;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .access__heading {
    font-size: 27px;
  }
}
.access__heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .access__heading {
    margin-bottom: 45px;
  }
}
.access__info {
  display: flex;
  flex-direction: column;
  gap: 27px;
  margin-bottom: 60px;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .access__info {
    gap: 21px;
    margin-bottom: 45px;
    padding: 0 21px;
  }
}
.access__map {
  line-height: 0;
}
.access__map iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

.faq {
  padding: 120px 180px;
  background: linear-gradient(rgba(236, 233, 212, 0.3), rgba(236, 233, 212, 0.3)), #fcfbf7;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 90px 21px;
  }
}
.faq__heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: 0.6em;
  text-indent: 0.6em;
  color: #55533d;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .faq__heading {
    font-size: 27px;
  }
}
.faq__heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .faq__heading {
    margin-bottom: 45px;
  }
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 21px;
  max-width: 920px;
  margin: 0 auto;
}
.faq__item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.faq__trigger {
  display: flex;
  gap: 21px;
  align-items: center;
  width: 100%;
  padding: 24px 30px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 1.5;
  color: #55533d;
  text-align: left;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 768px) {
  .faq__trigger {
    padding: 20px 21px;
  }
}
.faq__icon {
  flex-shrink: 0;
  margin-left: auto;
  line-height: 0;
}
.faq__icon img {
  transition: transform 0.3s;
}
.is-open .faq__icon img {
  transform: rotate(180deg);
}
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq__answer > p {
  overflow: hidden;
  padding: 0 30px;
  color: #8d8b6e;
  font-size: 13px;
  letter-spacing: 0.09em;
  line-height: 1.5;
  font-feature-settings: "palt" 1;
  transition: padding 0.3s ease;
}
@media screen and (max-width: 768px) {
  .faq__answer > p {
    padding: 0 21px;
  }
}
.is-open .faq__answer {
  grid-template-rows: 1fr;
}
.is-open .faq__answer > p {
  padding: 24px 30px;
  border-top: 1px solid rgba(210, 211, 213, 0.8);
}
@media screen and (max-width: 768px) {
  .is-open .faq__answer > p {
    padding: 20px 21px;
  }
}

.footer {
  background: #55533d;
}
.footer__inner {
  display: flex;
  gap: 48px;
  align-items: center;
  padding: 24px 15px 24px 36px;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    justify-items: start;
    padding: 24px;
  }
}
.footer__logo {
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    grid-column: 1/-1;
  }
}
.footer__logo img {
  width: 154px;
}
.footer__insta {
  line-height: 0;
  transition: opacity 0.3s;
}
.footer__insta:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .footer__insta {
    grid-column: 1/-1;
  }
}
.footer__insta img {
  width: 18px;
}
.footer__meta {
  display: flex;
  gap: 36px;
  align-items: center;
  margin-left: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 9px;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer__meta {
    grid-column: 1/-1;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    margin-left: 0;
    font-size: 12px;
  }
}
.footer__company {
  transition: opacity 0.3s;
}
.footer__company:hover {
  opacity: 0.7;
}
.footer__copyright {
  font-size: inherit;
}
.footer__pagetop {
  flex-shrink: 0;
  line-height: 0;
  transition: opacity 0.3s;
}
.footer__pagetop:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .footer__pagetop {
    position: absolute;
    right: 24px;
    bottom: 24px;
  }
}
.footer__pagetop img {
  width: 48px;
}

/*# sourceMappingURL=style.css.map */
