@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique&display=swap");
/*------------------------------------------------------------------------------
  reset PC
------------------------------------------------------------------------------*/
html {
  color: #000;
  word-break: normal;
  line-break: strict;
  height: 100%;
  margin: 0 auto;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  height: 100%;
  margin: 0 auto;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  display: block;
  width: 100%;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

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

figure {
  margin: 0;
  padding: 0;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: rgba(34, 34, 34, 0.4);
}

:-ms-input-placeholder {
  color: rgba(34, 34, 34, 0.4);
}

::-ms-input-placeholder {
  color: rgba(34, 34, 34, 0.4);
}

::placeholder {
  color: rgba(34, 34, 34, 0.4);
}

button {
  border: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  table-layout: auto;
  border-spacing: 0;
}

th, td {
  border: none;
  padding: 0;
  margin: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
  overflow: hidden;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

address {
  font-style: normal;
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }

  a[href^="tel:"] {
    pointer-events: none;
  }
}
.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }

  input[type=submit] {
    -webkit-text-size-adjust: 100%;
  }

  input,
select,
textarea {
    font-size: 16px;
  }

  .pc {
    display: none !important;
  }
}
/*------------------------------------------------------------------------------
  base
------------------------------------------------------------------------------*/
html {
  font-size: 10px;
}
@media only screen and (min-width: 768px) {
  html {
    font-size: 0.8474576271vw;
  }
}
@media (min-width: 1180px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  color: #534B3E;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 1.8;
  position: relative;
}

/* 表示領域外へはスクロールさせない */
.no_scroll {
  overflow: hidden;
}

/* ------------------------------------------------
l-header
--------------------------------------------------- */
/* ------------------------------------------------
下層ページヘッダー
--------------------------------------------------- */
.l-header--lower {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 777;
}

/* ------------------------------------------------
トップページヘッダー
--------------------------------------------------- */
.l-header--top.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 777;
}

/* ------------------------------------------------
p-footer
--------------------------------------------------- */
/* --------------------------------
l-inner
----------------------------------- */
.l-inner {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .l-inner {
    padding: 0 24px;
  }
}
.l-inner-narrow {
  max-width: 700px;
}

/* -----------------------------------------------
* layout エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-hamburger
----------------------------------- */
.c-hamburger {
  display: none;
}
@media (max-width: 999px) {
  .c-hamburger {
    width: 58px;
    height: inherit;
    margin-left: auto;
    position: relative;
    display: block;
    z-index: 888;
  }
}

.c-hamburger span {
  position: absolute;
  display: block;
  height: 2px;
  width: 26px;
  background-color: #534B3E;
  border-radius: 0.3rem;
  transition: 0.6s;
  opacity: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-hamburger:hover {
  cursor: pointer;
}

.c-hamburger span:nth-child(1) {
  top: 36%;
}

.c-hamburger span:nth-child(3) {
  top: 64%;
}

/* --------------------------------
c-drawer-hamburger
----------------------------------- */
.c-drawer-hamburger {
  position: absolute;
  top: 46px;
  right: 40px;
}

.c-drawer-hamburger span {
  position: absolute;
  display: block;
  width: 37px;
  height: 5px;
  background-color: #fff;
  transition: ease 0.3s;
  opacity: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-drawer-hamburger:hover {
  cursor: pointer;
}

.c-drawer-hamburger span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
  width: 37px;
  height: 5px;
  border-radius: 0;
}

.c-drawer-hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
  width: 37px;
  height: 5px;
  border-radius: 0;
}

/* ------------------------------------------------
c-btn
--------------------------------------------------- */
.c-btn {
  width: 100%;
  height: 100%;
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  color: #fff;
  background-color: #EA7D3E;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.c-btn--orange {
  background-color: #338751;
}

.c-btn--blue {
  background-color: #475D9B;
}

.c-btn--border {
  background-color: #fff;
  color: #338751;
  border: 1px solid #338751;
}

.c-btn--arrow-right span {
  padding-right: 2.8rem;
  position: relative;
}

.c-btn--arrow-right span::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  background-color: #fff;
  mask-image: url(../img/common/arrow_right.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100%;
}

.c-btn:hover {
  background-color: #338751;
}

.c-btn--border:hover {
  background-color: #338751;
  color: #fff;
}

.c-btn--orange:hover {
  background-color: #EA7D3E;
}

.c-btn--blue:hover {
  background-color: #338751;
}

