@charset "UTF-8";

/* ===================================
   ② メッセージ
   =================================== */
.vol-message {
    width: 100%;
    background-color: #fff;
    padding: 60px 20px 20px;
}

.vol-message-inner {
    max-width: 760px;
    margin: 0 auto;
}

.vol-message-card {
    display: flex;
    gap: 0;
    background: linear-gradient(135deg, #f0faff 0%, #fff5f8 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.vol-message-accent {
    width: 6px;
    flex-shrink: 0;
    background: linear-gradient(to bottom, #9fd9f6, #fe4c7f);
    border-radius: 20px 0 0 20px;
}

.vol-message-body {
    padding: 36px 40px;
}

.vol-message-title {
    font-size: 22px;
    font-weight: bold;
    color: #1e3a5a;
    margin: 0 0 20px;
    line-height: 1.5;
}

.vol-message-text {
    font-size: 15px;
    color: #444;
    line-height: 2;
    margin: 0 0 20px;
}

.vol-message-sign {
    font-size: 14px;
    color: #516881;
    font-weight: bold;
    text-align: right;
    margin: 0;
    letter-spacing: 0.05em;
}

@media (max-width: 600px) {
    .vol-message-body {
        padding: 24px 24px;
    }
    .vol-message-title {
        font-size: 18px;
    }
    .vol-message-text {
        font-size: 14px;
    }
}

/* ===================================
   ① ヒーロー — スプリットレイアウト追加スタイル
   =================================== */
.vol-hero {
    padding: 56px 40px 48px;
}

.vol-hero-content {
    grid-area: content;
    min-width: 0;
}

.vol-hero-photo {
    grid-area: photo;
    width: 480px;
    flex-shrink: 0;
    border-radius: 28px;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 16px 48px rgba(81, 104, 129, 0.28);
}

.vol-hero-photo img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.vol-hero-btn {
    grid-area: btn;
    display: inline-flex;
    align-items: center;
    background-color: #f5f29f;
    border-radius: 30px;
    padding: 12px 28px 12px 8px;
    box-shadow: 2px 2px #898787;
    transition: transform 0.1s, box-shadow 0.1s;
    color: #333;
    font-size: 15px;
    font-weight: 700;
    margin-top: 24px;
    align-self: start;
    justify-self: start;
}

.vol-hero-btn img {
    height: 42px;
    width: auto;
    margin-right: 10px;
}

.vol-hero-btn:hover {
    box-shadow: none;
    transform: translate(4px, 4px);
    opacity: 1;
}

@media (max-width: 900px) {
    .vol-hero { padding: 40px 24px 40px; }
    .vol-hero-inner { display: flex; flex-direction: column; gap: 32px; align-items: stretch; }
    .vol-hero-photo { width: 100%; max-width: 560px; margin: 0 auto; flex-shrink: 1; }
    .vol-hero-photo img { height: 260px; }
    .vol-hero-btn { align-self: flex-start; }
}

/* ===================================
   ② こんな場面で活躍できます
   =================================== */
.vol-recruit {
    padding: 80px 20px 60px;
    background-color: #9fd9f6;
}

.vol-recruit-inner {
    max-width: 860px;
    margin: 0 auto;
}

.vol-role-columns {
    display: flex;
    gap: 24px;
}

.vol-role-col {
    flex: 1;
    background-color: #fff;
    border: 1px solid #e0eef7;
    border-radius: 16px;
    overflow: hidden;
}

.vol-role-col-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 22px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.vol-role-list {
    list-style: none;
    padding: 4px 0;
    margin: 0;
}

.vol-role-list li {
    padding: 15px 22px 15px 40px;
    border-bottom: 1px solid #f0f6fb;
    position: relative;
}

.vol-role-list li::before {
    content: "▸";
    position: absolute;
    left: 20px;
    top: 16px;
    color: #9fd9f6;
    font-size: 14px;
}

.vol-role-list li:last-child {
    border-bottom: none;
}

.vol-role-name {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin: 0 0 4px;
}

.vol-role-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 640px) {
    .vol-role-columns {
        flex-direction: column;
    }
}
@media (max-width: 600px) {
    .vol-hero-photo img { height: 200px; }
}

/* ===================================
   フォトギャラリー（交互レイアウト）
   =================================== */
.vol-gallery {
    width: 100%;
    background-color: #fff;
    padding: 60px 20px 80px;
}

.vol-gallery-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.vol-gallery-item {
    display: flex;
    align-items: center;
    gap: 56px;
}

.vol-gallery-item--reverse {
    flex-direction: row-reverse;
}

.vol-gallery-photo {
    flex-shrink: 0;
    width: 420px;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(81, 104, 129, 0.15);
}

.vol-gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vol-gallery-text {
    flex: 1;
}

.vol-gallery-num {
    font-size: 48px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    color: #9fd9f6;
    line-height: 1;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.vol-gallery-title {
    font-size: 22px;
    font-weight: bold;
    color: #1e3a5a;
    margin: 0 0 16px;
    line-height: 1.4;
}

.vol-gallery-desc {
    font-size: 15px;
    color: #555;
    line-height: 2;
    margin: 0;
}

@media (max-width: 768px) {
    .vol-gallery-item,
    .vol-gallery-item--reverse {
        flex-direction: column;
        gap: 24px;
    }

    .vol-gallery-photo {
        width: 100%;
    }

    .vol-gallery-num {
        font-size: 36px;
    }

    .vol-gallery-title {
        font-size: 19px;
    }
}

/* ===================================
   ③ 活動内容 — フォトカード
   =================================== */
.vol-activity-grid {
    grid-template-columns: repeat(2, 1fr) !important;
}

.vol-activity-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 0 !important;
    box-shadow: 5px 5px 0 rgba(81, 104, 129, 0.18);
}

.vol-act-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.vol-act-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.vol-act-icon-badge {
    position: absolute;
    bottom: -18px;
    right: 20px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    border: 3px solid #fff;
    z-index: 2;
}

.vol-act-body {
    padding: 28px 24px 26px;
}

.vol-act-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.vol-activity-title { font-size: 17px !important; margin-bottom: 8px; }
.vol-activity-icon  { display: none; }

@media (max-width: 700px) {
    .vol-activity-grid { grid-template-columns: 1fr !important; }
}


/* ===================================
   ④ 先輩の声 — 顔写真付き
   =================================== */
.vol-voice-avatar-wrap {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
}

.vol-voice-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vol-voice-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    display: block;
}

