/* style_sp.css */

@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:500,700,900&amp;subset=japanese');

/*----------------------------------------------
	全体 (SP向け)
------------------------------------------------*/
.contents {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    color: #333;
    font-size: 14px;
    line-height: 1.6em;
}

.nopc {
    display: none;
}

.nosp {
    display: block;
}

.inner {
    /*width: calc(100% - 30px);*/
    margin: 0 auto;
}

.breadcrumb {
    width: 100%;
}

/*----------------------------------------------
	メインビジュアル (SP向け)
------------------------------------------------*/
.ui-static-main-visual {
    position: relative;
    /* 子要素 .mainvisual_title のabsolute基準 */
    width: 100%;
    overflow: hidden;
}

.main-visual-img-pc {
    display: none;
}

.main-visual-img-sp {
    display: block;
    width: 100%;
    height: auto;
    /* 画像の比率を保つ */
    object-fit: cover;
    /* コンテナに合わせて画像をトリミング */
}

.mainvisual_title {
    position: absolute;
    /* .ui-static-main-visual を基準に配置 */
    top: 83%;
    /* SPでは上めの位置に調整 */
    left: 50%;
    transform: translate(-50%, -50%);
    /* 中央揃え */
    width: 100%;
    /* 幅を親要素に合わせる */
    max-width: calc(100% - 30px);
    /* 左右の余白を考慮 */
    padding: 0 15px;
    box-sizing: border-box;
    text-align: center;
    z-index: 20;
    /* テキストが画像の上に確実に来るように */
}

.mainvisual_text {
    margin-bottom: 4%;
    font-size: 4vw;
    line-height: 7vw;
}

#navi {
    width: 100%;
    max-width: none;
    /* PCで設定されたmax-widthをリセット */
    margin: 0 auto;
    box-sizing: border-box;
    /* パディングを幅に含める */

}

.ui-static-navigation-ul {
    flex-direction: row;
    justify-content: center;
}

/* ----------------------------------------------
 * 追従ナビゲーションのスタイル (修正・追加)
 * ---------------------------------------------- */

/* id="navi" に fixed クラスが付いた時に適用されるスタイル */
#navi.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: ##f5f7fa;
}

.ui-static-navigation-variant-anchor {
    background: ##f5f7fa;
    padding: 10px 0;
}

.ui-static-navigation-variant-anchor .ui-static-navigation-item:not(:last-of-type):after {
    width: 1px;
    height: 16px;
    right: 1px;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #c0c5cc;
    bottom: unset;
    border-bottom: none;

}

.ui-static-navigation-size-default .ui-static-navigation-ul .ui-static-navigation-item:not(:last-of-type) {
    padding-right: 17px;
}

/* ナビゲーションリスト (ui-static-navigation-ul) の中央寄せと下線削除 */
#navi.fixed .ui-static-navigation-ul {
    display: flex;
    /* Flexboxを有効にする */
    justify-content: center;
    /* 子要素（li）を水平方向の中央に配置 */
    list-style: none;
    /* リストマーカー（下線ではないが念のため） */
    padding: 0;
    /* デフォルトのパディングをリセット */
    margin: 0;
    /* デフォルトのマージンをリセット */
}

/* ナビゲーションアイテム内のリンク (ui-static-link) の下線削除とアクティブ時の色変更を無効化 */
#navi.fixed .ui-static-navigation-item a.ui-static-link {
    text-decoration: none;
    /* 下線をなくす */
    color: inherit;
    /* 親要素（通常は黒色）の色を継承し、青くならないようにする */
}

/* リンクのアクティブ状態（クリック時）のスタイルをリセット */
#navi.fixed .ui-static-navigation-item a.ui-static-link:active,
#navi.fixed .ui-static-navigation-item a.ui-static-link:focus {
    color: inherit;
    /* アクティブ時も通常の色を継承 */
    background-color: transparent;
    /* 背景色も透明のままにする */
    outline: none;
    /* フォーカス時のアウトラインを消す (アクセシビリティに注意) */
    text-decoration: none;
    /* 下線をなくす */
}

