/* 
Theme Name: Arkhe Child
Template: arkhe
Description: Arkheの子テーマです。
Version: 3.12.0
*/
/* =========================================
    共通
========================================= */
/* 1. HTMLとBODYの制約を完全にリセット */

body {
    font-family: 'Hiragino Kaku Gothic Pro', 'Meiryo', 'MS PGothic', 'sans-serif';
    overflow-x: hidden;
    margin: 0;
}

.flex {
    display: flex;
    align-items: center;
}

/* PCのみ表示 */
@media (min-width: 769px) {
    .pc {
        display: block;
    }

    .sp {
        display: none;
    }
}

/* SPのみ表示 */
@media (max-width: 768px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/* 改行 */
span.word {
    display: inline-block;
}

/* body余白 */
.l-content__body {
    margin: 0 auto;
}

/* ボタン */
.btn-wrap {
    text-align: center;
}

.z-top-button,
.z-button {
    font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
    background-color: #C5A059;
    color: #fff;
    border: 2px solid #C5A059;
    box-shadow: inset 0 0 0 2px #fff;
    padding: 12px 24px;
    font-weight: 700;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.z-top-button {
    min-width: 300px;
}

.z-top-button:hover,
.z-button:hover {
    background-color: #fff;
    color: #333;
    box-shadow: inset 0 0 0 2px #C5A059;
}
/* スペーサー */
.spacer5-10 {
    margin-top: 5%;
}

@media screen and (max-width: 480px) {
    .spacer5-10 {
        margin-top: 10%;
    }
}

/* =========================================
    ヘッダー
========================================= */
/* 管理画面での隙間削除 */
.l-header {
    top: 0 !important;
}

/* --- 共通の基本設定 --- */
.l-header__body {
    padding-top: 10px;
    padding-left: 3vw;
    padding-right: 3vw;
}

/* 途中ロゴがなくなるので調整 */
/* @media screen and (max-width: 1080px){
	html.is-scrolled .l-header__body {
padding-left: 10px;
    padding-right: 0;
}
} */
/* 共通：変化を滑らかにする */
.c-gnav__a,
.c-headLogo__img {
    transition: all 0.3s ease;
}

/* 共通：色の設定 */
.c-gnav__li.-current,
.c-gnav__li.focus,
.c-gnav__li:hover {
    color: #e60012;
}

@media (min-width: 1000px) {

    /* ==========================================
     * 1. TOPページ かつ スクロール前（縦書き時）
     * ========================================== */
    
    /* ナビゲーション全体のコンテナ 
       反映先では <nav class="c-gnavWrap"> なので、
       body.home の直下の .c-gnavWrap を指定します
    */
    html:not(.is-scrolled) body.home .c-gnavWrap {
        position: absolute;
        top: 0;
        right: 5%;
        padding-top: 10px;
        z-index: 10;
    }

    /* リスト部分 <ul class="c-gnav"> */
    html:not(.is-scrolled) body.home .c-gnav {
        display: flex !important;
        flex-direction: row !important;
        gap: 0 !important; /* 左右の線を密着させるため */
        list-style: none;
        margin: 0;
        padding: 0;
    }

    /* 各項目（li要素） */
    html:not(.is-scrolled) body.home .c-gnav__li {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    /* リンク部分 <a class="c-gnav__a"> */
    html:not(.is-scrolled) body.home .c-gnav__a {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        
        /* サイズと余白 */
        width: 60px;
        height: 230px !important;
        padding: 25px 15px 30px 15px !important;
        line-height: 1.2 !important;
        text-decoration: none;

        /* 左右の白い線（基準のデザインを反映） */
        border-left: 1px solid rgba(255, 255, 255, 0.3);
        border-right: 1px solid rgba(255, 255, 255, 0.3);
        
        transition: background 0.3s ease, border-color 0.3s ease;
        box-sizing: border-box;
    }

    /* ホバー時の背景と枠線の変化 */
    html:not(.is-scrolled) body.home .c-gnav__a:hover {
        background: rgba(230, 0, 18, 0.6) !important;
        border-color: #E60012 !important;
    }

    /* テキストスタイル <span class="__mainText"> */
    html:not(.is-scrolled) body.home .c-gnav .__mainText {
        display: block;
        font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif !important;
        font-size: 1.3rem !important;
        font-weight: 700 !important;
        writing-mode: vertical-rl !important;
        text-orientation: upright !important;
        letter-spacing: 0.25em !important;
        color: #FFF !important;
        
        /* 上に動くアニメーション設定 */
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        position: relative;
    }

    /* ホバー時に文字を少し上に動かす */
    html:not(.is-scrolled) body.home .c-gnav__a:hover .__mainText {
        transform: translateY(-10px);
    }

    /* ヘッダー位置の微調整 */
    html:not(.is-scrolled) body.home .l-header__body {
        align-items: start;
    }
}

html:not(.is-scrolled) body.home .c-headLogo__img {
    width: 100px !important;
    height: auto !important;
}

html:not(.is-scrolled) body.home .l-header__logo {
    max-width: none !important;
}

/* ==========================================
 * 2. それ以外（下層ページ または スクロール後）
 * ========================================== */
/* 横書きに戻す設定 */
html.is-scrolled .c-gnav__li>.c-gnav__a,
body:not(.home) .c-gnav__li>.c-gnav__a {
    writing-mode: horizontal-tb !important;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    padding: 0 13px !important;
    font-weight: bold;
    font-size: 15px;
}

/* 固定時のロゴサイズ */
html.is-scrolled .c-headLogo__img,
body:not(.home) .c-headLogo__img {
    width: 50px !important;
    height: auto !important;
}

/* ハンバーガーアイコン */
.c-iconBtn {
    background: #E60012;
    color: #FFF;
}

@media (max-width: 999px) {

    /* 1. PCナビを隠す */
    #gnav.c-gnavWrap {
        display: none !important;
    }

    /* 2. ヘッダー内の並び順を整理 */
    .l-header__body {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 0 10px !important;
    }

    /* 並び順指定 */
    .l-header__center {
        order: 1;
        margin: 0 10px 0 0 !important;
    }

    .l-header__right {
        order: 2;
        display: flex !important;
        flex-grow: 1;
        justify-content: center;
    }

    .l-header__drawerBtn {
        order: 3;
        margin-left: auto;
    }

    .l-header__searchBtn {
        order: 4;
    }

    /* 3. クイックボタンのデザイン調整 */
    .hp_header_quickBtns {
        display: flex;
        gap: 8px;
        margin-right: 8px;
    }

    .hp_header_quickBtns a {
        color: #fff !important;
        background: #E60012;
        font-size: 15px;
        font-weight: bold;
        padding: 6px 10px;
        border-radius: 2px;
        text-decoration: none;
        white-space: nowrap;
        line-height: 1;
        transition: all 0.3s ease;
    }

    /* ホバー時 */
    .hp_header_quickBtns a:hover,
    .hp_header_quickBtns a:focus {
        background: #AC8620 !important;
        border-color: #b39343 !important;
        color: #fff !important;
    }

    .l-header__logo {
        justify-content: flex-start;
    }

    /* ロゴサイズの微調整 */
    .c-headLogo__img {
        max-width: 45px !important;
        height: auto !important;
    }
}
/* ==========================================
 * 横書き時の下線アニメーション
 * ========================================== */

/* 横書き状態の時だけ擬似要素を準備 */
html.is-scrolled .c-gnav__a,
body:not(.home) .c-gnav__a {
    position: relative; /* 下線の基準点 */
}

html.is-scrolled .c-gnav__a::after,
body:not(.home) .c-gnav__a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 90%;
    height: 2px;
    background: #E60012; /* ロゴの赤色に合わせました */
    bottom: 10px; /* 位置はヘッダーの高さに合わせて調整してください */
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}

/* ホバー時に下線を表示 */
html.is-scrolled .c-gnav__a:hover::after,
body:not(.home) .c-gnav__a:hover::after {
    transform: scale(1, 1);
}

/* 現在のページのリンクに下線を適用（アクティブ時） */
html.is-scrolled .c-gnav__li.-current > .c-gnav__a::after,
body:not(.home) .c-gnav__li.-current > .c-gnav__a::after {
    transform: scale(1, 1);
}

/* TOPページのスクロール前（縦書き時）は強制的に非表示 */
html:not(.is-scrolled) body.home .c-gnav__a::after {
    display: none !important;
}

/* ドロワー追加メニュー */
.p-drawer {
    background: #FFF;
    color: #000;

}

/* .drawer-img-wrap {
    text-align: left;
    padding: 20px 0;
} 

.drawer-img-wrap img {
    width: 100px;
    height: auto;
}*/

.drawer-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    list-style: none;
}
.drawer-menu-item img{
width: 50px;
	height: 50px;
}