@media (max-width: 600px) {
    .vol-voice-card { flex-direction: column; gap: 16px; padding: 24px 20px; }
}

/* ===================================
   ⑤ 募集要項 — レイアウト ＋ 写真パネル
   =================================== */
.vol-req-layout {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.vol-req-layout .vol-req-table-wrap {
    flex: 1;
}

.vol-req-table-wrap--full {
    flex: none;
    width: 100%;
}

.vol-req-photo-panel {
    width: 240px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 5px 5px 0 rgba(81, 104, 129, 0.2);
    background-color: #1e3a5a;
    display: flex;
    flex-direction: column;
}

.vol-req-photo-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    opacity: 0.88;
    transition: opacity 0.3s;
}

.vol-req-photo-panel:hover .vol-req-photo-img { opacity: 1; }

.vol-req-photo-caption {
    padding: 16px 18px 12px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.vol-req-caption-icon {
    color: #9fd9f6;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.vol-req-photo-caption p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin: 0;
    font-style: italic;
}

.vol-req-photo-faces {
    padding: 0 18px 18px;
    display: flex;
    align-items: center;
}

.vol-req-photo-faces img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.5);
    margin-left: -8px;
    display: block;
}

.vol-req-photo-faces img:first-child { margin-left: 0; }

.vol-req-faces-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.65);
    margin-left: 10px;
    white-space: nowrap;
}

@media (max-width: 860px) {
    .vol-req-layout { flex-direction: column; }
    .vol-req-photo-panel { width: 100%; flex-direction: row; }
    .vol-req-photo-img { width: 200px; height: auto; flex-shrink: 0; }
}
@media (max-width: 560px) {
    .vol-req-photo-panel { flex-direction: column; }
    .vol-req-photo-img { width: 100%; height: 160px; }
    .vol-req-table th {
        display: block;
        width: 100%;
        white-space: normal;
        padding: 14px 20px 6px;
    }
    .vol-req-table td {
        display: block;
        width: 100%;
        padding: 6px 20px 16px;
    }
    .vol-req-table tbody tr {
        display: block;
    }
}

/* ===================================
   フォトストリップ（応募の流れ）
   =================================== */
.vol-flow-photostrip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 56px;
    border-radius: 16px;
    overflow: hidden;
}

.vol-flow-photo-item {
    height: 160px;
    overflow: hidden;
}

.vol-flow-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.vol-flow-photo-item:hover img { transform: scale(1.07); }

