/*
Theme Name: 株式会社 蔦茂.
Theme URL: 
Description: 
Author: 
Version: 1.0.01
Tags: 
License: 
License URI: 
*/

@import url(css/font-awesome.min.css);

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/

:root {
  --white-color: #ffffff;
  --primary-color: #4e631b;
  --section-bg-color: #f9f9f9;
  --dark-color: #2e2930;
  --grey-color: #fcfeff;
  --text-secondary-white-color: rgba(255, 255, 255, 0.98);
  --title-color: #2e2930;
  --p-color: #717275;

  --body-secondary-font-family: "Noto Sans JP", sans-serif;
  /* --body-font-family: "Iansui", sans-serif; */
  --body-font-family: "Klee One", sans-serif;

  --h1-font-size: 72px;
  --h2-font-size: 42px;
  --h3-font-size: 36px;
  --h4-font-size: 32px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 20px;
  --p-font-size-small: 16px;
  --copyright-text-font-size: 14px;
  --custom-link-font-size: 12px;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-bold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;
}

body,
html {
  height: 100%;
}

body {
  background: var(--white-color);
  font-family: var(--body-font-family);
  position: relative;
}

/*---------------------------------------
  TYPOGRAPHY
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1,
h2 {
  font-weight: var(--font-weight-black);
}

h1 {
  font-size: var(--h1-font-size);
  line-height: normal;
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  letter-spacing: 0.5px;
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

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

a:hover {
  color: var(--primary-color);
}

/* #post a {
  text-decoration: underline;
} */

::selection {
  background: var(--dark-color);
  color: var(--white-color);
}

.custom-underline {
  border-bottom: 2px solid var(--white-color);
  color: var(--white-color);
  padding-bottom: 4px;
}

