@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:500,700,900&amp;subset=japanese');

/*----------------------------------------------
	全体
------------------------------------------------*/
.contents {
    font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro" ,Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    color: #333;
}
.ui-static-breadcrumb {
    /* width: 100%; */
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow: auto;
    white-space: nowrap;
    padding: 10px 15px 10px 15px;
    width: 992px;
    margin: 0 auto;
}
.nopc {
    display: none;
}
.contents a:hover {
	opacity: 0.8;
	transition: all 0.6s ease;
}
.inner {
	width: 992px;
	margin: 0 auto;
}

/*----------------------------------------------
	メインビジュアル
------------------------------------------------*/
.ui-static-main-visual {
    position: relative;
    width: 100%;
    /* PCでのメインビジュアルの高さが必要であれば設定してください。例: height: 400px; */
    /* 背景画像はHTMLから削除したので、ここでは設定しません */
    overflow: hidden;
}
.main-visual-img-pc {
    display: block; /* PC用画像を表示 */
    width: 100%;
    height: auto;
    object-fit: cover;
}
.mainvisual_text{
         line-height: 1.7vw;
        margin-bottom: 1%;
        font-size: 1vw;
    }
.main-visual-img-sp {
    display: none; /* SP用画像はPCでは非表示 */
}
.mainvisual_title {
	position: absolute; /* .ui-static-main-visual を基準に配置 */
    transform: translate(-50%, -50%); /* 完全に中央揃え */
    max-width: 1104px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: left;
}
.mainvisual_title .ui-static-main-visual-text {
    /* メインビジュアル内のテキストのスタイル */
}
.mainvisual_title .ui-static-main-visual-button {
    /* メインビジュアル内のボタンのスタイル */
}

.mainvisual_title {
    margin: 0 auto;
	top: 74%;
	left: 39%;
	text-align: center;
}
/* style_pc.css または style_sp.css に追加 */

/* ナビゲーションバーが固定される際のスタイル */
#navi.fixed { /* id="navi" に fixed クラスが付いた時に適用 */
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000; /* 他の要素の上に表示されるようにする */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 任意: 影を追加して視覚的に分かりやすくする */
  background-color: #fff; /* 任意: 背景色を設定する */
  
}

/* 固定ナビゲーションバーの高さ分、コンテンツが隠れないようにするためのパディング */
/* このクラスはJavaScriptで動的に適用され、padding-topの値はJSで設定されます */
body.has-fixed-nav {
  /* ここに padding-top は記述せず、JSで計算されるようにします */
}
#advice{
    padding: 20px 0px 0px;
	}

#advice .inner {
    background-color: #fff;
}
/*#advice .advice_h3{
	margin: 16px 0;
}*/
/*----------------------------------------------
	画像カードセクション
------------------------------------------------*/
/*.image-cards-bg{
    background: #FFFCD5;
}*/
.slider-arrow {
    display: none;
}
.image-cards {
    display: flex; /* Flexboxを有効にしてカラムレイアウトを構築 */
    justify-content: space-around; /* アイテム間のスペースを均等にする */
    align-items: flex-start; /* アイテムを上揃えにする */
    flex-wrap: wrap; /* 画面幅が狭い場合に折り返す */
    max-width: 992px; /* 全体の最大幅を設定 */
    margin: 30px auto; /* 中央揃えと上下の余白 */
}

.image-card-item {
    flex: 0 1 calc(33.333% - 20px); /* 3カラム（左右のマージンを考慮） */
    margin: 10px; /* 各アイテムの外側の余白 */
    box-sizing: border-box; /* paddingとborderをwidthに含める */
    text-align: center; /* 画像、h4、ボタンを中央揃え */
}

.image-wrapper {
    position: relative; /* 子要素のabsolute配置の基準 */
    width: 100%;
    overflow: hidden; /* 画像がはみ出さないように */
}

.image-wrapper img {
    display: block;
    width: 100%; /* 画像を親要素の幅に合わせる */
    height: auto;
    object-fit: cover; /* 画像がコンテナに収まるように調整 */
    padding: 10px;
}

.overlay-content {
    position: absolute; /* 親要素（.image-wrapper）を基準に配置 */
    top: 3%;
    left: 50%; /* 左端から50%の位置 */
    transform: translateX(-50%); /* 中央揃え */
    width: calc(100% - 40px); /* 左右の余白を考慮した幅 */
    color: #fff; /* テキストの色 */
    z-index: 10; /* 画像より手前に表示 */
}

.overlay-content h4 {
    color: #333333; /* h4の文字色 */
    font-size: 17px; /* h4の文字サイズ */
    /*margin-bottom: 30px;  h4とボタンの間の余白 */
     margin: 17px;
    font-weight: bold; /* 太字 */
}
.overlay-content p {
        margin: 160px 17px 0;
}