@media (max-width: 600px) {
    .vol-flow-photostrip { grid-template-columns: repeat(2, 1fr); }
    .vol-flow-photo-item { height: 110px; }
}

/* ===================================
   ボランティアページ共通
   =================================== */

/* ナビゲーション アクティブ */
.li-volunteer--active .text-overlay {
    color: #fe4c7f;
    font-weight: bold;
}

/* セクション共通ヘッド */
.vol-section-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 56px;
}

.vol-section-title {
    font-size: 34px;
    color: #516881;
    margin: 8px 0 14px;
    letter-spacing: 0.05em;
}

.vol-section-sub {
    font-size: 14px;
    color: #888;
    line-height: 1.8;
    margin: 0;
}

/* ===================================
   ① ヒーロー (Hero)
   =================================== */
.vol-hero {
    width: 100%;
    background-color: #9fd9f6;
    padding: 60px 20px 40px;
}

.vol-hero-inner {
    max-width: 1060px;
    margin: 0 auto;
}

@media (min-width: 901px) {
    .vol-hero-inner {
        display: grid;
        grid-template-columns: 1fr 480px;
        grid-template-areas: "content photo" "btn photo";
        column-gap: 40px;
        align-items: start;
    }
}

.vol-hero-icon {
    width: 100px;
    flex-shrink: 0;
}

.vol-hero-en {
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.3em;
    color: #fff;
    margin: 0 0 6px;
}

.vol-hero-title {
    font-size: 36px;
    font-weight: bold;
    color: #516881;
    margin: 0 0 14px;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

.vol-hero-sub {
    font-size: 15px;
    color: #516881;
    line-height: 1.9;
    margin: 0;
}

/* ===================================
   ② ボランティアの魅力 (Appeal)
   =================================== */
.vol-appeal {
    width: 100%;
    background-color: #fff;
    padding: 80px 20px 90px;
}

.vol-appeal-inner {
    max-width: 920px;
    margin: 0 auto;
}

.vol-appeal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 640px) {
    .vol-appeal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .vol-appeal-grid {
        grid-template-columns: 1fr;
    }
}

.vol-appeal-card {
    background-color: #f7fbfe;
    border-radius: 20px;
    padding: 32px 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 2px solid #e3f3fb;
    transition: transform 0.2s, box-shadow 0.2s;
}

.vol-appeal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(81, 104, 129, 0.12);
}

.vol-appeal-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.vol-appeal-icon {
    margin-bottom: 16px;
}

.vol-appeal-title {
    font-size: 15px;
    font-weight: bold;
    color: #516881;
    margin: 0 0 12px;
}

.vol-appeal-text {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* ===================================
   ③ 活動内容 (Activity)
   =================================== */
.vol-activity {
    width: 100%;
    background-color: #9fd9f6;
    padding: 80px 20px 90px;
}

.vol-activity-inner {
    max-width: 920px;
    margin: 0 auto;
}

.vol-activity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.vol-activity-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 28px 18px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 4px 4px 0 rgba(81, 104, 129, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.vol-activity-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.vol-activity-title {
    font-size: 14px;
    font-weight: bold;
    color: #516881;
    margin: 0 0 10px;
    line-height: 1.4;
}

.vol-activity-text {
    font-size: 12px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* ===================================
   ④ 先輩の声 (Voice)
   =================================== */
.vol-voice {
    width: 100%;
    background-color: #fff;
    padding: 80px 20px 90px;
}

.vol-voice-inner {
    max-width: 860px;
    margin: 0 auto;
}

.vol-voice-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vol-voice-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background-color: #f7fbfe;
    border-radius: 16px;
    padding: 28px 32px;
    border-left: 5px solid #9fd9f6;
}

.vol-voice-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vol-voice-body {
    flex: 1;
}

.vol-voice-quote {
    font-size: 14px;
    color: #444;
    line-height: 1.9;
    margin: 0 0 12px;
    position: relative;
    padding-left: 20px;
}

.vol-voice-quote::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 28px;
    color: #9fd9f6;
    line-height: 1;
    font-family: Georgia, serif;
}

.vol-voice-name {
    font-size: 12px;
    color: #888;
    font-weight: bold;
    margin: 0;
    letter-spacing: 0.05em;
}

/* ===================================
   ⑤ 募集要項 (Requirements)
   =================================== */
.vol-requirements {
    width: 100%;
    background-color: #9fd9f6;
    padding: 80px 20px 90px;
}

.vol-requirements-inner {
    max-width: 760px;
    margin: 0 auto;
}

.vol-req-table-wrap {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 5px 5px 0 rgba(81, 104, 129, 0.15);
}

.vol-req-table {
    width: 100%;
    border-collapse: collapse;
}

.vol-req-table tbody tr {
    border-bottom: 1px solid #e8f4fb;
}

.vol-req-table tbody tr:last-child {
    border-bottom: none;
}

.vol-req-table th {
    width: 160px;
    padding: 20px 24px;
    background-color: #f0f9ff;
    color: #516881;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    vertical-align: top;
    white-space: nowrap;
}

.vol-req-table td {
    padding: 20px 28px;
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    vertical-align: top;
}

/* ===================================
   ⑥ 応募の流れ (Flow)
   =================================== */
.vol-flow {
    width: 100%;
    background-color: #fff;
    padding: 80px 20px 100px;
}

.vol-flow-inner {
    max-width: 920px;
    margin: 0 auto;
}

.vol-flow-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 70px;
}

