@charset "UTF-8";
.l-container {
  min-width: var(--min-device-width);
}

.l-section {
  --l-section-inner-width-default: var(--site-width);
  --l-section-space-inline-default: var(--space-inline);
  --l-section-space-inline: var(--l-section-space-inline-override, var(--l-section-space-inline-default));
  --l-section-inner-width: var(--l-section-inner-width-override, var(--l-section-inner-width-default));
  --l-section-outer: max(0px, calc((var(--vw100) - var(--l-section-inner-width)) / 2));
  --l-section-gutter: max(var(--l-section-outer), var(--l-section-space-inline));
}
.l-section:where(._gutter) {
  padding-inline: var(--l-section-space-inline);
}
.l-section__inner {
  width: 100%;
  max-width: var(--l-section-inner-width);
  margin-inline: auto;
  background-clip: content-box;
}
.l-section__inner:where(._gutter) {
  max-width: calc( 						var(--l-section-inner-width) + 						(var(--l-section-space-inline) * 2) 					);
  padding-inline: var(--l-section-space-inline);
}
.l-section__full {
  margin-inline: calc(var(--l-section-gutter) * -1);
}

.l-row-gap {
  --l-row-gap-default: 60px;
  --l-row-gap: var(--l-row-gap-override, var(--l-row-gap-default));
  display: flex;
  flex-direction: column;
  row-gap: var(--l-row-gap);
}

.l-spacer._section {
  height: var(--space-block-section);
}
.l-spacer._xl {
  height: var(--space-block-xl);
}
.l-spacer._lg {
  height: var(--space-block-lg);
}
.l-spacer._md {
  height: var(--space-block-md);
}
.l-spacer._sm {
  height: var(--space-block-sm);
}
.l-spacer._xs {
  height: var(--space-block-xs);
}
.l-spacer._section-trim {
  height: var(--space-block-section-trim);
}
.l-spacer._xl-trim {
  height: var(--space-block-xl-trim);
}
.l-spacer._lg-trim {
  height: var(--space-block-lg-trim);
}
.l-spacer._md-trim {
  height: var(--space-block-md-trim);
}
.l-spacer._sm-trim {
  height: var(--space-block-sm-trim);
}
.l-spacer._xs-trim {
  height: var(--space-block-xs-trim);
}

.c-bread__list {
  word-break: break-all;
}
.c-bread__list > li {
  display: inline;
  margin-right: 0.2em;
}
.c-bread__list > li + li:before {
  content: "＞";
  /*	content: ">";*/
}

.c-heading2 {
  display: flex;
  flex-direction: column-reverse;
  margin-block-end: var(--space-block-md);
}
.c-heading2__en {
  font-family: var(--typography-dsp_en_xxxl_light-font-family);
  font-weight: var(--typography-dsp_en_xxxl_light-font-weight);
  font-size: var(--typography-dsp_en_xxxl_light-font-size);
  line-height: var(--typography-dsp_en_xxxl_light-line-height);
  --letter-spacing: var(--typography-dsp_en_xxxl_light-letter-spacing);
  color: var(--color-base2);
}
.c-heading2__title {
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
}
.c-heading2._light {
  color: var(--color-light);
}
.c-heading2._light .c-heading2__en {
  color: var(--color-light);
}

.c-heading2-2 {
  font-family: var(--typography-std_jp_xl_bold-font-family);
  font-weight: var(--typography-std_jp_xl_bold-font-weight);
  font-size: var(--typography-std_jp_xl_bold-font-size);
  line-height: var(--typography-std_jp_xl_bold-line-height);
  --letter-spacing: var(--typography-std_jp_xl_bold-letter-spacing);
  margin-block-end: var(--space-block-sm);
}

.c-text._center {
  text-align: center;
}
@media (width <= 768px) {
  .c-text._center {
    text-align: left;
  }
}
.c-text p:not(:last-child) {
  margin-block-end: 2em;
}

.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
  color: var(--color-light);
  background-color: var(--color-base2);
  border-radius: 999px;
  max-width: 340px;
  width: 100%;
  height: 72px;
  margin: var(--space-block-md) auto 0 auto;
  transition: opacity var(--sec);
}
@media (width <= 768px) {
  .c-button {
    height: 100px;
  }
}
.c-button:focus-visible {
  opacity: var(--opacity);
}
@media (hover: hover) and (pointer: fine) {
  .c-button:hover {
    opacity: var(--opacity);
  }
}
.c-button__inner {
  position: relative;
}
.c-button .u-svg {
  position: absolute;
  right: -26px;
  top: 50%;
  translate: 0 -50%;
}
.c-button .text {
  text-align: center;
}
.c-button .text .en {
  display: block;
  font-family: var(--typography-std_en_xs_regular-font-family);
  font-weight: var(--typography-std_en_xs_regular-font-weight);
  font-size: var(--typography-std_en_xs_regular-font-size);
  line-height: var(--typography-std_en_xs_regular-line-height);
  --letter-spacing: var(--typography-std_en_xs_regular-letter-spacing);
}

