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

  CSS Reset

-------------------------------- */
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 400;
  font-style: normal;
}

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

:root {
  --font-family: "Noto Serif JP", sans-serif;
  --font-family2: "Noto Sans JP", sans-serif;
  --color-text: #000;
  --color-link: #18bf6b;
  --color-hover: #cf391e;
  --color-base: #18bf6b;
  --color-main: #cf391e;
  --color-sub1: #201608;
  --color-sub2: #ccc1b2;
  --color-sub3: #684b24;
  --color-sub4: #f9f4e2;
  --color-sub5: #149e59;
  --color-sub6: #ddd;
  --color-sub7: #f5f5f5;
  --color-sub8: #000;
  --color-sub9: #000;
  --color-subA: #cf391e;
  --color-subB: #b6290f;
  --color-subC: #b25900;
  --color-subD: #8f4b07;
  --color-subE: #750d2c;
  --color-subF: #550a20;
  --color-subG: #3f702f;
  --color-subH: #2d5320;
  --color-grd1: rgba(0, 0, 0, 0);
  --color-grd2: rgba(0, 0, 0, 1);
  --transition: 0.3s;
  --inner-width: 110rem;
  --inner-width2: 130rem;
  --inner-width3: 160rem;
  --inner-width4: 192rem;
  --box-shadow: 0 0 3px 0 rgba(0, 0, 0, .3);
  --box-shadow2: 0 0 6px 0 rgba(0, 0, 0, .4);
}

