/* Reset & Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background: #fff;
    color: #444;
    line-height: 1.8;
}

.container {
    max-width: 1184px;
    margin: 0 auto;
    padding: 0 32px;
}

        /* ---------------------------------------------------- */
        /* Header (デスクトップ/ベーススタイル) */
        /* ---------------------------------------------------- */
        .header {
            background-color: #fff;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); 
            position: sticky;
            top: 0;
            z-index: 50;
            width: 100%;
        }

        .header-container {
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
            display: flex; /* 子要素を横並びにする */
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
        }

        .logo img {
            width: auto;
            height: 64px;
            object-fit: contain;
        }

        /* ナビゲーションリスト全体 */
        .globalnavi {
            display: flex;
            gap: 1rem; 
            align-items: center;
        }

        /* リンクのリスト */
        .nav-list {
            display: flex;
            gap: 0.5rem;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 1rem;
            color: #444;
        }

        .nav-list a {
            color: #444;
            text-decoration: none;
            transition: color 0.3s;
            padding: 0.5rem;
            border-radius: 0.5rem;
        }

        .nav-list a:hover {
            color: #ff3a4c;
        }

        /* 認証ボタンコンテナ */
        .auth-buttons {
            display: flex;
            gap: 0.75rem; 
            margin-top: 0; 
        }

        /* 認証ボタン共通スタイル */
        .btn-login,
        .btn-register {
            display: inline-block;
            min-width: 120px;
            padding: 0.5rem 1rem;
            font-weight: 700;
            border-radius: 0.5rem;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 1rem;
        }

        /* ログインボタン固有スタイル */
        .btn-login {
            border: 1px solid #ff3a4c;
            color: #ff3a4c;
            background: transparent;
        }

        .btn-login:hover {
            background-color: rgba(255, 58, 76, 0.05);
        }

        /* 会員登録ボタン固有スタイル */
        .btn-register {
            background: #ff3a4c;
            border: 1px solid #ff3a4c;
            color: white;
        }

        .btn-register:hover {
            background: #e63344;
        }


        /* ---------------------------------------------------- */
        /* 1. ハンバーガーアイコン (Label) のデザイン */
        /* ---------------------------------------------------- */
        .menu-icon {
            width: 30px;
            height: 20px;
            position: relative;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            display: none; /* デスクトップでは非表示 */
        }

        .menu-icon span {
            display: block;
            height: 3px;
            width: 100%;
            background: #444;
            border-radius: 2px;
            transition: all 0.3s ease-in-out;
            transform-origin: left center;
        }
        
        /* ---------------------------------------------------- */
        /* トグル用チェックボックス (CSSで非表示) */
        /* ---------------------------------------------------- */
        #nav-toggle {
            display: none;
        }

        /* ---------------------------------------------------- */
        /* デモコンテンツエリアのスタイル */
        /* ---------------------------------------------------- */
        .main-content {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding: 2rem;
        }
        .main-content h1 {
            font-size: 1.875rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .main-content p {
            color: #4b5563;
        }
        .demo-box {
            height: 24rem;
            background-color: #f3f4f6;
            border-radius: 0.75rem;
            margin-top: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .demo-box p {
            color: #6b7280;
        }


        /* ---------------------------------------------------- */
        /* 2. モバイルレイアウト（768px以下）の定義 */
        /* ---------------------------------------------------- */
        @media (max-width: 1079px) {
            
            /* ヘッダーコンテナの子要素の折り返しを許可 */
            .header-container {
                flex-wrap: wrap; 
				padding: .5rem 1rem 0;
            }

            /* ハンバーガーアイコンをモバイルでのみ表示 */
            .menu-icon {
                display: flex;
                z-index: 60; 
            }

            /* デスクトップ用ナビゲーションを非表示にし、アニメーションの初期状態を定義 */
            .globalnavi {
                display: flex; /* アニメーションのために常にFlexにし、初期は画面外に配置 */
                position: fixed;
                top: 76px;
                left: 0;
                right: 0;
                height: calc(100vh - 70px); 
                width: 100%;
                background: #fff;
                z-index: 40;
                overflow-y: auto;
                padding: 20px 0;
                flex-direction: column;
                align-items: center;
                gap: 30px;
                
                /* --- アニメーション関連 --- */
                transform: translateX(100%); /* 初期位置: 画面右端の外側 */
                opacity: 0;                  /* 初期透明度: 0 (フェードイン) */
                transition: transform 0.4s ease-out, opacity 0.3s ease-in; /* アニメーション定義 */
                pointer-events: none; /* 非表示時はクリックイベントを無効にする */
            }

            /* ナビゲーションリストを縦並びに変更 */
            .nav-list {
                flex-direction: column;
                width: 100%;
                border-top: 1px solid #f0f0f0;
                gap: 0;
            }

            .nav-list li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid #f0f0f0;
            }
            
            .nav-list a {
                display: block;
                padding: 10px 20px;
                font-size: 18px;
            }

            /* ログイン/登録ボタンを縦並びに変更し、幅を広げる */
            .auth-buttons {
                flex-direction: column;
                gap: 15px;
                width: 80%;
                max-width: 300px;
                margin: 30px auto;
            }
            
            .btn-login, .btn-register {
                width: 100%;
                padding: 10px;
            }
        
            /* ---------------------------------------------------- */
            /* 3. チェックボックスの状態に応じたメニューの表示 (アニメーションの終了状態) */
            /* ---------------------------------------------------- */
            #nav-toggle:checked ~ .globalnavi {
                transform: translateX(0); /* 最終位置: 画面内に移動 */
                opacity: 1;               /* 最終透明度: 1 (フェードイン完了) */
                pointer-events: auto;     /* 表示時はクリックイベントを有効にする */
            }
            
            /* ---------------------------------------------------- */
            /* 4. ハンバーガーアイコンの変形 (Xボタンへ) */
            /* ---------------------------------------------------- */
            /* トップのバー */
            #nav-toggle:checked ~ .menu-icon span:nth-child(1) {
                transform: rotate(45deg) translate(2px, -5px);
            }
            /* 中央のバーを非表示 */
            #nav-toggle:checked ~ .menu-icon span:nth-child(2) {
                opacity: 0;
                transform: translateX(-10px);
            }
            /* ボトムのバー */
            #nav-toggle:checked ~ .menu-icon span:nth-child(3) {
                transform: rotate(-45deg) translate(2px, 5px);
            }
        }
        
        /* ---------------------------------------------------- */
        /* デスクトップ用レイアウト調整 (769px以上) */
        /* ---------------------------------------------------- */
        @media (min-width: 1080px) {
            /* モバイルでのみ表示されていた label (menu-icon) を完全に非表示にする */
            .menu-icon {
                display: none;
            }
            
            /* globalnavi が header-container の Flex 子要素として、残りのスペースを使い切る */
            .globalnavi {
                /* デスクトップでは静的配置に戻す */
                position: static;
                width: auto;
                height: auto;
                padding: 0;
                margin-left: 2rem; /* ロゴとの間隔調整 */
                
                /* Flexboxプロパティを調整 */
                flex-grow: 1; /* 残りのスペースを埋める */
                justify-content: flex-end; /* ナビゲーションを右寄せにする */
                
                /* デスクトップでの表示を常に強制し、アニメーション関連プロパティをリセット */
                display: flex !important;
                flex-direction: row;
                gap: 1rem; /* デスクトップの間隔を維持 */
                transform: none !important; /* スライドをリセット */
                opacity: 1 !important;      /* 透明度をリセット */
                pointer-events: auto !important; /* イベントを有効に */
                transition: none !important; /* トランジションを無効に */
            }
        }

