@charset "UTF-8";
/*----------------- 共通 -------------------*/
/*-----------------------------------------
    color
-----------------------------------------*/
/*-----------------------------------------
    font
-----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");

/*-----------------------------------------
    メディアクエリ
-----------------------------------------*/
/*-----------------------------------------
リセット
----------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 93.75%;
  }
}


html,
body {
  padding: 0;
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

figure,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
p {
  padding: 0;
  margin: 0;
  font-weight: 300;
}

:root {
  --scrollbar-width: 0px;
}

/*-----------------------------------------
    アニメーション
-----------------------------------------*/
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

/*-----------------------------------------
全体
----------------------------------------*/
.inner {
  width: 1024px;
  margin: 0 auto;
  max-width: 94%;
}

@media (max-width: 767px) {
  .inner {
    width: 100%;
    max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

body {
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  background: #fff;
  color: #6b7c85;
}

img {
  width: 100%;
  height: auto;
}

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

@media (min-width: 767px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

li {
  list-style: none;
}

dt,
dd {
  margin: 0;
}

.sp-only {
  display: none;
}

@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.child-main {
  margin-top: 172px;
  background: #f5f1eb;
  padding: 5.2rem 1rem 0;
}

.child-main--partner {
  background: #fff;
}

@media (max-width: 767px) {
  .child-main {
    margin-top: 60px;
    padding-left: 0;
    padding-right: 0;
  }
}

.child-main__inner {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  text-align: center;
  font-weight: 300;
  text-decoration: none;
  padding: 15px 42px;
  background: #2c5f6f;
  border: 2px solid #2c5f6f;
  border-radius: 40px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease 0s;
}

@media (max-width: 767px) {
  .btn {
    font-size: clamp(14px, 2.5vw, 18px);
    padding-left: clamp(30px, 6vw, 42px);
    padding-right: clamp(30px, 6vw, 42px);
    min-width: 150px;
  }
}

.btn:hover {
  background: #1f4654;
  border-color: #1f4654;
}

.btn--more {
  background: #fff;
  color: #2c5f6f;
}

.btn--more:hover {
  font-weight: 400;
  background: #2c5f6f;
  border-color: #2c5f6f;
  color: #fff;
}

/* 
.header {
  display: flex;
  align-items: center;
  position: fixed;
  background: rgba(255, 255, 255, 0.9);
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  border-bottom: 1px solid rgba(44, 95, 111, 0.1019607843);
  padding-left: clamp(2rem, 4vw, 5.6rem);
  padding-right: clamp(2rem, 4vw, 5.6rem);
  z-index: 10;
}
@media (max-width: 767px) {
  .header {
    height: 60px;
    padding: 0;
  }
}
.header__inner {
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  gap: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  position: relative;
  z-index: 10;
}
.header__logo a {
  letter-spacing: 0.25em;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  color: #2c5f6f;
}

/*-----------------------------------------
    //drawer
-----------------------------------------*/
/* .drawer__icon {
  z-index: 10;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.drawer__icon .icon-open {
  display: block;
}
.drawer__icon .icon-open.is-active {
  display: none;
}
.drawer__icon .icon-close {
  display: none;
}
.drawer__icon .icon-close.is-active {
  display: block;
}

.drawer__content {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 9;
  padding-top: 70px;
  display: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.drawer__content .drawer-nav {
  display: flex;
  flex-direction: column;
}
.drawer__content .drawer-nav li a {
  display: block;
  padding: 8px 0;
  font-size: clamp(13px, 1.2vw, 14px);
  font-weight: 300;
  transition: all 0.3s ease 0s;
}
.drawer__content .drawer-nav li a:hover {
  opacity: 0.6;
}

.drawer__inner {
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1.5rem;
  width: 100%;
}

.drawer__bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  background: transparent;
}
.drawer__bg.is-active {
  display: block;
} */

/*-----------------------------------------
    section
-----------------------------------------*/
.section__head {
  text-align: center;
  padding-bottom: 0.9rem;
  position: relative;
}

.section__head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background: #2c5f6f;
}

.section__head h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 46px;
  letter-spacing: 0.15rem;
  color: #2c5f6f;
}

@media (max-width: 767px) {
  .section__head h2 {
    margin-top: 0.5rem;
    font-size: 34px;
  }
}

.section__head .lead {
  font-size: 14px;
  letter-spacing: 0.25rem;
  color: #2c5f6f;
}

@media (max-width: 767px) {
  .section__head .lead {
    font-size: clamp(12px, 2.3vw, 14px);
  }
}

/*-----------------------------------------
    news
-----------------------------------------*/
.fix-news {
  margin-top: 172px;
  background: linear-gradient(90deg, rgb(44, 95, 111) 0%, rgb(31, 70, 84) 100%);
  overflow-x: hidden;
  padding-top: 12px;
  padding-bottom: 12px;
}

@media (max-width: 767px) {
  .fix-news {
    margin-top: 60px;
  }
}

.fix-news__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

.fix-news__item {
  width: 100%;
}

.fix-news__item a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
  transition: all 0.3s ease 0s;
}

.fix-news__item a.is-disabled {
  pointer-events: none;
  cursor: default;
}

.fix-news__item a.is-link:hover {
  opacity: 0.6;
}

.fix-news__item a span {
  font-size: 14px;
  white-space: nowrap;
  width: calc(100% - 21px);
}

.fix-news__item a .img {
  width: 16px;
  height: 16px;
}

.fix-news__item a .img.facility {
  background: url(../img/lp/icon-facility.svg) no-repeat center center/contain;
}

.fix-news__item a .img.news {
  background: url(../img/lp/icon-news.svg) no-repeat center center/contain;
}

.swiper .swiper-wrapper {
  transition-timing-function: linear;
}

/*-----------------------------------------
    contact
-----------------------------------------*/
.contact {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background: linear-gradient(145deg, rgb(44, 95, 111) 0%, rgb(31, 70, 84) 50%, rgb(44, 95, 111) 100%);
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .contact {
    padding-top: 3rem;
    padding-bottom: 6rem;
  }
}

.contact:before,
.contact:after {
  content: "";
  position: absolute;
  width: 24rem;
  height: 24rem;
  filter: blur(64px);
  border-radius: 100%;
  opacity: 0.1;
}

.contact:before {
  top: 5rem;
  right: 5rem;
  background: #7ec4cf;
}

.contact:after {
  bottom: 5rem;
  left: 5rem;
  background: #f9d89c;
}

.contact__inner {
  position: relative;
  z-index: 2;
  width: 896px;
  max-width: 90%;
}

@media (max-width: 767px) {
  .contact__inner {
    max-width: 100%;
  }
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: #fff;
  font-size: clamp(14px, 1.3vw, 16px);
  transition: all .3s ease 0s;
}

.contact-link:hover {
  opacity: 0.6;
}

.contact-link:hover .img {
  opacity: 0.6;
}

.contact-link .img {
  line-height: 1;
  margin-top: 2px;
  transition: all .3s ease 0s;
}

.contact-link .img img {
  width: 20px;
}


.contact__head {
  margin-top: 3rem;
  padding-bottom: 1.5rem;
}

.contact__head:after {
  background: #fff;
}

.contact__head .lead {
  color: #fff;
}

.contact__head h2 {
  margin-top: 1rem;
  line-height: 1;
  color: #fff;
}

@media (max-width: 767px) {
  .contact__head h2 {
    margin-top: 0.9rem;
    line-height: 1.7;
    font-size: clamp(30px, 5vw, 34px);
  }
}

.contact__content {
  margin-top: 3.5rem;
}

.contact__content .lead {
  font-size: 18px;
  text-align: center;
  color: #fff;
}

@media (max-width: 767px) {
  .contact__content .lead {
    font-size: clamp(14px, 2.5vw, 18px);
  }
}

.contact__content .bottom-text {
  color: #fff;
  margin-top: 3rem;
  text-align: center;
}

@media (max-width: 767px) {
  .contact__content .bottom-text {
    font-size: clamp(13px, 2.2vw, 16px);
  }
}

.contact__form {
  margin-top: 4rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.1019607843);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 767px) {
  .contact__form {
    padding-left: clamp(1.5rem, 6.5vw, 3rem);
    padding-right: clamp(1.5rem, 6.5vw, 3rem);
  }
}

/*----------------- お問い合わせフォーム -------------------*/
.contact-form__row:not(:first-child) {
  margin-top: 1.5rem;
}