/* =========================================
    パンくずリスト
========================================= */

.p-breadcrumb {
    background: #e60012;
    color: #fff;
}

/* =========================================
    TOPページ
========================================= */
/* 共通 */
/* タイトル */
.top-title {
    font-size: 30px;
    font-weight: bold;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.3em;
    flex-wrap: wrap;
    /* ← 折り返しを許可 */
    margin: 0 0 3%;
}

/* 破線のスラッシュ */
.top-title .slash {
    height: 30px;
    position: relative;
}

/* 日本語は1行で保持 */
.top-title .jp {
    font-family:
        "Noto Serif JP",
        "游明朝",
        "Yu Mincho",
        "Hiragino Mincho ProN",
        "MS P明朝",
        serif;

    white-space: nowrap;
}

.top-title .slash::before {
    content: "";
    position: absolute;
    inset: 0;
    border-left: 2px dashed #FFDF89;
    transform: rotate(20deg);
    transform-origin: center;
    white-space: wrap;
}

.top-title .en {
    font-size: 14px;
    color: #AC8620;
    font-family:
        "Noto Serif JP",
        "游明朝",
        "Yu Mincho",
        "Hiragino Mincho ProN",
        "MS P明朝",
        serif;
    white-space: wrap;
}

@media (max-width: 768px) {
    .top-title {
        font-size: 24px;
    }

    .top-title .en {
        font-size: 12px;
        letter-spacing: 0.15em;
    }
}

/* メインビジュアル */
.mv-wrap {
    position: relative;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
}

.mv-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
/*     background: rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%); */
	background: rgba(0, 0, 0, 0.2);
    z-index: 2;
    pointer-events: none;
}

/* ビデオ設定 */
.mv-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* テキスト配置エリア */
.mv-text {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 3;
    pointer-events: none;
    padding: 13% 5% 3% 8%;
}

/* テキスト内側 */
.mv-text-inner {
    color: #fff;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.mv-text h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.8;
    font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
    white-space: nowrap;
}

/* 高級かつ、 */
.text-main {
    display: block;
    margin-bottom: 0;
}

/* 「かつ、」の調整 */
.text-main .char-group2 {
    font-size: 0.55em;
    margin-top: 0.4em;
    margin-bottom: 0.4em;
}

/* リーズナブル。 */
.text-sub {
    display: block;
    margin-top: 1em;
    margin-right: 0;
}

/* --- スマホ用レスポンシブ (768px以下) --- */
@media screen and (max-width: 1000px) {
    .mv-wrap {
        height: auto;
    }

    .mv-video {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .mv-text-inner {
        padding: 0;
        background-size: 100% 100%;
    }

    .mv-text {
        padding: 10% 5% 5%;
    }

    .mv-text h1 {
        font-size: clamp(1rem, 5vw, 2.2rem);
    }

    .text-sub {
        margin-top: 1em;
    }
}
/* アニメーション基本設定 */
@keyframes verticalReveal {
    from {
        opacity: 0;
        clip-path: inset(0 0 100% 0); /* 下から上へ消えている状態 */
        transform: translateY(-10px); /* 軽く上から落ちてくる動き */
    }
    to {
        opacity: 1;
        clip-path: inset(0 0 0 0);    /* 全表示 */
        transform: translateY(0);
    }
}

/* inline-blockにすることで、改行させずに縦に並べます */
.char-group1, .char-group2, .text-sub {
    display: inline-block; 
    opacity: 0;
    animation: verticalReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* 1行目：高級 かつ、 */
.char-group1 { animation-delay: 0.3s; }
.char-group2 { 
    animation-delay: 1.0s; 
    /* 「かつ、」を少し小さくする既存設定をここに集約してもOKです */
    font-size: 0.55em;
}

/* 2行目：リーズナブル。 */
.text-sub {
    animation-delay: 1.8s;
}

/* スライダー */
/* スライダー・その他パーツ（変更なし） */
.slider { padding-left: 0; width: 100%; display: flex; max-width: 1400px; margin: auto; }
.slider li { height: auto; margin-right: 10px; margin-left: 10px; }
.slide-arrow.slick-arrow { bottom: 0; cursor: pointer; margin: auto; position: absolute; top: 0; width: 40px; height: 40px; z-index: 999; opacity: 1; }
.prev-arrow { left: -1vw; }
.next-arrow { right: -1vw; }

@media screen and (max-width: 480px) {
  .slider img { width: 100%; height: 100%; object-fit: cover; opacity: .3; transform: scale(.9); transition: opacity .5s, transform .5s; }
  .slick-center img { opacity: 1; transform: scale(1); }
  .slider li { margin-right: 3px; margin-left: 3px; }
  .slide-arrow.slick-arrow { width: 25px; height: 25px; }
  .prev-arrow { left: 11vw; }
  .next-arrow { right: 11vw; }
}

.slider:not(.slick-initialized) { display: flex; overflow: hidden; opacity: 0; }
.slider.slick-initialized { opacity: 1; transition: opacity 0.3s ease; }
.hours { max-width: 300px; margin: 0 auto; }


/* メニュー */

/* .top-menu-pickup {
    justify-content: space-around;
    padding: 20px;
    gap: 5vw;
} */
/* .top-menu-pickup img {
	width: 252px;
} */

.top-menu-wrap {
    background-image: url("http://test.ichi-com.co.jp/ishiyaki-zei/wp-content/uploads/2026/01/top-menu-bg1.jpg");
    background-repeat: repeat-y;
    background-position: center;
    background-size: 100% auto;
}


.menu-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: calc(25% - 20px);
    max-width: 248px;
    min-width: 140px;
}

.menu-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.15));
}