[data-tel] a {
  color: inherit;
  text-decoration: underline;
}

[data-details] summary {
  cursor: pointer;
}
[data-details-panel] {
  overflow: hidden;
}

/*全画面*/
/*ヘッダー*/
.g-header {
  position: fixed;
  width: 100%;
  padding-inline-end: var(--space-block-sm);
  z-index: 99;
}
.g-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.g-header__logo {
  z-index: 99;
}
.g-header__logo a {
  display: block;
  background-color: var(--color-light);
  border-bottom-right-radius: 20px;
  padding: 14px var(--space-block-sm);
}
@media (width <= 768px) {
  .g-header__logo a {
    padding: var(--space-block-xs);
  }
}
@media (width <= 768px) {
  .g-header__logo img {
    width: 192px;
  }
}
.g-header__menu {
  background-color: var(--color-light);
  border-radius: 999px;
  padding: 14px var(--space-block-sm);
  display: flex;
  align-items: center;
}
.g-header__menu a {
  padding-inline: var(--space-block-sm);
  border-inline-end: 1px solid var(--color-base);
  transition: opacity var(--sec);
}
.g-header__menu a:last-child {
  border-inline-end: 0;
}
.g-header__menu a:focus-visible {
  opacity: var(--opacity);
}
@media (hover: hover) and (pointer: fine) {
  .g-header__menu a:hover {
    opacity: var(--opacity);
  }
}
.g-header__hm-line {
  position: absolute;
  top: 10px;
  right: var(--space-block-xs);
  cursor: pointer;
  border: 1px solid var(--color-dark);
  border-radius: 99px;
  padding: 6px var(--space-block-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-block-xs);
  background-color: var(--color-light);
  z-index: 99;
}
.g-header__hm-line._active .line span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(20deg);
  width: 20px;
}
.g-header__hm-line._active .line span:nth-of-type(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
  width: 20px;
}
.g-header__hm-line._active .text.open {
  display: none;
}
.g-header__hm-line._active .text.close {
  display: block;
}
.g-header__hm-line .text {
  font-family: var(--typography-std_en_xs_regular-font-family);
  font-weight: var(--typography-std_en_xs_regular-font-weight);
  font-size: var(--typography-std_en_xs_regular-font-size);
  line-height: var(--typography-std_en_xs_regular-line-height);
  --letter-spacing: var(--typography-std_en_xs_regular-letter-spacing);
}
.g-header__hm-line .text .close {
  display: none;
}
.g-header__hm-line .line {
  width: 24px;
  aspect-ratio: 24/6;
  position: relative;
}
.g-header__hm-line .line span {
  position: absolute;
  display: inline-block;
  transition: all var(--sec);
  height: 1px;
  width: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-dark);
}
.g-header__hm-line .line span:nth-of-type(1) {
  top: 0;
}
.g-header__hm-line .line span:nth-of-type(2) {
  top: 100%;
}
.g-header__hm {
  position: fixed;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  transition: all var(--sec);
  padding-block: var(--space-block-xl);
  background-color: color-mix(in srgb, var(--color-light) 90%, transparent);
}
.g-header__hm._panelactive {
  right: 0;
}
.g-header__hm .menu {
  padding-inline: var(--space-block-md);
}
.g-header__hm .menu a {
  padding-block: var(--space-block-xs);
  border-block-end: 1px solid var(--color-base);
  display: block;
}

html {
  scrollbar-gutter: stable;
}

body._fixed {
  overflow: hidden;
}

