/* 基本設定 */
/* body, h1-h6, p の基本設定は base.css に統合されています */

h1, h2, h3, p {
    margin: 0;
}

/* ヒーローセクション */
.hero-section,
#hero {
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

/* 黒背景 */
.hero-section::before,
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: -1;
}

/* 動画エリアのラッパー（黒背景セクション） */
.header-content,
.header-video-container {
    position: relative;
}

/* 背景動画コンテナ */
.header-video-container {
    position: absolute;
    top: 40px; /* 左右と同じ余白 */
    left: 40px;
    right: 40px;
    height: calc(100vh - 80px); /* 上下40pxずつの余白 */
    overflow: hidden;
    border-radius: 20px; /* 角丸 */
    z-index: 1; /* 黒背景の上 */
}

/* 背景動画 */
.header-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* コンテナ全体をカバーするようにスケール */
    opacity: 0.7; /* 少し透過させて文字を読みやすく */
}

/* 動画の上にオーバーレイ */
.header-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0, 0, 0, 0.2));
    pointer-events: none;
}

/* ヘッダー関連のスタイルはHeader.astroに統合されました */

.header-content {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2; /* 動画とオーバーレイの上に表示 */
}

.header-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.header-content p {
    font-size: 1.2em;
}


/* 共通セクションスタイル */
section {
    padding: 80px 5%;
    box-sizing: border-box;
}

.section-white {
    /* 背景を透過にして、base.cssの固定背景を表示 */
    background-color: transparent;
}

.section-pink {
    /* 背景を透過にして、base.cssの固定背景を表示 */
    background-color: transparent;
}

.section-title {
    text-align: center;
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
}
.section-subtitle {
    text-align: center;
    font-size: 1.3em;
    color: #666;
    margin-bottom: 50px;
}

/* フェードインアニメーションは base.css に統合されています */

/* About */
#about {
    position: relative;
    overflow: hidden;
}

/* ABOUT、VISION、EXPERIENCEセクションを全幅表示に */
#about .simple-section-container,
#vision-preview .simple-section-container,
#experience .simple-section-container {
    max-width: 100%;
    margin: 0;
    padding: 0 3%;
}

/* ABOUT、VISION、EXPERIENCEセクションの見出しは独立しているのでマージンを調整 */
#about .simple-section-heading,
#vision-preview .simple-section-heading,
#experience .simple-section-heading {
    margin-bottom: 60px;
}

/* すべてのセクション見出しを統一 (4em) */

/* VISIONセクションのコンテンツラッパー */
.vision-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.vision-text {
    flex: 1;
}

.vision-image {
    flex: 0 0 500px;
    width: 500px;
}

.vision-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* VISIONセクションのステートメント（BOLD） */
.vision-statement {
    font-size: 1.3em;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #1a1a1a;
    font-weight: bold;
}

/* ABOUTセクションのコンテンツラッパー */
.about-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 0 0 500px;
    width: 500px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* EXPERIENCEセクション - 動画優先レイアウト */
.experience-video-large {
    width: 80%;
    max-width: 1000px;
    margin: 60px auto 40px;
}

.experience-video-player {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.experience-description {
    text-align: center;
    max-width: 800px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.experience-description p {
    font-size: 1.25em;
    line-height: 2;
    color: #333;
    font-weight: 400;
}

/* ABOUT、VISION、EXPERIENCEセクションのレスポンシブ対応 */
@media (max-width: 968px) {
    #about .simple-section-container,
    #vision-preview .simple-section-container,
    #experience .simple-section-container {
        padding: 0 2%;
    }

    .about-content-wrapper,
    .vision-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .about-image,
    .vision-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
    }

    .experience-video-large {
        width: 95%;
        margin: 40px auto 30px;
    }

    .experience-description {
        margin-top: 35px;
        padding: 0 15px;
    }

    .experience-description p {
        font-size: 1.1em;
        line-height: 1.9;
    }
}


/* Infinite Scroll Slider / Gallery */
#slide {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
    position: relative;
}

#slide .section-title {
    text-align: center;
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #1a1a1a;
    position: relative;
    z-index: 2;
}

#slide .section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.3em;
    position: relative;
    z-index: 2;
}

/* フィルムの穴（上部） */
#slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15%;
    background-image: repeating-linear-gradient(
        to right,
        transparent 0px,
        transparent 30px,
        #000 30px,
        #000 40px,
        transparent 40px,
        transparent 50px
    );
    background-size: 50px 100%;
    box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* フィルムの穴（下部） */
#slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15%;
    background-image: repeating-linear-gradient(
        to right,
        transparent 0px,
        transparent 30px,
        #000 30px,
        #000 40px,
        transparent 40px,
        transparent 50px
    );
    background-size: 50px 100%;
    box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.5);
}

.infinite-slider {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.slider-track {
    display: flex;
    gap: 30px;
    animation: infiniteScroll 40s linear infinite;
    will-change: transform;
}

.slide-card {
    flex: 0 0 auto;
    width: 400px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.slide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.slide-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    pointer-events: none; /* 画像自体ではなくカードでクリックを検知 */
}

/* 無限スクロールアニメーション */
@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-400px * 3 - 30px * 3)); /* カード3枚分 + gap3つ分 */
    }
}

/* 画像拡大モーダル */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #ffffff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10001;
}

.modal-close:hover {
    color: #ccc;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* News Section */
/* NEWSとJOIN THE JOURNEYセクション共通のタイトルスタイル */
.title-group {
    text-align: center;
    margin-bottom: 20px;
}

.main-title {
    font-size: 2.8em;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.sub-title {
    font-size: 1.15em;
    color: #666;
    font-weight: 400;
}

.catchphrase {
    text-align: center;
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.lead-text {
    text-align: center;
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.news-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.news-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    width: 320px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
}
.news-card:hover {
    transform: translateY(-5px);
}
.news-image-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.news-text-container {
    padding: 25px;
}
.news-date {
    font-size: 1em;
    color: #888;
    margin-bottom: 8px;
}
.news-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}
.news-excerpt {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}
.news-button {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #333;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: all 0.3s ease;
}
.news-button:hover {
    background-color: #333;
    color: #fff;
}


#footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 50px 50px; /* paddingを少し調整 */
}

.footer-container {
    max-width: 1200px; /* 最大幅を設定 */
    margin: 0 auto; /* 中央揃え */
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* 上揃え */
    gap: 40px;
    flex-wrap: wrap; /* スマホ表示用に折り返しを許可 */
}

/* 左側: ロゴ */
.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.footer-logo .logo-icon { /* header-navと区別するため、親要素を指定 */
    height: 40px;
    margin-right: 15px;
}
.footer-logo .logo-text {
    font-weight: bold;
    font-size: 1.5em;
    color: #ffffff;
}

/* 右側: コンテンツエリア */
.footer-right-content {
    display: flex;
    gap: 60px; /* MenuとSocialの間の余白 */
    flex-wrap: wrap;
}

/* 右側の各カラム */
.footer-column {
    min-width: 150px;
}
.footer-column h4 {
    color: white;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.1em;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column ul li {
    margin-bottom: 12px;
}
.footer-column ul a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-column ul a:hover {
    color: white;
}
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    display: flex; /* 中央揃えのためflexに変更 */
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border: 1px solid #ccc;
    border-radius: 50%;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
    margin-right: 10px; /* 旧ルールからマージ */
}
.social-icons a:hover {
    background-color: #ccc;
    color: #1a1a1a;
}

/* レスポンシブ対応 */
@media (max-width: 968px) {
    /* ヒーローセクション */
    .header-content h1 {
        font-size: 2.5em;
    }

    .header-content p {
        font-size: 1.1em;
    }

    /* セクションタイトル */
    .section-title {
        font-size: 2.8em;
    }

    .section-subtitle {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    /* 動画コンテナのパディング調整 */
    .header-video-container {
        top: 15px;
        left: 15px;
        right: 15px;
        height: calc(100vh - 30px);
        border-radius: 15px;
    }

    /* スマホ画面では動画の表示位置をやや右寄りに調整 */
    .header-bg-video {
        object-position: 25% center;
    }

    /* ヒーローセクション */
    .header-content h1 {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .header-content p {
        font-size: 1em;
        padding: 0 20px;
    }

    /* セクションタイトル */
    .section-title {
        font-size: 2.5em;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 1.1em;
        margin-bottom: 40px;
    }

    /* セクション共通 */
    section {
        padding: 60px 5%;
    }

    /* Simple section heading */
    .simple-section-heading {
        font-size: 2.5em;
        margin-bottom: 35px;
    }

    .simple-section-text {
        font-size: 1.2em;
    }

    /* ニュースカード */
    .news-container {
        gap: 20px;
    }

    .news-card {
        width: 100%;
        max-width: 400px;
    }

    /* Join Us セクション */
    .join-us-content {
        padding: 60px 20px;
    }

    .catchphrase {
        font-size: 2em;
    }

    .main-title {
        font-size: 2.5em;
    }

    /* スクロールインジケーターのサイズ調整 */
    .scroll-text,
    .scroll-arrow {
        font-size: 2.5em;
    }

    .scroll-indicator {
        bottom: clamp(16px, 6vh, 36px);
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    /* ヒーローセクション - さらに小さいスクリーン */
    .header-video-container {
        top: 10px;
        left: 10px;
        right: 10px;
        height: calc(100vh - 20px);
        border-radius: 10px;
    }

    /* スマホ画面では動画の表示位置をやや右寄りに調整 */
    .header-bg-video {
        object-position: 25% center;
    }

    .header-content h1 {
        font-size: 1.6em;
        line-height: 1.3;
    }

    .header-content p {
        font-size: 0.9em;
    }

    /* セクションタイトル */
    .section-title {
        font-size: 2em;
    }

    .section-subtitle {
        font-size: 1em;
    }

    /* セクション共通 */
    section {
        padding: 50px 4%;
    }

    /* Simple section */
    .simple-section-heading {
        font-size: 2em;
        line-height: 1.3;
    }

    .simple-section-text {
        font-size: 1.1em;
    }

    .simple-section-label .label-en {
        font-size: 2em;
    }

    /* ニュース */
    .catchphrase {
        font-size: 1.6em;
    }

    .main-title {
        font-size: 2em;
    }

    .lead-text {
        font-size: 1.1em;
    }

    /* Join Us */
    .join-subtitle {
        font-size: 1.2em;
    }

    /* スクロールインジケーター */
    .scroll-text,
    .scroll-arrow {
        font-size: 2em;
    }

    .scroll-indicator {
        bottom: 20px;
    }
}

.news-container .fade-in-target:nth-child(1) {
    /* 1番目の要素は即座に開始 */
    transition: opacity 0.8s ease-out 0s, transform 0.8s ease-out 0s;
}
/* Newsカードが順番に表示されるためのアニメーション遅延設定 (修正版) */
.news-container .fade-in-target:nth-child(2) {
    /* 2番目の要素は0.2秒遅れて開始 */
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.news-container .fade-in-target:nth-child(3) {
    /* 3番目の要素は0.4秒遅れて開始 */
    transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s;
}

/* ========================================
   Kinetic Typography Animation
   ======================================== */

/* タイトル全体のコンテナ */
.kinetic-title {
    overflow: visible;
    perspective: 1000px;
}

/* 各行の初期状態（非表示） */
.kinetic-title span {
    display: inline-block;
    opacity: 0;
    white-space: nowrap;
    text-shadow:
        -2px 0 0 rgba(0, 0, 0, 0.45),
        2px 0 0 rgba(0, 0, 0, 0.45),
        0 -2px 0 rgba(0, 0, 0, 0.45),
        0 2px 0 rgba(0, 0, 0, 0.45),
        0 0 8px rgba(0, 0, 0, 0.3),
        0 0 16px rgba(0, 0, 0, 0.15);
}

/* 1行目: 左から飛んでくる */
.kinetic-title .line-1 {
    animation: slideInFromLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* 2行目: 右から飛んでくる（遅延あり） */
.kinetic-title .line-2 {
    animation: slideInFromRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
}

/* 左からのスライドインアニメーション */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100vw) scale(0.8);
    }
    70% {
        opacity: 1;
        transform: translateX(0) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* 右からのスライドインアニメーション */
@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100vw) scale(0.8);
    }
    70% {
        opacity: 1;
        transform: translateX(0) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* サブタイトルのフェードイン（さらに遅延） */
.subtitle-fade {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.8s forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes simpleFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ========================================
   Scroll Indicator
   ======================================== */

.scroll-indicator {
    position: absolute;
    bottom: clamp(32px, 7vh, 72px); /* 画面高さに応じて余白を調整 */
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    z-index: 10; /* 動画とオーバーレイの上 */
    opacity: 0;
    transform: translateX(-50%);
    animation: fadeInPulse 3s ease-in-out 2s infinite; /* 2秒遅延後に開始 */
}

.scroll-text {
    font-size: 3.5em; /* メインタイトルと同じサイズ */
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: lowercase;
}

.scroll-arrow {
    font-size: 3.5em; /* メインタイトルと同じサイズ */
    color: rgba(255, 255, 255, 0.8);
}

/* ふわっと点滅アニメーション */
@keyframes fadeInPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* スクロール後に非表示 */
.scroll-indicator.hidden {
    animation: fadeOut 0.5s ease-out forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@media (prefers-reduced-motion: reduce) {
    .kinetic-title .line-1,
    .kinetic-title .line-2 {
        animation: simpleFadeIn 0.6s ease-out forwards;
        transform: none;
        text-shadow: none;
    }

    .kinetic-title .line-2 {
        animation-delay: 0.3s;
    }

    .subtitle-fade {
        animation: simpleFadeIn 0.6s ease-out 0.6s forwards;
        transform: none;
    }

    .scroll-indicator {
        animation: simpleFadeIn 0.5s ease-out 2s forwards;
        opacity: 0;
    }
}

@media (max-height: 720px) and (min-width: 769px) {
    .header-content {
        padding-bottom: 80px; /* スクロールインジケーターとの重なり防止 */
    }

    .scroll-text,
    .scroll-arrow {
        font-size: 3em;
    }
}


/* ========== Join Us Section ========== */
.join-us-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.join-subtitle {
    font-size: 1.35em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.follow-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.twitter-follow-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #000000;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.twitter-follow-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.twitter-icon {
    width: 24px;
    height: 24px;
    fill: white;
}

.news-link-button {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, #F5A623, #E67E22);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.news-link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.follow-description {
    font-size: 0.95em;
    color: #666;
    line-height: 1.7;
}

/* Newsセクションに追加の余白 */
.news-section {
    margin-top: 0;
    padding-top: 80px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .follow-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .twitter-follow-button,
    .news-link-button {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   参考デザイン風の共通スタイル
   ======================================== */

/* セクション全体のコンテナ（中央寄り・左揃え） */
.simple-section-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

/* セクションラベル（例: "ABOUT アバウト"） */
.simple-section-label {
    font-size: 0.95em;
    color: #888;
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

/* セクションラベルの左側の点滅する水色の線 */
.simple-section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: linear-gradient(180deg, #00d4ff, #00a8cc);
    border-radius: 2px;
    animation: blinkLine 2s ease-in-out infinite;
}

@keyframes blinkLine {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
}

/* ラベル内の英語部分を大きく */
.simple-section-label .label-en {
    font-size: 2.8em;
    font-weight: bold;
    color: #1a1a1a;
    margin-right: 15px;
    letter-spacing: 2px;
}

/* ラベル内の日本語部分を小さく */
.simple-section-label .label-ja {
    font-size: 1.15em;
    color: #666;
    font-weight: 400;
}

/* 大きな見出し */
.simple-section-heading {
    font-size: 4em;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 50px;
    color: #1a1a1a;
}

/* サブヘッディング */
.simple-section-subheading {
    font-size: 1.7em;
    font-weight: bold;
    margin-bottom: 30px;
    margin-top: 40px;
    color: #1a1a1a;
}

/* 本文テキスト */
.simple-section-text {
    font-size: 1.35em;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #444;
}

/* CTAボタン（白背景） */
.simple-section-cta {
    display: inline-block;
    padding: 18px 50px;
    margin-top: 30px;
    background-color: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.simple-section-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    background-color: #f8f8f8;
}

/* CTAボタン右矢印 */
.simple-section-cta::after {
    content: ' →';
    margin-left: 8px;
}

/* 動画コンテナ（シンプル版） */
.simple-video-container {
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.simple-video {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .simple-section-container {
        padding: 0 15px;
    }

    .simple-section-label .label-en {
        font-size: 2em;
        margin-right: 10px;
    }

    .simple-section-heading {
        font-size: 2.8em;
        margin-bottom: 35px;
    }

    /* すべてのセクション見出しをモバイルでも統一 (2.8em) */

    .simple-section-subheading {
        font-size: 1.5em;
    }

    .simple-section-text {
        font-size: 1.25em;
    }

    .simple-section-cta {
        width: 100%;
        text-align: center;
        padding: 16px 40px;
    }

    .simple-video-container {
        margin-top: 35px;
    }
}
