@charset "UTF-8";
/****************

  LOCAL

****************/
/*!
html5doctor.com Reset Stylesheet v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, menu, nav, section, summary, time, mark, audio, video, a {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

input, textarea {
  box-sizing: border-box;
}

/* added */
img {
  line-height: 0;
  font-size: 0;
  vertical-align: bottom;
}

article, aside, details, figcaption, figure, footer, header, menu, nav, section {
  display: block;
}

ol, ul, li {
  /*added*/
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  outline: none;
  color: inherit;
  text-decoration: none;
  vertical-align: baseline;
  background: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active, a:hover {
  outline-width: 0;
}

a:focus {
  outline: none;
}

ins {
  color: #000;
  text-decoration: none;
  background-color: #ff9;
}

mark {
  color: #000;
  font-weight: bold;
  font-style: italic;
  background-color: #ff9;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

sup {
  line-height: 1;
  font-size: 1.1rem;
  vertical-align: baseline;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

input, select {
  vertical-align: baseline;
}

/*added*/
em, address {
  font-style: normal;
}

input {
  margin: 0px;
}

input[type=submit], input[type=button] {
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=submit]::-webkit-search-decoration, input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]:focus, input[type=button]:focus {
  outline-offset: -2px;
}

button {
  display: inline-block;
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=text], textarea {
  font-family: inherit;
}

input[type=text]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #ccc;
}

input[type=text]::-moz-placeholder, textarea::-moz-placeholder {
  color: #aaa;
}

input[type=text]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #ccc;
}

/*==============================================================

  ■ Common

===============================================================*/
html {
  overflow: auto;
}

body {
  color: var(--Navy-100, #0D2E4E);
  line-height: 1.5;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", "YuGothic", "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-size: 18px;
  font-weight: 500;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section {
  position: relative;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  img {
    width: 100%;
    height: auto;
  }
}
.trans {
  transition: all 300ms 0s ease;
}
@media screen and (min-width: 768px) {
  .trans:hover {
    opacity: 0.5;
  }
}

.btn {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  padding: 18px 18px 22px;
  border-radius: 10px;
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.2);
  color: #fff;
  line-height: 120%;
  font-size: 32.629px;
  letter-spacing: 1.305px;
  font-weight: 700;
  font-style: normal;
  background: #928361;
  transition: all 300ms 0s ease;
  justify-content: center;
  align-items: center;
  gap: 2px;
}
@media screen and (max-width: 767px) {
  .btn {
    max-width: 106.6666666667vw;
    padding: 4.8vw 4.8vw 5.8666666667vw;
    border-radius: 2.6666666667vw;
    box-shadow: 0 0.8vw 1.8666666667vw 0 rgba(0, 0, 0, 0.2);
    font-size: 8.7010666667vw;
    letter-spacing: 0.348vw;
    gap: 0.5333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .btn:hover {
    opacity: 0.5;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
    transform: translateY(4px);
  }
}
.btn small {
  line-height: 1;
  font-size: 18.645px;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .btn small {
    font-size: 4.972vw;
  }
}

/*==============================================================

  ■ header

===============================================================*/
.header {
  width: 100%;
  display: flex;
  height: 52px;
  position: sticky;
  top: 0;
  padding: 8px 16px 13px;
  background: #fff;
  z-index: 999;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
@media screen and (max-width: 767px) {
  .header {
    height: 13.8666666667vw;
    padding: 2.1333333333vw 4.2666666667vw 3.4666666667vw;
  }
}
.header__title {
  width: 108px;
}
@media screen and (max-width: 767px) {
  .header__title {
    width: 28.8vw;
  }
}

/*==============================================================

  ■ footer

===============================================================*/
.footer {
  width: 100%;
  padding: 40px 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 10.6666666667vw 0;
  }
}
.footer__logo {
  display: block;
  width: 198px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 52.8vw;
    margin-bottom: 8vw;
  }
}
.footer__link {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer__link {
    margin-bottom: 2.6666666667vw;
  }
}
.footer__link__item {
  border-right: 1px solid #e2e8f0;
  line-height: 130%;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .footer__link__item {
    font-size: 3.2vw;
  }
}
.footer__link__item:last-child {
  border-right: none;
}
.footer__link__item a {
  display: block;
  padding: 0 8px;
}
@media screen and (max-width: 767px) {
  .footer__link__item a {
    padding: 0 2.1333333333vw;
  }
}
.footer__copyright {
  line-height: 130%;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 3.2vw;
  }
}

