@charset "UTF-8";

/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */

*,
*::before,
*::after {
  border-style: solid;
  border-width: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

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

dd {
  margin-left: 0;
}

hr {
  border-top-width: 1px;
  box-sizing: content-box;
  clear: both;
  color: inherit;
  height: 0;
  margin: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

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

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

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;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border-radius: 0;
  color: inherit;
  font: inherit;
  margin: 0;
  padding: 0;
  text-align: inherit;
  text-transform: inherit;
  vertical-align: middle;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
  cursor: pointer;
}

button:disabled,
[type='button']:disabled,
[type='reset']:disabled,
[type='submit']:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  min-width: 0;
  padding: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  outline-offset: -2px;
}

[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

[type='number'] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-collapse: collapse;
  border-color: inherit;
}

caption {
  text-align: left;
}

td,
th {
  padding: 0;
  vertical-align: top;
}

th {
  font-weight: bold;
  text-align: left;
}

input,
button,
select,
textarea {
  border: none;
  outline: none;
}

:focus:not(:focus-visible) {
  outline: 0;
}

input[type='checkbox'],
input[type='radio'] {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

textarea {
  display: block;
  resize: vertical;
}

img {
  background-repeat: no-repeat;
  background-size: cover;
  border: none;
  display: block;
  font-style: italic;
  height: auto;
  max-width: 100%;
  shape-margin: 0.75rem;
  width: 100%;
}

time {
  display: block;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  ミックスイン

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

:root {
  --letter-spacing: 0.05em;
  --scrollbar-width: 0;
  --base-button-size: 23rem;
}

*,
*::before,
*::after {
  letter-spacing: var(--letter-spacing);
}

a {
  cursor: pointer;
  transition-duration: 0.5s;
  transition-property: opacity;
}

html {
  font-size: 0.63vw;
}

body {
  color: #333;
  font-family: 'Noto Serif JP', serif;
  font-optical-sizing: auto;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-break: strict;
  line-height: 1.5;
  min-height: 100vh;
  overflow-wrap: anywhere;
  visibility: hidden;
  word-break: normal;
}

body.fixed {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

body.is-show {
  visibility: visible;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  共通ボタン

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.c-button {
  --letter-spacing: 0.1em;
  background-color: #333;
  color: #fff;
  display: -ms-grid;
  display: grid;
  font-family: 'Cormorant Infant', serif;
  font-weight: 400;
  line-height: 1.75;
  padding: 1.3rem 4rem;
  place-items: center;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.c-button::after {
  background-color: #fff;
  content: '';
  display: block;
  height: 0.2rem;
  position: absolute;
  right: 0;
  scale: 1 0.6;
  top: 50%;
  translate: 0 -50%;
  width: 12.17%;
}

.c-button.c-button--brown {
  background-color: #7a5842;
}

.c-button.c-button--prev::after {
  left: 0;
  right: auto;
}

.c-button.c-button--white {
  background-color: #fff;
  color: #111;
}

.c-button.c-button--white::after {
  background-color: #111;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  共通見出し

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.c-heading {
  -ms-grid-columns: 1fr 4rem -webkit-max-content 4rem 1fr;
  -ms-grid-columns: 1fr 4rem max-content 4rem 1fr;
  display: -ms-grid;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr -webkit-max-content 1fr;
  grid-template-columns: 1fr max-content 1fr;
  text-align: center;
}

.c-heading__line {
  -ms-grid-row-align: start;
  align-items: center;
  align-self: start;
  color: #e0e0e0;
  display: -ms-grid;
  display: grid;
  margin-top: 3.2rem;
}

.c-heading__line::before,
.c-heading__line::after {
  background: currentColor;
  content: '';
  display: block;
}

.c-heading__line::before {
  height: 0.1rem;
  width: 100%;
}

.c-heading__line::after {
  aspect-ratio: 1;
  height: auto;
  rotate: 45deg;
  width: 0.8rem;
}

.c-heading__line:where(.c-heading._white *)::before {
  background: rgba(255, 255, 255, 0.15);
}

.c-heading__line:where(.c-heading._white *)::after {
  background: #fff;
}

.c-heading__line._left {
  -ms-grid-columns: 1fr -webkit-max-content;
  -ms-grid-columns: 1fr max-content;
  grid-template-columns: 1fr -webkit-max-content;
  grid-template-columns: 1fr max-content;
}

.c-heading__line._right {
  -ms-grid-columns: -webkit-max-content 1fr;
  -ms-grid-columns: max-content 1fr;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
}

.c-heading__line._right::before {
  order: 1;
}

.c-heading__en {
  --letter-spacing: 0.1em;
  color: #7a5842;
  font-family: 'Cormorant Infant', serif;
  font-size: 7rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.c-heading__en:where(.c-heading._white *) {
  color: #fff;
}

.c-heading__en:where(.c-heading._white-gray *) {
  color: #fff;
}

.c-heading__ja {
  margin-top: 0.5em;
}

.c-heading__ja:where(.c-heading._white *) {
  color: #fff;
}

.c-heading__ja:where(.c-heading._white-gray *) {
  color: #fff;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  パネル内の見出し

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.c-panel-heading {
  --letter-spacing: 0.1em;
  display: -ms-grid;
  display: grid;
  font-size: 3.6rem;
  font-weight: 400;
  gap: 0.5rem;
  line-height: 1.19;
  place-items: center;
  text-align: center;
}

.c-panel-heading::after {
  aspect-ratio: 245/15;
  background-image: url(/_common/img/title-illust01@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: block;
  height: auto;
  width: 6.81em;
}

.c-panel-heading.c-panel-heading--white::after {
  background-image: url(/_common/img/title-illust02@2x.png);
}

.c-panel-heading.c-panel-heading--all-white {
  color: #fff;
}

.c-panel-heading.c-panel-heading--all-white::after {
  background-image: url(/_common/img/title-illust02@2x.png);
}

.c-panel-heading.c-panel-heading--en {
  font-family: 'Cormorant Infant', serif;
  text-transform: uppercase;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  reserveボタン

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.c-reserve {
  bottom: 35%;
  opacity: 0;
  position: fixed;
  right: 0;
  transition-duration: 0.5s;
  transition-property: opacity, visibility;
  visibility: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 500;
}

.c-reserve.js-in {
  opacity: 1;
  visibility: visible;
}

.c-reserve__link {
  background: #7a5842;
  border-radius: 1rem 0 0 1rem;
  display: -ms-grid;
  display: grid;
  gap: 1.4rem;
  padding: 3rem 1.4rem 2.4rem 2rem;
  place-items: center;
}

.c-reserve__icon {
  width: 2rem;
}

.c-reserve__text {
  -ms-writing-mode: tb-lr;
  --letter-spacing: 0.1em;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-lr;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  共通カードレイアウト

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.l-cards {
  -ms-grid-columns: minmax(0, 1fr) 6rem minmax(0, 1fr) 6rem minmax(0, 1fr);
  display: -ms-grid;
  display: grid;
  gap: 4rem 6rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 13.4rem;
}

.l-cards__card:nth-of-type(3n - 2) {
  margin-top: -6rem;
}

.l-cards__card:nth-of-type(3n) {
  margin-top: 6rem;
}

.l-inner {
  margin-inline: auto;
  max-width: 124.8rem;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  width: 100%;
}

.l-inner.l-inner--small {
  max-width: 92.8rem;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  パネル

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.l-panel {
  position: relative;
  z-index: 1;
}

.l-panel__corner::before,
.l-panel__corner::after {
  aspect-ratio: 158.3/158.5;
  background-image: url(/_common/img/corner-color.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: block;
  height: auto;
  position: absolute;
  transform-origin: center center;
  width: 15.83rem;
  z-index: 1;
}

.l-panel__corner::before {
  left: 0;
}

.l-panel__corner::after {
  right: 0;
}

.l-panel__corner._top::before,
.l-panel__corner._top::after {
  top: 0;
}

.l-panel__corner._top::after {
  rotate: 90deg;
}

.l-panel__corner._bottom::before,
.l-panel__corner._bottom::after {
  bottom: 0;
}

.l-panel__corner._bottom::before {
  rotate: -90deg;
}

.l-panel__corner._bottom::after {
  rotate: 180deg;
}

.l-panel__corner:where(.l-panel.l-panel--white *)::before,
.l-panel__corner:where(.l-panel.l-panel--white *)::after {
  background-image: url(/_common/img/corner-white.png);
}

.l-panel__column::before,
.l-panel__column::after {
  aspect-ratio: 6/955.5;
  background-image: url(/_common/img/line-color02.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  bottom: 13rem;
  content: '';
  display: block;
  position: absolute;
  top: 13rem;
  z-index: 1;
}

.l-panel__column::before {
  left: 0.8rem;
}

.l-panel__column::after {
  right: 0.8rem;
}

.l-panel__column:where(.l-panel.l-panel--white *)::before,
.l-panel__column:where(.l-panel.l-panel--white *)::after {
  background-image: url(/_common/img/line-white02.png);
}

.l-panel__row::before,
.l-panel__row::after {
  aspect-ratio: 961.5/6.25;
  background-image: url(/_common/img/line-color01.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: '';
  display: block;
  left: 12rem;
  position: absolute;
  right: 12rem;
  z-index: 1;
}

.l-panel__row::before {
  top: 1.6rem;
}

.l-panel__row::after {
  bottom: 1.6rem;
}

.l-panel__row:where(.l-panel.l-panel--white *)::before,
.l-panel__row:where(.l-panel.l-panel--white *)::after {
  background-image: url(/_common/img/line-white01.png);
}

.l-wrapper {
  overflow-x: clip;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  about

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.p-about {
  background-image: url(/_common/img/about-back@2x.jpg);
  background-position: 50% 0%;
  background-repeat: repeat;
  background-size: cover;
  padding: 15rem 0;
  position: relative;
  z-index: 1;
}

.p-about__media {
  -ms-grid-columns: 44rem 8.8rem 1fr;
  display: -ms-grid;
  display: grid;
  gap: 8.8rem;
  grid-template-columns: 44rem 1fr;
}

.p-about__heading {
  font-size: 2rem;
  line-height: 1.7;
  margin-top: 2rem;
}

.p-about__heading-en {
  color: #7a5842;
  font-family: 'Cormorant Infant', serif;
  font-size: 8rem;
  line-height: 1;
  text-transform: uppercase;
}

.p-about__text01 {
  font-size: 2.6rem;
  line-height: 1.62;
  margin-top: 3.2rem;
}

.p-about__text02 {
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Hiragino Sans', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, 'MS Pゴシック', 'MS PGothic', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', sans-serif;
  line-height: 2.5;
  margin-top: 4.2rem;
}

.p-about__image img {
  -o-object-fit: cover;
  aspect-ratio: 679/830;
  object-fit: cover;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  アラカルト背景画像

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.p-alacarte-container {
  background-image: url(/_common/img/alacarte-back@2x.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 160rem 100%;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  アラカルト

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.p-alacarte {
  padding: 4rem 0 13.2rem;
}

.p-alacarte__image img {
  -o-object-fit: cover;
  -o-object-position: center 80%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 80%;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  お知らせ一覧ページの単体のお知らせ

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.p-article {
  border-bottom: 0.1rem solid #b4b4b4;
}

.p-article__link {
  -ms-grid-columns: 19.6rem 3rem minmax(0, 1fr);
  display: -ms-grid;
  display: grid;
  gap: 2rem 3rem;
  grid-template-columns: 19.6rem minmax(0, 1fr);
  padding: 2.8rem 1rem 2.8rem 0;
}

.p-article__image img {
  -o-object-fit: cover;
  aspect-ratio: 196/112;
  object-fit: cover;
}

.p-article__body {
  --letter-spacing: 0.065em;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
}

.p-article__time {
  color: #b4b4b4;
  margin-top: -0.2em;
}

.p-article__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  font-weight: 500;
  margin-top: 0.3em;
  overflow: hidden;
}

.p-article__text {
  font-size: 1.4rem;
  margin-top: 0.4em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  ワインバナー

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.p-banner {
  background-image: url(/_common/img/winebanner-back@2x.jpg);
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 7rem 9.5rem 7.4rem;
}

.p-banner__heading-group {
  color: #fff;
}

.p-banner__heading-en {
  --letter-spacing: 0.1em;
  font-family: 'Cormorant Infant', serif;
  font-size: 7rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.p-banner__heading-ja {
  margin-top: 0.5em;
}

.p-banner__button {
  margin-top: 6.4rem;
  max-width: var(--base-button-size);
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  パンくず

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.p-breadcrumb__list {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.8rem;
  padding: 2rem 0;
}

.p-breadcrumb__item {
  color: #7a5842;
  flex-shrink: 0;
  font-family: 'Cormorant Infant', serif;
  font-size: 1.2rem;
  line-height: 1.17;
  text-transform: uppercase;
}

.p-breadcrumb__item:not(:has(.p-breadcrumb__link)) {
  flex-shrink: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-breadcrumb__link {
  align-items: center;
  color: #333;
  display: flex;
  gap: 0.8rem;
}

.p-breadcrumb__link::after {
  aspect-ratio: 1;
  background: currentColor;
  border-radius: 50%;
  content: '';
  display: inline-block;
  height: auto;
  width: 0.3rem;
}

.p-breadcrumb__link:where(.page-wine *) {
  color: #fff;
}

.p-breadcrumb__link.p-breadcrumb__link--home {
  text-transform: capitalize;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  お知らせ個別

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.p-detail__contents {
  margin-inline: auto;
  max-width: 90.8rem;
  padding: 6rem 0 10rem;
}

.p-detail__time {
  --letter-spacing: 0.065em;
  color: #b4b4b4;
  font-weight: 400;
}

.p-detail__title {
  --letter-spacing: 0.065em;
  font-size: 3rem;
  line-height: 1.6;
  margin-top: 0.87em;
}

.p-detail__image {
  margin-top: 2.6rem;
}

.p-detail__image img {
  -o-object-fit: cover;
  aspect-ratio: 908/519;
  object-fit: cover;
}

.p-detail__text {
  --letter-spacing: 0.065em;
  line-height: 1.75;
  margin-top: 2.5em;
}

.p-detail__nav {
  -ms-grid-columns: 23rem 2.4rem 1fr 2.4rem 23rem;
  align-items: center;
  display: -ms-grid;
  display: grid;
  gap: 2.4rem;
  grid-template-columns: 23rem 1fr 23rem;
  justify-content: space-between;
  margin-top: 5.6rem;
}

.p-detail__nav-prev {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  grid-row: 1/2;
}

.p-detail__nav-back {
  -ms-grid-column-align: center;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  grid-row: 1/2;
  justify-self: center;
}

.p-detail__nav-back-link {
  color: #7a5842;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}

.p-detail__nav-next {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  grid-row: 1/2;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  ディナーメニュー

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.p-dinner {
  background-image: url(/_common/img/dinner-back@2x.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 160rem 100%;
  padding: 10.3rem 0 13.2rem;
}

.p-dinner__thumbnail-container {
  margin-top: 5.6rem;
}

.p-dinner__panel {
  margin-top: 5rem;
}

.p-dinner__note {
  color: #fff;
  font-size: 1.2rem;
  margin-inline: auto;
  margin-top: 1.6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  ドリンク背景画像

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.p-drink-container {
  background-image: url(/_common/img/drink-back@2x.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 160rem 100%;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  ドリンク

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.p-drink {
  padding: 4rem 0 7rem;
}

.p-drink__panel {
  margin-top: 4.4rem;
}

.p-drink__panel-contents {
  padding: 8rem;
}

.p-drink__panel-content {
  margin-inline: auto;
  max-width: 71.4rem;
}

.p-drink__panel-content:nth-of-type(n + 2) {
  margin-top: 6rem;
}

.p-drink__item {
  -ms-grid-columns: 1fr 2.4rem -webkit-max-content;
  -ms-grid-columns: 1fr 2.4rem max-content;
  display: -ms-grid;
  display: grid;
  font-size: 1.8rem;
  gap: 2.4rem;
  grid-template-columns: 1fr -webkit-max-content;
  grid-template-columns: 1fr max-content;
  justify-content: space-between;
  margin-top: 1.33em;
}

.p-drink__item:first-of-type {
  margin-top: 1.78em;
}

.p-drink__guidance {
  line-height: 1.88;
  margin-top: 6rem;
}

.p-drink__note {
  font-size: 1.2rem;
  margin-inline: auto;
  margin-top: 1.6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-drink__banner {
  margin-top: 7rem;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  メニューフェード画像

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.p-food-slide {
  display: -ms-grid;
  display: grid;
  position: relative;
  z-index: 5;
}

.p-food-slide__container {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  z-index: 1;
}

.p-food-slide__container::before {
  background: #000;
  content: '';
  display: block;
  inset: 0;
  opacity: 0.2;
  position: absolute;
  z-index: 5;
}

.p-food-slide__container .splide__slide img {
  -o-object-fit: cover;
  aspect-ratio: 1600/660;
  object-fit: cover;
}

.p-food-slide__container .splide__slide:nth-of-type(2) img {
  -o-object-position: 100% 100%;
  object-position: 100% 100%;
}

.p-food-slide__info {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  -ms-grid-row-align: end;
  -ms-grid-columns: 1fr 3.8rem 1fr 3.8rem 1fr 3.8rem 1fr;
  align-self: end;
  color: #fff;
  display: -ms-grid;
  display: grid;
  font-family: 'Cormorant Infant', serif;
  gap: 3.8rem;
  grid-column: 1/2;
  grid-row: 1/2;
  grid-template-columns: repeat(4, 1fr);
  margin-inline: auto;
  padding-bottom: 3.6rem;
  position: relative;
  width: min(100% - 4.8rem, 140rem);
  z-index: 10;
}

.p-food-slide__item {
  transition: opacity linear 0.3s;
}

.p-food-slide__number {
  --letter-spacing: 0.1em;
  font-size: 4rem;
  line-height: 1;
}

.p-food-slide__name {
  font-size: 2.4rem;
  line-height: 1;
  margin-top: 2rem;
  text-transform: uppercase;
}

.p-food-slide__progress-bar {
  background: #fff;
  height: 0.3rem;
  margin-top: 2rem;
  overflow: hidden;
  width: 100%;
}

.p-food-slide__progress-bar span {
  background: #7a5842;
  display: block;
  height: 100%;
  transition: width linear;
  width: 0%;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  フッター

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.p-footer {
  background-color: #111111;
  color: #fff;
  padding: 5.7rem 0 3.6rem;
  position: relative;
  z-index: 1;
}

.p-footer__container {
  -ms-grid-columns: -webkit-max-content 1fr;
  -ms-grid-columns: max-content 1fr;
  align-content: start;
  display: -ms-grid;
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
}

.p-footer__contents01 {
  display: block;
  margin-right: 9rem;
  text-align: center;
}

.p-footer__logo {
  margin-inline: auto;
  max-width: 17.5rem;
}

.p-footer__name01 {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 0.75em;
}

.p-footer__name02 {
  color: #555;
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Hiragino Sans', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, 'MS Pゴシック', 'MS PGothic', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', sans-serif;
  font-size: 1.4rem;
  line-height: 2.29;
  margin-top: 0.43em;
}

.p-footer__contents02 {
  padding-left: 7rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}

.p-footer__contents02::before {
  background-color: #f0f0f0;
  bottom: 14%;
  content: '';
  display: block;
  left: 0;
  position: absolute;
  top: 0;
  width: 0.1rem;
  z-index: 1;
}

.p-footer__tel-container {
  align-items: center;
  display: flex;
  gap: 4rem;
  justify-content: center;
  text-align: center;
}

.p-footer__tel {
  align-items: center;
  display: flex;
  font-size: 3rem;
  gap: 0.2em;
  margin-top: 0.13em;
}

.p-footer__tel .fa-phone {
  font-size: 0.7em;
  margin-top: 0.2em;
}

.p-footer__tel-text {
  --letter-spacing: 0.1em;
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Hiragino Sans', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, 'MS Pゴシック', 'MS PGothic', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', sans-serif;
  font-size: 1rem;
  line-height: 3;
}

.p-footer__menus {
  display: flex;
  gap: 1.2rem 4.2rem;
  margin-top: 3.2rem;
}

.p-footer__menu-link {
  font-family: 'Cormorant Infant', serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.13;
  text-transform: uppercase;
}

.p-footer__copyright {
  color: #555;
  margin-top: 1.2rem;
  text-align: center;
}

.p-footer__copyright small {
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Hiragino Sans', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, 'MS Pゴシック', 'MS PGothic', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', sans-serif;
  font-size: 1.2rem;
  line-height: 2.5;
}

.p-footer__top-button {
  aspect-ratio: 1;
  background-color: #7a5842;
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  height: auto;
  overflow: hidden;
  place-items: center;
  position: absolute;
  right: 3rem;
  top: 6.4rem;
  width: 6.4rem;
  z-index: 5;
}

.p-footer__top-arrow {
  color: #fff;
  display: -ms-grid;
  display: grid;
  height: 2.1rem;
  justify-items: center;
  width: 0.9rem;
}

.p-footer__top-arrow::before {
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0% 100%);
  aspect-ratio: 1 / cos(30deg);
  background-color: currentColor;
  clip-path: polygon(50% 0, 100% 100%, 0% 100%);
  content: '';
  display: block;
  width: 0.9rem;
}

.p-footer__top-arrow::after {
  background: currentColor;
  content: '';
  display: block;
  height: 1.4rem;
  width: 0.2rem;
}

.p-hamburger {
  display: none;
}

.p-hamburger__button {
  height: 2.3rem;
  position: relative;
  transition: opacity 0.5s;
  width: 3.4rem;
  z-index: 200;
}

.p-hamburger__button span {
  background-color: #fff;
  display: block;
  height: 0.4rem;
  position: absolute;
  scale: 1 0.5;
  transition-duration: 0.5s;
  transition-property: translate, rotate, opacity, top, bottom;
  width: 100%;
}

.p-hamburger__button span:nth-of-type(1) {
  left: 0;
  top: 0;
}

.p-hamburger__button span:nth-of-type(2) {
  left: 0;
  top: 50%;
  translate: 0 -50%;
}

.p-hamburger__button span:nth-of-type(3) {
  bottom: 0;
  left: 0;
}

.p-hamburger__button[aria-expanded='true'] span:nth-of-type(1) {
  rotate: 45deg;
  top: 50%;
  translate: 0 -50%;
}

.p-hamburger__button[aria-expanded='true'] span:nth-of-type(2) {
  opacity: 0;
}

.p-hamburger__button[aria-expanded='true'] span:nth-of-type(3) {
  bottom: 50%;
  rotate: -45deg;
  translate: 0 50%;
}

.p-hamburger__mask {
  background-color: rgba(0, 0, 0, 0.5);
  content: '';
  display: block;
  height: 100vh;
  height: 100dvh;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition-duration: 0.5s;
  transition-property: visibility, opacity;
  visibility: hidden;
  width: 100%;
  z-index: 50;
}

.is-open .p-hamburger__mask {
  opacity: 1;
  visibility: visible;
}

.p-hamburger__nav {
  background-color: #7a5842;
  height: 100vh;
  height: 100dvh;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition-duration: 0.5s;
  transition-property: translate, visibility, opacity;
  translate: 100% 0;
  visibility: hidden;
  width: min(92%, 40rem);
  z-index: 100;
}

.is-open .p-hamburger__nav {
  opacity: 1;
  translate: 0 0;
  visibility: visible;
}

.p-hamburger__list {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  height: 100%;
  overflow-y: auto;
  padding: 8rem 2rem;
  width: 100%;
}

.p-hamburger__item-link {
  display: -ms-inline-grid;
  display: inline-grid;
  font-family: 'Cormorant Infant', serif;
  font-size: 1.4rem;
  padding-bottom: 1rem;
  padding-top: 1rem;
  text-transform: uppercase;
}

.p-hamburger__cta {
  display: -ms-grid;
  display: grid;
  gap: 0.4rem;
}

.p-hamburger__tel {
  align-items: center;
  display: flex;
  font-size: 2.2rem;
  gap: 1rem;
}

.p-hamburger__tel .fa-phone {
  font-size: 0.8em;
  margin-top: 0.1em;
}

.p-hamburger__tel-text {
  font-size: 1rem;
  font-weight: 400;
}

.p-hamburger__logo-link {
  display: block;
  width: 20rem;
}

.p-header {
  left: 0;
  position: fixed;
  top: 0;
  transition: background-color 0.5s;
  width: 100%;
  z-index: 100;
}

.p-header.js-change {
  background-color: #000;
}

.p-header__inner {
  align-items: center;
  display: flex;
  height: 9rem;
  justify-content: space-between;
  padding-left: 2.8rem;
  padding-right: 2rem;
}

.p-header__logo-content {
  height: 100%;
}

.p-header__logo {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 25.1rem;
}

.p-header__nav {
  color: #fff;
  height: 100%;
}

.p-header__list {
  align-items: center;
  display: flex;
  gap: 2rem;
  height: 100%;
}

.p-header__item {
  height: 100%;
}

.p-header__item-link {
  align-items: center;
  display: flex;
  font-family: 'Cormorant Infant', serif;
  font-weight: 400;
  height: 100%;
  line-height: 2.13;
  padding: 0 1rem;
  text-transform: uppercase;
}

.p-header__item.p-header__item-tel {
  align-content: center;
  display: -ms-grid;
  display: grid;
  gap: 0.2rem;
  margin-left: 1rem;
  place-items: center;
}

.p-header__tel {
  align-items: center;
  display: flex;
  font-size: 2.6rem;
  gap: 1rem;
}

.p-header__tel .fa-phone {
  font-size: 0.8em;
  margin-top: 0.1em;
}

.p-header__tel-text {
  font-size: 1rem;
  font-weight: 400;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  ページ内リンク

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.p-link {
  background: #fff;
  padding: 4rem 0 10rem;
}

.p-link__list {
  -ms-grid-columns: 1fr 5rem 1fr;
  display: -ms-grid;
  display: grid;
  gap: 5rem;
  grid-template-columns: repeat(2, 1fr);
  margin-inline: auto;
  max-width: 91rem;
}

.p-link__link {
  -ms-grid-columns: 1fr 2rem -webkit-max-content;
  -ms-grid-columns: 1fr 2rem max-content;
  align-items: center;
  border-bottom: 0.1rem solid rgba(51, 51, 51, 0.15);
  display: -ms-grid;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr -webkit-max-content;
  grid-template-columns: 1fr max-content;
  padding-bottom: 1.2rem;
}

.p-link__link::after {
  aspect-ratio: 27/31;
  background-image: url(/_common/img/arrow-bottom@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: block;
  width: 1.4rem;
}

.p-link__text-content {
  align-items: baseline;
  display: flex;
  gap: 0.8rem;
}

.p-link__en {
  --letter-spacing: 0.1em;
  font-family: 'Cormorant Infant', serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.17;
  text-transform: uppercase;
}

.p-link__ja {
  font-size: 1.4rem;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  ランチメニュー

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.p-lunch {
  background-image: url(/_common/img/lunch-back@2x.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 160rem 100%;
  padding: 10.3rem 0 10rem;
}

.p-lunch__thumbnail-container {
  margin-top: 5.6rem;
}

.p-lunch__panel {
  margin-top: 5rem;
}

.p-lunch__note {
  font-size: 1.2rem;
  margin-inline: auto;
  margin-top: 1.6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  トップページMV

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.p-mv {
  background-image: url(/_common/img/top-mv@2x.jpg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.p-mv::before {
  background: #000;
  content: '';
  display: block;
  inset: 0;
  opacity: 0.2;
  position: absolute;
  z-index: -1;
}

.p-mv__inner {
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}

.p-mv__contents {
  display: -ms-grid;
  display: grid;
  gap: 2rem;
  min-height: 86rem;
  place-content: center;
  place-items: center;
}

.p-mv__logo {
  margin-top: 6.4rem;
  width: min(100%, 39.9rem);
}

.p-mv__title {
  color: #fff;
  font-size: 2.4rem;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  お知らせ

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.p-news__container {
  margin-inline: auto;
  max-width: 76.3rem;
  padding: 6rem 0 10rem;
}

.p-news__pager-end {
  margin-top: 6.2rem;
}

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

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  お知らせページャー

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.p-pager__list {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.p-pager__item {
  aspect-ratio: 1;
  border-radius: 50%;
  color: #3b3c3e;
  font-family: 'Cormorant Infant', serif;
  font-size: 1.4rem;
  height: auto;
  overflow: hidden;
  width: min(100%, 4.6rem);
}

.p-pager__item:not(:has(.p-pager__link)) {
  background: #7a5842;
  color: #fff;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.p-pager__item._first {
  margin-right: -0.6rem;
}

.p-pager__item._last {
  margin-left: -0.6rem;
}

.p-pager__link {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.p-pager__arrow::before,
.p-pager__arrow::after {
  background: #000;
  content: '';
  display: block;
  height: 0.1rem;
  width: 0.9rem;
}

.p-pager__arrow._prev:nth-of-type(2) {
  margin-left: -0.2rem;
}

.p-pager__arrow._prev::before {
  rotate: 42deg;
  transform-origin: left top;
  translate: 0 0.1rem;
}

.p-pager__arrow._prev::after {
  rotate: -42deg;
  transform-origin: left bottom;
}

.p-pager__arrow._next:nth-of-type(2) {
  margin-left: -0.2rem;
}

.p-pager__arrow._next::before {
  rotate: -42deg;
  transform-origin: right top;
  translate: 0 0.1rem;
}

.p-pager__arrow._next::after {
  rotate: 42deg;
  transform-origin: right bottom;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  パネル

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.p-panel {
  padding: 9rem 8rem 8rem;
}

.p-panel__inner {
  margin-inline: auto;
  max-width: 52rem;
}

.p-panel__list {
  margin-top: 3rem;
  text-align: center;
}

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

.p-panel__item-en {
  color: #7a5842;
  font-family: 'Cormorant Infant', serif;
  font-size: 2rem;
}

.p-panel__item-en:where(.p-panel__item--white *) {
  color: #fff;
}

.p-panel__item-ja {
  font-size: 1.8rem;
  margin-top: 0.3em;
}

.p-panel__item-ja:where(.p-panel__item--white *) {
  color: #fff;
}

.p-panel__ja-small {
  display: block;
  font-size: 1rem;
}

.p-panel__ja-small:where(.p-panel__item--white *) {
  color: #fff;
}

.p-panel__price {
  font-size: 1.8rem;
  margin-top: 3rem;
  text-align: center;
}

.p-panel__price.p-panel__price--white {
  color: #fff;
}

.p-panel__quick {
  border: 0.1rem solid #e0e0e0;
  margin-top: 4rem;
  padding: 1.8rem;
}

.p-panel__quick-title {
  --letter-spacing: 0.1em;
  font-family: 'Cormorant Infant', serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.65;
  text-align: center;
  text-transform: uppercase;
}

.p-panel__quick-list {
  margin-inline: auto;
  margin-top: 1.4rem;
  max-width: 27.8rem;
}

.p-panel__quick-content {
  -ms-grid-columns: 1fr 2rem -webkit-max-content;
  -ms-grid-columns: 1fr 2rem max-content;
  display: -ms-grid;
  display: grid;
  font-size: 1.8rem;
  gap: 2rem;
  grid-template-columns: 1fr -webkit-max-content;
  grid-template-columns: 1fr max-content;
}

.p-panel__quick-content:nth-of-type(n + 2) {
  margin-top: 1.2rem;
}

.p-panel__guidance {
  line-height: 1.88;
  margin-top: 3rem;
}

.p-panel__alacarte-text {
  color: #fff;
  font-size: 1.8rem;
  margin-top: 4rem;
  text-align: center;
}

.p-panel__button {
  margin-inline: auto;
  margin-top: 2rem;
  max-width: var(--base-button-size);
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  shop info

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.p-shop {
  padding-bottom: 9.8rem;
  position: relative;
  z-index: 10;
}

.p-shop::before {
  background-image: url(/_common/img/shop-back@2x.jpg);
  background-position: 50% 0%;
  background-repeat: repeat;
  background-size: 160rem auto;
  bottom: 0;
  content: '';
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 20rem;
  z-index: -1;
}

.p-shop__top-container {
  -ms-grid-columns: (1fr) [2];
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-left: calc(50% - (100vw - var(--scrollbar-width)) / 2);
  margin-top: -20rem;
  position: relative;
  z-index: 5;
}

.p-shop__thumb img {
  -o-object-fit: contain;
  aspect-ratio: 698/649;
  object-fit: contain;
}

.p-shop__en-text {
  bottom: -5.6rem;
  position: absolute;
  right: clamp(-13rem, 39rem - 32.5vw, 0rem);
  width: 47.2rem;
  z-index: 5;
}

.p-shop__bottom-container {
  color: #fff;
  margin-top: 10rem;
}

.p-shop__heading {
  font-family: 'Cormorant Infant', serif;
  font-size: 5rem;
  line-height: 1;
  text-transform: uppercase;
}

.p-shop__media {
  -ms-grid-columns: 54.8rem clamp(5rem, -120rem + 104.1666666667vw, 10rem) 1fr;
  display: -ms-grid;
  display: grid;
  gap: clamp(5rem, -120rem + 104.1666666667vw, 10rem);
  grid-template-columns: 54.8rem 1fr;
  margin-top: 4.3rem;
}

.p-shop__name {
  -moz-column-gap: 0.5em;
  align-items: baseline;
  column-gap: 0.5em;
  display: flex;
  flex-wrap: wrap;
  font-size: 2rem;
  margin-top: 0.5em;
  row-gap: 0.2em;
  text-transform: uppercase;
}

.p-shop__name-small {
  font-size: 0.7em;
}

.p-shop__address {
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Hiragino Sans', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, 'MS Pゴシック', 'MS PGothic', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', sans-serif;
  line-height: 2;
  margin-top: 1.2rem;
}

.p-shop__info-list {
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Hiragino Sans', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, 'MS Pゴシック', 'MS PGothic', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', sans-serif;
  line-height: 1.75;
  margin-top: 1.2rem;
}

.p-shop__info-item {
  -ms-grid-columns: 7rem 11.8rem 1fr;
  border-bottom: 0.1rem solid #fff;
  display: -ms-grid;
  display: grid;
  gap: 11.8rem;
  grid-template-columns: 7rem 1fr;
  padding: 2rem 0;
}

.p-shop__info-title {
  text-transform: uppercase;
}

.p-shop__map {
  width: 100%;
}

.p-shop__map iframe {
  aspect-ratio: 551/555;
  width: 100%;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  サムネイル

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.p-thumbnail {
  -ms-grid-columns: (1fr) [2];
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.p-thumbnail__image img {
  -o-object-position: cover;
  aspect-ratio: 600/470;
  object-position: cover;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  トップページ、お知らせ

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.p-top-news {
  background-image: url(/_common/img/news-back@2x.jpg);
  background-position: 50% 0%;
  background-repeat: repeat;
  background-size: cover;
  padding: 6.4rem 0 29.7rem;
  position: relative;
  z-index: 1;
}

.p-top-news__heading-group {
  text-align: center;
}

.p-top-news__heading-en {
  color: #7a5842;
  font-family: 'Cormorant Infant', serif;
  font-size: 5rem;
  line-height: 1;
  text-transform: uppercase;
}

.p-top-news__heading {
  font-size: 2rem;
  line-height: 1.7;
}

.p-top-news__list {
  margin-top: 0.8rem;
}

.p-top-news__link {
  -ms-grid-columns: -webkit-max-content 3.2rem 1fr;
  -ms-grid-columns: max-content 3.2rem 1fr;
  align-items: center;
  border-bottom: 0.1rem solid rgba(51, 51, 51, 0.15);
  display: -ms-grid;
  display: grid;
  gap: 3.2rem;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  padding: 2.4rem 1.6rem;
}

.p-top-news__time {
  --letter-spacing: 0.15em;
  font-family: 'Cormorant Infant', serif;
  font-size: 1.4rem;
  white-space: nowrap;
}

.p-top-news__title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: -0.2em;
}

.p-top-news__button {
  margin-inline: auto;
  margin-top: 6rem;
  max-width: var(--base-button-size);
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  下層ページｍｖ

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.p-under-mv {
  position: relative;
  z-index: 1;
}

.p-under-mv::before {
  background: rgba(0, 0, 0, 0.3);
  content: '';
  display: block;
  inset: 0;
  position: absolute;
  z-index: -1;
}

.p-under-mv__container {
  display: -ms-grid;
  display: grid;
  height: 50rem;
  place-items: center;
  text-align: center;
}

.p-under-mv__heading {
  color: #fff;
  margin-top: 3.2rem;
}

.p-under-mv__en {
  font-family: 'Cormorant Infant', serif;
  font-size: 8rem;
  line-height: 1;
  text-transform: uppercase;
}

.p-under-mv__ja {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.7;
}

.p-under-mv__image {
  display: block;
  inset: 0;
  position: absolute;
  z-index: -5;
}

.p-under-mv__image img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  ワイン背景画像

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.p-wine-container {
  position: relative;
}

.p-wine-container::before {
  aspect-ratio: 1600/653;
  background-image: url(/_common/img/wine-back@2x.jpg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: '';
  display: block;
  height: auto;
  left: 50%;
  position: absolute;
  top: 0;
  translate: -50% 0;
  width: 160rem;
  z-index: -5;
}

.p-wine-container::after {
  background-image: linear-gradient(to bottom, rgba(17, 17, 17, 0) 0%, rgb(17, 17, 17) 15%, rgb(17, 17, 17) 100%);
  bottom: -0.2rem;
  content: '';
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 23.6rem;
  z-index: -1;
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

  ワインリスト

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.p-wine {
  padding: 4rem 0 13.2rem;
}

.p-wine__image img {
  -o-object-fit: cover;
  -o-object-position: center;
  aspect-ratio: 359/485;
  object-fit: cover;
  object-position: center;
}

.js-fadeIn {
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
  opacity: 0;
  translate: 0 13%;
  translate: 0 8rem;
}

.js-fadeIn.is-fadeIn {
  opacity: 1;
  transition-duration: 1.8s;
  transition-timing-function: opacity var(--ease-out-cubic), translate var(--ease-out-quint);
  translate: 0;
}

.u-pc {
  display: block;
}

.u-pc-ib {
  display: inline-block;
}

.u-sp {
  display: none;
}

.u-sp-ib {
  display: none;
}

.u-wrap {
  word-break: keep-all;
}

.u-wrap-sp wbr {
  display: none;
}

.u-wrap-pc {
  word-break: keep-all;
}

.u-visually-hidden {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@media (max-width: 1600px) {
  html {
    font-size: 62.5%;
  }
}

@media (max-width: 1200px) {
  html {
    font-size: 0.83vw;
  }
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }

  a[href^='tel:'] {
    pointer-events: none;
  }

  .p-footer__top-button {
    transition: opacity 0.5s;
  }

  .p-footer__top-button:hover {
    opacity: 0.7;
  }

  .p-hamburger__button:hover {
    cursor: pointer;
    opacity: 0.8;
  }
}
