/* ==================================================
   Reset & Base
================================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Noto+Serif+JP:wght@100..900&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #000;
  background-color: #fff;
  line-height: normal;
  border-top: 10px solid #600;
  box-shadow: 0 4px 4px 0 rgba(102, 0, 0, 0.25);
  height: 10px;
}

@media (max-width: 767px) {
  body {
    border-top: unset;
    box-shadow: unset;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* パンくずリスト - PC版統一スタイル（お部屋ページに合わせる） */
@media (min-width: 768px) {
  .breadcrums {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 80%;
    line-height: 160%;
    padding-bottom: 0;
    padding-left: 5px;
    padding-top: 5px;
  }
}

.breadcrums a {
  color: #600 !important;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ==================================================
   Layout Helpers
================================================== */
.wrapper {
  width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 924px;
  width: 100%;
  margin: 0 auto;
}

/* ==================================================
   Typography
================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

p,
figure,
img {
  margin: 0;
}

/* a:visited {
  color: #600;
  text-decoration: none;
} */

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ==================================================
   Utility Classes
================================================== */
.text-center {
  text-align: center;
}

/* Margin utilities */
.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-40 {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .pc-mt-104 {
    margin-top: 104px !important;
  }

  /* コース料理ページでは最初の.meal-wrapの余白を0pxに（お部屋ページに合わせる） */
  .ryouri_course .pc-mt-104 {
    margin-top: 0px !important;
  }
}

@media (max-width: 767px) {
  .sp-mt-8 {
    margin-top: 8px;
  }

  .sp-mt-40 {
    margin-top: 40px;
  }
}

/* Visibility utilities */
.u-hidden {
  display: none !important;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* ==================================================
   Display Utilities (PC / SP)
================================================== */

.u-pc {
  display: block;
}

.u-sp {
  display: none;
}

@media (max-width: 767px) {
  .u-pc {
    display: none !important;
  }

  .u-sp {
    display: block !important;
  }
}

/* ==================================================
   Buttons (generic only)
================================================== */

.c-primary-buttonwrap {
  border: 1px solid #6e5e41;
  position: relative;
  transition: all 0.25s ease;
}

.c-primary-buttonwrap:hover {
  opacity: 0.8;
}

.c-primary-buttonwrap::after {
  content: "";
  position: absolute;
  width: 23px;
  height: 1px;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
  right: -3px;
}

.c-primary-buttonwrap::before {
  content: "";
  position: absolute;
  width: 23px;
  height: 1px;
  background: #6e5e41;
  top: 50%;
  transform: translateY(-50%);
  right: -26px;
}

.c-primary-button {
  position: relative;
  background-color: #6e5e41;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-family: "Noto Serif", serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 33px;
  letter-spacing: 1.4px;
  padding-block: 5px 9px;
  padding-inline: 16px 35px;
  margin-left: 3px;
  margin-top: 3px;
  margin-right: -3px;
  margin-bottom: -3px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.c-primary-button::after {
  content: "";
  position: absolute;
  width: 1px;
  background: #fff;
  height: 96%;
  right: 2px;
  top: 0;
}

.c-primary-button::before {
  content: "";
  position: absolute;
  width: 99%;
  background: #fff;
  height: 1px;
  bottom: 2.1px;
  right: 2px;
}

@media (max-width: 768px) {
  .c-primary-button {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 1.2px;
    padding-inline: 13px;
  }

  .c-primary-buttonwrap::after {
    width: 12px;
  }

  .c-primary-buttonwrap::before {
    width: 8px;
    right: -11px;
  }

  .c-primary-button::before {
    bottom: 2.1px;
    width: 98%;
    right: 3px;
  }

  .c-primary-button::after {
    height: 95%;
  }
}

/* ==================================================
   Accessibility
================================================== */
:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

/* ==================================================
   Responsive Base
================================================== */
@media (max-width: 768px) {
  html {
    font-size: 56.25%;
  }

  .inner {
    padding: 0 10px;
  }

  /* SP版パンくずリストの左パディング */
  .u-sp.sp-mt-8 {
    padding-left: 10px;
  }
}

/* header */
.header__inner {
  margin-block: 26px 20px;
  padding-inline: 15px;
}

.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}

.header__nav li {
  border-left: 1px solid #757575;
  min-height: 38px;
  width: 132px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  font-family: "Noto Serif", serif;
  color: #757575;
  font-weight: 700;
  line-height: 15px;
}

.header__nav li:hover {
  color: #600;
}

.header__nav li a.current {
  color: #600;
}

.header__nav li:last-of-type {
  border-right: 1px solid #757575;
}

@media (max-width: 767px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9998;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .header__inner {
    padding-inline: 0;
  }

  .wrapper {
    padding-top: 63px;
  }

  main {
    padding-top: 0;
  }
}

/* menu */
.menu {
  background: #600;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 1px;
  width: 64px;
  height: 63px;
  display: none !important;
}

.overlay-menu.active .menu,
.overlay-menu.active + .menu {
  background: transparent;
}

.header__menu-toggle {
  cursor: pointer;
  width: 39px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header__menu-toggle.active {
  width: 44px;
}

.header__menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.header__menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 5px);
}

.header__menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

#menutext {
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 1px;
  text-align: center;
}