/*----------------- label -------------------*/
.contact-form__label {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.25rem;
  color: #fff;
}

@media (max-width: 767px) {
  .contact-form__label {
    width: 100%;
    font-size: clamp(12px, 3.6vw, 14px);
  }
}

.contact-form__label label.is-required {
  display: inline-block;
}

.contact__text-area {
  margin-top: 3.6rem;
}

/*----------------- input -------------------*/
.contact-form__input {
  margin-top: 0.5rem;
  font-size: 14px;
}

@media (max-width: 767px) {
  .contact-form__input {
    font-size: clamp(13px, 2.3vw, 14px);
  }
}

.contact-form__input [type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1019607843);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
  padding: 0.25rem 0.75rem;
  height: 2.25rem;
  outline: none;
  transition: all 0.6s ease 0s;
}

.contact-form__input [type=text]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form__input [type=text]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form__input [type=text]:focus,
.contact-form__input [type=text]:hover {
  box-shadow: 0px 0px 0px 1px rgb(0, 0, 0);
}

.contact-form__input [type=tel] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1019607843);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
  padding: 0.25rem 0.75rem;
  height: 2.25rem;
  outline: none;
  transition: all 0.6s ease 0s;
}

.contact-form__input [type=tel]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form__input [type=tel]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form__input [type=tel]:focus,
.contact-form__input [type=tel]:hover {
  box-shadow: 0px 0px 0px 1px rgb(0, 0, 0);
}

.contact-form__input [type=email] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1019607843);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
  padding: 0.25rem 0.75rem;
  height: 2.25rem;
  outline: none;
  transition: all 0.6s ease 0s;
}

.contact-form__input [type=email]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form__input [type=email]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form__input [type=email]:focus,
.contact-form__input [type=email]:hover {
  box-shadow: 0px 0px 0px 1px rgb(0, 0, 0);
}

.contact-form__input textarea {
  margin-top: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: vertical;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1019607843);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.6;
  width: 100%;
  min-height: 150px;
  padding: 0.5rem 0.75rem;
  outline: none;
  transition: all 0.6s ease 0s;
}

.contact-form__input textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form__input textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form__input textarea:focus,
.contact-form__input textarea:hover {
  box-shadow: 0px 0px 0px 1px rgb(0, 0, 0);
}

.contact-form__input-label {
  font-size: clamp(13px, 1.3vw, 14px);
}

/*----------------- ボタン -------------------*/
.contact__button-box {
  margin-top: 1rem;
  text-align: center;
}

.contact__button {
  text-align: center;
  display: block;
  position: relative;
}

.contact__button::after {
  content: "";
  position: absolute;
  top: 34%;
  left: calc(50% + 5em);
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(../img/icon-arrow-y.svg) no-repeat center center/contain;
  transition: all 0.6s ease 0s;
}

.contact__btn {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  letter-spacing: 0.1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  color: #2c5f6f;
  width: 100%;
  height: 56px;
  line-height: 56px;
  padding: 0;
  font-size: 18px;
  background: #fff;
  border-radius: 80px;
  transition: all 0.3s ease 0s;
}

@media (max-width: 767px) {
  .contact__btn {
    font-size: clamp(14px, 2.5vw, 18px);
  }
}

.contact__btn:hover {
  background: rgba(255, 255, 255, 0.8);
}

/*-----------------------------------------
    contact partner
-----------------------------------------*/
.contact--partner .contact__content--partner {
  margin-top: 2.5rem;
}

.contact--partner .contact__form--partner {
  margin-top: 3.3rem;
  padding: 2.5rem;
  background: #fff;
}

@media (max-width: 767px) {
  .contact--partner .contact__form--partner {
    padding-left: clamp(1.5rem, 6.5vw, 3rem);
    padding-right: clamp(1.5rem, 6.5vw, 3rem);
  }
}

.contact--partner .contact-form__row:not(:first-child) {
  margin-top: 1.6rem;
}

.contact--partner .contact-form__label--partner {
  color: #2c5f6f;
  font-size: 16px;
}

.contact--partner .contact-form__input--partner input {
  border: 1px solid #e5e5e5;
  height: 3.25rem;
  line-height: 3.25rem;
  color: #6b7c85;
}

.contact--partner .contact-form__input--partner input::-moz-placeholder {
  color: #999999;
}

.contact--partner .contact-form__input--partner input::placeholder {
  color: #999999;
}

.contact--partner .contact-form__input--partner textarea {
  border: 1px solid #e5e5e5;
  color: #6b7c85;
}

.contact--partner .contact-form__input--partner textarea::-moz-placeholder {
  color: #999;
}

.contact--partner .contact-form__input--partner textarea::placeholder {
  color: #999;
}

.contact--partner .contact__btn--partner {
  background: #2c5f6f;
  color: #fff;
}

.contact--partner .contact__btn--partner:hover {
  opacity: 0.6;
}

.contact--partner .contact__button--partner::after {
  content: "";
  left: calc(50% + 3em);
  background: url(../img/icon-arrow-y_w.svg) no-repeat center center/contain;
}

.contact--partner .bottom-text {
  color: #6b7c85;
  margin-top: 1.5rem;
  font-size: 14px;
}

.contact__bottom {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.5019607843);
  text-align: center;
  font-size: 14px;
}

.footer {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
  background: #1f4654;
}

.footer__logo {
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
}

.footer__logo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background: #e5e5e5;
}

.footer__logo a {
  letter-spacing: 0.25rem;
  color: #fff;
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
}