/* ホバー時のスタイルも必要であれば追加（現状のui-static-linkは黒なので不要かもしれませんが、明示的に） */
#navi.fixed .ui-static-navigation-item a.ui-static-link:hover {
    color: inherit;
    /* ホバー時も通常の色を継承 */
    text-decoration: none;
    /* ホバー時も下線をなくす */
    opacity: 0.8;
    /* 例: ホバー時に少し透明にする */
}

/* ナビゲーションテキストのスタイル (必要であれば) */
#navi.fixed .ui-static-navigation-text {
    /* text-shadow: none; /* テキストの影をなくす（もしあれば） */
    /* color: #333; /* 明示的に色を指定する場合 */
}
/*----------------------------------------------
	couponセクション (SP向け)
------------------------------------------------*/

#coupon {
    width: 100%;
    background-color: #F0F7FF;
    padding: 35px 20px;
    max-width: none;
    /* PCで設定されたmax-widthをリセット */
    margin: 0 auto;
    box-sizing: border-box;
    /* パディングを幅に含める */
}

#coupon h2 {
    margin-bottom: 24px;
    font-size: 20px;

}
.coupon-container {
    display: flex;
    flex-direction: column;
    /* 縦並びにする */
    gap: 20px;
    /* カード間の隙間 */
    margin-top: 20px;
}

.coupon-item {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.coupon-ninzu {
    font-size: 1.1em;
    font-weight: bold;
    color: #c00;
    text-align: center;
    margin: 10px 0;
}
#coupon .ui-static-heading-subtitle{
    padding: 0px 16px;

}
/*----------------------------------------------
	#advice セクション (SP向け)
------------------------------------------------*/
#advice {
    width: 100%;
    padding: 20px 35px;
    max-width: none;
    /* PCで設定されたmax-widthをリセット */
    margin: 0 auto;
    box-sizing: border-box;
    /* パディングを幅に含める */
}

#advice h2 {

    font-size: 20px;
}

.advice_h3 {
    margin: 10px 0;
    font-size: 18px;
}

/*----------------------------------------------
    画像カードセクション (SP向け) - スライド対応
------------------------------------------------*/
.image-cards {
    display: flex;
    /* flex-direction: column; を row に変更 */
    flex-direction: row;
    /* 横スクロールを有効にする */
    overflow-x: auto;
    /* スクロール時にカードでスナップするように設定 */
    scroll-snap-type: x mandatory;
    /* iOSでの慣性スクロールをスムーズにする */
    -webkit-overflow-scrolling: touch;
    margin: 30px auto 0;
    /* コンテナの左右にpaddingを持たせることで、先頭と末尾のカードも中央に寄せやすくする */
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    /* カード間の隙間を追加 */
    gap: 15px;
}

/* スクロールバーを非表示にする (デザイン上の調整) */
.image-cards::-webkit-scrollbar {
    display: none;
}

.image-card-item {
    /* flexプロパティで幅を定義し、縮まないように設定 */
    flex: 0 0 90%;
    /* コンテナの90%の幅を持つように設定 */
    /* スクロールした際に、各カードが中央に来るようにスナップ位置を調整 */
    scroll-snap-align: center;
    width: 90%;
    /* flex非対応ブラウザ用のフォールバック */
    max-width: none;
    /* 既存のmax-widthをリセット */
    margin: 0;
    /* gapで管理するためマージンはリセット */
    box-sizing: border-box;
}

.image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.overlay-content {
    position: absolute;
    top: 4%;
    left: 0;
    width: 100%;
    padding: 4% 4%;
    box-sizing: border-box;
    color: #333333;
    z-index: 10;
    text-align: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.overlay-content h4 {
    /* vw単位だとスライド時に文字サイズが変わってしまうため、固定値かem/remが推奨されます */
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 20px 0;
    word-wrap: break-word;
    white-space: normal;
    color: #333333;
    line-height: 1.3;
}

.overlay-content p {
    margin: 55% 0 0;
    /* h4と同様に、vw単位から固定値などに変更することを推奨 */
    font-size: 14px;
    line-height: 1.6;
}

.card-button {
    display: inline-block;
    padding: 8px 15px;
    font-size: 13px;
    background-color: #fff;
    color: #333333;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    margin-top: 5px;
}
/*----------------------------------------------
    スライダーの矢印 (SP向け追加)
------------------------------------------------*/
.slider-container {
    position: relative; /* 矢印を絶対配置するための基準 */
}

.slider-arrow {
    position: absolute;
    top: 50%; /* 上下の位置を調整 */
    transform: translateY(-50%);
    z-index: 30; /* カードより手前に表示 */
    
    /* ボタンのスタイル */
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background-color 0.3s;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 1);
}