/* Hero Section */
.hero-section {
    width: 100%;
    background-image: url(../img/fv_bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
	padding: 150px 0;
}



.title-subtitle {
	ffont-family: "Jost", sans-serif;
    font-size: 2.5rem;
    line-height: 1.4;
    color: white;
    font-weight: 600;
    margin: 0;
}

/* Hero Content */
.hero-content {
    display: flex;
	max-width: 1440px;
	margin: 0 auto;
	align-items: center;
	gap:60px;
	padding: 0 30px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
	width: 100%;
}

.hero-title {
    font-size: 36px;
    font-weight: bold;
    color: white;
    line-height: 1.4;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.6);
    margin: 0;
}
.main-title {
	
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.title-unleash {
	font-family: "Jost", sans-serif;
    font-size: 3rem;
    line-height: 1.2;
    color: white;
    font-weight: 600;
    margin: 0;
}

.title-gradient {
	font-family: "Jost", sans-serif;
    font-size: 5rem;
    line-height: 1.2;
    background: linear-gradient(to right, #7facff, #feb6b7 99.99%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    margin: 0;
}
.hero-subtitle-box {
    width: 561px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.hero-subtitle-top {
    /*display: flex;
    align-items: flex-end;
    gap: 3px;*/
}

.hero-logo-inline {
    display: flex;
    align-items: flex-end;
	gap:10px;
}

.hero-subtitle-top span {
    font-size: 20px;
    font-weight: bold;
    color: white;
    line-height: 1.8;
    white-space: nowrap;
}

.hero-subtitle-bottom {
    font-size: 20px;
    font-weight: bold;
    color: white;
    line-height: 1.8;
    margin: 0;
}

.hero-description {
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.6);
    color: white;
}

.hero-description p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    margin: 0;
    white-space: nowrap;
}

.hero-description .first-char {
    font-size: 18px;
    font-weight: bold;
}

/* Hero Images */
.hero-images {
    width: 100%;
}
.hero-images img {
    width: 100%;
	height: auto;
}


.hero-cta {
    background: #ff3a4c;
    border: none;
    border-radius: 200px;
    padding: 10px 50px;
    color: white;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s;
    z-index: 2;
	width: 300px;
    text-decoration: none;
	margin: 40px auto 0;
}

.hero-cta:hover {
    background: #e63344;
    transform: scale(1.05);
    color: white;
}

.cta-small {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.8;
}

.cta-large {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
}

/* Video Section */
.video-section {
    background: white;
    padding: 152px 0 0;
}
.video-wrapper {
    max-width: 928px;
    margin: 0 auto;
}
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}



/* Features Section */
.features-section {
    background: white;
    padding: 80px 0;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 64px;
    line-height: 1.4;
}

.section-subtitle {
    font-size: 20px;
    color: #6e6e73;
    text-align: center;
    margin-top: 28px;
    margin-bottom: 64px;
}

