@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap");
/* *************************************
header
************************************* */
body {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  overflow-x: hidden;
}
html {
  overflow-x: hidden;
}
:root {
  --paper: #f4efe6;
  --ink: #222;
  --muted: #666;
  --gold: #9b7b2f;
  --gold-dark: #7a683c;
  --radius: 16px;
}
.shippori-mincho-regular {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: var(--main);
  height: calc(80 * var(--rem));
  transition: box-shadow 0.3s ease;
}

.header.is-active {
  box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 0.2);
}

.header__inner {
  padding-inline-start: 10px;
  height: inherit;
  box-shadow: 1px 1px 3px rgb(0, 0, 0, 0.3);
  @media (width < 768px) {
    padding-inline: 10px;
  }
}

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

.header__logo {
  width: calc(200 * var(--rem));
}

.header__logo img {
  margin: 1rem;
}

.header__hamburger {
  display: none;
  @media (width < 768px) {
    display: block;
    margin-inline-start: auto;
    background-color: transparent;
    position: relative;
    z-index: 100;
  }
}

.header__modal {
  display: contents;
  height: inherit;
  @media (width < 768px) {
    display: block;
    position: fixed;
    inset: 0;
    height: 100svh;
    background-color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: scroll;
  }
}

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

.header__nav {
  height: inherit;
  margin-inline-start: auto;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0 calc(24 * var(--rem));
  @media (width < 768px) {
    height: revert;
    min-height: 500px;
    padding: calc(20 * var(--rem));
    grid-template-columns: 1fr;
    margin-block-start: calc(100 * var(--rem));
  }
}

.header__list {
  height: inherit;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 calc(16 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
  }
}

.header__list li {
  height: inherit;
  display: grid;
  align-items: center;
}

.header__list li a {
  height: inherit;
  display: grid;
  place-content: center;
  text-align: center;
  padding-inline: calc(16 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: repeat(2, auto);
    align-items: center;
    gap: 0 calc(16 * var(--rem));
    padding-block: calc(8 * var(--rem));
    place-content: start;
    border-bottom: 1px solid var(--sub);
  }
}

.header__list li a span {
  font-size: calc(14 * var(--rem));
  text-transform: capitalize;
}

.header__cta {
  height: inherit;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0 calc(16 * var(--rem));
  align-items: center;
  @media (width < 768px) {
    grid-template-columns: 1fr;
    row-gap: calc(24 * var(--rem));
    margin-block-start: calc(40 * var(--rem));
  }
}

.header__tel {
  display: grid;
  place-content: center;
  height: inherit;
  gap: calc(8 * var(--rem)) 0;
  @media (width < 768px) {
    order: 2;
  }
}

.header__tel-num {
  display: inline-grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  line-height: 1;
  font-size: calc(20 * var(--rem));
  font-weight: bold;
}

.header__tel-num::before {
  content: "";
  display: inline-block;
  width: calc(26 * var(--rem));
  aspect-ratio: 1;
  background: url(../images/common/icon_tel.svg) no-repeat center / contain;
}

.header__tel-text {
  text-align: center;
  line-height: 1;
  font-size: calc(12 * var(--rem));
}

.header__contact {
  height: inherit;
  @media (width < 768px) {
    order: 1;
  }
}

.header__contact a {
  height: inherit;
  display: grid;
  place-content: center;
  padding-inline: calc(24 * var(--rem));
  background-image: url(../images/top/haikei_brown.jpg);
  color: var(--white);
  @media (width < 768px) {
    padding-block: calc(16 * var(--rem));
  }
}

.test {
  min-height: 100vh;
}

/* *************************************
footer
************************************* */
.footer {
  background-image: url(../images/top/haikei_ivory.jpg);
  /* padding-block-start: calc(40 * var(--rem)); */
}

.footer__inner {
  padding-inline: 20px;
}

.footer__container {
  display: flex;
  align-items: center;
  padding-top: 20px;
  @media (width < 768px) {
    display: grid;
    justify-items: center;
    gap: calc(24 * var(--rem));
  }
}

.footer__wrap {
  @media (width < 768px) {
    display: contents;
  }
}

.footer__logo {
  display: block;
  width: calc(200 * var(--rem));
  @media (width < 768px) {
    order: 0;
  }
}

.footer__meta {
  margin-block-start: calc(24 * var(--rem));
  display: grid;
  gap: calc(4 * var(--rem));
  @media (width < 768px) {
    order: 2;
    margin-block-start: 0;
  }
}

.footer__address {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 calc(16 * var(--rem));
}

.footer__list {
  margin-inline-start: auto;
  display: grid;
  grid-template-columns: repeat(5, auto);
  @media (width < 768px) {
    margin-inline-start: 0;
    grid-template-columns: 1fr;
    align-items: start;
    order: 0;
  }
}

.footer__list li a {
  display: block;
  padding: calc(10 * var(--rem)) calc(24 * var(--rem));
  @media (max-width: 798px) {
    padding: calc(5 * var(--rem)) calc(0 * var(--rem));
  }
}

.footer__instagram {
  display: flex;
  align-items: center;
  margin-left: 20px;
  transition: opacity 0.3s ease;
}

.footer__instagram:hover {
  opacity: 0.7;
}

.footer__instagram img {
  width: 24px;
  height: 24px;
  display: block;
}

.footer__copy {
  font-size: calc(12 * var(--rem));
  background-color: var(--white);
  text-align: center;
  margin-block-start: calc(16 * var(--rem));
  padding-block: calc(4 * var(--rem));
}

/* *************************************
contact
************************************* */
.contact {
  margin-block-start: calc(80 * var(--rem));
  margin-block-end: calc(80 * var(--rem));
}

.contact__inner.inner {
  width: min(100%, calc(850 * var(--rem)));
}

/* *************************************
thanks & page-404
************************************* */
.thanks,
.page-404 {
  margin-block-start: calc(100 * var(--rem));
  margin-bottom: 80px;
}

.thanks__title,
.page-404__title {
  font-size: calc(30 * var(--rem));
  text-align: center;
  @media (width < 768px) {
    font-size: calc(26 * var(--rem));
  }
}

.thanks__text,
.page-404__text {
  font-size: calc(18 * var(--rem));
  margin-block-start: calc(40 * var(--rem));
  text-align: center;
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
  }
}

.thanks__btn,
.page-404__btn {
  margin-block-start: calc(40 * var(--rem));
  text-align: center;
}

/* =========================
   Teaser MV
   ========================= */

.teaser-mv {
  padding-block: calc(80 * var(--rem));
  padding-top: 0;
  background-image: url(../images/top/haikei_ivory.jpg);
  @media (max-width: 798px) {
    padding-block: calc(0 * var(--rem));
  }
}

.teaser-mv__inner {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: calc(10 * var(--rem));
  align-items: stretch;
  min-height: 90vh;
  @media screen and (max-width: 1200px) and (min-width: 768px) {
    min-height: 50vh;
  }
}

.teaser-mv__inner.inner {
  padding-right: 0;
  padding-left: 0;
}

.teaser-mv__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: calc(40 * var(--rem));
  padding-inline: calc(24 * var(--rem));
  text-align: center;
  @media (max-width: 798px) {
    padding-block: calc(15 * var(--rem));
  }
}

.teaser-mv__tagline {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: calc(18 * var(--rem));
  letter-spacing: calc(3 * var(--rem));
  padding-bottom: calc(20 * var(--rem));
  @media (max-width: 798px) {
    font-size: calc(14 * var(--rem));
    letter-spacing: calc(2 * var(--rem));
  }
}
.teaser-mv__tagline02 {
  @media (max-width: 798px) {
    writing-mode: lr;
  }
}

.teaser-mv__logo {
  width: calc(150 * var(--rem));
  margin-block-end: calc(16 * var(--rem));
}
.teaser-mv__logo img {
  width: 100%;
  height: auto;
  display: block;
  padding-left: 7px;
  @media (max-width: 798px) {
    width: 90%;
    margin: 0 auto;
  }
}

.teaser-mv__name {
  font-size: calc(26 * var(--rem));
  line-height: 1.2;
  font-family: "Shippori Mincho", serif;
}

.teaser-mv__right {
  position: relative;
  overflow: hidden;
}

.teaser-mv__photo {
  width: 100%;
  height: 100%;
  border-bottom-left-radius: calc(100 * var(--rem));
  overflow: hidden;
  @media (max-width: 798px) {
    border-bottom-left-radius: 0;
  }
}
.teaser-mv__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  @media (max-width: 798px) {
    object-position: 50% 0;
  }
}
.teaser-mv__copy {
  position: absolute;
  top: calc(20 * var(--rem));
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  z-index: 5;
  color: #fff;
  border-bottom-left-radius: calc(100 * var(--rem));
  padding-inline: calc(24 * var(--rem));
  padding-top: calc(20 * var(--rem));
  @media (max-width: 798px) {
    top: calc(45 * var(--rem));
  }
}

.teaser-mv__copy-main {
  font-size: calc(80 * var(--rem));
  letter-spacing: calc(3 * var(--rem));
  margin-block-end: calc(4 * var(--rem));
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  font-weight: 500;
}

.teaser-mv__copy-sub {
  font-size: calc(35 * var(--rem));
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  margin-top: calc(-4 * var(--rem));
}