.vol-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 180px;
    flex-shrink: 0;
}

.vol-flow-num {
    font-size: 11px;
    font-weight: bold;
    color: #9fd9f6;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.vol-flow-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 4px 4px 0 rgba(81, 104, 129, 0.2);
}

.vol-flow-title {
    font-size: 15px;
    font-weight: bold;
    color: #516881;
    margin: 0 0 10px;
}

.vol-flow-text {
    font-size: 12px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    padding: 0 4px;
}

.vol-flow-arrow {
    color: #9fd9f6;
    font-size: 20px;
    margin: 0 4px;
    padding-top: 30px;
    flex-shrink: 0;
}

/* 縦並びSTEP */
.vol-flow-steps--vertical {
    flex-direction: column;
    align-items: stretch;
    max-width: 680px;
    margin: 0 auto 70px;
}

.vol-flow-step-v {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 3px 3px 0 rgba(81, 104, 129, 0.15);
}

.vol-flow-step-v-head {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background-color: #f7fbfe;
    border-bottom: 1px solid #e0f0f8;
}

.vol-flow-num-v {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: 20px;
    flex-shrink: 0;
}

.vol-flow-title-v {
    font-size: 17px;
    font-weight: bold;
    color: #516881;
    margin: 0;
}

.vol-flow-step-v-body {
    padding: 20px 24px;
}

.vol-flow-text-v {
    font-size: 14px;
    color: #555;
    line-height: 1.9;
    margin: 0;
}

.vol-flow-schedule {
    margin-top: 16px;
    background-color: #f0faff;
    border-radius: 10px;
    padding: 16px 20px;
}

.vol-flow-schedule-head {
    font-size: 13px;
    font-weight: bold;
    color: #516881;
    margin: 0 0 10px;
}

.vol-flow-schedule-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.vol-flow-schedule-list li {
    font-size: 13px;
    color: #444;
    line-height: 1.8;
    padding-left: 14px;
    position: relative;
}

.vol-flow-schedule-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #30b9bf;
}

.vol-flow-schedule-note {
    font-size: 12px;
    color: #888;
    margin: 0;
    line-height: 1.7;
}

.vol-flow-arrow-v {
    text-align: center;
    color: #9fd9f6;
    font-size: 20px;
    padding: 8px 0;
}

/* フォトストリップ（応募の流れ） */
.vol-flow-photostrip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 56px;
    border-radius: 16px;
    overflow: hidden;
}

.vol-flow-photo-item {
    height: 160px;
    overflow: hidden;
}

.vol-flow-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.vol-flow-photo-item:hover img {
    transform: scale(1.07);
}

@media (max-width: 600px) {
    .vol-flow-photostrip {
        grid-template-columns: repeat(2, 1fr);
    }
    .vol-flow-photo-item {
        height: 110px;
    }
}

/* CTA */
.vol-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.vol-cta-text {
    font-size: 18px;
    font-weight: bold;
    color: #516881;
    margin: 0;
    letter-spacing: 0.05em;
}

.vol-cta-btn {
    display: inline-flex;
    align-items: center;
    background-color: #f5f29f;
    border-radius: 30px;
    padding: 14px 32px 14px 8px;
    box-shadow: 2px 2px #898787;
    transition: transform 0.1s, box-shadow 0.1s;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.08em;
}

.vol-cta-btn img {
    height: 46px;
    width: auto;
    margin-right: 10px;
}

.vol-cta-btn:hover {
    box-shadow: none;
    transform: translate(5px, 5px);
    opacity: 1;
}