.feature-cards {
    display: flex;
    justify-content: space-between;
    gap: 64px;
    padding: 0 64px;
	align-items: flex-end;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.feature-card img {
    width: 100%;
    max-width: 299px;
    height: auto;
}

.feature-card h3 {
    font-size: 32px;
    font-weight: bold;
    color: #ff3a4c;
    text-align: center;
    line-height: 1.4;
}

/* Detailed Features */
.detailed-features {
    background: #f2f2f2;
    padding: 152px 0;
    position: relative;
    overflow: hidden;
}

.detailed-features-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-decoration {
    position: absolute;
    mix-blend-mode: multiply;
    opacity: 0.3;
    pointer-events: none;
}

.bg-decoration-1 {
    width: 899px;
    height: 1259px;
    left: -97px;
    top: -200.94px;
    object-fit: cover;
}

.bg-decoration-manga {
    width: 854px;
    height: 1196px;
    left: 415px;
    top: -291.94px;
    object-fit: cover;
}

.bg-decoration-anime {
    width: 819px;
    height: 1146px;
    left: -217px;
    top: -134.94px;
    object-fit: cover;
}

.detail-container {
    max-width: 1184px;
    margin: 0 auto 64px;
    padding: 0 32px;
    position: relative;
}

.detail-container:last-child {
    margin-bottom: 0;
}

.detail-container-reverse .detail-content {
    flex-direction: row-reverse;
}

.detail-content {
    display: flex;
    gap: 64px;
    align-items: center;
}

.detail-left,
.detail-right {
    flex: 0 1 570px;
    position: relative;
}

/* Main titles */
.detail-main-title {
    margin-bottom: 21px;
}

.detail-main-title h2 {
    font-size: 40px;
    font-weight: bold;
    color: #000;
    line-height: 1.4;
    margin: 0;
}

/* Section headers with icons */
.detail-section-header {
    display: flex;
    align-items: center;
    gap: 21px;
    margin-bottom: 16px;
}

.detail-icon {
    width: 129px;
    height: 149px;
    flex-shrink: 0;
    object-fit: cover;
}

.detail-section-title .title-line1,
.detail-section-title .title-line2 {
    font-size: 44px;
    font-weight: bold;
    color: #ff3a4c;
    line-height: 1.4;
    margin: 0;
}

.detail-section-title .title-single {
    font-size: 60px;
    font-weight: bold;
    color: #ff3a4c;
    line-height: 1.4;
    margin: 0;
}

/* Intro text */
.detail-intro {
    font-size: 20px;
    font-weight: 500;
    color: #6e6e73;
    line-height: 1.8;
    margin-bottom: 21px;
}

/* Showcase images */
.detail-showcase-image {
    margin-top: 21px;
	text-align: center;
}

.detail-showcase-image img {
    width: 100%;
    max-width: 510px;
    height: auto;
    object-fit: cover;
}

/* Feature list */
.detail-feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.detail-feature-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 544px;
    min-width: 353px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.detail-feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-item-title {
    font-size: 20px;
    font-weight: bold;
    color: #444;
    line-height: 1.4;
    margin: 0;
}

.feature-item-subtitle {
    font-size: 18px;
    font-weight: bold;
    color: #ff3a4c;
    line-height: 1.4;
    margin: 0;
}

.feature-item-text {
    font-size: 16px;
    font-weight: normal;
    color: #444;
    line-height: 1.8;
    margin: 0;
}

/* Use Cases */
.use-cases {
    background: white;
    padding: 152px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header img {
    width: 122px;
    height: 141px;
    margin: 0 auto 28px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: bold;
    color: #444;
    margin-bottom: 28px;
    line-height: 1.4;
}

.section-header .highlight {
    color: #ff3a4c;
}

.section-header p {
    font-size: 20px;
    color: #6e6e73;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.use-case-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.use-case-card img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 24px;
}

.use-case-card h3 {
    font-size: 32px;
    font-weight: bold;
    color: #ff3a4c;
    margin-bottom: 10px;
    line-height: 1.4;
}

.use-case-card h4 {
    font-size: 20px;
    font-weight: bold;
    color: #444;
    margin-bottom: 16px;
    line-height: 1.4;
}

.use-case-card p {
    font-size: 16px;
    color: #444;
    margin-bottom: 24px;
    line-height: 1.8;
}

.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #ff3a4c;
    border-radius: 4px;
    color: #ff3a4c;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    background: transparent;
    cursor: pointer;
    font-weight: normal;
	width: 100%;
}

.btn-outline:hover {
    background: #ff3a4c;
    color: white;
    text-decoration: none;
}

/* Use Cases Section - New Styles */
.use-cases-container {
    max-width: 1184px;
    margin: 0 auto;
    padding: 0 32px;
}

.use-cases-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 64px;
}

.use-cases-icon {
    width: 122px;
    height: 141px;
    margin-bottom: 0;
}

.use-cases-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.use-cases-title {
    font-size: 48px;
    font-weight: bold;
    color: #444;
    line-height: 1.4;
    text-align: center;
    margin: 0;
}

.use-cases-title-highlight {
    color: #ff3a4c;
}

.use-cases-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #6e6e73;
    line-height: 1.8;
    text-align: center;
    margin: 0;
}

/* Use Case Rows */
.use-case-row {
    display: flex;
    gap: 32px;
    align-items: center;
    margin-bottom: 64px;
}