.menu-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

/* --- 画像コンテナ --- */
.menu-image-container {
    width: 100%;
    line-height: 0;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.menu-image-container img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
	transition: opacity .25s;
}
.menu-image-container img:hover {
    opacity: .75;
}
/* --- 【修正】文字ボックスの背景を画像に --- */
.menu-text-box {
    background-image: url('http://test.ichi-com.co.jp/ishiyaki-zei/wp-content/uploads/2026/01/z-top-grand.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 10px 10px;
    height: 250px;
}

.vertical-title {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: clamp(16px, 2.5vw, 24px);
    font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
    font-weight: bold;
    letter-spacing: 0.25em;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
}

.vertical-title-left {
    margin-top: 1em;
}

/* --- スマホ用のレスポンシブ設定 --- */
@media (max-width: 768px) {
    .menu-card-link {
        width: calc(50% - 15px);
        min-width: auto;
    }

    .menu-card {
        width: 100%;
    }

    .menu-image-container {
        max-height: 130px;
    }

    .menu-container {
        gap: 15px;
        padding: 10px;
    }

    .menu-text-box {
        height: 150px;
        /* PCでの高さ */
    }

    .vertical-title {
        font-size: clamp(16px, 4.5vw, 20px);
        letter-spacing: 0.15em;
    }
	.top-menu-pickup {
    gap: 15px;
}
}

/* PC・スマホ共通：グループ全体の幅制限を解除 */
.wp-block-group.menu1 {
    width: 100%;
    max-width: 100%;
    padding: 0;
    gap: 5vw;
}

/* スマホ表示（600px未満）の切り替え */
@media (max-width: 599px) {
    .wp-block-group.menu1 {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        padding: 10px;
    }

    .wp-block-group.menu1 .wp-block-image {
        width: 100%;
        margin: 0 0 10px 0;
    }

/*     .wp-block-group.menu1 .wp-block-image img {
        width: 100%;
        height: auto;
        display: block;
    } */
}

@media (max-width: 599px) {
    .wp-block-group.menu {
        padding: 10px;
    }
}
/* --- こだわりセクション設定 --- */
/* --- 変数設定（管理しやすくするため） --- */
:root {
    --pc-header-h: 74px;
    --sp-header-h: 56px;
}

/* --- コンテナ設定 --- */
.entry-content,
.post-content {
    overflow: visible !important;
}

.top-point-outer {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    height: 300vh; 
}

/* --- 1. 固定表示レイヤー（PC基準） --- */
.fixed-content-layer {
    position: sticky;
    top: var(--pc-header-h);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--pc-header-h));
    height: calc(100svh - var(--pc-header-h));
    overflow: hidden;
    z-index: 1;
}

/* --- 2. 各パネル（動画・画像） --- */
.content-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.content-panel.active {
    transform: translateY(0);
    z-index: 2;
}

.content-panel.exit {
    transform: translateY(-30%);
    z-index: 1;
}

.video-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-wrap video {
    width: 100.5%;
    height: 100.5%;
    object-fit: cover;
}

/* 中央キャプション（画像） */
.top-point-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    max-width: 800px;
    z-index: 10;
}

/* --- 3. UIオーバーレイ --- */
.top-point-ui-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    pointer-events: none;
}

.top-point-fixed-logo {
    position: absolute;
    top: 30px; 
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    max-width: 400px;
}
.top-point-fixed-logo img {
    width: 100%;
    height: auto;
}

.top-point-side-nav {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    pointer-events: auto;
}

.top-point-dot {
    width: 12px; height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
}
.top-point-dot.active { background: #ff0000; transform: scale(1.5); }

.top-point-fixed-button {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: auto;
}



/* --- 4. スクロール検知レイヤー --- */
.scroll-trigger-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.step-section {
    height: calc(100vh - var(--pc-header-h));
    height: calc(100svh - var(--pc-header-h));
}

/* --- スマホ対応（999px以下） --- */
@media screen and (max-width: 999px) {
    /* 固定レイヤーの高さを 56px ベースに変更 */
    .fixed-content-layer {
        top: var(--sp-header-h);
        height: calc(100vh - var(--sp-header-h));
        height: calc(100svh - var(--sp-header-h));
    }

    /* 判定セクションも同様に変更 */
    .step-section {
        height: calc(100vh - var(--sp-header-h));
        height: calc(100svh - var(--sp-header-h));
    }

    .top-point-fixed-logo {
        width: 60%;
        top: 20px;
    }

    .top-point-caption {
        width: 90%;
    }

    .top-point-side-nav {
        right: 15px;
    }

    .top-point-fixed-button {
        bottom: 30px;
    }
}


/* PR動画　インスタ */
.pr-instagram-wrap{
	max-width: 1000px;
	margin : 30px auto;
	gap: 50px;
}
@media screen and (max-width: 768px) {
.pr-instagram-wrap{
	flex-direction: column;}
}
/* RP動画 */
.movie-title {
    background-color: #AC8620;
    color: #FFF;
    padding: 10px;
    font-size: clamp(10px, 1.5vw, 14px);
    width: 100%;
	text-align: center;}

.instagram-container{
	max-width: 400px;
}
.instagram-container img{
	width: 29px;
 height: 29px
}
.instagram{
	    border: 5px solid;
    border-image-source: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-image-slice: 1;
}
/* TOP新着情報 */
.news-wrapper {
    background:
        linear-gradient(to bottom, rgba(255, 224, 201, 0.5), rgba(0, 0, 0, 0) 15%),
        linear-gradient(to top, rgba(255, 224, 201, 0.5), rgba(0, 0, 0, 0) 15%);
}

.news-wrapper-title {
    position: relative;
    font-size: clamp(20px, 4vw, 28px);
}

.news-area {
    border: 1px solid #898989
}

/* NEWSリスト コンテナ */
.news_contents {
    width: 100%;
    border-bottom: 1px dotted #696969;
    display: flex;
    height: auto;
    /* 重複を削除 */
    padding-bottom: 10px;
    /* 余白調整（任意） */
}

/* サムネイル */
.news_contents .thumb {
    width: 100px;
    height: 100px;
    margin: 10px;
}

.news_contents .thumb img {
    width: 100%;
    height: auto;
}

/* 右側コンテンツ */
.news_contents .news_right {
    flex: 1;
    /* 幅を自動調整 (calcより柔軟です) */
    margin: 10px 0 0 0;
}

.news_contents .news_title a {
    color: #000;
    font-weight: bold;
    font-size: 15px;
    text-decoration: none;
}

.news_right p.post_contets {
    width: 100%;
    font-size: 14px;
}

/* NEWラベル */
.news_new {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 6px;
    background: red;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    border-radius: 3px;
}

/* 投稿ページ（home / 投稿一覧）だけ */
/* .home .p-pageTitle,
.blog .p-pageTitle {
    background: linear-gradient(135deg, #111, #444);
    padding: 80px 0;
} */

/* タイトル文字 */
/* .home .p-pageTitle__title,
.blog .p-pageTitle__title {
    color: #fff;
    font-size: 36px
} */

/*----トップページコンテンツ　「店舗情報」　----*/
/* PCのみ表示 */
@media (min-width: 1000px) {
.top-store-pc {
        display: block;
    }
.top-store-sp{
	display: none;
	}
}
/* SPのみ表示 */
@media (max-width: 999px) {
.top-store-pc {
        display: none;
    }

.top-store-sp {
        display: block;
    }
}
section#contents_store {
    width: 100%;
    height: 550px;
    background: #000;
}

