@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho:wght@400;500;600;700&family=Zen+Old+Mincho:wght@400;500;600;700&display=swap");
:root {
  --font: 'Zen Old Mincho','Noto Sans JP','游ゴシック', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', serif;
  --font-min: 'Shippori Mincho', serif;
  --font-en: 'Zen Old Mincho', serif;
  --bg-color: #fff;
  --text-color: #30281f;
  --main-color: #4f5b2f;
  --sub-color: #6f7652;
  --muted-color: #5e564c;
  --paper-color: #fffdf8;
  --paper-sub-color: #f7f1e7;
  --w:0;
  --w-pc:1440;
  --w-sp:375;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  tab-size: 4;
}

body {
  margin: 0;
  line-height: 1.4;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}

p, li, dt, dl, dd {
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

hr {
  height: 0;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

button, input, optgroup, select, textarea {
  font: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
}

button, select {
  text-transform: none;
}

button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
  box-shadow: none;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

[class^=p-index-] p, [class^=p-index-] h1, [class^=p-index-] h2, [class^=p-index-] h3, [class^=p-index-] ul, [class^=p-index-] dl, [class^=p-index-] dt, [class^=p-index-] dd, [class^=p-index-] figure, [class^=p-index-] blockquote,
[class*=" p-index-"] p,
[class*=" p-index-"] h1,
[class*=" p-index-"] h2,
[class*=" p-index-"] h3,
[class*=" p-index-"] ul,
[class*=" p-index-"] dl,
[class*=" p-index-"] dt,
[class*=" p-index-"] dd,
[class*=" p-index-"] figure,
[class*=" p-index-"] blockquote {
  margin: 0px;
}
[class^=p-index-] ul,
[class*=" p-index-"] ul {
  padding: 0px;
  list-style: none;
}
[class^=p-index-] img,
[class*=" p-index-"] img {
  display: block;
}

body {
  background-color: var(--bg-color);
  font-family: var(--font);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

img {
  width: 100%;
}

.u-en {
  font-family: var(--font-en);
}

.u-min {
  font-family: var(--font-min);
}

.u-fw-normal {
  font-weight: normal !important;
}

.u-fw-bold {
  font-weight: bold !important;
}

.u-td-u {
  text-decoration: underline !important;
}

.u-td-n {
  text-decoration: none !important;
}

.u-ta-l {
  text-align: left !important;
}

.u-ta-c {
  text-align: center !important;
}

.u-ta-r {
  text-align: right !important;
}

.c-anim {
  transition-delay: 0.2s;
  transition-duration: 0.7s;
}
.c-anim.is-skip {
  transition: none !important;
  animation: none !important;
}
.c-anim.is-fade {
  opacity: 0;
}
.c-anim.is-fade.is-active {
  opacity: 1;
}
.c-anim.is-top {
  opacity: 0;
  transform: translate(0, -100px);
}
.c-anim.is-top.is-active {
  opacity: 1;
  transform: translate(0, 0);
}
.c-anim.is-bottom {
  opacity: 0;
  transform: translate(0, 50px);
}
.c-anim.is-bottom.is-active {
  opacity: 1;
  transform: translate(0, 0);
}
.c-anim.is-left {
  opacity: 0;
  transform: translate(-100px, 0);
}
.c-anim.is-left.is-active {
  opacity: 1;
  transform: translate(0, 0);
}
.c-anim {
  /* Delay Utils */
}
.c-anim.is-delay-00 {
  transition-delay: 0s;
}
.c-anim.is-delay-01 {
  transition-delay: 0.1s;
}
.c-anim.is-delay-02 {
  transition-delay: 0.2s;
}
.c-anim.is-delay-03 {
  transition-delay: 0.3s;
}
.c-anim.is-delay-04 {
  transition-delay: 0.4s;
}
.c-anim.is-delay-05 {
  transition-delay: 0.5s;
}
.c-anim.is-delay-06 {
  transition-delay: 0.6s;
}
.c-anim.is-delay-07 {
  transition-delay: 0.7s;
}
.c-anim.is-delay-08 {
  transition-delay: 0.8s;
}
.c-anim.is-delay-09 {
  transition-delay: 0.9s;
}
.c-anim.is-delay-10 {
  transition-delay: 1s;
}

@media print, screen and (min-width: 768px) {
  :root {
    --w: var(--w-pc) ;
  }
  .u-sp {
    display: none;
  }
  .l-wrapper {
    overflow: clip;
  }
  .l-inner {
    position: relative;
    margin: 0 auto;
    max-width: calc(1200 / var(--w) * 100vw);
  }
  .l-header {
    position: relative;
    z-index: 10;
    height: calc(80 / var(--w) * 100vw);
    background: var(--paper-color);
  }
  .l-header ._inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(1284 / var(--w) * 100vw);
    height: 100%;
    margin: 0 auto;
  }
  .l-header ._brand {
    display: flex;
    gap: calc(30 / var(--w) * 100vw);
    align-items: center;
    text-decoration: none;
  }
  .l-header ._brand img {
    display: block;
    width: calc(207 / var(--w) * 100vw);
  }
  .l-header ._tagline {
    color: #6f7652;
    font-size: calc(13 / var(--w) * 100vw);
    line-height: 100%;
    letter-spacing: 0.08em;
    font-weight: 700;
    white-space: nowrap;
  }
  .l-header ._nav {
    display: flex;
    gap: calc(18 / var(--w) * 100vw);
    align-items: center;
  }
  .l-header ._nav a {
    color: #5e564c;
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 100%;
    text-decoration: none;
  }
  .l-header ._nav ._reserve {
    display: flex;
    align-items: center;
    min-height: calc(42 / var(--w) * 100vw);
    padding: 0 calc(20 / var(--w) * 100vw);
    border-radius: calc(999 / var(--w) * 100vw);
    background: #4f5b2f;
    color: #fffdf8;
    font-weight: 700;
  }
  .l-modal-menu {
    display: none;
  }
  .l-footer {
    padding: calc(52 / var(--w) * 100vw) 0;
    background: #4f5b2f;
  }
  .l-footer ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(14 / var(--w) * 100vw);
    align-items: center;
    color: #fffdf8;
    text-align: center;
  }
  .l-footer ._brand {
    display: flex;
    gap: calc(12 / var(--w) * 100vw);
    align-items: center;
  }
  .l-footer ._brand img {
    width: calc(22 / var(--w) * 100vw);
  }
  .l-footer ._brand p {
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
  .l-footer ._nav {
    display: flex;
    gap: calc(10 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: calc(22 / var(--w) * 100vw);
  }
  .l-footer ._nav a {
    color: #fffdf8;
    font-size: calc(13 / var(--w) * 100vw);
    line-height: 160%;
    letter-spacing: 0.06em;
    text-decoration: none;
  }
  .l-footer p, .l-footer small {
    color: #fffdf8;
    font-size: calc(12 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.04em;
  }
  .c-pagelink-offset {
    position: absolute;
    top: calc(-100 / var(--w) * 100vw);
    left: 0;
  }
  .c-modal-menu-btn {
    display: none;
  }
  .c-section-head {
    display: flex;
    flex-direction: column;
    gap: calc(10 / var(--w) * 100vw);
    align-items: center;
    text-align: center;
  }
  .c-section-head ._en {
    color: #6f7652;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.4em;
    font-weight: 400;
    text-transform: uppercase;
  }
  .c-section-head h2 {
    color: #30281f;
    font-size: calc(32 / var(--w) * 100vw);
    line-height: 140%;
    letter-spacing: 0.04em;
    font-weight: 600;
  }
  .c-section-head h2 span {
    color: #937a45;
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 180%;
    letter-spacing: 0.1em;
  }
  .c-section-head p {
    color: #5e564c;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
  }
  .c-section-head::after {
    content: "";
    width: calc(1 / var(--w) * 100vw);
    height: calc(56 / var(--w) * 100vw);
    order: 2;
    background: #6f7652;
  }
  .c-section-head ._en {
    order: 1;
  }
  .c-section-head h2 {
    order: 3;
  }
  .c-section-head p {
    order: 4;
  }
  .c-section-head.is-left {
    align-items: flex-start;
    text-align: left;
  }
  .c-section-head.is-left ._en {
    order: 1;
  }
  .c-section-head.is-left::after {
    width: calc(48 / var(--w) * 100vw);
    height: calc(1 / var(--w) * 100vw);
    order: 3;
  }
  .c-section-head.is-left h2 {
    order: 2;
  }
  .c-section-head.is-left p {
    order: 4;
  }
  .c-section-head.is-white ._en, .c-section-head.is-white h2 {
    color: #fffdf8;
  }
  .c-section-head.is-white::after {
    background: #fffdf8;
  }
  .c-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: calc(52 / var(--w) * 100vw);
    padding: 0 calc(28 / var(--w) * 100vw);
    border-radius: calc(999 / var(--w) * 100vw);
    border: calc(1 / var(--w) * 100vw) solid #4f5b2f;
    color: #4f5b2f;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 100%;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-decoration: none;
  }
  .c-btn::after {
    content: "";
    width: calc(16 / var(--w) * 100vw);
    height: calc(16 / var(--w) * 100vw);
    margin-left: calc(12 / var(--w) * 100vw);
    background: url("../img/common/icon-arrow.webp") center center/contain no-repeat;
    flex-shrink: 0;
  }
  .c-btn.is-fill {
    background: #4f5b2f;
    color: #fffdf8;
  }
  .c-btn.is-light {
    background: #f6f1e7;
    border-color: #fffdf8;
  }
  .c-btn.is-outline {
    border-color: #fff;
    color: #fff;
  }
  .c-btn.is-fill::after, .c-btn.is-outline::after {
    background: url("../img/common/icon-arrow-wh.webp") center center/contain no-repeat;
  }
  .p-index-mv {
    height: calc(100vh - 80px);
    max-height: 60vw;
  }
  .p-index-mv {
    position: relative;
    overflow: hidden;
    background: #fffdf8 linear-gradient(132deg, #fffdf8 6%, #f7f1e7 94%);
  }
  .p-index-mv::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(720 / var(--w) * 100vw);
    height: 100%;
    background: #fffdf8 url("../img/mv/bg.jpg") center center/cover no-repeat;
  }
  .p-index-mv ._copy {
    position: absolute;
    top: calc(2 / var(--w) * 100vw);
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: calc(10 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
    width: calc(720 / var(--w) * 100vw);
    height: 100%;
  }
  .p-index-mv ._title {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #30281f;
    font-size: calc(36 / var(--w) * 100vw);
    line-height: 150%;
    letter-spacing: 0.125em;
    font-weight: 500;
    text-align: center;
  }
  .p-index-mv ._title span {
    position: relative;
    display: block;
    border-bottom: calc(1 / var(--w) * 100vw) solid #c9b98f;
  }
  .p-index-mv ._lead {
    color: #5e564c;
    margin-top: calc(10 / var(--w) * 100vw);
    font-size: calc(18 / var(--w) * 100vw);
    line-height: 172%;
    letter-spacing: 0.22em;
    font-weight: 500;
    text-align: center;
  }
  .p-index-mv ._points {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(620 / var(--w) * 100vw);
  }
  .p-index-mv ._points li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(155 / var(--w) * 100vw);
    min-height: calc(160 / var(--w) * 100vw);
    padding: calc(18 / var(--w) * 100vw) calc(10 / var(--w) * 100vw);
    text-align: center;
  }
  .p-index-mv ._points li + li::before {
    content: "";
    position: absolute;
    top: calc(20 / var(--w) * 100vw);
    bottom: calc(20 / var(--w) * 100vw);
    left: 0;
    width: calc(1 / var(--w) * 100vw);
    background: #c9b98f;
  }
  .p-index-mv ._points img {
    width: calc(80 / var(--w) * 100vw);
    height: calc(80 / var(--w) * 100vw);
    object-fit: contain;
  }
  .p-index-mv ._points strong {
    color: #4f5b2f;
    font-size: calc(20 / var(--w) * 100vw);
    line-height: 169%;
    letter-spacing: 0.1em;
    font-weight: 700;
    white-space: nowrap;
  }
  .p-index-mv ._points span {
    color: #5e564c;
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 140%;
    letter-spacing: 0.2em;
    font-weight: 500;
  }
  .p-index-mv ._leaf {
    position: absolute;
    top: calc(14 / var(--w) * 100vw);
    left: calc(-50 / var(--w) * 100vw);
    z-index: 3;
    width: calc(42 / var(--w) * 100vw);
    transform: rotate(37.73deg);
  }
  .p-index-mv ._images {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(720 / var(--w) * 100vw);
    height: 100%;
  }
  .p-index-mv ._photo {
    position: absolute;
    object-fit: cover;
  }
  .p-index-mv ._photo.is-main {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(720 / var(--w) * 100vw);
    height: 60%;
  }
  .p-index-mv ._photo.is-sub-left {
    position: absolute;
    top: 60%;
    left: 0;
    width: calc(360 / var(--w) * 100vw);
    height: 40%;
  }
  .p-index-mv ._photo.is-sub-right {
    position: absolute;
    top: 60%;
    left: calc(360 / var(--w) * 100vw);
    width: calc(360 / var(--w) * 100vw);
    height: 40%;
  }
  .p-index-intro {
    position: relative;
    min-height: calc(1435 / var(--w) * 100vw);
    overflow: hidden;
    padding: calc(80 / var(--w) * 100vw) 0;
    background: #fffdf8 url("../img/intro/bg.webp") center top/cover no-repeat;
  }
  .p-index-intro ._inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: calc(30 / var(--w) * 100vw);
    align-items: center;
    width: calc(1268 / var(--w) * 100vw);
    margin: 0 auto;
  }
  .p-index-intro ._kicker {
    color: #30281f;
    font-size: calc(32 / var(--w) * 100vw);
    line-height: 140%;
    font-weight: 400;
    text-align: center;
  }
  .p-index-intro ._deco {
    width: calc(280 / var(--w) * 100vw);
  }
  .p-index-intro ._question {
    color: #30281f;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 200%;
    text-align: center;
  }
  .p-index-intro ._check-list {
    display: flex;
    flex-direction: column;
    gap: calc(10 / var(--w) * 100vw);
    width: calc(397 / var(--w) * 100vw);
  }
  .p-index-intro ._check-list.is-positive {
    width: calc(516 / var(--w) * 100vw);
  }
  .p-index-intro ._check-list li {
    position: relative;
    min-height: calc(31 / var(--w) * 100vw);
    padding-left: calc(33 / var(--w) * 100vw);
    color: #30281f;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 160%;
  }
  .p-index-intro ._check-list li::before {
    content: "";
    position: absolute;
    top: calc(-2 / var(--w) * 100vw);
    left: 0;
    width: calc(22 / var(--w) * 100vw);
    height: calc(31 / var(--w) * 100vw);
    background: url("../img/intro/deco3.webp") center center/contain no-repeat;
  }
  .p-index-intro ._message {
    width: calc(452 / var(--w) * 100vw);
    color: #30281f;
    font-size: calc(20 / var(--w) * 100vw);
    line-height: 200%;
    text-align: center;
  }
  .p-index-intro ._but {
    width: calc(452 / var(--w) * 100vw);
    color: #30281f;
    font-size: calc(32 / var(--w) * 100vw);
    line-height: 140%;
    text-align: center;
  }
  .p-index-intro ._divider {
    width: calc(1 / var(--w) * 100vw);
    height: calc(50 / var(--w) * 100vw);
    background: #b9a377;
  }
  .p-index-intro ._closing {
    display: flex;
    flex-direction: column;
    gap: calc(10 / var(--w) * 100vw);
    align-items: center;
    color: #30281f;
    text-align: center;
  }
  .p-index-intro ._closing p {
    width: calc(643 / var(--w) * 100vw);
    font-size: calc(22 / var(--w) * 100vw);
    line-height: 140%;
  }
  .p-index-intro ._closing strong {
    width: calc(643 / var(--w) * 100vw);
    font-size: calc(32 / var(--w) * 100vw);
    line-height: 140%;
    font-weight: 400;
  }
  .p-index-intro ._leaf {
    width: calc(164 / var(--w) * 100vw);
    transform: rotate(24.17deg);
  }
  .p-index-greeting {
    padding: calc(140 / var(--w) * 100vw) 0;
    background: #f6f1e7;
  }
  .p-index-greeting ._inner {
    display: flex;
    gap: calc(80 / var(--w) * 100vw);
    align-items: center;
  }
  .p-index-greeting ._photo {
    width: calc(360 / var(--w) * 100vw);
  }
  .p-index-greeting ._photo img {
    height: calc(440 / var(--w) * 100vw);
    border-radius: calc(20 / var(--w) * 100vw);
    object-fit: cover;
  }
  .p-index-greeting ._body {
    display: flex;
    flex-direction: column;
    gap: calc(20 / var(--w) * 100vw);
    width: calc(640 / var(--w) * 100vw);
    color: #30281f;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
  }
  .p-index-greeting ._license {
    color: #6f7652;
    font-size: calc(12 / var(--w) * 100vw);
    letter-spacing: 0.04em;
  }
  .p-index-commitment {
    padding: calc(140 / var(--w) * 100vw) 0;
    background: #4f5b2f;
  }
  .p-index-commitment ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(40 / var(--w) * 100vw);
  }
  .p-index-commitment ._items {
    display: flex;
    flex-direction: column;
    gap: calc(40 / var(--w) * 100vw);
  }
  .p-index-commitment ._item {
    display: flex;
    flex-direction: column;
    gap: calc(18 / var(--w) * 100vw);
    align-items: center;
  }
  .p-index-commitment ._item-head {
    display: flex;
    flex-direction: column;
    gap: calc(18 / var(--w) * 100vw);
    align-items: center;
  }
  .p-index-commitment ._item-head img {
    width: calc(116 / var(--w) * 100vw);
    height: calc(116 / var(--w) * 100vw);
  }
  .p-index-commitment ._item-head h3 {
    color: #fffdf8;
    font-size: calc(20 / var(--w) * 100vw);
    line-height: 180%;
    letter-spacing: 0.04em;
    font-weight: 700;
  }
  .p-index-commitment ._item-body {
    display: flex;
    gap: calc(40 / var(--w) * 100vw);
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    padding: calc(20 / var(--w) * 100vw) calc(48 / var(--w) * 100vw);
  }
  .p-index-commitment ._item-body img {
    width: calc(396 / var(--w) * 100vw);
    height: calc(240 / var(--w) * 100vw);
    border-radius: calc(20 / var(--w) * 100vw);
    object-fit: cover;
  }
  .p-index-commitment ._item-body p {
    width: calc(500 / var(--w) * 100vw);
    color: #fffdf8;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
  }
  .p-index-commitment ._item.is-reverse ._item-body {
    flex-direction: row-reverse;
  }
  .p-index-spa {
    position: relative;
    padding: calc(140 / var(--w) * 100vw) 0;
    background: #fffdf8 url("../img/spa/bg.webp") center center/cover no-repeat;
  }
  .p-index-spa ._inner {
    display: flex;
    gap: calc(80 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
    width: calc(1080 / var(--w) * 100vw);
    margin: 0 auto;
  }
  .p-index-spa ._body {
    display: flex;
    flex-direction: column;
    gap: calc(20 / var(--w) * 100vw);
    width: calc(524 / var(--w) * 100vw);
    color: #30281f;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
  }
  .p-index-spa ._photo {
    width: calc(380 / var(--w) * 100vw);
  }
  .p-index-spa ._photo img {
    height: calc(420 / var(--w) * 100vw);
    border-radius: calc(20 / var(--w) * 100vw);
    object-fit: cover;
  }
  .p-index-care {
    padding: calc(140 / var(--w) * 100vw) 0;
    background: #f6f1e7;
  }
  .p-index-care ._content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(960 / var(--w) * 100vw);
    margin: 0 auto;
  }
  .p-index-care ._cards {
    display: flex;
    flex-direction: column;
    gap: calc(20 / var(--w) * 100vw);
    width: calc(520 / var(--w) * 100vw);
    margin-top: calc(40 / var(--w) * 100vw);
  }
  .p-index-care ._card {
    display: flex;
    flex-direction: column;
    gap: calc(20 / var(--w) * 100vw);
    align-items: center;
    width: calc(520 / var(--w) * 100vw);
    padding: calc(49 / var(--w) * 100vw);
    border: calc(1 / var(--w) * 100vw) solid rgba(111, 118, 82, 0.4);
    border-radius: calc(20 / var(--w) * 100vw);
    background: #fffdf8;
    text-align: center;
  }
  .p-index-care ._card img {
    width: calc(60 / var(--w) * 100vw);
    height: calc(60 / var(--w) * 100vw);
  }
  .p-index-care ._card h3 {
    width: calc(504 / var(--w) * 100vw);
    color: #30281f;
    font-size: calc(18 / var(--w) * 100vw);
    line-height: 180%;
    letter-spacing: 0.04em;
  }
  .p-index-care ._card p {
    width: calc(431 / var(--w) * 100vw);
    color: #30281f;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
  }
  .p-index-read {
    padding: calc(140 / var(--w) * 100vw) 0;
    background: #fffdf8;
  }
  .p-index-read ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(20 / var(--w) * 100vw);
  }
  .p-index-read ._lead {
    font-size: calc(20 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
  }
  .p-index-read p {
    color: #30281f;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
  }
  .p-index-read ._alert-list {
    display: flex;
    flex-direction: column;
    padding: calc(48 / var(--w) * 100vw) calc(49 / var(--w) * 100vw);
    border: calc(1 / var(--w) * 100vw) solid rgba(111, 118, 82, 0.4);
    border-radius: calc(20 / var(--w) * 100vw);
  }
  .p-index-read ._alert-list li {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(71 / var(--w) * 100vw);
    padding-left: calc(36 / var(--w) * 100vw);
    border-bottom: calc(1 / var(--w) * 100vw) solid rgba(111, 118, 82, 0.28);
  }
  .p-index-read ._alert-list li:last-child {
    border-bottom: 0;
  }
  .p-index-read ._alert-list li::before {
    content: "";
    position: absolute;
    top: calc(22 / var(--w) * 100vw);
    left: 0;
    width: calc(20 / var(--w) * 100vw);
    height: calc(20 / var(--w) * 100vw);
    background: url("../img/common/icon-alert.webp") center center/contain no-repeat;
  }
  .p-index-read ._alert-list li strong {
    width: calc(320 / var(--w) * 100vw);
    color: #30281f;
    font-size: calc(20 / var(--w) * 100vw);
    line-height: 200%;
  }
  .p-index-read ._alert-list li span {
    flex: 1;
    color: #30281f;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 200%;
  }
  .p-index-patch {
    padding: calc(140 / var(--w) * 100vw) 0;
    background: #4f5b2f;
  }
  .p-index-patch .c-section-head ._en, .p-index-patch .c-section-head h2 {
    color: #fffdf8;
  }
  .p-index-patch .c-section-head h2 span {
    color: #fffdf8;
  }
  .p-index-patch .c-section-head::after {
    background: #fffdf8;
  }
  .p-index-patch ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(40 / var(--w) * 100vw);
    align-items: center;
    width: calc(860 / var(--w) * 100vw);
    margin: 0 auto;
  }
  .p-index-patch ._box {
    padding: calc(48 / var(--w) * 100vw);
    border: calc(1 / var(--w) * 100vw) solid rgba(111, 118, 82, 0.4);
    border-radius: calc(20 / var(--w) * 100vw);
    background: #fffdf8;
    color: #30281f;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
  }
  .p-index-patch ._alert {
    position: relative;
    padding-left: calc(32 / var(--w) * 100vw);
    font-size: calc(20 / var(--w) * 100vw);
    line-height: 200%;
  }
  .p-index-patch ._alert::before {
    content: "";
    position: absolute;
    top: calc(8 / var(--w) * 100vw);
    left: 0;
    width: calc(22 / var(--w) * 100vw);
    height: calc(22 / var(--w) * 100vw);
    background: url("../img/common/icon-alert.webp") center center/contain no-repeat;
  }
  .p-index-patch .c-btn {
    background: #fffdf8;
    border-color: #6f7652;
    color: #6f7652;
  }
  .p-index-natural {
    padding: calc(230 / var(--w) * 100vw) 0 calc(140 / var(--w) * 100vw);
    background: #fffdf8 url("../img/kodawari/bg.webp") center center/cover no-repeat;
    text-align: center;
  }
  .p-index-natural ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(30 / var(--w) * 100vw);
    align-items: center;
    width: calc(780 / var(--w) * 100vw);
    margin: 0 auto;
  }
  .p-index-natural h2 {
    color: #30281f;
    font-size: calc(32 / var(--w) * 100vw);
    line-height: 140%;
    letter-spacing: 0.04em;
    font-weight: 500;
  }
  .p-index-natural h2::after {
    content: "";
    display: block;
    width: calc(1 / var(--w) * 100vw);
    height: calc(56 / var(--w) * 100vw);
    margin: calc(20 / var(--w) * 100vw) auto 0;
    background: #6f7652;
  }
  .p-index-natural p {
    color: #30281f;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
  }
  .p-index-menu {
    position: relative;
    overflow: hidden;
    padding: calc(140 / var(--w) * 100vw) 0;
    background: #f6f1e7 url("../img/menu/bg.webp") center center/cover no-repeat;
  }
  .p-index-menu ._inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: calc(40 / var(--w) * 100vw);
  }
  .p-index-menu ._debut {
    display: flex;
    gap: calc(10 / var(--w) * 100vw);
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: calc(48 / var(--w) * 100vw);
    border-radius: calc(20 / var(--w) * 100vw);
    background: #4f5b2f;
    color: #fffdf8;
  }
  .p-index-menu ._debut ._debut-body {
    width: calc(770 / var(--w) * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(4 / var(--w) * 100vw);
  }
  .p-index-menu ._debut p {
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.04em;
  }
  .p-index-menu ._debut h3 {
    font-size: calc(32 / var(--w) * 100vw);
    line-height: 140%;
    letter-spacing: 0.04em;
  }
  .p-index-menu ._debut strong {
    font-size: calc(36 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
  }
  .p-index-menu ._debut .c-btn {
    margin-top: calc(10 / var(--w) * 100vw);
  }
  .p-index-menu ._list {
    padding: calc(9 / var(--w) * 100vw) calc(49 / var(--w) * 100vw);
    border: calc(1 / var(--w) * 100vw) solid rgba(111, 118, 82, 0.4);
    border-radius: calc(20 / var(--w) * 100vw);
    background: #fffdf8;
  }
  .p-index-menu ._list dl {
    display: flex;
    flex-direction: column;
  }
  .p-index-menu ._list div {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(86 / var(--w) * 100vw);
    padding-right: calc(140 / var(--w) * 100vw);
    border-bottom: calc(1 / var(--w) * 100vw) solid rgba(111, 118, 82, 0.28);
  }
  .p-index-menu ._list div:last-child {
    border-bottom: 0;
  }
  .p-index-menu ._list dt {
    color: #30281f;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
    font-weight: 700;
  }
  .p-index-menu ._list dd {
    color: #5e564c;
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.04em;
  }
  .p-index-menu ._list ._price {
    position: absolute;
    top: 50%;
    right: 0;
    color: #30281f;
    font-size: calc(20 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
    font-weight: 700;
    transform: translateY(-50%);
  }
  .p-index-payment {
    display: flex;
    min-height: calc(743 / var(--w) * 100vw);
    background: #fffdf8;
  }
  .p-index-payment ._body {
    display: flex;
    flex-direction: column;
    gap: calc(40 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
    width: calc(960 / var(--w) * 100vw);
    padding: calc(140 / var(--w) * 100vw) 0;
    text-align: center;
  }
  .p-index-payment ._body p {
    color: #30281f;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
  }
  .p-index-payment ._pay {
    width: calc(650 / var(--w) * 100vw);
  }
  .p-index-payment ._photo {
    width: calc(480 / var(--w) * 100vw);
  }
  .p-index-payment ._photo img {
    height: calc(743 / var(--w) * 100vw);
    object-fit: cover;
  }
  .p-index-privilege {
    padding: calc(140 / var(--w) * 100vw) 0;
    background: #fffdf8;
  }
  .p-index-privilege ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(40 / var(--w) * 100vw);
    align-items: center;
    width: calc(800 / var(--w) * 100vw);
    margin: 0 auto;
  }
  .p-index-privilege p {
    color: #30281f;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
  }
  .p-index-privilege ._offer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(800 / var(--w) * 100vw);
    padding: calc(56 / var(--w) * 100vw);
    border-radius: calc(20 / var(--w) * 100vw);
    background: #4f5b2f;
    color: #fffdf8;
    text-align: center;
  }
  .p-index-privilege ._offer p, .p-index-privilege ._offer small {
    color: #fffdf8;
  }
  .p-index-privilege ._offer strong {
    color: #fffdf8;
    font-size: calc(42 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
  }
  .p-index-privilege ._offer em {
    color: #f9d382;
    font-size: calc(52 / var(--w) * 100vw);
    font-style: normal;
  }
  .p-index-privilege blockquote {
    color: #30281f;
    font-size: calc(20 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
    font-weight: 700;
  }
  .p-index-cancel {
    padding: calc(140 / var(--w) * 100vw) 0;
    background: #f6f1e7;
  }
  .p-index-cancel ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(40 / var(--w) * 100vw);
  }
  .p-index-cancel p, .p-index-cancel li {
    color: #30281f;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
  }
  .p-index-cancel ul {
    display: flex;
    flex-direction: column;
    gap: calc(6 / var(--w) * 100vw);
    font-weight: 700;
  }
  .p-index-extra {
    display: flex;
    width: 100%;
    background: #fffdf8;
  }
  .p-index-extra img {
    width: 100%;
    height: calc(300 / var(--w) * 100vw);
    object-fit: cover;
  }
  .p-index-extra.is-two img {
    width: 50%;
  }
  .p-index-faq {
    padding: calc(140 / var(--w) * 100vw) 0;
    background: #fffdf8;
  }
  .p-index-faq ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(40 / var(--w) * 100vw);
    align-items: center;
    width: calc(800 / var(--w) * 100vw);
    margin: 0 auto;
  }
  .p-index-faq ._faq-list {
    width: calc(800 / var(--w) * 100vw);
  }
  .p-index-faq ._faq-list div {
    padding: calc(26 / var(--w) * 100vw) 0;
    border-bottom: calc(1 / var(--w) * 100vw) solid rgba(111, 118, 82, 0.4);
  }
  .p-index-faq ._faq-list dt {
    color: #30281f;
    font-size: calc(18 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
    font-weight: 700;
    text-indent: -1.5em;
    padding-left: 1.5em;
  }
  .p-index-faq ._faq-list dd {
    color: #30281f;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
    text-indent: -1.5em;
    padding-left: 1.5em;
  }
  .p-index-reservation {
    padding: calc(140 / var(--w) * 100vw) 0;
    background: #4f5b2f;
  }
  .p-index-reservation .c-section-head ._en, .p-index-reservation .c-section-head h2 {
    color: #fffdf8;
  }
  .p-index-reservation .c-section-head::after {
    background: #fffdf8;
  }
  .p-index-reservation ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(40 / var(--w) * 100vw);
    align-items: center;
  }
  .p-index-reservation p {
    color: #fffdf8;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
    text-align: center;
  }
  .p-index-reservation ._methods {
    display: flex;
    gap: calc(40 / var(--w) * 100vw);
    justify-content: center;
    width: calc(1080 / var(--w) * 100vw);
  }
  .p-index-reservation ._methods article {
    display: flex;
    flex-direction: column;
    gap: calc(10 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
    width: calc(301 / var(--w) * 100vw);
    min-height: calc(290 / var(--w) * 100vw);
    border: calc(1 / var(--w) * 100vw) solid rgba(111, 118, 82, 0.25);
    border-radius: calc(20 / var(--w) * 100vw);
    background: #fffdf8;
  }
  .p-index-reservation ._methods img {
    width: calc(58 / var(--w) * 100vw);
    height: calc(58 / var(--w) * 100vw);
  }
  .p-index-reservation ._methods h3 {
    color: #4f5b2f;
    font-size: calc(18 / var(--w) * 100vw);
    line-height: 160%;
    letter-spacing: 0.04em;
  }
  .p-index-reservation ._note {
    width: calc(1080 / var(--w) * 100vw);
  }
  .p-index-message {
    padding: calc(140 / var(--w) * 100vw) 0;
    background: #fffdf8;
  }
  .p-index-message ._inner {
    display: flex;
    gap: calc(80 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
  }
  .p-index-message ._photo {
    width: calc(350 / var(--w) * 100vw);
  }
  .p-index-message ._photo img {
    height: calc(430 / var(--w) * 100vw);
    object-fit: cover;
  }
  .p-index-message ._body {
    display: flex;
    flex-direction: column;
    gap: calc(20 / var(--w) * 100vw);
    width: calc(650 / var(--w) * 100vw);
    color: #30281f;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
  }
  .p-index-message ._license {
    color: #6f7652;
    font-size: calc(12 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.04em;
  }
  .p-index-access {
    padding: calc(140 / var(--w) * 100vw) 0;
    background: #f6f1e7;
  }
  .p-index-access ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(40 / var(--w) * 100vw);
    align-items: center;
  }
  .p-index-access ._access-row {
    display: flex;
    gap: calc(40 / var(--w) * 100vw);
    width: calc(1080 / var(--w) * 100vw);
  }
  .p-index-access ._info {
    width: calc(520 / var(--w) * 100vw);
    padding: calc(49 / var(--w) * 100vw);
    border: calc(1 / var(--w) * 100vw) solid rgba(111, 118, 82, 0.4);
    border-radius: calc(20 / var(--w) * 100vw);
    background: #fffdf8;
  }
  .p-index-access ._info h3 {
    color: #30281f;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
    margin-bottom: calc(10 / var(--w) * 100vw);
  }
  .p-index-access ._info dl {
    display: flex;
    flex-direction: column;
  }
  .p-index-access ._info div {
    display: flex;
    padding: calc(13 / var(--w) * 100vw) 0;
    border-bottom: calc(1 / var(--w) * 100vw) solid rgba(111, 118, 82, 0.28);
  }
  .p-index-access ._info dt {
    width: calc(110 / var(--w) * 100vw);
    color: #30281f;
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 200%;
  }
  .p-index-access ._info dd {
    flex: 1;
    color: #30281f;
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
  }
  .p-index-access ._map {
    width: calc(520 / var(--w) * 100vw);
    height: calc(625 / var(--w) * 100vw);
    border: calc(1 / var(--w) * 100vw) solid rgba(111, 118, 82, 0.4);
    border-radius: calc(20 / var(--w) * 100vw);
    background: #eee;
    overflow: hidden;
  }
  .p-index-access ._map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .p-index-access ._parking {
    display: flex;
    flex-direction: column;
    gap: calc(10 / var(--w) * 100vw);
    align-items: center;
    width: calc(720 / var(--w) * 100vw);
    padding: calc(31 / var(--w) * 100vw) calc(41 / var(--w) * 100vw);
    border: calc(1 / var(--w) * 100vw) solid #fff;
    border-radius: calc(20 / var(--w) * 100vw);
    background: #4f5b2f;
    color: #fff;
    text-align: center;
  }
  .p-index-access ._parking h3 {
    font-size: calc(18 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
  }
  .p-index-access ._parking p {
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 200%;
    letter-spacing: 0.02em;
  }
  .p-index-news {
    padding: calc(140 / var(--w) * 100vw) 0;
    background: #fff;
  }
  .p-index-news ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(40 / var(--w) * 100vw);
    align-items: center;
  }
  .p-index-news ._news-list {
    width: calc(984 / var(--w) * 100vw);
  }
  .p-index-news ._news-list li {
    display: flex;
    gap: calc(24 / var(--w) * 100vw);
    align-items: center;
    min-height: calc(96 / var(--w) * 100vw);
    padding: 0 calc(36 / var(--w) * 100vw);
    border-bottom: calc(1 / var(--w) * 100vw) solid rgba(48, 40, 31, 0.28);
  }
  .p-index-news ._news-list time {
    width: calc(118 / var(--w) * 100vw);
    color: #30281f;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 140%;
  }
  .p-index-news ._news-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(82 / var(--w) * 100vw);
    height: calc(32 / var(--w) * 100vw);
    border: calc(1 / var(--w) * 100vw) solid #30281f;
    border-radius: calc(999 / var(--w) * 100vw);
    color: #30281f;
    font-size: calc(12 / var(--w) * 100vw);
    line-height: 120%;
  }
  .p-index-news ._news-list a {
    flex: 1;
    color: #30281f;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 160%;
    text-decoration: none;
  }
  .p-index-news + .p-index-news {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --w: var(--w-sp) ;
  }
  .u-pc {
    display: none;
  }
  body {
    overflow-x: hidden;
    background: var(--paper-color);
  }
  .l-wrapper {
    overflow: clip;
  }
  .l-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fffdf8;
    border-bottom: calc(1 / var(--w) * 100vw) solid rgba(111, 118, 82, 0.18);
  }
  .l-header ._inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: calc(68 / var(--w) * 100vw);
    padding: 0 calc(18 / var(--w) * 100vw);
  }
  .l-header ._brand {
    display: block;
    width: calc(146 / var(--w) * 100vw);
    text-decoration: none;
  }
  .l-header ._brand img {
    display: block;
    width: 100%;
  }
  .l-header ._tagline {
    display: none;
  }
  .l-header ._nav {
    display: flex;
    gap: calc(10 / var(--w) * 100vw);
    align-items: center;
    margin-left: auto;
  }
  .l-header ._nav a {
    display: none;
  }
  .l-header ._nav ._reserve {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(36 / var(--w) * 100vw);
    padding: 0 calc(15 / var(--w) * 100vw);
    border-radius: calc(999 / var(--w) * 100vw);
    background: #4f5b2f;
    color: #fffdf8;
    font-size: calc(12 / var(--w) * 100vw);
    line-height: 100%;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-decoration: none;
  }
  .l-modal-menu {
    position: fixed;
    top: calc(68 / var(--w) * 100vw);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 19;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  .l-modal-menu ._bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(48, 40, 31, 0.28);
  }
  .l-modal-menu ._inner {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(286 / var(--w) * 100vw);
    min-height: 100%;
    padding: calc(22 / var(--w) * 100vw) calc(24 / var(--w) * 100vw);
    background: #fffdf8;
    display: flex;
    flex-direction: column;
    gap: calc(16 / var(--w) * 100vw);
    align-items: center;
    box-shadow: calc(-8 / var(--w) * 100vw) 0 calc(24 / var(--w) * 100vw) rgba(48, 40, 31, 0.12);
    box-sizing: border-box;
  }
  .l-inner {
    width: calc(335 / var(--w) * 100vw);
    margin: 0 auto;
  }
  .l-footer {
    padding: calc(38 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
    background: #4f5b2f;
  }
  .l-footer ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(12 / var(--w) * 100vw);
    align-items: center;
    color: #fffdf8;
    text-align: center;
  }
  .l-footer ._brand {
    display: flex;
    flex-direction: column;
    gap: calc(8 / var(--w) * 100vw);
    align-items: center;
  }
  .l-footer ._brand img {
    width: calc(24 / var(--w) * 100vw);
  }
  .l-footer ._brand p {
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 180%;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
  .l-footer ._nav {
    display: flex;
    gap: calc(8 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: calc(14 / var(--w) * 100vw);
  }
  .l-footer ._nav a {
    color: #fffdf8;
    font-size: calc(11 / var(--w) * 100vw);
    line-height: 160%;
    letter-spacing: 0.04em;
    text-decoration: none;
  }
  .l-footer p, .l-footer small {
    color: #fffdf8;
    font-size: calc(11 / var(--w) * 100vw);
    line-height: 180%;
    letter-spacing: 0.04em;
  }
  .c-pagelink-offset {
    position: absolute;
    top: calc(-100 / var(--w) * 100vw);
    left: 0;
  }
  .c-modal-menu-btn {
    position: relative;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(44 / var(--w) * 100vw);
    height: calc(44 / var(--w) * 100vw);
    margin-left: calc(12 / var(--w) * 100vw);
    padding: 0;
    border: 0;
    background: #4f5b2f;
    border-radius: calc(999 / var(--w) * 100vw);
  }
  .c-modal-menu-btn span {
    position: absolute;
    left: 50%;
    width: calc(20 / var(--w) * 100vw);
    height: calc(2 / var(--w) * 100vw);
    border-radius: calc(999 / var(--w) * 100vw);
    background: #fffdf8;
    transform: translateX(-50%);
    transition: top 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
  }
  .c-modal-menu-btn span:nth-child(1) {
    top: calc(14 / var(--w) * 100vw);
  }
  .c-modal-menu-btn span:nth-child(2) {
    top: calc(21 / var(--w) * 100vw);
  }
  .c-modal-menu-btn span:nth-child(3) {
    top: calc(28 / var(--w) * 100vw);
  }
  .c-modal-gmenu {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .c-modal-gmenu li {
    width: 100%;
    border-bottom: calc(1 / var(--w) * 100vw) solid rgba(111, 118, 82, 0.28);
  }
  .c-modal-gmenu ._item {
    display: block;
    padding: calc(12 / var(--w) * 100vw) 0;
    color: #30281f;
    font-size: calc(13 / var(--w) * 100vw);
    line-height: 100%;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
  }
  .c-modal-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: calc(42 / var(--w) * 100vw);
    border-radius: calc(999 / var(--w) * 100vw);
    background: #4f5b2f;
    color: #fffdf8;
    font-size: calc(12 / var(--w) * 100vw);
    line-height: 100%;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-decoration: none;
  }
  body.js-gmenu-active {
    overflow: hidden;
  }
  body.js-gmenu-active .c-modal-menu-btn span:nth-child(1) {
    top: calc(21 / var(--w) * 100vw);
    transform: translateX(-50%) rotate(35deg);
  }
  body.js-gmenu-active .c-modal-menu-btn span:nth-child(2) {
    opacity: 0;
  }
  body.js-gmenu-active .c-modal-menu-btn span:nth-child(3) {
    top: calc(21 / var(--w) * 100vw);
    transform: translateX(-50%) rotate(-35deg);
  }
  body.js-gmenu-active .l-modal-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .c-section-head {
    display: flex;
    flex-direction: column;
    gap: calc(8 / var(--w) * 100vw);
    align-items: center;
    text-align: center;
  }
  .c-section-head ._en {
    color: #6f7652;
    font-size: calc(12 / var(--w) * 100vw);
    line-height: 180%;
    letter-spacing: 0.28em;
    font-weight: 400;
    text-transform: uppercase;
  }
  .c-section-head h2 {
    color: #30281f;
    font-size: calc(24 / var(--w) * 100vw);
    line-height: 160%;
    letter-spacing: 0.04em;
    font-weight: 600;
  }
  .c-section-head h2 span {
    display: block;
    margin-top: calc(4 / var(--w) * 100vw);
    color: #937a45;
    font-size: calc(12 / var(--w) * 100vw);
    line-height: 160%;
    letter-spacing: 0.08em;
  }
  .c-section-head p {
    color: #5e564c;
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 190%;
    letter-spacing: 0.02em;
  }
  .c-section-head::after {
    content: "";
    width: calc(1 / var(--w) * 100vw);
    height: calc(34 / var(--w) * 100vw);
    order: 2;
    background: #6f7652;
  }
  .c-section-head ._en {
    order: 1;
  }
  .c-section-head h2 {
    order: 3;
  }
  .c-section-head p {
    order: 4;
  }
  .c-section-head.is-left {
    align-items: center;
    text-align: center;
  }
  .c-section-head.is-left::after {
    width: calc(42 / var(--w) * 100vw);
    height: calc(1 / var(--w) * 100vw);
    order: 3;
  }
  .c-section-head.is-left h2 {
    order: 2;
  }
  .c-section-head.is-white ._en, .c-section-head.is-white h2 {
    color: #fffdf8;
  }
  .c-section-head.is-white::after {
    background: #fffdf8;
  }
  .c-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: calc(48 / var(--w) * 100vw);
    padding: 0 calc(20 / var(--w) * 100vw);
    border-radius: calc(999 / var(--w) * 100vw);
    border: calc(1 / var(--w) * 100vw) solid #4f5b2f;
    color: #4f5b2f;
    font-size: calc(13 / var(--w) * 100vw);
    line-height: 120%;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
  }
  .c-btn::after {
    content: "";
    width: calc(14 / var(--w) * 100vw);
    height: calc(14 / var(--w) * 100vw);
    margin-left: calc(10 / var(--w) * 100vw);
    background: url("../img/common/icon-arrow.webp") center center/contain no-repeat;
    flex-shrink: 0;
  }
  .c-btn.is-fill {
    background: #4f5b2f;
    color: #fffdf8;
  }
  .c-btn.is-light {
    background: #fffdf8;
    border-color: #fffdf8;
  }
  .c-btn.is-outline {
    border-color: #fff;
    color: #fff;
  }
  .c-btn.is-fill::after, .c-btn.is-outline::after {
    background: url("../img/common/icon-arrow-wh.webp") center center/contain no-repeat;
  }
  .p-index-mv {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fffdf8;
  }
  .p-index-mv ._copy {
    position: relative;
    z-index: 2;
    order: 2;
    display: flex;
    flex-direction: column;
    gap: calc(20 / var(--w) * 100vw);
    align-items: center;
    padding: calc(20 / var(--w) * 100vw) calc(20 / var(--w) * 100vw) calc(60 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
    background: #fffdf8 url("../img/mv/bg.jpg") center top/cover no-repeat;
  }
  .p-index-mv ._title {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #30281f;
    font-size: calc(26 / var(--w) * 100vw);
    line-height: 170%;
    letter-spacing: 0.14em;
    font-weight: 500;
    text-align: center;
    text-shadow: 0 calc(1 / var(--w) * 100vw) 0 rgba(255, 255, 255, 0.8);
  }
  .p-index-mv ._title span {
    position: relative;
    display: block;
    border-bottom: calc(1 / var(--w) * 100vw) solid #c9b98f;
  }
  .p-index-mv ._lead {
    color: #5e564c;
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 190%;
    letter-spacing: 0.18em;
    font-weight: 500;
    text-align: center;
  }
  .p-index-mv ._leaf {
    position: absolute;
    top: calc(10 / var(--w) * 100vw);
    left: calc(-35 / var(--w) * 100vw);
    z-index: 3;
    width: calc(30 / var(--w) * 100vw);
    transform: rotate(37.73deg);
  }
  .p-index-mv ._leaf img {
    width: 100%;
  }
  .p-index-mv ._points {
    display: flex;
    flex-wrap: wrap;
    width: calc(335 / var(--w) * 100vw);
    border-top: calc(1 / var(--w) * 100vw) solid rgba(185, 163, 119, 0.6);
    border-left: calc(1 / var(--w) * 100vw) solid rgba(185, 163, 119, 0.45);
  }
  .p-index-mv ._points li {
    display: flex;
    flex-direction: column;
    gap: calc(8 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
    width: 50%;
    min-height: calc(118 / var(--w) * 100vw);
    padding: calc(13 / var(--w) * 100vw) calc(8 / var(--w) * 100vw);
    border-right: calc(1 / var(--w) * 100vw) solid rgba(185, 163, 119, 0.45);
    border-bottom: calc(1 / var(--w) * 100vw) solid rgba(185, 163, 119, 0.45);
    text-align: center;
    box-sizing: border-box;
  }
  .p-index-mv ._points img {
    width: calc(42 / var(--w) * 100vw);
    height: calc(42 / var(--w) * 100vw);
    object-fit: contain;
  }
  .p-index-mv ._points strong {
    color: #4f5b2f;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 150%;
    letter-spacing: 0.08em;
    font-weight: 700;
  }
  .p-index-mv ._points span {
    color: #5e564c;
    font-size: calc(11 / var(--w) * 100vw);
    line-height: 150%;
    letter-spacing: 0.08em;
    font-weight: 500;
  }
  .p-index-mv ._images {
    order: 1;
    display: flex;
    gap: 0;
    flex-wrap: wrap;
  }
  .p-index-mv ._photo {
    object-fit: cover;
  }
  .p-index-mv ._photo.is-main {
    width: 100%;
    height: calc(226 / var(--w) * 100vw);
  }
  .p-index-mv ._photo.is-sub-left, .p-index-mv ._photo.is-sub-right {
    width: 50%;
    height: calc(116 / var(--w) * 100vw);
  }
  .p-index-intro {
    position: relative;
    overflow: hidden;
    padding: calc(60 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
    background: #fffdf8 url("../img/intro/bg.webp") center top/cover no-repeat;
  }
  .p-index-intro ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(24 / var(--w) * 100vw);
    align-items: center;
    width: calc(335 / var(--w) * 100vw);
    margin: 0 auto;
  }
  .p-index-intro ._kicker {
    color: #30281f;
    font-size: calc(24 / var(--w) * 100vw);
    line-height: 160%;
    font-weight: 400;
    text-align: center;
  }
  .p-index-intro ._deco {
    width: calc(190 / var(--w) * 100vw);
  }
  .p-index-intro ._question {
    color: #30281f;
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 200%;
    text-align: center;
  }
  .p-index-intro ._check-list {
    display: flex;
    flex-direction: column;
    gap: calc(9 / var(--w) * 100vw);
    width: 100%;
  }
  .p-index-intro ._check-list li {
    position: relative;
    min-height: calc(28 / var(--w) * 100vw);
    padding-left: calc(30 / var(--w) * 100vw);
    color: #30281f;
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 175%;
  }
  .p-index-intro ._check-list li::before {
    content: "";
    position: absolute;
    top: calc(-1 / var(--w) * 100vw);
    left: 0;
    width: calc(20 / var(--w) * 100vw);
    height: calc(28 / var(--w) * 100vw);
    background: url("../img/intro/deco3.webp") center center/contain no-repeat;
  }
  .p-index-intro ._message {
    width: 100%;
    color: #30281f;
    font-size: calc(17 / var(--w) * 100vw);
    line-height: 190%;
    text-align: center;
  }
  .p-index-intro ._but {
    color: #30281f;
    font-size: calc(26 / var(--w) * 100vw);
    line-height: 150%;
    text-align: center;
  }
  .p-index-intro ._divider {
    width: calc(1 / var(--w) * 100vw);
    height: calc(42 / var(--w) * 100vw);
    background: #b9a377;
  }
  .p-index-intro ._closing {
    display: flex;
    flex-direction: column;
    gap: calc(8 / var(--w) * 100vw);
    align-items: center;
    color: #30281f;
    text-align: center;
  }
  .p-index-intro ._closing p {
    width: 100%;
    font-size: calc(17 / var(--w) * 100vw);
    line-height: 160%;
  }
  .p-index-intro ._closing strong {
    width: 100%;
    font-size: calc(24 / var(--w) * 100vw);
    line-height: 155%;
    font-weight: 400;
  }
  .p-index-intro ._leaf {
    width: calc(120 / var(--w) * 100vw);
    transform: rotate(24.17deg);
  }
  .p-index-greeting {
    padding: calc(72 / var(--w) * 100vw) 0;
    background: #f6f1e7;
  }
  .p-index-greeting ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(28 / var(--w) * 100vw);
    align-items: center;
    width: calc(335 / var(--w) * 100vw);
  }
  .p-index-greeting ._photo {
    width: calc(250 / var(--w) * 100vw);
  }
  .p-index-greeting ._photo img {
    height: calc(305 / var(--w) * 100vw);
    border-radius: calc(16 / var(--w) * 100vw);
    object-fit: cover;
  }
  .p-index-greeting ._body {
    display: flex;
    flex-direction: column;
    gap: calc(18 / var(--w) * 100vw);
    align-items: center;
    width: 100%;
    color: #30281f;
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 195%;
    letter-spacing: 0.02em;
    text-align: center;
  }
  .p-index-greeting ._license {
    color: #6f7652;
    font-size: calc(11 / var(--w) * 100vw);
    line-height: 180%;
    letter-spacing: 0.04em;
  }
  .p-index-commitment {
    padding: calc(72 / var(--w) * 100vw) 0;
    background: #4f5b2f;
  }
  .p-index-commitment ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(34 / var(--w) * 100vw);
    width: calc(335 / var(--w) * 100vw);
  }
  .p-index-commitment ._items {
    display: flex;
    flex-direction: column;
    gap: calc(34 / var(--w) * 100vw);
  }
  .p-index-commitment ._item {
    display: flex;
    flex-direction: column;
    gap: calc(16 / var(--w) * 100vw);
    align-items: center;
  }
  .p-index-commitment ._item-head {
    display: flex;
    flex-direction: column;
    gap: calc(12 / var(--w) * 100vw);
    align-items: center;
    text-align: center;
  }
  .p-index-commitment ._item-head img {
    width: calc(74 / var(--w) * 100vw);
    height: calc(74 / var(--w) * 100vw);
  }
  .p-index-commitment ._item-head h3 {
    color: #fffdf8;
    font-size: calc(17 / var(--w) * 100vw);
    line-height: 165%;
    letter-spacing: 0.04em;
    font-weight: 700;
  }
  .p-index-commitment ._item-body {
    display: flex;
    flex-direction: column;
    gap: calc(18 / var(--w) * 100vw);
    width: 100%;
    padding: 0;
  }
  .p-index-commitment ._item-body img {
    width: 100%;
    height: calc(210 / var(--w) * 100vw);
    border-radius: calc(16 / var(--w) * 100vw);
    object-fit: cover;
  }
  .p-index-commitment ._item-body p {
    color: #fffdf8;
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 190%;
    letter-spacing: 0.02em;
    text-align: center;
  }
  .p-index-spa {
    padding: calc(72 / var(--w) * 100vw) 0;
    background: #fffdf8 url("../img/spa/bg.webp") center center/cover no-repeat;
  }
  .p-index-spa ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(28 / var(--w) * 100vw);
    align-items: center;
    width: calc(335 / var(--w) * 100vw);
    margin: 0 auto;
  }
  .p-index-spa ._body {
    display: flex;
    flex-direction: column;
    gap: calc(18 / var(--w) * 100vw);
    align-items: center;
    width: 100%;
    color: #30281f;
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 195%;
    letter-spacing: 0.02em;
    text-align: center;
  }
  .p-index-spa ._photo {
    width: 100%;
  }
  .p-index-spa ._photo img {
    height: calc(260 / var(--w) * 100vw);
    border-radius: calc(16 / var(--w) * 100vw);
    object-fit: cover;
  }
  .p-index-care {
    background: #f6f1e7;
  }
  .p-index-care ._content {
    display: flex;
    flex-direction: column;
    gap: calc(30 / var(--w) * 100vw);
    align-items: center;
    padding: calc(68 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
    background: #f6f1e7;
  }
  .p-index-care ._cards {
    display: flex;
    flex-direction: column;
    gap: calc(18 / var(--w) * 100vw);
    width: calc(335 / var(--w) * 100vw);
  }
  .p-index-care ._card {
    display: flex;
    flex-direction: column;
    gap: calc(16 / var(--w) * 100vw);
    align-items: center;
    width: 100%;
    padding: calc(28 / var(--w) * 100vw) calc(22 / var(--w) * 100vw);
    border: calc(1 / var(--w) * 100vw) solid rgba(111, 118, 82, 0.4);
    border-radius: calc(16 / var(--w) * 100vw);
    background: #fffdf8;
    text-align: center;
    box-sizing: border-box;
  }
  .p-index-care ._card img {
    width: calc(48 / var(--w) * 100vw);
    height: calc(48 / var(--w) * 100vw);
  }
  .p-index-care ._card h3 {
    color: #30281f;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 170%;
    letter-spacing: 0.04em;
  }
  .p-index-care ._card p {
    color: #30281f;
    font-size: calc(13 / var(--w) * 100vw);
    line-height: 185%;
    letter-spacing: 0.02em;
  }
  .p-index-read {
    padding: calc(72 / var(--w) * 100vw) 0;
    background: #fffdf8;
  }
  .p-index-read ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(22 / var(--w) * 100vw);
    width: calc(335 / var(--w) * 100vw);
  }
  .p-index-read ._lead {
    font-size: calc(17 / var(--w) * 100vw);
    line-height: 185%;
    letter-spacing: 0.02em;
    text-align: center;
  }
  .p-index-read p {
    color: #30281f;
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 190%;
    letter-spacing: 0.02em;
  }
  .p-index-read ._alert-list {
    display: flex;
    flex-direction: column;
    padding: calc(20 / var(--w) * 100vw) calc(18 / var(--w) * 100vw);
    border: calc(1 / var(--w) * 100vw) solid rgba(111, 118, 82, 0.4);
    border-radius: calc(16 / var(--w) * 100vw);
  }
  .p-index-read ._alert-list li {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: calc(4 / var(--w) * 100vw);
    min-height: auto;
    padding: calc(16 / var(--w) * 100vw) 0 calc(16 / var(--w) * 100vw) calc(28 / var(--w) * 100vw);
    border-bottom: calc(1 / var(--w) * 100vw) solid rgba(111, 118, 82, 0.28);
  }
  .p-index-read ._alert-list li:last-child {
    border-bottom: 0;
  }
  .p-index-read ._alert-list li::before {
    content: "";
    position: absolute;
    top: calc(21 / var(--w) * 100vw);
    left: 0;
    width: calc(18 / var(--w) * 100vw);
    height: calc(18 / var(--w) * 100vw);
    background: url("../img/common/icon-alert.webp") center center/contain no-repeat;
  }
  .p-index-read ._alert-list li strong {
    color: #30281f;
    font-size: calc(15 / var(--w) * 100vw);
    line-height: 165%;
    font-weight: 700;
  }
  .p-index-read ._alert-list li span {
    color: #30281f;
    font-size: calc(13 / var(--w) * 100vw);
    line-height: 175%;
  }
  .p-index-patch {
    padding: calc(72 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
    background: #4f5b2f;
  }
  .p-index-patch .c-section-head ._en, .p-index-patch .c-section-head h2 {
    color: #fffdf8;
  }
  .p-index-patch .c-section-head h2 span {
    color: #fffdf8;
  }
  .p-index-patch .c-section-head::after {
    background: #fffdf8;
  }
  .p-index-patch ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(28 / var(--w) * 100vw);
    align-items: center;
    width: calc(335 / var(--w) * 100vw);
    margin: 0 auto;
  }
  .p-index-patch ._box {
    padding: calc(26 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
    border: calc(1 / var(--w) * 100vw) solid rgba(111, 118, 82, 0.4);
    border-radius: calc(16 / var(--w) * 100vw);
    background: #fffdf8;
    color: #30281f;
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 190%;
    letter-spacing: 0.02em;
    box-sizing: border-box;
  }
  .p-index-patch ._alert {
    position: relative;
    padding-left: calc(28 / var(--w) * 100vw);
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 180%;
    font-weight: 700;
  }
  .p-index-patch ._alert::before {
    content: "";
    position: absolute;
    top: calc(6 / var(--w) * 100vw);
    left: 0;
    width: calc(20 / var(--w) * 100vw);
    height: calc(20 / var(--w) * 100vw);
    background: url("../img/common/icon-alert.webp") center center/contain no-repeat;
  }
  .p-index-patch .c-btn {
    background: #fffdf8;
    border-color: #6f7652;
    color: #6f7652;
    width: 100%;
  }
  .p-index-natural {
    padding: calc(126 / var(--w) * 100vw) calc(20 / var(--w) * 100vw) calc(72 / var(--w) * 100vw);
    background: #fffdf8 url("../img/kodawari/bg.webp") center center/cover no-repeat;
    text-align: center;
    background-size: 200% auto;
    background-position: top center;
  }
  .p-index-natural ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(24 / var(--w) * 100vw);
    align-items: center;
    width: calc(335 / var(--w) * 100vw);
    margin: 0 auto;
  }
  .p-index-natural h2 {
    color: #30281f;
    font-size: calc(24 / var(--w) * 100vw);
    line-height: 165%;
    letter-spacing: 0.04em;
    font-weight: 500;
  }
  .p-index-natural h2::after {
    content: "";
    display: block;
    width: calc(1 / var(--w) * 100vw);
    height: calc(40 / var(--w) * 100vw);
    margin: calc(18 / var(--w) * 100vw) auto 0;
    background: #6f7652;
  }
  .p-index-natural p {
    color: #30281f;
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 195%;
    letter-spacing: 0.02em;
  }
  .p-index-menu {
    padding: calc(72 / var(--w) * 100vw) 0;
    background: #f6f1e7 url("../img/menu/bg.webp") center center/cover no-repeat;
  }
  .p-index-menu ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(28 / var(--w) * 100vw);
    width: calc(335 / var(--w) * 100vw);
  }
  .p-index-menu ._debut {
    display: flex;
    flex-direction: column;
    gap: calc(16 / var(--w) * 100vw);
    align-items: center;
    padding: calc(24 / var(--w) * 100vw) calc(18 / var(--w) * 100vw);
    border-radius: calc(16 / var(--w) * 100vw);
    background: #4f5b2f;
    color: #fffdf8;
    text-align: center;
    box-sizing: border-box;
  }
  .p-index-menu ._debut ._debut-body {
    display: flex;
    flex-direction: column;
    gap: calc(6 / var(--w) * 100vw);
  }
  .p-index-menu ._debut p {
    font-size: calc(13 / var(--w) * 100vw);
    line-height: 180%;
    letter-spacing: 0.04em;
  }
  .p-index-menu ._debut h3 {
    font-size: calc(21 / var(--w) * 100vw);
    line-height: 155%;
    letter-spacing: 0.04em;
  }
  .p-index-menu ._debut strong {
    font-size: calc(30 / var(--w) * 100vw);
    line-height: 150%;
    letter-spacing: 0.02em;
  }
  .p-index-menu ._debut .c-btn {
    width: 100%;
    margin-top: calc(4 / var(--w) * 100vw);
  }
  .p-index-menu ._list {
    padding: 0 calc(18 / var(--w) * 100vw);
    border: calc(1 / var(--w) * 100vw) solid rgba(111, 118, 82, 0.4);
    border-radius: calc(16 / var(--w) * 100vw);
    background: #fffdf8;
    box-sizing: border-box;
  }
  .p-index-menu ._list dl {
    display: flex;
    flex-direction: column;
  }
  .p-index-menu ._list div {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: calc(4 / var(--w) * 100vw);
    padding: calc(18 / var(--w) * 100vw) 0;
    border-bottom: calc(1 / var(--w) * 100vw) solid rgba(111, 118, 82, 0.28);
  }
  .p-index-menu ._list div:last-child {
    border-bottom: 0;
  }
  .p-index-menu ._list dt {
    color: #30281f;
    font-size: calc(15 / var(--w) * 100vw);
    line-height: 170%;
    letter-spacing: 0.02em;
    font-weight: 700;
  }
  .p-index-menu ._list dd {
    color: #5e564c;
    font-size: calc(12 / var(--w) * 100vw);
    line-height: 175%;
    letter-spacing: 0.04em;
  }
  .p-index-menu ._list ._price {
    position: static;
    color: #30281f;
    font-size: calc(20 / var(--w) * 100vw);
    line-height: 160%;
    letter-spacing: 0.02em;
    font-weight: 700;
  }
  .p-index-payment {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #fffdf8;
  }
  .p-index-payment ._body {
    display: flex;
    flex-direction: column;
    gap: calc(24 / var(--w) * 100vw);
    align-items: center;
    padding: calc(70 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
    text-align: center;
  }
  .p-index-payment ._body p {
    color: #30281f;
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 190%;
    letter-spacing: 0.02em;
  }
  .p-index-payment ._pay {
    width: calc(315 / var(--w) * 100vw);
  }
  .p-index-payment ._photo {
    width: 100%;
  }
  .p-index-payment ._photo img {
    height: calc(230 / var(--w) * 100vw);
    object-fit: cover;
  }
  .p-index-privilege {
    padding: calc(72 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
    background: #fffdf8;
  }
  .p-index-privilege ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(24 / var(--w) * 100vw);
    align-items: center;
    width: calc(335 / var(--w) * 100vw);
    margin: 0 auto;
  }
  .p-index-privilege p {
    color: #30281f;
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 190%;
    letter-spacing: 0.02em;
  }
  .p-index-privilege ._offer {
    display: flex;
    flex-direction: column;
    gap: calc(6 / var(--w) * 100vw);
    align-items: center;
    width: 100%;
    padding: calc(28 / var(--w) * 100vw) calc(16 / var(--w) * 100vw);
    border-radius: calc(16 / var(--w) * 100vw);
    background: #4f5b2f;
    color: #fffdf8;
    text-align: center;
    box-sizing: border-box;
  }
  .p-index-privilege ._offer p, .p-index-privilege ._offer small {
    color: #fffdf8;
  }
  .p-index-privilege ._offer strong {
    color: #fffdf8;
    font-size: calc(26 / var(--w) * 100vw);
    line-height: 165%;
    letter-spacing: 0.02em;
  }
  .p-index-privilege ._offer em {
    color: #f9d382;
    font-size: calc(36 / var(--w) * 100vw);
    font-style: normal;
  }
  .p-index-privilege blockquote {
    color: #30281f;
    font-size: calc(17 / var(--w) * 100vw);
    line-height: 185%;
    letter-spacing: 0.02em;
    font-weight: 700;
    text-align: center;
  }
  .p-index-cancel {
    padding: calc(72 / var(--w) * 100vw) 0;
    background: #f6f1e7;
  }
  .p-index-cancel ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(22 / var(--w) * 100vw);
    width: calc(335 / var(--w) * 100vw);
  }
  .p-index-cancel p, .p-index-cancel li {
    color: #30281f;
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 190%;
    letter-spacing: 0.02em;
  }
  .p-index-cancel ul {
    display: flex;
    flex-direction: column;
    gap: calc(7 / var(--w) * 100vw);
    padding: calc(18 / var(--w) * 100vw);
    border-radius: calc(16 / var(--w) * 100vw);
    background: #fffdf8;
    font-weight: 700;
  }
  .p-index-extra {
    display: flex;
    width: 100%;
    background: #fffdf8;
    flex-wrap: wrap;
  }
  .p-index-extra img {
    width: 100%;
    height: calc(190 / var(--w) * 100vw);
    object-fit: cover;
  }
  .p-index-extra.is-two img {
    width: 50%;
    height: calc(150 / var(--w) * 100vw);
  }
  .p-index-faq {
    padding: calc(72 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
    background: #fffdf8;
  }
  .p-index-faq ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(26 / var(--w) * 100vw);
    align-items: center;
    width: calc(335 / var(--w) * 100vw);
    margin: 0 auto;
  }
  .p-index-faq ._faq-list {
    width: 100%;
  }
  .p-index-faq ._faq-list div {
    padding: calc(20 / var(--w) * 100vw) 0;
    border-bottom: calc(1 / var(--w) * 100vw) solid rgba(111, 118, 82, 0.4);
  }
  .p-index-faq ._faq-list dt {
    color: #30281f;
    font-size: calc(15 / var(--w) * 100vw);
    line-height: 175%;
    letter-spacing: 0.02em;
    font-weight: 700;
    text-indent: -1.5em;
    padding-left: 1.5em;
  }
  .p-index-faq ._faq-list dd {
    margin-top: calc(8 / var(--w) * 100vw);
    color: #30281f;
    font-size: calc(13 / var(--w) * 100vw);
    line-height: 185%;
    letter-spacing: 0.02em;
    text-indent: -1.5em;
    padding-left: 1.5em;
  }
  .p-index-reservation {
    padding: calc(72 / var(--w) * 100vw) 0;
    background: #4f5b2f;
  }
  .p-index-reservation .c-section-head ._en, .p-index-reservation .c-section-head h2 {
    color: #fffdf8;
  }
  .p-index-reservation .c-section-head::after {
    background: #fffdf8;
  }
  .p-index-reservation ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(26 / var(--w) * 100vw);
    align-items: center;
    width: calc(335 / var(--w) * 100vw);
  }
  .p-index-reservation p {
    color: #fffdf8;
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 190%;
    letter-spacing: 0.02em;
    text-align: center;
  }
  .p-index-reservation ._methods {
    display: flex;
    flex-direction: column;
    gap: calc(16 / var(--w) * 100vw);
    width: 100%;
  }
  .p-index-reservation ._methods article {
    display: flex;
    flex-direction: column;
    gap: calc(10 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: calc(210 / var(--w) * 100vw);
    padding: calc(24 / var(--w) * 100vw) calc(18 / var(--w) * 100vw);
    border: calc(1 / var(--w) * 100vw) solid rgba(111, 118, 82, 0.25);
    border-radius: calc(16 / var(--w) * 100vw);
    background: #fffdf8;
    box-sizing: border-box;
  }
  .p-index-reservation ._methods img {
    width: calc(48 / var(--w) * 100vw);
    height: calc(48 / var(--w) * 100vw);
  }
  .p-index-reservation ._methods h3 {
    color: #4f5b2f;
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 160%;
    letter-spacing: 0.04em;
  }
  .p-index-reservation ._methods .c-btn {
    width: 100%;
  }
  .p-index-reservation ._note {
    text-align: left;
  }
  .p-index-message {
    padding: calc(72 / var(--w) * 100vw) 0;
    background: #fffdf8;
  }
  .p-index-message ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(28 / var(--w) * 100vw);
    align-items: center;
    width: calc(335 / var(--w) * 100vw);
  }
  .p-index-message ._photo {
    width: calc(250 / var(--w) * 100vw);
  }
  .p-index-message ._photo img {
    height: calc(305 / var(--w) * 100vw);
    border-radius: calc(16 / var(--w) * 100vw);
    object-fit: cover;
  }
  .p-index-message ._body {
    display: flex;
    flex-direction: column;
    gap: calc(18 / var(--w) * 100vw);
    align-items: center;
    width: 100%;
    color: #30281f;
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 195%;
    letter-spacing: 0.02em;
    text-align: center;
  }
  .p-index-message ._license {
    color: #6f7652;
    font-size: calc(11 / var(--w) * 100vw);
    line-height: 180%;
    letter-spacing: 0.04em;
  }
  .p-index-access {
    padding: calc(72 / var(--w) * 100vw) 0;
    background: #f6f1e7;
  }
  .p-index-access ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(26 / var(--w) * 100vw);
    align-items: center;
    width: calc(335 / var(--w) * 100vw);
  }
  .p-index-access ._access-row {
    display: flex;
    flex-direction: column;
    gap: calc(18 / var(--w) * 100vw);
    width: 100%;
  }
  .p-index-access ._info {
    width: 100%;
    padding: calc(24 / var(--w) * 100vw) calc(18 / var(--w) * 100vw);
    border: calc(1 / var(--w) * 100vw) solid rgba(111, 118, 82, 0.4);
    border-radius: calc(16 / var(--w) * 100vw);
    background: #fffdf8;
    box-sizing: border-box;
  }
  .p-index-access ._info h3 {
    color: #30281f;
    font-size: calc(15 / var(--w) * 100vw);
    line-height: 180%;
    letter-spacing: 0.02em;
    font-weight: 700;
    margin-bottom: calc(8 / var(--w) * 100vw);
  }
  .p-index-access ._info dl {
    display: flex;
    flex-direction: column;
  }
  .p-index-access ._info div {
    display: flex;
    flex-direction: column;
    gap: calc(2 / var(--w) * 100vw);
    padding: calc(12 / var(--w) * 100vw) 0;
    border-bottom: calc(1 / var(--w) * 100vw) solid rgba(111, 118, 82, 0.28);
  }
  .p-index-access ._info dt {
    color: #6f7652;
    font-size: calc(12 / var(--w) * 100vw);
    line-height: 170%;
    letter-spacing: 0.04em;
    font-weight: 700;
  }
  .p-index-access ._info dd {
    color: #30281f;
    font-size: calc(13 / var(--w) * 100vw);
    line-height: 180%;
    letter-spacing: 0.02em;
  }
  .p-index-access ._map {
    width: 100%;
    height: calc(260 / var(--w) * 100vw);
    border: calc(1 / var(--w) * 100vw) solid rgba(111, 118, 82, 0.4);
    border-radius: calc(16 / var(--w) * 100vw);
    background: #eee;
    overflow: hidden;
    box-sizing: border-box;
  }
  .p-index-access ._map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .p-index-access ._parking {
    display: flex;
    flex-direction: column;
    gap: calc(10 / var(--w) * 100vw);
    align-items: center;
    width: 100%;
    padding: calc(22 / var(--w) * 100vw) calc(18 / var(--w) * 100vw);
    border: calc(1 / var(--w) * 100vw) solid #fff;
    border-radius: calc(16 / var(--w) * 100vw);
    background: #4f5b2f;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
  }
  .p-index-access ._parking h3 {
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 180%;
    letter-spacing: 0.02em;
  }
  .p-index-access ._parking p {
    font-size: calc(13 / var(--w) * 100vw);
    line-height: 185%;
    letter-spacing: 0.02em;
  }
  .p-index-news {
    padding: calc(72 / var(--w) * 100vw) 0;
    background: #fff;
  }
  .p-index-news ._inner {
    display: flex;
    flex-direction: column;
    gap: calc(26 / var(--w) * 100vw);
    align-items: center;
    width: calc(335 / var(--w) * 100vw);
  }
  .p-index-news ._news-list {
    width: 100%;
  }
  .p-index-news ._news-list li {
    display: flex;
    flex-wrap: wrap;
    gap: calc(8 / var(--w) * 100vw);
    min-height: auto;
    padding: calc(16 / var(--w) * 100vw) 0;
    border-bottom: calc(1 / var(--w) * 100vw) solid rgba(48, 40, 31, 0.28);
  }
  .p-index-news ._news-list time {
    width: calc(96 / var(--w) * 100vw);
    color: #30281f;
    font-size: calc(13 / var(--w) * 100vw);
    line-height: 150%;
  }
  .p-index-news ._news-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(72 / var(--w) * 100vw);
    height: calc(28 / var(--w) * 100vw);
    border: calc(1 / var(--w) * 100vw) solid #30281f;
    border-radius: calc(999 / var(--w) * 100vw);
    color: #30281f;
    font-size: calc(10 / var(--w) * 100vw);
    line-height: 120%;
  }
  .p-index-news ._news-list a {
    width: 100%;
    color: #30281f;
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 170%;
    text-decoration: none;
  }
  .p-index-news + .p-index-news {
    padding-top: 0;
  }
}