.slider-arrow.prev {
    left: 5px; /* 左からの位置 */
}

.slider-arrow.next {
    right: 5px; /* 右からの位置 */
}

.slider-arrow .material-symbols-rounded {
    font-size: 20px; /* アイコンのサイズ */
    color: #333;
}
/*----------------------------------------------
	特典セクション (SP向け)
------------------------------------------------*/

#tokuten {
    width: 100%;
    background: #F0F7FF;
    padding: 20px 35px;
    max-width: none;
    /* PCで設定されたmax-widthをリセット */
    margin: 0 auto;
    box-sizing: border-box;
    /* パディングを幅に含める */
}

#tokuten h2 {
    margin-bottom: 24px;
    font-size: 20px;

}

#tokuten .tokuten-img-pc {
    display: none;
}

#tokuten .tokuten-img-sp {
    display: block;
    width: 100%;
    height: auto;
    /* 画像の比率を保つ */
    object-fit: cover;
    /* コンテナに合わせて画像をトリミング */
}

.ui-static-accordion {
    background-color: #FFF;

}

.ui-static-accordion-trigger {
    background: #ddd !important;
}

.ui-static-accordion-trigger:hover {
    background: #ddd !important;
}

/* 特典セクションのレイアウト（SP） */
.tokuten-container {
    display: flex;
    flex-direction: column;
    /* 縦並びにする */
    gap: 20px;
    /* カード間の隙間 */
    margin-top: 20px;
}

.tokuten-item {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.tokuten-ninzu {
    font-size: 1.1em;
    font-weight: bold;
    color: #c00;
    text-align: center;
    margin: 10px 0;
}

/*----------------------------------------------
	infoセクション (SP向け)
------------------------------------------------*/
#info {
    width: 100%;
    padding: 20px 35px;
    max-width: none;
    /* PCで設定されたmax-widthをリセット */
    margin: 0 auto;
    box-sizing: border-box;
    /* パディングを幅に含める */
}

#info h2 {
    margin-bottom: 24px;
    font-size: 20px;

}

/* infoセクションの調整 */
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    /* SPでは縦に並べる */
    flex-direction: column;
    gap: 15px;
    /* 店舗情報間の隙間 */

}

.info-list_2 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    /* SPでは縦に並べる */
    flex-direction: column;
    gap: 15px;
    /* 店舗情報間の隙間 */

}

.ui-static-tag-overseas {
    border-radius: 5px;
    border: 1px solid #0063b0;
    padding: 3.5%;
    line-height: 1.4rem;
}


#info .info-item {
    background-color: var(--ui-static-gray-20);
    padding: 15px;
    /* SP用にパディングを調整 */
    box-sizing: border-box;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* info-item 内の要素間の隙間 */
}

#info h3 {
    margin-bottom: 10px;
    font-size: 28px;
}

.info-item h4 {
    margin-bottom: 5px;
}

/* 電話番号リンクのスタイルを調整 */
.tel-link {
    color: inherit;
    /* 親要素（pタグ）の文字色を継承 */
    text-decoration: none;
    /* 下線をなくす */
}

/* ホバー時やタップ時のスタイル変化が必要であれば追加 */
.tel-link:hover {
    opacity: 0.8;
    /* ホバー時に少し透明にする */
}

.ui-static-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
}

.info-item .info-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

/* リスト項目 (info-item) のパディングを増やして、タップ可能な領域を広げる */
.info-list .info-item {
    padding: 15px;
    /* 上下左右に15pxのパディングを追加 */
    margin-bottom: 10px;
    /* 各項目の間に10pxの下マージンを追加し、区切りを明確にする */
    border: 1px solid #ddd;
    /* 視覚的に各項目を区切るための薄いボーダー */
    border-radius: 8px;
    /* 角を少し丸める */
}