.store_over {
    width: 960px;
    height: 550px;
    margin: 0 auto;
    background: url("http://test.ichi-com.co.jp/ishiyaki-zei/wp-content/uploads/2026/01/store_bg14.png") no-repeat 0 0;
    position: relative;
}

.store_over_over {
    width: 960px;
    height: 550px;
}

.store_over h2.store_title {
    font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
    font-size: 50px;
    color: #fff;
}

.store_over p {
    margin: -10px 0 0 0px;
    color: #fff;
    font-size: 16px;
}

.store_over02 a {
    font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
    position: absolute;
    color: #FFF;
}

.store_over02 a:hover {
    color: #e20000;
}

.store_over02 a.store01 {
    /*山形嶋*/
    font-size: 16px;
    top: 85px;
    right: 370px;
}

.store_over02 a.store02 {
    /*宮城明石台*/
    font-size: 16px;
    top: 90px;
    right: 160px;
}

.store_over02 a.store03 {
    /*新潟松崎*/
    font-size: 16px;
    top: 105px;
    right: 515px;
}

.store_over02 a.store04 {
    /*福島蒲田*/
    font-size: 16px;
    top: 168px;
    right: 160px;
}

.store_over02 a.store05 {
    /*新潟小新*/
    font-size: 16px;
    top: 140px;
    right: 515px;
}

.store_over02 a.store06 {
    /*新潟亀田*/
    font-size: 16px;
    top: 180px;
    right: 355px;
}

.store_over02 a.store07 {
    /*長岡アクロス*/
    font-size: 15px;
    top: 245px;
    right: 285px;
}

.store_over02 a.store08 {
    /*長野若槻*/
    font-size: 16px;
    top: 315px;
    right: 355px;
}

.store_over02 a.store09 {
    /*富山山室*/
    font-size: 16px;
    top: 330px;
    right: 515px;
}

.store_over02 a.store10 {
    /*富山にし*/
    font-size: 16px;
    top: 357px;
    right: 530px;
}

.store_over02 a.store11 {
    /*石川金沢*/
    font-size: 16px;
    top: 310px;
    right: 765px;
}

.store_over02 a.store12 {
    /*福井飯塚*/
    font-size: 16px;
    top: 405px;
    right: 765px;
}

.store_over02 a.store13 {
    /*石川白山*/
    font-size: 16px;
    top: 342px;
    right: 765px;
}

.store_over02 a.store14 {
    /*長岡古正寺*/
    font-size: 16px;
    top: 230px;
    right: 500px;
}

.store_over02 a.store15 {
    /*富山高岡*/
    font-size: 16px;
    top: 384px;
    right: 515px;
}

.store_over02 a.store16 {
    /*新潟県央*/
    font-size: 16px;
    top: 182px;
    right: 515px;
}

.store_over02 a.store17 {
    /*宮城富沢*/
    font-size: 16px;
    top: 118px;
    right: 160px;
}

.store_over02 a.store18 {
    /*富山砺波*/
    font-size: 16px;
    top: 410px;
    right: 515px;
}

.store_over02 a.store19 {
    /*富山下飯野*/
    font-size: 16px;
    top: 295px;
    right: 500px;
}

.store_over02 a.store20 {
    /*石川小松*/
    font-size: 16px;
    top: 374px;
    right: 765px;
}

.store_over02 a.store21 {
    /*富山マルート*/
    font-size: 16px;
    top: 265px;
    right: 484px;
}

.store_over02 a.store22 {
    /*福井武生楽市*/
    font-size: 16px;
    top: 435px;
    right: 750px;
}

.store_over02 a.store23 {
    /*長野南松本*/
    font-size: 16px;
    top: 375px;
    right: 355px;
}

/* キッズサービス */
.top-kids-wrap {
    background: url("http://test.ichi-com.co.jp/ishiyaki-zei/wp-content/uploads/2026/01/Frame-124.png") center bottom / cover no-repeat;
}
.top-kids-banner{
margin-top: 2rem !important;	
}

.top-kids-img {
    margin-top: 0 !important;
}

/* 採用情報、インスタ */
/* .top-sns {
    margin-bottom: 4rem;
}

@media screen and (max-width: 768px) {
    .recruit {
        padding: 4vw;
    }
} */
.recruit {
margin-bottom: 2rem;}
/* お助けカード */

.top-help-containe{
	max-width: 1200px;
margin: 0 auto !important;
}
.top-help-text-wrap{
	margin-top: 0!important;
}

.top-help-text{
	gap: 10px !important;
}
.top-help-jyoji{
width: 450px;
margin: 0 auto ;
}
/* top-help-wrap セクション内限定で margin-top を 0 に上書き */
.top-help-wrap :is(.wp-block-column, .wp-block-group__inner-container, .wp-block-cover__inner-container) > :not(:first-child) {
    margin-top: 0 !important;
}
@media screen and (max-width: 768px) {
.top-help-jyoji{
width: 100%;
	max-width: 450px}}
