@charset "UTF-8";

/* ==========================================================
   Report Page Styles (PC / Base)
   ========================================================== */

/* メインコンテンツ背景 */
.report-content {
    background-color: #f4f7f6;
    padding: 60px 20px;
    min-height: 100vh;
}

/* 記事コンテナ - 最大幅1200pxで中央配置 */
.report-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding: 80px 60px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 12px;
}

/* --- 記事ヘッダー --- */
.report-header {
    margin-bottom: 60px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.report-date {
    display: block;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-family: "M PLUS 1", sans-serif;
}

.report-header h1 {
    font-family: "M PLUS 1", sans-serif;
    font-size: 2.2rem;
    color: #2c3e50;
    line-height: 1.5;
    padding-bottom: 25px;
    border-bottom: 3px solid #b5f3f2;
}

/* --- 本文セクション --- */
.report-section {
    margin-bottom: 60px;
}

.report-section p {
    font-size: 1.1rem;
    line-height: 2.2;
    margin-bottom: 30px;
    color: #444;
}

/* 画像スタイル共通 */
.report-main-img,
.report-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    cursor: zoom-in;
}

.report-img:hover,
.report-main-img:hover {
    transform: scale(1.01);
}

/* 注釈（※印）ボックス */
.report-note {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-left: 6px solid #b5f3f2;
    margin: 40px 0;
}

.report-note p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #666;
}

.report-note p:last-child {
    margin-bottom: 0;
}

/* 中見出し */
.report-heading {
    font-family: "M PLUS 1", sans-serif;
    font-size: 1.8rem;
    color: #1a508b;
    border-left: 8px solid #b5f3f2;
    padding-left: 20px;
    margin: 60px 0 40px 0;
}

/* --- 企画リスト（2カラム・グリッド） --- */
.project-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* PCで2列並び */
    gap: 30px;
}

.project-item {
    background-color: #fffcf0;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    height: 100%; /* 隣のアイテムと高さを揃える */
}

.project-item h3 {
    font-family: "M PLUS 1", sans-serif;
    color: #d35400;
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-bottom: 1px dashed #d35400;
    padding-bottom: 5px;
    display: inline-block;
}

.project-item p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* 6枚目の位置（右下）に配置される画像の設定 */
.project-grid-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover; /* コンテナの高さに合わせてトリミング */
    margin: 0 !important;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* --- CTA（参加申込ボタン）エリア --- */
.report-cta {
    text-align: center;
    background-color: #eafbfb;
    padding: 60px 40px;
    border-radius: 16px;
    margin: 80px 0;
}

.cta-message {
    font-weight: bold;
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: #e85959;
    color: #fff;
    text-decoration: none;
    padding: 18px 60px;
    border-radius: 50px;
    font-weight: bold;
    font-family: "M PLUS 1", sans-serif;
    font-size: 1.3rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s, opacity 0.2s;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: scale(0.98);
    opacity: 0.9;
}

/* ボタンの光るアニメーション */
.cta-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 150%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    animation: shine 6s infinite linear;
    transform: translate(-100%, -100%) rotate(-30deg);
    pointer-events: none;
}

@keyframes shine {
    0%, 20.1%, 40.01%, 100% { transform: translate(-100%, -100%) rotate(-30deg); }
    20%, 40% { transform: translate(100%, 100%) rotate(-30deg); }
}

/* --- 下部インフォメーションボックス --- */
.report-info-box {
    border: 3px solid #eee;
    padding: 40px;
    border-radius: 16px;
    margin-top: 60px;
    background-color: #fff;
}

.report-info-box h3 {
    font-family: "M PLUS 1", sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #202020;
}

.report-info-box ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.report-info-box li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.report-info-box li::before {
    content: "●";
    color: #b5f3f2;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

.dotted-line {
    border: 0;
    border-top: 2px dashed #ddd;
    margin: 40px 0;
}

.small-text {
    font-size: 0.9rem;
    color: #888;
}

/* ==========================================================
   Report Page Styles (SP / Smartphone)
   ========================================================== */
@media (max-width: 768px) {
    
    .report-content {
        padding: 0;
    }

    .report-container {
        padding: 40px 20px;
        border-radius: 0;
        box-shadow: none;
        max-width: 100%;
    }

    .report-header h1 {
        font-size: 1.4rem;
        line-height: 1.6;
    }

    .report-section p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .report-heading {
        font-size: 1.4rem;
        margin-top: 40px;
    }

    /* スマホではグリッドを解除して1列にする */
    .project-list {
        display: block;
    }

    .project-item {
        padding: 25px;
        margin-bottom: 20px;
    }

    /* スマホでの画像の挙動を調整 */
    .project-grid-img {
        margin: 20px 0 !important;
        height: auto !important;
    }

    .report-cta {
        padding: 40px 20px;
        margin: 50px 0;
    }

    .cta-message {
        font-size: 1.1rem;
    }

    .cta-button {
        width: 100%;
        padding: 16px 0;
        font-size: 1.1rem;
    }
    
    .report-info-box {
        padding: 25px;
        border-width: 2px;
    }
    
    /* ホバー効果を無効化 */
    .report-img:hover,
    .report-main-img:hover {
        transform: none;
    }
}