.footer__copy {
  margin-top: 2rem;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

@media (max-width: 767px) {
  .footer__copy {
    font-size: clamp(12px, 2vw, 14px);
  }
}

/*----------------- topページ -------------------*/
/*-----------------------------------------
    top-mv
-----------------------------------------*/
.top-mv {
  background: #f5f1eb;
  padding-top: 8rem;
  padding-bottom: 8rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .top-mv {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.top-mv:before,
.top-mv::after {
  content: "";
  position: absolute;
  width: 24rem;
  height: 24rem;
  filter: blur(64px);
  border-radius: 100%;
  opacity: 0.2;
}

.top-mv::before {
  top: 5rem;
  right: 2.5rem;
  background: #f4a6a3;
}

.top-mv::after {
  bottom: 5rem;
  left: 2.5rem;
  background: #7ec4cf;
}

.top-mv__inner {
  position: relative;
  overflow: hidden;
}

.top-mv__inner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  filter: blur(64px);
  border-radius: 100%;
  background: #f9d89c;
  opacity: 0.15;
}

.top-mv__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (max-width: 767px) {
  .top-mv__content {
    padding-left: clamp(0.75rem, 2vw, 1.5rem);
    padding-right: clamp(0.75rem, 2vw, 1.5rem);
  }
}

.top-mv__content h1 {
  font-size: 72px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  color: #2c5f6f;
}

@media (max-width: 767px) {
  .top-mv__content h1 {
    font-size: 48px;
    line-height: 1.2;
  }
}

.top-mv__content .p-box {
  margin-top: 3rem;
}

@media (max-width: 767px) {
  .top-mv__content .p-box {
    margin-top: 3.5rem;
  }
}

.top-mv__content .p-box p {
  text-align: center;
}

.top-mv__content .p-box p.mid {
  font-size: 20px;
}

@media (max-width: 767px) {
  .top-mv__content .p-box p.mid {
    font-size: clamp(16px, 2.5vw, 18px);
  }
}

.top-mv__content .p-box p.sm {
  margin-top: 1rem;
  font-size: 18px;
}

@media (max-width: 767px) {
  .top-mv__content .p-box p.sm {
    font-size: clamp(14px, 2vw, 16px);
  }
}

.top-mv__content .img-box {
  margin-top: 4rem;
  position: relative;
}

@media (max-width: 767px) {
  .top-mv__content .img-box {
    margin-top: clamp(2rem, 9vw, 4rem);
  }
}

@media (max-width: 767px) {
  .top-mv__content .img-box .img {
    width: 102%;
  }
}

.top-mv__content .img-box .img-deco {
  position: absolute;
  top: 49.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.top-mv__content .btns {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

@media (max-width: 767px) {
  .top-mv__content .btns {
    margin-top: 1.5rem;
    gap: clamp(1rem, 4.2vw, 2rem);
  }
}

.top-mv__content .bottom-text {
  margin-top: 4.8rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  letter-spacing: 0.25rem;
}

@media (max-width: 767px) {
  .top-mv__content .bottom-text {
    margin-top: clamp(2.8rem, 10vw, 4.8rem);
  }
}

.top-mv__content .scroll {
  margin-top: 3rem;
  text-align: center;
  display: flex;
  justify-content: center;
}

.top-mv__content .scroll a {
  display: block;
  width: 30px;
}

.top-mv__content .scroll a img {
  opacity: 0.4;
  animation-name: scroll;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*-----------------------------------------
    partner
-----------------------------------------*/
.top-mv--partner {
  padding-top: 8.5rem;
}

@media (max-width: 767px) {
  .top-mv--partner {
    padding-top: 8.3rem;
    padding-bottom: 7.5rem;
  }
}

.top-mv--partner::before {
  background: #7ec4cf;
}

.top-mv--partner::after {
  background: #f4a6a3;
}

.top-mv--partner h1 {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.3em;
  font-size: 24px;
  padding-bottom: 16px;
  position: relative;
}

.top-mv--partner h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 2px;
  background: #2c5f6f;
}

.top-mv--partner h2 {
  margin-top: 3rem;
  font-size: 72px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  color: #2c5f6f;
}

@media (max-width: 767px) {
  .top-mv--partner h2 {
          font-size: 37px;
    line-height: 1.6;
  }
}

.top-mv--partner .p-box {
  margin-top: 2rem;
}

.top-mv--partner .p-box .mid {
  font-size: 24px;
}

@media (max-width: 767px) {
  .top-mv--partner .p-box .mid {
    font-size: clamp(18px, 2.7vw, 20px) !important;
  }
}

.top-mv--partner .p-box .sm {
  font-size: 15px;
}

@media (max-width: 767px) {
  .top-mv--partner .p-box .sm {
    font-size: 14.5px !important;
  }
}

.top-mv--partner .btns {
  margin-top: 3.1rem;
}

@media (max-width: 767px) {
  .top-mv--partner .btns {
    margin-top: 3.9rem;
    flex-direction: column;
    align-items: stretch;
  }

  .top-mv--partner .btns .mv__btn {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    max-width: 432px;
  }

  .top-mv--partner .btns .mv__btn--more {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

.top-mv--partner .scroll {
  margin-top: 5rem;
}

/*-----------------------------------------
    back
-----------------------------------------*/
.back {
  padding-top: 8rem;
  padding-bottom: 8rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .back {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.back::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-33%, 33%);
  width: 600px;
  height: 600px;
  filter: blur(64px);
  border-radius: 100%;
  background: #7ec4cf;
  opacity: 0.1;
}

.back__inner {
  position: relative;
  z-index: 2;
}

.back__content {
  margin-top: 5rem;
}

@media (max-width: 767px) {
  .back__content {
    margin-top: 3rem;
  }
}

.back__content .intro {
  padding: 2.5rem 3rem 3rem;
  background: #f5f1eb;
  border-radius: 2rem;
}

@media (max-width: 767px) {
  .back__content .intro {
    padding-left: clamp(1.5rem, 6.5vw, 3rem);
    padding-right: clamp(1.5rem, 6.5vw, 3rem);
  }
}

.back__content .intro .intro-inner {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.back__content .intro .intro-inner h3 {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  color: #2c5f6f;
  font-size: 30px;
}

@media (max-width: 767px) {
  .back__content .intro .intro-inner h3 {
    font-size: clamp(24px, 4vw, 30px);
  }
}

.back__content .intro .intro-inner .p-box {
  margin-top: 2rem;
}

.back__content .intro .intro-inner .p-box p {
  line-height: 1.8;
  font-size: 18px;
}

@media (max-width: 767px) {
  .back__content .intro .intro-inner .p-box p {
    font-size: clamp(14px, 2.5vw, 18px);
  }
}

.back__content .intro .intro-inner .p-box p strong {
  font-weight: 400;
  color: #2c5f6f;
}

.back__content .intro .intro-inner .p-box p+p {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e5e5;
}

@media (max-width: 767px) {
  .back__content .intro .intro-inner .p-box p+p {
    margin-top: 2rem;
  }
}

.back__content .item {
  margin-top: 5rem;
  padding: 3rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  border-radius: 1.5rem;
  background: #fff;
}

@media (max-width: 767px) {
  .back__content .item {
    margin-top: 4.5rem;
    padding-left: clamp(1.5rem, 6.5vw, 3rem);
    padding-right: clamp(1.5rem, 6.5vw, 3rem);
  }
}

.back__content .item .item-inner {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.back__content .item__head {
  text-align: center;
  padding-bottom: 1.4rem;
  position: relative;
}

.back__content .item__head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background: #2c5f6f;
}

.back__content .item__head h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  color: #2c5f6f;
}

@media (max-width: 767px) {
  .back__content .item__head h3 {
    font-size: clamp(24px, 4vw, 30px);
  }
}

.back__content .item__head .lead {
  margin-top: 0.5rem;
  font-size: 16px;
}

@media (max-width: 767px) {
  .back__content .item__head .lead {
    font-size: clamp(13px, 2.2vw, 16px);
  }
}

.back__content .item__body {
  margin-top: 2.5rem;
}

.back__content .item__body .img {
  width: 670px;
  max-width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.back__content .item__body .img img {
  vertical-align: bottom;
  line-height: 1em;
}

.back__content .item__body .text {
  margin-top: 2.2rem;
  font-size: 18px;
}

@media (max-width: 767px) {
  .back__content .item__body .text {
    line-height: 1.8;
    font-size: clamp(14px, 2.5vw, 18px);
  }
}

.back__content .item__body .text2 {
  margin-top: 1.6rem;
  font-size: 18px;
  line-height: 2;
}

@media (max-width: 767px) {
  .back__content .item__body .text2 {
    font-size: clamp(14px, 2.5vw, 18px);
    margin-top: 1.8rem;
  }
}

.back__content .item__body .text2 strong {
  color: #2c5f6f;
}

.back__content .item__point {
  margin-top: 3rem;
  background: #f5f1eb;
  border-radius: 1.5rem;
  padding: 2rem;
}

@media (max-width: 767px) {
  .back__content .item__point {
    padding-left: clamp(1rem, 4.5vw, 2rem);
    padding-right: clamp(1rem, 4.5vw, 2rem);
  }
}

.back__content .item__point h4 {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.05rem;
  color: #2c5f6f;
}

.back__content .item__point ul {
  margin-top: 1.5rem;
}

.back__content .item__point ul li {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  font-size: 16px;
}

@media (max-width: 767px) {
  .back__content .item__point ul li {
    font-size: clamp(13px, 2.2vw, 16px);
  }
}

.back__content .item__point ul li:not(:first-child) {
  margin-top: 1rem;
}

.back__content .item__point ul li .num {
  font-size: 16px;
  color: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4a6a3;
  width: 32px;
  height: 32px;
}

@media (max-width: 767px) {
  .back__content .item__point ul li .num {
    width: clamp(24px, 5vw, 32px);
    height: clamp(24px, 5vw, 32px);
    font-size: clamp(13px, 2.2vw, 16px);
  }
}

.back__content .item__point ul li .num2 {
  background: #7ec4cf;
}

.back__content .item__point ul li .num3 {
  background: #f9d89c;
}

.back__content .item__point ul li span {
  display: block;
  width: calc(100% - 34px);
}

.back__content .item__bottom {
  margin-top: 1.5rem;
  background: rgba(91, 163, 176, 0.1019607843);
  padding: 2rem;
  border-radius: 1rem;
}

@media (max-width: 767px) {
  .back__content .item__bottom {
    padding-left: clamp(1rem, 4.5vw, 2rem);
    padding-right: clamp(1rem, 4.5vw, 2rem);
  }
}

.back__content .item__bottom h4 {
  color: #2c5f6f;
  font-size: 20px;
  font-style: italic;
}

@media (max-width: 767px) {
  .back__content .item__bottom h4 {
    font-size: clamp(18px, 3vw, 20px);
  }
}

.back__content .item__bottom .text {
  margin-top: 0.8rem;
  line-height: 2;
}

@media (max-width: 767px) {
  .back__content .item__bottom .text {
    font-size: clamp(14px, 2.5vw, 18px);
  }
}

.back__content .item__bottom .bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e5e5;
}

.back__content .item__bottom .bottom .position {
  text-align: right;
  font-size: 14px;
  color: #2c5f6f;
}

@media (max-width: 767px) {
  .back__content .item__bottom .bottom .position {
    font-size: clamp(12px, 2vw, 14px);
  }
}

.back__content .item__bottom .bottom .name {
  text-align: right;
  color: #2c5f6f;
}

.back__content .item__achievements {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #e5e5e5;
}

.back__content .item__achievements h4 {
  text-align: center;
  font-size: 20px;
  color: #2c5f6f;
}

.back__content .item__achievements--items {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 1.3rem;
}

.back__content .item__achievements--item .title {
  font-size: 36px;
  color: #f4a6a3;
  text-align: center;
}

.back__content .item__achievements--item .text {
  margin-top: -0.2rem;
  font-size: 14px;
  text-align: center;
}

.back__content .item__service {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #e5e5e5;
}

@media (max-width: 767px) {
  .back__content .item__service {
    margin-top: 2.7rem;
  }
}

.back__content .item__service h4 {
  text-align: center;
  font-size: 20px;
  color: #2c5f6f;
}

.back__content .item__service .text {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
}

@media (max-width: 767px) {
  .back__content .item__service .text {
    font-size: clamp(18px, 3.2vw, 24px);
    line-height: 1.7;
  }
}

.back__content .item__service ul {
  margin-top: 2.5rem;
}

@media (max-width: 767px) {
  .back__content .item__service ul {
    margin-top: 2rem;
  }
}

.back__content .item__service ul li {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  font-size: 18px;
}

@media (max-width: 767px) {
  .back__content .item__service ul li {
    font-size: clamp(14px, 2.5vw, 18px);
  }
}

.back__content .item__service ul li:not(:first-child) {
  margin-top: 1.5rem;
}

.back__content .item__service ul li .img {
  box-shadow: none;
  width: 40px;
  height: 40px;
  margin: 0;
  background: rgba(244, 166, 163, 0.2);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .back__content .item__service ul li .img {
    width: clamp(30px, 6vw, 40px);
    height: clamp(30px, 6vw, 40px);
  }
}

.back__content .item__service ul li .img img {
  width: 20px;
}

@media (max-width: 767px) {
  .back__content .item__service ul li .img img {
    width: clamp(14px, 3vw, 20px);
  }
}

.back__content .item__service ul li .img__blue {
  background: rgba(126, 196, 207, 0.2);
}

.back__content .item__service ul li .img__yellow {
  background: rgba(249, 216, 156, 0.2);
}

.back__content .item__service ul li span {
  display: block;
  width: calc(100% - 42px);
}

/*-----------------------------------------
    case
-----------------------------------------*/
.case {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: #f5f1eb;
}

.case__content {
  margin-top: 4.5rem;
  background: #fff;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.case__content .head h3 {
  font-size: 24px;
  color: #2c5f6f;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}

.case__content .head .lead {
  font-size: 16px;
  text-align: center;
  margin-top: 1rem;
}

.case__content .body {
  margin-top: 1.5rem;
  max-width: 768px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.case__content .body .case-voice {
  background: #f5f1eb;
  border-radius: 1rem;
  padding: 2rem;
}

.case__content .body .case-voice h4 {
  font-size: 20px;
  color: #2c5f6f;
  font-style: italic;
}

.case__content .body .case-voice p {
  margin-top: 1rem;
}

.case__content .body .case-flex {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.case__content .body .case-flex .case-item {
  background: rgba(91, 163, 176, 0.1019607843);
  padding: 1.5rem;
  border-radius: 1rem;
}

.case__content .body .case-flex .case-item h4 {
  font-size: 18px;
  color: #2c5f6f;
}

.case__content .body .case-flex .case-item p {
  margin-top: 0.5rem;
  font-size: 14px;
}

.case__content .body .case-flex .case-item:nth-child(2) {
  background: rgba(244, 166, 163, 0.1019607843);
}

.case__link {
  margin-top: 4rem;
  text-align: center;
}

.case__link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #2c5f6f;
  border-bottom: 1px solid rgba(44, 95, 111, 0.3019607843);
  transition: all 0.3s ease 0s;
}

.case__link a:hover {
  border-color: #1f4654;
}

.case__link .img {
  width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*-----------------------------------------
    foryou
-----------------------------------------*/
.foryou {
  padding-top: 8rem;
  padding-bottom: 8rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .foryou {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.foryou::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(33%, -33%);
  width: 500px;
  height: 500px;
  filter: blur(64px);
  border-radius: 100%;
  background: #f4a6a3;
  opacity: 0.1;
}

@media (max-width: 767px) {
  .foryou__head {
    padding-bottom: 1.5rem;
  }
}

@media (max-width: 767px) {
  .foryou__head h2 {
    line-height: 1.3;
    margin-top: 0.6rem;
  }
}

.foryou__content {
  position: relative;
  z-index: 2;
  margin-top: 5rem;
}

@media (max-width: 767px) {
  .foryou__content {
    margin-top: 3rem;
  }
}

.foryou__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 767px) {
  .foryou__items {
    grid-template-columns: 1fr;
  }
}

.foryou__item {
  background: linear-gradient(145deg, rgba(249, 216, 156, 0.1) 0%, rgba(244, 166, 163, 0.1) 100%);
  padding: 2.5rem 2.5rem 2.8rem;
  border-radius: 1rem;
}

@media (max-width: 767px) {
  .foryou__item {
    padding-left: clamp(1.2rem, 6vw, 2.5rem);
    padding-right: clamp(1.2rem, 6vw, 2.5rem);
  }
}

.foryou__item:nth-child(2) {
  background: linear-gradient(145deg, rgba(126, 196, 207, 0.1) 0%, rgba(91, 163, 176, 0.1) 100%);
}

.foryou__item:nth-child(2) ul li::before {
  color: #7ec4cf;
}

.foryou__item h3 {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
}

@media (max-width: 767px) {
  .foryou__item h3 {
    font-size: clamp(18px, 3.2vw, 24px);
  }
}

.foryou__item h3 .img {
  width: 2.5rem;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .foryou__item h3 .img {
    width: clamp(2rem, 6vw, 2.5rem);
  }
}

.foryou__item ul {
  margin-top: 2rem;
}

.foryou__item ul li {
  position: relative;
  padding-left: 1.6rem;
}

@media (max-width: 767px) {
  .foryou__item ul li {
    font-size: clamp(13px, 2.2vw, 16px);
  }
}

.foryou__item ul li::before {
  content: "＿";
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 16px;
  color: #f4a6a3;
}

.foryou__item ul li:not(:first-child) {
  margin-top: 1.4rem;
}

/*-----------------------------------------
    partner
-----------------------------------------*/
.partner {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: #f5f1eb;
}

@media (max-width: 767px) {
  .partner {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.partner__inner {
  width: 1150px;
}

@media (max-width: 767px) {
  .partner__inner {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .partner__head h2 {
    font-size: clamp(30px, 5vw, 34px);
  }
}

.partner__content {
  margin-top: 2rem;
}

.partner__content .lead {
  font-size: 18px;
  line-height: 2;
  text-align: center;
}

@media (max-width: 767px) {
  .partner__content .lead {
    font-size: clamp(14px, 2.5vw, 18px);
  }
}

.partner__content .map {
  margin-top: 4rem;
  width: 1150px;
  max-width: 100%;
  height: 500px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .partner__content .map {
    width: 720px;
  }
}

.partner__content .map #facility-map {
  height: 100%;
}

.partner__content .map #facility-map .marker-cluster-small div {
  background-color: #2c5f6f;
}

.partner__content .map #facility-map .marker-cluster-small {
  background-color: #2c5f6f;
}

.partner__content .map #facility-map .marker-cluster span {
  color: #fff;
}

.partner__content .map #facility-map .leaflet-popup .leaflet-popup-content {
  padding: 1rem 2rem;
  margin: 0px;
  width: auto;
  min-width: 17rem;
}

.partner__content .map #facility-map .leaflet-popup .leaflet-popup-content .popup {
  font-weight: 400;
}

.partner__content .map #facility-map .leaflet-popup .leaflet-popup-content .popup .popup-title {
  font-family: "Noto Serif JP", serif;
  color: #2c5f6f;
  font-size: clamp(13px, 1.3vw, 15px);
}

.partner__content .map #facility-map .leaflet-popup .leaflet-popup-content .popup .popup-address {
  margin-top: 0.5rem;
  font-size: clamp(13px, 1.3vw, 14px);
  color: #6b7c85;
  font-family: "Noto Sans JP", sans-serif;
}

.partner__content .map #facility-map .leaflet-popup .leaflet-popup-content .popup .popup-tel {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
  margin-top: 1rem;
  font-size: clamp(13px, 1.3vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: #6b7c85;
}

.partner__content .map #facility-map .leaflet-popup .leaflet-popup-content .popup .popup-tel .img {
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner__content .map #facility-map .leaflet-popup .leaflet-popup-content .popup .popup-tel .img svg {
  width: 100%;
  height: auto;
}

.partner__content .map #facility-map .leaflet-popup .leaflet-popup-content .popup .popup-link {
  margin-top: 1rem;
  font-size: clamp(13px, 1.3vw, 14px);
}

.partner__content .map #facility-map .leaflet-popup .leaflet-popup-content .popup .popup-link a {
  text-decoration: underline;
  font-family: "Noto Sans JP", sans-serif;
  color: #2c5f6f;
}

.partner__content .bottom-text {
  margin-top: 3rem;
  text-align: center;
}

@media (max-width: 767px) {
  .partner__content .bottom-text {
    font-size: clamp(13px, 2.2vw, 16px);
  }
}

.partner___button {
  margin-top: 2rem;
  text-align: center;
}

.partner___btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 8px 42px;
}