/* =========================================
    固定ページ共通
========================================= */
/* 個別ページタイトル */
.page-title {
  color: #FFF;
  padding: .5em .75em;
  overflow: hidden;
  background-size: cover;
  background-image: url(http://test.ichi-com.co.jp/ishiyaki-zei/wp-content/uploads/2026/02/title-bg2.jpg);
}

.c-pageTitle__main {
  color: #FFF;
  padding: .5em .75em;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-image: url(http://test.ichi-com.co.jp/ishiyaki-zei/wp-content/uploads/2026/02/title-bg2.jpg);
}

@media screen and (max-width: 768px) {
  .c-pageTitle__main {
    font-size: 18px;
  }
  .c-pageTitle__main::after {
    right: -350px;
  }
}
/* =========================================
    固定メニュー、おすすめ、イベントページ
========================================= */
.menu-outer {
    background-image: url('http://test.ichi-com.co.jp/ishiyaki-zei/wp-content/uploads/2026/02/menu-page-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: repeat-y;
    padding: 4em var(--ark-padding--container, 48px);
}

/* メニュー、オススメページタイトル */
.menu-title {
    font-size: clamp(1.25rem, 6vw, 2.5rem);
    position: relative;
    padding: 1rem;
    text-align: center;
}

.menu-title span {
    font-size: clamp(0.875rem, 3vw, 1.2rem);
    display: block;
    color: #696969;
    margin-top: 0.25rem;
}

.menu-title:first-letter {
    font-size: clamp(2rem, 8vw, 3.5rem);
    color: #AC8620;
}

.menu-title:before {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(50px, 10vw, 100px);
    height: 2px;
    content: '';
    background: #AC8620;
}

.menu-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #FFF;
}

.menu_img {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.menu_img a {
    max-width: 23.875%;
    margin-left: 1.5%;
    margin-bottom: 1.5%;
    overflow: hidden;
}

.menu_img a:has(.kidsmenu-right) {
    margin-left: 0;
}

.menu_img a:nth-child(4n+1) {
    margin-left: 0px;
}

.menu_img img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- スマホ用の調整 --- */
@media screen and (max-width: 768px) {
    .menu-wrap {
        padding: 0;

    }

    .menu_img {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .menu_img a {
        flex: 0 1 100%;
        max-width: 500px;
        margin-left: 0;
    }
}

@media screen and (max-width: 768px) {

    /* .group1, .group2 ... .group6 すべてのクリックを無効化 */
    .group1,
    .group2,
    .group3,
    .group4,
    .group5,
    .group6 {
        pointer-events: none !important;
        cursor: default !important;
        text-decoration: none !important;
    }
}

/* 読み込み中のぐるぐるなどの位置調整（必要に応じて） */
#colorbox {
    outline: none !important;
}
/* モーダルアイコンの位置調整 */
#cboxLoadedContent {
background: #000 !important; 
}
#cboxPreviou{
	left: 4px　!important;}
#cboxNext {
	right: 4px !important;}
#cboxClose{
top: 4px !important;
}
/* =========================================
    店舗一覧ページ
========================================= */
/*1. 共通設定（営業時間・地域ボタン・アイコン）*/
/* 営業時間、県名タイトルh2 */
.store-page-title {
    font-size: clamp(20px, 4vw, 28px);
    color: #FFF;
    background-color: #E60012;
    font-weight: 500;
    padding: 10px;
}

.store-page-title span {
    font-size: clamp(12px, 4vw, 16px);
}

/* 地域選択ボタン */
.store-btn-wrap {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 600px;
    margin: 20px auto !important;
}

/* 各店舗偶数背景 */
.store-outer .store-wrap:nth-of-type(even) {
    background-color: #F5F5F5 !important;
}

/* 住所・TEL */
.address,
.tell {
    align-items: flex-start;
}

/* 住所アイコン */
.store-icon {
    flex: 0 0 25px !important;
    width: 25px !important;
    min-width: 25px !important;
    margin: 0 8px 0 0 !important;
}


/* 予約ボタン */
.reserve-btn {
    background-color: #CF1F1F;
    border: 2px solid #CF1F1F;
}

.reserve-btn:hover {
    color: #CF1F1F;
    box-shadow: inset 0 0 0 2px #CF1F1F;
}

@media screen and (min-width: 1001px) {
    .store-container {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 30px 10px;
    }

    .store-wrap {
        margin-top: 0 !important;
    }

    .store-img {
        flex: 0 0 290px !important;
        width: 290px !important;
        min-width: 290px !important;
        max-width: 290px !important;
        height: 180px !important;
        margin: 0 !important;
        overflow: hidden;
    }

    .store-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .store-text {
        flex: 1 1 0% !important;
        /* ★ 0%ベースにすることで、中身の長さに左右されず「余白」として計算される */
        min-width: 0;
        padding: 0 15px !important;
        display: flex;
        flex-direction: column;
        gap: 5px;
        text-align: left;
    }

    /* 地図、LINE、EPARKの塊（2段構成） */
    .btn-epark-wrap {
        flex: 0 0 auto;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start;
        gap: 15px;
        flex-shrink: 0;
    }

    /* 地図とLINE（横並び） */
    .map-line-button {
        display: flex !important;
        flex-direction: row !important;
        gap: 10px;
        flex-shrink: 0;
    }

    .eparkwrap {
        flex-shrink: 0 !important;
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 1000px) {
    .store-btn-wrap {
        grid-template-columns: repeat(3, 1fr);
        max-width: 400px;
    }

    .store-container {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
        padding-bottom: 60px;
    }

    .store-img {
        width: 100% !important;
        max-width: 320px !important;
        height: auto !important;
        margin: 0 auto 20px !important;
    }

    .store-img img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain;
    }

    .btn-epark-wrap {
        width: 100%;
        flex: 0 0 auto;
        margin-bottom: 20px;
    }

    .store-text {
        width: auto;
        max-width: 350px;
        margin: 0 auto 20px;
        text-align: left;
        padding: 0;
    }

    .btn-epark-wrap {
        flex-direction: column !important;
        align-items: center !important;
    }

    .address,
    .tell {
        justify-content: center;
    }
}

/* =========================================
   こだわりページ
========================================= *
/* --- 1. 全体共通設定（フォント・基本カラー） --- */
.about-page-outer,
.about-page-outer p,
.about-page-outer span {
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

/* --- 2. 各セクションの基本レイアウト (PC基準) --- */

/* 2-1. 上部テキストエリア（縦書き） */
.about-top-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    display: flex;
    flex-direction: column-reverse;
    gap: 3em;
    align-items: flex-start;
    margin: 0 auto !important;
line-height: 2.0;
}

.about-top-text p {
    color: #fff;
    margin: 0;
}

.about-top-text p:first-child {
    font-size: 1.1em;
    margin-top: 2.5em;
}

.about-top-text p:last-child {
    color: #ddac23;
    font-size: 2.5em;
    font-weight: bold;
}

/* 2-2. 画像共通設定 */
.about-top-img {
    width: 80%;
    max-width: 800px;
    height: auto;
    margin: 0 auto;
}

/* 2-3. ステーキ紹介セクション */
.about-meat {
    margin-bottom: 100px !important;
}

.about-meat-top {
    position: relative;
    margin-bottom: 100px !important;
}
.about-meat-bottom{
	max-width: 800px;
margin: 0 auto;
}

.about-meat-text, 
.about-rice-text {
    position: absolute;
    z-index: 1;
    writing-mode: vertical-rl;
    text-orientation: upright;
    display: flex;
    gap: 3em;
    max-width: 400px;
}

.about-meat-text {
    bottom: 5%;
    right: 12%;
}

.about-rice-text {
    bottom: -200px;
    right: 5%;
}

.about-meat-text p, 
.about-rice-text p {
    color: #fff;
    margin: 0;
    letter-spacing: 0.15em;
    font-size: clamp(12px, 2vw, 16px);
    line-height: 1.8;
}

