@charset "UTF-8";

:root {
    /* カラーパレット */
    --hisblue: #005A9C;
    --hisblue-light: #4da4e0;
    --nakamagreen: #059669;
    --sapoorange: #ea580c;
    --accent-yellow: #fde047;
    --bg-base: #fdfdfd;
    --bg-sub: #f0f7ff;
    --text-main: #333333;
    --text-light: #555555;
}

/* リセット & ベース */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-base);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* 共通レイアウト */
.container { width: 100%; padding: 0 20px; margin: 0 auto; position: relative; }

/* ワクワクする波型の区切り線 */
.wave-top {
    position: absolute; top: -1px; left: 0; width: 100%; overflow: hidden; line-height: 0; transform: rotate(180deg);
}
.wave-bottom {
    position: absolute; bottom: -1px; left: 0; width: 100%; overflow: hidden; line-height: 0;
}
.wave-svg { position: relative; display: block; width: calc(100% + 1.3px); height: 40px; }
.wave-svg path { fill: var(--bg-base); }
.bg-sub-wave path { fill: var(--bg-sub); }

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 90, 156, 0.1);
    position: fixed; width: 100%; top: 0; z-index: 100; height: 70px; display: flex; align-items: center;
}
.header .container { display: flex; justify-content: space-between; align-items: center; }
.header-logo {
    font-size: 24px; font-weight: 900; color: var(--hisblue); display: flex; align-items: center; letter-spacing: -1px;
}
.header-logo img {
    height: 35px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}
.header-logo-text { display: none; }
.btn-reserve {
    background: linear-gradient(135deg, #ff8a00, var(--sapoorange));
    color: #ffffff; font-weight: 800; padding: 10px 20px; border-radius: 9999px; font-size: 14px;
    box-shadow: 0 4px 0 #c2410a, 0 8px 15px rgba(234, 88, 12, 0.3);
    display: flex; align-items: center; gap: 8px; transition: all 0.2s ease;
}
.btn-reserve:active { transform: translateY(4px); box-shadow: 0 0 0 #c2410a, 0 4px 8px rgba(234, 88, 12, 0.3); }

/* Hero Section */
.hero {
    margin-top: 70px; min-height: calc(100vh - 70px); position: relative;
    display: flex; flex-direction: column; justify-content: center; overflow: hidden;
}

.hero-bg-slider {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    z-index: 0;
    background-color: #333;
}

.hero-bg-slider .slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0;
    animation: crossfade 18s infinite linear;
}

.hero-bg-slider .slide1 { background-image: url("../images/top.jpg"); animation-delay: 0s; }
.hero-bg-slider .slide2 { background-image: url("../images/top2.jpg"); animation-delay: 6s; }
.hero-bg-slider .slide3 { background-image: url("../images/top3.jpg"); animation-delay: 12s; }

@keyframes crossfade {
    0% { opacity: 0; transform: scale(1); }
    8% { opacity: 1; }
    33% { opacity: 1; }
    41% { opacity: 0; }
    100% { opacity: 0; transform: scale(1.1); }
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.2) 100%); 
    z-index: 1;
}

.hero .container { z-index: 2; position: relative; }
.hero .wave-bottom { z-index: 3; position: absolute; }

.hero-content { padding: 40px 0; text-align: center; }

.hero-h1 {
    font-size: 14px; font-weight: 700; color: #1f2937; margin-bottom: 12px;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.8); letter-spacing: 0.5px;
}

.hero-badge {
    display: inline-block; background-color: var(--hisblue); color: #fff; font-weight: 800;
    padding: 8px 20px; border-radius: 9999px; font-size: 14px; margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 90, 156, 0.3); border: 2px solid #fff;
}
.hero-title {
    font-size: 32px; font-weight: 900; color: var(--hisblue); line-height: 1.3; margin-bottom: 24px;
    text-shadow: 2px 2px 0px #fff, -2px -2px 0px #fff, 2px -2px 0px #fff, -2px 2px 0px #fff, 0 8px 15px rgba(0,0,0,0.1);
}
.hero-title span.catch {
    display: inline-block; background: linear-gradient(transparent 60%, var(--accent-yellow) 60%);
    padding: 0 5px; color: var(--text-main); font-size: 28px; margin-top: 10px;
}