.partner___btn .img {
  width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*-----------------------------------------
    faq
-----------------------------------------*/
.faq {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

@media (max-width: 767px) {
  .faq {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.faq__top {
  position: relative;
  overflow: hidden;
}

.faq__top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-33%, -33%);
  width: 500px;
  height: 500px;
  filter: blur(64px);
  border-radius: 100%;
  background: #f4a6a3;
  opacity: 0.1;
}

.faq__inner {
  position: relative;
  z-index: 2;
  width: 896px;
  max-width: 90%;
}

@media (max-width: 767px) {
  .faq__inner {
    max-width: 100%;
  }
}

.faq__content {
  margin-top: 4rem;
  border-radius: 1rem;
  background: #f5f1eb;
  padding: 2rem;
}

.faq__items .faq-item {
  padding: 1rem 0;
}

.faq__items .faq-item:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}

.faq__items .faq-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq__items .faq-item__head--text {
  width: calc(100% - 20px);
  font-size: 18px;
  color: #2c5f6f;
}

@media (max-width: 767px) {
  .faq__items .faq-item__head--text {
    font-size: clamp(14px, 2.5vw, 18px);
  }
}

.faq__items .faq-item__icon {
  width: 20px;
  transition: all 0.3s ease 0s;
}

.faq__items .faq-item__icon.is-active {
  transform: rotate(180deg) translateY(5px);
}

.faq__items .faq-item__answer {
  display: none;
}

.faq__items .faq-item__answer--text {
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .faq__items .faq-item__answer--text {
    font-size: clamp(13px, 2.2vw, 16px);
  }
}

.faq__link {
  margin-top: 2rem;
  text-align: center;
}

.faq__link a {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  color: #2c5f6f;
  gap: 0.5rem;
}

@media (max-width: 767px) {
  .faq__link a {
    font-size: clamp(14px, 2.5vw, 18px);
  }
}

.faq__link a span {
  border-bottom: 1px solid rgba(44, 95, 111, 0.5019607843);
  transition: all 0.3s ease 0s;
}

.faq__link a:hover span {
  border-color: #1f4654;
}

.faq__link a:hover .img img {
  transform: translateY(0.25rem);
}

.faq__link a .img {
  width: 16px;
  transform: rotate(-90deg);
}

.faq__link a .img img {
  transition: all 0.3s ease 0s;
}

/*-----------------------------------------
    faq(当事者向け)
-----------------------------------------*/

.page-headBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.page-headBox .child-link {
  font-size: clamp(14px, 1.3vw, 16px);
}

@media (max-width: 767px) {
  .page-headBox .child-link {
    margin-left: 1.5rem;
  }
}


.page-headBox .child-link a {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.3rem;
  color: #2c5f6f;
}

@media (max-width: 767px) {
  .page-headBox .child-link a {
    font-size: clamp(13px, 2.2vw, 16px);
  }
}

.page-headBox .child-link .img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-headBox .child-link .img svg {
  stroke: #2c5f6f;
}

.child-link__right a{
flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .child-link__right{
flex-direction: row;
margin-right: 1.5rem;
}
}

.child-link__right .img {
  transform: scale(-1, 1);
}

.faq-child {
    padding-top: 2rem;
}

.faq-child__inner {
  max-width: none;
  width: 100%;
}

.faq-child__head {
  margin-top: 2rem;
  text-align: center;
  padding-bottom: 0.9rem;
  position: relative;
}

.faq-child__head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background: #2c5f6f;
}