/* タイトル要素・パーツ */
.meat-item-title {
    font-size: 1.5em;
}

.meat-item-title span {
    letter-spacing: -2px;
    display: inline-block;
}

.meat-item-wrap {
    padding: 25px 0;
}

.meat-item-img {
    margin-bottom: -50px !important;
}

.ussie-beef {
    height: auto;
    max-width: 150px;
    width: 100%;
}

.about-rice {
    position: relative;
    margin-bottom: 250px !important;
}

/* 2-4. ソースセクション (PC) */
.about-sauce {
    margin-top: 100px !important;
}

.about-sauce-left {
    width: 50%;
}

.about-sauce-left p {
    font-size: clamp(0.7rem, 0.489rem + 0.901vw, 1.3rem);
}

.sauce-top-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto !important;
}

.about-sauce-right {
    flex: 1;
    min-width: 0;
}

.sauce-title {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto !important;
}

/* ソースグリッド */
.about-sauce-right .is-layout-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px 20px;
    width: 100% !important;
}

.sauce-item-title {
    background-image: url(http://test.ichi-com.co.jp/ishiyaki-zei/wp-content/uploads/2026/04/sauce-title-gb.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 10px;
color: #ddac23;
}
.sauce-item-text {
	margin-top: 20px !important;}

.sauce-item-text span {
    font-size: 1.3em;
}

/* --- 3. スマホ設定 (768px以下) --- */
@media screen and (max-width: 768px) {
    
    /* 共通解除 */
    .about-top-text {
        flex-direction: row-reverse;
        align-items: center;
        gap: 1em;
    }

    .about-top-text p:first-child {
        font-size: 1em;
        margin-top: 0;
    }

    .about-top-text p:last-child {
        font-size: 1.5em;
    }

    /* メイン・ライスセクション解除 */
    .about-meat-top {
        position: static;
        margin-top: 50px !important;
        display: flex;
        flex-direction: column;
        margin-bottom: 40px !important;
    }

    .about-meat-text, 
    .about-rice-text {
        position: static;
        writing-mode: horizontal-tb;
        width: 100%;
        max-width: 100%;
        margin-top: -45px !important;
    }

    .about-meat-text p, 
    .about-rice-text p {
        font-size: 16px;
    }

    .meat-item-title {
        font-size: 1.2em;
    }

    .ussie-beef-wrap {
        flex-direction: column;
    }

    .about-rice {
        margin-bottom: 100px !important;
    }

    /* ソースセクション解除 (グリッド引きずり防止) */
    .about-sauce {
        flex-direction: column;
    }

    .about-sauce-left {
        width: 100%;
    }

    .about-sauce-right {
        display: block !important; /* Flexを解除して100%幅を確保 */
        width: 100% !important;
        padding: 0;
    }

    .sauce-title {
        max-width: 300px;
        margin: 0 auto 40px !important;
    }

    .about-sauce-right .is-layout-grid {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        /* 必要に応じてここで grid-template-columns: 1fr; に変更可能 */
    }
}
/* =========================================
   バースデーページ
========================================= */

/* 全体の外枠1：背景画像の設定 */
.birthday-wrap {
    background-image: url("http://test.ichi-com.co.jp/ishiyaki-zei/wp-content/uploads/2026/04/2602_zei_birth_bg.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    max-width: 1200px;
    padding: 238px 10px 64px;
    margin: 0 auto;
    position: relative;
    z-index: -5;
    overflow: hidden;
}

/* 1. 3つの画像が入る外枠（PCレイアウト） */
.happy-service-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 0 auto;
    width: 95%;
    max-width: 1100px;
}

/* 各カラムの比率と「隙間」の個別設定（PC） */
/* 1枚目：左。比率を1.05に。右に15pxの空き */
.happy-service-wrap figure:nth-child(1) {
    flex: 1.08;
    margin: 0 15px 0 0;
}

/* 2枚目：中央。装飾が少ないため比率を0.85に絞る */
.happy-service-wrap figure:nth-child(2) {
    flex: 0.85;
    margin: 0;
}

/* 3枚目：右。2枚目に近づけるため左に5pxの空き */
.happy-service-wrap figure:nth-child(3) {
    flex: 1.05;
    margin: 0 0 0 -5px;
}

.happy-service-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.happy-service-text {
    color: #FFF;
    padding: 0% 12%;
    max-width: 1200px;
    margin: 0 !important;
    justify-content: flex-end;
}
.happy-service-text img{
    width: 80px;
}
/* テキストスタイル */
.birthday-sub-title,
.birthday-text1 {
    font-weight: bold;
    line-height: 1.5;
    padding: 10px;
    color: #fff;
    margin-top: 0 !important;
    font-size: clamp(1rem, 2vw, 1.5rem);
    -webkit-text-stroke: 6px #070000;
    paint-order: stroke fill;
    -webkit-text-stroke-linejoin: round;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.96), 0px 0px 6px rgba(0, 0, 0, 0.71);
    font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.birthday-text1 span {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
    display: block;
    margin-top: 10px;
}


/* 2. 背景装飾（花火） */
.birthday-stone-ice-top {
    position: absolute;
    top: 7%;
    right: -37%;
    left: 0;
    margin: 0 auto;
    width: 40%;
    max-width: 450px;
    z-index: -1;
}

.birthday-stone-ice-top img {
    width: 100%;
    height: auto;
}



/* -----------------------------------------
   スマホ用レスポンシブ設定
----------------------------------------- */
@media screen and (max-width: 781px) {
    .birthday-wrap {
        background-image: url("http://arkhe.local/wp-content/uploads/2026/03/sp_2602_zei_birth_bg-1.jpg")t;

    }

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

    /* 3つの画像を縦並びにし、中の四角を視覚的に揃える */
    .happy-service-wrap {
        flex-direction: column;
        align-items: center;
        margin-top: 60px;
        width: 100%;
    }

    .happy-service-wrap figure {
        margin: 0 auto 20px auto;
        display: block;
        position: relative;
    }

    /* 1枚目：見た目の四角を中央に寄せる補正 */
    .happy-service-wrap figure:nth-child(1) {
        width: 93%;
        transform: translateX(-3%);
    }

    /* 2枚目：幅を絞って、中の四角のサイズを1・3枚目に合わせる */
    .happy-service-wrap figure:nth-child(2) {
        width: 73%;
        transform: translateX(5%);
    }

    /* 3枚目：見た目の四角を中央に寄せる補正 */
    .happy-service-wrap figure:nth-child(3) {
        width: 91%;
        transform: translateX(6%);
    }

    .happy-service-wrap img {
        width: 100%;
        height: auto;
    }
.happy-service-text {
    padding: 5% 5%;}
}

/* 全体のコンテナ（下部テキストエリア用） */
.birthday-top-wrap {
    padding: 0 12%;
    margin-top: 11% !important;
    max-width: 1200px;
}

.birthday-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 5% 12%;
    max-width: 1200px;
}