/* 店舗名リンクのスタイル */
.info-item h4 a {
    display: block;
    /* リンクの領域をブロック要素にし、h4全体をタップ可能にする */
    color: inherit;
    /* 親要素（h4）の色を継承する */
    text-decoration: none;
    /* デフォルトの下線をなくす */
    padding-bottom: 8px;
    /* 店舗名の下にスペースを追加 */
}

/* ホバー時のスタイル（モバイルでは通常適用されませんが、タッチデバイスでも視覚的なフィードバックが必要な場合に備えて含めます） */
.info-item h4 a:hover {
    text-decoration: underline;
    /* ホバー（またはタップ）時に下線を表示 */
    color: #007bff;
    /* ホバー（またはタップ）時にリンクの色を変更（例として青色） */
}

.info-item .button-group {
    display: flex;
    flex-direction: column;
    /* SPではボタンを縦並びにする */
    gap: 8px;
    margin-top: auto;
}

.info-item .ui-static-button {
    width: 100%;
    /* SPではボタンを幅いっぱいに広げる */
}

/* タブボタンリストを中央に配置 */
.ui-static-tab {
    display: flex;
    /* flexboxを有効にする */
    justify-content: center;
    /* 子要素（ui-static-tab-button-list）を中央に配置 */
    /* is-scrollable クラスがあるため、必要に応じて以下の調整も考慮 */
    /* overflow-x: auto; /* スクロールが必要な場合に備える */
}

/* ボタンの色の定義はPCと共通 */
.ui-static-button.primary-color {
    background-color: #DF0D00;
    color: var(--ui-static-white);
}

.ui-static-button.secondary-color {
    background-color: #F29423;
    color: var(--ui-static-white);
}

.ui-static-button.danger-color {
    background-color: #10069F;
    color: var(--ui-static-white);
}

#info .ui-static-tab-type-rounded .ui-static-tab-button {
    font-size: 4.0vw;
}

/*----------------------------------------------
	Q&A セクション (SP向け)
------------------------------------------------*/
#question {
    background: #F0F7FF;
}

#question .inner {
    width: 100%;
    padding: 20px 35px;
    max-width: none;
    /* PCで設定されたmax-widthをリセット */
    box-sizing: border-box;
    /* パディングを幅に含める */
}

#question h2 {
    margin-bottom: 20px;


}

.ui-static-faq-answer {
    background: #fff;
}

/*----------------------------------------------
	telセクション (SP向け)
------------------------------------------------*/
#tel {
    width: 100%;
    padding: 20px 35px;
    max-width: none;
    /* PCで設定されたmax-widthをリセット */
    margin: 0 auto;
    box-sizing: border-box;
    /* パディングを幅に含める */
}

#tel h2 {
    margin-bottom: 24px;
    font-size: 20px;

}

#tel .info-item {
    background-color: var(--ui-static-gray-20);
    padding: 15px;
    /* SP用にパディングを調整 */
    box-sizing: border-box;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* info-item 内の要素間の隙間 */
}

#tel {
    width: 100%;
    padding: 20px 35px;
    max-width: none;
    /* PCで設定されたmax-widthをリセット */
    margin: 0 auto;
    box-sizing: border-box;
    /* パディングを幅に含める */
}

/*----------------------------------------------
	tv-telセクション (SP向け)
------------------------------------------------*/
#tv-tel {
    width: 100%;
    padding: 20px 35px;
    max-width: none;
    /* PCで設定されたmax-widthをリセット */
    margin: 0 auto;
    box-sizing: border-box;
    /* パディングを幅に含める */
}

#tv-tel h2 {
    margin-bottom: 24px;
    font-size: 20px;

}

#tv-tel .info-item {
    background-color: var(--ui-static-gray-20);
    padding: 15px;
    /* SP用にパディングを調整 */
    box-sizing: border-box;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* info-item 内の要素間の隙間 */
}

#tv-tel {
    width: 100%;
    padding: 20px 35px;
    max-width: none;
    /* PCで設定されたmax-widthをリセット */
    margin: 0 auto;
    box-sizing: border-box;
    /* パディングを幅に含める */
}

/*----------------------------------------------
	bannerセクション
------------------------------------------------*/
#banner {
    padding: 30px 0px;
}

.ui-static-banner {
    border-radius: 0px;
}

.ui-static-banner-size-350x350 {
    max-width: 40%;
}

/* 既存のSP向けスタイルは省略 */