.card-button {
    display: inline-block; /* ボタンをインラインブロック要素にする */
	font-size: 12px; 
    background-color: #fff; /* ボタンの背景色 */
    color: #333333; /* ボタンの文字色 */
    padding: 10px 20px; /* ボタンの内側の余白 */
    border-radius: 40px; /* 角を丸くする */
    text-decoration: none; /* 下線を消す */
    font-weight: bold; /* 太字 */
    transition: background-color 0.3s ease; /* ホバー時のアニメーション */
	 box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* X軸2px, Y軸2px, ぼかし5px, 黒色で透明度30%の影 */
	 /*text-shadow: 1px 1px 3px rgba(0,0,0,0.7);  テキストの影 */

    
}
/*----------------------------------------------
	couponセクション
------------------------------------------------*/
#coupon {
        background-color: #F0F7FF;
}
#coupon .inner {
  max-width: 1200px; /* 横幅を少し広げます */
 padding: 0px 0px 20px  0px;
}

.coupon-container {
  display: flex; /* Flexboxを有効にして横並びにする */
  flex-direction: column; /* 縦並びにする */
  align-items: stretch; /* 高さを揃える */
  gap: 30px; /* カード間の隙間 */
  padding-top: 30px;
}

.coupon-item {
  flex: 1; /* 幅を均等に分ける */
  padding: 25px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column; /* 中の要素を縦に並べる */
}
#coupon .ui-static-accordion-content-inner {
    padding: 16px 100px;
}


/*----------------------------------------------
	特典セクション
------------------------------------------------*/

#tokuten {
 background: #F0F7FF;
 padding: 30px 0;
}
.small_subtitle{
    font-size: 60%;
}
.tokuten-img-pc {
     display: block; /* ★この行を追加★ - imgをブロックレベル要素にする */
    width: 90%;
    height: auto;
    object-fit: cover;
    margin: 0 auto; 
}
.tokuten-img-sp {
    display: none; /* SP用画像はPCでは非表示 */
}
#tokuten h2{
	margin-bottom: 20px;
}
.ui-static-accordion{
    background-color: #FFF;
}
.ui-static-accordion-trigger {
    background: #ddd !important;
}

.ui-static-accordion-trigger:hover {
    background: #ddd !important;
}
/* 特典セクションのレイアウト */
#tokuten .inner {
  max-width: 1200px; /* 横幅を少し広げます */
}

.tokuten-container {
  display: flex; /* Flexboxを有効にして横並びにする */
  flex-direction: column; /* 縦並びにする */
  align-items: stretch; /* 高さを揃える */
  gap: 30px; /* カード間の隙間 */
  margin-top: 30px;
}

.tokuten-item {
  flex: 1; /* 幅を均等に分ける */
  padding: 25px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column; /* 中の要素を縦に並べる */
}

.tokuten-item h3 {
  flex-grow: 1; /* 高さを揃えるために伸びるようにする */
}

.tokuten-ninzu {
  font-size: 1.1em;
  font-weight: bold;
  color: #c00;
  text-align: center;
  margin: 15px 0;
}

.tokuten-item .ui-static-accordion {
  margin-top: auto; /* アコーディオンを一番下に配置 */
}
/*----------------------------------------------
	infoセクション
------------------------------------------------*/
#info h2{
	margin: 30px 0; 
}
.info-list { /* ul/li で店舗情報をリスト化するためのスタイル */
    list-style: none; /* リストのマーカーを非表示 */
    padding: 0; /* デフォルトのパディングをリセット */
    margin: 0; /* デフォルトのマージンをリセット */
    display: grid; /* グリッドレイアウトを適用 */
	grid-template-columns: repeat(2, 1fr); /* 2つの列を均等な幅で作成 */
	gap: 20px; /* 店舗情報間の隙間 */
}
.info-list_2{
list-style: none; /* リストのマーカーを非表示 */
    padding: 0; /* デフォルトのパディングをリセット */
    margin: 0; /* デフォルトのマージンをリセット */
    /*display: grid;  グリッドレイアウトを適用 */
	grid-template-columns: repeat(2, 1fr); /* 2つの列を均等な幅で作成 */
	gap: 20px; /* 店舗情報間の隙間 */

}

.info-item { /* li のスタイル */
    background-color: var(--ui-static-gray-20);
    padding: 20px;
    box-sizing: border-box;
    border-radius: 8px; /* 角を丸める */
    display: flex;
    flex-direction: column;
    gap: 10px; /* info-item 内の要素間の隙間 */
}
/* リスト項目 (info-item) のパディングを増やして、クリック可能な領域を広げる */
.info-list .info-item {
    padding: 20px; /* 必要に応じて調整 */
    margin-bottom: 15px; /* 各項目の間に少しスペースを追加 */
    border: 1px solid #ddd; /* 視覚的に区切りをわかりやすくするため */
    border-radius: 8px; /* 角を丸める */
}