.faq-child__head h1 {
  font-family: "Noto Serif JP", serif;
  font-size: 46px;
  letter-spacing: 0.15rem;
  color: #2c5f6f;
}

@media (max-width: 767px) {
  .faq-child__head h1 {
    margin-top: 0.5rem;
    font-size: 34px;
  }
}

.faq-child__head .lead {
  font-size: 14px;
  letter-spacing: 0.25rem;
  color: #2c5f6f;
}

@media (max-width: 767px) {
  .faq-child__head .lead {
    font-size: clamp(12px, 2.3vw, 14px);
  }
}

.faq-child__content {
  border-radius: 0;
  padding: 0;
}

@media (max-width: 767px) {
  .faq-child__content {
    margin-top: 4.2rem;
  }
}

.faq-child__content .faq-itemsContainer {
  background: #fff;
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border-radius: 1.5rem;
}

.faq-child__content .faq-itemsContainer:not(:first-child) {
  margin-top: 3rem;
}

.faq-child__content .faq-itemsContainer h2 {
  font-size: 24px;
  color: #2c5f6f;
  font-family: "Noto Serif JP", serif;
  padding-bottom: 0.8rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(44, 95, 111, 0.2);
}

@media (max-width: 767px) {
  .faq-child__content .faq-itemsContainer h2 {
    padding-bottom: 0.6rem;
  }
}

.faq-child-lead {
  margin-top: 2.2rem;
  text-align: center;
  font-size: 18px;
}

@media (max-width: 767px) {
  .faq-child-lead {
    margin-top: 2.4rem;
    font-size: clamp(14px, 2.5vw, 18px);
  }
}

.faq-child-item__answer {
  padding-right: 32px;
}

/*-----------------------------------------
    partner faq
-----------------------------------------*/
.faq__partner .faq__inner {
  max-width: 94%;
}