/* SP レイアウト ------------------ */
@media (width < 768px) {
  .teaser-mv {
  }

  .teaser-mv__inner {
    grid-template-columns: 1fr;
    gap: calc(24 * var(--rem));
    min-height: auto;
  }

  .teaser-mv__left {
    order: 2;
  }

  .teaser-mv__right {
    min-height: calc(480 * var(--rem));
    order: 1;
  }
  .teaser-mv__right02 {
    min-height: calc(335 * var(--rem));
  }

  .teaser-mv__photo img {
  }

  .teaser-mv__copy-main {
    font-size: calc(35 * var(--rem));
  }

  .teaser-mv__copy-sub {
    font-size: calc(16 * var(--rem));
  }
}
/* =========================
   Teaser concept
   ========================= */
.teaser-concept {
  background-image: url(../images/top/haikei_brown.jpg);
  padding: 80px 0 150px 0;
  color: #fff;
  position: relative;
  @media (max-width: 798px) {
    padding-block: calc(40 * var(--rem));
  }
}
.teaser-concept::before {
  content: "";
  inset: 0;
  background-color: rgba(115, 78, 48, 0.6);
  position: absolute;
  z-index: 0;
}

.teaser-concept__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.teaser-concept__title {
  font-size: calc(56 * var(--rem));
  font-family: "Shippori Mincho", serif;
  margin-bottom: calc(24 * var(--rem));
  font-weight: 500;
}

.teaser-concept__text {
  font-size: calc(16 * var(--rem));
  line-height: 2.5;
}

.teaser-concept__img--small {
  flex: 2;
  aspect-ratio: 4 / 3;
}

.teaser-concept__img--large {
  flex: 3;
  aspect-ratio: 4 / 3;
}

/* SP版 ---------------------------------- */
@media (width < 768px) {
  .teaser-concept__inner {
    grid-template-columns: 1fr;
    gap: calc(32 * var(--rem));
  }

  .teaser-concept__right {
    grid-template-columns: 1fr;
  }

  .teaser-concept__title {
    font-size: calc(32 * var(--rem));
  }
}
/* =========================
   Teaser information
   ========================= */
.teaser-information {
  padding-block: calc(80 * var(--rem));
  background-image: url(../images/top/haikei_ivory.jpg);
}
.teaser-information__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: calc(60 * var(--rem));
  padding: 0 20px;
}

.teaser-information__side {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: calc(10 * var(--rem));
  padding-top: calc(16 * var(--rem));
}
.teaser-information__side02 {
  justify-content: start;
}
.teaser-information__side-jp::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 0.1px;
  height: 70px;
  transform: rotate(55deg);
  background: #333;
  top: -33%;
  right: 85%;
  @media (max-width: 798px) {
    display: none;
  }
}

.teaser-information__side-en {
  font-size: calc(16 * var(--rem));
  color: #555;
  font-family: "Shippori Mincho", serif;
  padding-top: 5px;
}

.teaser-information__side-jp {
  font-size: calc(43 * var(--rem));
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  position: relative;
  letter-spacing: 0.25rem;
}

.teaser-information__content {
  display: flex;
  flex-direction: column;
  gap: calc(24 * var(--rem));
}

.teaser-information__list {
  display: grid;
  gap: calc(20 * var(--rem));
}

.teaser-information__item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: calc(12 * var(--rem));
  padding-bottom: calc(12 * var(--rem));
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.teaser-information__item dt {
  font-weight: bold;
  color: #333;
}

.teaser-information__item dd {
  line-height: 1.8;
  color: #333;
}

/* --- Google Map --- */
.teaser-information__map iframe {
  width: 100%;
  height: 500px;
  border: none;
  margin-top: calc(20 * var(--rem));
  border-radius: calc(20 * var(--rem));
  @media (max-width: 798px) {
    height: 300px;
  }
}

/* --- SP --- */
@media (width < 1024px) {
  .teaser-information__inner {
    grid-template-columns: 1fr;
    gap: calc(40 * var(--rem));
  }

  .teaser-information__side {
    writing-mode: horizontal-tb;
    flex-direction: row;
    gap: calc(16 * var(--rem));
    display: block;
    text-align: center;
  }

  .teaser-information__item {
    grid-template-columns: 1fr;
  }
}
/* =========================
   Teaser Footer
   ========================= */
.teaser-footer {
  background-image: url(../images/top/haikei_ivory.jpg);
  text-align: center;
  padding-block: calc(60 * var(--rem));
}

.teaser-footer__inner {
  width: min(100%, 500px);
  margin-inline: auto;
}

.teaser-footer__logo img {
  width: calc(180 * var(--rem));
  margin-inline: auto;
  display: block;
}

.teaser-footer__sub {
  margin-top: calc(8 * var(--rem));
  font-size: calc(16 * var(--rem));
  letter-spacing: calc(2 * var(--rem));
  font-family: "Shippori Mincho", serif;
  color: #333;
}

/* SNS案内 */
.teaser-footer__sns-text {
  margin-top: calc(32 * var(--rem));
  font-size: calc(16 * var(--rem));
  font-family: "Shippori Mincho", serif;
}

/* Instagramリンク */
.teaser-footer__sns-link {
  display: inline-flex;
  align-items: center;
  gap: calc(8 * var(--rem));
  margin-top: calc(16 * var(--rem));
  font-size: calc(18 * var(--rem));
  color: #000;
}

.teaser-footer__sns-icon {
  width: calc(28 * var(--rem));
  height: calc(28 * var(--rem));
  object-fit: contain;
}

/* コピーライト */
.teaser-footer__copy {
  margin-top: calc(32 * var(--rem));
  font-size: calc(12 * var(--rem));
  color: #666;
}
.teaser-mv__photo {
  position: relative;
}

.teaser-mv__photo::before {
  /* content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1; */
}

.teaser-mv__photo img {
  position: relative;
  z-index: 0;
}

/* =========================
   Teaser Information
   背景オブジェ（丸い金ライン）
   ========================= */
.teaser-information {
  position: relative;
  overflow: visible;
}

.teaser-information::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -170px;

  width: calc(400 * var(--rem));
  height: calc(400 * var(--rem));

  background-image: url(../images/top/light.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  opacity: 0.6;
  pointer-events: none;

  z-index: 0;
  @media (max-width: 798px) {
    width: calc(200 * var(--rem));
    height: calc(200 * var(--rem));
    bottom: -140px;
    left: -100px;
  }
}
.top-information {
  position: relative;
}
.top-information::after {
  bottom: 100px;
}

.teaser-information__inner {
  position: relative;
  z-index: 1;
}

.scroll_down {
  position: absolute;
  bottom: calc(0 * var(--rem));
  right: calc(70 * var(--rem));
  z-index: 10;
}

.scroll_down a {
  position: absolute;
  left: 10px;
  bottom: 87px;
  color: #fff;
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.2em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  animation: circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove {
  0% {
    bottom: 160px;
  }
  100% {
    bottom: 0px;
  }
}

@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

.scroll_down:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 160px;
  background: #fff;
}

