.global-header { background-color: #ffffff; display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); position: relative; z-index: 100; }
.header-logo img { height: 32px; width: auto; display: block; }
.header-btn { background-color: var(--egypt-orange); color: #ffffff; padding: 8px 12px; font-size: 0.8rem; font-weight: bold; border-radius: 4px; transition: 0.3s; white-space: nowrap; }
.header-btn:hover { background-color: var(--egypt-brown); }

/* 新：ナビゲーションメニュー (SPはハンバーガーメニュー) */
.nav-menu { background-color: var(--egypt-brown); position: sticky; top: 0; z-index: 999; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.nav-header { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; color: #fff; font-weight: bold; background-color: var(--egypt-brown); letter-spacing: 0.1em; }
.hamburger { background: none; border: none; cursor: pointer; padding: 0; width: 30px; height: 20px; position: relative; z-index: 1000; }
.hamburger span { display: block; width: 100%; height: 2px; background-color: #fff; position: absolute; transition: all 0.3s ease; }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { bottom: 18px; }
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav-menu ul { display: none; list-style: none; padding: 0; margin: 0; flex-direction: column; background-color: var(--egypt-brown); position: absolute; top: 100%; left: 0; width: 100%; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.nav-menu ul.open { display: flex; }
.nav-menu li { border-top: 1px solid rgba(255,255,255,0.1); }
.nav-menu a { display: block; padding: 15px 16px; color: #fff; font-weight: bold; font-size: 1rem; text-decoration: none; transition: background 0.3s; text-align: center; }
.nav-menu a:hover, .nav-menu a:active { background-color: var(--egypt-orange); }

/* Hero Slider */
.hero { position: relative; width: 100%; height: 80vh; min-height: 500px; display: flex; flex-direction: column; justify-content: center; align-items: center; color: #fff; text-align: center; padding: 1rem; overflow: hidden; }
.hero-bg-slider { position: absolute; inset: 0; z-index: 0; }
.hero-bg-slider .slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; animation: fadeSlider 15s infinite; }
.slide1 { background-image: url("../images/top01.jpg"); animation-delay: 0s !important; }
.slide2 { background-image: url("../images/top02.jpg"); ; animation-delay: 5s !important; }
.slide3 { background-image: url("../images/top03.jpg"); ; animation-delay: 10s !important; }

@keyframes fadeSlider {
    0% { opacity: 0; }
    10% { opacity: 1; transform: scale(1); }
    33% { opacity: 1; }
    43% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; transform: scale(1.05); }
}

.hero .overlay-dark { z-index: 1; background: rgba(84, 43, 11, 0.4); }
.hero-content { position: relative; z-index: 10; max-width: 860px; }
.hero-lead { font-size: 1.1rem; font-weight: bold; margin-bottom: 1rem; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.hero-title { font-size: 2rem; font-weight: 900; line-height: 1.3; text-shadow: 0 4px 10px rgba(0,0,0,0.8); margin-bottom: 1.5rem; border-bottom: 2px solid var(--egypt-gold); padding-bottom: 1rem; display: inline-block; }
.hero-desc { font-size: 1rem; text-shadow: 0 2px 4px rgba(0,0,0,0.8); background: rgba(0,0,0,0.4); padding: 1rem; border-radius: 8px; }

/* 新：ツアー情報 */
.tour-section { background-color: var(--egypt-sand); }
.tour-card { display: block; text-decoration: none; color: inherit; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 20px rgba(142, 68, 20, 0.15); border: 2px solid var(--egypt-gold); margin: 0 auto; max-width: 800px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.tour-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(142, 68, 20, 0.25); }
.tour-img { width: 100%; }
.tour-img img { width: 100%; height: auto; display: block; }
.tour-content { padding: 1.5rem; }
.tour-badge { display: inline-block; background-color: #2c3e50; color: #fff; padding: 4px 12px; border-radius: 4px; font-size: 0.85rem; font-weight: bold; margin-bottom: 0.5rem; }
.tour-title { font-size: 1.25rem; font-weight: 900; color: var(--egypt-brown); margin-top: 0; margin-bottom: 1rem; line-height: 1.4; border-bottom: 1px dashed var(--egypt-sand-dark); padding-bottom: 1rem; }
.tour-meta { background: #f8fafc; padding: 1rem; border-radius: 8px; margin-bottom: 1rem; font-size: 0.95rem; }
.tour-meta dt { float: left; width: 5em; font-weight: bold; color: #555; clear: both; }
.tour-meta dd { margin-left: 5em; margin-bottom: 0.5rem; }
.tour-meta dd:last-child { margin-bottom: 0; }
.tour-price { font-size: 1.4rem; color: #e11d48; font-weight: bold; }
.tour-point { background: rgba(226, 168, 69, 0.1); border-left: 4px solid var(--egypt-orange); padding: 1rem; font-size: 0.95rem; }
.tour-point span { display: block; font-weight: bold; color: var(--egypt-orange); margin-bottom: 0.25rem; }

/* 不安チェックリスト */
.worry-section { background-color: #fff; position: relative; }
.worry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
@media (max-width: 480px) { .worry-grid { grid-template-columns: 1fr; } }
.worry-item { background: #2c3e50; border-radius: 12px; padding: 1.5rem 1rem; text-align: center; box-shadow: 0 8px 15px rgba(0,0,0,0.15); border-bottom: 4px solid #1a252f; display: flex; flex-direction: column; justify-content: flex-start; align-items: center; }
.worry-icon { font-size: 2.5rem; color: #f1c40f; margin-bottom: 1rem; }
.worry-item p { font-weight: bold; color: #ffffff; margin: 0; font-size: 1.05rem; line-height: 1.6; }
.solution-box-full { background: linear-gradient(135deg, var(--egypt-brown), var(--egypt-orange)); color: #fff; padding: 2.5rem 1.5rem; border-radius: 12px; text-align: center; box-shadow: 0 15px 30px rgba(142, 68, 20, 0.3); max-width: 900px; margin: 0 auto; }
.solution-box-full h3 { color: #fff000; margin-top: 0; font-size: 1.4rem; margin-bottom: 1rem; line-height: 1.4; }
.solution-box-full p { font-size: 1rem; margin: 0; line-height: 1.8; text-align: left; }

/* 選ばれる理由 */
.reason-section { background-color: var(--egypt-sand); }
.reason-card { margin-bottom: 3rem; }
.reason-img { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,0.1); margin-bottom: 1.5rem; position: relative; }
.reason-img::after { content: ''; position: absolute; top: 10px; left: 10px; right: -10px; bottom: -10px; border: 2px solid var(--egypt-gold); border-radius: 12px; z-index: -1; }
.reason-content h3 { font-size: 1.3rem; color: var(--egypt-brown); border-left: 5px solid var(--egypt-orange); padding-left: 12px; margin-bottom: 1rem; }
.reason-content p { color: #555; }

/* ランキング */
.ranking-section { background-color: #fff; }
.rank-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.08); margin-bottom: 2.5rem; position: relative; border-top: 4px solid var(--egypt-gold); }
.rank-crown { position: absolute; top: 0; left: 15px; color: #fff; font-size: 1.2rem; font-weight: bold; padding: 10px 15px; border-radius: 0 0 8px 8px; z-index: 10; box-shadow: 0 4px 8px rgba(0,0,0,0.2); }
.rank-1-bg { background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%); }
.rank-2-bg { background: linear-gradient(135deg, #e2e8f0 0%, #718096 100%); }
.rank-3-bg { background: linear-gradient(135deg, #f6ad55 0%, #9c4221 100%); }
.rank-img { height: 260px; position: relative; }
.rank-img img { width: 100%; height: 100%; object-fit: cover; }
.rank-content { padding: 2rem 1.5rem 1.5rem; }
.rank-content h3 { font-size: 1.4rem; color: var(--egypt-brown); margin-top: 0; margin-bottom: 1rem; }
.bf-point { background: var(--egypt-sand); padding: 1.2rem; border-radius: 8px; border-left: 4px solid var(--egypt-orange); font-size: 1rem; line-height: 1.7; }
.bf-point span { display: block; font-weight: bold; color: var(--egypt-orange); margin-bottom: 0.5rem; font-size: 1.1rem; }

/* 新：観光スポット・グルメグリッド */
.grid-4, .grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.card-box { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 6px 15px rgba(0,0,0,0.05); transition: transform 0.3s; }
.card-box:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.card-box-img { height: 220px; overflow: hidden; }
.card-box-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card-box:hover .card-box-img img { transform: scale(1.05); }
.card-box-content { padding: 1.5rem; }
.card-box-title { font-size: 1.2rem; font-weight: bold; color: var(--egypt-brown); margin-top: 0; margin-bottom: 0.75rem; border-bottom: 2px solid var(--egypt-gold); padding-bottom: 0.5rem; display: inline-block; }
.card-box-desc { font-size: 0.95rem; color: #555; margin: 0; }

/* --- SP横スクロール用（PC向けメディアクエリの前に配置） --- */
.sp-horizontal-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
}
/* スクロールバーの見た目（控えめにする） */
.sp-horizontal-scroll::-webkit-scrollbar { height: 6px; }
.sp-horizontal-scroll::-webkit-scrollbar-thumb { background: var(--egypt-gold); border-radius: 3px; }
.sp-horizontal-scroll::-webkit-scrollbar-track { background: var(--egypt-sand-dark); border-radius: 3px; }

.sp-horizontal-scroll > .card-box {
    /* スマホ画面の82%の幅にして、次のカードを少しチラ見せする */
    min-width: 82%; 
    scroll-snap-align: center;
}

/* スワイプ案内のテキスト */
.scroll-hint {
    text-align: right;
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--egypt-orange);
    margin-bottom: 0.5rem;
    animation: bounceX 1.5s infinite;
}
@keyframes bounceX {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* 行程表 */
.schedule-section { background-color: #fff; }
.schedule-grid { display: flex; flex-direction: column; gap: 2rem; }
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; top: 0; bottom: 0; left: 11px; width: 2px; background: var(--egypt-sand-dark); }
.tl-item { position: relative; margin-bottom: 2rem; }
.tl-item::before { content: ''; position: absolute; left: -26px; top: 5px; width: 14px; height: 14px; border-radius: 50%; background: var(--egypt-gold); border: 3px solid #fff; box-shadow: 0 0 0 1px var(--egypt-gold); }
.tl-header { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 0.5rem; }
.tl-day { font-weight: 900; color: var(--egypt-brown); font-family: 'Noto Serif JP', serif; font-size: 1.2rem; }
.tl-type { background: var(--egypt-orange); color: #fff; font-size: 0.8rem; padding: 2px 8px; border-radius: 4px; font-weight: bold; }
.tl-desc { font-size: 0.95rem; color: #333; margin: 0 0 0.5rem 0; line-height: 1.7; }
.tl-stay { display: inline-block; font-size: 0.85rem; background: var(--egypt-sand); color: var(--egypt-brown); padding: 4px 10px; border-radius: 4px; font-weight: bold; border: 1px solid var(--egypt-sand-dark); }
.map-box { background: var(--egypt-sand); border-radius: 12px; padding: 1rem; text-align: center; }
.map-box img { border-radius: 8px; border: 1px solid var(--egypt-sand-dark); }

/* 中間パララックス */
.divider-parallax { height: 40vh; min-height: 300px; background-image: url("../images/back02.jpg"); display: flex; align-items: center; justify-content: center; }
.divider-text { position: relative; z-index: 10; color: #fff; font-size: 1.5rem; font-weight: bold; text-align: center; text-shadow: 0 4px 10px rgba(0,0,0,0.8); }

/* 新：基本情報・気候・持ち物 */
.basic-info-section { background-color: #fff; }
.info-list-wrap { border: 1px solid var(--egypt-sand-dark); border-radius: 8px; overflow: hidden; margin-bottom: 3rem; }
.info-dl { display: flex; flex-wrap: wrap; margin: 0; }
.info-dl dt { width: 100%; padding: 1rem; background: var(--egypt-sand); font-weight: bold; color: var(--egypt-brown); border-bottom: 1px solid #fff; }
.info-dl dd { width: 100%; padding: 1rem; margin: 0; border-bottom: 1px solid var(--egypt-sand-dark); color: #444; }
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 0.5rem; border-radius: 8px; border: 1px solid var(--egypt-sand-dark); }
.climate-table { width: 100%; min-width: 700px; border-collapse: collapse; text-align: center; font-size: 0.9rem; }
.climate-table th, .climate-table td { border: 1px solid var(--egypt-sand-dark); padding: 10px 5px; }
.climate-table th { background-color: var(--egypt-sand); color: var(--egypt-brown); font-weight: bold; }
.climate-table tr:nth-child(even) td { background-color: #fcf9f5; }
.text-red { color: #e11d48; }
.text-blue { color: #2563eb; }

.belongings-box { background: var(--egypt-sand); padding: 1.5rem; border-radius: 12px; }
.belongings-list { list-style: none; padding: 0; margin: 0; }
.belongings-list li { position: relative; padding-left: 1.8rem; margin-bottom: 1.2rem; font-size: 0.95rem; color: #444; break-inside: avoid; page-break-inside: avoid; }
.belongings-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--egypt-orange); position: absolute; left: 0; top: 2px; }
.belongings-title { font-weight: bold; color: var(--egypt-brown); display: inline-block; margin-bottom: 0.2rem; }

/* FAQ */
.faq-section { background-color: var(--egypt-sand); }
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.03); }
.faq-item summary { padding: 1rem; font-weight: bold; color: var(--egypt-brown); cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--egypt-orange); transition: transform 0.3s; }
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-content { padding: 0 1rem 1rem 1rem; font-size: 0.95rem; color: #555; border-top: 1px dashed var(--egypt-sand-dark); margin-top: 0.5rem; padding-top: 1rem; }
.faq-q, .faq-a { font-weight: 900; margin-right: 8px; font-size: 1.1rem; }
.faq-q { color: var(--egypt-brown); }
.faq-a { color: var(--egypt-orange); }

/* お客様の声 */
.voice-section { background-color: #fff; }
.voice-card { background: var(--egypt-sand); padding: 1.5rem; border-radius: 12px; margin-bottom: 1.5rem; position: relative; }
.voice-img { width: 100%; height: 200px; border-radius: 8px; overflow: hidden; margin-bottom: 1rem; }
.voice-img img { width: 100%; height: 100%; object-fit: cover; }
.voice-header { display: flex; align-items: center; margin-bottom: 1rem; border-bottom: 1px solid var(--egypt-sand-dark); padding-bottom: 0.5rem; }
.voice-header h4 { margin: 0; color: var(--egypt-brown); font-size: 1.1rem; }
.voice-type { font-size: 0.8rem; background: #fff; border: 1px solid var(--egypt-orange); color: var(--egypt-orange); padding: 2px 8px; border-radius: 4px; margin-left: 10px; }
.voice-text { font-size: 0.95rem; color: #444; line-height: 1.7; }

/* CTA */
.cta-section { 
    padding: 4rem 1rem; text-align: center; color: #fff; position: relative; overflow: hidden;
    background-image: url("../images/back.jpg");
    background-size: cover; background-position: center; background-attachment: fixed;
}
@supports (-webkit-touch-callout: none) { .cta-section { background-attachment: scroll; } }
.cta-overlay { position: absolute; inset: 0; background: rgba(142, 68, 20, 0.7); z-index: 1; }
.cta-content { position: relative; z-index: 10; }
.cta-box { background: rgba(255,255,255,0.15); backdrop-filter: blur(5px); padding: 2rem; border-radius: 16px; border: 1px solid rgba(255,255,255,0.3); margin-bottom: 2rem; }

/* フッター */
.footer-menu { background-color: var(--footer-bg-color); padding: 40px 0px 10px 0px; text-align: center; }
.footer-menu h3 { font-size: 1.25rem; margin-top: 0; margin-bottom: 1.5rem; font-weight: bold; color: var(--footer-text-color); }
.footer-links { list-style: none; padding: 0; margin: 0 0 30px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 16px; }
.footer-links li { display: inline-flex; align-items: center; }
.footer-links a { color: var(--footer-text-color); font-size: 0.95rem; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { opacity: 0.7; text-decoration: underline; }
.footer-copyright { background-color: var(--footer-bg-color); color: rgba(255,255,255,0.6); text-align: center; padding: 1.5rem 1rem; font-size: 0.875rem; margin: 0; }