.overlay {
  background: linear-gradient(to top, #000, transparent 35%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/*---------------------------------------
  CUSTOM LINK
-----------------------------------------*/
.custom-links {
  max-width: 230px;
}

.custom-link {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.custom-link::after {
  content: "";
  width: 0;
  height: 2px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: currentColor;
}

.custom-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.custom-link:hover,
.custom-link:hover::after {
  color: var(--white-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  NAVIGATION
-----------------------------------------*/
.navbar {
  z-index: 9;
  right: 0;
  left: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 0 !important;
}

.navbar-brand {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 10px;
  padding-left: 10px;
}

.nav-item {
  margin-right: 1.4rem;
}

.navbar-nav .nav-link::after {
  content: ""; /* アイコンを削除 */
  display: block;
  width: 0; /* 初期状態で幅を0に */
  height: 2px; /* 下線の太さ */
  background-color: var(--primary-color); /* 下線の色 */
  position: absolute;
  bottom: -3px; /* テキストの下に配置 */
  left: 50%;
  transition:
    width 0.3s ease-in-out,
    left 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
  width: 100%; /* ホバー時に全幅に広がる */
  left: 0; /* 左寄せ */
}

.navbar-nav .nav-link {
  color: var(--dark-color);
  font-size: 16px;
  /* font-weight: var(--font-weight-bold); */
  position: relative;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
  color: var(--primary-color);
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

.navbar-nav .nav-item.active .nav-link,
.nav-link:focus,
.nav-link:hover {
  color: var(--dark-color);
}

.nav-link:focus {
  color: var(--p-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition:
    top 300ms 50ms ease,
    -webkit-transform 300ms 350ms ease;
  transition:
    top 300ms 50ms ease,
    transform 300ms 350ms ease;
  transition:
    top 300ms 50ms ease,
    transform 300ms 350ms ease,
    -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition:
    top 300ms 350ms ease,
    -webkit-transform 300ms 50ms ease;
  transition:
    top 300ms 350ms ease,
    transform 300ms 50ms ease;
  transition:
    top 300ms 350ms ease,
    transform 300ms 50ms ease,
    -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: "";
}

.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}

.navbar-reserve {
  margin-left: auto; /* 右端に配置 */
}

.navbar-reserve .nav-link {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: var(--font-weight-bold);
  text-align: center;
  display: inline-block;
  transition: background 0.5s ease-in-out;
}

.navbar-reserve .nav-link:hover {
  background: var(--p-color);
  /* border: 1px solid var(--primary-color); */
  color: var(--white-color);
}

@media screen and (max-width: 991px) {
  /* .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  } */

  .nav-item:last-child {
    margin-top: 1.8rem;
    background: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    width: 100%;
    padding: 0.8rem 0;
  }

  .reserve-link {
    color: var(--white-color);
  }
}
/*---------------------------------------
  HERO
-----------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .hero {
    height: 100vh;
  }

  .custom-video,
  .news-detail-image {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
  }

  .sticky-wrapper {
    position: relative;
    bottom: 76px;
  }
}

@media screen and (max-width: 991px) {
  .hero {
    height: 100vh;
  }
}

.heroText {
  position: absolute;
  z-index: 1;
  top: 47.3%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  text-align: center;
}

/*---------------------------------------
  ABOUT & TEAM MEMBERS
-----------------------------------------*/
.about-image,
.team-image {
  width: 100%;
  height: 100%;
  max-height: 635px;
  min-height: 475px;
  object-fit: cover;
}

.team-thumb {
  background: var(--white-color);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  padding: 22px 32px 32px 32px;
}

.carousel-control-next,
.carousel-control-prev {
  top: auto;
  bottom: 2.5rem;
}

.carousel-control-prev {
  right: 4rem;
  left: auto;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-color: var(--dark-color);
  background-size: 50% 50%;
  border-radius: 100px;
  width: 3rem;
  height: 3rem;
}

/*---------------------------------------
  PORTFOLIO
-----------------------------------------*/
.portfolio-thumb {
  position: relative;
  overflow: hidden;
}

.portfolio-info {
  margin: 20px;
}

/*---------------------------------------
  NEWS & EVENTS
-----------------------------------------*/

.news,
.related-news {
  background: var(--section-bg-color);
}

.news-thumb {
  position: relative;
}

.news-category {
  background: var(--dark-color);
  color: var(--white-color);
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  padding: 4px 12px;
  display: inline-block;
  font-family: var(--body-secondary-font-family);
}

.news-text-info {
  margin: 0 20px;
}

.news-title {
  margin-top: 0px !important;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--white-color);
  padding-bottom: 3px;
}

.news-title-link {
  color: var(--title-color);
  display: inline-block;
}

.news-text-info p {
  margin-top: -10px !important;
}

.news-title-link:hover {
  color: var(--dark-color);
}

.text-muted {
  color: var(--grey-color) !important;
  font-size: var(--custom-link-font-size) !important;
}

.portfolio-image,
.news-image {
  display: block;
  transition: transform 0.6s ease-out;
}

.news-image-hover {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  padding-bottom: 4px;
  height: 100%;
}

.news-image-hover::after {
  content: "";
  width: 0;
  height: 4px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: var(--dark-color);
}

.news-image-hover-warning::after {
  background: #ffc107;
}

.news-image-hover-primary::after {
  background: #0d6efd;
}

.news-image-hover-success::after {
  background: #198754;
}

.news-image-hover:hover::after {
  width: 100%;
  left: 0;
  right: auto;
  z-index: 9;
}

.image-popup:hover .portfolio-image,
.news-image-hover:hover .news-image {
  transform: scale(1.02);
}

.news-two-column {
  min-height: 199px;
  margin-bottom: 16px;
}

.news-two-column .news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
}

.social-share-link,
.social-share-link + span {
  color: rgba(255, 255, 255, 0.65);
}

/*---------------------------------------
  SECTION
-----------------------------------------*/
.section-padding {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

/*---------------------------------------
  CONTACT
-----------------------------------------*/
.contact-info {
  padding: 40px;
}

.contact-form .form-control {
  border-radius: 0;
  font-weight: var(--font-weight-normal);
  padding-top: 12px;
  padding-bottom: 12px;
}

.contact-form button[type="submit"] {
  background: var(--dark-color);
  border: none;
  border-radius: 100px;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  padding: 16px;
  transition: all 0.6s ease-out;
}

.contact-form button[type="submit"]:hover {
  background: var(--primary-color);
}

.form-label {
  color: var(--p-color);
  font-weight: var(--font-weight-bold);
}

.map-iframe {
  display: block;
  filter: grayscale(100);
}

/*---------------------------------------
  SITE FOOTER
-----------------------------------------*/
.site-footer {
  background: var(--dark-color);
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
}

.site-footer .custom-link {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--p-font-size);
}

.site-footer .custom-link:hover,
.site-footer .social-icon-link:hover {
  color: var(--white-color);
}

.copyright-text {
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--copyright-text-font-size);
  margin-top: 1.5rem;
}
.copyright-text a {
  color: rgba(255, 255, 255, 0.45);
}

/*---------------------------------------
  SOCIAL ICON
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1rem;
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 15px;
}

.social-icon-link:hover {
  color: var(--primary-color);
}

/*---------------------------------------
  RESPONSIVE STYLES
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .news-two-column {
    min-height: 232.5px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .team-thumb {
    left: 0;
    width: auto;
  }

  .news-two-column {
    height: auto !important;
    min-height: inherit;
  }

  .news .col-12 .news-two-column:first-child {
    margin-bottom: 38px;
  }
}

@media screen and (max-width: 767px) {
  .news-detail-title {
    font-size: 36px;
  }
}

@media screen and (max-width: 360px) {
  h1 {
    font-size: 32px;
  }

  .heroText p {
    font-size: 14px;
  }
}

@media screen and (max-width: 359px) {
  .news-detail-title {
    font-size: 22px;
  }
}

/*---------------------------------------
  TEXT STYLES
-----------------------------------------*/
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-white-color {
  color: var(--white-color);
}

.text-secondary-white-color {
  color: var(--text-secondary-white-color);
}

/*---------------------------------------
  BG-IMAGES STYLES
-----------------------------------------*/
.wrapper {
  padding: 6em 0;
  position: relative;
}
@media screen and (max-width: 991px) {
  .wrapper {
    padding: 4em 0;
  }
}

@media screen and (max-width: 577px) {
  .wrapper {
    padding: 2em 0;
  }
}

.post {
  display: -ms-flexbox;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  border-top: 0;
  min-height: 100vh;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.post .box {
  margin: 0;
}

@-moz-keyframes inner {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes inner {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes inner {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes inner {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/**/
@-moz-keyframes inner-about {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes inner-about {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes inner-about {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes inner-about {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/**/
@-moz-keyframes inner-chef {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes inner-chef {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes inner-chef {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes inner-chef {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/**/
@-moz-keyframes inner-room {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes inner-room {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes inner-room {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes inner-room {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/**/
@-moz-keyframes inner-cuisine {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes inner-cuisine {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes inner-cuisine {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes inner-cuisine {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/**/
@-moz-keyframes inner-access {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes inner-access {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes inner-access {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes inner-access {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

#main .inner {
  opacity: 0; /* 初期状態で非表示 */
  transform: scale(0.8); /* 初期状態で縮小 */
  transition:
    opacity 1s ease,
    transform 1s ease; /* アニメーションを再有効化 */
  position: relative;
  z-index: 2;
}

.inner.current {
  opacity: 1; /* アニメーション後、完全に表示 */
  transform: scale(1); /* アニメーション後、元のサイズ */
}

.inner-about.current {
  opacity: 1; /* アニメーション後、完全に表示 */
  transform: scale(1); /* アニメーション後、元のサイズ */
}

.inner-chef.current {
  opacity: 1; /* アニメーション後、完全に表示 */
  transform: scale(1); /* アニメーション後、元のサイズ */
}

.inner-cuisine.current {
  opacity: 1; /* アニメーション後、完全に表示 */
  transform: scale(1); /* アニメーション後、元のサイズ */
}

.inner-access.current {
  opacity: 1; /* アニメーション後、完全に表示 */
  transform: scale(1); /* アニメーション後、元のサイズ */
}

.post .inner {
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -moz-transition:
    opacity 1.25s ease,
    -moz-transform 1s ease;
  -webkit-transition:
    opacity 1.25s ease,
    -webkit-transform 1s ease;
  -ms-transition:
    opacity 1.25s ease,
    -ms-transform 1s ease;
  transition:
    opacity 1.25s ease,
    transform 1s ease;
  opacity: 0;
  position: relative;
  z-index: 2;
}

.post .inner.current {
  opacity: 1;
}

.post .inner-about {
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -moz-transition:
    opacity 1.25s ease,
    -moz-transform 1s ease;
  -webkit-transition:
    opacity 1.25s ease,
    -webkit-transform 1s ease;
  -ms-transition:
    opacity 1.25s ease,
    -ms-transform 1s ease;
  transition:
    opacity 1.25s ease,
    transform 1s ease;
  opacity: 0;
  position: absolute;
  z-index: 2;
  bottom: 3%;
  right: 0;
  width: 45%;
  /* writing-mode: vertical-rl;
  text-orientation: upright; */
}

.post .inner-about.current {
  opacity: 1;
}

.post .inner-about h3 {
  margin: 1em 0 0.5em;
}

/* .post .inner-about p {
  margin: 2em 0.5em 0 2em;
} */

.post .inner-chef {
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -moz-transition:
    opacity 1.25s ease,
    -moz-transform 1s ease;
  -webkit-transition:
    opacity 1.25s ease,
    -webkit-transform 1s ease;
  -ms-transition:
    opacity 1.25s ease,
    -ms-transform 1s ease;
  transition:
    opacity 1.25s ease,
    transform 1s ease;
  opacity: 0;
  position: absolute;
  z-index: 2;
  bottom: 3%;
  left: 0;
  width: 47%;
  /* writing-mode: vertical-rl;
  text-orientation: upright; */
}

.post .inner-chef.current {
  opacity: 1;
}

.post .inner-chef h3 {
  margin: 1em 0 0.5em;
}

/* .post .inner-chef p {
  margin: 2em 0.5em 0 2em;
} */

.post .inner-room {
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -moz-transition:
    opacity 1.25s ease,
    -moz-transform 1s ease;
  -webkit-transition:
    opacity 1.25s ease,
    -webkit-transform 1s ease;
  -ms-transition:
    opacity 1.25s ease,
    -ms-transform 1s ease;
  transition:
    opacity 1.25s ease,
    transform 1s ease;
  opacity: 0;
  position: absolute;
  z-index: 2;
  bottom: 3%;
  right: 0;
  /* transform: translate(-50%, -50%); */
  width: 45%;
  /* writing-mode: vertical-rl;
  text-orientation: upright; */
}

.post .inner-room.current {
  opacity: 1;
}

.post .inner-room h3 {
  margin: 1em 0 0.5em;
}

/* .post .inner-room p {
  margin: 2em 0.5em 0 2em;
} */

.post .inner-cuisine {
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -moz-transition:
    opacity 1.25s ease,
    -moz-transform 1s ease;
  -webkit-transition:
    opacity 1.25s ease,
    -webkit-transform 1s ease;
  -ms-transition:
    opacity 1.25s ease,
    -ms-transform 1s ease;
  transition:
    opacity 1.25s ease,
    transform 1s ease;
  opacity: 0;
  position: absolute;
  z-index: 2;
  bottom: 5%;
  right: 0;
  /* transform: translate(-50%, -50%); */
  width: 57%;
  /* writing-mode: vertical-rl;
  text-orientation: upright; */
}

.post .inner-cuisine h3 {
  margin: 0.5em 0;
}

.post .inner-cuisine p {
  margin: 0.5em 0 0.5em;
  font-size: 0.8em;
}

.post .inner-cuisine p span {
  width: 200px;
}

.post .inner-cuisine.current {
  opacity: 1;
}

.post .inner-access {
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -moz-transition:
    opacity 1.25s ease,
    -moz-transform 1s ease;
  -webkit-transition:
    opacity 1.25s ease,
    -webkit-transform 1s ease;
  -ms-transition:
    opacity 1.25s ease,
    -ms-transform 1s ease;
  transition:
    opacity 1.25s ease,
    transform 1s ease;
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 5%;
  left: 5%;
  /* transform: translate(-50%, -50%); */
  width: 43%;
}

.post .inner-access.current {
  opacity: 1;
}

.post:before {
  -moz-transition: opacity 3s ease;
  -webkit-transition: opacity 3s ease;
  -ms-transition: opacity 3s ease;
  transition: opacity 3s ease;
  -moz-transition-delay: 1.25s;
  -webkit-transition-delay: 1.25s;
  -ms-transition-delay: 1.25s;
  transition-delay: 1.25s;
  content: "";
  display: block;
  background-color: var(--dark-color);
  height: 100%;
  left: 0;
  opacity: 0.35;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

@-moz-keyframes more {
  0% {
    bottom: -3em;
  }

  100% {
    bottom: 2em;
  }
}

@-webkit-keyframes more {
  0% {
    bottom: -3em;
  }

  100% {
    bottom: 2em;
  }
}

@-ms-keyframes more {
  0% {
    bottom: -3em;
  }

  100% {
    bottom: 2em;
  }
}

@keyframes more {
  0% {
    bottom: -3em;
  }

  100% {
    bottom: 2em;
  }
}

.post .more {
  background-color: rgba(255, 255, 255, 0.15);
  border: 0;
  border-radius: 1em 1em 0 0;
  bottom: -3em;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  height: 3em;
  left: 50%;
  margin-left: -1.5em;
  overflow: hidden;
  position: absolute;
  text-indent: 3em;
  white-space: nowrap;
  width: 3em;
  z-index: 2;
  border-radius: 100%;
  text-decoration: none;
}

.post .more:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-transform: none !important;
}

.post .more.current {
  -moz-transition: height 0.2s ease;
  -webkit-transition: height 0.2s ease;
  -ms-transition: height 0.2s ease;
  transition: height 0.2s ease;
  -moz-animation: more 0.75s ease-out 2s forwards;
  -webkit-animation: more 0.75s ease-out 2s forwards;
  -ms-animation: more 0.75s ease-out 2s forwards;
  animation: more 0.75s ease-out 2s forwards;
}

.post .more:hover {
  background: none;
  color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 1px 0 rgba(255, 255, 255, 0.5);
}

.post .more:hover:before {
  color: rgba(255, 255, 255, 0.5);
}

.post .more:before {
  content: "\f107";
  color: var(--white-color);
  font-size: 2em;
  position: absolute;
  right: 0.425em;
  bottom: -0.075em;
}

@media screen and (max-width: 991px) {
  @-moz-keyframes more {
    0% {
      bottom: -3em;
    }

    100% {
      bottom: 1.5em;
    }
  }

  @-webkit-keyframes more {
    0% {
      bottom: -3em;
    }

    100% {
      bottom: 1.5em;
    }
  }

  @-ms-keyframes more {
    0% {
      bottom: -3em;
    }

    100% {
      bottom: 1.5em;
    }
  }

  @keyframes more {
    0% {
      bottom: -3em;
    }

    100% {
      bottom: 1.5em;
    }
  }
}

@media screen and (max-width: 769px) {
  .post {
    min-height: 0;
    /* height: auto; */
    height: 100vh;
    background-attachment: scroll;
  }

  .post h2 {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 577px) {
  .inner-about {
    top: 27% !important;
  }

  .inner-chef {
    top: 27% !important;
  }

  .inner-room {
    top: 32% !important;
  }

  .inner-cuisine {
    top: 3% !important;
  }

  .inner-access {
    width: 90% !important;
    left: 0 !important;
  }

  .post h2 {
    font-size: 1.25em !important;
  }

  .post h3 {
    font-size: 1em !important;
  }

  .post p {
    font-size: 0.65em !important;
  }

  .post .more {
    display: none;
  }

  .post .button {
    width: 100%;
  }
}

.inner {
  width: 60em;
}

.inner-about {
  width: 60em;
}

.inner-chef {
  width: 60em;
}

.inner-room {
  width: 60em;
}

.inner-cuisine {
  width: 60em;
}

.inner-access {
  width: 60em;
}

.inner-access a {
  color: var(--white-color);
}

.inner-access span {
  margin-right: 0.3rem;
}

.inner-access .span-ml {
  margin-left: 0.95rem;
}

@media screen and (max-width: 1600px) {
  .inner {
    width: 65em;
  }

  .inner-about {
    width: 65em;
  }

  .inner-chef {
    width: 65em;
  }

  .inner-room {
    width: 65em;
  }

  .inner-cuisine {
    width: 65em;
  }

  .inner-access {
    width: 65em;
  }
}

@media screen and (max-width: 991px) {
  .inner {
    width: 80%;
  }

  .inner-about {
    /* position: relative !important; */
    width: 80% !important;
  }

  .inner-chef {
    /* position: relative !important; */
    width: 80% !important;
  }

  .inner-room {
    /* position: relative !important; */
    width: 80% !important;
  }

  .inner-cuisine {
    /* position: relative !important; */
    width: 80% !important;
  }

  .inner-access {
    /* position: relative !important; */
    width: 80% !important;
  }
}

@media screen and (max-width: 769px) {
  .inner {
    width: 90%;
  }

  .inner-about {
    width: 90% !important;
    position: relative !important;
  }

  .inner-chef {
    width: 90% !important;
    position: relative !important;
  }

  .inner-room {
    width: 90% !important;
    position: relative !important;
  }

  .inner-cuisine {
    width: 90% !important;
    position: relative !important;
  }

  .inner-access {
    width: 90% !important;
    position: relative !important;
  }
}

/* Box */
#post .box {
  background: rgba(0, 0, 0, 0.65);
  border-radius: 4px;
  min-height: 60vh;
}
#post .content {
  margin-top: 3.25em;
}
.box {
  margin-bottom: 2em;
  overflow: hidden;
  padding: 4em;
}

.box > :last-child,
.box > :last-child > :last-child,
.box > :last-child > :last-child > :last-child {
  margin-bottom: 0;
}

.box header h2 {
  margin: 0 0 0.5em 0;
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-normal);
  color: var(--white-color);
}

.box h3 {
  /* margin: 1.25em 0 0.5em 0; */
  margin: 0 0 0.5em 0;
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  color: var(--white-color);
}

.box h5 {
  margin: 0 0 0.5em 0;
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  color: var(--white-color);
}

.box h5 a {
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  color: var(--white-color);
}

.box p {
  font-size: var(--p-font-size-small);
  color: var(--white-color);
}

.box a {
  font-size: var(--p-font-size-small);
  color: var(--white-color);
}

.box.alt {
  border: 0;
  border-radius: 0;
  padding: 0;
}

@media screen and (max-width: 9910px) {
  .box {
    padding: 3em;
  }
}

@media screen and (max-width: 769px) {
  .box {
    padding: 2em;
  }
}

@media screen and (max-width: 577px) {
  .box {
    padding: 1em;
  }
}
button,
.button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -moz-transition:
    background-color 0.2s ease-in-out,
    color 0.2s ease-in-out;
  -webkit-transition:
    background-color 0.2s ease-in-out,
    color 0.2s ease-in-out;
  -ms-transition:
    background-color 0.2s ease-in-out,
    color 0.2s ease-in-out;
  transition:
    background-color 0.2s ease-in-out,
    color 0.2s ease-in-out;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  height: 2.85em;
  line-height: 2.95em;
  padding: 0 1.5em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
}
@media screen and (max-width: 577px) {
  .button {
    padding: 0;
  }
}

.button {
  background-color: #5a5a5a;
  color: #ffffff !important;
}

.button:hover {
  background-color: #676767;
}

.button:active {
  background-color: #4d4d4d;
}

.button.alt {
  background-color: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  color: var(--white-color) !important;
}

.button.alt:hover {
  background-color: rgba(144, 144, 144, 0.075);
}

.button.alt:active {
  background-color: rgba(144, 144, 144, 0.2);
}

.button.alt.icon:before {
  color: rgba(255, 255, 255, 0.5);
}

.more {
  -moz-transition: height 0.2s ease;
  -webkit-transition: height 0.2s ease;
  -ms-transition: height 0.2s ease;
  transition: height 0.2s ease;
  -moz-animation: more 0.75s ease-out 3s forwards;
  -webkit-animation: more 0.75s ease-out 3s forwards;
  -ms-animation: more 0.75s ease-out 3s forwards;
  animation: more 0.75s ease-out 3s forwards;
  background-color: rgba(255, 255, 255, 0.15);
  border: 0;
  border-radius: 1em 1em 0 0;
  bottom: -3em;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  height: 3em;
  left: 50%;
  margin-left: -1.5em;
  overflow: hidden;
  position: absolute;
  text-indent: 3em;
  white-space: nowrap;
  width: 3em;
  z-index: 2;
  border-radius: 100%;
  text-decoration: none;
}

.more:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-transform: none !important;
}

.more:hover {
  background: none;
  color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 1px 0 rgba(255, 255, 255, 0.5);
}

.more:hover:before {
  color: rgba(255, 255, 255, 0.5);
}

.more:before {
  content: "\f107";
  color: #fff;
  font-size: 2em;
  position: absolute;
  right: 0.425em;
  bottom: -0.075em;
}
@media screen and (max-width: 577px) {
  .more {
    display: none;
  }
}

/*  other  */
.logo {
  max-width: 150px;
}

.logo-w {
  max-width: 200px;
}

.spacer {
  margin-top: -4.7rem;
}

@media screen and (max-width: 577px) {
  .spacer {
    margin-top: -4.36rem;
  }
}

.spacer-r {
  margin-top: -2rem;
}

@media screen and (max-width: 577px) {
  .map {
    height: 250px !important;
  }
  .spacer-r {
    margin-top: -2.36rem;
  }
}

.map {
  margin-top: 3.85rem;
  width: 100%;
  height: 450px;
}

/* main */

#main {
  display: -ms-flexbox;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  padding: 8em 0 6em 0;
  -moz-align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  border-top: 0;
  min-height: 100vh;
  height: 100vh;
  position: relative;
  text-align: center;
  overflow: hidden;
}

#main .inner {
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -moz-transition:
    opacity 1s ease,
    -moz-transform 1s ease;
  -webkit-transition:
    opacity 1s ease,
    -webkit-transform 1s ease;
  -ms-transition:
    opacity 1s ease,
    -ms-transform 1s ease;
  transition:
    opacity 1s ease,
    transform 1s ease;
  opacity: 1;
  position: absolute;
  z-index: 1;
  bottom: 9%;
  right: 3%;
  /* transform: translate(-50%, -50%); */
  width: 35%;
  z-index: 2;
}

#mainText {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  text-align: center;
}

#main h2 {
  font-size: var(--h4-font-size);
  color: var(--white-color);
}

#main p {
  color: var(--white-color);
  font-size: var(--p-font-size-small);
}

#main:before {
  -moz-transition: opacity 3s ease;
  -webkit-transition: opacity 3s ease;
  -ms-transition: opacity 3s ease;
  transition: opacity 3s ease;
  -moz-transition-delay: 1.25s;
  -webkit-transition-delay: 1.25s;
  -ms-transition-delay: 1.25s;
  transition-delay: 1.25s;
  content: "";
  display: block;
  background-color: #000;
  height: 100%;
  left: 0;
  opacity: 0.15;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  #main {
    font-size: 0.85em;
  }

  #main br {
    display: none;
  }
}

@media screen and (max-width: 769px) {
  #main {
    background-attachment: scroll;
    min-height: 0;
    padding: 8em 2em 4em 2em;
  }

  #main h2 {
    font-size: 6em;
  }
}

@media screen and (max-width: 577px) {
  #main h2 {
    font-size: 1em;
  }
}

@media screen and (min-width: 992px) {
  .br-lg {
  }
  .br-md {
    display: none;
  }
  .br-sm {
    display: none;
  }
  .br-xs {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .br-lg {
    display: none;
  }
  .br-md {
  }
  .br-sm {
    display: none;
  }
  .br-xs {
    display: none;
  }
}

@media screen and (max-width: 769px) {
  .br-lg {
    display: none;
  }
  .br-md {
    display: none;
  }
  .br-sm {
  }
  .br-xs {
    display: none;
  }
}

@media screen and (max-width: 577px) {
  .br-lg {
    display: none;
  }
  .br-md {
    display: none;
  }
  .br-sm {
    display: none;
  }
  .br-xs {
  }
}

/*  フローティングバナー  */
.slide_anime_nav {
  position: fixed;
  z-index: 1010;
  top: 50%;
  transform: rotate(0) translateY(-50%);
}
.slide_anime_nav > div {
  background: var(--dark-color);
  transition: transform 0.3s ease 0s;
  transform: translateX(0px);
}
.slide_anime_nav > div:not(:last-of-type) {
  margin-bottom: 1px;
}
.slide_anime_nav > div:hover {
  background: var(--dark-color);
}
.slide_anime_nav a {
  font-family: var(--body-secondary-font-family);
  font-size: var(--custom-link-font-size);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: calc(25px - 95px);
  min-height: 35px;
  white-space: nowrap;
  text-decoration: none;
}
.slide_anime_nav a:hover {
  text-decoration: none;
}
.slide_anime_nav .fab {
  width: 25px;
  text-align: center;
}

.fixed_right {
  left: calc(100% - 25px);
}
.fixed_right > div:hover {
  transform: translateX(-95px);
}
.fixed_right a::after {
  display: block;
  content: attr(data-text);
  padding-right: 1rem;
  margin-left: 0.25rem;
}

/* ご予約BG */
.reserve {
  position: relative;
  z-index: 1;
  background-image: url("images/bg-reserve.jpg");
  background-size: cover;
  background-position: center;
}

.font-small {
  font-size: var(--custom-link-font-size);
}

/**/

#post {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#post .inner {
  margin: 0 auto;
}

#post .button.icon {
  padding: 0;
  width: 3em;
  height: 3em;
  line-height: 3em;
  border-radius: 100%;
  text-align: center;
}

#post .button.icon:before {
  margin-right: 0;
  color: #fff;
}

#post .button.icon.fa-chevron-left:before {
  margin-left: -3px;
}

#post .button.icon.fa-chevron-right:before {
  margin-left: 3px;
}

#post ul.actions li {
  width: 49.5%;
  margin: 0;
  padding: 0;
}

#post ul.actions li:first-child {
  text-align: left;
}

#post ul.actions li:last-child {
  text-align: right;
}

@media screen and (max-width: 736px) {
  #post {
    background-attachment: scroll;
    background-size: cover;
  }

  #post h2 {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 480px) {
  #post ul.actions li {
    display: inline-block;
    width: 49%;
    margin: 0;
    padding: 0;
  }
}
ul.actions {
  margin-top: 18%;
  cursor: default;
  list-style: none;
  padding-left: 0;
}

ul.actions li {
  display: inline-block;
  padding: 0 1em 0 0;
  vertical-align: middle;
}

ul.actions li:last-child {
  padding-right: 0;
}

ul.actions.small li {
  padding: 0 0.5em 0 0;
}

ul.actions.vertical li {
  display: block;
  padding: 1em 0 0 0;
}

ul.actions.vertical li:first-child {
  padding-top: 0;
}

ul.actions.vertical li > * {
  margin-bottom: 0;
}

ul.actions.vertical.small li {
  padding: 0.5em 0 0 0;
}

ul.actions.vertical.small li:first-child {
  padding-top: 0;
}

ul.actions.fit {
  display: table;
  margin-left: -1em;
  padding: 0;
  table-layout: fixed;
  width: calc(100% + 1em);
}

ul.actions.fit li {
  display: table-cell;
  padding: 0 0 0 1em;
}

ul.actions.fit li > * {
  margin-bottom: 0;
}

ul.actions.fit.small {
  margin-left: -0.5em;
  width: calc(100% + 0.5em);
}

ul.actions.fit.small li {
  padding: 0 0 0 0.5em;
}

@media screen and (max-width: 480px) {
  ul.actions {
    margin: 0 0 2em 0;
  }

  ul.actions li {
    padding: 1em 0 0 0;
    display: block;
    text-align: center;
    width: 100%;
  }

  ul.actions li:first-child {
    padding-top: 0;
  }

  ul.actions li > * {
    width: 100%;
    margin: 0 !important;
  }

  ul.actions li > *.icon:before {
    margin-left: -2em;
  }

  ul.actions.small li {
    padding: 0.5em 0 0 0;
  }

  ul.actions.small li:first-child {
    padding-top: 0;
  }
}
/* Icon */

.icon {
  text-decoration: none;
  border-bottom: none;
  position: relative;
}

.icon:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-transform: none !important;
}

.icon > .label {
  display: none;
}

/* メイン画像アニメーション */
.bg-img {
  position: relative;
  overflow: hidden;
}

.bg-img {
  position: relative;
  overflow: hidden;
}

.bg-zoom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  opacity: 0;
  transform: scale(1);
  transition:
    opacity 2s ease-in-out,
    transform 10s ease-in-out;
}

.bg-zoom.active {
  opacity: 1;
  transform: scale(1.1);
}

/*  ページネーション  */
.pagination {
  clear: both;
  padding: 20px 0;
  position: relative;
  font-size: 1.75rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center; /* 縦方向の中央揃え */
}

.pagination-box {
  display: flex; /* flexbox を使用 */
  justify-content: center; /* 横方向の中央揃え */
  align-items: center; /* 縦方向の中央揃え */
}

.pagination span,
.pagination a {
  display: flex; /* flexbox を使用 */
  align-items: center; /* 縦方向の中央揃え */
  justify-content: center; /* 横方向の中央揃え */
  margin: 2px 5px 2px 0;
  padding: 10px 15px;
  text-decoration: none;
  width: 50px;
  height: 50px;
  color: var(--white-color);
  background: var(--primary-color);
  border-radius: 100%;
  text-align: center; /* テキストを中央揃え */
}

.pagination span.page-of {
  background: none;
  color: var(--dark-color);
}

.pagination a:hover {
  color: var(--white-color);
  background: var(--p-color);
}

.pagination .current {
  padding: 10px 15px;
  color: var(--white-color);
  background: var(--dark-color);
}

@media only screen and (max-width: 480px) {
  .pagination {
    font-size: 12px;
    line-height: 12px;
  }

  .pagination span,
  .pagination a {
    padding: 7px 10px 7px 10px;
  }

  .pagination .current {
    padding: 7px 10px 7px 10px;
  }
}

.post h2 {
  position: relative;
  display: inline-block;
  padding: 0 55px;
}

.post h2:before {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: var(--white-color);
}

.post h2:before {
  left: 0;
}
.post h2:after {
  right: 0;
}
/* 
.post h2 {
  position: relative;
  padding: 0.25em 1em;
  border-top: solid 2px var(--white-color);
  border-bottom: solid 2px var(--white-color);
}
.post h2:before,
.post h2:after {
  content: "";
  position: absolute;
  top: -7px;
  width: 2px;
  height: -webkit-calc(100% + 14px);
  height: calc(100% + 14px);
  background-color: var(--white-color);
}
.post h2:before {
  left: 7px;
}
.post h2:after {
  right: 7px;
} */

.object-fit {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
}

.content-bg {
  border-radius: 5px;
  padding: 1.5em;
  background: rgba(0, 0, 0, 0.25);
}

.info-link {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none !important;
}
.white-popup {
  background: rgba(255, 255, 255, 1);
  padding: 30px;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.ml {
  margin-left: 1.2em;
}

@media screen and (max-width: 577px) {
  .white-popup {
    max-width: 300px;
  }
  .white-popup p {
    font-size: 0.75em !important;
  }
  .white-popup .small {
    font-size: 0.5em !important;
  }
  .ml {
    margin-left: 0;
    display: block;
  }
}

.white-popup img {
  width: 100%;
  margin-bottom: 2em;
  margin: 0 !important;
}

.white-popup p {
  margin: 0 !important;
  border-bottom: 1px dotted #ccc;
  font-size: 1em;
}

.white-popup p:last-of-type {
  border-bottom: none !important;
}

.white-popup .small {
  font-size: 0.7em;
}

/* mfp-close の右上固定を無効化 */
.custom-close-btn.mfp-close {
  position: static !important;
  float: none !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  bottom: auto !important;
  width: auto;
  height: auto;
  line-height: 1;
  opacity: 1;
}

/* ボタンデザイン（お好みで調整） */
/* 1) もし先に mfp-close を非表示にしていた場合、このルールで復活させる */
#lunch-detail .mfp-close.custom-close-btn,
.mfp-wrap #lunch-detail .mfp-close.custom-close-btn,
.white-popup .mfp-close.custom-close-btn {
  display: block !important; /* 必ず表示 */
  position: static !important; /* 右上固定を解除 */
  float: none !important;
  margin: 35px auto 0 !important; /* 中央下部に配置 */
  padding: 20px !important;
  width: auto !important;
  min-width: 0 !important;
  border-radius: 5px !important;
  border: 1px var(--dark-color) solid;
  background: var(--primary-color);
  color: var(--white-color) !important;
  cursor: pointer !important;
  text-align: center !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  box-sizing: border-box !important;
  /* z-index: 9999 !important; */
  width: 100% !important;
  font-size: 1em;
  font-weight: 100;
}

.text-right {
  text-align: right;
}

.open-popup-link {
  font-size: 0.9em !important;
  text-decoration: underline;
}

.open-popup-link:hover {
  color: var(--primary-color);
}

.border-bottom {
  border-bottom: 1px #fff solid;
}