.use-case-row:last-child {
    margin-bottom: 0;
}

.use-case-row-reverse {
    flex-direction: row-reverse;
}

.use-case-image {
    max-width: 544px;
    min-width: 353px;
}

.use-case-image img {
    width: 100%;
    aspect-ratio: 680 / 480;
    border-radius: 20px;
    object-fit: cover;
}

.use-case-content {
    max-width: 544px;
    min-width: 353px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.use-case-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.use-case-category {
    font-size: 32px;
    font-weight: bold;
    color: #ff3a4c;
    line-height: 1.4;
    margin: 0;
}

.use-case-divider {
    width: 100%;
    height: 1px;
    background: rgba(68, 68, 68, 0.4);
}

.use-case-heading {
    font-size: 20px;
    font-weight: bold;
    color: #444;
    line-height: 1.4;
    margin: 0;
}

.use-case-description {
    font-size: 16px;
    font-weight: normal;
    color: #444;
    line-height: 1.8;
    margin: 0;
}

.use-case-button-wrapper {
    display: flex;
    gap: 10px;
}

.use-case-button-left {
    justify-content: flex-start;
}

.use-case-button-right {
    justify-content: flex-end;
}

.use-case-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 52px;
    padding: 10px;
    border: 2px solid #ff3a4c;
    border-radius: 4px;
    background: transparent;
    color: #ff3a4c;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.8;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.use-case-button:hover {
    background: #ff3a4c;
    color: white;
}

/* Testimonials */
.testimonials-section {
    background: #f2f2f2;
    padding: 152px 0;
}

.testimonials-container {
    max-width: 1184px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Testimonials Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-title {
    font-size: 48px;
    font-weight: bold;
    color: #444;
    line-height: 1.4;
    margin-bottom: 28px;
}

.testimonials-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #6e6e73;
    line-height: 1.8;
    margin: 0;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-header {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.testimonial-avatar {
    width: 103px;
    height: 103px;
    flex-shrink: 0;
}

.testimonial-avatar svg {
    width: 100%;
    height: 100%;
}

.testimonial-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-name-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.testimonial-name {
    font-size: 18px;
    font-weight: normal;
    color: #444;
    line-height: 1.8;
    white-space: nowrap;
}

.testimonial-role {
    font-size: 14px;
    font-weight: normal;
    color: #444;
    line-height: 1.8;
    white-space: nowrap;
}

.testimonial-divider {
    width: 100%;
    height: 1px;
    background: rgba(68, 68, 68, 0.4);
}

.testimonial-highlight {
    font-size: 16px;
    font-weight: bold;
    color: #ff3a4c;
    line-height: 1.8;
    margin: 0;
}

.testimonial-text {
    font-size: 14px;
    font-weight: normal;
    color: #444;
    line-height: 1.8;
    margin: 0;
}

/* Pricing */
.pricing-section {
    background: #ffeef0;
    padding: 152px 0;
}

.pricing-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-bottom: 64px;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    padding: 32px 24px;
    max-width: 330px;
    width: 100%;
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border: 8px solid #ff3a4c;
    padding-top: 40px;
}

.badge {
    position: absolute;
    top: -19px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff3a4c;
    color: white;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 24px;
    font-weight: 500;
	width: 200px;
}

.pricing-card h3 {
    font-size: 32px;
    font-weight: bold;
    color: #444;
    margin-bottom: 8px;
    line-height: 1.4;
}

.plan-for {
    font-size: 20px;
    font-weight: bold;
    color: #444;
    margin-bottom: 8px;
}

.price {
    color: #ff3a4c;
    margin: 24px 0;
}

.currency {
    font-size: 40px;
    font-weight: bold;
}

.amount {
    font-size: 60px;
    font-weight: bold;
}

.period {
    font-size: 32px;
    font-weight: bold;
    color: #444;
}

.plan-features {
    background: #f2f2f2;
    border-radius: 10px;
    padding: 12px;
    list-style: disc;
    list-style-position: inside;
    text-align: left;
    margin-bottom: 24px;
}

.plan-features.featured {
    background: #ffeef0;
}

.plan-features li {
    font-size: 16px;
    color: #444;
    margin-bottom: 8px;
    line-height: 1.8;
}

.plan-features li:last-child {
    margin-bottom: 0;
}

.btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background: #ff3a4c;
    border: 2px solid #ff3a4c;
    border-radius: 4px;
    color: white;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    width: 100%;
}

.btn-primary:hover {
    background: #e63344;
}

.pricing-note {
    text-align: center;
    font-size: 20px;
    color: #6e6e73;
}

/* Trust Section */
.trust-section {
    background: white;
    padding: 152px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.trust-card {
    background: #fff2f2;
    border-radius: 20px;
    padding: 24px 16px;
}

.trust-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #ff3a4c;
    margin-bottom: 24px;
    line-height: 1.4;
}

.trust-card p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 24px;
}

.trust-card img {
    width: 100%;
    height: auto;
    margin-top: auto;
}

/* Testimonials */
.testimonials-section {
    background: #f2f2f2;
    padding: 152px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 16px;
}

.testimonial-header {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(68, 68, 68, 0.4);
}

.avatar {
    width: 103px;
    height: 103px;
    border-radius: 50%;
    background: #f2f2f2;
    flex-shrink: 0;
}

