html {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media screen and (max-width: 991px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  height: 100%;
  overflow-x: hidden;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #2a2a2a;
  -webkit-font-smoothing: antialiased;
  background-color: #fff;
}
@media screen and (max-width: 991px) {
  body.is-fixed {
    overflow: hidden;
  }
}

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

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

a,
button,
input[type='submit'] {
  text-decoration: none;
  color: #2a2a2a;
  transition: all 0.3s;
  cursor: pointer;
}
a:hover,
button:hover,
input[type='submit']:hover {
  opacity: 0.8;
}

strong {
  font-weight: 700;
}

input,
textarea,
select,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}

input[type='checkbox'],
input[type='radio'] {
  width: auto;
}

input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='number'] {
  -moz-appearance: textfield;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #c9c9c9;
}

button:disabled {
  opacity: 0.8;
  pointer-events: none;
}

.is-pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

.is-sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block !important;
  }
}

/* Swiper */
.swiper {
  visibility: hidden;
}
.swiper.swiper-initialized {
  visibility: visible;
}

/* c-btn */
.c-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 204px;
  height: 49px;
  gap: 0 10px;
  background-color: #2c2c2c;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
}
.c-btn--fixed {
  display: none;
}
@media screen and (max-width: 991px) {
  .c-btn--fixed {
    position: fixed;
    z-index: 50;
    left: 0;
    bottom: 0;
    display: flex;
    width: 100%;
  }
}
.c-btn img {
  width: 23px;
}
.c-btn--lg {
  width: 464px;
  height: 74px;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-btn--lg {
    max-width: 308px;
    width: 100%;
    font-size: 18px;
  }
}

/* c-ttl */
.c-ttl {
  position: relative;
  width: fit-content;
  margin: 0 auto 15px;
  font-family: 'Jost', sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #1b775b;
}
@media screen and (max-width: 767px) {
  .c-ttl {
    margin-bottom: 35px;
    font-size: 38px;
  }
}
.c-ttl__loftree {
  position: absolute;
  top: -1px;
  right: -83px;
  transform: rotate(-13deg);
  font-family: 'Qwitcher Grypen', cursive;
  font-size: 48px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #2a2a2a;
}
@media screen and (max-width: 767px) {
  .c-ttl__loftree {
    top: -9px;
  }
}
.c-ttl--gradient {
  background-image: linear-gradient(150deg, #2ca07b 0%, #60e3b5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-ttl--white {
  color: #fff;
}
.c-ttl--white .c-ttl__loftree {
  color: #fff;
}

/* c-lead */
.c-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-lead {
    font-size: 18px;
  }
}
.c-lead--white {
  color: #fff;
}

/* c-form */
.c-form {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.c-form__group {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0 29px;
}
@media screen and (max-width: 767px) {
  .c-form__group {
    flex-direction: column;
    gap: 12px 0;
  }
}
.c-form__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 18px;
  width: 180px;
  margin-top: 15px;
  color: #342721;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-form__head {
    width: 100%;
    margin-top: 0;
    gap: 0 6px;
  }
}
.c-form__head span {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 22px;
  font-size: 14px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-form__head span {
    display: none;
  }
}
.c-form__head span.required {
  background-color: #b28e4f;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-form__head span.required {
    display: flex;
  }
}
.c-form__body {
  flex: 1;
  width: 100%;
}
.c-form__input,
.c-form__textarea {
  padding: 15px 26px;
  border: 1px solid #b2b2b2;
}
@media screen and (max-width: 767px) {
  .c-form__input,
  .c-form__textarea {
    padding: 10px 10px;
  }
}
@media screen and (max-width: 767px) {
  .c-form__textarea {
    height: 128px;
  }
}
.c-form__checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.c-form__checkbox input[type='checkbox'] {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 12px;
  border: 1px solid #342721;
  border-radius: 3px;
  background-color: #fff;
  cursor: pointer;
}
.c-form__checkbox input[type='checkbox']:checked {
  background-color: #1b775b;
  border-color: #1b775b;
}
.c-form__checkbox input[type='checkbox']:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 6px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.c-form__error {
  margin-top: 8px;
  font-size: 14px;
  color: #db0000;
}
.c-form__privacy {
  margin: 9px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px 0;
  letter-spacing: 0.05em;
  color: #342721;
}
@media screen and (max-width: 767px) {
  .c-form__privacy {
    margin-bottom: 0;
  }
}

/* l-wrapper */
.l-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}