/* Intro Section (想い) */
.intro { padding: 80px 0; background-color: var(--bg-base); position: relative; }
.section-title {
    font-size: 28px; font-weight: 800; color: var(--hisblue); text-align: center; margin-bottom: 40px;
    position: relative; display: flex; justify-content: center; align-items: center; margin-left: auto; margin-right: auto; width: fit-content;
}
.section-title i { color: var(--accent-yellow); position: absolute; top: -20px; left: -20px; font-size: 32px; transform: rotate(-15deg); z-index: -1;}
.section-title::after {
    content: ''; position: absolute; bottom: -10px; left: 0; width: 100%; height: 6px;
    background-color: var(--hisblue-light); border-radius: 3px; opacity: 0.3;
}
.intro-box {
    background: #fff; border-radius: 20px; padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 2px dashed #bfdbfe; text-align: center;
}
.intro-box p { font-size: 16px; margin-bottom: 20px; color: var(--text-main); text-align: left; }
.intro-highlight {
    background-color: var(--bg-sub); padding: 20px; border-radius: 12px; font-weight: 700; color: var(--hisblue);
    font-size: 18px; position: relative;
}

/* Products Section (ツアー紹介) */
.products { padding: 100px 0 80px; background-color: var(--bg-sub); position: relative; }
.products-header { text-align: center; margin-bottom: 50px; }
.products-header p { margin-top: 10px; font-weight: 700; color: var(--text-light); }

.product-card {
    background: #fff; border-radius: 24px; padding: 20px; margin-bottom: 60px;
    box-shadow: 0 15px 35px rgba(0, 90, 156, 0.08); position: relative; transition: transform 0.3s ease;
}
.product-card:hover { transform: translateY(-5px); }

.card-img-wrap {
    position: relative; border-radius: 16px; overflow: hidden; height: 220px; margin-bottom: 24px;
    box-shadow: inset 0 0 0 4px rgba(255,255,255,0.5);
}
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .card-img-wrap img { transform: scale(1.05); }

.card-tag {
    position: absolute; top: -15px; left: 20px; background: #339900; color: #fff;
    padding: 8px 16px; border-radius: 9999px; font-weight: 800; font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15); border: 2px solid #fff; z-index: 2;
}
.tag-blue { background: var(--hisblue); }
.tag-orange { background: var(--sapoorange); }