* {
  scroll-behavior: auto !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

a {
  color: var(--color-link);
  border: none;
  text-decoration: none;
}

a:hover {
  color: var(--color-hover);
  text-decoration: underline;
}

img, video, iframe {
  max-width: 100%;
}

img {
  height: auto;
  border: none;
  vertical-align: top;
}

b, strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

blockquote,
q {
  quotes: none;
}

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

a, area, button, [role=button], input:not([type=range]), label, select, summary, textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

button {
  border: none;
  background: none;
}
button:hover, button:active, button:focus {
  outline: none;
}
button:active, button:focus {
  box-shadow: none;
}

/* --------------------------------

  共通スタイル

-------------------------------- */
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
@media screen and (min-width: 1100px), print {
  html {
    overflow-y: scroll;
  }
}

body {
  min-width: 32rem;
  line-height: 1.5;
  font-size: 1.4rem;
  font-family: var(--font-family);
  color: var(--color-text);
  text-align: left;
  letter-spacing: 0.05em;
  background-color: #fff;
}
@media screen and (min-width: 768px), print {
  body {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1099.98px) {
  html.nav-open {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
  }
}

/* 共通セクション */
.c-section {
  line-height: 1.8;
}
.c-section__secondary {
  line-height: 1.8;
}
@media screen and (min-width: 1100px), print {
  .c-section__secondary {
    max-width: var(--inner-width);
    margin-inline: auto;
    line-height: 2;
    font-size: 1.8rem;
  }
}
.c-section__secondary:not(:last-child) {
  margin-bottom: 10rem;
}
@media screen and (min-width: 1100px), print {
  .c-section__secondary:not(:last-child) {
    margin-bottom: 15rem;
  }
}
.c-section__dummy:not(:last-child) {
  margin-bottom: 10rem;
}
@media screen and (min-width: 1100px), print {
  .c-section__dummy:not(:last-child) {
    margin-bottom: 15rem;
  }
}
.c-section__dummy--fluid {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
.c-section__dummy p:not(:last-child) {
  margin-bottom: 10rem;
}
@media screen and (min-width: 1100px), print {
  .c-section__dummy p:not(:last-child) {
    margin-bottom: 15rem;
  }
}
.c-section__inner {
  margin: 0 -2rem;
  padding: 5rem 2rem;
  background-color: #fff;
}
@media screen and (min-width: 768px), print {
  .c-section__inner {
    margin: 0;
    padding: 5rem 3rem;
    border-radius: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-section__inner {
    padding: 5rem;
  }
}

/* 共通ヘッダー */
.c-header {
  position: relative;
  margin-bottom: 5rem;
}
/* 共通見出し */
.c-heading {
  position: relative;
  max-width: var(--inner-width);
  margin-inline: auto;
  line-height: 1.2;
  font-feature-settings: "palt" 1;
}
.c-heading:not(:first-child) {
  margin-top: 5rem;
}
.c-heading.__h2 {
  margin-bottom: 3rem;
  line-height: 1.3;
  font-weight: 700;
  font-size: 2.8rem;
  text-align: center;
}
.c-heading.__h2::before, .c-heading.__h2::after {
  content: "";
  display: block;
  width: 7rem;
  margin: auto;
  background-color: var(--color-main);
}
.c-heading.__h2::before {
  position: absolute;
  right: 0;
  bottom: 0.5rem;
  left: 0;
  height: 0.3rem;
}
.c-heading.__h2::after {
  margin-top: 3rem;
  height: 0.1rem;
}
@media screen and (min-width: 768px), print {
  .c-heading.__h2 {
    margin-bottom: 4rem;
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-heading.__h2 {
    font-size: 4.6rem;
  }
  .c-heading.__h2::before, .c-heading.__h2::after {
    width: 10rem;
  }
}
.c-heading.__h3 {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
  font-size: 2rem;
  border-bottom: 1px solid #000;
}
.c-heading.__h3::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 2em;
  height: 1px;
  margin: auto;
  background-color: var(--color-main);
}
@media screen and (min-width: 1100px), print {
  .c-heading.__h3 {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    font-size: 2.4rem;
  }
  .c-heading.__h3::before {
    width: 3em;
  }
}
.c-heading.__h4 {
  margin-bottom: 2rem;
  line-height: 1.4;
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (min-width: 768px), print {
  .c-heading.__h4 {
    font-size: 2.4rem;
  }
}
.c-heading.__h5 {
  margin-bottom: 3rem;
  padding: 0 0 0.15em 2.3rem;
  line-height: 1.4;
  font-weight: 700;
  font-size: 2.4rem;
}
.c-heading.__h5::before, .c-heading.__h5::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 90%;
  margin: auto;
  background-color: currentColor;
}
.c-heading.__h5::before {
  left: 0;
  width: 0.3rem;
}
.c-heading.__h5::after {
  left: 0.7rem;
  width: 0.1rem;
}
@media screen and (min-width: 768px), print {
  .c-heading.__h5 {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-heading.__h5 {
    margin-bottom: 4rem;
    padding-left: 4.8rem;
    font-size: 5rem;
  }
  .c-heading.__h5::before, .c-heading.__h5::after {
    height: 85%;
  }
}
/* リンクボタン */
.c-link-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 1.4rem 5rem 1.4rem 3rem;
  line-height: 1.2;
  font-weight: 500;
  font-size: 1.6rem;
  font-family: var(--font-family2);
  color: #fff;
  text-align: left;
  border-radius: 10em;
  background-color: var(--color-link);
  transition: color var(--transition), border-color var(--transition), background-color var(--transition);
}
.c-link-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 2.4rem;
  bottom: 0;
  width: 0.8rem;
  height: 0.8rem;
  margin: auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
@media screen and (min-width: 1100px), print {
  .c-link-button {
    padding: 2rem 6rem 2rem 4rem;
  }
  .c-link-button::before {
    right: 3.4rem;
    width: 1rem;
    height: 1rem;
  }
}
.c-link-button-lg {
  font-size: 1.1em;
}
/* 共通リンクボタン（ホバー）*/
.c-link-button[href]:hover {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .c-link-button[href]:hover {
    color: #fff;
    border-color: var(--color-hover);
    background-color: var(--color-hover);
  }
}

/* コンテンツ画面中央寄せ */
.c-inner {
  position: relative;
  max-width: var(--inner-width);
  margin-inline: auto;
}
.c-inner::after {
  content: "";
  display: table;
  clear: both;
}
/* Google Maps */
.c-map-area {
  position: relative;
  height: 40rem;
}
.c-map-area iframe {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* 共通テーブル */
.c-table {
  display: block;
  margin-inline: -0.4rem;
  line-height: 1.5;
  font-size: 1.8rem;
}
.c-table tbody {
  display: block;
}
.c-table tr {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0.4rem 0;
}
.c-table th,
.c-table td {
  vertical-align: middle;
  padding: 2.4rem 1rem;
}
.c-table th {
  padding-right: 0;
  border-bottom: 1px solid var(--color-base);
}
.c-table td {
  border-bottom: 1px solid var(--color-sub2);
}
.c-table tr:first-child th {
  border-top: 1px solid var(--color-base);
}
.c-table tr:first-child td {
  border-top: 1px solid var(--color-sub2);
}
.c-table .tel-link[href] {
  color: currentColor;
}
.c-table .tel-link[href]:hover {
  color: var(--color-hover);
}
@media screen and (max-width: 767.98px) {
  .c-table {
    margin-inline: 0;
  }
  .c-table tr,
  .c-table th,
  .c-table td {
    display: block;
  }
  .c-table tr:first-child th {
    border-top: none;
  }
  .c-table tr:first-child td {
    border-top: none;
  }
  .c-table tr + tr {
    margin-top: 5rem;
  }
  .c-table th {
    width: auto !important;
    padding: 0 0 1rem;
  }
  .c-table td {
    padding: 1.5rem 0 1.5rem 2rem;
    font-size: 1.6rem;
  }
}

/* 共通お問い合わせ */
.c-global-contact {
  line-height: 1.5;
}
.c-global-contact__reserve {
  margin-top: 0.1rem;
}
.c-global-contact__card {
  margin-top: 1rem;
}
@media screen and (min-width: 768px), print {
  .c-global-contact__card {
    margin-top: 2rem;
  }
}
/* 共通お問い合わせ（電話）*/
.c-global-tel__num {
  display: flex;
  align-items: center;
  font-weight: 900;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}
.c-global-tel__num::before {
  content: "";
  aspect-ratio: 43/45;
  display: block;
  width: 2.8rem;
  margin-right: 1rem;
  background: url(../img/base/icon-tel_wht.svg) no-repeat center;
  background-size: contain;
}
.c-global-tel__label {
  display: block;
  margin-left: 1.5rem;
  font-weight: 900;
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0.2em;
}
.c-global-tel .tel-link {
  display: grid;
  place-content: center;
  height: 8rem;
  color: currentColor;
  border-radius: 1rem 1rem 0 0;
  background-color: var(--color-sub3);
}
.c-global-tel .tel-link[href] {
  color: currentColor;
}
.c-global-tel .tel-link[href]:hover {
  text-decoration: none;
  color: currentColor;
}
@media screen and (min-width: 1100px), print {
  .c-global-tel__num {
    font-size: 2.4rem;
  }
  .c-global-tel__num::before {
    width: 4.3rem;
    margin-right: 3rem;
  }
  .c-global-tel__label {
    margin-left: 2rem;
    font-size: 2rem;
    letter-spacing: normal;
  }
  .c-global-tel .tel-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    height: 9rem;
  }
}

/* 共通お問い合わせ（予約）*/
.c-global-reserve__link {
  display: grid;
  place-content: center;
  height: 8rem;
  color: currentColor;
  border-radius: 0 0 1rem 1rem;
  background-color: var(--color-main);
  transition: background-color var(--transition);
}
.c-global-reserve__link:hover {
  text-decoration: none;
  color: currentColor;
}
@media (hover: hover) and (pointer: fine) {
  .c-global-reserve__link:hover {
    background-color: var(--color-link);
  }
}
.c-global-reserve__text {
  display: flex;
  align-items: center;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
.c-global-reserve__text::before {
  content: "";
  aspect-ratio: 43/45;
  display: block;
  width: 2.8rem;
  margin-right: 1rem;
  background: url(../img/base/icon-calendar_wht.svg) no-repeat center;
  background-size: contain;
}
.c-global-reserve__label {
  display: block;
  font-weight: 900;
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 1100px), print {
  .c-global-reserve__link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    height: 9rem;
  }
  .c-global-reserve__text {
    font-size: 2.4rem;
  }
  .c-global-reserve__text::before {
    width: 4.3rem;
    margin-right: 3rem;
  }
  .c-global-reserve__label {
    margin-left: 2rem;
    font-size: 2rem;
    letter-spacing: normal;
  }
}

/* クレジットカード */
.c-global-card {
  display: block;
  padding: 1.5rem 1rem;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--color-text);
  text-align: center;
  border-radius: 1rem;
  background-color: #fff;
}
.c-global-card img {
  display: block;
  margin: 0.7rem auto 0;
}
/* 共通ギャラリー */
.c-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 1rem;
  grid-row-gap: 3rem;
}
.c-gallery__caption {
  margin-top: 1rem;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px), print {
  .c-gallery {
    grid-column-gap: 2rem;
  }
  .c-gallery__caption {
    margin-top: 1.5rem;
    font-size: 1.4rem;
  }
}

/* --------------------------------

  汎用スタイル

-------------------------------- */
.u-list-unstyled {
  list-style: none;
}
.u-list-disc {
  list-style-type: none;
  line-height: 1.5;
}
.u-list-disc li {
  position: relative;
  padding-left: 1.15em;
}
.u-list-disc li + li {
  margin-top: 0.35em;
}
.u-list-disc li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 0.55em;
  height: 0.55em;
  border-radius: 100%;
  background-color: currentColor;
}

.u-text-left {
  text-align: left;
}
.u-text-center {
  text-align: center;
}
.u-text-right {
  text-align: right;
}
.u-text-indent {
  text-indent: 1em;
}
.u-text-link {
  color: currentColor;
}
@media screen and (min-width: 768px), print {
  .u-text-md-left {
    text-align: left;
  }
  .u-text-md-center {
    text-align: center;
  }
}
@media screen and (min-width: 1100px), print {
  .u-text-lg-left {
    text-align: left;
  }
  .u-text-lg-center {
    text-align: center;
  }
}
@media screen and (min-width: 1600px), print {
  .u-text-xl-left {
    text-align: left;
  }
  .u-text-xl-center {
    text-align: center;
  }
}

.u-d-none {
  display: none;
}
.u-d-block {
  display: block;
}
.u-d-flex {
  display: flex;
}
@media screen and (min-width: 480px), print {
  .u-d-sm-none {
    display: none;
  }
  .u-d-sm-block {
    display: block;
  }
  .u-d-sm-flex {
    display: flex;
  }
}
@media screen and (min-width: 768px), print {
  .u-d-md-none {
    display: none;
  }
  .u-d-md-block {
    display: block;
  }
  .u-d-md-flex {
    display: flex;
  }
}
@media screen and (min-width: 1100px), print {
  .u-d-lg-none {
    display: none;
  }
  .u-d-lg-block {
    display: block;
  }
  .u-d-lg-flex {
    display: flex;
  }
}
@media screen and (min-width: 1600px), print {
  .u-d-xl-none {
    display: none;
  }
  .u-d-xl-block {
    display: block;
  }
  .u-d-xl-flex {
    display: flex;
  }
}

.u-ft-gothic {
  font-family: "Noto Sans JP", sans-serif;
}
.u-ft-mincho {
  font-family: "Noto Serif JP", sans-serif;
}
.u-fs-sm {
  font-size: 1.2rem;
}
@media screen and (min-width: 1100px), print {
  .u-fs-sm {
    font-size: 1.4rem;
  }
}
.u-fs-lg {
  font-size: 1.6rem;
}
@media screen and (min-width: 1100px), print {
  .u-fs-lg {
    font-size: 1.8rem;
  }
}
.u-fs-xl {
  font-size: 1.8rem;
}
@media screen and (min-width: 1100px), print {
  .u-fs-xl {
    font-size: 2rem;
  }
}

.u-fw-medium {
  font-weight: 500;
}
.u-fw-medium * {
  font-weight: 500;
}
.u-fw-bold {
  font-weight: 700;
}
.u-fw-bold * {
  font-weight: 700;
}
.u-fw-black {
  font-weight: 900;
}
.u-fw-black * {
  font-weight: 900;
}

.u-bg-base {
  background-color: var(--color-base);
}
.u-bg-main {
  background-color: var(--color-main);
}
.u-bg-white {
  background-color: #fff;
}
.u-bg-sub1 {
  background-color: var(--color-subA);
}
.u-bg-sub2 {
  background-color: var(--color-subC);
}
.u-bg-sub3 {
  background-color: var(--color-subE);
}
.u-bg-sub4 {
  background-color: var(--color-subG);
}
.u-bg-sub5 {
  background-color: var(--color-subB);
}
.u-bg-sub6 {
  background-color: var(--color-subD);
}
.u-bg-sub7 {
  background-color: var(--color-subF);
}
.u-bg-sub8 {
  background-color: var(--color-subH);
}

.u-color-base {
  color: var(--color-base);
}
.u-color-main {
  color: var(--color-main);
}
.u-color-white {
  color: #fff;
}
.u-color-danger {
  color: #b22c00;
}
.u-color-sub1 {
  color: var(--color-subA);
}
.u-color-sub2 {
  color: var(--color-subC);
}
.u-color-sub3 {
  color: var(--color-subE);
}
.u-color-sub4 {
  color: var(--color-subG);
}

.u-flex-1 {
  flex: 1;
}

.u-clearfix::after {
  content: "";
  clear: both;
  display: block;
}

.u-lh-sm {
  line-height: 1.5;
}
.u-lh-base {
  line-height: 1.8;
}
.u-lh-lg {
  line-height: 1.8;
}
@media screen and (min-width: 1100px), print {
  .u-lh-lg {
    line-height: 2;
  }
}

.u-indent {
  margin-left: 1em;
  text-indent: -1em;
}

.u-anchor-point::before {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  margin-top: -11rem;
  margin-bottom: 11rem;
  background: transparent;
  pointer-events: none;
  z-index: -100;
}
@media screen and (min-width: 1100px), print {
  .u-anchor-point::before {
    margin-top: -14rem;
    margin-bottom: 14rem;
  }
}

.u-box-radius {
  border-radius: 1rem;
}
@media screen and (min-width: 768px), print {
  .u-box-radius {
    border-radius: 1.5rem;
  }
}
.u-img-wrap {
  aspect-ratio: 4/3;
  display: block;
  position: relative;
  overflow: hidden;
}

.u-img-cover {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

@media screen and (min-width: 768px), print {
  .float-md-right {
    float: right;
  }
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-column {
  flex-direction: column;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.font-feature-settings {
  font-feature-settings: "palt" 1;
}

/* ios高さ100%用 */
.full-height {
  height: calc(var(--vh, 1vh) * 100);
}

/* --------------------------------

  wrapper

-------------------------------- */
.l-wrapper {
  position: relative;
  overflow: hidden;
}
/* --------------------------------

  header

-------------------------------- */
.l-header__container {
  display: grid;
  place-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  font-size: 100%;
  background-color: rgba(32, 22, 8, 0.8);
  z-index: 900;
}
.l-header__tel {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .l-header__container {
    display: block;
    position: absolute;
    height: auto;
    background: none;
    z-index: 1010;
  }
  .l-header__tel {
    display: block;
  }
}

/* ヘッダーロゴ */
.c-header-logo img {
  display: block;
  width: 18rem;
}
@media screen and (min-width: 375px), print {
  .c-header-logo img {
    width: 20rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-header-logo a {
    display: block;
    position: absolute;
    top: 2.4rem;
    left: 2.3rem;
    width: 20rem;
  }
  .c-header-logo img {
    width: auto;
  }
}
@media screen and (min-width: 1280px), print {
  .c-header-logo a {
    top: 2rem;
    left: 3rem;
    width: 25rem;
  }
}
@media screen and (min-width: 1440px), print {
  .c-header-logo a {
    top: 5.5rem;
    left: 6.5rem;
    width: 35rem;
  }
}

/* ヘッダー電話 */
.c-header-tel .tel-link {
  display: inline-flex;
  align-items: center;
  position: absolute;
  top: 3rem;
  right: 2rem;
  line-height: 1;
  font-weight: 700;
  font-size: 2.6rem;
  color: #fff;
}
.c-header-tel .tel-link::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1.1rem;
  background: url(../img/base/icon-tel_wht.svg) center no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1280px), print {
  .c-header-tel .tel-link {
    top: 2.9rem;
    right: 3rem;
  }
  .c-header-tel .tel-link::before {
    width: 3.1rem;
    height: 3.1rem;
  }
}

/* お問い合わせ（電話）*/
.c-tel-button {
  display: block;
  position: fixed;
  top: 1rem;
  right: 0;
  width: 6rem;
  height: 6rem;
  overflow: hidden;
  cursor: pointer;
  z-index: 990;
}
@media screen and (min-width: 1100px), print {
  .c-tel-button {
    display: none;
  }
}
.c-tel-button a {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem 0 0 1rem;
  background-color: var(--color-hover);
}
.c-tel-button a:hover {
  text-decoration: none;
}
.c-tel-button a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.7rem;
  right: 0;
  left: 0.1rem;
  width: 2.6rem;
  height: 2.6rem;
  margin: auto;
  background: url(../img/base/icon-tel_wht.svg) center no-repeat;
  background-size: cover;
}
.c-tel-button a::after {
  content: "TEL";
  display: block;
  position: absolute;
  bottom: 0.6rem;
  left: 0.2rem;
  width: 100%;
  line-height: 1;
  font-weight: 500;
  font-size: 1.4rem;
  font-family: var(--font-family2);
  color: #fff;
  text-align: center;
  letter-spacing: 0.15em;
}

/* ご予約はこちら */
.c-reserve-button {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  overflow: hidden;
  z-index: 900;
}
.c-reserve-button__link a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8rem;
  margin: 0 0.5rem;
  line-height: 1.5;
  color: #fff;
  border-radius: 1rem 1rem 0 0;
  background-color: var(--color-hover);
  transition: background-color var(--transition);
}
.c-reserve-button__link a:hover {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .c-reserve-button__link a:hover {
    background-color: var(--color-link);
  }
}
.c-reserve-button__link a::before {
  content: "";
  aspect-ratio: 43/45;
  display: block;
  width: 2.8rem;
  margin: -1.7rem 1rem 0 -3rem;
  background: url(../img/base/icon-calendar_wht.svg) center no-repeat;
  background-size: cover;
}
.c-reserve-button__label {
  display: block;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.1em;
}
.c-reserve-button__label::after {
  content: attr(data-label);
  display: block;
  font-size: 0.6em;
  letter-spacing: 0.3em;
}
.c-reserve-button__card {
  display: none;
}
@media screen and (min-width: 768px), print {
  .c-reserve-button__link a {
    margin: 0 1.5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-reserve-button {
    top: 13rem;
    right: 0;
    bottom: auto;
    left: auto;
    width: 23rem;
    height: auto;
    border-radius: 1rem 0 0 1rem;
    box-shadow: var(--box-shadow2);
    overflow: hidden;
    z-index: 1010;
  }
  .c-reserve-button__link a {
    display: block;
    height: auto;
    margin: 0;
    padding: 2rem 0;
    border-radius: 0;
  }
  .c-reserve-button__link a::before {
    width: 4.3rem;
    margin: 0 auto 1rem;
  }
  .c-reserve-button__label {
    height: auto;
    font-size: 2.4rem;
  }
  .c-reserve-button__label::after {
    letter-spacing: 0.2em;
  }
  .c-reserve-button__card {
    display: block;
    padding: 1.2rem 0;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    background-color: #fff;
  }
  .c-reserve-button__card img {
    display: block;
    width: 19rem;
    margin: 0.5rem auto 0;
  }
}

/* スクロール時固定用 */
@media screen and (min-width: 1100px), print {
  .is-fixed .l-header__container {
    position: fixed;
    top: -60px;
    transform: translateY(60px);
    transition: transform var(--transition);
  }
  .is-fixed .c-header-logo a {
    top: 2.4rem;
    left: 2.3rem;
    width: 20rem;
  }
}

/* --------------------------------

  nav

-------------------------------- */
.l-nav {
  display: block;
  position: fixed;
  top: 0;
  left: -28rem;
  width: 28rem;
  height: 100%;
  z-index: 1000;
}
.l-nav__container {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: var(--color-sub1);
  z-index: 10;
}
.l-nav__info {
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .l-nav {
    position: absolute;
    left: auto;
    width: 100%;
    height: auto;
  }
  .l-nav__container {
    display: flex;
    justify-content: flex-end;
    background: transparent;
    overflow: visible;
  }
  .l-nav__info {
    display: none;
  }
}
@media screen and (max-width: 1099.98px) {
  .l-nav {
    transition: left 0.3s;
  }
  .nav-open .l-nav {
    left: 0;
  }
}

/* メインナビ */
.c-nav {
  padding: 8rem 0 0;
  background-color: var(--color-sub4);
}
.c-nav__item {
  position: relative;
  border-top: 1px solid var(--color-sub1);
}
.c-nav__link, .c-nav__label {
  display: flex;
  align-items: center;
  position: relative;
  height: 5.6rem;
  padding: 0 0 0 2rem;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--color-text);
  letter-spacing: 0.1em;
}
.c-nav__link:hover {
  text-decoration: none;
  color: var(--color-text);
}
@media screen and (min-width: 1100px), print {
  .c-nav {
    display: flex;
    padding: 0 25rem 0 0;
    background-color: transparent;
  }
  .c-nav__item {
    border-top: none;
  }
  .c-nav__item + .c-nav__item {
    margin-left: 2rem;
  }
  .c-nav__link {
    flex-direction: column;
    justify-content: center;
    height: 9rem;
    padding: 0;
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: normal;
    transition: color 0.3s;
  }
  .c-nav__link:hover {
    color: #fff;
  }
  .c-nav__item--home {
    display: none;
  }
}
@media screen and (min-width: 1280px), print {
  .c-nav {
    padding-right: 28rem;
  }
  .c-nav__item + .c-nav__item {
    margin-left: 2.6rem;
  }
  .c-nav__link, .c-nav__label {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1600px), print {
  .c-nav__item--home {
    display: block;
  }
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine), print {
  .c-nav__link:hover {
    color: var(--color-link);
  }
}

/* 店舗情報 */
.c-nav-info {
  padding: 5rem 0;
  color: #fff;
}
.c-nav-info__logo {
  width: 22rem;
  margin: 0 auto 2rem;
}
.c-nav-info__tel {
  margin-top: 0.5rem;
  font-size: 2rem;
}
.c-nav-info__tel .tel-link[href] {
  color: #fff;
}
.c-nav-info__tel .tel-link[href]:hover {
  text-decoration: underline;
}
/* ナビゲーション開閉ボタン */
.c-nav-button {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 6rem;
  height: 8rem;
  line-height: 1;
  font-family: inherit;
  background-color: transparent;
  cursor: pointer;
  z-index: 910;
}
@media screen and (min-width: 375px), print {
  .c-nav-button {
    width: 8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-nav-button {
    display: none;
  }
}
.nav-open .c-nav-button {
  display: none;
}
.c-nav-button::before {
  content: "MENU";
  display: block;
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-weight: 500;
  font-size: 1.4rem;
  font-family: var(--font-family2);
  color: #fff;
  text-align: center;
}
.c-nav-button__icon {
  display: block;
  position: absolute;
  inset: 0;
  top: -2rem;
  width: 3rem;
  height: 2rem;
  margin: auto;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.c-nav-button__icon::before, .c-nav-button__icon::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  border-top: 2px solid #fff;
}
.c-nav-button__icon::after {
  display: none;
}
.c-nav-button__close {
  position: absolute;
  z-index: 10;
}
@media screen and (max-width: 1099.98px) {
  .nav-open .c-nav-button__close {
    display: block;
  }
}
.c-nav-button__close::before {
  content: "CLOSE";
  color: var(--color-sub1);
}
.c-nav-button__close .c-nav-button__icon {
  border: none;
}
.c-nav-button__close .c-nav-button__icon::before, .c-nav-button__close .c-nav-button__icon::after {
  border-color: var(--color-sub1);
}
.c-nav-button__close .c-nav-button__icon::before {
  transform: rotate(45deg);
}
.c-nav-button__close .c-nav-button__icon::after {
  display: block;
  transform: rotate(-45deg);
}

/* ナビゲーション背景 */
@media screen and (min-width: 1100px), print {
  .o-nav-screen {
    display: none;
  }
}
.o-nav-screen__overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-open .o-nav-screen__overlay {
  pointer-events: auto;
  opacity: 0.35;
  cursor: pointer;
}

/* スクロール時固定用 */
@media screen and (min-width: 1100px), print {
  .is-fixed .l-nav {
    position: fixed;
    top: -60px;
    background-color: rgba(32, 22, 8, 0.8);
    box-shadow: var(--box-shadow2);
    transform: translateY(60px);
    transition: transform var(--transition);
  }
}

/* --------------------------------

  main

-------------------------------- */
.l-main {
  padding: 10rem 2rem;
  background: var(--color-sub4) url(../img/base/bg.png) center top;
  background-size: auto;
}
@media screen and (min-width: 1100px), print {
  .l-main {
    padding: 15rem 5rem;
  }
}

/* --------------------------------

  footer

-------------------------------- */
.l-footer {
  padding-bottom: 8rem;
  color: #fff;
  background-color: var(--color-sub1);
}
.l-footer__container {
  padding: 5rem 2rem 0;
}
.l-footer__inner {
  max-width: 50rem;
}
.l-footer__main {
  margin-bottom: 3rem;
}
.l-footer__nav {
  max-width: 48rem;
  margin: auto;
  padding: 4rem 0;
}
.l-footer__map {
  margin: 0 -2rem;
}
@media screen and (min-width: 1100px), print {
  .l-footer {
    padding-bottom: 0;
  }
  .l-footer__container {
    padding: 8rem 5rem 0;
  }
  .l-footer__inner {
    max-width: var(--inner-width);
  }
  .l-footer__main {
    flex: 1;
    margin: 0 5rem 0 0;
  }
  .l-footer__side {
    width: 45rem;
  }
  .l-footer__nav {
    max-width: none;
    margin: 0 -5rem;
  }
  .l-footer__map {
    margin: 0 -5rem;
  }
}

/* フッターロゴ */
.c-footer-logo {
  display: inline-block;
  vertical-align: top;
  width: 24rem;
}
@media screen and (min-width: 768px), print {
  .c-footer-logo {
    width: 30rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-logo {
    width: auto;
  }
}

/* 店舗情報 */
.c-footer-info {
  text-align: center;
}
.c-footer-info__logo {
  margin-bottom: 3rem;
}
.c-footer-info__add {
  margin-bottom: 3rem;
  font-size: 1.6rem;
}
.c-footer-info__time {
  padding: 1rem 0;
  font-size: 1.6rem;
  border-top: 1px solid var(--color-sub2);
  border-bottom: 1px solid var(--color-sub2);
}
.c-footer-info__time .open {
  display: block;
  margin-bottom: 0.5rem;
}
.c-footer-info__time .close::after {
  content: "、";
}
@media screen and (min-width: 768px), print {
  .c-footer-info__time {
    padding: 1.5rem 0;
    font-size: 1.6rem;
  }
  .c-footer-info__time span {
    display: inline;
  }
  .c-footer-info__time span + span {
    margin-left: 2rem;
    padding-left: 2rem;
    border-left: 1px solid var(--color-sub2);
  }
  .c-footer-info__time .open {
    display: inline;
    margin-bottom: 0;
  }
  .c-footer-info__time .close::after {
    display: none;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-info__add {
    margin-bottom: 4rem;
    font-size: 1.8rem;
  }
  .c-footer-info__time {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1280px), print {
  .c-footer-info__time {
    font-size: 2rem;
  }
  .c-footer-info__time span + span {
    margin-left: 3rem;
    padding-left: 3rem;
  }
}

/* フッターナビ */
.c-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -1rem;
}
.c-footer-nav__item {
  padding: 1rem;
}
.c-footer-nav__link {
  display: block;
  margin: -1rem;
  padding: 1rem;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
}
.c-footer-nav__link:hover {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .c-footer-nav__link:hover {
    color: var(--color-link);
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-nav {
    flex-wrap: nowrap;
    margin: 0;
  }
  .c-footer-nav__item {
    padding: 0;
  }
  .c-footer-nav__item + .c-footer-nav__item {
    margin-left: 4rem;
  }
  .c-footer-nav__link {
    color: #fff;
  }
  .c-footer-nav__link:hover {
    text-decoration: underline;
  }
}

/* 地図 */
.c-footer-map {
  background-color: #fff;
}
@media screen and (min-width: 1100px), print {
  .c-footer-map {
    height: 70rem;
  }
}

/* ページの先頭へ */
.c-footer-pagetop {
  display: block;
  position: fixed;
  right: 0.75rem;
  bottom: 8.85rem;
  width: 4.5rem;
  height: 4.5rem;
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px), print {
  .c-footer-pagetop {
    right: 1.5rem;
    bottom: 9.5rem;
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-pagetop {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}
.is-fixed .c-footer-pagetop {
  opacity: 1;
  pointer-events: auto;
}
.c-footer-pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  background-color: var(--color-link);
  transition: background-color var(--transition);
}
.c-footer-pagetop a:hover {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .c-footer-pagetop a:hover {
    background-color: var(--color-hover);
  }
}
.c-footer-pagetop a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.8rem;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}

/* コピーライト */
.c-footer-copy {
  display: grid;
  place-content: center;
  height: 6rem;
}
.c-footer-copy small {
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.c-footer-copy span {
  display: none;
  font-weight: 700;
}
@media screen and (min-width: 768px), print {
  .c-footer-copy {
    height: 8rem;
  }
  .c-footer-copy small {
    font-size: 1.6rem;
  }
  .c-footer-copy span {
    display: inline;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-copy small {
    font-size: 1.8rem;
  }
}

/* --------------------------------

  ページタイトル

-------------------------------- */
.c-page-title {
  position: relative;
  padding-top: 8rem;
  background-color: var(--color-sub1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.c-page-title__container {
  position: relative;
  height: 26rem;
}
.c-page-title__heading {
  display: grid;
  place-content: center right;
  position: absolute;
  bottom: -3rem;
  left: 0;
  height: 6rem;
  padding: 0 2rem 0.1em 3rem;
  line-height: 1.2;
  font-weight: 700;
  font-size: 2.6rem;
  color: #fff;
  border-radius: 0 1rem 1rem 0;
  background-color: var(--color-base);
}
@media screen and (min-width: 375px), print {
  .c-page-title__heading {
    padding: 0 3rem 0.1em 5rem;
    font-size: 3rem;
  }
}
@media screen and (min-width: 768px), print {
  .c-page-title__container {
    height: 34rem;
  }
  .c-page-title__heading {
    bottom: -4rem;
    height: 8rem;
    padding: 0 4rem 0.1em 12rem;
    font-size: 3.4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-page-title {
    padding-top: 0;
  }
  .c-page-title::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 24rem;
    background: linear-gradient(to bottom, rgba(32, 22, 8, 0.9) 20%, rgba(32, 22, 8, 0) 100%);
    pointer-events: none;
    z-index: 10;
  }
  .c-page-title__container {
    height: 44rem;
  }
  .c-page-title__heading {
    display: grid;
    place-content: center right;
    bottom: -5rem;
    height: 10rem;
    padding: 0 5rem 0.1em 15rem;
    font-size: 4.4rem;
    border-radius: 0 2rem 2rem 0;
  }
  .c-page-title__heading::before {
    font-size: 5rem;
  }
}

/* --------------------------------

  ローディング

-------------------------------- */
.loader {
  display: grid;
  place-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-sub1);
  z-index: 9999;
  opacity: 1;
  pointer-events: none;
}
.loader.is-loaded {
  animation: fadeOut 1s forwards;
}
.loader.is-reloaded {
  animation: fadeOut 0.5s forwards;
}
.loader-logo {
  display: block;
  width: 26.4rem;
  opacity: 0;
  transform: translateY(100px);
}
.loader-logo.is-loaded {
  animation: fadeInUp 0.5s forwards;
}

/* --------------------------------

  アニメーション

-------------------------------- */
.js-anime {
  pointer-events: none;
}
.js-anime.is-active {
  pointer-events: auto;
}
.js-anime.fadeIn {
  opacity: 0;
}
.js-anime.fadeIn.is-active {
  animation: fadeIn 0.75s forwards;
}
.js-anime.fadeInUp {
  opacity: 0;
  transform: translateY(100px);
}
.js-anime.fadeInUp.is-active {
  animation: fadeInUp 0.75s forwards;
}
.js-anime.fadeZoomIn {
  opacity: 0;
  transform: scale(1.4);
}
.js-anime.fadeZoomIn.is-active {
  animation: fadeZoomIn 0.75s forwards;
}
.js-anime.fadeInRight {
  opacity: 0;
  transform: translateX(100px);
}
.js-anime.fadeInRight.is-active {
  animation: fadeInRight 0.75s forwards;
}
.js-anime.fadeInLeft {
  opacity: 0;
  transform: translateX(-100px);
}
.js-anime.fadeInLeft.is-active {
  animation: fadeInLeft 0.75s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeZoomIn {
  from {
    opacity: 0;
    transform: scale(1.4);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
/* --------------------------------

  トップページ

-------------------------------- */
/* メイングラフィック */
.p-mv__section {
  position: relative;
  margin: -10rem -2rem 0;
}
.p-mv__container {
  min-height: 66rem;
}
.p-mv__img {
  display: block;
  position: relative;
  height: 100%;
  overflow: hidden;
  opacity: 0;
}
.p-mv__img.is-loaded {
  animation: fadeIn 1s forwards;
}
.p-mv__img.is-reloaded {
  opacity: 1;
}
.p-mv__img img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.p-mv__catch {
  position: absolute;
  right: 0;
  bottom: 10rem;
  left: 0;
  width: 30rem;
  margin: auto;
  padding: 0 1rem 1rem;
  font-size: 1.2rem;
  background-color: rgba(32, 22, 8, 0.8);
  z-index: 10;
  opacity: 0;
}
.p-mv__catch.is-loaded {
  animation: fadeInRight 1s forwards;
}
.p-mv__catch.is-reloaded {
  opacity: 1;
}
.p-mv__catch--inner {
  padding: 2rem;
  border: 1px solid var(--color-sub4);
}
.p-mv__catch--year {
  padding: 1rem 0;
  font-size: 1.1em;
  letter-spacing: 0.2em;
}
.p-mv__catch--catch {
  margin-bottom: 1rem;
  line-height: 1.2;
  font-size: 2.4em;
  letter-spacing: normal;
}
.p-mv__catch--catch .lg {
  font-size: 1.1333333em;
}
@media screen and (min-width: 768px), print {
  .p-mv__catch {
    right: 2rem;
    left: auto;
    width: 40rem;
    margin: 0;
    padding: 0 2rem 2rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-mv__section {
    margin: -15rem -5rem 0;
  }
  .p-mv__section::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 24rem;
    background: linear-gradient(to bottom, rgba(32, 22, 8, 0.9) 20%, rgba(32, 22, 8, 0) 100%);
    pointer-events: none;
    z-index: 10;
  }
  .p-mv__container {
    min-height: 89rem;
  }
  .p-mv__catch {
    right: 7rem;
    bottom: 7rem;
    width: 50rem;
    padding: 0 2.5rem 2.5rem;
    font-size: 1.8rem;
  }
  .p-mv__catch--inner {
    padding: 4rem 0 2rem;
  }
  .p-mv__catch--catch {
    margin-bottom: 1.5rem;
    font-size: 2.73em;
  }
  .p-mv__catch--text {
    line-height: 1.9;
  }
}
@media screen and (min-width: 1440px), print {
  .p-mv__catch {
    right: 5rem;
    bottom: 5rem;
    width: 55rem;
    font-size: 2.2rem;
  }
}

/* お知らせ */
.p-top-news__section {
  margin: 0 -2rem;
  padding: 5rem 2rem;
}
.p-top-news__container {
  max-width: 147rem;
}
.p-top-news__header {
  display: grid;
  place-content: center;
  position: relative;
  height: 6rem;
  background-color: var(--color-base);
}
.p-top-news__header::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4rem;
  height: 0.1rem;
  margin: auto;
  background-color: #fff;
  pointer-events: none;
}
.p-top-news__heading {
  font-size: 2rem;
  letter-spacing: 0.1em;
}
.p-top-news__body {
  padding: 2rem;
  background-color: #fff;
}
.p-top-news__footer {
  margin-top: 2rem;
}
@media screen and (min-width: 1100px), print {
  .p-top-news__section {
    margin: 0 -5rem;
    padding: 5rem 6.5rem;
  }
  .p-top-news__container {
    padding: 2rem;
    background-color: #fff;
  }
  .p-top-news__header {
    width: 22rem;
    height: auto;
    margin: -2rem 4rem -2rem -2rem;
    padding: 0 4rem 0 0;
  }
  .p-top-news__heading {
    font-size: 2.4rem;
  }
  .p-top-news__body {
    align-self: center;
    padding: 0.05em 0 0;
  }
  .p-top-news__footer {
    align-self: center;
    margin: 0 0 0 2rem;
  }
}
@media screen and (min-width: 1280px), print {
  .p-top-news__header {
    width: 27rem;
    margin-right: 6rem;
  }
  .p-top-news__heading {
    font-size: 2.8rem;
  }
}

/* 導入部 */
.p-top-intro__section {
  margin: 0 -2rem;
  padding: 0 2rem;
}
.p-top-intro__container {
  max-width: var(--inner-width4);
}
.p-top-intro__img {
  margin: 0 -2rem 3rem;
}
.p-top-intro__img .u-img-wrap {
  aspect-ratio: 3/2;
}
.p-top-intro__header {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 2rem;
}
.p-top-intro__heading {
  line-height: 1.4;
  font-size: 2.5rem;
}
.p-top-intro__heading::before, .p-top-intro__heading::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.1em;
  bottom: 0;
  left: 0;
  height: calc(100% - 0.4em);
  margin: auto;
  background-color: var(--color-sub1);
}
.p-top-intro__heading::before {
  width: 0.3rem;
}
.p-top-intro__heading::after {
  width: 0.1rem;
  left: 0.6rem;
}
.p-top-intro__body {
  font-size: 1.6rem;
  letter-spacing: normal;
}
.p-top-intro__more {
  margin-top: 3rem;
}
.p-top-intro__slider {
  margin: 5rem -2rem 0;
}
.p-top-intro__slider img {
  width: 100%;
}
.p-top-intro__slider .swiper-slide {
  height: auto;
}
.p-top-intro__slider .swiper-pagination {
  display: flex;
  justify-content: center;
  position: static;
  width: auto;
  padding: 1.5rem 0;
}
.p-top-intro__slider .swiper-pagination-bullet {
  display: block !important;
  width: 1rem;
  height: 1rem;
  margin: 0 0.5rem !important;
  background-color: var(--color-sub3);
  opacity: 1;
}
.p-top-intro__slider .swiper-pagination-bullet-active {
  background-color: var(--color-base);
}
@media screen and (min-width: 768px), print {
  .p-top-intro__img {
    width: 50%;
    margin: 0 3rem 0 -2rem;
  }
  .p-top-intro__img .u-img-wrap {
    aspect-ratio: auto;
    height: 100%;
  }
  .p-top-intro__main {
    padding: 3rem 0;
  }
  .p-top-intro__slider {
    margin: 5rem calc(-2rem - 15vw) 0;
  }
  .p-top-intro__slider .swiper-pagination {
    padding: 2rem 0;
  }
  .p-top-intro__slider .swiper-pagination-bullet {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 0.75rem !important;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-intro__section {
    margin: 0 -5rem;
    padding: 0 5rem;
  }
  .p-top-intro__img {
    margin: 0 5rem 0 -5rem;
  }
  .p-top-intro__main {
    padding: 5rem 0;
  }
  .p-top-intro__header {
    margin-bottom: 3rem;
    padding-left: 3rem;
  }
  .p-top-intro__heading {
    font-size: 3.5rem;
  }
  .p-top-intro__body {
    font-size: 1.8rem;
  }
  .p-top-intro__more {
    margin-top: 5rem;
  }
  .p-top-intro__slider {
    margin: 5rem calc(-5rem - 15vw) 0;
  }
  .p-top-intro__slider .swiper-pagination {
    padding: 3rem 0;
  }
}
@media screen and (min-width: 1600px), print {
  .p-top-intro__container {
    align-items: center;
  }
  .p-top-intro__img {
    width: 70rem;
    margin: 0 12rem 0 -5rem;
  }
  .p-top-intro__img .u-img-wrap {
    aspect-ratio: 1/1;
    height: auto;
  }
  .p-top-intro__main {
    display: grid;
    place-content: center;
    padding: 0;
  }
  .p-top-intro__header {
    margin-bottom: 4rem;
    padding-left: 4rem;
  }
  .p-top-intro__heading {
    font-size: 5rem;
  }
}
@media screen and (min-width: 1920px), print {
  .p-top-intro__img {
    width: 90rem;
  }
}

/* コース案内 */
.p-top-course__section {
  margin: 0 -2rem;
  background: var(--color-sub1) url(../img/top/img2.jpg) no-repeat center;
  background-size: cover;
}
.p-top-course__container {
  max-width: 132rem;
  padding: 10rem 0;
}
.p-top-course__header {
  position: relative;
  margin-bottom: 3rem;
}
.p-top-course__header::before, .p-top-course__header::after {
  content: "";
  display: block;
  width: 7rem;
  margin: auto;
  background-color: var(--color-sub2);
}
.p-top-course__header::before {
  position: absolute;
  right: 0;
  bottom: 0.5rem;
  left: 0;
  height: 0.3rem;
}
.p-top-course__header::after {
  margin-top: 3rem;
  height: 0.1rem;
}
.p-top-course__heading {
  line-height: 1.2;
  font-size: 4rem;
}
.p-top-course__heading::after {
  content: attr(data-subtitle);
  display: block;
  margin-top: 1rem;
  font-size: 1.2rem;
  color: var(--color-sub2);
  letter-spacing: 1em;
}
.p-top-course__description {
  margin-bottom: 6rem;
  font-size: 1.4rem;
}
.p-top-course__description .lg {
  font-size: 1.3em;
}
.p-top-course__body {
  padding: 0 2rem;
}
.p-top-course__list {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}
.p-top-course__item {
  display: flex;
  flex-direction: column;
  position: relative;
  line-height: 1.5;
  background-color: #000;
  box-shadow: var(--box-shadow2);
  overflow: hidden;
}
.p-top-course__img .u-img-wrap {
  aspect-ratio: 650/425;
  background-color: #fff;
}
.p-top-course__img img {
  transition: opacity var(--transition), transform var(--transition);
}
.p-top-course__title {
  flex: 1;
  position: relative;
  padding: 2rem 1rem;
}
.p-top-course__title--label {
  display: block;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-size: 3.2rem;
}
.p-top-course__price {
  padding: 2rem 0;
  line-height: 1.2;
}
.p-top-course__price--info {
  display: inline-block;
  vertical-align: top;
  padding: 1rem 1.5rem;
  line-height: 1em;
  border-radius: 10em;
  border: 1px solid #fff;
}
.p-top-course__price--info + .p-top-course__price--info {
  margin-left: 1rem;
}
.p-top-course__price--price {
  display: block;
  margin-top: 1.5rem;
  line-height: 1em;
  font-size: 3.2rem;
}
.p-top-course__price--person {
  font-size: 0.68em;
}
.p-top-course__price--person::before {
  content: "/";
  margin-inline: 0.5ch;
}
.p-top-course__special {
  margin-top: 1.2rem;
  margin-bottom: -0.5rem;
  font-size: 1.1rem;
}
.p-top-course__special--price {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.6em;
}
.p-top-course__more a:hover {
  text-decoration: none;
}
.p-top-course__more a::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 10;
}
.p-top-course__vip {
  border-radius: 2rem 2rem 0 0;
}
@media screen and (min-width: 768px), print {
  .p-top-course__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-top-course__title--label {
    font-size: 4rem;
  }
  .p-top-course__vip {
    border-radius: 2rem 0 0 0;
  }
  .p-top-course__hamanaka {
    border-radius: 0 2rem 0 0;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-course__section {
    margin: 0 -5rem;
    padding: 0 5rem;
  }
  .p-top-course__container {
    padding-bottom: 15rem;
  }
  .p-top-course__header {
    margin-bottom: 5rem;
  }
  .p-top-course__header::before, .p-top-course__header::after {
    width: 10rem;
  }
  .p-top-course__heading {
    font-size: 5rem;
  }
  .p-top-course__heading::after {
    margin-top: 0.8rem;
    font-size: 1.6rem;
  }
  .p-top-course__description {
    font-size: 1.8rem;
  }
  .p-top-course__body {
    padding: 0;
  }
  .p-top-course__title {
    padding: 2.5rem 5rem 2rem 4rem;
    font-size: 1.6rem;
  }
  .p-top-course__title--label {
    margin-bottom: 1.5rem;
  }
  .p-top-course__title::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 3rem;
    bottom: 0;
    width: 1.8rem;
    height: 1.8rem;
    margin: auto;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
  }
  .p-top-course__price {
    padding: 2rem 4rem;
  }
  .p-top-course__price--info {
    font-size: 1.6rem;
  }
  .p-top-course__price--price {
    font-size: 4.4rem;
  }
  .p-top-course__special {
    font-size: 1.4rem;
  }
  .p-top-course__vip {
    border-radius: 3rem 0 0 0;
  }
  .p-top-course__hamanaka {
    border-radius: 0 3rem 0 0;
  }
}
@media screen and (min-width: 1600px), print {
  .p-top-course__title {
    font-size: 2rem;
  }
  .p-top-course__title--label {
    line-height: 1.2;
    font-size: 4.6rem;
  }
  .p-top-course__price--info {
    font-size: 1.8rem;
  }
  .p-top-course__price--price {
    margin: 0 0 0 auto;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-top-course__item:hover .p-top-course__img img {
    opacity: 0.85;
    transform: scale(1.1);
  }
  .p-top-course__item:hover .p-top-course__title {
    background-color: var(--color-base);
  }
  .p-top-course__item:hover .p-top-course__title::before {
    right: 2rem;
  }
  .p-top-course__item:hover .p-top-course__price {
    background-color: var(--color-sub5);
  }
}

/* サービス紹介 */
.p-top-service__section {
  margin: 0 -2rem -10rem;
  padding: 10rem 0;
}
.p-top-service__container {
  max-width: var(--inner-width3);
}
.p-top-service__container + .p-top-service__container {
  margin-top: 10rem;
}
.p-top-service__img .u-img-wrap {
  aspect-ratio: 2/1;
}
.p-top-service__main {
  padding: 2rem 2rem 0;
}
.p-top-service__heading {
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-size: 2rem;
}
.p-top-service__more {
  margin-top: 2rem;
}
@media screen and (min-width: 768px), print {
  .p-top-service__main {
    padding: 3rem 3rem 0;
  }
  .p-top-service__heading {
    margin-bottom: 2rem;
    font-size: 3rem;
  }
  .p-top-service__more {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-service__section {
    margin: 0 -5rem -15rem;
  }
  .p-top-service__img {
    width: 70rem;
  }
  .p-top-service__img .u-img-wrap {
    aspect-ratio: 980/530;
  }
  .p-top-service__main {
    padding: 0 5rem;
  }
  .p-top-service__heading {
    margin-right: -5rem;
    font-size: 3.5rem;
  }
  .p-top-service__body {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1280px), print {
  .p-top-service__img {
    width: 80rem;
  }
}
@media screen and (min-width: 1600px), print {
  .p-top-service__section {
    padding: 15rem 0;
  }
  .p-top-service__container + .p-top-service__container {
    margin-top: 15rem;
  }
  .p-top-service__img {
    width: 98rem;
  }
  .p-top-service__heading {
    font-size: 4.4rem;
  }
  .p-top-service__body {
    font-size: 2rem;
  }
  .p-top-service__primary .p-top-service__main {
    padding: 0 11.5rem 0 8rem;
  }
  .p-top-service__secondary .p-top-service__main {
    padding: 0 6rem 0 6rem;
  }
}

/* --------------------------------

  お知らせ

-------------------------------- */
.news-body {
  margin-top: 1rem;
  line-height: 1.8;
  word-break: break-all;
  word-wrap: break-word;
}
.news-body * {
  word-break: break-all;
  word-wrap: break-word;
}
.news-body::after {
  content: "";
  display: table;
  clear: both;
}
.news-back {
  margin-top: 5rem;
  text-align: center;
}
.news-topics + .news-topics {
  margin-top: 2rem;
}
.news-link {
  display: block;
  position: relative;
  margin: -1rem;
  padding: 1rem;
  line-height: 1.4;
  color: var(--color-text);
  text-align: center;
}
.news-link:hover {
  text-decoration: none;
  color: var(--color-link);
}
.news-link:hover .news-title {
  text-decoration: underline;
}
.news-date {
  margin-bottom: 0.5rem;
}
.news-date span {
  font-weight: 500;
}
.news-title {
  word-break: break-all;
  word-wrap: break-word;
}
.news-title span {
  font-weight: 700;
}
.news-img {
  position: relative;
  overflow: hidden;
}
.news-img img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
@media screen and (min-width: 768px), print {
  .news-link {
    display: flex;
    text-align: left;
  }
  .news-date {
    width: 13ch;
    margin-bottom: 0;
  }
  .news-title {
    flex: 1;
  }
}
@media screen and (min-width: 1100px), print {
  .news-link {
    font-size: 1.8rem;
  }
}

/* topics_paging */
#topics_paging {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -2rem;
}
#topics_paging_all {
  margin-top: 5rem;
  margin-bottom: 1rem;
  text-align: center;
}
#topics_paging li {
  display: flex;
  align-items: center;
  margin: 0 0.4rem;
  padding: 1rem 1.2rem;
  line-height: 1.2;
  color: var(--color-text);
  text-align: center;
  border-radius: 0.5rem;
  border: 1px solid var(--color-sub6);
  background-color: #fff;
  list-style-type: none;
  list-style-image: none;
}
#topics_paging a {
  display: block;
  margin: -1.2rem -1.4rem;
  padding: 1rem 1.2rem;
  color: var(--color-text);
}
#topics_paging a:hover {
  text-decoration: none;
  color: #fff;
  border-radius: 0.35rem;
  background-color: var(--color-link);
}

#calculated_page {
  margin-left: -1rem;
}

#total_pages {
  margin-right: 1rem;
}

/* --------------------------------

  下層ページ

-------------------------------- */
/* こだわり */
.p-philosophy__header {
  margin-bottom: 3rem;
}
.p-philosophy__heading {
  line-height: 1.4;
  font-size: 2.2rem;
}
.p-philosophy__heading .lg {
  display: block;
  margin-bottom: 0.4em;
  line-height: 1em;
  font-size: 2em;
}
.p-philosophy__caption {
  margin-top: 1.5rem;
  padding: 1.2rem 0;
  line-height: 1.3;
  font-size: 2rem;
}
.p-philosophy__text {
  font-size: 1.6rem;
}
.p-philosophy__gallery {
  grid-row-gap: 1rem;
  margin-top: 3rem;
}
.p-philosophy__gallery--img {
  aspect-ratio: 540/350;
}
@media screen and (min-width: 768px), print {
  .p-philosophy__header {
    margin-bottom: 4.5rem;
  }
  .p-philosophy__heading {
    font-size: 2.6rem;
  }
  .p-philosophy__caption {
    font-size: 2.2rem;
  }
  .p-philosophy__text {
    font-size: 1.8rem;
  }
  .p-philosophy__gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-row-gap: 2rem;
    margin-top: 5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-philosophy__heading {
    font-size: 3.6rem;
  }
  .p-philosophy__caption {
    margin-top: 2.5rem;
    font-size: 3.6rem;
  }
}

/* 活カニの花咲よりごあいさつ */
.p-greeting__gallery {
  grid-template-columns: auto;
  grid-row-gap: 0px;
  margin-top: 3rem;
}
.p-greeting__gallery--img {
  aspect-ratio: 490/335;
}
.p-greeting__gallery--caption {
  margin-top: 1.5rem;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px), print {
  .p-greeting__gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 2rem;
    margin-top: 4rem;
  }
  .p-greeting__gallery--caption {
    margin-top: 2rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-greeting__gallery--caption {
    font-size: 1.8rem;
  }
}

/* コース一覧 */
.p-course-nav__section.c-section__secondary {
  max-width: var(--inner-width2);
}
.p-course-nav__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}
.p-course-nav__link {
  display: grid;
  place-content: center;
  position: relative;
  height: 10rem;
  padding: 0 0 1rem;
  line-height: 1.4;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  border-radius: 1rem;
  background-color: #000;
  transition: color var(--transition), background-color var(--transition);
}
.p-course-nav__link::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 1rem;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin: auto;
  background: url(../img/base/icon-arrow_wht.svg) no-repeat center;
  background-size: contain;
}
.p-course-nav__label {
  display: block;
  margin: 0 -6ch;
}
.p-course-nav__vip {
  background-color: var(--color-subA);
}
.p-course-nav__hamanaka {
  background-color: var(--color-subC);
}
.p-course-nav__setana {
  background-color: var(--color-subE);
}
.p-course-nav__season {
  background-color: var(--color-subG);
}
.p-course-nav__link:hover {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .p-course-nav__link:hover {
    color: #fff;
    background-color: var(--color-link);
  }
}
@media screen and (min-width: 768px), print {
  .p-course-nav__list {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }
  .p-course-nav__link {
    height: 12rem;
    font-size: 2.2rem;
  }
  .p-course-nav__link::before {
    width: 1.6rem;
    height: 1.6rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-course-nav__list {
    grid-template-columns: repeat(6, 1fr);
    margin-inline: -2rem;
  }
  .p-course-nav__link {
    height: 14rem;
    padding: 0 0 2rem;
    font-size: 2.4rem;
    border-radius: 2rem;
  }
  .p-course-nav__link::before {
    bottom: 1.2rem;
    width: 2rem;
    height: 2rem;
  }
}
@media screen and (min-width: 1280px), print {
  .p-course-nav {
    margin-inline: 0;
  }
  .p-course-nav__link {
    height: 16rem;
    font-size: 2.8rem;
  }
}

/* コース詳細 */
.p-course__header {
  border-radius: 2rem 0 0 0;
  overflow: hidden;
}
.p-course__img .u-img-wrap {
  aspect-ratio: 550/360;
}
.p-course__heading {
  padding-top: 2rem;
  line-height: 1.3;
  font-size: 3.2rem;
}
.p-course__caption {
  margin-top: 1rem;
  line-height: 1.5;
}
.p-course__price {
  margin-top: 2rem;
  padding: 2rem 0;
  line-height: 1.2;
}
.p-course__price--info {
  display: inline-block;
  vertical-align: top;
  padding: 1rem 1.5rem;
  line-height: 1em;
  border-radius: 10em;
  border: 1px solid #fff;
}
.p-course__price--info + .p-course__price--info {
  margin-left: 1rem;
}
.p-course__price--price {
  display: block;
  margin-top: 1.5rem;
  line-height: 1em;
  font-size: 3.2rem;
}
.p-course__price--person {
  font-size: 0.68em;
}
.p-course__price--person::before {
  content: "/";
  margin-inline: 0.5ch;
}
.p-course__special {
  margin-top: 1.2rem;
  margin-bottom: -0.5rem;
  font-size: 1.1rem;
}
.p-course__special--price {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.6em;
}
.p-course__menu {
  margin-top: -2rem;
}
.p-course__menu dt {
  display: grid;
  place-content: center;
  width: 22ch;
  height: 4rem;
  margin-bottom: 2rem;
  padding-left: 1ch;
  font-weight: 500;
  font-size: 1.6rem;
  text-align: center;
  border-radius: 10em;
  border: 1px solid currentColor;
}
.p-course__menu dd {
  position: relative;
  margin-left: 1.15em;
  padding-left: 2em;
  font-weight: 700;
}
.p-course__menu dd::before {
  content: "●";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.p-course__more {
  margin: 2.5rem 0;
  padding-bottom: 3rem;
  border-bottom: 1px dashed var(--color-sub1);
}
.p-course__more--item + .p-course__more--item {
  margin-top: 2rem;
}
.p-course__more .c-link-button {
  display: block;
  width: 26rem;
  margin: auto;
  padding-right: 0;
}
.p-course__note {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px), print {
  .p-course__img {
    width: 50%;
  }
  .p-course__img .u-img-wrap {
    aspect-ratio: auto;
    height: 100%;
  }
  .p-course__heading {
    font-size: 4rem;
  }
  .p-course__body {
    border-radius: 0 0 2rem 0;
  }
  .p-course__more--item {
    margin: 0 1rem;
  }
  .p-course__more--item + .p-course__more--item {
    margin-top: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .p-course__header {
    border-radius: 3rem 0 0 0;
  }
  .p-course__heading {
    flex-grow: 1;
    display: grid;
    place-content: center;
    font-size: 6rem;
  }
  .p-course__caption {
    margin-top: 0;
  }
  .p-course__price--price {
    font-size: 3.6rem;
  }
  .p-course__price--person {
    font-size: 0.68em;
  }
  .p-course__special {
    font-size: 1.2rem;
  }
  .p-course__body {
    border-radius: 0 0 3rem 0;
  }
  .p-course__menu {
    margin-top: -1rem;
  }
  .p-course__menu dt {
    margin-bottom: 3rem;
    padding-bottom: 0.15ch;
    font-size: 1.8rem;
  }
  .p-course__more {
    margin: 3rem 0;
    padding-bottom: 4rem;
  }
  .p-course__more .c-link-button {
    display: inline-block;
    width: auto;
    padding-right: 6rem;
  }
  .p-course__note {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 1600px), print {
  .p-course__price--price {
    margin: 0 0 0 2rem;
  }
  .p-course__special {
    margin-top: 1.5rem;
  }
}

/* お料理紹介 */
.p-menu__list {
  padding-bottom: 3rem;
  border-bottom: 1px dashed var(--color-sub1);
}
.p-menu__img {
  aspect-ratio: 235/170;
}
.p-menu__detail dt {
  margin: 0 -1em;
  padding: 1.5rem 0 1rem;
  line-height: 1.3;
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
}
.p-menu__detail dd {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px), print {
  .p-menu__list {
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-menu__detail dt {
    font-size: 2rem;
  }
}

/* お子様メニュー */
.p-kids-menu__row {
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed var(--color-sub1);
}
.p-kids-menu__row + .p-kids-menu__row {
  margin-top: 1.5rem;
}
.p-kids-menu__title {
  font-size: 2rem;
}
.p-kids-menu__text {
  font-size: 1.2rem;
}
.p-kids-menu__price {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px), print {
  .p-kids-menu__row {
    padding-right: 1.5rem;
  }
  .p-kids-menu__title {
    width: 20rem;
  }
  .p-kids-menu__text {
    padding-right: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-kids-menu__title {
    width: 25rem;
    font-size: 2.4rem;
  }
  .p-kids-menu__price {
    font-size: 2rem;
  }
}

/* ドリンク */
.p-drink__col {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}
.p-drink__col:not(:first-child) {
  margin-top: 3rem;
}
.p-drink__img {
  width: 20rem;
  height: 20rem;
  margin: 0 auto 2rem;
  background-color: var(--color-sub7);
}
.p-drink__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-drink__text {
  margin-bottom: 2rem;
  font-size: 1.4rem;
}
.p-drink__title--label {
  display: inline-block;
  vertical-align: top;
  margin-left: 1em;
  padding: 0.75rem 1rem 0.85rem;
  line-height: 1em;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  background-color: var(--color-main);
}
.p-drink__price {
  line-height: 1.5;
  font-size: 1.6rem;
}
.p-drink__price + .p-drink__price {
  margin-top: 0.5rem;
}
.p-drink__price--label {
  display: block;
  align-self: center;
}
.p-drink__price--price {
  display: block;
  flex: 1;
  text-align: right;
}
@media screen and (min-width: 768px), print {
  .p-drink__col {
    grid-row-gap: 5rem;
  }
  .p-drink__col:not(:first-child) {
    margin-top: 5rem;
  }
  .p-drink__2col {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-drink__img {
    width: 16rem;
    height: 16rem;
    margin: 0 2rem 0 0;
  }
  .p-drink__text {
    margin: 0 2rem 0 0;
  }
  .p-drink__price--wrap {
    width: 20ch;
    margin-left: auto;
  }
}
@media screen and (min-width: 1100px), print {
  .p-drink__col {
    grid-column-gap: 5rem;
  }
  .p-drink__title--label {
    margin: 0.25rem 0 0 1rem;
    font-size: 1.4rem;
  }
  .p-drink__img {
    width: 20rem;
    height: 20rem;
    margin-right: 3rem;
  }
  .p-drink__text {
    margin-right: 3rem;
  }
  .p-drink__price {
    font-size: 1.8rem;
  }
  .p-drink__price + .p-drink__price {
    margin-top: 1rem;
  }
}

/* ドリンク一覧 */
.p-drink-nav__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}
.p-drink-nav__link {
  display: grid;
  place-content: center;
  position: relative;
  height: 8rem;
  padding: 0 0 1rem;
  line-height: 1.4;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  border-radius: 1rem;
  background-color: var(--color-sub3);
  transition: color var(--transition), background-color var(--transition);
}
.p-drink-nav__link::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0.8rem;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin: auto;
  background: url(../img/base/icon-arrow_wht.svg) no-repeat center;
  background-size: contain;
}
.p-drink-nav__label {
  display: block;
  margin: 0 -6ch;
}
.p-drink-nav__link:hover {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .p-drink-nav__link:hover {
    color: #fff;
    background-color: var(--color-link);
  }
}
@media screen and (min-width: 768px), print {
  .p-drink-nav__list {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 1100px), print {
  .p-drink-nav__list {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }
  .p-drink-nav__link {
    height: 9rem;
    font-size: 2rem;
  }
  .p-drink-nav__label {
    letter-spacing: 0.1em;
  }
}

/* ドリンク用ページトップ */
.p-drink-pagetop {
  margin: 5rem -2rem -5rem;
}
.p-drink-pagetop__link {
  display: block;
  padding: 1.5rem 0;
  font-size: 1.2rem;
  color: var(--color-sub3);
  border-top: 1px solid var(--color-sub2);
  transition: color var(--transition), border-color var(--transition), background-color var(--transition);
}
.p-drink-pagetop__link:hover {
  text-decoration: none;
  color: var(--color-sub3);
}
@media (hover: hover) and (pointer: fine) {
  .p-drink-pagetop__link:hover {
    color: var(--color-link);
    border-top-color: currentColor;
  }
}
.p-drink-pagetop__link::before {
  content: "▲";
  margin-right: 1rem;
}
@media screen and (min-width: 768px), print {
  .p-drink-pagetop {
    margin: 5rem -3rem -5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-drink-pagetop {
    margin: 5rem -5rem -5rem;
  }
  .p-drink-pagetop__link {
    font-size: 1.4rem;
  }
}

/* 店舗情報 */
.p-shop__heading {
  margin-bottom: 5rem;
}
.p-shop__heading img {
  width: 24rem;
}
.p-shop__info th {
  width: 17ch;
}
.p-shop__cancel {
  margin-top: 1rem;
}
.p-shop__cancel dt::before {
  content: "■";
}
.p-shop__card {
  margin-top: 1rem;
}
@media screen and (min-width: 768px), print {
  .p-shop__heading img {
    width: 30rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-shop__heading img {
    width: 47.1rem;
  }
}

/* アクセスマップ */
.p-access__more {
  margin-top: 5rem;
}
@media screen and (min-width: 768px), print {
  .p-access__map {
    height: 50rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-access__map {
    height: 60rem;
  }
}

/* 店内紹介 */
.p-photo__gallery {
  margin-top: 3rem;
}
.p-photo__gallery--img {
  aspect-ratio: 320/220;
}
@media screen and (min-width: 768px), print {
  .p-photo__text {
    font-size: 1.4rem;
  }
  .p-photo__gallery {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-photo__gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --------------------------------

  プリント

-------------------------------- */
@media print {
  html, body {
    width: var(--inner-width);
    background: none;
  }
}
/* --------------------------------

  修正・追加用

-------------------------------- */