@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

#fv {
  height: 100vh;
  min-height: 600px;
}

.p-spMenu__body .button-drawer-style {
    margin-right: unset !important;
    list-style: none;
    display: flex;
    align-items: center;
    background-color: #ff6347;
    border-radius: 5px;
    text-align: center;
    /* margin: 0 20px; */
    margin: 0;
}

.p-spMenu__body .button-drawer-style a {
  width: 100%;
  gap: 5px;
  justify-content: center;
  flex-direction: unset !important;
}

.bogo-language-switcher-select {
  margin-left: 0 !important;
}

/* 予約ポップアップ */
.reservation-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex; /* 中央寄せのため */
  align-items: center; /* 中央寄せのため */
  justify-content: center; /* 中央寄せのため */
  z-index: 1000; /* 他の要素より手前に表示 */
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.reservation-popup.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none; /* 非表示時はクリックできないように */
}

.reservation-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* 半透明の黒背景 */
  cursor: pointer;
}

.reservation-popup__content {
  position: relative; /* 子要素の絶対配置の基準点にする */
  background-color: #fff;
  padding: 30px; /* パディングを調整 */
  border-radius: 8px;
  max-width: 500px; /* ポップアップの最大幅 */
  width: 90%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1001;
}

.reservation-popup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.reservation-popup__content h2 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.5em;
}

.reservation-popup__body {
  margin-bottom: 20px;
  max-height: 60vh; /* 内容が多い場合にスクロール */
  overflow-y: auto;
  white-space: pre-wrap; /* \n を改行として表示 */
  word-wrap: break-word; /* 長い文字列の折り返し */
}

.reservation-popup__body p {
    margin-bottom: 1em;
    line-height: 1.6;
}
.reservation-popup__body p:last-child {
    margin-bottom: 0;
}

.reservation-popup__footer {
  text-align: center; /* フッター内の要素を中央揃えにする場合 */
  margin-top: 20px;
  display: flex; /* ボタンを横並びにする場合 */
  justify-content: flex-end; /* 右寄せ */
  align-items: center;
}

.reservation-popup__button {
  display: inline-block; /* 中央揃えのため */
  padding: 10px 20px;
  background-color: #04384c; /* ボタンの色 */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  margin-right: 10px; /* 閉じるボタンとの間隔 */
  margin-top: 10px; /* 必要に応じて調整 */
  border: 1px solid #04384c;
}

.reservation-popup__button:hover {
  background-color: #fff;
  color: #04384c;
}

.reservation-popup__close {
  position: absolute; /* 絶対配置に変更 */
  top: 10px; /* 上からの位置 */
  right: 15px; /* 右からの位置 */
  background: none;
  border: none;
  font-size: 28px; /* 少し大きく */
  line-height: 1;
  cursor: pointer;
  padding: 0; /* パディングを削除 */
  color: #888;
}
.reservation-popup__close:hover {
    color: #333;
}

/* ポップアップ非表示時のスタイル */
.reservation-popup.is-hidden {
  display: none;
}

.u-color-white {
  color: #fff !important;
}

.u-entext-none small {
	display: none !important;
}