/* 基本スタイルとフォント設定 */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
            line-height: 1.6;
            font-size: 16px;
            color: #333;
        }
        header{
            background-color: #e2f7f1;
            color: #603913#000;
        }
        p{margin-bottom: 0!important;}

        .smp{display: none;}

        /* ヘッダー・キービジュアル */
        .hero-section {
            background: url(img/bg02.jpg);
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(1px);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
.bg-yescom{
	background: initial!important;
	background-color: #e2f7f1!important;
}
.bg-yescom .main-header h1{color:#000;}
.vh75{min-height:75vh!important;}
.header_tx{
	font-size:2.0rem;
	text-align:center;
	line-height:1.5;
	font-weight:bold;
	padding:1.5rem 0;
}
@media (max-width: 768px){
	.header_tx{
	font-size:1.4rem;
	text-align:center;
	line-height:1.5;
	font-weight:bold;
	padding:0.8rem 0;
}
}

        /* ナビゲーション */
        nav {
            padding: 20px 0;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 40px;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-size: 18px;
            padding: 10px 20px;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        nav a:hover {
            background: rgba(255, 255, 255, 0.8);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* メインヘッダー */
        .main-header {
            text-align: center;
            padding: 60px 0 40px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .main-header h1 {
			font-size: 2.6rem;
			font-weight:bold;
			color: #fff;
			line-height: 1.4;
            margin-bottom: 50px!important;
        }

        /* 代替テキスト表示用 */
        .title-fallback {
            font-size: 3.5rem;
            font-weight: bold;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: rainbow 3s ease-in-out infinite;
        }

        @keyframes rainbow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* キービジュアル情報 */
        .key-visual {
            display: flex;
            align-items: center;
            gap: 40px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            margin: 0 auto;
        }

        .disc-image {
            flex-shrink: 0;
            position: relative;
        }

        .disc-image img {
            width: 370px;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        .disc-badge{
            position: absolute;
            left: -20px;
    top: -30px;
        }
.disc-badge p {
    width: 120px;
    height: 60px;
    /* border-radius: 50%; */
    /* background-color: #e74c3c; */
    position: relative;
}
.disc-badge p span {
    position: absolute;
    display: inline-block;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 120px;
    text-align: center;
    color: #e74c3c;
    font-size: 1.0rem;
    font-weight: bold;
}
        .disc-belt{
            position: absolute;
            width: 100%;
            background-color:#e74c3c;
            bottom: 10px;
            padding: 10px;
            text-align: center;
            color: #fff;
            font-size: 0.8rem;
        }

        /* 代替画像表示用 */
        .disc-fallback {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .disc-fallback::before {
            content: '';
            width: 40px;
            height: 40px;
            background: #fff;
            border-radius: 50%;
            position: absolute;
        }

        .disc-fallback::after {
            content: 'DVD';
            position: absolute;
            font-size: 14px;
            font-weight: bold;
            color: #666;
            bottom: 20px;
        }

        .key-info {
            flex: 1;
        }

        .production-committee {
            font-size: 1.4rem;
    color: #666;
    margin-bottom: 10px;
        }

        .main-title {
            font-size: 1.3rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 40px;
    line-height: 1.3;
        }

        .subtitle {
            font-size: 2.4rem;
			font-weight:bold;
			color: #fff;
			margin-bottom: 20px !important;
			line-height: 1.4;
        }

        .product-info {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 20px;
        }

        .product-info p {
            margin-bottom: 8px;
            font-size: 16px;
        }

        .highlight {
            padding: 15px;
            margin: 0 0 30px 0;
            font-weight: bold;
            font-size: 1.4rem;
        }

        .target-audience {
            padding: 25px 15px;
            border-radius: 10px;
            border: 1px solid #3498db;
            position: relative;
            margin-bottom: 30px;
        }
        .target-audience h3{
            position: absolute;
            left: -20px;
            top: -15px;
            color: #fff;
            background-color: #3498db;
            border-radius: 10px;
            padding: 5px 10px;
            text-align: center;
            font-size: 1.2rem;
            font-weight: normal;
        }
        .target-audience p{
			line-height:1.4;
			font-size:1.2rem;
}

        .price {
            font-size: 1.8rem;
            font-weight: bold;
            color: #e74c3c;
            text-align: center;
            margin-top: 15px;
            margin-bottom: 30px;
			line-height:1.5
        }
.price span {
            font-size: 1.4rem;
        }

.button-container {
            width: 100%;
	margin-bottom:30px;
        }

        .dvd-purchase-btn {
            display: block;
            width: 100%;
            padding: 20px 40px;
            background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
            color: white;
            text-decoration: none;
            font-size: 24px;
            font-weight: 600;
            text-align: center;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
            border: 2px solid transparent;
            letter-spacing: 0.5px;
        }

        .dvd-purchase-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .dvd-purchase-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid white;
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
            transition: transform 0.3s ease;
        }

        .dvd-purchase-btn:hover {
            transform: translateY(-3px) scale(1.02);
            background: linear-gradient(45deg, #ff5252, #ff7979);
            box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
            border-color: rgba(255, 255, 255, 0.2);
			text-decoration:none;
			color:#fff;
        }

        .dvd-purchase-btn:hover::before {
            left: 100%;
        }

        .dvd-purchase-btn:hover::after {
            transform: translateY(-50%) translateX(5px);
        }

        .dvd-purchase-btn:active {
            transform: translateY(-1px) scale(1.01);
            box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
        }

        .button-text {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .dvd-purchase-btn {
                padding: 18px 30px;
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .dvd-purchase-btn {
                padding: 16px 25px;
                font-size: 18px;
                border-radius: 10px;
            }
            
            .dvd-purchase-btn::after {
                border-left: 6px solid white;
                border-top: 5px solid transparent;
                border-bottom: 5px solid transparent;
                right: 15px;
            }
        }

        /* アクセシビリティ対応 */
        @media (prefers-reduced-motion: reduce) {
            .dvd-purchase-btn,
            .dvd-purchase-btn::before,
            .dvd-purchase-btn::after {
                transition: none;
            }
        }

        /* フォーカス時のスタイル */
        .dvd-purchase-btn:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.5), 0 15px 35px rgba(255, 107, 107, 0.4);
        }

        /* メインコンテンツ */
        .main-content {
            background: #fff;
            padding: 80px 0;
        }

        .content-section {
            margin-bottom: 0px;
        }

        .content-section h2 {
            font-size: 36px;
            font-weight: bold;
            color: #e74c3c;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .content-section h2::after {
            content: '';
            width: 80px;
            height: 4px;
            background: #e74c3c;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .content-section h3 {
            font-size: 24px;
            font-weight: bold;
            color: #34495e;
            margin-bottom: 30px;
            padding-left: 20px;
            border-left: 5px solid #e74c3c;
        }

        .content-text {
            font-size: 18px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }

        .content-text strong {
            color: #2c3e50;
            font-weight: 600;
        }

        .supervisor-info {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-top: 30px;
            font-style: italic;
            border-left: 4px solid #e74c3c;
        }

        /* サブコンテンツ */
        .sub-content {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 80px 0;
        }

        /* サブコンテンツの横並びレイアウト */
        .sub-content .container {
            display: flex;
            gap: 40px;
            align-items: stretch;
        }

        .content-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: 25px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            flex: 1;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            min-height: 0;
        }

        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 50px rgba(0,0,0,0.15);
        }

        /* セクションタイトル */
        .content-section-title {
            font-size: 1.6rem;
            font-weight: bold;
            margin-bottom: 10px;
            text-align: center;
            letter-spacing: 1px;
            width: 100%;
            padding: 10px;
            text-align: center;
            border-radius: 10px;
        }
        .content-section-title span{
            font-size: 1.0rem;
            padding-left: 15px;
        }

        .preschool-title {
            background-color: #e74c3c;
            color: #fff;
        }

        .elementary-title {
            background-color: #3498db;
            color: #fff;
        }

        .content-image {
            flex-shrink: 0;
            text-align: center;
            width: 100%;
            position: relative;
        }
        .content-image img, .content-detail-image img{
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        /* 主な内容セクション */
        .main-content-section {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 2px solid #e9ecef;
        }

        .main-content-section h4 {
            font-size: 24px;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 25px;
            text-align: center;
            position: relative;
        }

        .main-content-section h4::after {
            content: '';
            width: 50px;
            height: 3px;
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .pre .main-content-section h4::after{
            background-color: #e74c3c;
        }
        .elementary .main-content-section h4::after{
            background-color: #3498db
        }

        .content-detail-image {
            text-align: center;
            margin-bottom: 25px;
        }

        .detail-placeholder {
            width: 200px;
            height: 120px;
            border-radius: 15px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .detail-placeholder.preschool-detail {
            background: linear-gradient(135deg, #FFA07A 0%, #FFB6C1 100%);
        }

        .detail-placeholder.elementary-detail {
            background: linear-gradient(135deg, #B0E0E6 0%, #87CEEB 100%);
        }

        .timeline-icon {
            font-size: 30px;
            z-index: 2;
        }

        .story-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-around;
            padding: 10px;
        }

        .element {
            font-size: 20px;
            animation: pulse 2s ease-in-out infinite;
        }

        .element1 { animation-delay: 0s; }
        .element2 { animation-delay: 0.5s; }
        .element3 { animation-delay: 1s; }
        .element4 { animation-delay: 1.5s; }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.2); opacity: 1; }
        }

        .timeline-content {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 15px;
        }
        .pre .timeline-content{
            border-left: 4px solid #e74c3c;
        }
        .elementary .timeline-content{
            border-left: 4px solid #3498db;
        }

        .timeline-item {
            margin-bottom: 20px;
            line-height: 1.7;
            font-size: 16px;
            color: #555;
            position: relative;
            padding-left: 25px;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-marker {
            font-weight: bold;
            position: absolute;
            left: 0;
            top: 0;
        }
        .pre .timeline-marker{
            color: #e74c3c;
        }
        .elementary .timeline-marker{
            color: #3498db;
        }

        .caption {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            background: rgba(0, 0, 0, 0.7);
            padding: 8px 16px;
            border-radius: 0 0 15px 0;
            position: absolute;
            top: 0;
            z-index: 10;
            backdrop-filter: blur(5px);
        }

        .content-card:first-child .caption {
            left: 0;
            border-radius: 0 0 15px 0;
        }

        .content-card:last-child .caption {
            right: 0;
            border-radius: 0 0 0 15px;
        }

        .content-body {
            flex: 1;
            width: 100%;
        }

        .content-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .content-header h3 {
            font-size: 20px;
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .content-header .subtitle {
            display: block;
            font-size: 16px;
            margin-top: 5px;
        }
        .pre .content-header h3, .pre .content-header .subtitle {
            color: #e74c3c;
        }
        .elementary .content-header h3, .elementary .content-header .subtitle  {
            color: #3498db;
        }

        .content-header .author {
            font-size: 18px;
            color: #7f8c8d;
			margin-bottom:5px;
            font-weight: 600;
        }
 .content-header .author_title {
            font-size: 0.9rem;
            color: #7f8c8d;
            font-weight: normal;
        }

        .content-text p {
            font-size: 1.0rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px!important;
            text-align: justify;
        }

        .content-text p:last-child {
            margin-bottom: 0!important;
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            body{
                font-size: 0.8rem!important;
            }
            .smp{display: block;}
            .key-visual {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        width: 100%;
        gap: 20px;
    }
    .disc-image {
    flex-shrink: 0;
    position: relative;
    width: 100%;
}
.disc-badge {
    position: absolute;
    left: -10px;
    top: -10px;
}
.disc-badge p {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #e74c3c;
    position: relative;
}
.disc-badge p span {
    width: 80px;
    font-size: 0.7rem;
    font-weight: normal;
}

            .disc-image img,
            .disc-fallback {
                width: 70%;
        height: auto;
            }

            .title-fallback {
                    font-size: 2.5rem;
            }
            .container {
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    position: relative;
    z-index: 1;
}
.disc-belt {
        bottom: 15px;
        padding: 5px;
        font-size: 0.6rem;
        right: 0;
        bottom: 15px;
        left: 0;
        margin: auto;
        width: 70%;
    }
.disc-belt p{
    margin-bottom: 0!important;
}
.main-header {
    text-align: center;
    padding: 30px 0;
    flex-grow: 1;
    display: flex
;
    flex-direction: column;
    justify-content: center;
}
.main-header h1 {
    font-size: 1.6rem;
    margin-bottom: 25px !important;
}
.main-header h1 img {
    max-width: 100%;
    height: auto;
}

            .main-title {
                font-size: 20px;
            }

            .subtitle {
                font-size: 0.8rem;
                margin-bottom: 15px;
            }
            .highlight {
    padding: 15px;
        margin: 0 0 30px 0;
        font-weight: normal;
        font-size: 1.0rem;
}
.target-audience {
    padding: 25px 0px;
    border-radius: 10px;
    border: 1px solid #3498db;
    position: relative;
    margin-bottom: 20px;
}
.target-audience h3 {
    position: absolute;
    left: -20px;
    top: -15px;
    color: #fff;
    background-color: #3498db;
    border-radius: 10px;
    padding: 5px 10px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: normal;
}
.target-audience p {
    line-height: 1.4;
    font-size: 0.8rem;
}
.price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #e74c3c;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 20px;
}
.price span {
    font-size: 1.0rem;
}
.production-committee {
    font-size: 0.7rem;
    color: #666;
    margin-bottom: 20px;
}
            nav ul {
                gap: 20px;
            }

            nav a {
                font-size: 16px;
                padding: 8px 15px;
            }
            .main-content {
    background: #fff;
    padding: 30px 0;
}
.content-section {
    margin-bottom: 0px;
}

                .content-section h2 {
        font-size: 1.2rem;
    }

            .content-section h3 {
                font-size: 1.0rem;
            }

            .content-text {
                font-size: 0.8rem;
            }
            .sub-content {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px 0;
}
.content-section-title {
    font-size: 1.2rem;
    font-weight: normal;
}

            .sub-content .container {
                flex-direction: column;
                gap: 60px;
            }

            .content-card {
                flex-direction: column;
                padding: 30px 20px;
                gap: 30px;
            }

            .content-card.reverse {
                flex-direction: column;
            }

            .image-placeholder {
                width: 200px;
                height: 160px;
            }

            .content-header h3 {
                font-size: 1.2rem;
            }

            .content-header .subtitle {
                font-size: 16px;
            }

            .content-header .author {
                font-size: 16px;
            }

            .content-text p {
    font-size: 0.8rem;
    margin-bottom: 10px;
}

            .main-content-section h4 {
                font-size: 1.2rem;
        font-weight: normal;
            }

            .detail-placeholder {
                width: 150px;
                height: 90px;
            }

            .timeline-icon {
                font-size: 24px;
            }

            .element {
                font-size: 16px;
            }

            .timeline-content {
                padding: 20px;
            }

            .timeline-item {
                font-size: 0.8rem;
                padding-left: 20px;
            }
        }

        /* 感想セクション */
        .testimonials-section {
            background: linear-gradient(135deg, #a8e6cf 0%, #dcedc8 50%, #c8e6c9 100%);
            padding: 80px 0;
            color: #2c3e50;
        }

        .testimonials-section h2 {
            font-size: 36px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 60px;
            color: #2c3e50;
            position: relative;
        }

        .testimonials-section h2::after {
            content: '';
            width: 80px;
            height: 4px;
            background-color:#2c3e50;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .testimonials-grid {
            display: flex;
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }

        .testimonial-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            max-width: 350px;
            width: 30%;
        }

        .person-icon {
            width: 80px;
            height: auto;
            margin-bottom: 15px;
            animation: bounce 2s ease-in-out infinite;
        }
        .person-icon img{
            width: 100%;
            height: auto;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        .avatar {
            font-size: 40px;
        }

        .job-title {
            font-size: 16px;
            font-weight: 600;
            color: rgba(44, 62, 80, 0.8);
            margin-bottom: 20px;
            background: rgba(255, 255, 255, 0.8);
            padding: 8px 16px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .speech-bubble {
            background: rgba(255, 255, 255, 0.95);
            color: #333;
            padding: 25px;
            border-radius: 20px;
            position: relative;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
            max-width: 100%;
        }

        .speech-bubble::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-bottom: 15px solid rgba(255, 255, 255, 0.95);
        }

        .speech-bubble p {
            margin: 0;
            font-size: 16px;
            line-height: 1.6;
            font-weight: 500;
            text-align: left;
        }

        @media (max-width: 768px){
            .testimonials-section{
                padding: 30px 0;
            }
            .testimonials-section h2 {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    position: relative;
}

            .testimonials-grid {
    display: flex;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}

            .testimonial-item {
                width: 100%;
                margin: 0 auto;
            }
            .speech-bubble p {
            font-size: 0.8rem;
        }
        }

        /* スタッフクレジットセクション */
        .credits-section {
            background: linear-gradient(135deg, #fff3e0 0%, #ffecb3 50%, #fff8e1 100%);
            color: #5d4037;
            padding: 60px 0;
            text-align: center;
        }

        /* 協力セクション（独立表示） */
        .cooperation-section, .plan-section {
            margin-bottom: 50px;
        }

        .cooperation-section h2 {
            font-size: 32px;
            font-weight: bold;
            color: #37474f;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .cooperation-section p {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #37474f;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
        }

        /* 監修セクション（独立表示） */
        .supervision-section {
            margin-bottom: 50px;
        }

        .supervision-section h2 {
            font-size: 28px;
            font-weight: bold;
            color: #37474f;
            margin-bottom: 20px;
            letter-spacing: 2px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }

        .supervision-section p, .plan-section p {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 10px;
            color: #37474f;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }

        .plan-section h2 {
            font-size: 28px;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 20px;
            letter-spacing: 2px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }

        .credits-roll {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

        .credit-item {
            background: rgba(255, 255, 255, 0.7);
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s ease-out forwards;
			width: 30%;
        }

        .credit-item:nth-child(1) { animation-delay: 0.2s; }
        .credit-item:nth-child(2) { animation-delay: 0.4s; }
        .credit-item:nth-child(3) { animation-delay: 0.6s; }
        .credit-item:nth-child(4) { animation-delay: 0.8s; margin:0 0 0 5%; }
        .credit-item:nth-child(5) { animation-delay: 1.0s; margin:0 5% 0 0; }
        .credit-item:nth-child(6) { animation-delay: 1.2s; margin:0 0 0 5%;}
        .credit-item:nth-child(7) { animation-delay: 1.4s; margin:0 5% 0 0;}

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* その他のスタッフ（標準レベル） */
        .credit-item h3, .credit-item p {
            font-size: 16px;
            font-weight: 600;
            color: #5d4037;
            margin-bottom: 5px;
            letter-spacing: 0.5px;
			line-height: 1.4;
        }

        .credit-item p:last-child {
            margin-bottom: 0;
        }

        /*注文フォーム */

        .order-section {
            background-color: #e2f7f1;
            padding: 80px 0;
            color: #2c3e50;
        }

        .order-section h2 {
            font-size: 36px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 60px;
            color: #603913;
            position: relative;
        }

        /*.order-section h2::after {
            content: '';
            width: 80px;
            height: 4px;
            background-color:#2c3e50;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }*/
        .order_form{
            width: 100%;
        }

        dl.row, div.row{
	background-color: #fff;
	font-size: 1.4rem;
	line-height: 1.5;
	border-radius: 5px;
	padding: 10px 0 0 0;
}
dl.row dt span, div.row div span{
	font-size: 1.4rem;
	color: #C00000;
}
dl.row p{
    margin-bottom: 0px!important;
}
div.row p{
    margin-bottom: 0px!important;
	font-size:1.2rem;
}
.form_block{
	background-color: #fff;
	border-radius: 5px;
	padding: 15px;
	margin-right: -15px;
    margin-left: -15px;
}

input[type=checkbox] {
    transform: scale(1.2);
}
input#quantity-field {
    width: 100px;
}
.form-check-label{
	font-size: 1.2rem;
}

.wpcf7-list-item {
    display: block!important;
    margin: 0 0 0 1em;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ff0000;
    background-color: #fff;
    color: #ff0000;
    padding: 15px;
    font-size: 1.2rem;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    padding: 15px;
    background-color: #fff;
    font-size: 1.2rem;
}
label {
    font-size: 1.2rem;
}

.order_form input{
    width: 100%;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    padding: 2px 5px;
    font-size: 1.2rem;
}
#order_form input{
    width: 100px!important;
}
input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 20px;
  font-weight: bold;
  width: 200px;
  padding: 10px;
  border-radius: 10px;
  background-color: #2c3e50;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
span.wpcf7-spinner {
  display: none;
}
input[type="submit"]:hover{
    background-color: #58728b;
}
#total-price {
    background-color: #f0f8ff;
    border: 2px solid #007cba;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

#price-display {
    color: #d63384;
    font-size: 28px;
}
textarea.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
	background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    padding: 2px 5px;
    font-size: 1.2rem;
}

        /* フッター */
        .footer {
            background: #2c3e50;
            color: white;
            padding: 40px 0;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright p {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
        }

        .address p {
            font-size: 14px;
            margin: 0;
            color: rgba(255, 255, 255, 0.8);
        }

        /* フッターのレスポンシブ対応 */
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            .credits-section{
                padding: 30px 0;
            }

            .credits-roll {
                display: flex;
        flex-direction: column;
            }
			.credit-item {
    width: 100%;
}
			.credit-item:nth-child(4) { margin:0 auto!important; }
        .credit-item:nth-child(5) { margin:0 auto!important; }
        .credit-item:nth-child(6) { margin:0 auto!important; }
        .credit-item:nth-child(7) { margin:0 auto!important; }

            .cooperation-section h2 {
                font-size: 1.2rem;
        letter-spacing: 1px;
        margin-bottom: 10px;
            }

            .cooperation-section p, .supervision-section p, .plan-section p {
                font-size: 0.6rem;
            }
             .cooperation-section p strong, .supervision-section p strong, .plan-section p strong {
                font-size: 0.9rem;
            }

            .supervision-section h2, .plan-section h2 {
                font-size: 1.2rem;
        letter-spacing: 1px;
        margin-bottom: 10px;
            }
            .order-section h2 {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
			
        }

.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 2em; /* ラジオボタン間の余白 */
}
@media (max-width: 768px) {
	.wpcf7-radio {
  gap: 0.5em; /* ラジオボタン間の余白 */
		flex-direction:column;
}
}

/* ラジオボタン項目 */
.wpcf7-list-item {
  display: flex;
  align-items: center;
  white-space: nowrap; /* テキストの折り返しを防止 */
}

/* ラベルの中身を綺麗に整列 */
.wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.4em;
  cursor: pointer;
}

/* radio ボタン自体の余白を排除 */
.wpcf7-list-item input[type="radio"] {
  margin: 0;
  vertical-align: middle;
	width: auto !important;
}
/* Contact Form 7のsubmitボタンを明示的に指定する必要がある場合 */
.wpcf7-form input[type="submit"] {
    pointer-events: auto !important;
}
@media (max-width:768px){
	.wpcf7-list-item input[type="radio"] {
    width: auto !important;
}
}
.purchase-only {
    transition: opacity 0.3s ease;
}

.h1_sub {
    text-align: center;
    padding: 10px 20px;
    background-color: #fff;
    color: #3498db;
    font-weight: bold;
    font-size: 2.6rem;
    border-radius: 30px;
    width: fit-content;
    margin: 0 auto 10px !important;
}
@media (max-width:768px){
	.h1_sub{
		padding:5px 10px;
		font-size:1.6rem;
	}
}