@charset "UTF-8";

/* --- 共通設定 --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333; line-height: 1.6; background-color: #fff;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 5% 100px;
}

/* --- ヘッダー --- */
.header { text-align: center; padding: 20px 0; border-bottom: 1px solid #ddd; }
.logo { height: 35px; }

/* --- 使い方セクション --- */
.usage-section { text-align: center; margin-bottom: 80px; }
.main-title-wrapper { margin-bottom: 40px; }
.page-main-title {
    display: inline-block;
    border: 2px solid #333;
    padding: 10px 50px;
    font-size: 1.4rem;
    font-weight: bold;
}

.manga-item {
    max-width: 500px; /* マンガの幅 */
    margin: 0 auto 50px;
    text-align: left;
}
.manga-image { position: relative; line-height: 0; }
.manga-image img { width: 100%; }
.manga-num {
    position: absolute; top: 5px; left: 5px;
    background: #000; color: #fff;
    width: 30px; height: 30px;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.2rem; font-weight: bold;
}

.manga-caption { font-size: 0.85rem; padding: 15px 5px; }

.yellow-note {
    background-color: #ffecb3; border: 1px solid #ffca28;
    border-radius: 12px; padding: 12px; margin: 0 5px;
}
.yellow-note-inner { display: flex; align-items: center; gap: 10px; }
.staff-icon { flex: 0 0 56px; }
.staff-icon img { width: 100%; }
.note-text { font-size: 0.85rem; font-weight: bold; line-height: 1.4; }

/* --- 横並びナビゲーションボタン --- */
.faq-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;            /* ボタンとボタンの間の隙間 */
    margin: 30px auto;    /* 上下の余白 */
    max-width: 650px;     /* ボタン全体の最大幅 */
    padding: 0 10px;
}

/* ボタンの共通スタイル */
.btn-nav {
    flex: 1;              /* 2つのボタンを均等な幅にする */
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    padding: 15px 20px;
    border-radius: 8px;   /* 角丸 */
    transition: all 0.3s ease; /* アニメーションを滑らかに */
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1); /* 軽い立体感 */
}

/* 実際の使い方はこちら ＞ （赤系：サイトのアクセントカラーに追随） */
.btn-nav.btn-actual {
    background-color: #c62828;
    color: #fff;
    border: 1px solid #c62828;
}

/* 譲渡方法はコチラ ＞ （グレー・ネイビー系：落ち着いたトーン） */
.btn-nav.btn-transfer {
    background-color: #4c7689;
    color: #fff;
    border: 1px solid #546e7a;
}

/* ホバー時（マウスを載せたとき）の動き */
.btn-nav:hover {
    opacity: 0.9;
    transform: translateY(-2px); /* 少し上に浮き上がる */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* --- スマホ表示のときの調整 --- */
@media (max-width: 600px) {
    .faq-nav-buttons {
        flex-direction: column; /* 縦並びにする */
        gap: 12px;              /* 縦並びのときのボタン同士の隙間 */
    }
    .btn-nav {
        width: 100%;            /* 横幅いっぱいに広げる */
        font-size: 0.95rem;     /* 文字を少しだけ小さく */
        padding: 14px 15px;
    }
}

/* --- ★よくあるご質問セクション (幅指定) --- */
/* --- よくあるご質問セクション --- */
.faq-section {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.faq-title1 {
    color: #c62828; 
    font-size: 1.3rem;
    border-bottom: 2px solid #c62828; /* 赤い太線 */
    padding-bottom: 5px; 
    margin-bottom: 30px;
}

.faq-title2 {
    color: #4c7689; 
    font-size: 1.3rem;
    border-bottom: 2px solid #4c7689; /* 赤い太線 */
    padding-bottom: 5px; 
    margin-bottom: 30px;
}

.faq-title-small {
    margin-top: 40px;
    margin-bottom: 16px;
}

.faq-list {
    margin-bottom: 50px;
}

/* ★ドットのボーダーを復活 */
.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dotted #bbb; /* ここにドットの線を追加 */
}

/* 最後の項目の下の線は消す */
.faq-item:last-child {
    border-bottom: none;
}

.faq-q, .faq-a {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

/* Qアイコン（赤） */
.icon-q {
    flex: 0 0 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #c62828;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.8rem;
    margin-top: 3px;
}

/* Aアイコン（黒） */
.icon-a {
    flex: 0 0 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.8rem;
    margin-top: 3px;
}

.faq-q p {
    font-weight: bold;
    font-size: 0.95rem;
    line-height: 1.5;
}

.faq-a p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* パスワード再設定ボタン */
.btn-blue-rect {
    display: inline-block;
    background-color: #4285f4;
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.85rem;
    margin-top: 15px;
}

/* --- 画像並び構成 --- */
/* 「自分が使う場合」と「お友達への渡し方」共通で綺麗に並ぶように調整 */
.container-img, 
.faq-section .container {
    display: flex;
    flex-flow: row wrap;
    gap: 2%; /* 横方向の画像同士の隙間 */
    margin-bottom: 15px;
}

/* 子要素（各画像の枠）の幅を調整 */
.container-img .item,
.faq-section .container .item {
    flex: 0 0 22%; 
    box-sizing: border-box;
}

/* 画像が枠からはみ出さないように100%に指定 */
.container-img img,
.faq-section .container img {
    width: 100%;
    height: auto;
    display: block;
}

/* 画面幅が狭い時（スマホなど）の調整 */
@media (max-width: 600px) {
    .container-img, 
    .faq-section .container {
        row-gap: 15px; /* ★スマホ表示のとき、上下の行の間に15pxの隙間を作る */
                justify-content: center;
    }

    .container-img .item,
    .faq-section .container .item {
        flex: 0 0 85%; /* 2列並び */
        margin-bottom: 5px; /* ★念のため下方向への余白を少し確保 */
    }
}

/* --- お問い合わせ --- */
.contact-area { text-align: center; margin-top: 50px; border-top: 1px dotted #ccc; padding-top: 50px; }
.contact-lead { font-size: 0.9rem; margin-bottom: 20px; }

.btn-contact {
    display: inline-block;
    background-color: #4285f4;
    color: #fff;
    text-decoration: none;
    padding: 15px 50px;
    border-radius: 50px;
    box-shadow: 0 4px 0 #3063b7;
}
.contact-inner { display: flex; align-items: center; gap: 15px; text-align: left; }
.icon-mail { font-size: 2rem; }
.btn-main-text { display: block; font-size: 1.1rem; font-weight: bold; }
.btn-sub-text { display: block; font-size: 0.75rem; }

/* --- フッター --- */
.footer { background-color: #546e7a; color: #fff; text-align: center; padding: 15px; font-size: 0.75rem; }

/* スマホ対応 */
@media (max-width: 600px) {
    .page-main-title { width: 90%; padding: 10px; font-size: 1.2rem; }
    .btn-contact { padding: 15px 25px; }
}