@charset "UTF-8";
/* CSS Document */

        /* --- 基本設定 & リセット --- */
        * {
            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;
            background-color: #fff;
            line-height: 1.6;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
        }

        /* --- 共通パーツ --- */
        .btn {
            display: inline-block;
            background-color: #f3b14e;
            color: #fff;
            padding: 12px 32px;
            border-radius: 25px;
            font-weight: bold;
            text-align: center;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #e09e39;
        }
        .btn-outline {
            background-color: transparent;
            color: #f3b14e;
            border: 2px solid #f3b14e;
        }
        .btn-outline:hover {
            background-color: #f3b14e;
            color: #fff;
        }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 2.5rem;
            letter-spacing: 0.05em;
            color: #4a4a4a;
        }
        .section-subtitle {
            text-align: center;
            color: #f3b14e;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        /* --- ヘッダー --- */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 4%;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            z-index: 100;
        }
        .header-logo {
            color: #e2a249;
            font-weight: bold;
            font-size: 1.2rem;
        }
        .header-btn {
            padding: 8px 20px;
            font-size: 0.9rem;
        }

        /* --- メインビジュアル (Hero) --- */
        .hero {
            background-color: #fff;
            padding: 100px 0 0;
            overflow: hidden;
            position: relative;
        }
        .hero-inner {
            max-width: 1440px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: stretch;
        }
        
        .hero-content {
            flex: 1;
            padding: 80px 4% 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            z-index: 2;
        }

        .hero-tag {
            align-self: flex-start;
            background-color: #fdf2d9;
            color: #cca45b;
            font-weight: bold;
            padding: 4px 12px;
            font-size: 0.95rem;
            letter-spacing: 0.05em;
            margin-bottom: 25px;
            border-radius: 2px;
        }
        
        .hero-title-container {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 25px;
            font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
        }

        .hero-title-block {
            display: block;
            font-size: 5.5rem;
            font-weight: 700;
            line-height: 1;
            letter-spacing: 0.05em;
        }
        .hero-title-block.furisode { color: #e2a249; }
        .hero-title-block.muryo { color: #2b2b2b; }
        .hero-title-block.satsueikai { color: #e2a249; }

        .hero-edition {
            font-size: 1.1rem;
            color: #bfa070;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .hero-desc {
            margin-bottom: 35px;
            font-size: 1.15rem;
            color: #333;
            line-height: 1.7;
        }
        .hero-desc em {
            font-style: normal;
            font-weight: bold;
            border-bottom: 2px solid #e2a249;
            padding-bottom: 2px;
        }
        
        .hero-info-box {
            background-color: #fff9e9;
            padding: 20px 25px;
            border-radius: 16px;
            margin-bottom: 40px;
            max-width: 520px;
        }
        .hero-info-label {
            color: #cca45b;
            font-weight: bold;
            font-size: 0.85rem;
            margin-bottom: 5px;
            display: block;
        }
        .hero-date {
            font-size: 1.25rem;
            font-weight: bold;
            color: #333;
            line-height: 1.5;
            margin-bottom: 8px;
        }
        .hero-time { font-size: 0.95rem; color: #666; }
        .hero-btns { display: flex; gap: 15px; }

        .hero-image {
            flex: 1.2;
            position: relative;
            min-height: 750px;
        }
        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
        }
        .hero-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 35%;
            height: 100%;
            background: linear-gradient(to right, #fff, transparent);
            z-index: 1;
        }

        /* --- 無料のサービス内容 --- */
        .features {
            background-color: #fff;
            padding: 100px 20px;
            text-align: center;
        }
        .features-label { font-size: 1.2rem; color: #777; margin-bottom: 5px; }
        .features-title {
            font-size: 3rem;
            color: #e06a6a;
            font-weight: bold;
            letter-spacing: 0.1em;
            margin-bottom: 50px;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .feature-card {
            background: #fff;
            padding: 40px 20px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            border: 1px solid #f5f5f5;
        }
        .feature-icon { font-size: 3rem; margin-bottom: 20px; }
        .feature-text { font-weight: bold; font-size: 1.05rem; line-height: 1.4; color: #4a4a4a; }

        /* --- ギャラリーセクション --- */
        .gallery {
            padding: 100px 4%;
            background-color: #fffcf9;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .gallery-item {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            background-color: #eee;
        }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; }
        .gallery-tall { grid-row: span 2; }
        .gallery-subgrid { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; }

        /* --- 参加対象 --- */
        .eligibility {
            padding: 100px 4%;
            background-color: #fff;
        }
        .eligibility-box {
            max-width: 800px;
            margin: 0 auto;
            background-color: #fffbef;
            padding: 60px 40px;
            border-radius: 24px;
            text-align: center;
        }
        .eligibility-target {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.4;
            color: #333;
        }
        .eligibility-note { font-size: 1rem; color: #666; margin-bottom: 40px; }
        .venue {
            max-width: 800px;
            margin: 80px auto 0;
            padding: 0 20px;
        }
        .venue h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            border-left: 4px solid #f3b14e;
            padding-left: 15px;
            color: #444;
        }

        /* --- フロー（当日の流れ） --- */
        .flow {
            padding: 100px 4%;
            background-color: #fffcf7;
        }
        .flow-steps { max-width: 900px; margin: 0 auto; }
        .flow-step {
            display: flex;
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            align-items: center;
        }
        .flow-num {
            font-size: 2.2rem;
            font-weight: bold;
            color: #f3b14e;
            margin-right: 30px;
            min-width: 40px;
        }

        /* --- ★修正：参加者の声（タイトル追加・背景調整） --- */
        .voice {
            padding: 100px 4% 140px;
            background: #eab86a;
            position: relative;
            text-align: center;
        }
        .voice-subtitle {
            color: #fff;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 0.5rem;
            font-weight: bold;
            opacity: 0.9;
        }
        .voice-title {
            font-size: 2.2rem;
            margin-bottom: 3.5rem;
            letter-spacing: 0.05em;
            color: #fff;
            font-weight: bold;
        }
        .voice-container {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        .voice-card {
            background: #fff;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            text-align: left;
            min-height: 240px;
            position: relative;
        }
        .voice-card::before {
            content: '“';
            position: absolute;
            top: 15px;
            left: 25px;
            font-size: 3rem;
            color: #eab86a;
            font-family: serif;
            line-height: 1;
        }
        .voice-text {
            font-size: 1.05rem;
            color: #4a4a4a;
            line-height: 1.7;
            margin-top: 15px;
            margin-bottom: 30px;
        }
        .voice-meta {
            font-size: 0.9rem;
            color: #777;
            font-weight: 500;
        }

        /* --- カメラマン紹介 --- */
        .photographer {
            padding: 120px 4%;
            background-color: #fff;
        }
        .photographer-container {
            max-width: 1050px;
            margin: 0 auto;
            display: flex;
            gap: 60px;
            align-items: flex-start;
        }
        .photographer-images {
            flex: 1;
            display: flex;
            gap: 20px;
        }
        .photographer-img-wrapper {
            flex: 1;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.05);
        }
        .photographer-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .photographer-info {
            flex: 1.2;
        }
        .photographer-label {
            color: #eab86a;
            font-size: 0.9rem;
            font-weight: bold;
            letter-spacing: 0.1em;
            margin-bottom: 5px;
        }
        .photographer-name {
            font-size: 2.2rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 8px;
        }
        .photographer-sublabel {
            color: #eab86a;
            font-size: 0.85rem;
            font-weight: bold;
            margin-bottom: 25px;
        }
        .photographer-text {
            font-size: 1.05rem;
            color: #4a4a4a;
            line-height: 1.8;
            margin-bottom: 25px;
        }
        .photographer-media {
            border-top: 1px dashed #ddd;
            padding-top: 20px;
            font-size: 0.95rem;
            color: #555;
            line-height: 1.8;
        }

        /* --- 撮影会寄附窓口 --- */
        .support {
            padding: 100px 4% 80px;
            background-color: #fff8eb;
            text-align: center;
        }
        .support-label {
            color: #cca45b;
            font-size: 0.9rem;
            font-weight: bold;
            letter-spacing: 0.1em;
            margin-bottom: 5px;
        }
        .support-title {
            font-size: 2.2rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 30px;
        }
        .support-text {
            font-size: 1.1rem;
            color: #4a4a4a;
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto 35px;
        }
        .btn-support {
            background-color: #f3b14e;
            padding: 16px 45px;
            font-size: 1.1rem;
            border-radius: 30px;
            box-shadow: 0 4px 15px rgba(243, 177, 78, 0.3);
            margin-bottom: 40px;
        }

        /* --- ★修正：「ご支援をお願いします」より下のデザイン変更 ★ --- */
        .footer-info-area {
            max-width: 1100px;
            margin: 40px auto 0;
            padding-top: 40px;
            border-top: 1px solid #e1d3bc;
            display: flex;
            justify-content: space-around;
            text-align: left;
            flex-wrap: wrap;
            gap: 40px;
        }
        .footer-info-block h4 {
            font-size: 1.1rem;
            color: #4a4a4a;
            margin-bottom: 15px;
            font-weight: bold;
            position: relative;
            padding-left: 12px;
        }
        .footer-info-block h4::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            width: 4px;
            height: 16px;
            background-color: #e2a249;
        }
        .footer-info-block ul {
            list-style: none;
        }
        .footer-info-block ul li {
            margin-bottom: 10px;
            font-size: 0.95rem;
            color: #666;
        }
        .footer-info-block ul li a {
            color: #666;
            text-decoration: underline;
        }
        .footer-info-block ul li a:hover {
            color: #e2a249;
        }

        /* 最下部フッター */
        footer {
            background-color: #fff;
            padding: 30px 4%;
            text-align: center;
        }
        .copyright {
            color: #bfa070;
            font-size: 0.85rem;
            font-weight: 500;
        }

        /* --- レスポンシブ対応 --- */
        @media (max-width: 1024px) {
            .hero-inner { flex-direction: column; }
            .hero-image { min-height: 450px; flex: none; width: 100%; }
            .hero-image::before { background: linear-gradient(to top, #fff, transparent); width: 100%; height: 35%; top: auto; bottom: 0; left: 0; }
            .hero-title-block { font-size: 4rem; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .gallery-grid { grid-template-columns: 1fr; }
            .gallery-tall { grid-row: auto; height: 350px; }
            .voice-container { grid-template-columns: 1fr; }
            .photographer-container { flex-direction: column; gap: 40px; }
            .footer-info-area { flex-direction: column; align-items: flex-start; padding-left: 20px; }
        }
        @media (max-width: 768px) {
            .hero-title-block { font-size: 3.5rem; }
            .flow-step { flex-direction: column; text-align: center; }
            .flow-num { margin-right: 0; margin-bottom: 15px; }
        }