@media (width < 768px) {
  .scroll_down {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

.teaser-recruit {
  background-image: url(../images/top/haikei_ivory.jpg);
  padding-block-start: calc(80 * var(--rem));
}

.teaser-recruit__inner {
  display: grid;
  justify-content: center;
  align-items: center;
  gap: calc(24 * var(--rem));
  text-align: center;
  flex-wrap: wrap;
}

.teaser-recruit__copy {
  font-size: calc(25 * var(--rem));
  font-family: "Shippori Mincho", serif;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.teaser-recruit__btn {
  display: inline-block;
  padding: calc(10 * var(--rem)) calc(28 * var(--rem));
  border-radius: 100vmax;
  border: 1px solid #333;
  font-size: calc(16 * var(--rem));
  letter-spacing: calc(2 * var(--rem));
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media (any-hover: hover) {
  .teaser-recruit__btn:hover {
    background-color: #5d3c27;
    color: #fff;
  }
}

@media (width < 768px) {
  .teaser-recruit__copy {
    font-size: calc(16 * var(--rem));
  }

  .teaser-recruit__btn {
    width: 100%;
    max-width: calc(260 * var(--rem));
  }
}

/* *************************************
page-menu-t ページ専用スタイル
このページのみメニューを非表示（ロゴは表示）
************************************* */
body.page-menu-t .header__nav,
body.page-template-page-menu-t .header__nav,
body.page-menu-t .header__hamburger,
body.page-template-page-menu-t .header__hamburger,
body.page-menu-t .header__list,
body.page-template-page-menu-t .header__list,
body.page-menu-t .header__cta,
body.page-template-page-menu-t .header__cta,
body.page-menu-t .footer__list,
body.page-template-page-menu-t .footer__list {
  display: none !important;
}

/* ------------------------
メニューのティザー用 
--------------------------*/
.page-menu-t__logo-section {
  position: relative;
  padding: calc(24 * var(--rem)) 0;
  @media (max-width: 798px) {
    padding-bottom: 0;
  }
}
.page-menu-t__logo-section .page-menu-t__logo-wrap {
  position: relative;
  z-index: 2;
  margin-top: 100px;
  @media (max-width: 798px) {
    margin-top: 100px;
  }
}

.page-menu-t__course-section {
  position: relative;
  z-index: 1;
  background-image: url(../images/top/haikei_ivory.jpg);
  background-size: cover;
  background-position: center;
  padding-top: 100px;
  margin-top: calc(-80 * var(--rem));
  overflow: visible;
  padding-bottom: 90px;
  @media (max-width: 798px) {
    margin-top: calc(-60 * var(--rem));
    padding: 60px 0 60px 0;
  }
}
.page-menu-t__course-section02::before {
  content: "";
  position: absolute;
  top: calc(-200 * var(--rem));
  left: 50%;
  transform: translateX(-50%) scaleX(1.4);
  transform-origin: 50% 0;
  width: 100vw;
  height: calc(600 * var(--rem));
   background: #f8f8f8;
  background-image: url(../images/top/bg_nois.png);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: -1;
  pointer-events: none;
  @media (max-width: 798px) {
    border-radius: 100% 100% 0 0 / 100% 100% 0 0;
    top: calc(-180 * var(--rem));
  }
}
.page-menu-t__course-section02 {
 background: #f8f8f8;
    background-image: url(../images/top/bg_nois.png);
}
.page-menu-t__course-section::before {
  content: none;
}

.page-menu-t__inner {
  max-width: calc(1200 * var(--rem));
  margin: 0 auto;
  padding: calc(60 * var(--rem)) calc(20 * var(--rem));
  text-align: center;
  box-sizing: border-box;
}

/* ロゴ中央 */
.page-menu-t__logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: calc(80 * var(--rem));
}
.page-menu-t__logo {
  width: calc(240 * var(--rem));
  max-width: 60%;
  height: auto;
}

.page-menu-t__header {
  margin-bottom: calc(32 * var(--rem));
  text-align: center;
}
.page-menu-t__title {
  font-size: calc(30 * var(--rem));
  letter-spacing: 0.04em;
  padding-bottom: 20px;
  padding-top: 50px;
  color: var(--sub);
}
.page-menu-t__subtitle {
  margin: 0;
  font-size: calc(14 * var(--rem));
  color: #666;
}

.page-menu-t__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(28 * var(--rem));
  align-items: start;
  margin-bottom: calc(28 * var(--rem));
  text-align: left;
}

/* メニューカード */
.menu-card {
  background: #fff;
  padding: calc(20 * var(--rem));
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
  min-height: calc(260 * var(--rem));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  height: 350px;
}
.menu-card__name {
  font-size: calc(23 * var(--rem));
  margin: 0 0 calc(8 * var(--rem));
  text-align: center;
  padding-bottom: 20px;
}
.menu-card__desc {
  font-size: calc(14 * var(--rem));
  margin: 0 0 calc(12 * var(--rem));
  color: #444;
}
.menu-card__items {
  font-size: calc(14 * var(--rem));
  color: #333;
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.6;
}
.menu-card__items li {
  position: relative;
  font-size: 1.1rem;
  padding-left: calc(20 * var(--rem));
}
.menu-card__items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5lh;
  transform: translateY(-50%);
  width: calc(6 * var(--rem));
  height: calc(6 * var(--rem));
  background-color: #c8b390;
  border-radius: 50%;
}
.menu-card__price {
  font-weight: 700;
  font-size: calc(24 * var(--rem));
  margin: calc(6 * var(--rem)) 0;
  text-align: center;
  color: #7a683c;
}
.menu-card__note {
  font-size: calc(12 * var(--rem));
  color: #777;
  margin: 0;
}

.page-menu-t__notes {
  margin-top: calc(10 * var(--rem));
  text-align: center;
}
.page-menu-t__notes-text {
  font-size: calc(15 * var(--rem));
  color: #666;
  text-align: right;

  @media (max-width: 798px) {
    text-align: left;
    font-size: 13px;
  }
}

@media (max-width: 980px) {
  .page-menu-t__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .page-menu-t__grid {
    grid-template-columns: 1fr;
  }
  .page-menu-t__logo {
    width: calc(180 * var(--rem));
  }
  .page-menu-t__inner {
    padding: calc(36 * var(--rem)) calc(16 * var(--rem));
  }
  .page-menu-t__title {
    font-size: calc(24 * var(--rem));
  }
}

.visually-hidden {
  position: absolute !important;
  height: calc(1 * var(--rem));
  width: calc(1 * var(--rem));
  overflow: hidden;
  clip: rect(
    calc(1 * var(--rem)),
    calc(1 * var(--rem)),
    calc(1 * var(--rem)),
    calc(1 * var(--rem))
  );
  white-space: nowrap;
}

.menu7 {
  background: #fff;
  padding: 60px 0;
  color: #222;
}

.menu7__block {
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.menu7__list li {
  margin: 6px 0;
  font-size: 15px;
}

.menu7__price {
  margin-top: 10px;
  font-weight: 700;
}

.menu7__text {
  font-size: 14px;
  line-height: 1.8;
}

.menu7--paper {
  background-image: url(../images/top/haikei_ivory.jpg);
  background-size: cover;
  background-position: center;
  padding: 60px 0 80px;
  color: #222;
}

.menu7__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 70px;
  align-items: start;
}

.menu7__title {
  margin: 0 0 18px;
  padding: 10px 0;
  text-align: center;
  background-image: linear-gradient(
      rgba(155, 123, 47, 0.78),
      rgba(122, 104, 60, 0.78)
    ),
    url(../images/top/haikei_brown.jpg);
  background-size: cover;
  background-position: center;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.18em;
  width: 100%;
  box-sizing: border-box;
}

.menu7__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 100%;
}
.menu7__list--price li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 7px 0;
  align-items: baseline;
}

.menu7__list--price .m-name {
  padding-left: 16px;
  position: relative;
  font-size: 1.1rem;
}

.menu7__list--price .m-price {
  white-space: nowrap;
}

.menu7__block--note .menu7__text {
  margin: 0;
  line-height: 1.9;
  color: #333;
}

.menu7__divider {
  grid-column: 1 / -1;
  height: 1px;
  background: rgba(0, 0, 0, 0.18);
  margin: 10px 0 0;
}

.menu7__block--small {
  grid-column: 1 / -1;
  margin-top: 10px;
}
.menu7__note {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  @media (max-width: 798px) {
    line-height: 2;
    font-size: 13px;
  }
}

.menu7__block-group {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  justify-items: stretch;
  align-items: start;
  margin-bottom: 20px;
}

.menu7__block--large {
  font-size: 1.1em;
  width: 100%;
}

.menu7__block--large .menu7__title {
  font-size: 18px;
  padding: 12px 0;
}

.menu7__block--large .menu7__list li {
  font-size: 16px;
  margin: 8px 0;
}

.menu7__block--large .menu7__list {
  max-width: 100%;
}

@media (max-width: 980px) {
  .menu7__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
    justify-items: center;
  }
  .menu7__block-group {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .menu7__grid {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }
  .menu7__block-group {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .menu7__block {
    width: 100%;
  }
}

.menu-top {
  background: #fff;
  padding: 80px 0;
  color: #333;
}

.menu-top__head {
  text-align: center;
  margin-bottom: 36px;
}
.menu-top__title {
  margin: 0;
  font-size: 26px;
  letter-spacing: 0.12em;
}
.menu-top__lead {
  margin: 10px 0 0;
  color: #666;
  font-size: 14px;
}

.menu-top__time {
  margin: 6px 0 0;
  color: #111;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.menu-top__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 60px;
  align-items: start;
}

.menu-top__block {
  padding: 18px 10px 8px;
}

.menu-top__blockTitle {
  margin: 0 0 14px;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.menu-top__blockTitle::before,
.menu-top__blockTitle::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(155, 123, 47, 0.7);
}

.menu-top__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-top__list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 8px 0;
  align-items: baseline;
  font-size: 1.1rem;
}

.menu-top__list li span {
  white-space: nowrap;
}

.menu-top__note {
  margin: 26px 0 0;
  color: #666;
  font-size: 13px;
}

@media (max-width: 980px) {
  .menu-top__grid {
    grid-template-columns: 1fr;
  }
  .menu-top__block {
    padding-left: 0;
    padding-right: 0;
  }
}
.oden-inner {
  max-width: 90%;
}
.obanzai-inner {
  max-width: 680px;
  margin-inline: auto;
}
.menu-simple {
  padding: 40px 0;
  position: relative;
}

/* .menu-simple .obanzai-inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background-image: url(../images/top/en.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
} */

.menu-simple .obanzai-inner {
  position: relative;
  z-index: 1;
}

@media (max-width: 798px) {
  .menu-simple .obanzai-inner::before {
    width: 250px;
    height: 250px;
  }
}
.menu-simple02 {
  padding: 60px 0;
  background: #f8f8f8;
  background-image: url(../images/top/bg_nois.png);
}

.menu-simple__title {
  font-size: 24px;
  font-weight: bold;
  margin: 30px 0;
  text-align: center;
  color: #7a683c;
}

.menu-simple__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.menu-simple__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
}

.menu-simple__item:last-child {
  border-bottom: none;
}

.menu-simple__name {
  font-size: 16px;
  flex: 1;
}

.menu-simple__price {
  font-size: 16px;
  font-weight: normal;
  margin-left: 20px;
}

.menu-simple__note {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-top: 15px;
}