/*----------------------------------------------
    iPad 向け調整 (min-width: 768px)
------------------------------------------------*/
@media only screen and (min-width: 768px) {


    .mainvisual_text {
        font-size: 3.5vw;
        line-height: 6vw;
        margin-bottom: 4%;
    }

    /* ナビゲーションの調整 */
    #navi {
        max-width: none;
        /* 幅の制限をなくす */
        /* PCとSPの中間的なスタイルを適用 */
    }

    #navi.fixed {
        /* SP向けと同じで問題ない場合が多い */
    }

    /* 特典セクションの調整 */
    #coupon {
        padding: 30px 40px;
        background-color: #F0F7FF;
    }

    #coupon h2 {
        font-size: 24px;
    }

    #coupon .coupon-img-pc {
        display: block;
        /* iPadではPC画像を優先 */
    }

    #coupon .coupon-img-sp {
        display: none;
        /* iPadではSP画像を非表示 */
    }

    /* #advice セクションの調整 */
    #advice {
        padding: 30px 40px;
        /* SPより少し広めに */
    }

    #advice h2 {
        font-size: 24px;
        /* iPad向けのフォントサイズ調整 */
    }

    .advice_h3 {
        font-size: 20px;
        /* iPad向けのフォントサイズ調整 */
    }
.slider-arrow {
    display: none;
}
    /* 画像カードセクションの調整 */
    .image-cards {
        flex-direction: row;
        /* 横並びにする */
        flex-wrap: wrap;
        /* 折り返しを許可 */
        justify-content: center;
        /* カードを中央寄せ */
        gap: 20px;
        /* カード間の隙間 */
        padding: 0 20px;
    }

    .image-card-item {
        flex: 0 1 calc(50% - 20px);
        /* 2列表示にする場合 (20pxはgapの半分) */
        /* または flex: 0 1 300px; など固定幅とすることで3列や4列にも */
        max-width: 350px;
        /* 各カードの最大幅 */
        margin: 0;
        /* flexboxでgapを使用するため、マージンをリセット */
    }

    .overlay-content h4 {
        font-size: 2.5vw;
        /* iPad向けのフォントサイズ調整 */
        line-height: 1.4;
    }

    .overlay-content p {
        margin: 60% 0 0;
        /* iPad向けのテキスト位置調整 */
        font-size: 1.8vw;
        /* iPad向けのフォントサイズ調整 */
        line-height: 1.5;
    }

    .card-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* 特典セクションの調整 */
    #tokuten {
        padding: 30px 40px;
    }

    #tokuten h2 {
        font-size: 24px;
    }

    #tokuten .tokuten-img-pc {
        display: block;
        /* iPadではPC画像を優先 */
    }

    #tokuten .tokuten-img-sp {
        display: none;
        /* iPadではSP画像を非表示 */
    }

    /* infoセクションの調整 */
    #info {
        padding: 30px 40px;
    }

    #info h2 {
        font-size: 24px;
    }

    .info-list {
        flex-direction: row;
        /* 横並びにする */
        flex-wrap: wrap;
        /* 折り返しを許可 */
        /*justify-content: center;  カードを中央寄せ */
        gap: 20px;
        /* 店舗情報間の隙間 */
    }

    #info .info-item {
        flex: 0 1 calc(50% - 20px);
        /* 2列表示にする例 */
        max-width: 450px;
        /* 各店舗情報の最大幅 */
    }

    #info h3 {
        font-size: 32px;
    }

    #info .ui-static-tab-type-rounded .ui-static-tab-button {
        font-size: 16px;
        /* ボタンのフォントサイズを固定 */
    }

    /* Q&A セクションの調整 */
    #question .inner {
        padding: 30px 40px;
    }

    #question h2 {
        font-size: 24px;
    }

    /* tv-tellの調整 */
    #tel .info-list {
        flex-direction: column;
        /* 横並びにする */

    }

    #tv-tel .info-list {
        flex-direction: column;
        /* 横並びにする */

    }

    /*----------------------------------------------
	bannerセクション
------------------------------------------------*/
    #banner {
        padding: 30px 0;
    }

    .ui-static-banner {
        border-radius: 0px;
    }

    .ui-static-banner-size-350x350 {
        max-width: 176px;
    }

}