@media (max-width: 767px) {
  .header__logo {
    max-width: 120px;
    width: 100%;
    margin-left: 10px;
  }

  .header__right {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .header__inner {
    margin-block: 0px;
  }

  .menu {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .menu-text {
    margin-top: 4px;
    line-height: 12px;
  }

  .js-menu.is-open .menu-text {
    line-height: unset;
    margin-top: 6px;
  }
}

/* Header */
.overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 24px 21px 35px;
}

.overlay-header h2 {
  margin: 0;
  font-size: 20px;
}

.overlay-header span {
  font-size: 14px;
  display: block;
  margin-top: 4px;
}
.close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.menu-section {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}

.section-list {
  list-style: none;
  padding-left: 20px;
  display: none;
  margin-top: 10px;
}

.section-list li {
  margin: 5px 0;
}

.menu-section.open .arrow {
  transform: rotate(180deg);
}

.pdf-buttons {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pdf-btn {
  padding: 10px;
  border: 1px solid #fff;
  text-decoration: none;
  color: #fff;
  text-align: center;
}

.overlay-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 270px;
  height: 100%;
  background-color: #700000;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
  z-index: 9999;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
}

.overlay-menu.active {
  transform: translateX(0);
}

.overlay-topimage {
  max-width: 200px;
  width: 100%;
  margin-inline: auto;
}

.overlay-menulist {
  width: 222px;
  max-height: 400px;
  overflow-y: auto;
  margin-inline: 24px;
  margin-block: 18px;
  padding-right: 18px;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

.overlay-menulist::-webkit-scrollbar {
  width: 4px;
}

.overlay-menulist::-webkit-scrollbar-track {
  background: transparent;
  width: 1px;
}

.overlay-menulist::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 10px;
  min-height: 20px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.overlay-menulist::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.overlay-menulist:hover {
  scrollbar-color: #fff rgba(160, 160, 160, 0.35);
}

.overlay-menulist:hover::-webkit-scrollbar-track {
  background: rgba(160, 160, 160, 0.35);
}

.overlay-menulist:hover::-webkit-scrollbar-thumb {
  opacity: 1;
}

.overlaymenu-section {
  cursor: pointer;
  font-weight: bold;
  position: relative;
  color: #fff;
  font-family: "Noto Serif", serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 1.6px;
  margin-bottom: 32px;
}

.overlaymenu-section:last-of-type {
  margin-bottom: 0;
}

.overlaymenu-section::after {
  content: "";
  position: absolute;
  right: 0;
  transition: transform 0.3s;
  background-image: url("../images/top/icon-arrowdown.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 15px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.overlaymenu-section.active::after {
  content: "";
  background-image: url("../images/top/icon-up.svg");
  width: 15px;
  height: 15px;
  top: 0;
  transform: unset;
}

.overlaymenu-section.active ul {
  margin-top: 12px;
}

.overlaymenu-items {
  max-height: 0;
  overflow: hidden;
}

.overlaymenu-items li {
  position: relative;
  list-style: none;
  color: #fff;
  font-family: "Noto Serif", serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 1.4px;
  padding-left: 16px;
  margin-bottom: 15px;
}

.overlaymenu-items li:last-of-type {
  margin-bottom: 0;
}

.overlaymenu-items li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: #fff;
}

.overlay-sharelink {
  position: relative;
  max-width: 184px;
  width: 100%;
  margin-inline: auto;
  border: 1px solid #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  transition: all 0.25s ease;
  cursor: pointer;
}

.overlay-sharelink:hover {
  opacity: 0.8;
}

.overlay-sharelink::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 1px;
  background: #fff;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
}

.overlay-sharelinkwrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.overlaymenu-footertext {
  margin-top: 32px;
  color: #fff;
  font-family: "Noto Serif", serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 1.6px;
}

#content {
  padding-bottom: 86px;
  margin-top: 0px;
}