.menu-boxed {
  border: 1px solid rgba(155, 123, 47, 0.7);
  border-top: 3px solid rgba(155, 123, 47, 0.7);
  padding: 20px;
  margin-bottom: 30px;
}
.menu-boxed02 {
  background: #fff;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.05);
}

.menu-boxed:last-child {
  margin-bottom: 0;
}

.menu-boxed__title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 20px 0;
  text-align: center;
}

.menu-boxed__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-boxed__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

.menu-boxed__item:last-child {
  border-bottom: none;
}

.menu-boxed__name {
  font-size: 16px;
  flex: 1;
}

.menu-boxed__price {
  font-size: 16px;
  font-weight: normal;
  margin-left: 20px;
}

.menu-fullwidth {
  padding: 100px 0;
  background-image: url(../images/menu/bg_washi2.jpg);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.menu-fullwidth__item {
  max-width: 95%;
  margin-bottom: calc(40 * var(--rem));
  
}

.menu-fullwidth__item--left {
  margin-left: 0;
  margin-right: auto;
}

.menu-fullwidth__item--right {
  margin-left: auto;
  margin-right: 0;
}

.menu-fullwidth__content {
  display: flex;
  align-items: end;
}

.menu-fullwidth__item--left .menu-fullwidth__content {
}

.menu-fullwidth__item--right .menu-fullwidth__content {
}

.menu-fullwidth__image {
  flex-shrink: 0;
  width: 50%;
  margin: 0;
  overflow: hidden;
}

.menu-fullwidth__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
  margin-bottom: 30px;
}

.menu-fullwidth__box {
  flex: 1;
  border: 1px solid rgba(155, 123, 47, 0.7);
  border-top: 3px solid rgba(155, 123, 47, 0.7);
  background: #fff;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.05);
  padding: 20px 50px;

}
.menu-fullwidth__item--right .menu-fullwidth__box {
  margin-right: -30px;
  margin-left: 0;
  z-index: 2;
}
.menu-fullwidth__title {
  font-size: calc(24 * var(--rem));
  font-weight: bold;
  margin: 0 0 calc(20 * var(--rem)) 0;
  text-align: center;
}

.menu-fullwidth__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-fullwidth__list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(3 * var(--rem)) 0;
  border-bottom: 1px solid #f8f8f8;
}

.menu-fullwidth__list-item:last-child {
  border-bottom: none;
}

.menu-fullwidth__name {
  font-size: calc(16 * var(--rem));
  flex: 1;
}

.menu-fullwidth__price {
  font-size: calc(16 * var(--rem));
  font-weight: normal;
  margin-left: calc(20 * var(--rem));
}

@media (max-width: 798px) {
  .menu-fullwidth {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: calc(40 * var(--rem)) calc(20 * var(--rem));
  }

  .menu-fullwidth__item {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: calc(30 * var(--rem));
    padding: 0;
  }

  .menu-fullwidth__content {
    flex-direction: column;
    gap: calc(20 * var(--rem));
  }

  .menu-fullwidth__item--right .menu-fullwidth__content {
    flex-direction: column-reverse;
  }

  .menu-fullwidth__image {
    width: 100%;
  }

  .menu-fullwidth__box {
    padding: calc(20 * var(--rem));
    width: 100%;
  }
}

.teaser-mv__menu {
  position: relative;
  top: 10%;
  @media(max-width: 1024px) {
    display: grid;
    place-content: center;
  }
}

.teaser-mv__menu-list {
  writing-mode: vertical-rl;
  list-style: none;
  line-height: 2.4;
}

.teaser-mv__menu-item {
  border-right: 1px solid #333;
}
.teaser-mv__menu-item:last-child {
  border-left: 1px solid #333;
}

.teaser-mv__menu-link {
  display: block;
  text-decoration: none;
  font-size: 1.3rem;
}
.top-mv__photo img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* =========================
   Top Concept
   ========================= */

.top-concept {
  background-image: url(../images/top/haikei_ivory.jpg);
  padding-block: calc(50 * var(--rem));
}

.top-concept__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(40 * var(--rem));
  align-items: start;
}

.top-concept__left {
  display: grid;
  gap: calc(24 * var(--rem));
  margin-top: 100px;
}

.top-concept__text {
  font-size: calc(18 * var(--rem));
  line-height: 2.8;
  max-width: 70%;
  margin: 0 auto;
  padding-top: 30px;
  @media (max-width: 798px) {
    max-width: 90%;
    font-size: calc(16 * var(--rem));
    line-height: 1.5;
    padding-top: 0;
  }
}
.top-concept__text p {
  margin-top: 20px;
}

.top-concept__right {
  display: grid;
  gap: calc(24 * var(--rem));
}

.top-concept__title {
  font-size: calc(40 * var(--rem));
  font-family: "Shippori Mincho", serif;
  margin-bottom: calc(40 * var(--rem));
  font-weight: 500;
  @media (max-width: 798px) {
    font-size: calc(30 * var(--rem));
    text-align: center;
  }
}

.top-concept__lead {
  font-size: calc(18 * var(--rem));
  line-height: 2.4;
  margin-top: 20px;
  margin-bottom: 30px;
  @media (max-width: 798px) {
    font-size: calc(16 * var(--rem));
    line-height: 2;
    padding: 0 5%;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.top-concept__image {
  position: relative;
  overflow: hidden;
}
.top-concept__image--main {
  border-radius: 0 24px 24px 0;
  @media (max-width: 798px) {
    border-radius: 0;
  }
}
.top-concept__image--sub {
  border-radius: 24px 0 0 24px;
  @media (max-width: 798px) {
    border-radius: 0;
  }
}

.top-concept__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.top-concept__thumbs {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: calc(16 * var(--rem));
  @media (min-width: 799px) {
    margin-right: 10%;
  }
}

.top-concept__thumbs figure {
  border-radius: calc(16 * var(--rem));
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.top-concept__thumbs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ---------- SP ---------- */

@media (width < 768px) {
  .top-concept {
    padding-block: calc(0 * var(--rem));
  }

  .top-concept__inner {
    grid-template-columns: 1fr;
  }

  .top-concept__left,
  .top-concept__right {
    display: contents;
  }

  .mobile-order-1 {
    order: 1;
    padding-top: 80px;
  }

  .mobile-order-2 {
    order: 2;
  }

  .mobile-order-3 {
    order: 3;
  }

  .mobile-order-4 {
    order: 4;
  }

  .mobile-order-5 {
    order: 5;
    padding: 0 4%;
  }
}
/* =========================
   Top Menu
   ========================= */

.top-menu {
  background-image: url(../images/top/haikei_ivory.jpg);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.top-menu::before {
  content: "";
  position: absolute;

  top: calc(120 * var(--rem));
  left: 50%;
  transform: translateX(-50%) scaleX(1.35);
  transform-origin: 50% 0;

  width: 100vw;
  height: calc(520 * var(--rem));
  background: #fff;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;

  z-index: 0;
  pointer-events: none;
}

.top-menu > .inner {
  position: relative;
  z-index: 1;
}

.top-menu__logo02 {
  display: grid;
  place-items: center;
  margin-bottom: calc(40 * var(--rem));
}
.page-menu-t__logo02 {
  width: min(100%, calc(240 * var(--rem)));
  height: auto;
  display: block;
}
.top-menu__content {
  padding-bottom: 80px;
}
.top-menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  align-items: start;
}

.top-menu__panel {
}

.top-menu__panel--text {
  padding: calc(28 * var(--rem));
  background: transparent;
  @media (min-width: 799px) {
    margin: 30px 15%;
  }
}

.top-menu__heading {
  display: flex;
  align-items: baseline;
  gap: calc(10 * var(--rem));
  font-family: "Shippori Mincho", serif;
  margin-bottom: calc(8 * var(--rem));
}

.top-menu__heading-jp {
  font-size: calc(34 * var(--rem));
  font-weight: 500;
}

.top-menu__heading-en {
  font-size: calc(14 * var(--rem));
  opacity: 0.8;
}

.top-menu__time {
  font-size: calc(18 * var(--rem));
  margin-bottom: calc(12 * var(--rem));
  opacity: 0.9;
}

.top-menu__desc {
  font-size: calc(18 * var(--rem));
  line-height: 2;
  margin-bottom: calc(30 * var(--rem));
  padding-top: 10px;
}

.top-menu__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(10 * var(--rem));
  padding: calc(10 * var(--rem)) calc(24 * var(--rem));
  border: 1px solid rgba(0, 0, 0, 0.35);
  border-radius: 100vmax;
  font-size: calc(14 * var(--rem));
  letter-spacing: calc(1 * var(--rem));
  transition: opacity 0.3s ease;
  position: relative;
}

.top-menu__btn::after {
  content: "";
  display: inline-block;
  width: calc(8 * var(--rem));
  height: calc(8 * var(--rem));
  border-right: calc(1 * var(--rem)) solid currentColor;
  border-bottom: calc(1 * var(--rem)) solid currentColor;
  transform: rotate(-45deg);
  margin-left: calc(4 * var(--rem));
}

.top-menu__panel--img {
  position: relative;
  overflow: hidden;
}

.top-menu__panel--img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.top-menu__panel--img1 {
  aspect-ratio: 16 / 11;
  border-radius: 50px 0 0 0;
}

.top-menu__panel--img2 {
  aspect-ratio: 16 / 11;
  border-radius: 0 0 50px 0;
}

/* SP */
@media (width < 768px) {
  .top-menu {
    padding-block: calc(35 * var(--rem));
  }

  .top-menu::before {
    top: calc(150 * var(--rem));
    height: calc(250 * var(--rem));
    transform: translateX(-50%) scaleX(1.15);
  }

  .top-menu__grid {
    grid-template-columns: 1fr;
    gap: calc(18 * var(--rem));
  }

  .top-menu__panel--text {
    padding: 0 20px 20px 20px;
  }

  .top-menu__heading-jp {
    font-size: calc(22 * var(--rem));
  }
}
.top-image__selection {
  width: 100%;
  padding: 0;
  margin: 0;
}

.top-image-selection__inner {
  display: grid;
  grid-template-columns: 1fr repeat(4, 1fr);
  gap: 0;
  width: 100%;
  padding: 0;
  margin: 0;
  @media (max-width: 798px) {
    grid-template-columns: 2fr 2fr;
  }
}

.top-image-selection__inner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.top-image-selection__inner img:first-child {
  grid-row: span 2;
  grid-column: span 2;
}
.top-image-selection__inner--2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 2fr;
  gap: 0;
  width: 100%;
  padding: 0 0 50px 0;
  margin: 0;
  @media (max-width: 798px) {
    grid-template-columns: 2fr 2fr;
    padding-bottom: 20px;
  }
}

.top-image-selection__inner--2 img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.big-image {
  grid-column: 4 / 5;
  grid-row: 1 / 3;
}

/* トップお知らせ */
.top-news {
  background-image: url(../images/top/haikei_brown.jpg);
  color: #fff;
  position: relative;
  padding: 80px 0;
  z-index: 1;
  @media (max-width: 798px) {
    padding: 50px 0;
  }
}
.top-news::before {
  content: "";
  inset: 0;
  background-color: rgba(115, 78, 48, 0.6);
  position: absolute;
  z-index: 0;
}

.top-news__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: calc(60 * var(--rem));
  align-items: start;
  position: relative;
  z-index: 2;
}