.birthday-column {
    display: flex;
    align-items: stretch;
    flex: 1;
    min-width: 300px;
}

.birthday-label {
    background-color: #000;
    color: #fff;
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding: 10px 8px;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    white-space: nowrap;
}

.birthday-content {
    flex: 1;
}

@media screen and (max-width: 781px) {
    .birthday-wrap {
        background-image:
            url('http://test.ichi-com.co.jp/ishiyaki-zei/wp-content/uploads/2026/04/sp1_2602_zei_birth_bg.jpg'),
            /* 1. 上の花と枠の角 */
            url('http://test.ichi-com.co.jp/ishiyaki-zei/wp-content/uploads/2026/04/sp2_2602_zei_birth_bg.jpg'),
            /* 2. 下の花と枠の角 */
            url('http://test.ichi-com.co.jp/ishiyaki-zei/wp-content/uploads/2026/04/sp3_2602_zei_birth_bg.jpg');
        /* 3. 中央の枠 */
        background-position: top center, bottom center, center center;
        /* 中間パーツは「縦にだけ」繰り返す！ */
        background-repeat:
            no-repeat, no-repeat, repeat-y;
        /* サイズ設定 */
        background-size:
            100% auto, 100% auto, 100% auto;
        padding: 20% 10px 15%;
        ;
        /* 枠の内側の黒い部分（背景色） */
        background-color: #000;
    }


    .birthday-stone-ice-top {
        top: 2%;
        right: -29%;
        left: 0;
        width: 61%;
        opacity: 0.4;
        max-width: 339px;
    }

    .birthday-container {

        padding: 5% 5%;

    }
}

/* birthdayタイトル */
.birthday-top-wrap .wp-block-heading img {
    width: 52% !important;
    max-width: 460px;
    height: auto !important;
    display: block;
    margin-left: 0;
}

/* スマホ等でさらに小さく調整したい場合のメディアクエリ */
@media (max-width: 781px) {
    .birthday-top-wrap .wp-block-heading img {
        max-width: 70%;
        width: 70% !important;

    }

}

/* =========================================
 キッズサービスページ
========================================= */
/* 各タイトル枠 */
.kidspage-title1,
.kidspage-title2,
.kidspage-title3 {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* タイトルの下の線*/
.kidspage-title1::before,
.kidspage-title2::before,
.kidspage-title3::before {
    content: '';
    position: absolute;
	bottom: 10%;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: -1;
    background-color: #F18D00;
}


.kidspage-title2::before {
    background-color: #639AFF;
}

.kidspage-title3::before {
    background-color: #FFD83D;
}


.kidspage-wrap,
.kidspage-title-img {
    max-width: 1200px;
    margin: 0 auto;
}

.kidspage-wrap {
    display: flex !important;
    flex-wrap: nowrap;
    background-color: #FAF3E8;
    border-radius: 20px;
    border: #FAF3E8 solid 5px;
    overflow: hidden;
    align-items: stretch;
    padding: 0 !important;
}

/* 左側の画像エリア */
.kidspage-img {
    flex: 0 0 50% !important;
    margin: 0 !important;
    line-height: 0;
}

.kidspage-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block !important;
}

/* 右側のテキストエリア */
.kidspage-text {
    flex: 0 0 50% !important;
    margin: 0 !important;
    padding: 20px;
    display: flex;
    align-items: center;
    color: #333;
    font-size: 20px;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    .kidspage-wrap {
        flex-direction: column !important;
    }

    /* 画像エリアを横いっぱい */
    .kidspage-img {
        flex: 0 0 auto !important;
        width: 100% !important;
        height: 200px;
    }

    /* テキストエリアを横いっぱい */
    .kidspage-text {
        flex: 0 0 auto !important;
        width: 100% !important;
        padding: 20px;
    }

    .kidspage-img img {
        border-radius: 18px 18px 0 0;
    }
}
/* =========================================
  お助けカードページ
========================================= */
/* 全体 */
.help-outer {
    background: url("http://test.ichi-com.co.jp/ishiyaki-zei/wp-content/uploads/2026/02/help-bg.jpg") center / cover no-repeat !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    /* z-indexを有効にするため */
    z-index: 0 !important;
}

