@charset "UTF-8";

/* ==============================================================
   モバイル向けコンポーネント・レイアウトスタイル
   ============================================================== */

/* グローバルヘッダー */
.global-header {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: relative;
    z-index: 100;
}
.header-logo img {
    height: 40px;
    width: auto;
    display: block;
}
/* ↓既存の .header-btn を上書き */
.header-btn {
    display: inline-block; /* ←追加：要素のはみ出しを防ぐ */
    background-color: #00bced;
    color: #ffffff;
    padding: 8px 12px; /* ←変更：スマホ向けに余白を少し小さく */
    font-size: 0.8rem; /* ←変更：文字を少し小さく */
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
    text-align: center;
    line-height: 1.2;
}

/* ↓すぐ下に新しく追加 */
@media (max-width: 767px) {
    .pc-only-inline {
        display: none; /* スマホ幅の時は「商品についての」を非表示にする */
    }
}
.header-btn:hover {
    background-color: #009ce1;
}

/* Hero Section */
.hero {
    position: relative; width: 100%; height: 75vh; min-height: 500px; display: flex; overflow: hidden;
}
.hero-img {
    width: 50%; height: 100%; background-size: cover; background-position: center; position: relative;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0, 61, 115, 0.3), rgba(0, 156, 225, 0.6));
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    color: #fff; text-align: center; padding: 1rem;
}
.hero-subtitle { font-size: 1.125rem; font-weight: bold; margin-bottom: 1rem; color: #ffffff; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.hero-title { font-size: 2.25rem; font-weight: 900; line-height: 1.2; text-shadow: 0 4px 10px rgba(0,0,0,0.4); }
.hero-title span { color: #ffe600; text-shadow: 0 2px 5px rgba(0,0,0,0.3); }

/* Greetings */
.greeting { background: linear-gradient(180deg, #ffffff 0%, var(--amami-light) 100%); }
.greeting-icon { font-size: 2.5rem; color: var(--amami-blue); margin-bottom: 0.75rem; text-align: center; display: block; }
.greeting p { text-align: left; color: #444; }

/* About ZeroGravity */
.bg-light { background-color: var(--amami-light); position: relative; }
.bg-light::before {
    content: ''; position: absolute; top: -25px; left: 0; right: 0; height: 25px;
    background: linear-gradient(to bottom right, transparent 49%, var(--amami-light) 50%);
}
.about-card { background: #fff; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 15px 30px rgba(0, 156, 225, 0.1); display: flex; flex-direction: column; }
.about-img { position: relative; min-height: 250px; }
.about-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-content { padding: 1.25rem; }
.about-content h3 { font-size: 1.5rem; color: var(--amami-blue); margin-top:0; margin-bottom: 0.5rem; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 0.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 0.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.img-card { position: relative; border-radius: 1rem; overflow: hidden; box-shadow: 0 6px 15px rgba(0,0,0,0.08); aspect-ratio: 4/3; }
.img-card img { width: 100%; height: 100%; object-fit: cover; }

/* Facility Section */
.facility-section .facility-text { margin-bottom: 2rem; text-align: left; }
.facility-section .facility-block { margin-bottom: 3rem; }
.facility-section .grid-4 { gap: 1rem; }
.facility-section .grid-2 { gap: 1rem; }
.villa-block { background: rgba(255,255,255,0.7); padding: 2rem; border-radius: 1.5rem; margin-bottom: 3rem; backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.9); box-shadow: 0 10px 25px rgba(0,0,0,0.03); }

/* Barrier Free */
.bg-sand { background: linear-gradient(135deg, #ffffff 0%, var(--amami-sand) 100%); }

/* Ship Section */
.ship-flex { display: flex; flex-direction: column; gap: 1rem; }
.ship-text { background: #fff; padding: 1rem; border-radius: 1.5rem; border-top: 5px solid var(--amami-blue); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.ship-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

/* Experience */
.bg-green-light { background: linear-gradient(180deg, #ffffff 0%, #e8f5e9 100%); }
.exp-card { background: #fff; border-radius: 1.5rem; padding: 1rem; box-shadow: 0 15px 30px rgba(0, 160, 108, 0.08); margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; border: 1px solid rgba(0, 160, 108, 0.1); }
.exp-card h3 { font-size: 1.5rem; margin-top:0; margin-bottom: 0.5rem; color: #333; }
.exp-note { background: #f0fdf4; padding: 0.75rem; border-radius: 1rem; font-weight: 500; border-left: 4px solid var(--amami-green); }
.exp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

/* Plan */
.bg-gradient-plan { background: linear-gradient(to bottom, #ffffff, var(--amami-light)); }
.plan-list-container { display: flex; flex-direction: column; gap: 1.25rem; }
.plan-card { background: #fff; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 15px 30px rgba(0, 156, 225, 0.1); border: none; display: flex; flex-direction: column; }
.plan-images { display: flex; flex-direction: column; }
.plan-img-main { position: relative; height: 220px; }
.plan-img-main img { width: 100%; height: 100%; object-fit: cover; }
.plan-img-sub { display: flex; }
.plan-img-sub div { width: 50%; height: 180px; border-top: 2px solid #fff; }
.plan-img-sub div:first-child { border-right: 1px solid #fff; }
.plan-img-sub div:last-child { border-left: 1px solid #fff; }
.plan-img-sub img { width: 100%; height: 100%; object-fit: cover; }
.plan-content { padding: 1rem; display: flex; flex-direction: column; flex-grow: 1; }
.plan-content h3 { font-size: 1.5rem; color: var(--amami-deep); margin-top:0; margin-bottom: 0.5rem; font-weight: 900; line-height: 1.4; }
.plan-list { padding-left: 1.2rem; margin: 0 0 0.75rem 0; font-size: 0.95rem; color: #555; }
.plan-list li { margin-bottom: 0.5rem; list-style-type: disc; }

/* Feature Section */
.feature-section { background-color: #f8fafc; }
.feature-card { background: #fff; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.05); display: flex; flex-direction: column; border-top: 5px solid var(--amami-blue); margin-bottom: 1.5rem; height: auto;}
.feature-img { position: relative; aspect-ratio: 4/3; }
.feature-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-content { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; text-align: left; }
.feature-content h3 { font-size: 1.15rem; color: var(--amami-deep); margin-top: 0; margin-bottom: 1rem; font-weight: bold; line-height: 1.5; }
.feature-number { display: inline-block; background: var(--amami-coral); color: #fff; width: 28px; height: 28px; border-radius: 50%; text-align: center; line-height: 28px; font-weight: bold; margin-right: 8px; vertical-align: middle; box-shadow: 0 3px 6px rgba(255, 123, 0, 0.3); }
.feature-content p { font-size: 0.95rem; color: #444; line-height: 1.7; margin: 0; }

/* Contact (CTA) */
.cta-section { background: linear-gradient(135deg, var(--amami-blue) 0%, var(--amami-deep) 100%); padding: 3rem 1rem; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-bg-icon { position: absolute; opacity: 0.05; font-size: 200px; }
.cta-box { background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); padding: 1rem; border-radius: 1.5rem; border: 1px solid rgba(255,255,255,0.3); margin-bottom: 1.5rem; position: relative; z-index: 10; box-shadow: 0 20px 40px rgba(0,0,0,0.2); text-align: left; }

/* Voice */
.bg-voice { background-color: var(--bg-gray); }
.voice-card { background: #fff; padding: 1rem; border-radius: 1.5rem; box-shadow: 0 10px 25px rgba(0,0,0,0.05); position: relative; border-top: 6px solid var(--amami-blue); margin-bottom: 1rem; display: flex; flex-direction: column; }
.voice-card.green { border-top-color: var(--amami-green); }
.voice-card.coral { border-top-color: var(--amami-coral); }
.voice-img { width: 100%; height: 200px; border-radius: 1rem; overflow: hidden; margin: 0.75rem 0 0.5rem; }
.voice-img img { width: 100%; height: 100%; object-fit: cover; }
.voice-info { border-bottom: 2px dashed #e5e7eb; padding-bottom: 0.5rem; margin-bottom: 0.75rem; }
.voice-info h4 { margin: 0; font-weight: bold; line-height: 1.4; }
.voice-text { font-size: 0.9rem; max-height: 250px; overflow-y: auto; padding-right: 8px; margin-bottom: 1rem; color: #555; text-align: left; }

/* Climate Section */
.climate-section { background-color: var(--amami-light); }
.season-card { background: #fff; padding: 1.5rem 1.25rem; border-radius: 1rem; box-shadow: 0 6px 15px rgba(0,0,0,0.05); text-align: left; border-top: 5px solid; display: flex; flex-direction: column; }
.season-spring { border-top-color: #f472b6; }
.season-spring h3 { color: #db2777; }
.season-summer { border-top-color: #38bdf8; }
.season-summer h3 { color: #0284c7; }
.season-autumn { border-top-color: #fb923c; }
.season-autumn h3 { color: #ea580c; }
.season-winter { border-top-color: #60a5fa; }
.season-winter h3 { color: #2563eb; }
.season-card h3 { font-size: 1.25rem; font-weight: 900; margin-top: 0; margin-bottom: 0.75rem; border-bottom: 2px dashed #e5e7eb; padding-bottom: 0.5rem; text-align: center; }
.season-card p { font-size: 0.95rem; color: #444; margin: 0; line-height: 1.6; }

/* FAQ */
.faq-section { background-color: var(--bg-gray); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item { border: 1px solid #e2e8f0; border-radius: 1rem; overflow: hidden; background: #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.faq-item summary { 
    list-style: none; 
    padding: 0.6rem 0.75rem; 
    font-weight: 900; 
    font-size: 1.05rem; 
    color: var(--amami-deep); 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    background-color: var(--amami-light);
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.875rem;
    color: var(--amami-blue);
    transition: transform 0.3s;
}
.faq-item[open] summary::after {
    transform: rotate(180deg);
}
.faq-content { padding: 0.75rem; border-top: 1px solid #e2e8f0; line-height: 1.8; color: #444; background: #fff; font-size: 0.95rem; text-align: left; }
.faq-q-icon, .faq-a-icon { font-weight: 900; font-size: 1.2rem; margin-right: 12px; display: inline-block; }
.faq-q-icon { color: var(--amami-blue); }
.faq-a-icon { color: var(--amami-coral); }

/* Movie */
.bg-black { background-color: #0f172a; color: #fff; }
.movie-card { position: relative; aspect-ratio: 16/9; background: #1e293b; border-radius: 1rem; overflow: hidden; display: block; border: 2px solid transparent; transition: all 0.3s; box-shadow: 0 10px 25px rgba(0,0,0,0.5); text-decoration: none; }
.movie-card:hover { border-color: var(--amami-blue); transform: translateY(-5px); }
.movie-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: opacity 0.3s; }
.movie-card:hover img { opacity: 0.5; }
.movie-card i { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 4rem; color: #ff0000; z-index: 10; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }
.movie-title { text-align: center; margin-top: 0.5rem; font-weight: bold; font-size: 1rem; color: #e2e8f0; }

/* Footer Menu */
.footer-menu {
    background-color: #020617;
    color: #ffffff;
    padding: 40px 0px 0px 0px;
    text-align: center;
}
.footer-menu h3 {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: bold;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 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: #ffffff;
    font-size: 0.95rem;
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: underline;
}

/* Footer (Copyright) */
.footer-copyright { background: #020617; color: #94a3b8; text-align: center; padding: 1.5rem 1rem; font-size: 0.875rem; }