body {
    font-family: -apple-system, "Segoe UI", "Hiragino Kaku Gothic ProN", sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 960px;
    margin: 0 auto;
    padding: 10px 20px;
    background-color: #fff;
}

h1 {
    color: #1a73e8;
    font-size: 2.2em;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
    display: flex;
    /* アイコンと文字を並べるため */
    justify-content: center;
    /* 中央寄せ */
    align-items: center;
    /* 垂直方向を中央に */
    gap: 10px;
}

h2 {
    border-left: 5px solid #1a73e8;
    padding-left: 15px;
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 1.5em;
}

p {
    margin-top: 5px;
    margin-bottom: 5px;
}

.hero-text {
    font-size: 1.2em;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 10px;
    font-weight: 500;
}

.section {
    margin-bottom: 30px;
}

/* 言語切り替えナビゲーションのスタイル */
.lang-nav {
    display: flex;
    justify-content: flex-end;
    /* 右寄せ */
    align-items: center;
    padding: 0px 0 0px 0;
    font-size: 13px;
    /* 少し小さめが上品です */
    letter-spacing: 0.05em;
}

/* 現在の言語（JP） */
.lang-current {
    font-weight: 700;
    /* 太字 */
    color: #333;
}

/* 区切り線 | */
.lang-divider {
    margin: 0 10px;
    color: #ccc;
    font-weight: normal;
}

/* リンク（EN） */
.lang-link {
    color: #1a73e8;
    text-decoration: none;
    transition: opacity 0.2s;
}

.lang-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* ShootwayPhoto セクション */
.concept-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* 間隔を少し調整 */
    align-items: flex-start;
    margin-bottom: 30px;
}

.title-icon {
    width: 40px;
    height: auto;
}

.concept-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.concept-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.concept-description ul {
    padding-left: 20px;
    /* デフォルトの40pxから半分程度に */
    margin-top: 5px;
}

.concept-description ul li {
    margin-bottom: 4px;
    /* リスト項目間の隙間を最小限に */
    line-height: 1.4;
    /* 行間も少しだけタイトに */
}

/* ダウンロード・QRエリア */
.download-flex {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.qr-box {
    text-align: center;
}

.qr-box img {
    width: 100px;
    height: 100px;
    border: 1px solid #ddd;
    padding: 5px;
    background: #fff;
}

.qr-label {
    font-size: 10px;
    color: #666;
    margin-top: 4px;
}

.download-badge img {
    width: 180px;
    height: auto;
}

/* ShootwayMap セクション */
.map-section {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 5px;
}

.map-visual {
    text-align: center;
    margin: 10px 0;
}

.map-visual img {
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.img-note {
    display: block;
    font-size: 12px;
    color: #777;
    margin-top: 10px;
}

.action-area {
    margin-top: 10px;
    padding: 15px;
    background: #e8f0fe;
    border-radius: 8px;
}

.ios-note {
    font-size: 11px;
    color: #d93025;
    display: block;
    margin-top: 10px;
}

.trial-links {
    list-style: none;
    padding: 0;
}

.trial-links li {
    margin: 5px 0;
}

.footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #666;
}

a {
    color: #1a73e8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* 画像が親要素からはみ出さないように、また中央にくるように調整 */
.concept-box img {
    width: 100%;
    max-width: 500px;
    /* PCで大きくなりすぎないように */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* スマホ向けの微調整（レスポンシブ） */
@media (max-width: 600px) {
    .lang-nav {
        padding: 10px 5px;
    }

    .concept-box {
        flex-direction: column;
        /* 確実に縦並びにする */
    }

    .concept-description {
        min-width: 100%;
        /* 幅をいっぱいにする */
    }

    h2 {
        font-size: 1.3em;
        /* 見出しを少し小さく */
    }

    h1 {
        font-size: 1.8em;
    }

    .title-icon {
        width: 32px;
    }
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 320px;
}

.radio-item {
    display: block;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 18px;
}

.actions {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.submit-btn {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

/* 「今後表示しない」のスタイル */
.skip-option {
    margin-top: 15px;
    font-size: 13px;
    color: #666;
    display: block;
    cursor: pointer;
}

.reopen-btn {
    display: inline-block;
    margin-top: 20px;
    font-size: 14px;
    color: #1a73e8;
    text-decoration: none;
    border: 1px solid #1a73e8;
    padding: 5px 15px;
    border-radius: 20px;
    background-color: transparent;
    /* 背景を透明に */
    cursor: pointer;
    /* マウスホバーで指マークにする */
    outline: none;
    /* クリック時の青い枠線を消す */
    appearance: none;
    /* ブラウザ標準のボタン見た目を解除 */
}