.top-news .teaser-information__side-en {
  color: #fff;
}

.top-news .teaser-information__side-jp::before {
  background: #fff;
}

.top-news__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(40 * var(--rem));
  background-color: #fff;
  padding: 80px 40px;
  color: #333;
  border-radius: 40px 0 0 40px;
  position: relative;
}

.top-news__item {
  display: flex;
  flex-direction: column;
}

.top-news__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.top-news__link:hover {
  opacity: 0.8;
}

.top-news__image {
  width: 100%;
  margin: 0 0 calc(16 * var(--rem)) 0;
  overflow: hidden;
  border-radius: calc(25 * var(--rem));
  @media (max-width: 798px) {
    border-radius: 10px;
  }
}

.top-news__image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.top-news__date {
  font-size: calc(14 * var(--rem));
  margin-bottom: calc(12 * var(--rem));
}

.top-news__text {
  font-size: calc(16 * var(--rem));
  line-height: 1.8;
  margin-bottom: auto;
}

.top-news__readmore {
  position: absolute;
  bottom: 20px;
  right: 40px;
  display: inline-block;
  font-size: calc(14 * var(--rem));
  text-decoration: none;
  letter-spacing: calc(1 * var(--rem));
}

.top-news__readmore:hover {
  opacity: 0.8;
}

@media (width < 1024px) {
  .top-news__inner {
    grid-template-columns: 1fr;
    gap: calc(40 * var(--rem));
  }

  .top-news__content {
    grid-template-columns: 1fr;
    gap: calc(32 * var(--rem));
    margin-left: 15px;
  }
}
/* トップコンタクト */
.top-contact {
  position: relative;
  background-image: url(../images/top/cooking04.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 80px 0;
  z-index: 1;
  @media (max-width: 798px) {
    padding: 80px 4%;
  }
}
.top-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.top-contact__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.top-contact__content {
  text-align: center;
  margin-bottom: 25px;
}
.top-contact__title {
  font-size: 3.2rem;
  font-weight: 500;
  color: #fff;
  @media (max-width: 798px) {
    font-size: 2rem;
  }
}
.top-contact__text {
  font-size: 1.3rem;
  line-height: 1.8;
  padding: 20px 0;
  color: #fff;
  @media (max-width: 798px) {
    font-size: 0.8rem;
  }
}
.top-contact__btn {
  background-color: #fff;
  padding: 20px 80px;
  font-size: 2.4rem;
}
.top-contact__contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  color: #fff;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  border-top: 2px dotted #fff;
  padding-top: 30px;
  @media (max-width: 798px) {
    grid-template-columns: 1fr;
  }
}
.top-contact__tel-text,
.top-contact__email-text {
  font-size: 1.4rem;
  @media (max-width: 798px) {
    font-size: 1.2rem;
  }
}
.top-contact__tel {
  border-right: 2px dotted #fff;
  @media (max-width: 798px) {
    border: none;
  }
}
.top-contact__tel-number {
  font-size: 2.3rem;
  letter-spacing: 0.2rem;
}
.top-contact__email-address {
  font-size: 1.3rem;
  border: solid 1px #fff;
  border-radius: 50px;
  padding: 10px 30px;
  margin-top: 20px;
  @media (max-width: 798px) {
    font-size: 1.1rem;
    margin: 20px auto;
    width: fit-content;
  }
}
.top-contact__email-address:hover {
  background: #fff;
  color: #333;
}
.two_in_one {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* お知らせページ */
.news-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
}

.news-page-header {
  position: relative;
  margin-bottom: 60px;
  margin-right: calc(50% - 50vw);
  display: flex;
  justify-content: flex-end;
  @media (max-width: 798px) {
    margin: 0 calc(50% - 50vw);
  }
}

.news-mv-image {
  position: relative;
  width: 80%;
  overflow: hidden;
  margin-right: 0;
  border-radius: 0 0 0 50px;
  height: 50vh;
  @media (max-width: 798px) {
    border-radius: 0;
    width: 100%;
  }
}

.news-mv-image::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-image: radial-gradient(#333 10%, rgba(255, 255, 255, 0) 20%),
    radial-gradient(#333 10%, rgba(255, 255, 255, 0) 20%);
  background-size: 5px 5px;
  background-position: 0 0, 5px 5px;
  opacity: 0.4;
  z-index: 1;
}

.news-mv-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  @media (max-width: 798px) {
  }
}

.news-mv-title {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
  padding: 70px 50px 60px 70px;
  z-index: 2;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 20px;
  transform: translate(60%, 15%);
  background-image: url(../images/top/bg_nois.png);
  @media (max-width: 798px) {
    padding: 50px 30px 40px 50px;
    transform: translate(15%, 45%);
  }
}

.news-mv-title-jp {
  font-size: 2.4rem;
  font-weight: normal;
  margin: 0;
  color: #333;
  line-height: 1.4;
  writing-mode: vertical-rl;
  position: relative;
  @media (max-width: 798px) {
    font-size: 2rem;
  }
}
.news-mv-title-jp:before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 0.1px;
  height: 70px;
  transform: rotate(55deg);
  background: #333;
  top: -33%;
  right: 85%;
}

.news-mv-title-en {
  font-size: 14px;
  color: #666;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}

.news-section {
  position: relative;
  margin-top: 0;
  padding: 100px 20px 40px 20px;
  @media (max-width: 798px) {
    padding: 0;
    margin-top: 150px;
  }
}

.news-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 130%;
  background-image: url(../images/top/haikei_ivory.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  transform: translateY(-18%);
}

.news-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 980px;
  margin: 0 auto;
}