.testimonial-header h4 {
    font-size: 18px;
    color: #444;
    margin-bottom: 4px;
}

.testimonial-header p {
    font-size: 14px;
    color: #444;
}

.testimonial-card h5 {
    font-size: 16px;
    font-weight: bold;
    color: #ff3a4c;
    margin-bottom: 16px;
    line-height: 1.8;
}

.testimonial-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.8;
}

/* FAQ */
.faq-section {
    background: white;
    padding: 152px 0;
}

.faq-list {
    max-width: 928px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: white;
    border: 1px solid #cbcbcb;
    border-radius: 10px;
    padding: 24px;
}

.faq-question {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 24px;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
}

.faq-icon.q {
    background: #ff3a4c;
    color: white;
}

.faq-icon.a {
    background: #9f9f9f;
    color: white;
}

.faq-question h4 {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
}

.faq-answer {
    display: flex;
    gap: 15px;
    padding-left: 20px;
}

.faq-answer p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 96px 32px;
    text-align: center;
    background-image: url(../img/ctv_bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.cta-content h2 {
    font-size: 60px;
    font-weight: bold;
    color: white;
    margin-bottom: 16px;
    line-height: 1.4;
}

.cta-content p {
    font-size: 18px;
    color: white;
    margin-bottom: 64px;
}

.btn-cta {
    display: inline-block;
    background: white;
    border: 2px solid #ff3a4c;
    border-radius: 100px;
    padding: 10px 100px;
    color: #ff3a4c;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta:hover {
    background-color: #FFD2D6;
}

/* Footer */
.footer {
    background: #444;
    padding: 80px 0 32px;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
}

.footer-logo {
    width: 283px;
    /* Replace with actual logo */
}

.footer-links {
    display: flex;
    gap: 64px;
	
}

.footer-column h4 {
    font-size: 19.2px;
    font-weight: bold;
    color: white;
    margin-bottom: 24px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-column li {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.footer-column li:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 12px;
    color: white;
}

/* Page Title Section (for subpages) */
.page-title-section {
    background: #f2f2f2;
    padding: 96px 0;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: bold;
    color: #444;
    line-height: 1.4;
}

/* Content Section (for subpages) */
.content-section {
    background: white;
    padding: 96px 0 152px;
}

.privacy-content {
    max-width: 928px;
    margin: 0 auto;
}

.privacy-intro {
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 32px;
}

.privacy-section {
    margin-bottom: 32px;
}

.privacy-section h2 {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.4;
}

.privacy-section p {
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 0;
}

.privacy-section ul {
    list-style: disc;
    padding-left: 24px;
    margin: 0;
}

.privacy-section li {
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 0;
}

.privacy-section li:last-child {
    margin-bottom: 0;
}

/* Footer Links */
.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

/* Terms Table */
.terms-table-wrapper {
    max-width: 928px;
    margin: 0 auto;
}

.terms-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #000;
}

.terms-table-header {
    background: #f2f2f2;
    padding: 16px;
    text-align: left;
    vertical-align: top;
    width: 236px;
    font-size: 16px;
    font-weight: normal;
    color: #444;
    border: 1px solid #000;
    line-height: 1.8;
}

.terms-table-cell {
    background: white;
    padding: 16px;
    font-size: 16px;
    color: #000;
    border: 1px solid #000;
    line-height: 1.8;
}

.terms-table-cell p {
    margin-bottom: 0;
    line-height: 1.8;
}

.terms-table-cell p:not(:last-child) {
    margin-bottom: 0;
}

/* Service Terms Content */
.terms-content {
    max-width: 928px;
    margin: 0 auto;
}

.chapter-title {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin: 32px 0 24px;
    line-height: 1.4;
}

.terms-content > .chapter-title:first-child {
    margin-top: 0;
}

.terms-section {
    margin-bottom: 32px;
}

.terms-section h3 {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.4;
}

.terms-section p {
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 8px;
}

.terms-section ol {
    list-style: decimal;
    padding-left: 24px;
    margin: 0;
}
.terms-section ul {
    padding-left: 24px;
    margin: 0;
}

.terms-section li {
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 8px;
}

.terms-section li:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .hero-images {
        right: 50px;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        left: 80px;
    }
    
    .hero-subtitle-box {
        width: 480px;
    }
    
    .hero-images {
    }
	.title-unleash {
    font-size: 5vw;
}

.title-gradient {
    font-size: 8vw;
}
	.title-subtitle {
font-size: 4vw;
}
	.hero-title {
font-size: 3vw;
}
}

@media (max-width: 992px) {

    .hero-logo-inline {
  flex-direction: column;
		align-items: flex-start;
}
    .nav-list {
        gap: 16px;
        font-size: 14px;
    }
	
    .hero-section {
       /* height: 600px;*/
    }
    
    .hero-content {
        left: 40px;
        top: 80px;
    }
    
    .title-unleash {
    font-size: 4vw;
}
    .title-gradient {
    font-size: 6vw;
}
	.title-subtitle {
font-size: 3vw;
}
	.hero-title {
font-size: 2.5vw;
}
    
    .hero-subtitle-box {
        width: 420px;
    }
    
    .hero-subtitle-top span,
    .hero-subtitle-bottom {
        font-size: 18px;
    }
    
    .hero-description p {
        font-size: 14px;
    }
    
    .hero-images {
    }
    
    .hero-cta {
        left: 40px;
        top: 480px;
    }
}