/*フッター*/
.g-footer .footer {
  display: grid;
  grid-template-columns: auto 70%;
  gap: var(--space-block-sm);
}
@media (width <= 768px) {
  .g-footer .footer {
    grid-template-columns: 1fr;
  }
}
.g-footer .footer__image {
  height: 600px;
}
@media (width <= 768px) {
  .g-footer .footer__image {
    height: 300px;
  }
}
.g-footer .footer__image img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  position: fixed;
  top: 0;
  z-index: -1;
}
.g-footer .footer__head {
  margin-inline-start: 30px;
  margin-block-start: calc(var(--space-block-lg) * -1);
}
@media (width <= 768px) {
  .g-footer .footer__head {
    margin-inline: auto;
    margin-block-start: -60px;
    width: 100px;
  }
}
.g-footer .footer__body {
  margin-block: var(--space-block-lg);
  position: relative;
}
@media (width <= 768px) {
  .g-footer .footer__body {
    margin-block-start: 0;
  }
}
.g-footer .footer__body .pagetop {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--sec);
}
.g-footer .footer__body .pagetop:focus-visible {
  opacity: var(--opacity);
}
@media (hover: hover) and (pointer: fine) {
  .g-footer .footer__body .pagetop:hover {
    opacity: var(--opacity);
  }
}
.g-footer .contact__column {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: var(--space-block-xs);
  padding-block-end: var(--space-block-lg);
  border-block-end: 1px solid var(--color-base2);
  margin-block-end: var(--space-block-md);
}
@media (width <= 1060px) {
  .g-footer .contact__column {
    grid-template-columns: 1fr;
  }
}
.g-footer .contact__item {
  border: 1px solid var(--color-base2);
  padding: var(--space-block-sm) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-footer .contact__item .title {
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
}
.g-footer .contact__item .tel {
  font-family: var(--typography-dsp_en_xxl_regular-font-family);
  font-weight: var(--typography-dsp_en_xxl_regular-font-weight);
  font-size: var(--typography-dsp_en_xxl_regular-font-size);
  line-height: var(--typography-dsp_en_xxl_regular-line-height);
  --letter-spacing: var(--typography-dsp_en_xxl_regular-letter-spacing);
  pointer-events: none;
}
@media (width <= 768px) {
  .g-footer .contact__item .tel {
    pointer-events: all;
  }
}
.g-footer .contact__item .mail {
  font-family: var(--typography-dsp_en_xxl_regular-font-family);
  font-weight: var(--typography-dsp_en_xxl_regular-font-weight);
  font-size: var(--typography-dsp_en_xxl_regular-font-size);
  line-height: var(--typography-dsp_en_xxl_regular-line-height);
  --letter-spacing: var(--typography-dsp_en_xxl_regular-letter-spacing);
}
@media (width <= 768px) {
  .g-footer .contact__item .mail {
    font-size: 1.125rem;
  }
}
.g-footer .contact__item .sub {
  font-family: var(--typography-std_jp_small_regular-font-family);
  font-weight: var(--typography-std_jp_small_regular-font-weight);
  font-size: var(--typography-std_jp_small_regular-font-size);
  line-height: var(--typography-std_jp_small_regular-line-height);
  --letter-spacing: var(--typography-std_jp_small_regular-letter-spacing);
}
.g-footer .contact__info .info__head {
  display: flex;
  align-items: center;
  gap: var(--space-block-sm);
  margin-block-end: var(--space-block-sm);
}
.g-footer .contact__info .info__head .name {
  font-family: var(--typography-std_jp_xxl_bold-font-family);
  font-weight: var(--typography-std_jp_xxl_bold-font-weight);
  font-size: var(--typography-std_jp_xxl_bold-font-size);
  line-height: var(--typography-std_jp_xxl_bold-line-height);
  --letter-spacing: var(--typography-std_jp_xxl_bold-letter-spacing);
}
.g-footer .contact__info .info__head .sns {
  display: flex;
  margin-block-start: 4px;
  border-radius: 50%;
  overflow: hidden;
  transition: opacity var(--sec);
}
.g-footer .contact__info .info__head .sns:focus-visible {
  opacity: var(--opacity);
}
@media (hover: hover) and (pointer: fine) {
  .g-footer .contact__info .info__head .sns:hover {
    opacity: var(--opacity);
  }
}
.g-footer .contact__info .info__body {
  font-family: var(--typography-std_jp_small_regular-font-family);
  font-weight: var(--typography-std_jp_small_regular-font-weight);
  font-size: var(--typography-std_jp_small_regular-font-size);
  line-height: var(--typography-std_jp_small_regular-line-height);
  --letter-spacing: var(--typography-std_jp_small_regular-letter-spacing);
  margin-block-end: var(--space-block-sm);
}
.g-footer .contact__info .info__body .text:not(:last-child) {
  margin-block-end: var(--space-block-xs);
}
.g-footer .contact__info .info__body .text .tel {
  pointer-events: none;
}
@media (width <= 768px) {
  .g-footer .contact__info .info__body .text .tel {
    pointer-events: all;
  }
}
.g-footer .contact__info .copy {
  font-family: var(--typography-std_jp_small_regular-font-family);
  font-weight: var(--typography-std_jp_small_regular-font-weight);
  font-size: var(--typography-std_jp_small_regular-font-size);
  line-height: var(--typography-std_jp_small_regular-line-height);
  --letter-spacing: var(--typography-std_jp_small_regular-letter-spacing);
  color: var(--color-base3);
}

/*メイン*/
.g-main {
  display: block;
  background-color: var(--color-light);
}
.g-main:after {
  content: " ";
  display: block;
  clear: both;
}

.q-message .column {
  display: grid;
  grid-template-columns: auto 66%;
  justify-content: space-between;
  align-items: start;
  gap: 0 var(--space-block-sm);
}
@media (width <= 980px) {
  .q-message .column {
    grid-template-columns: 1fr;
  }
}
.q-message .column__head {
  margin-block-start: -20px;
}
.q-message .column__body .title {
  font-family: var(--typography-std_jp_large_bold-font-family);
  font-weight: var(--typography-std_jp_large_bold-font-weight);
  font-size: var(--typography-std_jp_large_bold-font-size);
  line-height: var(--typography-std_jp_large_bold-line-height);
  --letter-spacing: var(--typography-std_jp_large_bold-letter-spacing);
  margin-block-end: var(--space-block-sm);
}

@media (768px <= width <= 880px) {
  .q-place .place__mv {
    height: 500px;
    overflow: hidden;
  }
}
.q-place .place__mv img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 10%;
}
.q-place .place__head {
  display: grid;
  grid-template-columns: auto 85%;
  align-items: start;
  gap: var(--space-block-md);
  margin-block-end: var(--space-block-md);
}
@media (width <= 768px) {
  .q-place .place__head {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.q-place .place__column {
  display: grid;
  grid-template-columns: 1fr 64%;
  gap: var(--space-block-sm);
  margin-block-start: 60px;
}
@media (width <= 880px) {
  .q-place .place__column {
    grid-template-columns: 1fr;
    margin-block-start: 0;
  }
}
.q-place .place__title {
  position: relative;
  z-index: 1;
  margin-block-start: -20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.q-place .place__title .number {
  text-align: center;
  font-family: var(--typography-dsp_en_xxxl_light-font-family);
  font-weight: var(--typography-dsp_en_xxxl_light-font-weight);
  font-size: var(--typography-dsp_en_xxxl_light-font-size);
  line-height: var(--typography-dsp_en_xxxl_light-line-height);
  --letter-spacing: var(--typography-dsp_en_xxxl_light-letter-spacing);
}
.q-place .place__title .title {
  font-family: var(--typography-std_jp_xxl_bold-font-family);
  font-weight: var(--typography-std_jp_xxl_bold-font-weight);
  font-size: var(--typography-std_jp_xxl_bold-font-size);
  line-height: var(--typography-std_jp_xxl_bold-line-height);
  --letter-spacing: var(--typography-std_jp_xxl_bold-letter-spacing);
  writing-mode: vertical-rl;
}
.q-place .place__deco {
  position: absolute;
  top: 50px;
  left: 0;
  z-index: -1;
}
@media (width <= 768px) {
  .q-place .place__deco {
    width: 126px;
    left: 50%;
    translate: -50% 0;
  }
}

.q-stay .stay {
  margin-block-end: var(--space-block-lg);
}
@media (width <= 768px) {
  .q-stay .stay {
    margin-block-end: 200px;
  }
}
@media (768px <= width <= 880px) {
  .q-stay .stay__mv {
    height: 500px;
    overflow: hidden;
  }
}
.q-stay .stay__mv img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 10%;
}
.q-stay .stay__image {
  margin-block-end: var(--space-block-sm);
}
.q-stay .stay__head .column {
  display: grid;
  grid-template-columns: auto 62%;
  gap: 0 var(--space-block-sm);
}
@media (width <= 768px) {
  .q-stay .stay__head .column {
    grid-template-columns: 1fr;
  }
}
.q-stay .stay__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-block-md);
}
@media (width <= 768px) {
  .q-stay .stay__body {
    grid-template-columns: 1fr;
  }
}
.q-stay .food__image {
  margin-block-end: var(--space-block-sm);
  position: relative;
}
.q-stay .food__title {
  position: absolute;
  top: -40px;
  left: 20px;
  display: grid;
  justify-items: center;
  z-index: 1;
}
@media (width <= 768px) {
  .q-stay .food__title {
    top: -150px;
    left: 50%;
    translate: -50% 0;
  }
}
.q-stay .food__title .title {
  font-family: var(--typography-std_jp_xxl_bold-font-family);
  font-weight: var(--typography-std_jp_xxl_bold-font-weight);
  font-size: var(--typography-std_jp_xxl_bold-font-size);
  line-height: var(--typography-std_jp_xxl_bold-line-height);
  --letter-spacing: var(--typography-std_jp_xxl_bold-letter-spacing);
  writing-mode: vertical-rl;
  color: var(--color-light);
  grid-area: 1/1;
  margin-inline-start: 50px;
}
.q-stay .food__title .deco {
  grid-area: 1/1;
  position: relative;
  z-index: -1;
  width: 258px;
}