/* l-inner */
.l-inner {
  max-width: 1232px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.l-inner--sm {
  max-width: 955px;
}
.l-inner--lg {
  max-width: 1352px;
}

/* l-header */
.l-header {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  height: 75px;
  z-index: 40;
  transition: all 0.3s;
}
@media screen and (max-width: 1023px) {
  .l-header {
    top: 20px;
  }
}
@media screen and (max-width: 991px) {
  .l-header {
    top: 0;
    height: 49px;
  }
}
.l-header__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.l-header__logo {
  opacity: 0;
  width: 50px;
}
@media screen and (max-width: 991px) {
  .l-header__logo {
    width: 36px;
  }
}
.l-header__logo--home {
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 173px;
  height: 163px;
  background-image: url('../img/bg_logo.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 991px) {
  .l-header__logo--home {
    width: 87px;
    height: 87px;
    background-image: url('../img/bg_logo_sp.png');
  }
}
.l-header__logo--home img {
  width: 102px;
}
@media screen and (max-width: 991px) {
  .l-header__logo--home img {
    width: 52px;
  }
}
.l-header__logo--thanks {
  background: none;
}
@media screen and (max-width: 991px) {
  .l-header__logo.is-active.l-header__logo--home {
    transform: translateY(0) !important;
    background: none;
  }
}
.l-header__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 50px;
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .l-header__nav {
    transform: translateY(-100%);
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #fff;
  }
}
.l-header__nav.is-active {
  transform: translateY(0);
}
.l-header__nav__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 40px;
}
@media screen and (max-width: 991px) {
  .l-header__nav__list {
    flex-direction: column;
    gap: 30px 0;
  }
}
.l-header__nav__item a {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .l-header__nav__item a {
    font-size: 20px;
    color: #1b775b;
  }
}
@media screen and (max-width: 991px) {
  .l-header__nav .c-btn {
    display: none;
  }
}
.l-header__toggle {
  display: none;
  position: relative;
  top: 16px;
  width: 57px;
  height: 49px;
  background-color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .l-header__toggle {
    display: block;
  }
}
.l-header__toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 2px;
  background-color: #2a2a2a;
  transition: all 0.3s;
}
.l-header__toggle span:first-child {
  transform: translate(-50%, -6px);
}
.l-header__toggle span:last-child {
  transform: translate(-50%, 4px);
}
.l-header__toggle.is-active span:first-child {
  transform: translate(-50%, -50%) rotate(15deg);
}
.l-header__toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.l-header__toggle.is-active span:last-child {
  transform: translate(-50%, -50%) rotate(-15deg);
}
.l-header.is-scrolled {
  top: 0;
  background-color: rgba(255, 255, 255, 0.9);
}
.l-header.is-scrolled .l-header__logo {
  opacity: 1;
}
.l-header.is-scrolled .l-header__logo--home {
  transform: translateY(-100%);
}
.l-header.is-scrolled .l-header__nav__item a {
  color: #2a2a2a;
}
@media screen and (max-width: 991px) {
  .l-header.is-scrolled .l-header__nav__item a {
    color: #1b775b;
  }
}
.l-header.is-scrolled .l-header__toggle {
  top: 0;
}

/* l-footer */
.l-footer {
  margin-top: auto;
}
@media screen and (max-width: 991px) {
  .l-footer--reservation {
    padding-bottom: 49px;
  }
}
.l-footer__note {
  padding-top: 30px;
  padding-bottom: 44px;
  font-size: 13px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .l-footer__note {
    padding-bottom: 32px;
  }
}
.l-footer__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px 0;
  }
}
.l-footer__copyright {
  font-size: 12px;
  color: #000;
  letter-spacing: 0.05em;
}
.l-footer__nav__list {
  display: flex;
  flex-direction: row;
  gap: 0 40px;
}
.l-footer__nav__item a {
  font-size: 12px;
  color: #000;
}