/* ------------------------------------------------
c-page-title
--------------------------------------------------- */
.c-page-title {
  font-size: 4.2rem;
  font-size: max(4.2rem, 28px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .c-page-title {
    font-size: 3rem;
  }
}

.c-page-title--course {
  font-size: 5rem;
  font-size: max(5rem, 34px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .c-page-title--course {
    font-size: 3.6rem;
    line-height: 1.5;
  }
}

.c-page-title--green {
  color: #338751;
}

/* ------------------------------------------------
c-top-sec-title
--------------------------------------------------- */
.c-top-sec-title span {
  display: block;
}

.c-top-sec-title span:nth-child(1) {
  font-family: "EB Garamond", serif;
  font-size: 1.4rem;
  font-size: max(1.4rem, 12px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #338751;
}

.c-top-sec-title span:nth-child(2) {
  margin-top: 0.5rem;
  font-size: 3.2rem;
  font-size: max(3.2rem, 22px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .c-top-sec-title span:nth-child(2) {
    font-size: 2.8rem;
  }
}

/* ------------------------------------------------
c-green-title
--------------------------------------------------- */
.c-green-title {
  font-size: 4.2rem;
  font-size: max(4.2rem, 28px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #338751;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-green-title {
    font-size: 3rem;
  }
}

/* ------------------------------------------------
c-instagram
--------------------------------------------------- */
.c-instagram #sb_instagram {
  height: auto !important;
}
.c-instagram #sb_instagram #sbi_images {
  padding: 0;
  gap: 3.2rem;
}
@media only screen and (max-width: 767px) {
  .c-instagram #sb_instagram #sbi_images {
    gap: 1.6rem;
  }
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* ------------------------------------------------
p-header
--------------------------------------------------- */
.p-header {
  background-color: #FFFDF0;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 2.4rem;
}
@media only screen and (max-width: 999px) {
  .p-header {
    height: 58px;
  }
}

.p-header__logo {
  width: 17.8rem;
  height: inherit;
  padding-top: 0.3rem;
}
@media only screen and (max-width: 999px) {
  .p-header__logo {
    width: 120px;
    padding-top: 3px;
  }
}

.p-header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.p-header__right {
  height: inherit;
  display: flex;
  align-items: center;
}

/* ------------------------------------------------
p-header-nav
--------------------------------------------------- */
.p-header-nav {
  display: flex;
  align-items: center;
  height: inherit;
  column-gap: 1.6rem;
}

.p-header-nav__lists {
  display: flex;
  align-items: center;
  height: inherit;
}

.p-header-nav__list {
  height: inherit;
}

.p-header-nav__list a {
  height: inherit;
  display: grid;
  place-content: center;
  padding-inline: min(1.25vw, 16px);
  font-size: max(min(1.40625vw, 18px), 12px);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.p-header-nav__search {
  width: 15.4rem;
  height: inherit;
}
@media only screen and (max-width: 999px) {
  .p-header-nav__search {
    width: 106px;
  }
}

.p-header-nav__search button {
  width: 100%;
  height: inherit;
  display: grid;
  place-content: center;
  background-color: #EA7D3E;
  color: #fff;
  transition: background-color 0.3s;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-header-nav__search button {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-nav__search button {
    font-size: 1.6rem;
    font-size: max(1.6rem, 14px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .p-header-nav__search button {
    font-size: 1.4rem;
  }
}

.p-header-nav__list a:hover {
  color: #338751;
}

.p-header-nav__search button:hover {
  background-color: #338751;
}

.p-header-nav__list--pulldown {
  position: relative;
}

.p-header-nav__sub-lists {
  display: none;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  transform: translateY(10rem);
  display: flex;
  flex-direction: column;
  width: 21rem;
  background-color: #FFFDF0;
}

.p-header-nav__sub-list a {
  display: flex;
  justify-content: flex-start;
  text-align: left;
  font-size: max(min(1.25vw, 16px), 12px);
  padding: 1.2rem 0.8rem 1.2rem 2.4rem;
}

/* --------------------------------
p-drawer
----------------------------------- */
.p-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  color: #fff;
  padding-inline: 2.5rem;
  overflow-y: scroll;
  padding-bottom: 6rem;
  z-index: 888;
  background-color: #338751;
  display: none;
}

.p-drawer.is-open {
  display: block;
}

/* --------------------------------
p-drawer-nav
----------------------------------- */
.p-drawer-nav__lists {
  margin-top: 8.4rem;
}

.p-drawer-nav__list:not(:first-child) {
  margin-top: 0.8rem;
}

.p-drawer-nav__list a {
  font-size: 1.6rem;
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  display: block;
  padding-block: 0.9rem;
  text-align: center;
  text-align: left;
  text-transform: uppercase;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-drawer-nav__list a {
    font-size: 1.4rem;
  }
}

/* --------------------------------
p-drawer-info
----------------------------------- */
.p-drawer-info {
  margin-top: 4rem;
}

.p-drawer-info__logo {
  width: 18.8rem;
  padding: 1rem;
}

.p-drawer-info__content {
  margin-top: 1.4rem;
}

.p-drawer-info__address {
  font-size: 1.6rem;
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .p-drawer-info__address {
    font-size: 1.4rem;
  }
}

.p-drawer-info__tel {
  margin-top: 1.4rem;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0;
}

.p-drawer-info__tel a {
  font-size: 2rem;
  font-size: max(2rem, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .p-drawer-info__tel a {
    font-size: 1.8rem;
  }
}

/* ------------------------------------------------
p-fv
--------------------------------------------------- */
/* ------------------------------------------------
p-top-fv トップページ
--------------------------------------------------- */
.p-top-fv {
  display: flex;
  width: 100%;
  background-color: #338751;
  position: relative;
  overflow: hidden;
}

.p-top-fv__deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 22.77%;
  mix-blend-mode: color-burn;
}

.p-top-fv__catch-wrap {
  writing-mode: vertical-rl;
  width: 22.2222%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1.6rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-top-fv__catch-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 14.6rem;
  }
}

.p-top-fv__catch {
  font-size: 2.9166666667vw;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .p-top-fv__catch {
    font-size: 2.6rem;
    line-height: 1.2;
  }
}

.p-top-fv__img {
  flex: 1;
  border-radius: 0 12.8rem 0 0;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-top-fv__img {
    width: 100%;
    height: 54.5rem;
    position: relative;
  }
}

@media only screen and (max-width: 767px) {
  .p-top-fv__img::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
  }
}

.p-top-fv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60.5% center;
}

.p-top-fv__logo-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
}
@media only screen and (max-width: 767px) {
  .p-top-fv__logo-wrap {
    padding-top: 27rem;
  }
}

.p-top-fv__logo {
  width: 24.3055555556vw;
}
@media only screen and (max-width: 767px) {
  .p-top-fv__logo {
    width: 19.6rem;
  }
}

/* ------------------------------------------------
p-top-fixed トップページ用タブ
--------------------------------------------------- */
.p-top-fixed {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .p-top-fixed {
    width: 100%;
  }
}

.p-top-fixed__items {
  display: flex;
  column-gap: 0.8rem;
}

.p-top-fixed__item {
  height: 5.2rem;
  padding-inline: 2.4rem;
  min-width: 20.7rem;
  background-color: #475D9B;
  border-radius: 1.6rem 1.6rem 0 0;
  font-size: 2rem;
  font-size: max(2rem, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .p-top-fixed__item {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-fixed__item {
    height: 4.4rem;
    font-size: 1.6rem;
    font-size: max(1.6rem, 14px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0;
    min-width: initial;
    padding-inline: 0;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .p-top-fixed__item {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-top-fixed__item:nth-child(1) {
    width: 35.422%;
    padding-left: 0.3rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-top-fixed__item:nth-child(2) {
    width: 64.5776%;
    padding-left: 1rem;
  }
}

.p-top-fixed__item span {
  font-size: 1.6rem;
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .p-top-fixed__item span {
    font-size: 1.4rem;
  }
}

/* ------------------------------------------------
p-fv p-fv--lower 下層ページ
--------------------------------------------------- */
.p-fv {
  width: 100%;
  position: relative;
}

.p-fv__img {
  width: 100%;
  aspect-ratio: 1440/460;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-fv__img {
    height: 20rem;
  }
}
@media only screen and (min-width: 1440px) {
  .p-fv__img {
    height: 46rem;
  }
}
.p-fv__img:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

.p-fv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-fv__title-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
}

/* ------------------------------------------------
p-footer
--------------------------------------------------- */
.p-footer {
  background-color: #2E2E2E;
  color: #fff;
  padding-block: 7.4rem 1.3rem;
}
@media only screen and (max-width: 767px) {
  .p-footer {
    padding-block: 7.5rem 2rem;
  }
}

.p-footer__inner {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
}
@media only screen and (max-width: 767px) {
  .p-footer__inner {
    padding-inline: 3.3rem;
  }
}

.p-footer__row {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .p-footer__row {
    flex-direction: column;
  }
}

@media only screen and (max-width: 767px) {
  .p-footer__nav {
    margin-top: 5rem;
  }
}

.p-footer__foot {
  margin-top: 8rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-footer__foot {
    margin-top: 6.5rem;
  }
}

.p-footer__foot small {
  display: inline-block;
  font-family: "EB Garamond", serif;
  font-size: 1.4rem;
  font-size: max(1.4rem, 12px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

/* ------------------------------------------------
p-footer-info
--------------------------------------------------- */
.p-footer-info__logo {
  width: 18.8rem;
  padding: 1rem;
}

.p-footer-info__content {
  margin-top: 1.2rem;
}

.p-footer-info__address {
  font-size: 1.6rem;
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .p-footer-info__address {
    font-size: 1.4rem;
  }
}

.p-footer-info__tel {
  margin-top: 0.8rem;
  font-size: 1.6rem;
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .p-footer-info__tel {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-info__tel {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

.p-footer-info__tel a {
  font-size: 2rem;
  font-size: max(2rem, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .p-footer-info__tel a {
    font-size: 1.8rem;
  }
}

/* ------------------------------------------------
p-footer-nav
--------------------------------------------------- */
.p-footer-nav__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-auto-flow: column;
  column-gap: 9rem;
  row-gap: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .p-footer-nav__lists {
    column-gap: 2.9rem;
  }
}

.p-footer-nav__list a {
  font-size: 1.6rem;
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .p-footer-nav__list a {
    font-size: 1.4rem;
  }
}

/* ------------------------------------------------
p-banner
--------------------------------------------------- */
.p-banner__items {
  transition-timing-function: linear;
}

.p-banner__item {
  margin-inline: 1.6rem;
}

/* ------------------------------------------------
p-page
--------------------------------------------------- */
.p-page {
  margin-top: 10rem;
  background-image: url(../img/common/img_bg-repeat.jpg);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100%;
  padding-bottom: 24rem;
}
@media only screen and (max-width: 999px) {
  .p-page {
    margin-top: 58px;
  }
}
@media only screen and (max-width: 767px) {
  .p-page {
    padding-bottom: 9.6rem;
  }
}

.p-page-head {
  text-align: center;
  padding-block: 12.8rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-page-head {
    padding-block: 9.6rem;
  }
}

.p-page-head__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  mix-blend-mode: multiply;
}
@media only screen and (max-width: 767px) {
  .p-page-head__bg {
    width: 200%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.p-page-head__inner {
  position: relative;
  z-index: 3;
}

.p-page-head__page-title {
  text-align: center;
}

.p-page__contents {
  border-top: 0.1rem solid #534b3e;
  padding-top: 7.2rem;
}
@media only screen and (max-width: 767px) {
  .p-page__contents {
    padding-top: 3.6rem;
  }
}

.p-page__contents h2 {
  font-size: 3.2rem;
  font-size: max(3.2rem, 22px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-block: 4.8rem 1.6rem;
}
@media only screen and (max-width: 767px) {
  .p-page__contents h2 {
    font-size: 2.8rem;
  }
}
.p-page__contents figure {
  margin-block: 4.8rem;
}
.p-page__contents h3 {
  font-size: 2.7rem;
  font-size: max(2.7rem, 20px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-block: 4.8rem 1.6rem;
  border-bottom: 1px solid #534B3E;
}
.p-page__contents h4 {
  font-size: 2.4rem;
  font-size: max(2.4rem, 18px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
  margin-block: 4.8rem 1.6rem;
}
.p-page__contents p {
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-block: 0.8rem;
}
@media only screen and (max-width: 767px) {
  .p-page__contents p {
    font-size: 1.6rem;
  }
}
.p-page__contents p + p {
  margin-block: 3.6rem 0.8rem;
}
.p-page__contents ul {
  margin-block: 1.6rem;
  padding-left: 4.8rem;
  list-style: disc;
}
@media only screen and (max-width: 767px) {
  .p-page__contents ul {
    padding-left: 2.4rem;
  }
}
.p-page__contents ol {
  margin-block: 1.6rem;
  padding-left: 4.8rem;
  list-style: decimal;
}
@media only screen and (max-width: 767px) {
  .p-page__contents ol {
    padding-left: 2.4rem;
  }
}
.p-page__contents li {
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-block: 0.4rem;
}
@media only screen and (max-width: 767px) {
  .p-page__contents li {
    font-size: 1.6rem;
  }
}
.p-page__contents a {
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #338751;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
@media only screen and (max-width: 767px) {
  .p-page__contents a {
    font-size: 1.6rem;
  }
}

/* ------------------------------------------------
p-archive
--------------------------------------------------- */
.p-archive {
  margin-top: 10rem;
  background-image: url(../img/common/img_bg-repeat.jpg);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100%;
  padding-bottom: 24rem;
}
@media only screen and (max-width: 999px) {
  .p-archive {
    margin-top: 58px;
  }
}
@media only screen and (max-width: 767px) {
  .p-archive {
    padding-bottom: 9.6rem;
  }
}

.p-archive-head {
  text-align: center;
  padding-block: 12.8rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-archive-head {
    padding-block: 9.6rem;
  }
}

.p-archive-head__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  mix-blend-mode: multiply;
}
@media only screen and (max-width: 767px) {
  .p-archive-head__bg {
    width: 200%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.p-archive-head__inner {
  position: relative;
  z-index: 3;
}

.p-archive-head__page-title {
  text-align: center;
}

.p-archive__article {
  border-bottom: 0.1rem solid #ccc;
  margin-bottom: 3rem;
}
.p-archive__article:last-child {
  border-bottom: none;
}

.p-archive__contents {
  border-top: 0.1rem solid #534b3e;
  padding-top: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .p-archive__contents {
    padding-top: 1.6rem;
  }
}

.p-archive__title h1 {
  font-size: 3.2rem;
  font-size: max(3.2rem, 22px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-archive__title h1 {
    font-size: 2.8rem;
  }
}
.p-archive__title h1 a {
  color: #338751;
  border-bottom: 1px solid #338751;
}

.p-archive__postmeta_date {
  font-size: 1.6rem;
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .p-archive__postmeta_date {
    font-size: 1.4rem;
  }
}

.p-archive__excerpt h2 {
  font-size: 3.2rem;
  font-size: max(3.2rem, 22px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-block: 4.8rem 1.6rem;
}
@media only screen and (max-width: 767px) {
  .p-archive__excerpt h2 {
    font-size: 2.8rem;
  }
}
.p-archive__excerpt figure {
  margin-block: 4.8rem;
}
.p-archive__excerpt h3 {
  font-size: 2.7rem;
  font-size: max(2.7rem, 20px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-block: 4.8rem 1.6rem;
  border-bottom: 1px solid #534B3E;
}
.p-archive__excerpt h4 {
  font-size: 2.4rem;
  font-size: max(2.4rem, 18px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
  margin-block: 4.8rem 1.6rem;
}
.p-archive__excerpt p {
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-block: 0.8rem;
}
@media only screen and (max-width: 767px) {
  .p-archive__excerpt p {
    font-size: 1.6rem;
  }
}
.p-archive__excerpt p + p {
  margin-block: 3.6rem 0.8rem;
}
.p-archive__excerpt ul {
  margin-block: 1.6rem;
  padding-left: 4.8rem;
  list-style: disc;
}
@media only screen and (max-width: 767px) {
  .p-archive__excerpt ul {
    padding-left: 2.4rem;
  }
}
.p-archive__excerpt ol {
  margin-block: 1.6rem;
  padding-left: 4.8rem;
  list-style: decimal;
}
@media only screen and (max-width: 767px) {
  .p-archive__excerpt ol {
    padding-left: 2.4rem;
  }
}
.p-archive__excerpt li {
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-block: 0.4rem;
}
@media only screen and (max-width: 767px) {
  .p-archive__excerpt li {
    font-size: 1.6rem;
  }
}
.p-archive__excerpt a {
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #338751;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
@media only screen and (max-width: 767px) {
  .p-archive__excerpt a {
    font-size: 1.6rem;
  }
}

/* ------------------------------------------------
p-top
--------------------------------------------------- */
.p-top__wrapper {
  background-image: url(../img/common/img_bg-repeat.jpg);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100%;
  padding-block: 23.5rem 21.6rem;
}
@media only screen and (max-width: 767px) {
  .p-top__wrapper {
    padding-block: 12.5rem 12.9rem;
  }
}

.p-top__banner {
  margin-top: 12.4rem;
}
@media only screen and (max-width: 767px) {
  .p-top__banner {
    margin-top: 7rem;
  }
}

/* ------------------------------------------------
p-intro
--------------------------------------------------- */
.p-intro {
  background-image: url(../img/common/img_bg-repeat.jpg);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100%;
  padding-block: 23.5rem 24.4rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-intro {
    padding-block: 7.2rem 15.9rem;
  }
}

.p-intro__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  mix-blend-mode: multiply;
}

.p-intro__head {
  position: relative;
  height: 35.5555555556vw;
}
@media only screen and (max-width: 767px) {
  .p-intro__head {
    height: auto;
  }
}

.p-intro__img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 49%;
}
@media only screen and (max-width: 767px) {
  .p-intro__img {
    margin-top: 1.9rem;
    position: static;
    width: 100%;
    transform: translateY(0);
  }
}

.p-intro__content {
  padding-top: 2rem;
  width: 54.4rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-intro__content {
    width: 100%;
  }
}

.p-intro__deco {
  position: absolute;
  top: -0.3rem;
  left: -9.5rem;
  width: 34.2rem;
  mix-blend-mode: multiply;
}
@media only screen and (max-width: 767px) {
  .p-intro__deco {
    left: -5.5rem;
  }
}

.p-intro__title {
  font-size: 4.2rem;
  font-size: max(4.2rem, 28px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-intro__title {
    font-size: 3rem;
  }
}

.p-intro__text {
  margin-top: 3.2rem;
  font-size: 2rem;
  font-size: max(2rem, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .p-intro__text {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-intro__text {
    text-align: justify;
  }
}

.p-intro__body {
  position: relative;
  margin-top: 24rem;
}
@media only screen and (max-width: 767px) {
  .p-intro__body {
    margin-top: 8rem;
  }
}

.p-intro__row {
  margin-top: 16rem;
  display: flex;
  column-gap: 14%;
}
@media only screen and (max-width: 767px) {
  .p-intro__row {
    flex-direction: column;
    row-gap: 13.4rem;
  }
}

.p-intro__movie {
  position: relative;
  height: 60vw;
}
.p-intro__movie .youtube_container {
  position: relative;
  height: 100%;
  background: #000;
  overflow: hidden;
}
.p-intro__movie .youtube_container:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.p-intro__movie .youtube_container iframe {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 60vw;
}

/* ------------------------------------------------
p-intro-item
--------------------------------------------------- */
.p-intro-item__img {
  border-radius: 0.8rem;
  overflow: hidden;
}

.p-intro-item__content {
  padding-top: 2.4rem;
}

.p-intro-item__btn {
  margin-top: 3rem;
  width: 24rem;
  height: 6rem;
}
@media only screen and (max-width: 767px) {
  .p-intro-item__btn {
    margin-top: 1.6rem;
  }
}

.p-intro-item__text {
  margin-top: 2.4rem;
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-intro-item__text {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-intro-item__text {
    text-align: justify;
  }
}

.p-intro-item--cuisine .p-intro-item__content {
  display: flex;
  column-gap: 24.2rem;
}
@media only screen and (max-width: 767px) {
  .p-intro-item--cuisine .p-intro-item__content {
    flex-direction: column;
  }
}

.p-intro-item--cuisine.p-intro-item__btn {
  margin-top: 1.6rem;
}

.p-intro-item--cuisine .p-intro-item__text {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .p-intro-item--cuisine .p-intro-item__text {
    margin-top: 1.8rem;
  }
}

.p-intro-item--cuisine .p-intro-item__img {
  border-radius: 1.6rem;
}

/* ------------------------------------------------
p-message
--------------------------------------------------- */
.p-message {
  padding-block: 18rem 19.5rem;
  position: relative;
  background-color: #FFFDF0;
}
@media only screen and (max-width: 767px) {
  .p-message {
    display: flex;
    flex-direction: column;
    padding-block: 12.7rem 13.6rem;
    overflow: hidden;
  }
}

@media only screen and (max-width: 767px) {
  .p-message__inner {
    order: 2;
  }
}

.p-message__content {
  width: 64rem;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .p-message__content {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .p-message__title {
    margin-top: 9.6rem;
  }
}

.p-message__text {
  margin-top: 2.4rem;
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-message__text {
    font-size: 1.6rem;
  }
}

.p-message__img-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 40.8%;
  padding-inline: 3rem 4.2rem;
}
@media only screen and (max-width: 767px) {
  .p-message__img-wrap {
    position: static;
    width: 100%;
    transform: translateY(0);
    padding-inline: 2.4rem;
    order: 1;
  }
}

.p-message__img {
  position: relative;
  z-index: 3;
  width: 89.84375%;
  aspect-ratio: 460/460;
  margin-left: auto;
}
@media only screen and (min-width: 1440px) {
  .p-message__img {
    width: 46rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-message__img {
    width: 32.7rem;
    margin-inline: auto;
  }
}

.p-message__deco {
  position: absolute;
  top: 57%;
  right: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .p-message__deco {
    top: 60%;
    right: initial;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40.4rem;
  }
}

.p-message__btn-wrap {
  margin-top: 6rem;
  display: flex;
  column-gap: 4.8rem;
}
@media only screen and (max-width: 767px) {
  .p-message__btn-wrap {
    flex-direction: column;
    align-items: center;
    row-gap: 2.4rem;
  }
}

.p-message__btn {
  width: 24rem;
  height: 6rem;
}

/* ------------------------------------------------
p-banner
--------------------------------------------------- */
.p-banner {
  padding: 3rem 0;
}
.p-banner__title {
  text-align: center;
}
.p-banner__list {
  display: flex;
  justify-content: center;
  padding: 3rem 0;
}
.p-banner__list > * {
  margin-right: 1rem;
}

/* ------------------------------------------------
p-news
--------------------------------------------------- */
.p-news_wrapper {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .p-news_wrapper {
    display: block;
  }
}

.p-news {
  padding-bottom: 12rem;
  width: calc(50% - 1rem);
}
@media only screen and (max-width: 767px) {
  .p-news {
    padding-bottom: 7rem;
    width: 100%;
  }
}

.p-news__inner {
  background: #fff;
  padding: 1.6rem;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .p-news__inner {
    height: auto;
  }
}

.p-news__title {
  text-align: center;
}

.p-news__contents {
  margin-top: 4.6rem;
}

.p-news__list_article {
  display: flex;
  align-items: center;
}

.p-news__list_postmeta {
  font-size: 1.6rem;
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  margin-right: 3rem;
  width: 12rem;
}
@media only screen and (max-width: 767px) {
  .p-news__list_postmeta {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-news__list_postmeta {
    margin-right: 1rem;
    width: 11rem;
  }
}

.p-news__list_title {
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  width: calc(100% - 1rem - 12rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 767px) {
  .p-news__list_title {
    font-size: 1.6rem;
  }
}
.p-news__list_title a {
  color: #338751;
  border-bottom: 1px solid #338751;
}

.p-news__linkMore {
  font-size: 1.6rem;
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  text-align: right;
  margin-top: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .p-news__linkMore {
    font-size: 1.4rem;
  }
}

/* ------------------------------------------------
p-gallery
--------------------------------------------------- */
.p-gallery {
  padding-bottom: 12rem;
}
@media only screen and (max-width: 767px) {
  .p-gallery {
    padding-bottom: 7rem;
  }
}

.p-gallery__title {
  text-align: center;
}

.p-gallery__contents {
  margin-top: 9.6rem;
}

.p-gallery__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 3.2rem;
}
@media only screen and (max-width: 767px) {
  .p-gallery__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }
}

#float_banner {
  position: fixed;
  bottom: 5%;
  left: 5%;
  z-index: 10;
  animation-name: UpDown;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}
@media only screen and (max-width: 767px) {
  #float_banner {
    max-width: 60%;
  }
}

@keyframes UpDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(20px);
  }
}
/* ------------------------------------------------
p-cuisine
--------------------------------------------------- */
.p-cuisine {
  margin-top: 10rem;
}
@media only screen and (max-width: 999px) {
  .p-cuisine {
    margin-top: 58px;
  }
}

.p-cuisine__container {
  background-image: url(../img/common/img_bg-repeat.jpg);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100%;
  padding-bottom: 24rem;
}
@media only screen and (max-width: 767px) {
  .p-cuisine__container {
    padding-bottom: 12.8rem;
  }
}

/* ------------------------------------------------
p-commitment
--------------------------------------------------- */
.p-commitment__item-wrapper {
  position: relative;
}

/* ------------------------------------------------
p-commitment-item
--------------------------------------------------- */
.p-commitment-item {
  padding-block: 14rem 4.6rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-commitment-item {
    padding-block: 9.6rem 2.4rem;
    display: flex;
    flex-direction: column;
  }
}

@media only screen and (max-width: 767px) {
  .p-commitment-item__inner {
    display: contents;
  }
}

.p-commitment-item__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  mix-blend-mode: multiply;
}
@media only screen and (max-width: 767px) {
  .p-commitment-item__bg {
    bottom: initial;
    top: 0;
    height: 108rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-commitment-item__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
}

.p-commitment-item__img--yoko {
  position: absolute;
  z-index: 3;
  bottom: 43.5rem;
  right: 0;
  width: 44.4444444444vw;
  height: 44.5rem;
  border-radius: 12.8rem 0 0 0;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-commitment-item__img--yoko {
    margin-top: 3.2rem;
    position: static;
    width: auto;
    height: auto;
    aspect-ratio: 355/244;
    order: 2;
  }
}

.p-commitment-item__img--yoko img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-commitment-item__row {
  display: flex;
  align-items: flex-end;
  column-gap: 3.2rem;
}
@media only screen and (max-width: 767px) {
  .p-commitment-item__row {
    display: contents;
  }
}

.p-commitment-item__content {
  position: relative;
  width: 44.8rem;
}
@media only screen and (max-width: 767px) {
  .p-commitment-item__content {
    width: 100%;
    order: 1;
    padding-inline: 2.4rem;
  }
}

.p-commitment-item__deco {
  position: absolute;
  top: -5rem;
  left: -4.1rem;
  width: 23.4rem;
  mix-blend-mode: multiply;
}

.p-commitment-item__text {
  margin-top: 6.4rem;
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-commitment-item__text {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-commitment-item__text {
    margin-top: 2.4rem;
  }
}

.p-commitment-item__img-box {
  flex: 1;
  position: relative;
  z-index: 5;
  padding-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .p-commitment-item__img-box {
    order: 3;
    margin-top: 1.6rem;
  }
}

.p-commitment-item__illust {
  position: absolute;
}

.p-commitment-item__img--tate {
  width: 35.2rem;
  border-radius: 0.8rem;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-commitment-item__img--tate {
    width: 100%;
  }
}

.p-commitment-item__title-wrap span {
  font-size: 2.4rem;
  font-size: max(2.4rem, 18px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
  color: #338751;
  position: relative;
  padding-right: 6.8rem;
}

.p-commitment-item__title-wrap span::after {
  position: absolute;
  content: attr(data-text);
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
}

.p-commitment-item__title-wrap span::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 5.3rem;
  height: 4.9rem;
  background-image: url(../img/common/icon_hana.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}

.p-commitment-item__title {
  margin-top: 3.6rem;
  font-size: 3.2rem;
  font-size: max(3.2rem, 22px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-commitment-item__title {
    font-size: 2.8rem;
  }
}

.p-commitment-item {
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-commitment-item {
    font-size: 1.6rem;
  }
}

/* こだわり1つめ -----------------------------------*/
.p-commitment-item--01 .p-commitment-item__illust {
  top: 11.6rem;
  left: 20.8695652174vw;
  width: 34.4927536232vw;
}
@media only screen and (min-width: 1380px) {
  .p-commitment-item--01 .p-commitment-item__illust {
    left: 28.8rem;
    width: 47.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-commitment-item--01 .p-commitment-item__illust {
    width: 54.4vw;
    top: initial;
    bottom: 2rem;
    left: 48.5333333333vw;
  }
}
.p-commitment-item--01 .p-commitment-item__img-box {
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  .p-commitment-item--01 .p-commitment-item__img-box {
    width: 58.9333333333vw;
  }
}

/* こだわり2つめ -----------------------------------*/
.p-commitment-item--02 {
  padding-bottom: 12.9rem;
}
@media only screen and (max-width: 767px) {
  .p-commitment-item--02 {
    padding-bottom: 0;
  }
}
.p-commitment-item--02 .p-commitment-item__row {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .p-commitment-item--02 .p-commitment-item__content {
    padding-bottom: 0;
  }
}
.p-commitment-item--02 .p-commitment-item__img--yoko {
  bottom: 50rem;
  left: 0;
  right: auto;
  border-radius: 0 12.8rem 0 0;
}
@media only screen and (max-width: 767px) {
  .p-commitment-item--02 .p-commitment-item__img-box {
    margin-left: auto;
    width: 46.9333333333vw;
    margin-top: -3.4rem;
  }
}
.p-commitment-item--02 .p-commitment-item__img--tate {
  margin-left: auto;
}
.p-commitment-item--02 .p-commitment-item__illust {
  position: absolute;
  top: 4.8rem;
  right: 23.768115942vw;
  width: 30.652173913vw;
}
@media only screen and (min-width: 1380px) {
  .p-commitment-item--02 .p-commitment-item__illust {
    right: 32.8rem;
    width: 42.3rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-commitment-item--02 .p-commitment-item__illust {
    top: 0;
    right: 46.1333333333vw;
    width: 57.6vw;
  }
}
.p-commitment-item--02 .p-commitment-item__brand {
  margin-top: 6.4rem;
  font-size: 2rem;
  font-size: max(2rem, 16px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .p-commitment-item--02 .p-commitment-item__brand {
    margin-top: 2.4rem;
  }
}
.p-commitment-item--02 .p-commitment-item__text {
  margin-top: 2.4rem;
}
.p-commitment-item--02 .p-commitment-item__btn {
  margin-top: 3.2rem;
  width: 30rem;
  height: 7rem;
  position: relative;
  z-index: 5;
}

/* こだわり3つめ -----------------------------------*/
.p-commitment-item--03 {
  padding-block: 12.9rem 0;
}
@media only screen and (max-width: 767px) {
  .p-commitment-item--03 {
    padding-top: 7.2rem;
  }
}
.p-commitment-item--03 .p-commitment-item__content {
  padding-bottom: 12rem;
}
@media only screen and (max-width: 767px) {
  .p-commitment-item--03 .p-commitment-item__content {
    padding-bottom: 0;
  }
}
.p-commitment-item--03 .p-commitment-item__img-box {
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .p-commitment-item--03 .p-commitment-item__img-box {
    width: 58.9333333333vw;
  }
}
.p-commitment-item--03 .p-commitment-item__title {
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .p-commitment-item--03 .p-commitment-item__title {
    white-space: normal;
  }
}
.p-commitment-item--03 .p-commitment-item__illust {
  width: 21.0144927536vw;
  bottom: initial;
  top: -4rem;
  left: 34.0579710145vw;
}
@media only screen and (min-width: 1380px) {
  .p-commitment-item--03 .p-commitment-item__illust {
    left: 47rem;
    width: 29rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-commitment-item--03 .p-commitment-item__illust {
    width: 47.2vw;
    top: -7rem;
    left: 49.0666666667vw;
  }
}
.p-commitment-item--03 .p-commitment-item__img--yoko {
  bottom: 40.4rem;
}

@media only screen and (max-width: 767px) {
  .p-commitment__item-wrapper .p-commitment-item__bg {
    position: absolute;
    bottom: 82.6666666667vw;
    top: initial;
  }
}

/* ------------------------------------------------
p-cuisine-banner
--------------------------------------------------- */
.p-cuisine-banner {
  padding-top: 24rem;
}
@media only screen and (max-width: 767px) {
  .p-cuisine-banner {
    padding-top: 9.6rem;
  }
}

.p-cuisine-banner__body {
  margin-top: 12.8rem;
}
@media only screen and (max-width: 767px) {
  .p-cuisine-banner__body {
    margin-top: 6.4rem;
  }
}

/* ------------------------------------------------
p-cuisine-kitchen
--------------------------------------------------- */
.p-cuisine-kitchen {
  padding-top: 16rem;
}
@media only screen and (max-width: 767px) {
  .p-cuisine-kitchen {
    padding-top: 9.6rem;
  }
}

.p-cuisine-kitchen__body {
  margin-top: 12.8rem;
}
@media only screen and (max-width: 767px) {
  .p-cuisine-kitchen__body {
    margin-top: 6.4rem;
  }
}

.p-cuisine-kitchen__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 3.2rem;
}
@media only screen and (max-width: 767px) {
  .p-cuisine-kitchen__items {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ------------------------------------------------
p-kitchen-card
--------------------------------------------------- */
.p-kitchen-card {
  background-color: #fff;
  border: 0.1rem solid #338751;
  padding: 3.2rem 2.7rem;
}
@media only screen and (max-width: 767px) {
  .p-kitchen-card {
    padding: 3.2rem 1.6rem 3.2rem 2.4rem;
  }
}

.p-kitchen-card__body {
  padding-top: 1.6rem;
}

@media only screen and (max-width: 767px) {
  .p-kitchen-card__img {
    padding-right: 0.8rem;
  }
}

.p-kitchen-card__title {
  font-size: 2.4rem;
  font-size: max(2.4rem, 18px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
}

.p-kitchen-card__text {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .p-kitchen-card__text {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-kitchen-card__text {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

.p-cuisine-kitchen__btn {
  margin-top: 9.2rem;
  width: 30rem;
  height: 7rem;
  margin-inline: auto;
}

/* ------------------------------------------------
p-course
--------------------------------------------------- */
.p-course {
  margin-top: 10rem;
  background-image: url(../img/common/img_bg-repeat.jpg);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100%;
  padding-block: 6.4rem 24rem;
}
@media only screen and (max-width: 999px) {
  .p-course {
    margin-top: 58px;
    padding-block: 9.6rem;
  }
}

.p-course__column {
  margin-top: 24rem;
  padding-bottom: 12.8rem;
}
@media only screen and (max-width: 767px) {
  .p-course__column {
    margin-top: 9.6rem;
    padding-bottom: 9.6rem;
  }
}

.p-course__option {
  margin-top: 12.8rem;
  padding-bottom: 12.8rem;
}
@media only screen and (max-width: 767px) {
  .p-course__option {
    margin-top: 10.2rem;
    padding-bottom: 9.6rem;
  }
}

/* ------------------------------------------------
p-course-head
--------------------------------------------------- */
.p-course-head__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-course-head__term {
  font-size: 2rem;
  font-size: max(2rem, 16px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #338751;
  padding-bottom: 0.8rem;
  border-bottom: 0.1rem solid #338751;
  display: inline-block;
}

.p-course-head__page-title {
  margin-top: 0.8rem;
  text-align: center;
}

.p-course-head__sub-title {
  margin-top: 24rem;
  font-size: 3.2rem;
  font-size: max(3.2rem, 22px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
  padding-bottom: 2.3rem;
  border-bottom: 1px solid #534B3E;
}
@media only screen and (max-width: 767px) {
  .p-course-head__sub-title {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-course-head__sub-title {
    margin-top: 9.6rem;
    padding-bottom: 1.6rem;
  }
}

.p-course__type {
  padding-top: 12.8rem;
}
@media only screen and (max-width: 767px) {
  .p-course__type {
    padding-top: 0;
  }
}

/* ------------------------------------------------
p-kani-gallery
--------------------------------------------------- */
.p-kani-gallery {
  margin-top: 12.8rem;
}
@media only screen and (max-width: 767px) {
  .p-kani-gallery {
    margin-top: 10rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-kani-gallery__main {
    width: 100%;
    aspect-ratio: 375/250;
    overflow: hidden;
  }
}

@media only screen and (max-width: 767px) {
  .p-kani-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.p-kani-gallery__row {
  margin-top: 3.7rem;
  display: flex;
  column-gap: 3.6rem;
}
@media only screen and (max-width: 767px) {
  .p-kani-gallery__row {
    margin-top: 1.6rem;
    flex-direction: column;
    row-gap: 1.6rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-kani-gallery__item {
    width: 100%;
    aspect-ratio: 375/250;
    overflow: hidden;
  }
}

@media only screen and (max-width: 767px) {
  .p-kani-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ------------------------------------------------
p-course-type
--------------------------------------------------- */
.p-course-type {
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-course-type {
    padding-top: 10rem;
  }
}

.p-course-type__items {
  display: flex;
  flex-direction: column;
  row-gap: 25.5rem;
}
@media only screen and (max-width: 767px) {
  .p-course-type__items {
    row-gap: 6.4rem;
  }
}

.p-course--other .p-course-type__items {
  row-gap: 9.6rem;
}
@media only screen and (max-width: 767px) {
  .p-course--other .p-course-type__items {
    row-gap: 6.4rem;
  }
}

/* ------------------------------------------------
p-course-item
--------------------------------------------------- */
.p-course-item {
  position: relative;
  min-height: 37.8472222222vw;
}
@media only screen and (min-width: 1440px) {
  .p-course-item {
    min-height: 50.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-course-item {
    min-height: auto;
  }
}

.p-course-item__content {
  width: 44.2rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-course-item__content {
    width: 100%;
  }
}

.p-course-item__content::before {
  position: absolute;
  content: "";
  top: -9.7rem;
  left: -8.1rem;
  width: 26rem;
  height: 28rem;
  mix-blend-mode: multiply;
  background-image: url(../img/common/deco_circle-blue.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
@media only screen and (max-width: 767px) {
  .p-course-item__content::before {
    left: -6.4rem;
  }
}

.p-course-item__title {
  font-size: 2.7rem;
  font-size: max(2.7rem, 20px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #338751;
}

.p-course-item__text {
  margin-top: 1.6rem;
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-course-item__text {
    font-size: 1.6rem;
  }
}

.p-course-item__text span {
  display: block;
  color: #D70F0F;
}

.p-course-item__menu {
  margin-top: 2.4rem;
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-course-item__menu {
    font-size: 1.6rem;
  }
}

.p-course-item__menu span {
  font-size: 2rem;
  font-size: max(2rem, 16px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}

.p-course-item___btn-wrap {
  margin-top: 4.6rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.6rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-course-item___btn-wrap {
    margin-top: 2.6rem;
  }
}

.p-course-item__btn {
  width: 30rem;
  width: max(30rem, 230px);
  height: 7rem;
  height: max(7rem, 50px);
}
@media only screen and (max-width: 767px) {
  .p-course-item__btn {
    width: 24rem;
    width: 26rem;
    height: 6rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-course-item__slider {
    margin-top: 3.6rem;
  }
}

/* ------------------------------------------------
p-course-slider
--------------------------------------------------- */
.p-course-slider {
  position: absolute;
  top: 0;
  right: 0;
  width: 55.5555555556vw;
  padding-bottom: 5rem;
}
@media only screen and (min-width: 1440px) {
  .p-course-slider {
    height: 45.4rem;
    height: 50.4rem;
  }
}
@media only screen and (min-width: 1600px) {
  .p-course-slider {
    width: 53.75vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-course-slider {
    position: static;
    width: 100%;
    padding-left: 2.4rem;
  }
}

.p-course-slider__container {
  overflow: hidden;
}

.p-course-slider__wrap {
  overflow: visible;
}

.p-course-slider__item {
  width: 44.4444444444vw;
  aspect-ratio: 640/454;
  border-radius: 0.8rem;
  overflow: hidden;
}
@media only screen and (min-width: 1440px) {
  .p-course-slider__item {
    width: 64rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-course-slider__item {
    width: 26rem;
    aspect-ratio: 260/175;
  }
}

.p-course-slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*アローボタン入れ物-----------------------------------*/
.p-course-slider__arrow-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 8rem;
  height: 2.6rem;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .p-course-slider__arrow-wrap {
    left: 2rem;
    top: initial;
    width: 6.4rem;
    bottom: 1.6rem;
  }
}

:root {
  --swiper-navigation-color: transparent;
}

.p-course-slider__arrow {
  height: inherit;
  top: 0;
  position: relative;
  margin-top: 0;
  left: 0;
  height: 100%;
}

.p-course-slider__arrow::after {
  background-color: #338751;
  mask-image: url(../img/cuisine/arrow_slide.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100%;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.4rem;
  height: 2.6rem;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 767px) {
  .p-course-slider__arrow::after {
    width: 1rem;
    height: 1.9rem;
    mask-image: url(../img/cuisine/arrow_slide-sp.svg);
  }
}

.p-course-slider__arrow--next::after {
  top: 51%;
  transform: translate(-50%, -50%) rotate(180deg);
}

.p-course-slider__arrow:hover::after {
  background-color: #EA7D3E;
}

/* ------------------------------------------------
p-column
--------------------------------------------------- */
.p-column__row {
  display: flex;
  background-color: #fff;
  border: 0.1rem solid #338751;
  padding: 3.2rem 3.6rem;
  column-gap: 3.2rem;
}
@media only screen and (max-width: 767px) {
  .p-column__row {
    flex-direction: column;
    padding: 3.2rem 2.4rem;
  }
}

.p-column__img {
  width: 29.8rem;
}
@media only screen and (max-width: 767px) {
  .p-column__img {
    width: 100%;
  }
}

.p-column__content {
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .p-column__content {
    margin-top: 2.4rem;
  }
}

.p-column__title {
  font-size: 2.4rem;
  font-size: max(2.4rem, 18px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
}

.p-column__text {
  margin-top: 0.8rem;
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-column__text {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-column__text {
    margin-top: 1.6rem;
    line-height: 1.8;
  }
}

.p-column__btn {
  margin-top: 4.8rem;
  width: 24rem;
  height: 6rem;
}
@media only screen and (max-width: 767px) {
  .p-column__btn {
    margin-top: 3.2rem;
    margin-inline: auto;
  }
}

/* ------------------------------------------------
p-option
--------------------------------------------------- */
.p-option__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2.3rem;
  border-bottom: 1px solid #534B3E;
}
@media only screen and (max-width: 767px) {
  .p-option__head {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 1.6rem;
  }
}

.p-option__title {
  font-size: 3.2rem;
  font-size: max(3.2rem, 22px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-option__title {
    font-size: 2.8rem;
  }
}

.p-option__note {
  font-size: 1.6rem;
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .p-option__note {
    font-size: 1.4rem;
  }
}

.p-option__body {
  margin-top: 6.4rem;
}
@media only screen and (max-width: 767px) {
  .p-option__body {
    margin-top: 3.2rem;
  }
}

.p-option__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 3.2rem;
}
@media only screen and (max-width: 767px) {
  .p-option__items {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ------------------------------------------------
p-option-menu
--------------------------------------------------- */
.p-option-menu {
  background-color: #fff;
  border: 0.1rem solid #338751;
  padding: 3.2rem 2.4rem;
}

.p-option-menu__img {
  width: 100%;
  aspect-ratio: 298/204;
  overflow: hidden;
}

.p-option-menu__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-option-menu__body {
  padding-top: 1.6rem;
}

.p-option-menu__title {
  font-size: 2.4rem;
  font-size: max(2.4rem, 18px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
}

.p-option-menu__price {
  margin-top: 0.8rem;
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-option-menu__price {
    font-size: 1.6rem;
  }
}

.p-option-menu__text {
  margin-top: 1.6rem;
  text-align: justify;
  font-size: 1.6rem;
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .p-option-menu__text {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-option-menu__text {
    font-size: 1.6rem;
  }
}

/* ------------------------------------------------
p-course-banner
--------------------------------------------------- */
.p-course-banner__items {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .p-course-banner__items {
    flex-direction: column;
  }
}

.p-course-banner__item {
  width: 50%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-course-banner__item {
    width: 100%;
  }
}

.p-course-banner__item::before {
  position: absolute;
  z-index: 3;
  content: "";
  bottom: 0;
  right: 0;
  width: 4.7rem;
  height: 4.7rem;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background-color: #338751;
}
@media only screen and (max-width: 767px) {
  .p-course-banner__item::before {
    width: 2.7rem;
    height: 2.7rem;
  }
}

.p-course-banner__item a {
  position: relative;
  display: block;
  width: 100%;
}
@media only screen and (min-width: 1440px) {
  .p-course-banner__item a {
    height: 44.5rem;
  }
}

.p-course-banner__item a::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: background-color 0.3s;
}

.p-course-banner__item a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-course-banner__title-wrap {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.p-course-banner__term {
  display: block;
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  background-color: #EA7D3E;
  color: #fff;
  padding: 1rem 1.4rem 1rem 2.2rem;
  border-radius: 0.8rem;
}
@media only screen and (max-width: 767px) {
  .p-course-banner__term {
    font-size: 1.6rem;
  }
}

.p-course-banner__item:hover .p-course-banner__term {
  background-color: #338751;
}

.p-course-banner__title {
  margin-top: 0.9rem;
  font-size: 4.2rem;
  font-size: max(4.2rem, 28px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .p-course-banner__title {
    font-size: 3rem;
  }
}

.p-course-banner__item a:hover::after {
  background-color: rgba(0, 0, 0, 0.4);
}

/* ------------------------------------------------
p-room
--------------------------------------------------- */
.p-room {
  margin-top: 10rem;
}
@media only screen and (max-width: 999px) {
  .p-room {
    margin-top: 58px;
  }
}

/* ------------------------------------------------
p-room-type
--------------------------------------------------- */
.p-room-type {
  background-image: url(../img/common/img_bg-repeat.jpg);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100%;
  padding-block: 12.8rem 27.6rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-room-type {
    padding-block: 9.6rem 9.6rem;
  }
}

.p-room-type__item:nth-of-type(2) {
  margin-top: 12.8rem;
}
@media only screen and (max-width: 767px) {
  .p-room-type__item:nth-of-type(2) {
    margin-top: 9.6rem;
  }
}

.p-room-type__item:nth-of-type(3) {
  margin-top: 12.2rem;
}
@media only screen and (max-width: 767px) {
  .p-room-type__item:nth-of-type(3) {
    margin-top: 9.6rem;
  }
}

.p-type-item__head {
  position: relative;
  min-height: 47.8rem;
}
@media only screen and (max-width: 767px) {
  .p-type-item__head {
    height: auto;
  }
}

.p-type-item__content {
  width: 44.8rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-type-item__content {
    width: 100%;
  }
}

.p-type-item__content--reversed {
  margin-left: auto;
}

.p-type-item__name {
  font-size: 2.4rem;
  font-size: max(2.4rem, 18px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
  display: inline-block;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #534B3E;
}

.p-type-item__name p {
  margin-right: 1.8rem;
  display: inline-block;
}

.p-type-item__number {
  background-color: #338751;
  color: #fff;
  padding: 0.1rem 0.8rem 0.2rem;
}

.p-type-item__title {
  font-size: 3.2rem;
  font-size: max(3.2rem, 22px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-top: 3.3rem;
}
@media only screen and (max-width: 767px) {
  .p-type-item__title {
    font-size: 2.8rem;
  }
}

.p-type-item__text {
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .p-type-item__text {
    font-size: 1.6rem;
  }
}

.p-type-item__img {
  width: 55.5555555556vw;
  height: 47.8rem;
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (min-width: 1440px) {
  .p-type-item__img {
    width: calc(41.6667vw + 200px);
  }
}
@media only screen and (max-width: 767px) {
  .p-type-item__img {
    position: static;
    margin-top: 3.1rem;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 375/270;
    overflow: hidden;
  }
}

.p-type-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-type-item__img--reversed {
  left: 0;
}

.p-type-item__deco {
  position: absolute;
  top: -4.4rem;
  left: -4.6rem;
  width: 23.17rem;
  mix-blend-mode: multiply;
  transform: rotate(21deg);
}

/* ------------------------------------------------
p-type-gallery
--------------------------------------------------- */
.p-type-gallery {
  margin-top: 3.2rem;
}

@media only screen and (max-width: 767px) {
  .p-type-gallery__inner {
    padding: 0;
  }
}

.p-type-gallery__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 3.2rem;
}
@media only screen and (max-width: 767px) {
  .p-type-gallery__items {
    grid-template-columns: 1fr;
  }
}

.p-type-gallery__item figure {
  aspect-ratio: 352/270;
}
@media only screen and (max-width: 767px) {
  .p-type-gallery__item figure {
    aspect-ratio: 375/270;
  }
}

.p-type-gallery__item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ------------------------------------------------
p-room-overview
--------------------------------------------------- */
.p-room-overview {
  margin-top: 12.1rem;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-room-overview {
    margin-top: 9.6rem;
  }
}

.p-room-overview__title {
  font-size: 3.2rem;
  font-size: max(3.2rem, 22px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
  padding-bottom: 2.1rem;
  border-bottom: 1px solid #534B3E;
}
@media only screen and (max-width: 767px) {
  .p-room-overview__title {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-room-overview__title {
    padding-bottom: 1.6rem;
  }
}

.p-room-overview__img {
  margin-top: 6.4rem;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-room-overview__img {
    width: 100vw;
    margin-left: -2.4rem;
  }
}

.p-room-overview__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-room-overview__items {
  width: 100%;
  margin-top: 4.4rem;
}
@media only screen and (max-width: 767px) {
  .p-room-overview__items {
    margin-top: 3.1rem;
  }
}

.p-room-overview__item {
  padding-top: 2.4rem;
  padding-bottom: 2.1rem;
  border-top: 1px solid #ccc;
  display: block;
}
@media only screen and (max-width: 767px) {
  .p-room-overview__item {
    padding-bottom: 2.2rem;
  }
}

.p-room-overview__item:last-child {
  border-bottom: 1px solid #ccc;
}

.p-room-overview__item th {
  color: #338751;
  font-size: 2rem;
  font-size: max(2rem, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-align: left;
  vertical-align: top;
  width: 34rem;
  padding-right: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .p-room-overview__item th {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-room-overview__item th {
    width: 100%;
    display: block;
    font-size: 2rem;
    padding-bottom: 0.2rem;
  }
}

.p-room-overview__item td {
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .p-room-overview__item td {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-room-overview__item td {
    width: 100%;
    display: block;
  }
}

/* ------------------------------------------------
p-facility
--------------------------------------------------- */
.p-facility {
  padding-block: 12.8rem 24rem;
  background-color: #FFFDF0;
}
@media only screen and (max-width: 767px) {
  .p-facility {
    padding-bottom: 12.8rem;
  }
}

.p-facility__title {
  font-size: 4.2rem;
  font-size: max(4.2rem, 28px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-facility__title {
    font-size: 3rem;
  }
}

.p-facility__items {
  margin-top: 12.8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-gap: 7.3rem 14.5%;
}
@media only screen and (max-width: 767px) {
  .p-facility__items {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0;
  }
}

.p-facility-item {
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
}

@media only screen and (max-width: 767px) {
  .p-facility-item:not(:first-child) {
    margin-top: 9.6rem;
  }
}

.p-facility-item__img {
  border-radius: 0.8rem;
  overflow: hidden;
  aspect-ratio: 478/363;
}
@media only screen and (max-width: 767px) {
  .p-facility-item__img {
    aspect-ratio: 327/363;
  }
}

.p-facility-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-facility-item__content {
  padding-top: 3.2rem;
}

.p-facility-item__head span {
  font-size: 2rem;
  font-size: max(2rem, 16px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.1em;
  display: block;
}

.p-facility-item__title {
  font-size: 2.7rem;
  font-size: max(2.7rem, 20px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-top: 0.7rem;
  display: block;
}

.p-facility-item__text {
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .p-facility-item__text {
    font-size: 1.6rem;
  }
}

.p-facility-item__tel {
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-facility-item__tel {
    font-size: 1.6rem;
  }
}

/* ------------------------------------------------
p-experience
--------------------------------------------------- */
.p-experience {
  margin-top: 10rem;
}
@media only screen and (max-width: 999px) {
  .p-experience {
    margin-top: 58px;
  }
}

.p-experience__container {
  background-image: url(../img/common/img_bg-repeat.jpg);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100%;
  padding-block: 11.8rem 24.1rem;
}
@media only screen and (max-width: 767px) {
  .p-experience__container {
    padding-block: 7.2rem;
  }
}

.p-experience-title__wrap {
  max-width: 73.7rem;
  margin: 0 auto;
}

.p-experience-title__text {
  font-size: 2rem;
  font-size: max(2rem, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .p-experience-title__text {
    font-size: 1.8rem;
  }
}

.p-experience-wrap {
  margin-top: 13.2rem;
}
@media only screen and (max-width: 767px) {
  .p-experience-wrap {
    margin-top: 6.4rem;
  }
}

.group_container:first-child {
  margin-top: 0;
}

.group_container {
  margin-top: 12.8rem;
}

.experiences_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12.8rem 16.3rem;
}
@media only screen and (max-width: 767px) {
  .experiences_container {
    grid-template-columns: repeat(1, 1fr);
    gap: 12.8rem;
  }
}

.p-experience-item__img {
  width: 100%;
}

.p-experience-item__img img {
  width: 100%;
  aspect-ratio: 478/363;
  object-fit: cover;
  border-radius: 0.8rem;
}
@media only screen and (max-width: 767px) {
  .p-experience-item__img img {
    aspect-ratio: 327/312;
  }
}

.p-experience-item__content {
  margin-top: 3.2rem;
}
@media only screen and (max-width: 767px) {
  .p-experience-item__content {
    margin-top: 2.4rem;
  }
}

.p-experience-item__number {
  font-size: 2rem;
  font-size: max(2rem, 16px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 0.4rem 1.5rem 0.4rem 1.6rem;
  background-color: #475D9B;
  display: inline-block;
  border-radius: 1.6rem;
}

.p-experience-item__title {
  margin-top: 1rem;
  font-size: 2.7rem;
  font-size: max(2.7rem, 20px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-experience-item__title {
    margin-top: 0.6rem;
  }
}

.p-experience-item__content p:not(.number) {
  margin-top: 1.6rem;
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .p-experience-item__content p:not(.number) {
    font-size: 1.6rem;
  }
}

.btn-reserve {
  margin-top: 4.8rem;
  display: inline-block;
  height: 6rem;
}
@media only screen and (max-width: 767px) {
  .btn-reserve {
    margin-top: 3rem;
  }
}

.btn-reserve a,
.btn {
  width: 100%;
  height: 100%;
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  color: #fff;
  background-color: #EA7D3E;
  border-radius: 0.8rem;
  display: grid;
  place-content: center;
  transition: background-color 0.3s;
  padding: 0.8rem 3.2rem;
}

.btn-reserve a:hover,
.btn-info:hover {
  background-color: #338751;
}

/* ------------------------------------------------
p-
--------------------------------------------------- */
/* ------------------------------------------------
p-kitchen
--------------------------------------------------- */
.p-kitchen {
  margin-top: 10rem;
}
@media only screen and (max-width: 999px) {
  .p-kitchen {
    margin-top: 58px;
  }
}

/* ------------------------------------------------
p-kitchen-item
--------------------------------------------------- */
.p-kitchen__items {
  background-image: url(../img/common/img_bg-repeat.jpg);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100%;
  padding-block: 12.8rem 23.9rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-kitchen__items {
    padding-block: 9.6rem 9.6rem;
  }
}

.p-kitchen-item {
  position: relative;
}

.p-kitchen-item:nth-of-type(2) {
  margin-top: 11.8rem;
}
@media only screen and (max-width: 767px) {
  .p-kitchen-item:nth-of-type(2) {
    margin-top: 9.6rem;
  }
}

.p-kitchen-item:nth-of-type(3) {
  margin-top: 13rem;
}
@media only screen and (max-width: 767px) {
  .p-kitchen-item:nth-of-type(3) {
    margin-top: 9.6rem;
  }
}

.p-p-kitchen-content {
  width: 44.8rem;
  min-height: 33.1944444444vw;
  /* 最小の高さを設定 */
  height: auto;
  /* コンテンツに応じて高さを自動調整 */
}
@media only screen and (max-width: 767px) {
  .p-p-kitchen-content {
    width: 100%;
  }
}
@media (min-width: 1440px) {
  .p-p-kitchen-content {
    min-height: calc(478px + (100vw - 1440px) * 0.001);
  }
}

.p-p-kitchen-content--reversed {
  margin-left: auto;
}

.p-p-kitchen-content__category {
  font-size: 2.4rem;
  font-size: max(2.4rem, 18px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
}

.p-p-kitchen-content__title {
  margin-top: 0.5rem;
  font-size: 3.2rem;
  font-size: max(3.2rem, 22px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-p-kitchen-content__title {
    font-size: 2.8rem;
  }
}

.p-p-kitchen-content__body {
  position: relative;
}

.p-kitchen-item__text {
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 3.1rem;
}
@media only screen and (max-width: 767px) {
  .p-kitchen-item__text {
    font-size: 1.6rem;
  }
}

.p-kitchen-item__notice {
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .p-kitchen-item__notice {
    font-size: 1.6rem;
  }
}

.p-kitchen-item__btn {
  height: 7rem;
  margin-top: 3.2rem;
}

.p-kitchen-item__deco {
  position: absolute;
  content: "";
  top: -16.2rem;
  right: -6.1rem;
  width: 24.62rem;
}
@media only screen and (max-width: 767px) {
  .p-kitchen-item__deco {
    left: 23rem;
  }
}

.p-kitchen-item__img {
  width: 55.5555555556vw;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  object-fit: cover;
  object-position: center;
}
@media only screen and (max-width: 767px) {
  .p-kitchen-item__img {
    position: relative;
    margin-top: 3.1rem;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 375/270;
  }
}
@media (min-width: 1440px) {
  .p-kitchen-item__img {
    max-width: none;
    height: 478px;
    width: calc(800px + (100vw - 1440px) * 0.5);
    object-fit: cover;
  }
}

@media only screen and (max-width: 767px) {
  .p-kitchen-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
@media (min-width: 1440px) {
  .p-kitchen-item__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.p-kitchen-item__img--reversed {
  left: 0;
}

/* ------------------------------------------------
p-access
--------------------------------------------------- */
.p-access {
  margin-top: 10rem;
}
@media only screen and (max-width: 999px) {
  .p-access {
    margin-top: 58px;
  }
}

.p-access__container {
  background-image: url(../img/common/img_bg-repeat.jpg);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100%;
  padding-block: 12.8rem 24.2rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-access__container {
    padding-block: 7.2rem 12.8rem;
  }
}

/* ------------------------------------------------
p-access-info
--------------------------------------------------- */
.p-access-info__map {
  aspect-ratio: 1120/780;
  width: 100%;
}

.p-access-info__map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-access-info__meta {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
}
@media only screen and (max-width: 767px) {
  .p-access-info__meta {
    grid-template-columns: 1fr;
  }
}

.p-access-info__img {
  width: 54.4rem;
}
@media only screen and (max-width: 767px) {
  .p-access-info__img {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .p-access-info__img {
    order: 3;
  }
}

.p-access-info__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 544/405;
  object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .p-access-info__access {
    order: 2;
  }
}

.p-access-info__title {
  color: #338751;
  position: relative;
  font-size: 2.7rem;
  font-size: max(2.7rem, 20px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.p-access-info__title::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 10.5rem;
  height: 3.2rem;
  background: url(../img/access/access_info.svg) no-repeat center center/cover;
  bottom: 0.5rem;
  left: 15rem;
}

.p-access-info__items {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.6rem;
}

.p-access-info__item dt {
  font-size: 2rem;
  font-size: max(2rem, 16px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.p-access-info__item dd {
  margin-top: 0.4rem;
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-access-info__item dd {
    font-size: 1.6rem;
  }
}

/* ------------------------------------------------
p-access-row
--------------------------------------------------- */
.p-access__row {
  margin-top: 12.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
}
@media only screen and (max-width: 767px) {
  .p-access__row {
    margin-top: 9.6rem;
    grid-template-columns: 1fr;
    gap: 9.6rem;
  }
}

/* ------------------------------------------------
p-access-means
--------------------------------------------------- */
.p-access-means__title {
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-size: 3.2rem;
  font-size: max(3.2rem, 22px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid #534B3E;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  .p-access-means__title {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-access-means__title {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 1.6rem;
  }
}

.p-access-means__title span {
  display: inline-block;
  font-size: 1.6rem;
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  padding-bottom: 0.3rem;
}
@media only screen and (max-width: 767px) {
  .p-access-means__title span {
    font-size: 1.4rem;
  }
}

.p-access-means__content {
  margin-top: 3.2rem;
}

.p-access-means__osaka {
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  font-size: max(2rem, 16px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.p-access-means__kyoto {
  margin-top: 4.8rem;
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  font-size: max(2rem, 16px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.p-access-means__text {
  margin-top: 0.8rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-access-means__text {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-access-means__text {
    word-break: break-all;
  }
}

/* ------------------------------------------------
p-access-map
--------------------------------------------------- */
.p-access-map {
  margin-top: 12.8rem;
}
@media only screen and (max-width: 767px) {
  .p-access-map {
    margin-top: 9.6rem;
  }
}

.p-access-map__title {
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-size: 3.2rem;
  font-size: max(3.2rem, 22px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid #534B3E;
}
@media only screen and (max-width: 767px) {
  .p-access-map__title {
    font-size: 2.8rem;
  }
}

.p-access-map__img {
  margin-top: 6.4rem;
  width: 100%;
}

.p-access-map__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1120/760;
  object-fit: cover;
}

/* ------------------------------------------------
p-faq
--------------------------------------------------- */
.p-faq {
  margin-top: 10rem;
}
@media only screen and (max-width: 999px) {
  .p-faq {
    margin-top: 58px;
  }
}

.p-faq__container {
  background-image: url(../img/common/img_bg-repeat.jpg);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100%;
  padding-block: 12.8rem 24.2rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-faq__container {
    padding-block: 7.2rem 12.8rem;
  }
}

.p-faq__contents {
  display: flex;
  flex-direction: column;
  row-gap: 12.7rem;
}
@media only screen and (max-width: 767px) {
  .p-faq__contents {
    row-gap: 9.6rem;
  }
}

/* ------------------------------------------------
p-faq-block
--------------------------------------------------- */
.p-faq-block__title {
  position: relative;
  font-family: "Shippori Mincho", serif;
  color: #534B3E;
  font-size: 3.2rem;
  font-size: max(3.2rem, 22px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid #534B3E;
}
@media only screen and (max-width: 767px) {
  .p-faq-block__title {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-faq-block__title {
    padding-bottom: 1.6rem;
  }
}

.p-faq-block__items {
  margin-top: 2.4rem;
}

.p-faq-block__item {
  background: #FFFDF0;
  border-radius: 0.8rem;
  padding: 1.75rem 13.9rem 1.75rem 4.7rem;
  cursor: pointer;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-faq-block__item {
    padding: 1.4rem;
  }
}

.p-faq-block__item::after {
  position: absolute;
  content: "";
  right: 5.8rem;
  top: 4.7rem;
  width: max(1.6rem, 12px);
  height: max(1.6rem, 12px);
  transform: rotate(-90deg);
  display: inline-block;
  background-image: url(../img/faq/arrow_green.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
@media only screen and (max-width: 767px) {
  .p-faq-block__item::after {
    width: 1.4rem;
    height: 1.4rem;
    right: 1.4rem;
    top: 2.4rem;
  }
}

.p-faq-block__item.is-active::after {
  transform: rotate(90deg);
}

.p-faq-block__item:nth-of-type(n + 2) {
  margin-top: 2.4rem;
}

.p-faq-block__question {
  padding: 1.75rem 0;
}
@media only screen and (max-width: 767px) {
  .p-faq-block__question {
    padding: 0.5rem 0;
  }
}

.p-faq-block__question-title {
  font-family: "Shippori Mincho", serif;
  position: relative;
  padding-left: 4.2rem;
  font-size: 2rem;
  font-size: max(2rem, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .p-faq-block__question-title {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-faq-block__question-title {
    margin: 0;
    padding-right: 1.5rem;
    padding-left: 2rem;
    font-size: 1.6rem;
    font-size: max(1.6rem, 14px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .p-faq-block__question-title {
    font-size: 1.4rem;
  }
}

.p-faq-block__question-title::before {
  content: attr(data-en);
  position: absolute;
  left: 0;
  top: -0.2rem;
  display: inline-block;
  color: #338751;
  font-family: "EB Garamond", serif;
  font-family: "EB Garamond", serif;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .p-faq-block__question-title::before {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.04em;
  }
}
@media only screen and (max-width: 767px) {
  .p-faq-block__question-title::before {
    font-family: "EB Garamond", serif;
    font-size: 1.4rem;
    font-size: max(1.4rem, 12px);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }
}

.p-faq-block__question-title span {
  font-family: "EB Garamond", serif;
  color: #338751;
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-faq-block__question-title span {
    font-size: 1.6rem;
  }
}

.p-faq-block__answer {
  padding: 0.8rem 0 2rem 0;
  color: #534B3E;
  font-family: "Shippori Mincho", serif;
  display: none;
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-faq-block__answer {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-faq-block__answer {
    padding: 0.5rem 1.7rem 0.5rem 0;
    font-size: 1.6rem;
    font-size: max(1.6rem, 14px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .p-faq-block__answer {
    font-size: 1.4rem;
  }
}

.p-faq-block__answer-text {
  color: #534B3E;
  font-family: "Shippori Mincho", serif;
  padding-left: 4.2rem;
  position: relative;
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-faq-block__answer-text {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-faq-block__answer-text {
    padding-left: 2rem;
    font-size: 1.6rem;
    font-size: max(1.6rem, 14px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .p-faq-block__answer-text {
    font-size: 1.4rem;
  }
}

.p-faq-block__answer-text::before {
  content: attr(data-en);
  position: absolute;
  left: 0;
  top: 0.2rem;
  display: inline-block;
  color: #EA7D3E;
  font-family: "EB Garamond", serif;
  font-family: "EB Garamond", serif;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .p-faq-block__answer-text::before {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.04em;
  }
}
@media only screen and (max-width: 767px) {
  .p-faq-block__answer-text::before {
    font-family: "EB Garamond", serif;
    font-size: 1.4rem;
    font-size: max(1.4rem, 12px);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }
}

/* ------------------------------------------------
p-faq-block table ul ol li リッチエディター
--------------------------------------------------- */
.p-faq-block__answer a {
  text-decoration: underline;
}

.p-faq-block__answer table {
  width: 100%;
}

.p-faq-block__answer tr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.3rem 0;
  border-top: 0.1rem solid #ccc;
}

.p-faq-block__answer tr:first-of-type {
  margin-top: 2.2rem;
}

.p-faq-block__answer tr:last-of-type {
  border-bottom: 0.1rem solid #ccc;
  margin-bottom: 0.9rem;
}

.p-faq-block__answer td:first-of-type {
  color: #338751;
}

.p-faq-block__answer ol li {
  padding-left: 3rem;
}

.p-faq-block__answer ul {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
@media only screen and (max-width: 767px) {
  .p-faq-block__answer ul {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------
p-faq-block__contact
--------------------------------------------------- */
.p-faq-block__contact {
  margin-top: 12.8rem;
}
@media only screen and (max-width: 767px) {
  .p-faq-block__contact {
    margin-top: 10.5rem;
  }
}

.p-faq-block__text {
  text-align: center;
  color: #534B3E;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-faq-block__text {
    font-size: 1.6rem;
  }
}

.p-faq-block__text a {
  text-decoration: underline;
}

.p-faq-block__text .p-faq-block-tel {
  text-decoration: none;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .p-faq-block__text .p-faq-block-tel {
    pointer-events: auto;
  }
}

.p-faq-block__btn {
  width: 30rem;
  height: 7rem;
  margin-top: 4.8rem;
  margin-inline: auto;
}

.p-faq-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.p-faq-btn span {
  display: inline-block;
  margin-left: 1rem;
  width: 2.3rem;
  height: 2.3rem;
  background: url(../img/common/arrow_right.svg) no-repeat center center/contain;
}

/* ------------------------------------------------
p-modal
--------------------------------------------------- */
/* ボタン */
button.reserve {
  display: block;
  width: 100%;
  height: inherit;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  font-family: "Shippori Mincho", serif;
  cursor: pointer;
  background: #EA7D3E;
}
@media only screen and (max-width: 767px) {
  button.reserve {
    font-size: 1.6rem;
  }
}

/* モーダル */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: #338751;
}

.modal-box {
  width: 100%;
  height: 100vh;
  padding-block: 9.6rem;
  overflow-y: scroll;
}
@media only screen and (max-width: 767px) {
  .modal-box {
    padding-block: 6.4rem;
  }
}

.modalClose {
  position: absolute;
  top: 5rem;
  right: 5rem;
  background: none;
  color: #fff;
  font-size: 4.8rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .modalClose {
    top: 2.4rem;
    right: 2.4rem;
    font-size: 3.6rem;
  }
}

.modal-inner {
  color: #fff;
  min-height: 100%;
  width: 100%;
  padding-inline: 30px;
  display: grid;
  place-content: center;
}
@media only screen and (max-width: 767px) {
  .modal-inner {
    padding-inline: 24px;
  }
}

.modal-opened {
  overflow-y: hidden;
  /*背景を固定*/
}

.reserve-ttl {
  font-size: 4.2rem;
  font-size: max(4.2rem, 28px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .reserve-ttl {
    font-size: 3rem;
  }
}

/*ベストレート保証*/
.reserve-comment {
  margin-top: 4rem;
  margin-inline: auto;
  max-width: 36.2rem;
}
@media only screen and (max-width: 767px) {
  .reserve-comment {
    width: 100%;
  }
}

/*フォーム*/
.reserve-search {
  margin-top: 2.4rem;
}

#search_489ban {
  display: flex;
  align-items: center;
  justify-content: center;
}

.reserve-search form {
  max-width: 820px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.6rem;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .reserve-search form {
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .reserve-search form {
    max-width: 500px;
    width: 100%;
  }
}

.reserve-search form dt {
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .reserve-search form dt {
    font-size: 1.6rem;
  }
}

.reserve-search .stay_489ban select,
.reserve-search .room_489ban select,
.reserve-search .person_489ban select {
  min-width: 7.3rem;
}

.reserve-search .inbox_489ban {
  display: flex;
  column-gap: 1.6rem;
  width: auto;
}

.reserve-search .date_489ban input[type=date] {
  font-size: max(2rem, 16px) !important;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  background-color: #FFFDF0;
  padding: 1rem;
  border-radius: 0.8rem;
  width: 18.3rem;
  width: max(18.3rem, 136px);
  color: #000 !important;
}
@media only screen and (max-width: 767px) {
  .reserve-search .date_489ban input[type=date] {
    font-size: 1.8rem;
  }
}

.reserve-search .stay_489ban select,
.reserve-search .room_489ban select,
.reserve-search .person_489ban select {
  font-size: max(2rem, 16px) !important;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.08em;
  background-color: #FFFDF0;
  padding: 1rem;
  border-radius: 0.8rem;
}
@media only screen and (max-width: 767px) {
  .reserve-search .stay_489ban select,
.reserve-search .room_489ban select,
.reserve-search .person_489ban select {
    font-size: 1.8rem;
  }
}

.reserve-search dd {
  display: flex;
  align-items: center;
  column-gap: 0.8rem;
  position: relative;
}

.reserve-search dd::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 1.4rem;
  height: 1.4rem;
  background-image: url(../img/common/arrow_down-base.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  pointer-events: none;
}

.date_489ban dd::after {
  display: none;
}

.reserve-search .stay_489ban dd::after {
  left: 76%;
}

.reserve-search .stay_489ban dd select {
  width: 11rem;
}

/*宿泊日*/
.reserve-search .date_489ban dd {
  display: flex;
  align-items: center;
  column-gap: 1.8rem;
}

/*日付未定*/
.reserve-search .date_489ban dd label {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  position: relative;
  padding-left: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .reserve-search .date_489ban dd label {
    font-size: 1.4rem;
  }
}

/*日付未定チェックボックス*/
.reserve-search .date_489ban dd label::before {
  position: absolute;
  content: "";
  top: 51%;
  left: 0;
  transform: translateY(-50%);
  width: 1.4rem;
  height: 1.5rem;
  border-radius: 0.2rem;
  background-color: #d9d9d9;
  transition: background-color 0.3s;
}

.reserve-search .date_489ban dd label::after {
  position: absolute;
  content: "";
  top: 48.7%;
  left: 0.4rem;
  transform: translateY(-50%) rotate(35deg);
  width: 0.6rem;
  height: 0.9rem;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  display: none;
}

.reserve-search .date_489ban dd label input[type=checkbox] {
  display: none;
  visibility: hidden;
}

/*チェックボックス*/
.reserve-search .date_489ban dd > input[type=date]:disabled + label::before {
  background-color: #005cc8;
}

.reserve-search .date_489ban dd > input[type=date]:disabled + label::after {
  display: block;
}

/*名の単位*/
.reserve-search dd span {
  font-size: 1.6rem;
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .reserve-search dd span {
    font-size: 1.4rem;
  }
}

/*検索ボタン*/
.reserve-search button {
  margin-top: 4.8rem;
  width: 100%;
  max-width: 30rem;
  height: 7rem;
  font-family: "Shippori Mincho", serif;
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  color: #fff;
  background-color: #EA7D3E;
  border-radius: 0.8rem;
  display: grid;
  place-content: center;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 767px) {
  .reserve-search button {
    max-width: initial;
    width: 100%;
    height: 6rem;
  }
}

/*宿泊プランボタン*/
.reserve-plan {
  margin-top: 4.8rem;
  margin-inline: auto;
  width: 30rem;
  height: 7rem;
}
@media only screen and (max-width: 767px) {
  .reserve-plan {
    margin-top: 3.6rem;
    width: 100%;
    height: 6rem;
  }
}

/*各種ボタン*/
.reserve-menu {
  margin-top: 4.8rem;
  display: flex;
  justify-content: center;
  column-gap: 2%;
}
@media only screen and (max-width: 767px) {
  .reserve-menu {
    flex-wrap: wrap;
    row-gap: 1.6rem;
  }
}

.reserve-menu li {
  margin: 0;
  padding: 0;
  width: 32%;
}
@media only screen and (max-width: 767px) {
  .reserve-menu li {
    width: 100%;
  }
}

.reserve-menu li a {
  border: 1px solid #fff;
  color: #fff;
  display: inline-block;
  width: 100%;
  padding: 10px;
  font-size: 1.6rem;
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  border-radius: 999px;
  text-align: center;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .reserve-menu li a {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .reserve-menu li a {
    font-size: 1.6rem;
  }
}

/*コンタクト*/
.reserve-contact {
  text-align: center;
}

.reserve-contact__tel {
  margin-top: 3.2rem;
  font-size: 3.2rem;
  font-size: max(3.2rem, 22px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .reserve-contact__tel {
    font-size: 2.8rem;
  }
}

.reserve-contact__tel i {
  margin-right: 1rem;
  font-size: 2.7rem;
}
@media only screen and (max-width: 767px) {
  .reserve-contact__tel i {
    font-size: 2.4rem;
  }
}

.reserve-contact__time {
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .reserve-contact__time {
    font-size: 1.6rem;
  }
}

/*お問い合わせボタン*/
.reserve-contact__btn {
  margin-top: 4rem;
  margin-inline: auto;
  width: 32%;
}
@media only screen and (max-width: 767px) {
  .reserve-contact__btn {
    width: 100%;
  }
}

.reserve-contact__btn a {
  background-color: #fff;
  color: #2b0909;
  display: inline-block;
  width: 100%;
  padding: 10px;
  font-size: 1.6rem;
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  border-radius: 999px;
  text-align: center;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .reserve-contact__btn a {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .reserve-contact__btn a {
    font-size: 1.6rem;
  }
}

.modal select.digits {
  color: #000 !important;
}

/* ------------------------------------------------
p-contact
--------------------------------------------------- */
.p-contact {
  margin-top: 10rem;
  background-image: url(../img/common/img_bg-repeat.jpg);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100%;
  padding-bottom: 24rem;
}
@media only screen and (max-width: 999px) {
  .p-contact {
    margin-top: 58px;
  }
}
@media only screen and (max-width: 767px) {
  .p-contact {
    padding-bottom: 9.6rem;
  }
}

.p-contact__contact {
  border-top: 0.1rem solid #534B3E;
}

.p-contact__contact--tel {
  padding-block: 7.2rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-contact__contact--tel {
    padding-block: 6.4rem;
  }
}

.p-contact__contact--mail {
  padding-top: 9.6rem;
}
@media only screen and (max-width: 767px) {
  .p-contact__contact--mail {
    padding-top: 6.4rem;
  }
}

.p-contact__title {
  text-align: center;
  font-size: 3.2rem;
  font-size: max(3.2rem, 22px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-contact__title {
    font-size: 2.8rem;
  }
}

.p-contact__tel {
  margin-top: 6.4rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  column-gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .p-contact__tel {
    margin-top: 3.6rem;
    flex-direction: column;
    align-items: center;
  }
}

.p-contact__tel a {
  font-size: 3.2rem;
  font-size: max(3.2rem, 22px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  column-gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .p-contact__tel a {
    font-size: 2.8rem;
  }
}

.p-contact__tel > span {
  font-size: 2rem;
  font-size: max(2rem, 16px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .p-contact__tel > span {
    margin-bottom: 0;
  }
}

.p-contact__tel a span {
  font-size: 2.7rem;
  font-size: max(2.7rem, 20px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}
@media only screen and (max-width: 767px) {
  .p-contact__tel a span {
    margin-bottom: 0.3rem;
  }
}

.p-contact__text {
  margin-top: 3.2rem;
  font-size: 2rem;
  font-size: max(2rem, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-contact__text {
    font-size: 1.8rem;
  }
}

.p-contact__text button {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  font-size: max(2rem, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .p-contact__text button {
    font-size: 1.8rem;
  }
}

/* ------------------------------------------------
p-contact-head
--------------------------------------------------- */
.p-contact-head {
  text-align: center;
  padding-block: 12.8rem 9.6rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-contact-head {
    padding-block: 9.6rem 6.4rem;
  }
}

.p-contact-head__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  mix-blend-mode: multiply;
}
@media only screen and (max-width: 767px) {
  .p-contact-head__bg {
    width: 200%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.p-contact-head__inner {
  position: relative;
  z-index: 3;
}

.p-contact-head__lead {
  margin-top: 12.8rem;
  font-size: 2.7rem;
  font-size: max(2.7rem, 20px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-contact-head__lead {
    margin-top: 6.4rem;
  }
}

.p-contact-head__text {
  margin-top: 2.4rem;
  font-size: 2rem;
  font-size: max(2rem, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .p-contact-head__text {
    font-size: 1.8rem;
  }
}

.p-contact-head__btn {
  margin-top: 6.4rem;
  width: 30rem;
  height: 7rem;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-contact-head__btn {
    margin-top: 3.2rem;
  }
}

/* ------------------------------------------------
p-form
--------------------------------------------------- */
.p-form {
  margin-top: 6.4rem;
}

.p-form form {
  max-width: 928px;
  width: 100%;
  margin-inline: auto;
}

.p-form__items {
  display: flex;
  flex-direction: column;
  row-gap: 7.2rem;
}
@media only screen and (max-width: 767px) {
  .p-form__items {
    row-gap: 6.4rem;
  }
}

/* ------------------------------------------------
p-form-item
--------------------------------------------------- */
.p-form-item dt {
  font-size: 2rem;
  font-size: max(2rem, 16px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.p-form-item dt label {
  display: flex;
  align-items: center;
  column-gap: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .p-form-item dt label {
    column-gap: 0.8rem;
  }
}

.p-form-item dt span {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.2rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  display: inline-block;
  background-color: #EA7D3E;
  border-radius: 0.4rem;
  padding: 0.4rem 0.8rem;
  color: #fff;
}

.p-form-item__placeholder {
  margin-top: 2.4rem;
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-form-item__placeholder {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-form-item__placeholder {
    margin-top: 0.8rem;
  }
}

.p-form-item dd {
  margin-top: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .p-form-item dd {
    margin-top: 0.8rem;
  }
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
  font-family: "Shippori Mincho", serif;
  width: 100%;
  padding: 1.6rem;
  border: 0.1rem solid #ccc;
  border-radius: 0.4rem;
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  input[type=text],
input[type=tel],
input[type=email],
textarea {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  input[type=text],
input[type=tel],
input[type=email],
textarea {
    padding: 0.8rem 1.6rem;
  }
}

textarea {
  min-height: 35.2rem;
}
@media only screen and (max-width: 767px) {
  textarea {
    min-height: 20rem;
  }
}

.p-form__text {
  margin-top: 7.2rem;
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-form__text {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-form__text {
    margin-top: 6.4rem;
    text-align: left;
  }
}

.p-form__text a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.p-form__btn {
  margin-top: 3.9rem;
  width: 27.6rem;
  height: 6rem;
  margin-inline: auto;
  position: relative;
}

.p-form__btn::after {
  position: absolute;
  content: "";
  top: 50%;
  right: calc(2.6786vw - 10.5714px);
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  background-color: #fff;
  mask-image: url(../img/common/arrow_right.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100%;
}
@media only screen and (max-width: 767px) {
  .p-form__btn::after {
    right: 2.6rem;
  }
}

input[type=submit] {
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  font-size: max(1.6rem, 12px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  color: #fff;
  background-color: #EA7D3E;
  border-radius: 0.8rem;
  display: grid;
  place-content: center;
  transition: background-color 0.3s;
  font-family: "Shippori Mincho", serif;
  padding-right: calc(2.381vw - 8.2857px);
}
@media only screen and (max-width: 767px) {
  input[type=submit] {
    padding-right: 2.6rem;
  }
}

input[type=submit]:hover {
  background-color: #338751;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* ------------------------------------------------
p-thanks
--------------------------------------------------- */
.p-thanks {
  margin-top: 10rem;
  background-image: url(../img/common/img_bg-repeat.jpg);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100%;
  padding-block: 12.8rem 24rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 999px) {
  .p-thanks {
    margin-top: 58px;
  }
}
@media only screen and (max-width: 767px) {
  .p-thanks {
    padding-block: 9.6rem;
  }
}

.p-thanks__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  mix-blend-mode: multiply;
}
@media only screen and (max-width: 767px) {
  .p-thanks__bg {
    width: 200%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.p-thanks__inner {
  position: relative;
  z-index: 3;
}

.p-thanks__lead {
  margin-top: 12.8rem;
  font-size: 2.7rem;
  font-size: max(2.7rem, 20px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .p-thanks__lead {
    margin-top: 6.4rem;
  }
}

.p-thanks__text {
  margin-top: 2.4rem;
  font-size: 2rem;
  font-size: max(2rem, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .p-thanks__text {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-thanks__text {
    text-align: left;
  }
}

.p-thanks__btn {
  margin-top: 6.4rem;
  width: 30rem;
  height: 7rem;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-thanks__btn {
    margin-top: 3.2rem;
  }
}

/* ------------------------------------------------
p-privacy-policy
--------------------------------------------------- */
.p-privacy-policy {
  margin-top: 10rem;
  background-image: url(../img/common/img_bg-repeat.jpg);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100%;
  padding-bottom: 24rem;
}
@media only screen and (max-width: 999px) {
  .p-privacy-policy {
    margin-top: 58px;
  }
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy {
    padding-bottom: 9.6rem;
  }
}

.p-privacy-policy-head {
  text-align: center;
  padding-block: 12.8rem 9.6rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy-head {
    padding-block: 9.6rem 6.4rem;
  }
}

.p-privacy-policy-head__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  mix-blend-mode: multiply;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy-head__bg {
    width: 200%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.p-privacy-policy-head__inner {
  position: relative;
  z-index: 3;
}

.p-privacy-policy-head__page-title {
  text-align: center;
}

.p-privacy-policy__contents {
  border-top: 0.1rem solid #534B3E;
  padding-block: 7.2rem;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy__contents {
    padding-block: 6.4rem;
  }
}

/* --------------------------------
p-404
----------------------------------- */
.p-404 {
  margin-top: 10rem;
  padding-block: 12.8rem;
  background-image: url(../img/common/img_bg-repeat.jpg);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100%;
}
@media only screen and (max-width: 999px) {
  .p-404 {
    margin-top: 58px;
  }
}
@media only screen and (max-width: 767px) {
  .p-404 {
    padding-block: 9.6rem;
  }
}

.p-404__title {
  font-size: 6rem;
  font-weight: bold;
  line-height: 1.2;
  color: #338751;
}
@media only screen and (max-width: 767px) {
  .p-404__title {
    font-size: 3rem;
  }
}
.p-404__title span {
  font-size: 8rem;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .p-404__title span {
    font-size: 6rem;
    margin-right: 0;
  }
}

.p-404__text {
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 6.4rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-404__text {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-404__text {
    max-width: 420px;
    margin-inline: auto;
    margin-top: 3.6rem;
    text-align: left;
  }
}

.p-404__btn {
  margin-top: 8rem;
  text-align: center;
  width: 30rem;
  height: 7rem;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-404__btn {
    margin-top: 4rem;
    width: 24rem;
    height: 5.6rem;
  }
}

.p-404__btn a {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  position: relative;
}

.p-404__btn a span {
  font-size: 2.4rem;
  letter-spacing: 0.15em;
  color: #fff;
  text-transform: capitalize;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .p-404__btn a span {
    font-size: 2rem;
  }
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* common */
/* page */
/* --------------------------------
utility
----------------------------------- */
.u-ib {
  display: inline-block;
}

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

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

@media (max-width: 999px) {
  .u-min-1000 {
    display: none;
  }
}

@media (min-width: 1000px) {
  .u-max-999 {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .u-les2 {
    letter-spacing: -0.02em;
  }
}

.u-les4 {
  letter-spacing: -0.4em;
}

.u-les20 {
  letter-spacing: 0 !important;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 2.5rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 2.5rem;
}

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