@media (max-width: 768px) {
.page-title-section {
  padding: 60px 0;
}
	.content-section {
  padding: 60px 0;
}
	.page-title {
  font-size: 30px;
}
    .section-title {
  font-size: 36px;
}
	.video-section {
  padding: 60px 0 0;
}
	.section-subtitle {
  margin-bottom: 40px;
}
    .hero-section {
        height: 500px;
    }
    
    .hero-content {
        left: 20px;
        top: 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle-box {
        width: calc(100% - 40px);
        max-width: 350px;
    }
    
    .hero-logo-inline {
		flex-direction: column;
		align-items: flex-start;
    }
    
    .hero-subtitle-top span,
    .hero-subtitle-bottom {
        font-size: 16px;
    }
    
    .hero-description {
        display: none;
    }
    
    .hero-images {
    }
    
    .hero-cta {
    }
    
    /* Detailed Features Responsive */
    .detailed-features {
        padding: 60px 0;
    }
    
    .detail-container {
        padding: 0 20px;
        margin-bottom: 80px;
    }
    
    .detail-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .detail-container-reverse .detail-content {
        flex-direction: column;
    }
    
    .detail-left,
    .detail-right {
        flex: 1;
        width: 100%;
    }
    .pricing-section {
  padding: 60px 0;
}
    .detail-main-title h2 {
        font-size: 24px;
    }
    
    .detail-section-header {
        gap: 16px;
		flex-direction: column;
		align-items: center;
    }
    
    .detail-icon {
        width:90px;
        height: auto;
    }
    
    .detail-section-title .title-line1,
    .detail-section-title .title-line2 {
        font-size: 32px;
    }
    
    .detail-section-title .title-single {
        font-size: 36px;
    }
    
    .detail-intro {
        font-size: 16px;
    }
    
    .detail-feature-item {
        max-width: 100%;
        min-width: auto;
    }
    
    .feature-item-title {
        font-size: 18px;
    }
    
    .feature-item-subtitle {
        font-size: 16px;
    }
    
    .feature-item-text {
        font-size: 14px;
    }
    
    .bg-decoration {
        display: none;
    }
    
    /* Use Cases Responsive */
    .use-cases {
        padding: 60px 0;
    }
    
    .use-cases-container {
        padding: 0 20px;
    }
    
    .use-cases-icon {
        width: 100px;
        height: 116px;
    }
    
    .use-cases-title {
        font-size: 32px;
    }
    
    .use-cases-subtitle {
        font-size: 16px;
		text-align: left;
    }
    .use-cases-header {
  margin-bottom: 40px;
}
    .use-case-row {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 70px;
    }
    
    .use-case-row-reverse {
        flex-direction: column;
    }
    
    .use-case-image,
    .use-case-content {
        max-width: 100%;
        min-width: auto;
        width: 100%;
    }
    
    .use-case-category {
        font-size: 28px;
    }
    
    .use-case-heading {
        font-size: 18px;
    }
    
    .use-case-description {
        font-size: 14px;
    }
    
    .use-case-button {
        width: 100%;
        max-width: 250px;
    }
    
    .use-case-button-left,
    .use-case-button-right {
        justify-content: center;
    }
    
    /* Testimonials Responsive */
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-container {
        padding: 0 20px;
    }
    
    .testimonials-title {
        font-size: 32px;
    }
    
    .testimonials-subtitle {
        font-size: 16px;
		text-align: left;
		margin-top: 1em;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .testimonials-header {
  margin-bottom: 40px;
}
    .testimonial-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .testimonial-avatar {
        width: 80px;
        height: 80px;
    }
    
    .testimonial-info {
        width: 100%;
    }
    
    .testimonial-name-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .testimonial-name {
        font-size: 16px;
    }
    
    .testimonial-role {
        font-size: 12px;
    }
    
    .testimonial-highlight {
        font-size: 14px;
    }
    
    .testimonial-text {
        font-size: 13px;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content {
        left: 50px;
    }
    
    .feature-cards {
        padding: 0 32px;
    }
}

@media (max-width: 768px) {
.terms-table {
  border: none;
}
    .price {
margin: 0;
}
	.plan-for {
margin-bottom: 0px;
}
    .nav-list {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-section {
        height: auto;
		padding: 70px 0;
    }
    
    .hero-content {
		flex-direction: column;
		gap: 20px;
    }
    
    .hero-images {
    }
    
    .hero-cta {
        position: static;
        margin: 20px auto;
    }
    
    .feature-cards {
        flex-direction: column;
    }
    
    .feature-content {
        flex-direction: column !important;
    }
    .pricing-grid {
flex-direction: column;
}
	.pricing-card {
max-width: none;
width: 100%;
}
    .use-case-grid,
    .pricing-grid,
    .trust-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    /* Terms Table Responsive */
    .terms-table,
    .terms-table tbody,
    .terms-table tr,
    .terms-table-header,
    .terms-table-cell {
        display: block;
        width: 100%;
    }
    .trust-section {
  padding: 60px 0;
}
	.faq-section {
  padding: 60px 0;
}
	.features-section {
  padding: 60px 0;
}
	.cta-content h2 {
  font-size: 30px;
}
	.btn-cta {
  padding: 10px 30px;
  width: 100%;
}
	.cta-content p {
  margin-bottom: 40px;
}
    .terms-table tr {
        margin-bottom: 20px;
        border: 1px solid #000;
    }
    
    .terms-table-header {
        border-bottom: 1px solid #000;
    }
    
    .terms-table-cell {
        border-top: none;
    }
	.d-sm-none{
		display: none;
	}
	.footer-links {
  gap: 25px;
}
	.footer-column ul {
  gap: 6px;
}
	.footer-column h4 {
  margin-bottom: 10px;
}
	.footer-brand{
		text-align: center;
	}
	.footer-logo {
  margin: 0 auto;
}
}
@media (min-width: 769px) {
.d-md-none{
		display: none;
	}
}
/* --- FAQ アコーディオン用スタイル --- */
.faq-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 40px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff3a4c;
    color: #444;
}
.faq-list > .faq-category-title:first-of-type {
    margin-top: 0;
}

.faq-question {
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s;
    margin-bottom: 0; /* 閉じた状態では回答とのマージンをなくす */
}

/* 質問の右側に開閉アイコンを追加 */
.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: #ff3a4c;
    position: absolute;
    right: 0px; /* 親要素のpaddingがあるので調整 */
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

/* 回答部分は初期状態で非表示（高さ0） */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, margin-top 0.4s ease-out;
    margin-top: 0;
    padding-left: 45px; /* Qアイコンの分だけインデント */
}
.faq-answer .faq-icon.a {
    align-self: flex-start; /* Aアイコンを上揃えに */
}


/* activeクラスがついた時のスタイル */
.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* 十分な高さを確保して表示 */
    margin-top: 24px; /* 質問と回答の間のマージン */
}

    /* FAQカテゴリタイトル用のスタイルを追加 */
    .faq-category-title {
        font-size: 1.25rem;
        font-weight: 700;
        margin-top: 40px;
        padding-bottom: 10px;
        border-bottom: 1px solid #e0e0e0;
    }
    .faq-list .faq-category-title:first-child {
        margin-top: 0;
    }

    /* --- Language Switcher Styles --- */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid #ccc;
    border-radius: 999px; /* 丸い形にする */
}