/* 1. 背景を持つ外枠 */
.help-inner {
    background-image: url("https://test.ichi-com.co.jp/saloon/wp-content/uploads/2026/01/help-Inner.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 30px 20px;
    z-index: 1;
}

.help-title {
    margin-top: 20px !important;
}

.help-inner-text {
    margin-top: 0 !important;
    font-weight: bold;
    line-height: 1.8;
    color: #e60018;
    font-size: clamp(0.8rem, 2vw, 2rem);
    -webkit-text-stroke: 4px #fff;
    paint-order: stroke fill;
}

.help-inner-text span {
    font-weight: 400;
}

/* ガイドキャラクター */
.guide-character {
    position: fixed;
    z-index: 999999 !important;
    width: 150px;
    opacity: 0;
    pointer-events: none;

    /* 出現の初期位置：左側20%の位置に固定 */
    top: -100px;
    left: 20%;
    transform: translateX(-50%);

    /* アニメーション：1.登場 → 2.そのまま浮遊（右移動を削除） */
    animation:
        popOut 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards,
        fuwafuwa 3s infinite 1.2s;
    /* 登場が終わったらすぐ浮遊開始 */
}

/* 1. 画面上から指定位置（left: 20%）へ降臨 */
@keyframes popOut {
    0% {
        transform: translate(-50%, 0) scale(0);
        opacity: 0;
    }

    100% {
        /* 画面上から80pxの位置（top -100px + 180px）でストップ */
        transform: translate(-50%, 180px) scale(1);
        opacity: 1;
    }
}

/* 2. その場でゆらゆら */
@keyframes fuwafuwa {

    0%,
    100% {
        transform: translate(-50%, 180px);
    }

    50% {
        transform: translate(-50%, 190px);
    }
}

/* 追いかけキャラが消える時の設定 */
.guide-character.is-active {
    animation: none !important;
    opacity: 0 !important;
    visibility: hidden;
    transition: opacity 0.4s ease-out, visibility 0.4s;
}

/* もやもや出現のディレイを、タイトルが消えた瞬間に合わせる */
.moyamoya-section.is-active figure:nth-of-type(1) figure:nth-child(1) {
    transition-delay: 0.2s;
}

/* もやもやセクションの設定 */
/* 1. セクション全体の基準設定 */
.moyamoya-section {
    position: relative;
    overflow: visible;
}

/* 2. 中央の人 */
.center-guide-character {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 400px;
    z-index: 5;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* エリアがアクティブになったらキャラが出現 */
.moyamoya-section.is-active .center-guide-character {
    opacity: 1;
     transform: translate(-50%, -50%) scale(1);
}

/* 3. もやもや吹き出し（各figure）の調整 */
.moyamoya-section figure {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.6s ease-out;
    position: relative;
    z-index: 10;
}

/* アクティブ時の表示タイミング（キャラ登場 0.8s を待ってから） */
.moyamoya-section.is-active figure {
    opacity: 1;
    transform: scale(1);
}


.moyamoya-section.is-active .wp-block-group:nth-of-type(1) figure:nth-child(1) {
    transition-delay: 0.1s;
}

.moyamoya-section.is-active .wp-block-group:nth-of-type(1) figure:nth-child(2) {
    transition-delay: 0.3s;
}

.moyamoya-section.is-active .wp-block-group:nth-of-type(2) figure:nth-child(1) {
    transition-delay: 0.5s;
}

.moyamoya-section.is-active .wp-block-group:nth-of-type(2) figure:nth-child(2) {
    transition-delay: 0.7s;
}

/* 4. スマホ・タブレット用調整 */
@media (max-width: 1000px) {
    .center-guide-character {
        width: 200px;
        top: 50%;
        left: 50%;
    }
}

/* =========================================
   スマホ・タブレット用調整
========================================= */
@media (max-width: 1000px) {
    .guide-character {
        width: 80px;
        left: 20%;
        /* スマホでも左側20%の位置に降らす */
    }
}
/* =========================================
   投稿ページ
========================================= */
/* 投稿本文内の画像ブロックを親要素(960px)の幅いっぱいに広げる */
.single .p-entry__content .wp-block-image,
.single .p-entry__content .wp-block-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* 投稿ページ（記事詳細）の本文エリアの上下余白を3remにする */
.single .l-content__body {
    margin: 3rem auto;
}

/* 投稿一覧ページ（/news/）と カテゴリー一覧ページ 両方に適用 */
.blog .l-content__body,
.archive .l-content__body {
    margin: 3rem auto !important;
}

/* 投稿ページのタイトル左寄せ */
.single .c-pageTitle__main {
    text-align: left;
}

/* =========================================
    フッター
========================================= */
.bottom_menu {
    display: flex !important;
    justify-content: center !important;
    gap: 20px !important;
    align-items: center;
}

.l-footer__foot {
    overflow: hidden;
    background-size: cover;
    background-image: url(http://test.ichi-com.co.jp/ishiyaki-zei/wp-content/uploads/2026/01/z-footer-bg.jpg);
    padding-bottom: 0;
}

.c-copyright {
    padding: 10px 0;
    background: #333;
    color: #fff;
}

/* TOPへ戻るボタン */
.c-fixBtn.-pagetop {
    background: #000;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px #000;
    box-sizing: border-box;
}


/* ============================================================
   こだわりセクションの全体・共通設定
   ============================================================ */
/* .top-point {
    width: 100%;
    background-color: #fff;
}

.top-point-main {
    display: flex;
    height: 100vh;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
} */

/* ドットナビ全体のコンテナ */
/* .top-point-dots {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
} */

/* ドット単体のスタイル */
/* .dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
} */

/* アクティブ時のドット */
/* .dot.is-active {
    background-color: #e60018;
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    border-color: #fff;
} */

/* 動画ラッパー共通 */
/* .img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s;
}

.img-wrapper.is-active {
    opacity: 1;
    visibility: visible;
}

.img-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-about-title {
    width: 80%;
    max-width: 300px;
    margin: 0 auto 30px;
} */

/* ナビゲーション項目共通 */
/* .nav-item {
    position: relative;
    list-style: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-item-text {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000;
    transition: all 0.4s ease;
    margin: 0;
    -webkit-text-stroke: 0 !important;
    text-stroke: 0 !important;
    text-shadow: none !important;
}

.nav-item.is-active .nav-item-text {
    max-height: 150px;
    opacity: 1;
    margin-top: 10px;
    margin-bottom: 10px;
}

.nav-item::before {
    content: "";
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: scale(0.8);
    z-index: 2;
}

.nav-item.is-active::before {
    opacity: 1;
    transform: scale(1);
}

.nav-item[data-index="0"]::before {
    background-image: url('http://test.ichi-com.co.jp/ishiyaki-zei/wp-content/uploads/2026/02/about-no1.png');
}

.nav-item[data-index="1"]::before {
    background-image: url('http://test.ichi-com.co.jp/ishiyaki-zei/wp-content/uploads/2026/02/about-no2.png');
}

.nav-item[data-index="2"]::before {
    background-image: url('http://test.ichi-com.co.jp/ishiyaki-zei/wp-content/uploads/2026/02/about-no3.png');
} */

/* ------------------------------------------------------------
   PCスタイル（1001px以上）
   ------------------------------------------------------------ */
/* @media screen and (min-width: 1001px) {
    .top-point-main {
        align-items: stretch;
    }

    .top-point-nav .z-button {
        max-width: 300px;
        min-width: 250px;
        margin: 0 auto;
    }

    .top-point-nav {
        width: 30%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 3%;
        z-index: 10;
        order: 1;
        background-image: url('http://test.ichi-com.co.jp/ishiyaki-zei/wp-content/uploads/2026/01/top-point-bg.jpg');
        background-size: cover;
        background-position: center;
    }

    .top-point-img {
        width: 70%;
        height: 100vh;
        order: 2;
    }

    .nav-item {
        margin-bottom: 30px;
    }

    .nav-item-title {
        font-size: 1.4rem;
        color: #9d9d9d;
        display: block;
    }

    .nav-item.is-active .nav-item-title {
        font-size: 2rem;
        color: #e60018;
        font-weight: bold;
        transform: scale(1.1);
        text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 2px 0 0 #fff, -2px 0 0 #fff, 3px 3px 0 #fff, -3px -3px 0 #fff, 4px 4px 6px rgba(0, 0, 0, 0.4);
    }

    .nav-item::before {
        left: -60px;
        top: -35px;
        width: 100px;
        height: 50px;
    }
}
 */
/* ------------------------------------------------------------
   スマホスタイル（1000px以下）
   ------------------------------------------------------------ */
/* @media screen and (max-width: 1000px) {
    .top-point-main {
        display: block;
        height: 100vh;
        height: 100dvh;
    }

    .top-point-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .top-point-dots {
        right: 15px;
        gap: 12px;
    }

    .top-point-nav {
        position: absolute;
        top: 50%;
        left: 5%;
        width: 90%;
        z-index: 10;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(10px);
        padding: 10px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .top-about-title {
        width: 150px;
        margin: 0 auto 10px;
    }

    .nav-item {
        display: none;
    }

    .nav-item.is-active {
        display: block;
        width: 100%;
    }

    .nav-item-title {
        font-size: 1.3rem;
        color: #e60018;
        font-weight: bold;
        -webkit-text-stroke: 1.5px #fff;
        text-stroke: 1.5px #fff;
        paint-order: stroke;
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    }

    .nav-item-text {
        font-size: 1rem;
        color: #000;
        max-height: none;
        opacity: 1;
        margin-top: 8px;
    }

    .nav-item::before {
        left: 50%;
        margin-left: -157px;
        top: -10px;
        width: 80px;
        height: 40px;
    }
} */