/*==============================================================

  ■ pcbg

===============================================================*/
.pcbg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  background-image: url(../img/cont_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .pcbg {
    display: none;
  }
}
.pcbg img {
  width: 100%;
}
.pcbg__left {
  width: 55%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 30px;
}
@media screen and (max-width: 860px) {
  .pcbg__left {
    width: calc(100% - 390px);
  }
}
.pcbg__left .upper {
  display: flex;
  width: 100%;
  height: calc(100% - 65px);
  justify-content: center;
  align-items: center;
}
.pcbg__left .upper a {
  display: block;
  max-width: 400px;
  width: 100%;
}
.pcbg__left .reservation {
  max-width: 400px;
  width: 100%;
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 860px) {
  .pcbg__left .reservation {
    max-width: 320px;
  }
}

/*==============================================================

  ■ maincontent

===============================================================*/
.maincontent {
  width: 375px;
  position: relative;
  margin-left: 55%;
}
@media screen and (min-width: 768px) and (max-width: 860px) {
  .maincontent {
    margin-left: calc(100% - 375px);
  }
}
@media screen and (max-width: 767px) {
  .maincontent {
    width: 100%;
    margin-left: 0;
  }
}
.maincontent img {
  width: 100%;
}

/*==============================================================

  ■ kv

===============================================================*/
.kv__head {
  height: 300px;
  padding-top: 34px;
  background-image: url(../img/kv_bg.jpg);
  background-position: center bottom;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .kv__head {
    height: 80vw;
    padding-top: 9.0666666667vw;
  }
}
.kv__title {
  opacity: 0;
  transform: translateY(20px);
}