/* 店舗名リンクのスタイル */
.info-item h4 a {
    display: block; /* リンク全体をクリック可能にする */
    color: inherit; /* 親要素の色を継承 */
    text-decoration: none; /* 下線をなくす */
    /*padding-bottom: 10px;  店舗名の下にスペースを追加 */
}

/* ホバー時のスタイル */
.info-item h4 a:hover {
    text-decoration: underline; /* ホバー時に下線を表示 */
    color: #007bff; /* ホバー時に色を変える (例) */
}
/* タブボタンリストを中央に配置 */
.ui-static-tab {
    display: flex; /* flexboxを有効にする */
    justify-content: center; /* 子要素（ui-static-tab-button-list）を中央に配置 */
    /* is-scrollable クラスがあるため、必要に応じて以下の調整も考慮 */
    /* overflow-x: auto; /* スクロールが必要な場合に備える */
}
#info h3 {
    margin-bottom: 24px; /* 店舗名の下に少し余白 */
}
.info-item h4 {
    margin-bottom: 5px; /* 店舗名の下に少し余白 */
}
.ui-static-tag-overseas{
        border-radius: 8px;
        border: 1px solid #0063b0;
        padding: 2.5%;
                line-height: 1.4rem;
        }
 /*   border-radius: 8px;
    padding: 2.5%;
    background-color: #fff;
}
.ui-static-message.ui-static-message-variant-warning .ui-static-message-text {
    color: #cf3700;
        font-weight: 800;
}
*/

/* 電話番号リンクのスタイルを調整 */
.tel-link {
    color: inherit; /* 親要素（pタグ）の文字色を継承 */
    text-decoration: none; /* 下線をなくす */
    pointer-events: none; /* 電話番号リンクをクリックしても何も起きない */
}

/* ホバー時やタップ時のスタイル変化が必要であれば追加 */
.tel-link:hover {
    opacity: 0.8; /* ホバー時に少し透明にする */
}
.ui-static-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px; /* タグリストの下に余白 */
}

.info-item .info-detail { /* 住所、営業時間、電話番号をまとめる */
    display: flex;
    flex-direction: column;
    gap: 5px; /* 各詳細情報間の隙間 */
    margin-bottom: 10px;  詳細情報の下に余白 */
}

.info-item .button-group {
    display: flex;
    flex-wrap: wrap; /* ボタンが多すぎる場合に折り返す */
    gap: 10px; /* ボタン間の隙間 */
    /*margin-top: auto; /* ボタンをinfo-itemの最下部に配置 */
}

.info-item .ui-static-button {
    flex-grow: 1; /* ボタンが横に伸びるようにする */
    min-width: 120px; /* ボタンの最小幅を設定 */
}

/* ボタンの色の定義 */
.ui-static-button.primary-color {
    background-color: #DF0D00; /* HISデザインシステムの青色 */
    color: var(--ui-static-white);
}

.ui-static-button.secondary-color {
    background-color: #F29423; /* HISデザインシステムの灰色 */
    color: var(--ui-static-white);
}

.ui-static-button.danger-color {
    background-color: #10069F; /* HISデザインシステムの赤色 */
    color: var(--ui-static-white);
}
#info .ui-static-tab-type-rounded .ui-static-tab-button{
 font-size: 1.1vw;
   padding: 11px 58px;
}
/*----------------------------------------------
	Q&Aセクション
------------------------------------------------*/
#question{
    background: #F0F7FF;
}
#question .inner{
    padding: 60px 0;
}
#question h2{
	margin-bottom: 24px;
}
.ui-static-faq-answer {
    background: #fff;
}
/*----------------------------------------------
	電話セクション
------------------------------------------------*/

#tel {
	 max-width: 992px; /* 親要素の最大幅を設定 */
    margin: 60px auto; 
}
#tel h2{
	margin-bottom: 24px;
}
/*----------------------------------------------
	テレビ電話セクション
------------------------------------------------*/

#tv-tel {
	 max-width: 992px; /* 親要素の最大幅を設定 */
    margin: 60px auto; 
}
#tv-tel h2{
	margin-bottom: 24px;
}

/*----------------------------------------------
	bannerセクション
------------------------------------------------*/
#banner{
    padding: 30px 0;
}
.ui-static-banner{
 border-radius: 0px;
}

.ui-static-banner-size-350x350{
    max-width: 176px;
}
/* style_pc.css または style_sp.css に追加 */
.quick-booking-text-wrapper {
    text-align: center;
    margin-bottom: 10px; /* ボタンとの間に少しスペースを空ける */
}

.quick-booking-text-wrapper p {
    color: white; /* 白い文字にする */
    font-size: 1.1em; /* 少し大きめのフォントサイズ */
    /* その他、必要に応じてスタイルを追加 */
}