.news-item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.news-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-link {
  display: flex;
  text-decoration: none;
  color: #333;
  align-items: center;
  @media (max-width: 798px) {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.news-thumbnail {
  width: 200px;
  min-width: 200px;
  overflow: hidden;
  flex-shrink: 0;
  @media (max-width: 798px) {
    width: 100%;
    height: 100%;
  }
}

.news-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  @media (max-width: 798px) {
    aspect-ratio: 16 / 9;
  }
}

.news-content {
  padding: 20px;
  flex: 1;
}

.news-date {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.news-title {
  font-size: 20px;
  font-weight: normal;
  margin: 0;
  line-height: 1.5;
}

.no-posts {
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-size: 16px;
}

.news-section .wp-pagenavi,
.news-section .pagination {
  margin-top: 40px;
  text-align: center;
}

.news-section .wp-pagenavi a,
.news-section .wp-pagenavi span,
.news-section .pagination a,
.news-section .pagination span {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 4px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
}

.news-section .wp-pagenavi a:hover,
.news-section .pagination a:hover {
  background-color: #f5f5f5;
}

.news-section .wp-pagenavi .current,
.news-section .pagination .current {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

.news-more-button {
  text-align: center;
  margin-top: 40px;
}

.news-more-button .btn-more {
  display: inline-block;
  padding: 12px 40px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  font-size: 16px;
}

.news-more-button .btn-more:hover {
  background-color: #555;
}

/* Aboutページ */
.about-content {
  margin-top: 60px;
  padding: 40px 20px;
  position: relative;
}
.about-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 130%;
  background-image: url(../images/top/haikei_ivory.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  transform: translateY(-18%);
}

.about-content-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.about-title {
  font-size: 32px;
  font-weight: normal;
  margin: 0 auto;
  text-align: center;
  width: fit-content;
  margin-bottom: 60px;
  padding-bottom: 20px;
  border-bottom: 2px solid #333;
  @media (max-width: 798px) {
    padding-top: 50px;
  }
}

.about-content .two_in_one {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin: 0 calc(50% - 50vw);
  padding-bottom: 50px;
  @media (max-width: 798px) {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.about-image {
  width: 50%;
  flex-shrink: 0;
  @media (max-width: 798px) {
    width: 100%;
  }
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: 0 50px 50px 0;
  @media (max-width: 798px) {
    border-radius: 0;
    object-position: 25% 0;
  }
}

.about-info {
  width: 50%;
  flex: 1;
  @media (max-width: 798px) {
    width: 100%;
    padding: 0 4%;
  }
}

.company-info {
  margin: 0;
  max-width: 100%;
}

.company-info dt {
  font-weight: bold;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 8px;
  color: #333;
}

.company-info dt:first-child {
  margin-top: 0;
}

.company-info dd {
  margin: 0 0 20px 0;
  line-height: 1.8;
  color: #666;
  border-bottom: 1px solid #ccc;
}

.company-info dd p {
  margin: 8px 0;
}

.company-info dd p:first-child {
  margin-top: 0;
}

.company-info dd strong {
  color: #333;
  font-weight: bold;
}

.about-map {
  margin-top: 40px;
  width: 100%;
}

.about-map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}
.top-about-image__selection {
  margin: 0 calc(50% - 50vw);
}
.top-about-image__selection {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.top-about-image__selection-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  @media (max-width: 798px) {
    grid-template-columns: 2fr 2fr;
  }
}

.top-about-image__selection-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16 / 9;
  @media (max-width: 798px) {
    aspect-ratio: 4 / 3;
  }
}
.about-map__google {
  padding: 60px 0;
}
/* プライバシーポリシー */

.privacy-policy__inner {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.privacy-policy-content {
  line-height: 2;
  color: #333;
}

.privacy-policy-content h2 {
  font-size: 24px;
  font-weight: normal;
  margin-top: 80px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #333;
}

.privacy-policy-content h2:first-child {
  margin-top: 0;
}

.privacy-policy-content h3 {
  font-size: 20px;
  font-weight: normal;
  margin-top: 30px;
  margin-bottom: 15px;
}

.privacy-policy-content p {
  margin-bottom: 20px;
}

.privacy-policy-content ul,
.privacy-policy-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.privacy-policy-content li {
  margin-bottom: 10px;
}

.menu__image-section {
  padding: calc(50 * var(--rem)) 0;
  overflow: hidden;
  position: relative;
}

.menu__image-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: url(../images/top/haikei_ivory.jpg);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.menu__image-inner {
  width: 100%;
  overflow: hidden;
}

.menu__image-track {
  display: flex;
  gap: calc(16 * var(--rem));
  animation: scroll-infinite 80s linear infinite;
  will-change: transform;
  width: fit-content;
  align-items: flex-start;
}

.menu__image-item {
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}

.menu__image-item--large {
  width: calc(400 * var(--rem));
  height: calc(400 * var(--rem));
}

.menu__image-item--small {
  width: calc(300 * var(--rem));
  height: calc(300 * var(--rem));
  margin-top: 50px;
}

@keyframes scroll-infinite {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 798px) {
  .menu__image-section {
    padding: calc(30 * var(--rem)) 0;
  }

  .menu__image-track {
    gap: calc(12 * var(--rem));
    animation-duration: 25s;
  }

  .menu__image-item--large {
    width: calc(200 * var(--rem));
    height: calc(280 * var(--rem));
  }

  .menu__image-item--small {
    width: calc(220 * var(--rem));
    height: calc(220 * var(--rem));
  }
}

.oden__menu-image {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(16 * var(--rem));
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(20 * var(--rem)) calc(20 * var(--rem));
}

.oden__menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
}

@media (max-width: 798px) {
  .oden__menu-image {
    grid-template-columns: 1fr;
    gap: calc(8 * var(--rem));
    padding: calc(20 * var(--rem)) calc(10 * var(--rem));
  }
}
.top-menu__oden {
  background-image: url(../images/top/haikei_ivory.jpg);
  background-size: cover;
  background-position: center;
}
.top-menu__yaki {
  background-image: url(../images/top/tori03.webp);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  @media (max-width: 798px) {
    padding: 60px 4%;
  }
}
.top-menu__yaki::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
  pointer-events: none;
}

.menu7__grid--yaki {
  background: rgba(251, 251, 251, 0.8);
  padding: 50px 30px;
  position: relative;
  z-index: 2;
}
.top-menu__title {
  color: #fff;
  position: relative;
  z-index: 3;
}

.top-news__readmore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(10 * var(--rem));
  padding: calc(10 * var(--rem)) calc(24 * var(--rem));
  font-size: calc(14 * var(--rem));
  letter-spacing: calc(1 * var(--rem));
  transition: opacity 0.3s ease;
  position: relative;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.top-news__readmore-btn::after {
  content: "";
  display: inline-block;
  width: calc(8 * var(--rem));
  height: calc(8 * var(--rem));
  border-right: calc(1 * var(--rem)) solid currentColor;
  border-bottom: calc(1 * var(--rem)) solid currentColor;
  transform: rotate(-45deg);
  margin-left: calc(4 * var(--rem));
}

.top-news__readmore-btn:hover {
  opacity: 0.8;
}

@media (width < 768px) {
  .top-news__readmore {
    bottom: 20px;
    right: 20px;
  }
}
/* ランチメニュー */
.lunch-menu {
  padding: 80px 0;
  background: #fff;
}
#lunch {
  scroll-margin-top: calc(90 * var(--rem));
}

.lunch-menu__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.lunch-menu__hero-image {
  margin: 40px 0;
}

.lunch-menu__hero-image img {
  width: 50%;
  margin: 0 auto;
  height: auto;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  @media (max-width: 798px) {
    width: 100%;
  }
}

.lunch-menu__boxed-content {
  border: 1px solid #ccc;
  padding: 40px;
  background: #fff;
  margin-top: 40px;
}

.lunch-menu__section-title {
  font-size: calc(26 * var(--rem));
  font-family: "Shippori Mincho", serif;
  letter-spacing: calc(2 * var(--rem));
  text-align: center;
  color: var(--sub);
  padding-top: 180px;
  @media(max-width: 798px) {
    padding-top: 30px;
  }
}
.lunch-menu__section-title02 {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
.lunch-menu__section-text {
  padding-bottom: 40px;
  border-bottom: 1px solid #ccc;
  text-align: center;
  padding-top: 30px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 60px;
}

/* セットメニュー */
.lunch-menu__set-menu {
  margin-bottom: 50px;
}

.lunch-menu__set-item {
  margin-bottom: 30px;
  padding: 20px;
  background-image: url(../images/common/bg2.jpg);
}

.lunch-menu__set-item:last-child {
  margin-bottom: 0;
}

.lunch-menu__set-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
}

.lunch-menu__set-main {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
}

.lunch-menu__set-number {
  color: var(--sub);
  font-size: calc(22 * var(--rem));
  flex: 0 0 auto;
}

.lunch-menu__set-name {
  flex: 1 1 auto;
  font-family: "Shippori Mincho", serif;
  letter-spacing: calc(1.5 * var(--rem));
  min-width: 0;
}

.lunch-menu__set-price {
  color: var(--sub);
  font-family: "Shippori Mincho", serif;
  letter-spacing: calc(1 * var(--rem));
  white-space: nowrap;
  font-weight: 700;
}

.lunch-menu__set-details {
  list-style: none;
  padding-left: 40px;
  margin: 0;
}

.lunch-menu__set-details li {
  font-size: calc(16 * var(--rem));
  line-height: 1.8;
  color: #333;
  letter-spacing: calc(0.5 * var(--rem));
}
.lunch-menu__set-price--sp {
  display: none;
}

/* デザート */
.lunch-menu__dessert {
  padding-top: 40px;
}

.lunch-menu__dessert-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.lunch-menu__dessert-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.lunch-menu__dessert-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lunch-menu__dessert-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(156, 0, 50, 0.1);
}

.lunch-menu__dessert-item:last-child {
  border-bottom: none;
}

.lunch-menu__dessert-name {
  font-size: calc(18 * var(--rem));
  font-family: "Shippori Mincho", serif;
  letter-spacing: calc(1 * var(--rem));
}