.lang-option {
    color: #888;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem; /* 14px */
    transition: color 0.3s;
    padding: 0 0.25rem;
}

.lang-option:hover {
    color: #444;
}

.lang-option.active {
    color: #ff3a4c; /* アクティブな言語の色 */
    cursor: default;
}

.lang-separator {
    color: #ccc;
    font-size: 0.875rem;
}

/* モバイル表示時の調整 */
@media (max-width: 1079px) {
    .auth-buttons {
        order: -1; /* ナビゲーションリストより上に表示 */
        flex-direction: row; /* 横並びに戻す */
        align-items: center;
        width: auto;
        margin-bottom: 20px;
    }
}

        /* 推奨環境の表を見やすくするためのスタイルを追加 */
        .env-table {
            width: 100%;
            max-width: 500px;
            margin: 1em 0;
            border-collapse: collapse;
        }
        .env-table th, .env-table td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }
        .env-table th {
            background-color: #f2f2f2;
            width: 30%;
        }

.terms-table-cell ul{
    margin-left: 24px;
}

        /* ==========================================================================
           CONTACT PAGE SPECIFIC STYLES
           ========================================================================== */

        /* Phone Contact Section */
        .phone-contact-section {
            padding: 100px 0 100px;
        }

        .phone-contact-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
            max-width: 1170px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .phone-contact-title {
            font-size: 1.75rem;
            font-weight: bold;
            line-height: 1.4;
            color: #444444;
            text-align: center;
            margin: 0;
        }

        .phone-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .phone-icon {
            width: 51px;
            height: 51px;
            flex-shrink: 0;
        }

        .phone-icon svg, .phone-icon img {
            width: 100%;
            height: 100%;
        }

        .phone-number {
            font-family: "Jost", sans-serif;
            font-size: 4rem;
            color: #4c4c4c;
            line-height: 1;
            font-weight: 600;
        }
        .phone-number a {
            color: #000;
            text-decoration: none;
        }
        .phone-hours {
            font-size: 1rem;
            line-height: 1.8;
            color: #4c4c4c;
            text-align: center;
            margin: 0;
        }

        /* Form Section */
        .form-section {
            padding: 0 0 120px;
        }

        .form-title {
            font-size: 1.75rem;
            font-weight: bold;
            line-height: 1.4;
            color: #444444;
            text-align: center;
            margin: 0 0 40px;
        }

        .form-container {
            max-width: 916px;
            margin: 0 auto;
            background: white;
            border: 1px solid #ff5757;
            border-radius: 20px;
            padding: 30px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-row {
            display: flex;
            align-items: flex-start;
            gap: 26px;
            width: 100%;
        }

        .form-label-container {
            flex: 0 0 200px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .form-label {
            font-size: 1rem;
            line-height: 1.8;
            color: #4c4c4c;
            white-space: nowrap;
        }

        .required-label {
            background: #ff3a4c;
            color: white;
            font-size: 0.875rem;
            line-height: 1.8;
            padding: 3px 8px;
            border-radius: 5px;
            white-space: nowrap;
        }

        .form-input-container {
            flex: 1;
            min-width: 0;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            background: white;
            border: 1px solid rgba(255, 87, 87, 0.4);
            border-radius: 5px;
            padding: 10px;
            font-size: 1rem;
            line-height: 1.8;
            color: #4c4c4c;
            transition: border-color 0.3s ease;
            box-sizing: border-box; /* 追加: レイアウト崩れ防止 */
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #ff5757;
        }

        .form-input {
            height: 42px;
        }

        .form-textarea {
            height: 150px;
            resize: vertical;
            min-height: 100px;
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: rgba(76, 76, 76, 0.5);
        }

        /* Radio Group */
        .radio-group {
            display: flex;
            gap: 9px;
            align-items: center;
            flex-wrap: wrap;
        }

        .radio-option {
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
        }

        .radio-input {
            display: none;
        }

        .radio-button {
            width: 18px;
            height: 18px;
            border: 1px solid rgba(255, 87, 87, 0.5);
            border-radius: 50%;
            background: white;
            position: relative;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .radio-input:checked + .radio-button::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 12px;
            height: 12px;
            background: #ff3a4c;
            border-radius: 50%;
            border: 1px solid rgba(255, 87, 87, 0.5);
        }

        .radio-text {
            font-size: 1rem;
            line-height: 1.8;
            color: #4c4c4c;
            white-space: nowrap;
        }

        /* Form Dividers */
        .form-divider {
            width: 100%;
            height: 1px;
            background: #d9d9d9;
            margin: 0;
        }

        /* Submit Button */
        .form-submit {
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .submit-button {
            background: #ff5757;
            color: white;
            border: none;
            border-radius: 100px;
            padding: 5px 40px;
            font-size: 1.125rem;
            line-height: 1.8;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .submit-button:hover {
            background: #ff3a4c;
            transform: translateY(-2px);
        }
        .news-link-button {
            border: 1px solid #ff3a4c;
            border-radius: 500px;
            padding: 10px 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: #ff3a4c;
            font-size: 1rem;
            font-weight: bold;
            line-height: 1.8;
            cursor: pointer;
            max-width: 300px;
            transition: background-color 0.3s ease, color 0.3s ease;
            text-decoration: none;
        }
        .news-link-button:hover {
            background-color: #ff3a4c;
            color: white;
        }
        /* Error Message Styles (Inline from original HTML) */
        .error { color: #ff3a4c; font-size: 0.9em; margin-top: 5px; }
        
        /* Contact Page Responsive */
        @media (max-width: 768px) {
            .phone-contact-content {
                padding: 0 20px;
            }
            
            .phone-number {
                font-size: 3.5rem;
            }
            
            .phone-info {
               /* flex-direction: column;*/
                gap: 15px;
                text-align: center;
            }
            
            .form-container {
                padding: 20px;
                margin: 0 20px;
            }
            
            .form-row {
                flex-direction: column;
                gap: 10px;
            }
            .form-label-container {
flex: 0 0 0px;
display: flex;
align-items: center;
gap: 15px;
}
.form-input-container {
flex: 0;
width: 100%;
}
            .radio-group {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .phone-contact-section {
                padding: 60px 0;
            }
            .form-section {
                padding: 0 0 60px;
            }
            .phone-contact-title,
            .form-title {
                font-size: 1.25rem;
            }
            .form-title {
                margin: 0 0 20px;
            }
            .form-container {
                margin: 0;
            }
            .phone-number {
                font-size: 2.5rem;
            }
            .phone-contact-content {
                gap: 20px;
            }
            .phone-icon {
                width: 32px;
                height: 32px;
            }
            
            .form-container {
                border-radius: 12px;
                padding: 16px;
            }
            
            .form-input,
            .form-textarea {
                font-size: 0.875rem;
            }
            
            .submit-button {
                font-size: 1rem;
            }
            .form-input-container {
                width: 100%;
            }
            .form-row {
               flex-direction: column;
                gap: 10px;
            }
            .form-label-container {
                flex: none;
                width: 100%;
            }
        }

 /* コンテンツエリアの調整 */
        .thanks-wrapper {
            max-width: 800px;
            margin: 0 auto;
            padding: 80px 20px;
            text-align: center;
            min-height: 50vh; /* 画面の縦幅が広い時もフッターが上がりすぎないように */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        /* タイトルスタイル */
        .phone-contact-title {
            font-size: 1.75rem;
            font-weight: bold;
            line-height: 1.4;
            color: #444444;
            margin-bottom: 30px;
        }

        /* テキストスタイル */
        .phone-hours {
            font-size: 1rem;
            line-height: 1.8;
            color: #4c4c4c;
            margin-bottom: 40px;
        }

        /* ボタンのスタイル（Samariaのデザインを踏襲） */
        .news-link-button {
            border: 1px solid #ff3a4c;
            border-radius: 500px;
            padding: 15px 50px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: #ff3a4c;
            font-size: 1rem;
            font-weight: bold;
            line-height: 1.8;
            cursor: pointer;
            min-width: 200px;
            transition: background-color 0.3s ease, color 0.3s ease;
            text-decoration: none;
        }
        .news-link-button:hover {
            background-color: #ff3a4c;
            color: white;
        }

        /* レスポンシブ用ユーティリティ（PCで改行を消す） */
        @media (min-width: 768px) {
            .d-md-none {
                display: none;
            }
        }
        
        @media (max-width: 767px) {
            .phone-contact-title {
                font-size: 1.4rem;
            }
        }