/*==============================================================

  ■ invitation

===============================================================*/
.invitation {
  background: #928361;
}
.invitation__cont {
  padding: 24px 0 14px;
  opacity: 0;
  transform: translateY(20px);
}
@media screen and (max-width: 767px) {
  .invitation__cont {
    padding: 6.4vw 0 3.7333333333vw;
  }
}
.invitation__cont__list {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}
@media screen and (max-width: 767px) {
  .invitation__cont__list {
    gap: 3.2vw;
    margin-bottom: 5.8666666667vw;
  }
}
.invitation__cont__item {
  width: 90px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .invitation__cont__item {
    width: 24vw;
    gap: 3.2vw;
  }
}
.invitation__cont__item__img {
  width: 68px;
  margin: 0 auto;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .invitation__cont__item__img {
    width: 18.1333333333vw;
  }
}
.invitation__cont__item__txt {
  align-self: stretch;
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .invitation__cont__item__txt {
    font-size: 3.2vw;
  }
}
.invitation__form__cont {
  padding-bottom: 113px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .invitation__form__cont {
    padding-bottom: 30.1333333333vw;
  }
}
.invitation__form__cont::after {
  content: "";
  display: block;
  width: 100%;
  height: 115px;
  background-image: url(../img/invitation_bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 50% 0;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .invitation__form__cont::after {
    height: 30.6666666667vw;
    background-size: cover;
  }
}
.invitation__form__cont__box {
  width: 343px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 4px 4px 0 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
  padding: 35px 0 5px;
}
@media screen and (max-width: 767px) {
  .invitation__form__cont__box {
    width: 91.4666666667vw;
    border-radius: 1.0666666667vw 1.0666666667vw 0 0;
    filter: drop-shadow(0 0.5333333333vw 1.6vw rgba(0, 0, 0, 0.25));
    padding: 9.3333333333vw 0 1.3333333333vw;
  }
}
.invitation__form__cont__box .invitation__form {
  min-height: 140px;
}
@media screen and (max-width: 767px) {
  .invitation__form__cont__box .invitation__form {
    min-height: 37.3333333333vw;
  }
}
.invitation__form__cont__box > h3 {
  text-align: center;
  margin-bottom: 28px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
@media screen and (max-width: 767px) {
  .invitation__form__cont__box > h3 {
    margin-bottom: 7.4666666667vw;
    font-size: 5.3333333333vw;
  }
}
.invitation__note {
  color: var(--Gold-100, #D5CBB5);
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .invitation__note {
    font-size: 2.6666666667vw;
    margin-top: 2.6666666667vw;
  }
}

/*==============================================================

  ■ features

===============================================================*/
.features {
  background: var(--Gold-5, #F2EDE1);
}
.features__cont {
  padding: 48px 0 48px;
}
@media screen and (max-width: 767px) {
  .features__cont {
    padding: 12.8vw 0 12.8vw;
  }
}
.features__cont__title {
  text-align: center;
  font-feature-settings: "halt" on;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .features__cont__title {
    font-size: 8.5333333333vw;
    margin-bottom: 6.4vw;
  }
}
.features__cont__title small {
  display: block;
  line-height: 1;
  text-align: center;
  font-size: 18px;
  letter-spacing: -0.72px;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .features__cont__title small {
    font-size: 4.8vw;
    letter-spacing: -0.192vw;
    margin-bottom: 3.2vw;
  }
}

.features__cont__list {
  padding: 0 16px;
}
@media screen and (max-width: 767px) {
  .features__cont__list {
    padding: 0 4.2666666667vw;
  }
}

.features__cont__item {
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--White, #FFF);
  padding: 24px 0;
}
@media screen and (max-width: 767px) {
  .features__cont__item {
    margin-bottom: 6.4vw;
    border-radius: 2.1333333333vw;
    padding: 6.4vw 0;
  }
}
.features__cont__item:last-child {
  margin-bottom: 0;
}
.features__cont__item__head {
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .features__cont__item__head {
    margin-bottom: 6.6666666667vw;
  }
}
.features__cont__item__head .num {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 36px;
  background: #928361;
  color: var(--White, #FFF);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .features__cont__item__head .num {
    padding: 2.1333333333vw 6.4vw;
    border-radius: 9.6vw;
    font-size: 3.7333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.features__cont__item__head h4 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
@media screen and (max-width: 767px) {
  .features__cont__item__head h4 {
    font-size: 5.3333333333vw;
  }
}
.features__cont__item__img {
  margin-bottom: 16px;
  padding: 0 16px;
}
@media screen and (max-width: 767px) {
  .features__cont__item__img {
    margin-bottom: 4.2666666667vw;
    padding: 0 4.2666666667vw;
  }
}
.features__cont__item__txt {
  padding: 0 16px;
  text-align: justify;
  font-feature-settings: "halt" on;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.56px;
}
@media screen and (max-width: 767px) {
  .features__cont__item__txt {
    padding: 0 4.2666666667vw;
    font-size: 3.7333333333vw;
    letter-spacing: 0.1493333333vw;
  }
}
.features__cont__item__lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 16px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #928361;
}
@media screen and (max-width: 767px) {
  .features__cont__item__lang {
    gap: 1.0666666667vw;
    padding: 3.2vw 4.2666666667vw 0;
    font-size: 3.7333333333vw;
  }
}
.features__cont__item__lang img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .features__cont__item__lang img {
    width: 4.8vw;
    height: 4.8vw;
  }
}

/*==============================================================

  ■about

===============================================================*/
.about {
  background: var(--White, #FFF);
}
.about__cont {
  padding: 48px 16px;
}
@media screen and (max-width: 767px) {
  .about__cont {
    padding: 12.8vw 4.2666666667vw;
  }
}
.about__cont__title {
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .about__cont__title {
    font-size: 8.5333333333vw;
    margin-bottom: 6.4vw;
  }
}
.about__cont__item h4 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .about__cont__item h4 {
    font-size: 5.3333333333vw;
    margin-bottom: 2.1333333333vw;
  }
}
.about__cont__item p {
  font-feature-settings: "halt" on;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .about__cont__item p {
    font-size: 3.7333333333vw;
  }
}
.about__cont__item p + p {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .about__cont__item p + p {
    margin-top: 2.6666666667vw;
  }
}