/* p-head */
.p-head {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
.p-head .c-ttl {
  position: relative;
  margin: 26px 0 0;
}
.p-head .c-ttl:before {
  content: '';
  position: absolute;
  top: -34px;
  left: 0;
  width: 75px;
  height: 3px;
  background-color: #1b775b;
}
@media screen and (max-width: 767px) {
  .p-head .c-ttl:before {
    width: 130px;
  }
}
.p-head__lead {
  display: flex;
  flex-direction: column;
  gap: 6px 0;
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-head__lead {
    font-size: 18px;
  }
}
.p-head__lead span {
  width: fit-content;
  padding: 0 8px;
  background-image: linear-gradient(to right, #1b775b 0%, #42b695 100%);
}
@media screen and (max-width: 767px) {
  .p-head__lead span {
    padding: 0 5px;
  }
}
.p-head__txt {
  font-size: 14px;
  line-height: 1.85;
}

/* p-mv */
.p-mv {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding-bottom: 56px;
  background-image: url('../img/bg_mv.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-mv {
    padding-bottom: 45.6vw;
    background-image: url('../img/bg_mv_sp.jpg');
  }
}
.p-mv img {
  width: 100%;
}
.p-mv__inner {
  position: relative;
  width: 93.8194444444vw;
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    width: 100%;
  }
}
.p-mv__img img {
  object-fit: cover;
}
.p-mv__ttl {
  position: absolute;
  top: 6.875vw;
  left: 10.1388888889vw;
  display: flex;
  flex-direction: column;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-mv__ttl {
    top: 10.9333333333vw;
    left: 28.2666666667vw;
  }
}
.p-mv__ttl__ja {
  position: relative;
  font-family: 'Noto Serif JP', serif;
  font-size: 3.3333333333vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-shadow: 0 4px 5px rgba(0, 0, 0, 0.21);
}
@media screen and (max-width: 767px) {
  .p-mv__ttl__ja {
    font-size: 5.6vw;
    line-height: 1.5;
  }
}
.p-mv__ttl__ja:after {
  content: '';
  position: absolute;
  top: 57%;
  right: -9.7916666667vw;
  transform: translateY(-50%);
  width: 8.4027777778vw;
  height: 0.1388888889vw;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-mv__ttl__ja:after {
    top: 20.2666666667vw;
    right: 21.3333333333vw;
    transform: none;
    width: 16.5333333333vw;
    height: 0.2666666667vw;
  }
}
.p-mv__ttl__ja span {
  font-size: 4.1666666667vw;
}
@media screen and (max-width: 767px) {
  .p-mv__ttl__ja span {
    font-size: 8.5333333333vw;
  }
}
.p-mv__ttl__en {
  position: relative;
  top: 0.6944444444vw;
  left: 3.6111111111vw;
  width: fit-content;
  font-family: 'Qwitcher Grypen', cursive;
  font-size: 4.5138888889vw;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-mv__ttl__en {
    top: 1.6vw;
    left: 5.3333333333vw;
    font-size: 10.4vw;
  }
}
.p-mv__box {
  position: absolute;
  left: -2.8472222222vw;
  bottom: 2.9861111111vw;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-mv__box {
    top: 108.5333333333vw;
    left: 5.6vw;
    bottom: auto;
    flex-direction: column;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 4.2666666667vw 0;
  }
}
.p-mv__feature {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 0.9722222222vw;
  margin-right: 2.1527777778vw;
}
@media screen and (max-width: 767px) {
  .p-mv__feature {
    padding-left: 2.6666666667vw;
    gap: 0 1.6vw;
  }
}
.p-mv__feature__item {
  width: 14.375vw;
}
@media screen and (max-width: 767px) {
  .p-mv__feature__item {
    width: 41.8666666667vw;
  }
}
.p-mv__copy {
  position: relative;
  top: 1.3888888889vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-mv__copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.8666666667vw 0;
    width: 100%;
  }
}
.p-mv__copy__item .ttl {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6666666667vw;
  font-weight: 600;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-mv__copy__item .ttl {
    font-size: 5.8666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__copy__item .ttl span {
    margin-right: 4.5333333333vw;
    font-size: 3.7333333333vw;
    font-weight: 600;
    letter-spacing: 0.07em;
  }
}
.p-mv__copy__item .txt {
  font-size: 0.9027777778vw;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-mv__copy__item .txt {
    font-size: 3.4666666667vw;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__copy__item:first-child {
    padding-left: 2.1333333333vw;
  }
}
.p-mv__copy__item:not(:first-child) .txt {
  padding-left: 1.25vw;
}
@media screen and (max-width: 767px) {
  .p-mv__copy__item:not(:first-child) .txt {
    padding-left: 0;
    padding-right: 6.4vw;
  }
}
.p-mv__copy__birth {
  position: relative;
  top: -1.3888888889vw;
  margin-left: 1.5277777778vw;
  font-family: 'Noto Serif JP', serif;
  font-size: 9.6527777778vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  text-shadow: 0 4px 5px rgba(0, 0, 0, 0.21);
}
@media screen and (max-width: 767px) {
  .p-mv__copy__birth {
    position: absolute;
    top: auto;
    bottom: 1.8666666667vw;
    right: -2.6666666667vw;
    margin-left: 0;
    font-size: 19.2vw;
  }
}
.p-mv__scroll {
  position: absolute;
  top: 26.4583333333vw;
  left: 1.3888888889vw;
  transform: rotate(90deg);
  font-family: 'Jost', sans-serif;
  font-size: 0.8333333333vw;
  font-weight: 500;
  color: #1b775b;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
  .p-mv__scroll {
    top: 170.6666666667vw;
    left: -2.6666666667vw;
    font-size: 3.2vw;
  }
}
.p-mv__scroll:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 0.625vw;
  width: 2.7083333333vw;
  height: 0.0694444444vw;
  background-color: #1b775b;
}
@media screen and (max-width: 767px) {
  .p-mv__scroll:after {
    margin-left: 2.4vw;
    width: 10.4vw;
    height: 0.2666666667vw;
  }
}

/* p-design */
.p-design {
  position: relative;
  padding: 153px 0 390px;
}
@media screen and (max-width: 1239px) {
  .p-design {
    padding-bottom: 320px;
  }
}
@media screen and (max-width: 767px) {
  .p-design {
    padding: 68px 0 26.6666666667vw;
  }
}
.p-design:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: min(20.9722222222vw, 302px);
  background-image: url('../img/bg_design.svg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-design:before {
    background-image: url('../img/bg_design_sp.svg');
    height: 309px;
  }
}
.p-design__inner {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-design__inner {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .p-design .p-head {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-design .p-head .c-ttl {
    font-size: 48px;
  }
}
.p-design .p-head .c-ttl::before {
  left: -30px;
}
@media screen and (max-width: 767px) {
  .p-design .p-head .c-ttl::before {
    left: -20px;
  }
}
.p-design .p-head .c-ttl__loftree {
  top: 9px;
  right: -65px;
}
.p-design .p-head__lead span {
  padding-right: 0;
}
.p-design__img01 {
  position: absolute;
  top: 153px;
  right: 0;
  display: flex;
  flex-direction: row;
  gap: 0 8px;
}
@media screen and (max-width: 1023px) {
  .p-design__img01 {
    position: relative;
    top: auto;
    right: auto;
    justify-content: center;
    margin-top: 34px;
  }
}
@media screen and (max-width: 767px) {
  .p-design__img01 {
    gap: 0 0.8vw;
    justify-content: flex-start;
    margin: 7px -20px 0;
  }
}
.p-design__img01 img {
  width: 100%;
}
.p-design__img01__01 {
  width: min(15vw, 216px);
}
@media screen and (max-width: 767px) {
  .p-design__img01__01 {
    width: 23.7333333333vw;
  }
}
.p-design__img01__02 {
  width: min(15vw, 216px);
}
@media screen and (max-width: 767px) {
  .p-design__img01__02 {
    width: 23.7333333333vw;
  }
}
.p-design__img01__03 {
  width: min(31.6666666667vw, 456px);
}
@media screen and (max-width: 767px) {
  .p-design__img01__03 {
    flex: 1;
    width: 37.0666666667vw;
  }
}
.p-design__img02 {
  position: absolute;
  bottom: 151px;
  right: 120px;
  display: flex;
  flex-direction: row;
  gap: 0 41px;
}
@media screen and (max-width: 767px) {
  .p-design__img02 {
    position: relative;
    right: auto;
    bottom: auto;
    flex-direction: column;
    gap: 5.3333333333vw;
    padding: 0 20px;
  }
}
.p-design__img02 img {
  width: 100%;
}
.p-design__img02__box {
  display: flex;
  flex-direction: row;
  gap: 0 10px;
}
@media screen and (max-width: 767px) {
  .p-design__img02__box {
    gap: 0 5.0666666667vw;
  }
}
.p-design__img02__01 {
  position: relative;
  width: min(10.3472222222vw, 149px);
  top: 97px;
}
@media screen and (max-width: 767px) {
  .p-design__img02__01 {
    top: 21.8666666667vw;
    width: 25.0666666667vw;
    margin-left: 8.8vw;
  }
}
.p-design__img02__02 {
  width: min(10.4166666667vw, 150px);
}
@media screen and (max-width: 767px) {
  .p-design__img02__02 {
    width: 33.8666666667vw;
  }
}
.p-design__img02__03 {
  position: relative;
  top: 74px;
  width: min(21.9444444444vw, 316px);
}
@media screen and (max-width: 767px) {
  .p-design__img02__03 {
    width: 38.9333333333vw;
  }
}
.p-design__img02__04 {
  width: min(21.9444444444vw, 316px);
}
@media screen and (max-width: 767px) {
  .p-design__img02__04 {
    width: 46.9333333333vw;
  }
}
.p-design__note {
  position: absolute;
  bottom: 11px;
  right: 15px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-design__note {
    bottom: 6px;
    right: 11px;
    font-size: 12px;
  }
}

/* p-plan */
.p-plan {
  padding: 120px 0 106px;
}
@media screen and (max-width: 767px) {
  .p-plan {
    padding: 80px 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-plan .c-ttl__loftree {
    top: 14px;
    right: -37px;
  }
}
.p-plan__tab {
  margin-top: 40px;
}
.p-plan__tab__content {
  padding: 20px;
  background-image: url('../img/bg_plan.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-plan__tab__content {
    padding: 14px 10px 40px;
  }
}
.p-plan__tab__box:not(:first-child) {
  display: none;
}
.p-plan__tab__box .inner {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.p-plan__tab__menu {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  height: 71px;
}
@media screen and (max-width: 767px) {
  .p-plan__tab__menu {
    height: 45px;
  }
}
.p-plan__tab__menu .item {
  position: relative;
  width: 172px;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 1px solid #c4c4c4;
  background-color: #ececec;
  border-left: none;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-plan__tab__menu .item {
    width: 14%;
  }
}
.p-plan__tab__menu .item:first-child {
  border-left: 1px solid #c4c4c4;
}
.p-plan__tab__menu .item:after {
  opacity: 0;
  content: '';
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background-image: linear-gradient(180deg, #339db4 0%, #5fd2aa 100%);
  transition: all 0.3s;
}
.p-plan__tab__menu .item a {
  position: relative;
  z-index: 1;
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  color: #797979;
  letter-spacing: 0.05em;
  text-align: center;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-plan__tab__menu .item a {
    font-size: 13px;
  }
}
.p-plan__tab__menu .item a:hover {
  opacity: 1;
}
.p-plan__tab__menu .item a strong {
  margin-right: 7px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-plan__tab__menu .item a strong {
    font-size: 20px;
    margin-right: 2px;
  }
}
/*.p-plan__tab__menu .item:hover,*/
.p-plan__tab__menu .item.is-active {
  position: relative;
  border-right: none;
  background-image: linear-gradient(150deg, #339db4 0%, #5fd2aa 100%);
  height: 111px;
}
@media screen and (max-width: 767px) {
  .p-plan__tab__menu .item:hover,
  .p-plan__tab__menu .item.is-active {
    width: 18%;
    height: 59px;
  }
}
.p-plan__tab__menu .item:hover:after,
.p-plan__tab__menu .item.is-active:after {
  opacity: 1;
}
/*.p-plan__tab__menu .item:hover a,*/
.p-plan__tab__menu .item.is-active a {
  color: #fff;
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .p-plan__tab__menu .item:hover a,
  .p-plan__tab__menu .item.is-active a {
    font-size: 18px;
  }
}
/*.p-plan__tab__menu .item:hover a strong,*/
.p-plan__tab__menu .item.is-active a strong {
  font-size: 64px;
}
@media screen and (max-width: 767px) {
  /*.p-plan__tab__menu .item:hover a strong, */
  .p-plan__tab__menu .item.is-active a strong {
    font-size: 34px;
  }
}
.p-plan__tab__plan {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 18px 88px;
  padding: 22px 22px 17px;
  background-color: #fff;
}
@media screen and (max-width: 991px) {
  .p-plan__tab__plan {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-plan__tab__plan {
    padding: 20px;
  }
}
.p-plan__tab__plan .img {
  max-width: 560px;
  width: 51%;
}
@media screen and (max-width: 767px) {
  .p-plan__tab__plan .img {
    width: 100%;
  }
}
.p-plan__tab__plan .info {
  display: flex;
  flex-direction: column;
  gap: 25px 0;
  width: 350px;
}
@media screen and (max-width: 767px) {
  .p-plan__tab__plan .info {
    width: 100%;
  }
}
.p-plan__tab__plan .info__ttl {
  width: fit-content;
  font-family: 'Jost', sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 3px solid #1b775b;
}
.p-plan__tab__plan .info__feature {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 7px;
}
.p-plan__tab__plan .info__feature__item {
  padding: 0 15px;
  background-color: #1b775b;
  border-radius: 2px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 2.18;
}
@media screen and (max-width: 767px) {
  .p-plan__tab__plan .info__feature__item {
    font-size: 14px;
  }
}
.p-plan__tab__plan .info__area {
  display: flex;
  flex-direction: column;
  gap: 6px 0;
  padding: 19px 35px;
  background-color: #f4f5f1;
  border: 1px solid #bcbeb5;
}
@media screen and (max-width: 767px) {
  .p-plan__tab__plan .info__area {
    padding: 10px 20px;
  }
}
.p-plan__tab__plan .info__area__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 20px;
}
@media screen and (max-width: 767px) {
  .p-plan__tab__plan .info__area__item {
    font-size: 14px;
  }
}
.p-plan__tab__plan .info__area__item .ttl {
  font-weight: 700;
  color: #b28e4f;
  letter-spacing: 0.03em;
}
.p-plan__tab__plan .info__price {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 18px;
}
@media screen and (max-width: 767px) {
  .p-plan__tab__plan .info__price {
    gap: 0 8px;
  }
}
.p-plan__tab__plan .info__price__label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 33px;
  background-color: #b28e4f;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-plan__tab__plan .info__price__label {
    min-width: 73px;
    height: 27px;
    font-size: 14px;
  }
}
@media screen and (max-width: 360px) {
  .p-plan__tab__plan .info__price__label {
    min-width: 60px;
    height: 22px;
    font-size: 12px;
  }
}

.p-plan__tab__plan .info__price__price {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1b775b;
  white-space: nowrap;
  margin-right: -8px;
}
@media screen and (max-width: 767px) {
  .p-plan__tab__plan .info__price__price {
    font-size: 18px;
  }
}
.p-plan__tab__plan .info__price__price .price {
  display: inline-block;
  font-size: 48px;
  font-style: italic;
  margin-right: 7px;
}
@media screen and (max-width: 767px) {
  .p-plan__tab__plan .info__price__price .price {
    font-size: 44px;
  }
}
@media screen and (max-width: 360px) {
  .p-plan__tab__plan .info__price__price .price {
    font-size: 36px;
  }
}
.p-plan__tab__plan .info__price__price .tax {
  font-size: 13px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-plan__tab__plan .info__price__price .tax {
    letter-spacing: -0.03em;
  }
}
@media screen and (max-width: 640px) {
  .p-plan__tab__plan .info__price__price .tax {
    font-size: 10px;
  }
}
.p-plan__tab__point {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px 86px;
  padding: 25px;
  background-color: #fff;
}
@media screen and (max-width: 991px) {
  .p-plan__tab__point {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-plan__tab__point {
    padding: 20px;
  }
}
.p-plan__tab__point .img {
  max-width: 354px;
  width: 100%;
}
.p-plan__tab__point .list {
  display: flex;
  flex-direction: column;
  gap: 14px 0;
  width: 514px;
}
@media screen and (max-width: 767px) {
  .p-plan__tab__point .list {
    width: 100%;
  }
}
.p-plan__tab__point .list__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 13px;
}
.p-plan__tab__point .list__item__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-image: url('../img/label_point.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  color: #1b775b;
  line-height: 1;
}
.p-plan__tab__point .list__item__label .point {
  font-size: 10px;
  letter-spacing: 0.04em;
}
.p-plan__tab__point .list__item__label .num {
  font-size: 20px;
  letter-spacing: -0.03em;
}
.p-plan__tab__point .list__item__txt {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.p-plan__tab__gallery {
  padding: 20px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .p-plan__tab__gallery {
    padding: 40px 20px;
  }
}
.p-plan__tab__gallery img {
  width: 100%;
}
.p-plan__tab__gallery {
  position: relative;
}
.p-plan__tab__gallery .box {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-plan__tab__gallery .box {
    margin-bottom: 10px;
  }
}
.p-plan__tab__gallery .thumbs {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-plan__tab__gallery .thumbs {
    display: block;
  }
}
.p-plan__tab__gallery .thumbs .swiper-slide {
  cursor: pointer;
}
/*.p-plan__tab__gallery .thumbs .swiper-slide:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 119, 91, 0.7);
  transition: all 0.3s;
}*/
.p-plan__tab__gallery .thumbs .swiper-slide:before {
  position: absolute;
  display: block;
  content: '';
  right: 5px;
  bottom: 5px;
  width: 24px;
  height: 24px;
  background: center / contain url('../img/ico-view.svg') no-repeat;
}
.p-plan__tab__gallery .thumbs .swiper-slide.swiper-slide-active::before,
.p-plan__tab__gallery .thumbs .swiper-slide:hover::before {
  background-color: transparent;
}

.p-plan__tab__gallery .swiper-button-prev,
.p-plan__tab__gallery .swiper-button-next {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background-color: #e7eee8;
}

.p-plan__tab__gallery .swiper-button-prev svg,
.p-plan__tab__gallery .swiper-button-next svg {
  display: none;
}
.p-plan__tab__gallery .swiper-button-prev:before,
.p-plan__tab__gallery .swiper-button-next:before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #80a398;
  border-width: 5px 0px 5px 5px;
}

@media screen and (max-width: 479px) {
  .p-plan__tab__gallery .swiper-button-prev,
  .p-plan__tab__gallery .swiper-button-next {
    width: 20px;
    height: 20px;
  }
}

.p-plan__tab__gallery .swiper-button-prev {
  transform: rotate(-180deg);
}

.p-plan__tab__gallery .swiper-button-prev:before {
  left: 52%;
}

.p-plan__tab__gallery .swiper-button-next:before {
  left: 54%;
}

.p-plan__tab__gallery .swiper-button-prev svg,
.p-plan__tab__gallery .swiper-button-next svg {
  display: none;
}

.p-plan__tab__gallery .swiper-button-prev:before,
.p-plan__tab__gallery .swiper-button-next:before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #80a398;
  border-width: 5px 0px 5px 5px;
}

@media screen and (max-width: 479px) {
  .p-plan__tab__gallery .swiper-button-prev:before,
  .p-plan__tab__gallery .swiper-button-next:before {
    border-width: 3px 0px 3px 3px;
  }
}

.p-plan__tab__gallery .note {
  max-width: 1060px;
  width: 100%;
  margin: 14px auto 0;
  font-size: 14px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-plan__tab__gallery .note {
    font-size: 12px;
  }
}

.main-swiper__arrows {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1095px;
  width: 100%;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .main-swiper__arrows {
    display: none;
  }
}

.thumbs-swiper__arrows {
  display: none;
}

@media screen and (max-width: 767px) {
  .thumbs-swiper__arrows {
    display: block;
    position: absolute;
    top: 76vw;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1;
  }
}

@media screen and (max-width: 479px) {
  .thumbs-swiper__arrows {
    top: 76.5vw;
    width: 98%;
  }
}

/* p-location */
.p-location {
  padding: 82px 0 60px;
  background-image: linear-gradient(150deg, #80a398 55%, #588476 100%);
  border-radius: 150px 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-location {
    padding: 94px 0 82px;
    border-radius: 40px 0 0 0;
  }
}
.p-location__head {
  padding-left: 45px;
}
@media screen and (max-width: 767px) {
  .p-location__head {
    padding-left: 0;
  }
}
.p-location .c-ttl {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .p-location .c-ttl {
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-location .c-ttl__loftree {
    top: 26px;
    right: 0px;
  }
}
.p-location .c-lead {
  text-align: left;
}
.p-location__box {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 20px 26px;
  margin-top: 40px;
  padding: 24px;
  background-color: #fff;
}
@media screen and (max-width: 1164px) {
  .p-location__box {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .p-location__box {
    gap: 16px 0;
    margin-top: 30px;
    padding: 40px 20px;
  }
}
.p-location__map {
  position: relative;
  width: 392px;
  aspect-ratio: 392/396;
}
@media screen and (max-width: 1164px) {
  .p-location__map {
    width: 100%;
    aspect-ratio: 311/186;
  }
}
.p-location__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-location__info {
  flex: 1;
}
.p-location__info__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 23px;
  margin-bottom: 86px;
}
@media screen and (max-width: 819px) {
  .p-location__info__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-location__info__list {
    margin-bottom: 0;
  }
}
.p-location__info__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 20px;
  width: 360px;
}
@media screen and (max-width: 767px) {
  .p-location__info__item {
    gap: 0 10px;
    width: 100%;
  }
}
.p-location__info__item .time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 9999px;
  background-image: linear-gradient(150deg, #339db4 0%, #5fd2aa 100%);
  line-height: 1;
  letter-spacing: 0.03em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-location__info__item .time {
    width: 70px;
    height: 70px;
  }
}
.p-location__info__item .time__method {
  padding: 0 7px 7px;
  border-bottom: 1px solid #fff;
  font-size: 14px;
}
.p-location__info__item .time__txt {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-location__info__item .time__txt {
    font-size: 16px;
  }
}
.p-location__info__item .time__txt strong {
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .p-location__info__item .time__txt strong {
    font-size: 24px;
  }
}
.p-location__info__item .place {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px 0;
}
.p-location__info__item .place__ttl {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 13px;
}
@media screen and (max-width: 767px) {
  .p-location__info__item .place__ttl {
    gap: 0 10px;
  }
}
.p-location__info__item .place__ttl__txt {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-location__info__item .place__ttl__txt {
    font-size: 18px;
  }
}
.p-location__info__item .place__ttl__txt small {
  font-size: 14px;
  letter-spacing: 0.07em;
}
.p-location__info__item .place__txt {
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.05em;
}
.p-location__info__address {
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.05em;
}

/* p-highlights */
.p-highlights {
  padding: 123px 0 100px;
  background-image: url('../img/bg_highlights.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 1440px) {
  .p-highlights {
    background-size: 1440px 405px;
  }
}
@media screen and (max-width: 767px) {
  .p-highlights {
    padding: 80px 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-highlights .c-ttl__loftree {
    top: 13px;
    right: -53px;
  }
}
.p-highlights__box {
  margin-top: 40px;
  padding-top: 45px;
  background-color: #fff;
  border-radius: 100px 100px 0 0;
}
@media screen and (max-width: 991px) {
  .p-highlights__box {
    border-radius: 40px 40px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-highlights__box {
    padding: 60px 0 30px;
  }
}
.p-highlights__list {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
@media screen and (max-width: 767px) {
  .p-highlights__list {
    gap: 40px 0;
  }
}
.p-highlights__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 80px;
}
@media screen and (max-width: 991px) {
  .p-highlights__item {
    gap: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-highlights__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px 0;
  }
}
.p-highlights__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-highlights__item:nth-child(even) {
    flex-direction: column;
  }
}
.p-highlights__item__img {
  max-width: 428px;
  width: 47%;
}
@media screen and (max-width: 767px) {
  .p-highlights__item__img {
    max-width: none;
    width: 100%;
    margin: 0 auto;
  }
}
.p-highlights__item__head {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 26px 0;
}
@media screen and (max-width: 767px) {
  .p-highlights__item__head {
    gap: 10px 0;
  }
}
.p-highlights__item__head .ttl {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 5px;
}
@media screen and (max-width: 767px) {
  .p-highlights__item__head .ttl {
    gap: 0;
  }
}
.p-highlights__item__head .ttl__num {
  font-family: 'Jost', sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  background-image: linear-gradient(150deg, #339db4 0%, #5fd2aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-highlights__item__head .ttl__slash {
  display: block;
  transform: rotate(-67deg);
  width: 47px;
  height: 2px;
  background-color: #2aa07d;
}
.p-highlights__item__head .ttl__txt {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.33;
}
@media screen and (max-width: 767px) {
  .p-highlights__item__head .ttl__txt {
    font-size: 20px;
  }
}
.p-highlights__item__head .txt {
  font-size: 14px;
  line-height: 1.85;
}

/* p-series */
.p-series {
  position: relative;
  margin-bottom: 53px;
  padding: 60px 0 48px;
}
@media screen and (max-width: 767px) {
  .p-series {
    height: auto;
    padding: 98px 0 80px;
  }
}
.p-series:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 91%;
  height: 100%;
  background-color: #f2f3f2;
  border-radius: 0 50px 50px 0;
}
@media screen and (max-width: 1389px) {
  .p-series:before {
    width: 98%;
  }
}
@media screen and (max-width: 1209px) {
  .p-series:before {
    width: 100%;
  }
}
.p-series__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 22px 40px;
}
@media screen and (max-width: 991px) {
  .p-series__inner {
    flex-direction: column;
  }
}
.p-series__head {
  width: 649px;
}
@media screen and (max-width: 991px) {
  .p-series__head {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-series__head .c-ttl {
    font-size: 48px;
  }
}
@media screen and (max-width: 767px) {
  .p-series__head .c-ttl::before {
    left: -20px;
  }
}
@media screen and (max-width: 767px) {
  .p-series__head .c-ttl__loftree {
    top: -2px;
  }
}
.p-series__head .p-head__lead span {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-series__head .p-head__lead span:nth-child(3) {
    padding: 0 10px;
  }
}
.p-series__head .p-head__lead span:last-child {
  padding-left: 10px;
}
.p-series__copy {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-series__copy {
    font-size: 19px;
  }
}
.p-series__copy img {
  position: relative;
  top: 12px;
  display: inline-block;
  margin: 0 7px;
}
@media screen and (max-width: 767px) {
  .p-series__copy img {
    top: 9px;
    width: 86px;
    margin-left: 0;
  }
}
.p-series__img {
  position: relative;
  width: 461px;
}
@media screen and (max-width: 991px) {
  .p-series__img {
    margin: 0 auto;
  }
}

/* p-quality */
.p-quality {
  padding: 149px 0 60px;
  background-image: linear-gradient(150deg, #339db4 0%, #5fd2aa 100%);
  background-image: url('../img/bg_quality.svg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (max-width: 1239px) {
  .p-quality {
    mask-size: contain;
  }
}
@media screen and (max-width: 767px) {
  .p-quality {
    padding: 68px 0 53px;
    background-image: url('../img/bg_quality_sp.svg');
  }
}
.p-quality__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
@media screen and (max-width: 991px) {
  .p-quality__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-quality__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-quality__item {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  padding: 18px 20px 40px;
  background-color: #f2f3f2;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .p-quality__item {
    padding-bottom: 20px;
  }
}
.p-quality__item__img {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 15px;
}
.p-quality__item__ttl {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
.p-quality__item__txt {
  font-size: 14px;
  line-height: 1.85;
}

/* p-feature */
.p-feature {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 520px;
  margin: 80px 0;
  background-image: url('../img/bg_feature.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-feature {
    height: auto;
    margin: 50px 0;
    padding: 68px 0;
    background-image: url('../img/bg_feature_sp.jpg');
  }
}
.p-feature__inner {
  max-width: 998px;
}
@media screen and (max-width: 767px) {
  .p-feature__inner {
    padding: 0;
  }
}
.p-feature__ttl {
  position: relative;
  width: fit-content;
  margin: 0 auto -38px;
  padding: 16px 22px;
  background-color: #f2f3f2;
  font-family: 'Noto Serif JP', serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-feature__ttl {
    width: calc(100% - 40px);
    padding: 8px 10px;
    font-size: 20px;
    line-height: 1.5;
  }
}
.p-feature__ttl span {
  color: #b28e4f;
}
@media screen and (max-width: 991px) {
  .p-feature__ttl span {
    display: block;
  }
}
.p-feature__box {
  background-color: rgba(0, 0, 0, 0.48);
  padding: 65px 114px 17px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-feature__box {
    padding: 53px 20px 20px;
    text-align: left;
  }
}
.p-feature__commit {
  margin-bottom: 21px;
  padding-bottom: 11px;
  border-bottom: 3px solid #fff7ae;
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .p-feature__commit {
    font-size: 16px;
    padding-bottom: 19px;
  }
}
.p-feature__txt {
  font-size: 14px;
  line-height: 1.85;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}

/* p-reservation */
.p-reservation {
  padding: 80px 0;
  background-color: #e7eee8;
}
@media screen and (max-width: 767px) {
  .p-reservation {
    padding: 60px 0;
  }
}
.p-reservation__form {
  margin-top: 40px;
  padding: 43px 53px 63px;
  background-color: #fff;
  border: 1px solid #342721;
}
@media screen and (max-width: 767px) {
  .p-reservation__form {
    margin-top: 35px;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.p-reservation__form .c-btn {
  margin: 0 auto;
}

/* p-thanks */
.p-thanks {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  padding-top: 242px;
}
@media screen and (max-width: 767px) {
  .p-thanks {
    padding-top: 202px;
  }
}
.p-thanks__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px 0;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-thanks__inner {
    align-items: flex-start;
  }
}
.p-thanks__txt {
  font-size: 14px;
  line-height: 1.85;
}
.p-thanks .c-btn {
  width: 250px;
  height: 50px;
} /*# sourceMappingURL=style.css.map */