.card-title-area { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.card-icon {
    width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #fff; flex-shrink: 0; box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.icon-green { background: linear-gradient(135deg, #10b981, var(--nakamagreen)); }
.icon-blue { background: linear-gradient(135deg, #3b82f6, var(--hisblue)); }
.icon-orange { background: linear-gradient(135deg, #f97316, var(--sapoorange)); }

.card-title { font-size: 26px; font-weight: 900; letter-spacing: 1px; color: #339900;}
.title-green { color: var(--nakamagreen); }
.title-blue { color: var(--hisblue); }
.title-orange { color: var(--sapoorange); }

.card-catch { font-size: 18px; font-weight: 800; margin-bottom: 15px; border-bottom: 2px dotted #e5e7eb; padding-bottom: 10px; }
.card-text { font-size: 15px; color: var(--text-light); margin-bottom: 20px; }

.btn-wrapper { text-align: center; margin-top: auto; width: 100%; padding-top: 10px; }
.card-link {
    display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 16px;
    padding: 10px 24px; border-radius: 9999px; background-color: #f3f4f6; transition: all 0.2s; color: #339900;
}
.link-green { color: var(--nakamagreen); } .link-green:hover { background-color: #d1fae5; }
.link-blue { color: var(--hisblue); } .link-blue:hover { background-color: #dbeafe; }
.link-orange { color: var(--sapoorange); } .link-orange:hover { background-color: #ffedd5; }

/* Flow Section (ワクワクするタイムライン) */
.flow { padding: 100px 0 80px; background-color: var(--bg-base); position: relative; }
.flow-header { text-align: center; margin-bottom: 50px; }

.flow-support-text {
    font-weight: 900; font-size: 20px; color: #ef4444; margin-top: 20px; line-height: 1.5;
}

.flow-path { position: relative; padding: 20px 0 20px 30px; }
.flow-path::before {
    content: ''; position: absolute; top: 0; left: 28px; width: 4px; height: 100%;
    border-left: 4px dashed var(--hisblue-light); z-index: 1;
}

.flow-step {
    position: relative; background: #fff; border-radius: 16px; padding: 24px; margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04); border: 2px solid #f0f7ff; z-index: 2; margin-left: 40px;
}
.flow-step::before {
    content: ''; position: absolute; top: 50%; left: -40px; width: 40px; height: 4px;
    border-top: 4px dashed var(--hisblue-light); transform: translateY(-50%); z-index: 1;
}

.step-marker {
    position: absolute; top: 50%; left: -60px; transform: translateY(-50%);
    width: 40px; height: 40px; background: var(--hisblue); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 20px;
    border: 4px solid #fff; box-shadow: 0 4px 8px rgba(0,0,0,0.1); z-index: 3;
}
.step-marker-goal { background: var(--sapoorange); font-size: 18px; }
.step-title { font-size: 20px; font-weight: 800; color: var(--hisblue); margin-bottom: 10px; }
.step-desc { font-size: 15px; color: var(--text-main); }
.step-point {
    margin-top: 12px; background: #fffbeb; padding: 12px 15px; border-radius: 12px;
    font-size: 13px; font-weight: 700; color: #b45309; border-left: 4px solid var(--accent-yellow);
}

/* ご準備案内セクション */
.prep-box {
    background: #fff; border-radius: 16px; padding: 30px; margin-top: 50px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04); border: 2px solid var(--hisblue-light);
    text-align: center;
}
.prep-title { font-size: 18px; font-weight: 800; color: var(--text-main); margin-bottom: 25px; }
.prep-list { display: flex; flex-direction: column; gap: 25px; text-align: left; }
.prep-item { display: flex; flex-direction: column; gap: 10px; }
.btn-prep {
    background: var(--bg-sub); color: var(--hisblue); font-weight: 700; padding: 15px 20px; border-radius: 8px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
    border: 2px solid var(--hisblue-light); font-size: 16px; width: 100%;
}
.btn-prep-left { display: flex; align-items: center; gap: 10px; }
.btn-prep-logos { display: flex; align-items: center; gap: 10px; }
.btn-prep-logos img { height: 26px; width: auto; object-fit: contain;  padding: 2px 6px; border-radius: 4px; }
.prep-desc { font-size: 14px; color: var(--text-main); line-height: 1.6; padding-left: 5px; }
.prep-desc strong { color: var(--hisblue); font-size: 15px; }
.prep-desc.text-red { color: #ef4444; font-weight: 700; }
.prep-note { color: var(--sapoorange); font-weight: 700; margin-top: 25px !important; text-align: center; font-size: 14px; }

/* 3カラムギャラリー (既存) */
.flow-gallery { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; }
.gallery-item img { width: 100%; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.gallery-caption { text-align: center; font-weight: 700; color: var(--text-main); margin-top: 10px; font-size: 15px; }

/* 特徴枠 (旧グッズ枠) */
.goods-box {
    background: linear-gradient(135deg, #fffbeb, #fef3c7); border-radius: 16px; padding: 30px; margin-top: 30px;
    border: 2px solid var(--accent-yellow); text-align: center; position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.goods-tag {
    display: inline-block; background: var(--sapoorange); color: #fff; font-weight: 800; padding: 5px 15px;
    border-radius: 9999px; font-size: 13px; margin-bottom: 15px;
}
.goods-title { font-size: 15px; font-weight: 800; color: var(--text-main); line-height: 1.8; }

/* 特徴3カラム */
.feature-grid { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
.feature-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.05); border: 2px solid var(--hisblue-light); }
.feature-img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.feature-body { padding: 15px; }
.feature-title { font-size: 16px; font-weight: 800; color: var(--hisblue); margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: var(--text-main); line-height: 1.6; }

/* FAQ Section */
.faq { padding: 100px 0 80px; background-color: var(--bg-sub); position: relative; }
.faq-header { text-align: center; margin-bottom: 50px; }
.faq-list { display: flex; flex-direction: column; gap: 20px; max-width: 800px; margin: 0 auto; margin-bottom: 50px; }
.faq-item { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.faq-q { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; }
.faq-q h3 { font-size: 17px; font-weight: 800; color: var(--hisblue); line-height: 1.5; margin-top: 2px; }
.q-icon { background: var(--sapoorange); color: #fff; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; flex-shrink: 0; font-size: 18px; }
.faq-a { display: flex; align-items: flex-start; gap: 15px; background: var(--bg-sub); padding: 15px 20px; border-radius: 12px; }
.faq-a p { font-size: 14px; color: var(--text-main); line-height: 1.6; margin: 0; }
.a-icon { background: var(--hisblue); color: #fff; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; flex-shrink: 0; font-size: 18px; }

/* Contact Section */
.contact { padding: 100px 0 80px; background-color: var(--bg-base); position: relative; }
.message-box {
    background: #fff; border-radius: 24px; padding: 40px 30px; text-align: center;
    box-shadow: 0 15px 35px rgba(0, 90, 156, 0.08); position: relative; margin-top: 60px;
    border: 2px solid var(--bg-sub);
}
.staff-avatars-wrap {
    position: absolute; top: -60px; left: 0; width: 100%;
    display: flex; justify-content: center; gap: 15px;
}
.staff-avatar {
    width: 120px; height: 120px; border-radius: 50%; border: 6px solid #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    background-color: #e5e7eb; background-size: cover; background-position: center;
}

.contact-title { font-size: 26px; font-weight: 900; color: var(--hisblue); margin: 30px 0 20px; }
.contact-desc { font-size: 16px; font-weight: 700; color: var(--text-main); margin-bottom: 30px; }
.check-list { display: inline-block; text-align: left; margin-bottom: 30px; background: #f8fafc; padding: 20px; border-radius: 16px;}
.check-list li { font-weight: 700; color: var(--text-main); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.check-list i { color: var(--sapoorange); font-size: 20px; }
.store-card { background: #f0f7ff; border: 3px solid #bfdbfe; border-radius: 20px; padding: 30px 20px; }
.store-name { font-size: 20px; font-weight: 900; color: var(--hisblue); margin-bottom: 10px; }

.contact-methods { display: flex; flex-direction: column; gap: 20px; margin: 30px 0; }
.method-item { background: #fff; padding: 15px; border-radius: 16px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.method-label { font-size: 14px; font-weight: 700; color: var(--text-light); margin-bottom: 5px; }
.method-number { font-size: 22px; font-weight: 900; color: var(--hisblue); letter-spacing: 0; font-family: 'Noto Sans JP', sans-serif; white-space: nowrap; }
.store-hours { font-weight: 700; font-size: 14px; color: var(--text-light); }
.store-hours span { color: #ef4444; }

/* Channels Section */
.channels { padding: 80px 0; background-color: var(--bg-base); }
.channels-grid { display: flex; flex-direction: column; gap: 20px; }
.channel-card {
    background: #fff; border-radius: 16px; padding: 20px; display: flex; align-items: center; gap: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); border: 2px solid transparent; transition: all 0.2s;
    height: 100%;
}
.channel-card:hover { border-color: var(--hisblue-light); transform: translateY(-3px); }
.ch-icon {
    width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: #fff; flex-shrink: 0; background: transparent !important;
}
.ch-icon img { width: 100%; height: 100%; object-fit: contain; }
.ch-title { font-size: 18px; font-weight: 800; margin-bottom: 5px; }
.ch-desc { font-size: 13px; color: var(--text-light); }

/* YouTube Section */
.youtube-info { padding: 80px 0; background-color: var(--bg-sub); }
.yt-official-btn {
    display: block; width: 90%; max-width: 450px; margin: 0 auto 40px;
    background-color: #ff0000; color: #ffffff; text-align: center;
    font-size: 18px; font-weight: 900; padding: 18px 20px; border-radius: 8px;
    box-shadow: 0 4px 10px rgba(255,0,0,0.3); transition: transform 0.2s, background-color 0.2s;
    text-decoration: none; line-height: 1.4;
}
.yt-official-btn:hover { background-color: #d90000; transform: translateY(-3px); }

.yt-section-title { font-size: 24px; font-weight: 900; color: var(--hisblue); text-align: center; margin-bottom: 10px; }
.yt-section-sub { text-align: center; font-weight: 700; color: var(--text-light); margin-bottom: 40px; font-size: 15px; }
.yt-category-title {
    font-size: 20px; font-weight: 800; color: var(--text-main);
    border-left: 6px solid #059669; padding-left: 12px; margin: 40px 0 20px;
    display: flex; align-items: center; gap: 8px;
}
.yt-category-title.live {
    border-left-color: #3b82f6; color: #1e40af; justify-content: center; border-left: none;
    font-size: 22px; margin-top: 60px; text-align: center;
}
.yt-grid { display: flex; flex-direction: column; gap: 20px; align-items: stretch; }

.yt-card-new {
    background: #fff; border-radius: 12px; overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06); transition: transform 0.2s;
    display: flex; flex-direction: column; text-decoration: none; height: 100%;
}
.yt-card-new:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }

.yt-thumb-new { position: relative; aspect-ratio: 16 / 9; background: #fff; overflow: hidden; flex-shrink: 0; }
.yt-thumb-new img { 
    width: 100%; height: 100%; object-fit: cover; opacity: 0.9; 
    transform: scale(1.35); transition: transform 0.3s; 
}
.yt-card-new:hover .yt-thumb-new img { transform: scale(1.42); }

.yt-play-icon {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: rgba(255, 0, 0, 0.9); color: #fff; width: 60px; height: 40px;
    border-radius: 10px; display: flex; justify-content: center; align-items: center;
    font-size: 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.3); transition: background 0.2s, transform 0.2s;
}
.yt-card-new:hover .yt-play-icon { background: #ff0000; transform: translate(-50%, -50%) scale(1.1); }

.yt-title-new {
    padding: 12px 15px; font-size: 14px; font-weight: 700; color: var(--text-main);
    line-height: 1.5; flex-grow: 1; display: flex; align-items: center;
    background: #fff; border-top: 1px solid #f3f4f6; position: relative; z-index: 2;
}
.yt-card-new:hover .yt-title-new { color: var(--hisblue); }

.yt-card-dummy {
    background: #f9fafb; border-radius: 12px; overflow: hidden;
    border: 2px dashed #d1d5db; display: flex; flex-direction: column; height: 100%;
}
.yt-thumb-dummy {
    aspect-ratio: 16 / 9; background: #e5e7eb; display: flex; justify-content: center; align-items: center; 
    color: #6b7280; font-weight: 800; font-size: 16px; flex-shrink: 0;
}
.yt-title-dummy {
    padding: 12px 15px; font-size: 14px; font-weight: 700; color: #9ca3af;
    line-height: 1.5; flex-grow: 1; display: flex; align-items: center;
    background: #f9fafb; border-top: 1px dashed #d1d5db;
}

.btn-main {
    background: linear-gradient(135deg, #ff8a00, var(--sapoorange)); color: #ffffff;
    font-weight: 800; padding: 18px 40px; border-radius: 9999px; font-size: 20px;
    display: inline-flex; justify-content: center; align-items: center; gap: 10px; width: 90%; max-width: 380px;
    box-shadow: 0 6px 0 #c2410a, 0 10px 20px rgba(234, 88, 12, 0.4); transition: all 0.2s; border: 3px solid #fff;
}
.btn-main:active { transform: translateY(6px); box-shadow: 0 0 0 #c2410a, 0 4px 10px rgba(234, 88, 12, 0.4); }

/* Footer New */
.footer-new { width: 100%; position: relative; font-family: 'Noto Sans JP', sans-serif; }
.footer-top { background-color: #003a8c; padding: 20px 0; text-align: center; }
.footer-middle { background-color: #00b0f0; padding: 25px 0; }
.footer-bottom { background-color: #333333; padding: 20px 0; text-align: center; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; justify-content: flex-start; align-items: center; }
.footer-links li { position: relative; padding: 5px 12px; }
.footer-links li:not(:last-child)::after {
    content: '|'; position: absolute; right: 0; color: #ffffff; font-size: 12px; top: 50%; transform: translateY(-50%);
}
.footer-links a { color: #ffffff; font-size: 13px; font-weight: normal; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-middle-row { display: flex; align-items: flex-start; justify-content: center; margin-bottom: 15px; flex-wrap: wrap; }
.footer-middle-row:last-child { margin-bottom: 0; }
.footer-middle-title { color: #FFFF00; font-weight: normal; font-size: 15px; margin-right: 15px; white-space: nowrap; flex-shrink: 0; padding-top: 4px; }
.footer-copy { color: #ffffff; font-size: 13px; margin: 0; }
.page-top-btn {
    position: absolute; bottom: 20px; right: 20px; width: 60px; height: 60px;
    background-color: rgba(255, 255, 255, 0.7); border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: #333; font-size: 10px; font-weight: bold; box-shadow: 0 4px 6px rgba(0,0,0,0.1); transition: background-color 0.2s;
}
.page-top-btn:hover { background-color: rgba(255, 255, 255, 0.9); }
.page-top-btn i { font-size: 20px; margin-bottom: 2px; }

/* =========================================
   ヘッダー＆パンくずリスト共通設定
========================================= */
.header {
    display: block !important; /* 横並びエラーの解除 */
    height: auto !important;   /* 影の中に収めるための自動調整 */
    padding: 0 !important;
}
.header > .container:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 70px; /* 元のロゴエリアの高さを維持 */
}
.hero { margin-top: 115px !important; } /* ヘッダーが大きくなった分、下の画像をズラす */

.breadcrumb-wrapper {
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb; /* ロゴエリアとの境界線 */
    width: 100%;
}
.breadcrumb {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
}
.breadcrumb-list {
    display: flex !important;
    align-items: center;
    flex-wrap: wrap; /* 画面が狭い時に折り返せるように */
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 8px;
    color: #4b5563;
}
.breadcrumb-item { font-weight: 500; }
.breadcrumb-link { color: #3b82f6; text-decoration: none; }
.breadcrumb-link:hover { text-decoration: underline; }
.breadcrumb-separator { color: #9ca3af; }

/* =========================================
   改行コントロール用ユーティリティクラス
========================================= */
/* PCサイズ (768px以上) の設定 */
@media screen and (min-width: 768px) {
    .br-sp { display: none !important; }  /* スマホ用改行を非表示 */
    .br-pc { display: block !important; } /* PC用改行を表示 */
}

/* SPサイズ (767px以下) の設定 */
@media screen and (max-width: 767px) {
    .br-sp { display: block !important; } /* スマホ用改行を表示 */
    .br-pc { display: none !important; }  /* PC用改行を非表示 */
}