.faq__partner .faq__content--partner {
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.faq__partner .faq-item__partner {
  border-radius: 1rem;
  background: #f5f1eb;
  padding: 2rem;
}

@media (max-width: 767px) {
  .faq__partner .faq-item__partner {
    padding: 2rem 10px;
  }
}

.faq__partner .faq-item__partner:not(:first-child) {
  margin-top: 20px;
}

.faq__partner .faq-item__partner .head {
  display: flex;
  align-items: center;
  justify-content: start;
}

.faq__partner .faq-item__partner .head .icon {
  width: 24px;
}

.faq__partner .faq-item__partner .head .text-q {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  color: #2c5f6f;
  width: calc(100% - 40px);
  margin-left: auto;
}

@media (max-width: 767px) {
  .faq__partner .faq-item__partner .head .text-q {
    font-size: 18px;
    width: calc(100% - 30px);
  }
}

.faq__partner .faq-item__partner .body {
  margin-top: 1rem;
  width: calc(100% - 40px);
  margin-left: auto;
}

@media (max-width: 767px) {
  .faq__partner .faq-item__partner .body {
    width: calc(100% - 30px);
  }
}

.faq__partner .faq-item__partner .text-a {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 2;
}

.faq__partner .faq__link {
  margin-top: 4rem;
}

.faq__partner .faq__link p {
  font-size: 18px;
}

.faq__partner .faq__link p a {
  font-size: 18px;
  color: #2c5f6f;
  font-weight: 400;
  text-decoration: underline;
}

.faq-child .faq-child__content--partner {
  background: #fff;
  border-radius: 0;
  padding: 0;
}

.faq-child .faq-itemsContainer__partner {
  background: #f5f1eb;
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border-radius: 1.5rem;
}

.faq-child .faq-itemsContainer__partner:not(:first-child) {
  margin-top: 3rem;
}

/*-----------------------------------------
    philosophy
-----------------------------------------*/
.philosophy {
  padding-top: 8rem;
  padding-bottom: 8rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .philosophy {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.philosophy::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(33%, -33%);
  width: 500px;
  height: 500px;
  filter: blur(64px);
  border-radius: 100%;
  background: #f9d89c;
  opacity: 0.1;
}

.philosophy--partner {
  background: #f5f1eb;
}

.philosophy__inner {
  position: relative;
  z-index: 2;
  width: 1150px;
}

.philosophy__content {
  margin-top: 6rem;
}

@media (max-width: 767px) {
  .philosophy__content {
    margin-top: 4rem;
  }
}

.philosophy__content .bottom {
  margin-top: 6rem;
  text-align: center;
  font-size: 18px;
  line-height: 2;
}

@media (max-width: 767px) {
  .philosophy__content .bottom {
    font-size: clamp(14px, 2.5vw, 18px);
  }
}

.philosophy__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 767px) {
  .philosophy__items {
    grid-template-columns: 1fr;
  }
}

.philosophy__item {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.philosophy__item:nth-child(2) .head {
  background: linear-gradient(145deg, rgba(126, 196, 207, 0.3) 0%, rgba(91, 163, 176, 0.3) 100%);
}

.philosophy__item:nth-child(3) .head {
  background: linear-gradient(145deg, rgba(244, 166, 163, 0.3) 0%, rgba(232, 138, 135, 0.3) 100%);
}

.philosophy__item .head {
  background: linear-gradient(145deg, rgba(249, 216, 156, 0.3) 0%, rgba(244, 166, 163, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 8rem;
  height: 8rem;
}

.philosophy__item .head img {
  width: 3rem;
}

.philosophy__item .body {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .philosophy__item .body {
    margin-top: clamp(1rem, 4.5vw, 2rem);
  }
}

.philosophy__item .body h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
}

@media (max-width: 767px) {
  .philosophy__item .body h3 {
    font-size: clamp(18px, 3.2vw, 24px);
  }
}

.philosophy__item .body p {
  margin-top: 0.8rem;
}

@media (max-width: 767px) {
  .philosophy__item .body p {
    font-size: clamp(13px, 2.2vw, 16px);
  }
}

/*-----------------------------------------
    cta
-----------------------------------------*/
.fix__button {
  position: fixed;
  top: 110px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
  pointer-events: none;
  transform: scale(0.6);
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 8;
}

.fix__button.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  animation: popFromCenter 420ms cubic-bezier(0.2, 0.9, 0.2, 1.2);
}

.fix__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  gap: 0.5rem;
  padding: 9px 22px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.fix__btn .img {
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes popFromCenter {
  0% {
    transform: scale(0.2);
  }

  100% {
    transform: scale(1);
  }
}

/*----------------- パートナーページ -------------------*/
/*-----------------------------------------
    why
-----------------------------------------*/
.why {
  padding-top: 8rem;
  padding-bottom: 8rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .why {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.why::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-33%, 33%);
  width: 600px;
  height: 600px;
  filter: blur(64px);
  border-radius: 100%;
  background: #7ec4cf;
  opacity: 0.1;
}

.why__inner {
  position: relative;
  z-index: 2;
}

.why__content {
  margin-top: 5rem;
}

@media (max-width: 767px) {
  .why__content {
    margin-top: 3rem;
  }
}

.why__content .intro {
  padding: 2.5rem 3rem 3rem;
  background: #f5f1eb;
  border-radius: 2rem;
}

@media (max-width: 767px) {
  .why__content .intro {
    padding-left: clamp(1.5rem, 6.5vw, 3rem);
    padding-right: clamp(1.5rem, 6.5vw, 3rem);
  }
}

.why__content .intro .intro-inner {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.why__content .intro .intro-inner h3 {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  color: #2c5f6f;
  font-size: 30px;
}

@media (max-width: 767px) {
  .why__content .intro .intro-inner h3 {
    font-size: clamp(24px, 4vw, 30px);
  }
}

.why__content .intro .intro-inner .p-box {
  margin-top: 2rem;
}

.why__content .intro .intro-inner .p-box p {
  line-height: 1.8;
  font-size: 18px;
}

@media (max-width: 767px) {
  .why__content .intro .intro-inner .p-box p {
    font-size: clamp(14px, 2.5vw, 18px);
  }
}

.why__content .intro .intro-inner .p-box p strong {
  font-weight: 400;
  color: #2c5f6f;
}

.why__content .intro .intro-inner .p-box p+p {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e5e5;
}

@media (max-width: 767px) {
  .why__content .intro .intro-inner .p-box p+p {
    margin-top: 2rem;
  }
}

.why__content .item {
  margin-top: 5rem;
  padding: 3rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  border-radius: 1.5rem;
  background: #fff;
}

@media (max-width: 767px) {
  .why__content .item {
    margin-top: 4.5rem;
    padding-left: clamp(1.5rem, 6.5vw, 3rem);
    padding-right: clamp(1.5rem, 6.5vw, 3rem);
  }
}

.why__content .item .item-inner {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.why__content .item__head {
  text-align: center;
  padding-bottom: 1.4rem;
  position: relative;
}

.why__content .item__head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background: #2c5f6f;
}

.why__content .item__head h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  color: #2c5f6f;
}

@media (max-width: 767px) {
  .why__content .item__head h3 {
    font-size: clamp(24px, 4vw, 30px);
  }
}

.why__content .item__head .lead {
  margin-top: 0.5rem;
  font-size: 16px;
}

@media (max-width: 767px) {
  .why__content .item__head .lead {
    font-size: clamp(13px, 2.2vw, 16px);
  }
}

.why__content .item__body {
  margin-top: 2.5rem;
}

.why__content .item__body .img {
  width: 670px;
  max-width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.why__content .item__body .img img {
  vertical-align: bottom;
  line-height: 1em;
}

.why__content .item__body .text {
  margin-top: 2.2rem;
  font-size: 18px;
}

@media (max-width: 767px) {
  .why__content .item__body .text {
    line-height: 1.8;
    font-size: clamp(14px, 2.5vw, 18px);
  }
}

.why__content .item__body .text2 {
  margin-top: 1.6rem;
  font-size: 18px;
  line-height: 2;
}

@media (max-width: 767px) {
  .why__content .item__body .text2 {
    font-size: clamp(14px, 2.5vw, 18px);
    margin-top: 1.8rem;
  }
}

.why__content .item__body .text2 strong {
  color: #2c5f6f;
}

.why__content .item__point {
  margin-top: 3rem;
  background: #f5f1eb;
  border-radius: 1.5rem;
  padding: 2rem;
}

@media (max-width: 767px) {
  .why__content .item__point {
    padding-left: clamp(1rem, 4.5vw, 2rem);
    padding-right: clamp(1rem, 4.5vw, 2rem);
  }
}

.why__content .item__point h4 {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.05rem;
  color: #2c5f6f;
}

.why__content .item__point ul {
  margin-top: 1.5rem;
}

.why__content .item__point ul li {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  font-size: 16px;
}

@media (max-width: 767px) {
  .why__content .item__point ul li {
    font-size: clamp(13px, 2.2vw, 16px);
  }
}

.why__content .item__point ul li:not(:first-child) {
  margin-top: 1rem;
}

.why__content .item__point ul li .num {
  font-size: 16px;
  color: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4a6a3;
  width: 32px;
  height: 32px;
}

@media (max-width: 767px) {
  .why__content .item__point ul li .num {
    width: clamp(24px, 5vw, 32px);
    height: clamp(24px, 5vw, 32px);
    font-size: clamp(13px, 2.2vw, 16px);
  }
}

.why__content .item__point ul li .num2 {
  background: #7ec4cf;
}

.why__content .item__point ul li .num3 {
  background: #f9d89c;
}

.why__content .item__point ul li span {
  display: block;
  width: calc(100% - 34px);
}

.why__content .item__bottom {
  margin-top: 1.5rem;
  background: rgba(91, 163, 176, 0.1019607843);
  padding: 2rem;
  border-radius: 1rem;
}

@media (max-width: 767px) {
  .why__content .item__bottom {
    padding-left: clamp(1rem, 4.5vw, 2rem);
    padding-right: clamp(1rem, 4.5vw, 2rem);
  }
}

.why__content .item__bottom h4 {
  color: #2c5f6f;
  font-size: 20px;
  font-style: italic;
}

@media (max-width: 767px) {
  .why__content .item__bottom h4 {
    font-size: clamp(18px, 3vw, 20px);
  }
}

.why__content .item__bottom .text {
  margin-top: 0.8rem;
  line-height: 2;
}

@media (max-width: 767px) {
  .why__content .item__bottom .text {
    font-size: clamp(14px, 2.5vw, 18px);
  }
}

.why__content .item__bottom .bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e5e5;
}

.why__content .item__bottom .bottom .position {
  text-align: right;
  font-size: 14px;
  color: #2c5f6f;
}

@media (max-width: 767px) {
  .why__content .item__bottom .bottom .position {
    font-size: clamp(12px, 2vw, 14px);
  }
}

.why__content .item__bottom .bottom .name {
  text-align: right;
  color: #2c5f6f;
}

.why__content .item__achievements {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #e5e5e5;
}

.why__content .item__achievements h4 {
  text-align: center;
  font-size: 20px;
  color: #2c5f6f;
}

.why__content .item__achievements--items {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 1.3rem;
}

.why__content .item__achievements--item .title {
  font-size: 36px;
  color: #f4a6a3;
  text-align: center;
}

.why__content .item__achievements--item .text {
  margin-top: -0.2rem;
  font-size: 14px;
  text-align: center;
}

.why__content .item__service {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #e5e5e5;
}

@media (max-width: 767px) {
  .why__content .item__service {
    margin-top: 2.7rem;
  }
}

.why__content .item__service h4 {
  text-align: center;
  font-size: 20px;
  color: #2c5f6f;
}

.why__content .item__service .text {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
}

@media (max-width: 767px) {
  .why__content .item__service .text {
    font-size: clamp(18px, 3.2vw, 24px);
    line-height: 1.7;
  }
}

.why__content .item__service ul {
  margin-top: 2.5rem;
}

@media (max-width: 767px) {
  .why__content .item__service ul {
    margin-top: 2rem;
  }
}

.why__content .item__service ul li {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  font-size: 18px;
}

@media (max-width: 767px) {
  .why__content .item__service ul li {
    font-size: clamp(14px, 2.5vw, 18px);
  }
}

.why__content .item__service ul li:not(:first-child) {
  margin-top: 1.5rem;
}

.why__content .item__service ul li .img {
  box-shadow: none;
  width: 40px;
  height: 40px;
  margin: 0;
  background: rgba(244, 166, 163, 0.2);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .why__content .item__service ul li .img {
    width: clamp(30px, 6vw, 40px);
    height: clamp(30px, 6vw, 40px);
  }
}

.why__content .item__service ul li .img img {
  width: 20px;
}

@media (max-width: 767px) {
  .why__content .item__service ul li .img img {
    width: clamp(14px, 3vw, 20px);
  }
}

.why__content .item__service ul li .img__blue {
  background: rgba(126, 196, 207, 0.2);
}

.why__content .item__service ul li .img__yellow {
  background: rgba(249, 216, 156, 0.2);
}

.why__content .item__service ul li span {
  display: block;
  width: calc(100% - 42px);
}

/*-----------------------------------------
    partnership
-----------------------------------------*/
.partnership {
  padding-top: 8rem;
  padding-bottom: 8rem;
  position: relative;
  overflow: hidden;
  background: #f5f1eb;
}

@media (max-width: 767px) {
  .partnership {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.partnership::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(33%, -33%);
  width: 500px;
  height: 500px;
  filter: blur(64px);
  border-radius: 100%;
  background: #f4a6a3;
  opacity: 0.1;
}

@media (max-width: 767px) {
  .partnership__head {
    padding-bottom: 1.5rem;
  }
}

@media (max-width: 767px) {
  .partnership__head h2 {
    line-height: 1.3;
    margin-top: 0.6rem;
  }
}

.partnership__content {
  position: relative;
  z-index: 2;
  margin-top: 5rem;
}

@media (max-width: 767px) {
  .partnership__content {
    margin-top: 3rem;
  }
}

.partnership__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 767px) {
  .partnership__items {
    grid-template-columns: 1fr;
  }
}

.partnership__item {
  background: #fff;
  padding: 2.5rem 2.5rem 3.8rem;
  border-radius: 1.5rem;
}

@media (max-width: 767px) {
  .partnership__item {
    padding-left: clamp(1.2rem, 6vw, 2.5rem);
    padding-right: clamp(1.2rem, 6vw, 2.5rem);
  }
}

.partnership__item:nth-child(2) ul li::before {
  background: url(../img/icon-check-p.svg) no-repeat center center/contain;
}

.partnership__item h3 {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
}

@media (max-width: 767px) {
  .partnership__item h3 {
    font-size: clamp(18px, 3.2vw, 24px);
  }
}

.partnership__item h3 .img {
  width: 2.5rem;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .partnership__item h3 .img {
    width: clamp(2rem, 6vw, 2.5rem);
  }
}

.partnership__item ul {
  margin-top: 2rem;
}

.partnership__item ul li {
  position: relative;
  padding-left: 2rem;
}

@media (max-width: 767px) {
  .partnership__item ul li {
    font-size: clamp(13px, 2.2vw, 16px);
  }
}

.partnership__item ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(../img/icon-check-b.svg) no-repeat center center/contain;
}

.partnership__item ul li:not(:first-child) {
  margin-top: 0.5rem;
}

.partnership__merit {
  margin-top: 5rem;
  background: linear-gradient(145deg, rgba(91, 163, 176, 0.1) 0%, rgba(126, 196, 207, 0.1) 100%);
  border-radius: 1.5rem;
  padding: 3rem;
}

.partnership__merit h3 {
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}

.partnership__merit--flex {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 767px) {
  .partnership__merit--flex {
    grid-template-columns: 1fr;
  }
}

.partnership__merit--item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.partnership__merit--item .head {
  width: 4rem;
  height: 4rem;
  background: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partnership__merit--item .head img {
  width: clamp(24px, 3vw, 32px);
}

.partnership__merit--item .body {
  margin-top: 1rem;
}

.partnership__merit--item .body h4 {
  font-size: clamp(14px, 2.5vw, 18px);
  color: #2c5f6f;
}

.partnership__merit--item .body p {
  font-size: 14px;
  margin-top: 0.7rem;
}

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






div.site-header__inner li.pc-nav-list__item {
  margin-right: 0.8em;
  margin-left: 0.8em;
}

div.site-header__inner li.pc-nav-list__item.hassub::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 5px;
  box-sizing: border-box;
  border-top: solid 5px #aaa;
  border-right: solid 5px rgba(0, 0, 0, 0);
  border-left: solid 5px rgba(0, 0, 0, 0);
  vertical-align: middle;
  margin: 0 auto;
}

div.site-header__inner li.pc-nav-list__item ul {
  background-color: #fff;
  position: absolute;
  margin: 0 auto 0 0.5em;
  padding: 0 1em;
  overflow-y: hidden;
}

div.site-header__inner li.pc-nav-list__item ul li {
  opacity: 0;
  line-height: 0;
  margin-top: 0;
  margin-bottom: 0;
}

div.site-header__inner li.pc-nav-list__item:hover ul li {
  opacity: 1;
  line-height: 1;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  transition: all 0.1s ease-in-out;
}

.site-nav li.site-nav-list__item ul {
  margin: 0 0 0 1em;
  padding: 1em 0 0 0;
}

.site-nav li.site-nav-list__item ul li {
  margin-bottom: 0;
}

.site-nav li.site-nav-list__item ul li::before {
  content: "";
  width: 2rem;
  height: 0;
  display: inline-block;
  vertical-align: middle;
  border-top: solid 2px #aaa;
}

.ff-serif-en {
  font-family: adobe-garamond-pro, serif;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  padding: 1.5rem 0 1.2rem;
  background-color: #fff;
  transition: transform .2s cubic-bezier(0.25, 0.25, 0.75, 0.75)
}

.site-header a {
  text-decoration: none
}

.site-header .site-header__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  width: 100%
}

.site-header .header__logo {
  width: 240px;
  line-height: 1
}

@media(max-width: 767.98px) {
  .site-header .header__logo {
    width: 160px
  }
}

.site-header .pc-nav-list {
  font-size: 16px;
  font-size: 1rem;
  font-style: normal;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  letter-spacing: .1rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%
}

@media(max-width: 767.98px) {
  .site-header .pc-nav-list {
    display: none
  }
}

.site-header .pc-nav-list__item {
  margin: 1.5rem 8px 0
}

@media(max-width: 767.98px) {
  .site-header {
    align-items: center
  }
}


.site-header.hide {
  transform: translateY(calc(-1 * 171.25px))
}

.site-header__right {
  position: absolute;
  top: 1.5rem;
  right: 40px;
  line-height: 1;
  height: auto;
  text-align: right
}

.site-header__right .btn {
  display: flex;
  width: 160px;
  min-width: auto;
  margin-left: auto;
  padding: .4rem;
  height: auto
}

.site-header__right .btn .btn__txt {
  font-size: 12px;
  font-size: .75rem;
  line-height: 1
}

.site-header__right .btn-border {
  line-height: 1.2
}

.site-header__right .btn-border::before {
  bottom: 0rem
}

.site-header__right .btn-border .btn__txt {
  margin: 0;
  text-align: right;
  font-size: 12px;
  font-size: .75rem;
  line-height: 1;
  line-height: 1.2rem
}

.site-header__right .btn+.btn-border {
  margin-top: 12px
}

@media screen and (max-width: 1140px) {
  .site-header__right {
    position: relative;
    text-align: center;
    right: 0;
    display: flex;
    margin-top: 1rem
  }

  .site-header__right .btn {
    margin-left: inherit
  }

  .site-header__right .btn+.btn-border {
    margin-top: 0px;
    margin-left: 20px
  }
}

@media(max-width: 767.98px) {
  .site-header__right {
    display: none
  }
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  height: 100vh;
  overflow-y: scroll;
  background-color: #fff;
  transform: translateX(-100%);
  transition: transform .5s cubic-bezier(0.19, 1, 0.22, 1)
}

.site-nav a {
  text-decoration: none
}

.site-nav-list {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1;
  padding: 110px 40px
}

@media(max-width: 1039.98px) {
  .site-nav-list {
    padding-left: calc(40 / 1040 * (100vw - var(--scrollbar-width)));
    /* padding-right: calc(40 / 1040 * (100vw - var(--scrollbar-width))); */
  }
}

.site-nav-list__item {
  margin-top: 32px;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  font-weight: 400;
  font-style: normal;
  letter-spacing: .1rem;
  opacity: 0;
  transform: translateX(-2rem);
  transition: opacity .5s cubic-bezier(0.25, 0.25, 0.75, 0.75), transform .5s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0s
}

.site-nav-list__item:first-child {
  margin-top: 0
}

.site-nav-list__item.site-nav-list__item--btn {
  display: none
}

.site-nav-list__item.site-nav-list__item--btn .btn {
  height: 48px;
  min-width: 100%
}

.site-nav-list__item.site-nav-list__item--btn .btn::after {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1
}

.site-nav-list__item.site-nav-list__item--btn .btn .btn__txt {
  margin-top: 2px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  font-weight: bold
}

@media(max-width: 767.98px) {
  .site-nav-list__item.site-nav-list__item--btn {
    display: block
  }
}

.site-nav-list__item.site-nav-list__item--link {
  width: 100%
}

.site-nav-list__item.site-nav-list__item--link .btn__txt {
  margin-top: 2px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1
}

.site-nav-list__item:last-child {
  margin-bottom: 80px
}

.site-nav-list__item .btn-border {
  line-height: 1.2
}

.site-nav-list__item .btn-border::before {
  bottom: 0rem
}

.site-nav-list__item .btn-border::after {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1
}

.site-nav-list__item .btn-border .btn__txt {
  margin: 0;
  text-align: right;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  line-height: 1.8rem
}


.btn-line {
  color: #333;
  position: relative;
  display: inline-block
}

.btn-line::before {
  position: absolute;
  left: 0;
  top: auto;
  bottom: 0px;
  z-index: 0;
  content: "";
  width: 100%;
  height: 50%;
  transform: scaleY(0) scaleX(1.2);
  transform-origin: 50% 100%;
  background-color: #f2f0ea;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

@media(hover: hover)and (pointer: fine) {
  .btn-line:hover {
    color: #333;
    opacity: 1
  }

  .btn-line:hover::before {
    transform: scaleY(1) scaleX(1.2);
    transform-origin: 50% 0%
  }
}







.drawer {
  display: none;
  cursor: pointer;
  position: absolute;
  width: 70px;
  height: 70px;
  left: calc(40px - 11px)
}

.drawer .drawer__border {
  position: absolute;
  left: 11px;
  width: 48px;
  height: 2px;
  background-color: #333;
  transition: top .2s cubic-bezier(0.25, 0.25, 0.75, 0.75), transform .2s cubic-bezier(0.25, 0.25, 0.75, 0.75)
}

.drawer .drawer__border:nth-child(1) {
  transform: translateY(30px)
}

.drawer .drawer__border:nth-child(2) {
  transform: scaleX(0) translateY(34px)
}

.drawer .drawer__border:nth-child(3) {
  transform: translateY(38px)
}

@media(max-width: 767.98px) {
  .drawer {
    display: block
  }
}

@media(hover: hover)and (pointer: fine) {
  .drawer:hover .drawer__border:nth-child(1) {
    transform: translateY(28px)
  }

  .drawer:hover .drawer__border:nth-child(2) {
    transform: scaleX(1) translateY(34px)
  }

  .drawer:hover .drawer__border:nth-child(3) {
    transform: translateY(40px)
  }
}

@media(max-width: 1039.98px) {
  .drawer {
    left: calc(calc(40 / 1040 * (100vw - var(--scrollbar-width))) - 11px);
  }
}

@media(max-width: 767.98px) {
  .drawer {
    height: 70px
  }
}

.menu-open .site-nav {
  transform: translateX(0)
}

.menu-open .site-nav-list__item {
  opacity: 1;
  transform: translateX(0)
}

.menu-open .site-nav-list__item:nth-child(1) {
  transition-delay: 0.08s
}

.menu-open .site-nav-list__item:nth-child(2) {
  transition-delay: 0.16s
}

.menu-open .site-nav-list__item:nth-child(3) {
  transition-delay: 0.24s
}

.menu-open .site-nav-list__item:nth-child(4) {
  transition-delay: 0.32s
}

.menu-open .site-nav-list__item:nth-child(5) {
  transition-delay: 0.4s
}

.menu-open .site-nav-list__item:nth-child(6) {
  transition-delay: 0.48s
}

.menu-open .site-nav-list__item:nth-child(7) {
  transition-delay: 0.56s
}

.menu-open .site-nav-list__item:nth-child(8) {
  transition-delay: 0.64s
}

.menu-open .site-nav-list__item:nth-child(9) {
  transition-delay: 0.72s
}

.menu-open .site-cover {
  top: 0;
  opacity: 1;
  transition: opacity .5s cubic-bezier(0.25, 0.25, 0.75, 0.75), top 0s 0s cubic-bezier(0.25, 0.25, 0.75, 0.75)
}

.menu-open .drawer .drawer__border:nth-child(1) {
  transform: translateY(34px) rotate(30deg)
}

.menu-open .drawer .drawer__border:nth-child(2) {
  transform: scaleX(0) translateY(34px)
}

.menu-open .drawer .drawer__border:nth-child(3) {
  transform: translateY(34px) rotate(-30deg)
}

@media(hover: hover)and (pointer: fine) {
  .menu-open .drawer:hover .drawer__border:nth-child(1) {
    transform: translateY(34px) rotate(-30deg)
  }

  .menu-open .drawer:hover .drawer__border:nth-child(3) {
    transform: translateY(34px) rotate(30deg)
  }
}

.site-footer {
  position: relative;
  z-index: 8000;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* margin-top: 12rem; */
  padding: 64px calc((40 / 1040) * 100%);
  text-align: center;
  background-color: #fff
}

.site-footer a {
  text-decoration: none
}

/* 
@media(max-width: 767.98px) {
  .site-footer {
    margin-top: 8rem
  }
} */

.footer-logo {
  width: 240px;
  line-height: 1
}

.footer-nav {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem
}

.footer-nav__item {
  margin: 1rem 8px 0;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  font-weight: 400;
  font-style: normal;
  letter-spacing: .1rem;
}

.footer-sub-nav {
  margin: 2rem 0 0;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  font-weight: 400;
  font-style: normal;
  letter-spacing: .1rem;
}

.footer-copyright {
  color: rgba(0, 0, 0, .5);
  margin: 4rem 0 0;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  font-weight: 400;
  font-style: normal;
  letter-spacing: .1rem;
}