.lunch-menu__dessert-price {
  color: var(--sub);
  font-family: "Shippori Mincho", serif;
  letter-spacing: calc(1 * var(--rem));
  font-size: calc(18 * var(--rem));
}
.menu-top__text {
  font-size: calc(16 * var(--rem));
  line-height: 2;
  color: #333;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .lunch-menu__boxed-content {
    padding: 25px 10px;
  }

  .lunch-menu__section-title {
    font-size: calc(22 * var(--rem));
  }

  .lunch-menu__set-header {
    font-size: calc(18 * var(--rem));
    flex-wrap: wrap;
  }

  .lunch-menu__set-name {
    flex-basis: 100%;
  }

  .lunch-menu__set-details {
    padding-left: 25px;
  }

  .lunch-menu__set-details li {
    font-size: calc(14 * var(--rem));
  }

  .lunch-menu__dessert-name,
  .lunch-menu__dessert-price {
    font-size: calc(16 * var(--rem));
  }
  .lunch-menu__set-item {
    padding: 18px 16px;
  }

  .lunch-menu__set-top {
    grid-area: top;
    display: block;
    margin-bottom: 0;
  }
  .lunch-menu__set-price--pc {
    display: none;
  }
  .lunch-menu__set-price--sp {
    display: block;
    text-align: right;
    margin-top: 6px;
    font-size: calc(16 * var(--rem));
  }

  .lunch-menu__set-main {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
  }

  .lunch-menu__set-name {
    display: block;
    line-height: 1.7;
    word-break: break-word;
  }

  .lunch-menu__set-details {
    padding-left: 32px;
  }

  .lunch-menu__set-price {
    grid-area: price;
    justify-self: end;
    align-self: end;
    white-space: nowrap;
    font-weight: 700;
    font-size: calc(16 * var(--rem));
    margin-top: 2px;
  }
}

.lunch-menu__set-details li {
  font-size: calc(14 * var(--rem));
}

.lunch-menu__dessert-content {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
  @media (max-width: 798px) {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.lunch-menu__dessert-name,
.lunch-menu__dessert-price {
  font-size: calc(16 * var(--rem));
}

/* =========================
   Teaser News (stylish)
   ========================= */

.teaser-news {
  padding-bottom: 60px;
  background-image: url(../images/top/haikei_ivory.jpg);
}
.teaser-news__box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
  padding: 30px 50px;
  background-image: url(../images/top/bg_nois.png);
}
.teaser-news__inner {
  max-width: 980px;
  margin: 0 auto;
}

.teaser-news__card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(44, 44, 44, 0.12);
  border-radius: calc(20 * var(--rem));
  padding: calc(32 * var(--rem)) calc(36 * var(--rem));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(2px);
}

.teaser-news__head {
  display: grid;
  justify-items: start;
  gap: calc(10 * var(--rem));
  padding-bottom: calc(18 * var(--rem));
  margin-bottom: calc(18 * var(--rem));
  border-bottom: 1px solid rgba(44, 44, 44, 0.12);
}

.teaser-news__badge {
  display: inline-grid;
  place-items: center;
  padding: calc(4 * var(--rem)) calc(10 * var(--rem));
  border-radius: 100vmax;
  font-size: calc(12 * var(--rem));
  letter-spacing: calc(1.5 * var(--rem));
  color: var(--sub);
  border: 1px solid rgba(156, 0, 50, 0.35);
  background: rgba(156, 0, 50, 0.06);
}

.teaser-news__title {
  font-size: calc(22 * var(--rem));
  font-family: "Shippori Mincho", serif;
  letter-spacing: calc(1.5 * var(--rem));
  margin: 0 auto calc(20 * var(--rem));
  text-align: center;
  color: var(--sub);
  position: relative;
  width: fit-content;
  padding-inline: calc(24 * var(--rem));
  @media (max-width: 798px) {
    letter-spacing: calc(1 * var(--rem));
  }
}
.teaser-news__title::before,
.teaser-news__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(80 * var(--rem));
  height: 1px;
  background: rgba(44, 44, 44, 0.45);
  @media (max-width: 798px) {
    width: calc(35 * var(--rem));
  }
}

.teaser-news__title::before {
  left: calc(-80 * var(--rem));
  transform: translateY(-50%);
  @media (max-width: 798px) {
    left: calc(-25 * var(--rem));
  }
}

.teaser-news__title::after {
  right: calc(-80 * var(--rem));
  transform: translateY(-50%);
  @media (max-width: 798px) {
    right: calc(-25 * var(--rem));
  }
}

.teaser-news__body p {
  font-size: calc(16 * var(--rem));
  line-height: 2.1;
}
.teaser-news__body p:first-child {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}
.teaser-news .teaser-news__text {
  font-size: 1.1rem;
}

.teaser-news__dl {
  margin-top: calc(18 * var(--rem));
  display: grid;
  gap: calc(12 * var(--rem));
}

.teaser-news__row {
  display: grid;
  grid-template-columns: calc(110 * var(--rem)) 1fr;
  gap: calc(16 * var(--rem));
  padding-block: calc(10 * var(--rem));
  border-top: 1px solid rgba(44, 44, 44, 0.08);
}

.teaser-news__row dt {
  font-weight: 700;
  letter-spacing: calc(1 * var(--rem));
}

.teaser-news__row dd {
  margin: 0;
  line-height: 2;
}
.teaser-news__heading {
  font-size: 1rem;
}

.teaser-news__tel {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.pre-open-time {
  padding-top: 20px;
  display: flex;
  gap: 30px;
  justify-content: center;
  position: relative;
  @media (max-width: 798px) {
    display: grid;
  }
}
.teaser-news__text-center {
  text-align: center;
  @media (max-width: 798px) {
    text-align: start;
  }
}
/* CTA */
.teaser-news__cta {
  margin-top: calc(22 * var(--rem));
  display: grid;
  justify-items: center;
  gap: calc(10 * var(--rem));
}
.teaser-news__heading span {
  font-size: 0.8rem;
  font-weight: normal;
}
.teaser-news__btn {
  display: inline-flex;
  align-items: center;
  gap: calc(12 * var(--rem));
  padding: calc(12 * var(--rem)) calc(22 * var(--rem));
  border-radius: 100vmax;
  background: var(--sub);
  color: #fff;
  font-size: calc(14 * var(--rem));
  letter-spacing: calc(1.5 * var(--rem));
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.teaser-news__arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

@media (any-hover: hover) {
  .teaser-news__btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
  }
  .teaser-news__btn:hover .teaser-news__arrow {
    transform: translateX(3px);
  }
}

.teaser-news__hint {
  font-size: calc(13 * var(--rem));
  opacity: 0.75;
  margin: 0;
}

/* SP */
@media (width < 768px) {
  .teaser-news {
    padding-block: calc(40 * var(--rem));
  }

  .teaser-news__card {
    padding: calc(22 * var(--rem));
  }

  .teaser-news__title {
    font-size: calc(15 * var(--rem));
  }

  .teaser-news__body p {
    font-size: calc(15 * var(--rem));
  }

  .teaser-news__row {
    grid-template-columns: 1fr;
    gap: calc(6 * var(--rem));
  }

  .teaser-news__btn {
    width: 100%;
    justify-content: center;
  }

  .teaser-news__cta {
    justify-items: stretch;
  }
}
.teaser-news__section:first-child {
}
.teaser-news__heading span {
  font-size: 0.9rem;
  color: #333;
  font-weight: nomal;
}
.teaser-news .pre-open-time__text {
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.5;
  padding-top: 20px;
}

.form-item_comment {
  font-size: 0.9rem;
  padding-top: 10px;
  @media (min-width: 799px) {
    padding-left: 30px;
  }
}

.teaser-news__span02 {
  font-weight: bold;
  font-size: 1.1rem;
  @media (max-width: 798px) {
    text-align: center;
    display: block;
  }
}
.teaser-news__span {
  font-size: 1rem;
  font-weight: bold;
}
/* 画像レイアウト追加 */
.lunch-menu__set-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16px;
  align-items: start;
  margin-top: 12px;
}
.lunch-menu__set-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}
.lunch-menu__set-item + .lunch-menu__set-item {
  margin-top: 28px;
}
/* 価格の表示切替（PC/SP） */
@media (max-width: 768px) {
  .lunch-menu__set-content {
    grid-template-columns: 1fr;
  }
  .lunch-menu__set-price--pc {
    display: none;
  }
  .lunch-menu__set-price--sp {
    display: inline-block;
  }
}
@media (min-width: 769px) {
  .lunch-menu__set-price--sp {
    display: none;
  }
}
.menu-top__title_en {
  font-size: 0.9rem;
  letter-spacing: 0.2rem;
  margin-top: 8px;
}
/* 夜のお品書き追記 */
.menu-top__head--split {
  display: block;
}

.menu-top__head--split .menu-top__heading {
  text-align: center;
  margin-bottom: 20px;
}

.menu-top__head--split .menu-top__row {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.menu-top__head--split .menu-top__left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 0%;
  min-width: 0;
}

.menu-top__head--split .menu-top__copy {
  position: relative;
  z-index: 2;
  background: #fff;
  
  padding: 0;
  margin-right: -40px;
  margin-top: 80px;
  box-shadow: rgba(0, 0, 0, 0.3) 2px 4px 6px;
  @media(max-width: 798px) {
    margin-top: 40px;
  }
}

.menu-top__head--split .menu-top__visual {
  flex: 0 0 600px; /* 画像を大きく */
  max-width: 70%;
  margin: 0;
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
  @media(max-width: 798px) {
    padding-bottom: 0px;
  }
}

.menu-top__head--split .menu-top__visual img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .menu-top__head--split .menu-top__row {
    gap: 40px;
  }
  .menu-top__head--split .menu-top__visual {
    flex-basis: 420px;
    max-width: 50%;
  }
  .menu-top__head--split .menu-top__copy {
    margin-right: -24px;
  }
}