@media (max-width: 767px) {
  #content {
    padding-bottom: 80px;
    padding-top: 0;
  }
}

.meal-sharelinkwrap {
  max-width: 350px;
  width: 100%;
  margin-inline: auto;
  background: #600;
  margin-top: 40px;
  padding: 5px;
}
.meal-sharelinkwrap.access {
  margin-top: 0px;
  margin-bottom: 20px;
}

.meal-sharelink {
  position: relative;
  color: #fff;
  border: 1px solid #fff;
  text-align: center;
  font-family: "Noto Serif", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 1.8px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 10px;
  display: block;
  cursor: pointer;
  transition: all 0.25s ease;
}

.meal-sharelink:hover {
  opacity: 0.7;
}

.meal-sharelink::after {
  content: "";
  position: absolute;
  background-image: url("../images/top/icon-pdf-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 30px;
  height: 30px;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
}

.meal-sharelink .sm {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 1.4px;
  display: block;
}

#Gnavi {
  width: 875px;
  margin-right: 12.5px;
  margin-left: 12.5px;
  padding: 0;
}
#Lnavi {
  width: 875px;
  /* margin-right: 12.5px;
  margin-left: 12.5px; */
  padding: 0;
  margin-right: 12.5px;
  margin-left: 12.5px;
}

@media (max-width: 991px) {
  #Gnavi {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  #Lnavi {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}

/* footer */

.site-footer {
  background: #600;
  padding-block: 16px;
  position: relative;
}

.footer-text {
  color: #fff;
  font-family: "Noto Serif", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

@media (max-width: 991px) {
  .footer-text {
    gap: 15px;
  }
}

.footer-text.sp {
  display: none;
}

@media (max-width: 767px) {
  .footer-text.sp {
    display: flex;
  }
}

.footer-text span:first-of-type {
  padding-right: 20px;
}

@media (max-width: 767px) {
  .site-footer {
    padding-block: 32px;
  }

  .footer-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 12px;
    line-height: 17px;
  }

  .footer-text span {
    display: block;
  }

  .footer-text span:nth-of-type(3) {
    margin-block: 11px 8px;
  }

  .footer-icon img {
    max-width: 145px;
    width: 100%;
    margin-inline: auto;
    text-align: center;
    margin-bottom: 24px;
  }

  .footer-reserve {
    display: block;
    color: #fff;
    font-family: "Noto Serif JP";
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    padding-top: 18px;
    border-top: 1px solid #fff;
  }
}

.mitsubiclub-top {
  position: fixed;
  right: 38px;
  bottom: 20px;
  z-index: 11;
}

@media (max-width: 767px) {
  .mitsubiclub-top {
    width: 52px;
    height: 52px;
    right: 15px;
    bottom: 20px;
  }
}

.login__header {
  max-width: fit-content;
  margin: 80px auto 0;
}

.login__content {
  max-width: 526px;
  margin: 40px auto 0;
}

@media (max-width: 767px) {
  .login__content {
    padding-inline: 15px;
  }
}

.login__text {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.417;
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}

@media (max-width: 767px) {
  .login__text {
    font-size: 12px;
    margin-top: 10px;
  }
  .login__br-pc {
    display: none;
  }
}

.login .c-primary-buttonwrap {
  max-width: 254px;
  width: 100%;
  margin: 40px auto 10px;
}

@media (max-width: 767px) {
  .login .c-primary-buttonwrap {
    max-width: 201px;
    margin: 20px auto 10px;
  }
}

.login__btn {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login__btn .hover {
  display: none;
}

.login__btn a:hover .hover {
  display: block;
}

.login__btn a:hover .norm {
  display: none;
}