@media (max-width: 768px) {
  .menu-top__head--split .menu-top__row {
    flex-direction: column;
    align-items: stretch;
  }
  .menu-top__head--split .menu-top__visual {
    flex: none;
    max-width: 100%;
  }
  .menu-top__head--split .menu-top__copy {
    margin-right: 0; /* モバイルでは重なり解除 */
  }

  /* モバイルでは画像をタイトルと本文の間に配置 */
  .menu-top__head--split .menu-top__left {
    display: contents;
  }
  .menu-top__head--split .menu-top__lead {
    order: 1;
  }
  .menu-top__head--split .menu-top__visual {
    order: 2;
  }
  .menu-top__head--split .menu-top__copy {
    order: 3;
    margin-top: 16px;
    padding: 0 5px;
  }
}

/* タイトル（背景なし）と本文（背景あり）を分離した際の余白調整 */
.menu-top__head--split .menu-top__lead .menu-top__title {
  margin: 0 0 8px;
}
.menu-top__head--split .menu-top__lead .menu-top__title_en {
  display: inline-block;
  margin: 0 0 12px;
}

.menu-fullwidth__set-price {
  font-size: calc(18 * var(--rem));
  font-weight: bold;
  text-align: center;
  margin: 0 0 calc(20 * var(--rem)) 0;
}

/* アラカルトメニュー */
.menu-simple02 {
  padding: 100px 0;
}

.menu-simple02__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

.menu-simple02__title {
  font-size: 24px;
  font-weight: bold;
  margin: 30px 0;
  text-align: center;
  color: #7a683c;
}

.menu-simple02__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.menu-simple02__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
}

.menu-simple02__item:last-child {
  border-bottom: none;
}

.menu-simple02__name {
  font-size: 16px;
  flex: 1;
}

.menu-simple02__price {
  font-size: 16px;
  font-weight: normal;
  margin-left: 20px;
}

.menu-simple02__note {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-top: 15px;
  text-align: center;
  margin-bottom: 30px;
}
.menu-simple02__section {
  border: 1px solid #ccc;
  background: #fff;
  padding: 40px 100px;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
  @media (max-width: 798px) {
    padding: 20px;
  }
}
/* =========================
   Lunch Alt (new)
   ========================= */

.lunch-alt {
  position: relative;
  padding-bottom: 230px;
}

.lunch-alt::after {
  content: "";
  position: absolute;
  top: 595px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  z-index: 0;
  @media(max-width: 798px) {
    top: 685px;
  }
}

.lunch-alt__inner {
  position: relative;
  z-index: 1;
}

/* ---------- Head ---------- */
.lunch-alt__head {
  text-align: center;
  margin-bottom: calc(44 * var(--rem));
}

.lunch-alt__title {
  font-family: "Shippori Mincho", serif;
  font-size: calc(32 * var(--rem));
  letter-spacing: calc(2 * var(--rem));
  margin: 0;
}

.lunch-alt__title-en {
  margin: calc(6 * var(--rem)) 0 0;
  font-size: calc(13 * var(--rem));
  letter-spacing: calc(2 * var(--rem));
  opacity: 0.7;
}

.lunch-alt__lead {
  margin: calc(18 * var(--rem)) auto 0;
  max-width: calc(820 * var(--rem));
  font-size: calc(15 * var(--rem));
  line-height: 2.1;
  opacity: 0.9;
}

/* ---------- Rows ---------- */
.lunch-alt__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: calc(20 * var(--rem));
  padding-block: calc(34 * var(--rem));
}

/* 交互配置 */
.lunch-alt__row--reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}
.lunch-alt__row--reverse .lunch-alt__media {
  order: 2;
}
.lunch-alt__row--reverse .lunch-alt__body {
  order: 1;
}

/* ---------- Media (紙の台紙 + 写真) ---------- */
.lunch-alt__media {
  position: relative;
}

.lunch-alt__media::before {
  content: "";
  width: calc((100vw - 100%) / 2 + 35%);
  height: calc(100% + 100px);
  z-index: -1;
  position: absolute;
  right: 65%;
  bottom: -50px;
  display: block;
  background-image: url(../images/menu/bg_washi2.jpg);
  background-position: center;
  background-size: cover;
}

/* 奇数番目の子要素（実質2,4,6番目の行）：疑似要素を左側に */
.lunch-alt__row:nth-child(odd) .lunch-alt__media::before,
.lunch-alt__row--reverse .lunch-alt__media::before {
  left: 65%;
  right: auto;
}

.lunch-alt__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.lunch-alt__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lunch-alt__body {
  display: grid;
  gap: calc(10 * var(--rem));
  align-content: center;
  padding: 0 100px;
  @media(max-width: 798px) {
    padding: 0 40px;
  }
}

.lunch-alt__h {
  font-family: "Shippori Mincho", serif;
  font-size: calc(22 * var(--rem));
  letter-spacing: calc(1.5 * var(--rem));
  margin: 0;
}

.lunch-alt__price {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: calc(18 * var(--rem));
  letter-spacing: calc(1 * var(--rem));
  color: var(--sub);
}

.lunch-alt__list {
  margin: calc(8 * var(--rem)) 0 0;
  line-height: 2;
  font-size: calc(15 * var(--rem));
  border-top: 1px solid #ccc;
  padding-top: 30px;
}

.lunch-alt__btn {
  margin-top: calc(14 * var(--rem));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(12 * var(--rem));
  width: fit-content;
  padding: calc(12 * var(--rem)) calc(22 * var(--rem));
  border-radius: calc(8 * var(--rem));
  background: #2f2f2f;
  color: #fff;
  letter-spacing: calc(1.5 * var(--rem));
  font-size: calc(13 * var(--rem));
  position: relative;
}

.lunch-alt__btn::after {
  content: "";
  position: absolute;
  right: calc(10 * var(--rem));
  bottom: calc(-6 * var(--rem));
  width: calc(14 * var(--rem));
  height: calc(6 * var(--rem));
  background: var(--sub);
  opacity: 0.85;
  border-radius: 2px;
}

.lunch-alt__arrow {
  transition: transform 0.25s ease;
}

@media (any-hover: hover) {
  .lunch-alt__btn:hover .lunch-alt__arrow {
    transform: translateX(3px);
  }
}

/* ---------- Dessert ---------- */
.lunch-alt__dessert {
  margin-top: calc(90 * var(--rem));
  padding-top: calc(90 * var(--rem));
  border-top: 1px solid rgba(44, 44, 44, 0.18);
  background: #fff;
}

.lunch-alt__dessert-title {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: calc(22 * var(--rem));
  letter-spacing: calc(2 * var(--rem));
  margin: 0 0 calc(18 * var(--rem));
}

.lunch-alt__dessert-list {
  max-width: calc(720 * var(--rem));
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: calc(12 * var(--rem));
}

.lunch-alt__dessert-item {
  display: flex;
  justify-content: space-between;
  gap: calc(18 * var(--rem));
  padding: calc(12 * var(--rem)) calc(14 * var(--rem));
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(44, 44, 44, 0.1);

}

.lunch-alt__dessert-name {
  font-family: "Shippori Mincho", serif;
  letter-spacing: calc(1 * var(--rem));
}

.lunch-alt__dessert-price {
  font-family: "Shippori Mincho", serif;
  color: var(--sub);
  white-space: nowrap;
}

/* ---------- SP ---------- */
@media (width < 768px) {
  .lunch-alt {
   
  }

  .lunch-alt__row,
  .lunch-alt__row--reverse {
    grid-template-columns: 1fr;
    gap: calc(22 * var(--rem));
    padding-block: calc(26 * var(--rem));
  }

  .lunch-alt__row--reverse .lunch-alt__media,
  .lunch-alt__row--reverse .lunch-alt__body {
    order: initial;
  }

  .lunch-alt__media::before {
    height: calc(100% + 150px);
    bottom: -264px;
  }

  .lunch-alt__btn {
    width: 100%;
  }
}

/* ─────────────────────────
  drink-menu
───────────────────────── */
.drink-menu__page {
  background-image: url(../images/menu/bg_washi2.jpg);
  margin-top: 0;
}
.drink-menu__lists{
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.drink-menu__section{
  padding: 40px 100px;
  margin-bottom: 18px;
}

.drink-menu__section-title{
  font-size: 18px;
  margin: 0 0 14px;
  color: #7a683c;
  letter-spacing: .08em;
  text-align: center;
}

.drink-menu__list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.drink-menu__item{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
}

.drink-menu__item:last-child{
  border-bottom: none;
}

.drink-menu__name{
  font-size: 16px;
  flex: 1;
  min-width: 0;
}

.drink-menu__price{
  font-size: 16px;
  font-weight: normal;
  margin-left: 20px;
  white-space: nowrap;
}

.drink-menu__note{
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 15px 0 30px;
  text-align: center;
}

/* ─────────────────────────
  レスポンシブ（中身だけ）
───────────────────────── */
@media (max-width: 1024px){
  .drink-menu__section{
    padding: 30px 40px;
  }
}

@media (max-width: 768px){
  .drink-menu__section{
    padding: 20px;
  }
  .drink-menu__item{
    padding: 12px 0;
  }
  .drink-menu__name,
  .drink-menu__price{
    font-size: 15px;
  }
}
