/* =========================
PC ONLY STYLE
========================= */
@media screen and (min-width: 1024px) {

/* Base & Layout Optimization */
.container {
    max-width: 1100px;
    padding: 0 20px;
}

/* ==========================================================================
   Header & Navigation（HTML構造完全準拠版）
   ========================================================================== */

/* 1. ヘッダー全体の高さと固定配置の調整 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 20px 0;
    z-index: 1000;
    
    /* 初期状態は背景を透明にしておく */
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    
    /* 背景が変化するときのアニメーション（0.3秒かけてスッと変わる） */
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

/* スクロール時：うっすら白い背景とすりガラス効果が出現 */
.header.scrolled {
    background-color: rgba(255, 255, 255, 0.2); /* 白の85%の薄さ */
    backdrop-filter: blur(8px);                  /* 背景ボカシ効果 */
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);   /* 薄い影 */
    padding: 15px 0;                             /* スクロール時に少しだけヘッダーを細くしてスタイリッシュに */
}

/* 2. ロゴの位置調整と、右端40pxの余白を担保 */
.header .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;            /* 左右に20pxの安全な内側余白を確保 */
    display: flex;
    justify-content: space-between;
    align-items: center;        /* ロゴの縦の中心（高さ）を決定 */
}

.header .logo-wrapper .logo {
    font-size: 1.8rem;
    margin: 0;                  /* スマホ側の位置ズレ用マージンをリセット */
}

.header .logo-part .logo-kana-sub {
    font-size: 0.6rem;
}

/* PCではハンバーガーアイコンと閉じるボタンを完全に非表示 */
.menu-icon,
.nav-close {
    display: none !important;
}

.nav-menu {
    position: fixed;
    top: 20px;                  /* ロゴの高さに合わせた上部位置 */
    right: 250px;               /* 【重要】右隣のCTAボタンと被らないように左へ押し出す */
    width: auto;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    display: block;
    clip-path: none;
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    z-index: 1001;
}

.nav-menu.active {
    clip-path: none;
    opacity: 1;
    visibility: visible;
}

/* 4. メニューリストを横並びにする */
.nav-list {
    display: flex;
    flex-direction: row;        /* 強制的に横並び化 */
    align-items: center;
    gap: 30px;                  /* メニュー項目（SYSTEM, WHY USなど）同士の横の隙間 */
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list li {
    margin: 0;                  /* スマホ用の下マージンをリセット */
    padding: 0;
}

/* 5. 文字カラーと滑らかなホバーエフェクト */
.nav-list a {
    font-size: 1.1rem;
    color: var(--dark-teal) !important; /* 文字色をダークティールに設定 */
    text-shadow: none;
    position: relative;
    padding: 5px 0;
    display: inline-block;      /* 上に浮き上がる動き（transform）を有効化 */
    pointer-events: auto;       /* リンク反応を二重で保証 */
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

/* カーソルを合わせた時（ホバー時）：オレンジ変化 ＋ 上に4px浮遊 ＋ 柔らかな影 */
.nav-list a:hover {
    color: var(--logo-orange) !important;
    transform: translateY(-4px);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

/* ホバー時に下に伸びるオレンジ線の設定 */
.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--logo-orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-list a:hover::after {
    transform: scaleX(1);
}

/* Hero Section */
.hero {
    padding: 110px 0 180px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.hero-title {
    font-size: 3.3rem;
    line-height: 1.3;
    letter-spacing: 0.2em;
    white-space: nowrap;
}

.hero-title .title-row {
    display: inline;
}

.hero-title rt {
    font-size: 1.2rem;
    padding-bottom: 0.4em;
}

.hero-image-main {
    max-width: 500px;
    margin: 0 auto;
}

.hero-image-main img {
    width: 100%;
}

.brand-name {
    font-size: 6rem;
    margin-top: -130px;
    margin-bottom: 5px;
}

.brand-name .logo-kana-sub {
    font-size: 1.6rem;
    margin-top: -30px;
    letter-spacing: 0.4em;
}

.hero-desc {
    font-size: 1.6rem;
    margin: 20px 0 0;
    letter-spacing: 0.3em;
}

.hero-desc br {
    display: none;
}

.cta-button {
    padding: 15px 60px;
    font-size: 1.2rem;
}

.hero > .hero-content > .cta-button {
    display: none;
}

/* ==========================================================================
   Floating CTA（スマホの干渉をクリアしてメニューの右隣に常時固定）
   ========================================================================== */

.floating-cta {
    position: fixed !important;  /* スマホ側の位置書き換えを強制ブロック */
    bottom: auto !important;     /* スマホ用の下部固定を完全消去 */
    left: auto !important;       /* スマホ用の中央寄せ(left:50%)を完全消去 */
    top: 15px !important;        /* メニューの文字と縦の中心（高さ）が綺麗に揃う位置 */
    right: 40px !important;      /* 画面右端から40pxの位置に固定（一番右端になります） */
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;      /* 横幅を中身のボタンサイズに自動調整 */
    z-index: 1002 !important;    /* メニューより前面に配置して確実にクリック可能にする */
    
    /* スマホ側のJSやCSSによるフェードイン・移動アニメーション（transform）を完全遮断 */
    transform: none !important;  
    opacity: 1 !important;        
    visibility: visible !important;
    display: block !important;   /* 消えるのを防止 */
}

/* ボタン単体のサイズとホバー効果 */
.floating-cta .cta-button.small {
    display: inline-block !important;
    padding: 10px 20px !important; /* ヘッダー内に収まるスマートなサイズ */
    font-size: 0.95rem !important;
    white-space: nowrap !important; /* 文字が絶対に改行されないようにガード */
    box-shadow: 0 4px 10px rgba(254, 133, 41, 0.2) !important;
    
    /* ボタンアニメーションの初期化と設定 */
    transform: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

/* ボタンホバー時：メニューの浮遊感に合わせて2pxスッと浮き上がる */
.floating-cta .cta-button.small:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(254, 133, 41, 0.4) !important;
}

/* ==========================================================================
   Intro Section（左右全幅 ＋ 上部ホワイトアーチを完全再現）
   ========================================================================== */
.intro {      
    padding: 0 !important;
    display: block !important;
    width: 100% !important;
}

/* 枠（container）を画面いっぱいに広げつつ、上部に美しい白いアーチ（丸み）を設置 */
.intro .container {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    background-color: #ffffff !important;     /* 【重要】アーチの内側を真っ白にする */
    border-radius: 500px 500px 0 0 !important; /* 【重要】上部の大きな丸み（アーチ）を完全復活 */
    padding: 140px 8% 150px !important;        /* 左右は画面幅に追従（8%）、下部の隙間を調整 */
    display: block !important;
    box-sizing: border-box;
}

/* 上部イラスト・タイトル類の調整 */
.intro-illustration {
    margin-top: -240px;
    margin-bottom: 60px;
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.intro-illustration .look-img {
    width: 160px;
    height: auto;
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: 2;
}

.intro-illustration .main-ill {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}

.section-title {
    font-size: 1.6rem;
    margin-bottom: 60px;
    text-align: center;
    width: 100%;
}

.system-labels {
    display: flex !important;
    justify-content: center;
    gap: 60px;
    margin-bottom: 100px;
    width: 100%;
}

.label {
    font-size: 2.8rem;
}

.label .kana {
    font-size: 1.1rem;
    margin-bottom: 5px;
}


/* ==========================================================================
   Feature Cards（全幅2カラム横並び ＋ 狭めの縦間隔）
   ========================================================================== */
.feature-card {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: left !important;
    margin-bottom: 20px !important;    /* 【調整】カード同士の縦の隙間を狭く設定 */
    padding: 0 !important;
    gap: 8% !important;                 /* 文字と画像の間の隙間 */
    width: 100% !important;
    max-width: 1400px !important;       /* 広がりすぎを防ぐ最大幅 */
    margin-left: auto !important;
    margin-right: auto !important;
    background: transparent !important; /* アーチの白背景に馴染ませる */
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
}

/* 2枚目のカード（Feature 2）を左右反転 */
.feature-card.reverse {
    flex-direction: row-reverse !important;
}

/* テキストエリア */
.feature-text {
    flex: 1 !important;
    width: 50% !important;
}

.feature-card-simulation .feature-text {
    padding-top: 60px !important;
}

.feature-text h4 {
    font-size: 2.2rem !important;
    text-align: left !important;
    margin-bottom: 30px !important;
    padding-bottom: 15px !important;
    white-space: nowrap !important; /* タイトルの自動改行を禁止 */
    color: var(--text-color) !important;
    position: relative !important;
}

.feature-text h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    height: 1px;
    background-color: var(--text-color) !important;
}

.feature-text p {
    font-size: 0.8rem !important;
    line-height: 1.3 !important;
    color: var(--text-color) !important;
}

/* 画像エリア */
.feature-img {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    flex: 1 !important;
    width: 50% !important;
    height: 500px !important; /* 画像の高さ */
    opacity: 1 !important;
    margin-top: 0 !important;
}

.feature-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* 比率を保ってフィット */
    border-radius: 16px !important; /* 角をほんのり丸く */
}

.feature-img::after {
    display: none !important; /* 不要なインナーシャドウを削除 */
}


/* ==========================================================================
   Simulation Link（シミュレーションボタン位置調整）
   ========================================================================== */
.simulation-link-wrapper {
    margin-top: 80px !important;
    text-align: left !important;
    display: flex !important;
    justify-content: flex-start !important;
    width: fit-content !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.simulation-link-wrapper-pc {
    display: flex !important;
}

.simulation-link-wrapper-sp {
    display: none !important;
}

.simulation-link {
    display: inline-flex !important;
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: 12px;
}

/* Why Us Section */
.why-us {
    padding: 120px 0;
    border-radius: 60px 60px 0 0;
    margin-top: -80px;
}

.section-title-jp {
    font-size: 1.6rem;
    text-align: center;
}

.section-title-en {
    font-size: 4rem;
    margin-bottom: 60px;
    text-align: center;
}

.why-us-content {
    display: flex;
    align-items: center;
    gap: 2%;
    width: 100%;
}

.why-us-text {
    flex: 1;
    text-align: left;
}

.why-us-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.market-copy {
    font-size: 2.2rem;
    margin: 0 0 30px;
    text-align: left;
}

.why-us-desc {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 30px;
    text-align: left;
}

.graph-container {
    margin: 0;
    max-width: 100%;
    position: relative;
}

.hot-badge {
    width: 120px;
    top: -45px;
    left: -65px;
}

/* Support Section */
.support {
    padding: 120px 0;
    border-radius: 60px 60px 0 0;
    margin-top: -80px;
}

.support-list {
    margin: 60px auto;
    max-width: 1200px;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
}

.support-list details {
    margin-bottom: 0;
    border-radius: 20px;
    flex: 1;
    max-width: 350px;
    height: auto;
}

.support-list details[open] {
    flex: 2.8;
    max-width: 900px;
}

.support-list details[open] summary {
    margin-bottom: 0;
}

.support-list summary {
    padding: 25px 25px;
    cursor: pointer;
}

.support-label {
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.support-title {
    font-size: 1.2rem;
    gap: 12px;
}

.support-title img {
    width: 28px;
    height: 28px;
}

.support-list .arrow-circle {
    display: flex;
}

.support-content {
    padding: 0 25px 25px;
    font-size: 0.95rem;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 25px;
}

.support-content p {
    flex: 1;
}

.support-chat-images {
    margin-top: 0;
    flex: 1;
}

.support-chat-images-large {
    margin-top: 0;
    min-height: auto;
    display: flex;
    align-items: center;
}

.support-chat-images img {
    max-width: 100%;
}

.support-note {
    font-size: 0.8rem;
    text-align: center;
    padding-bottom: 40px;
}

/* Plan Section */
.plan {
    padding: 120px 0;
    border-radius: 60px 60px 0 0;
    margin-top: -80px;
}

.plan-card {
    margin-top: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 4.5rem;
    margin-bottom: 10px;
}

.plan-price span {
    font-size: 1.1rem;
    bottom: 1rem;
}

.plan-sub {
    font-size: 1rem;
    margin-bottom: 40px;
}

.plan-highlight {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    border-radius: 60px 60px 0 0;
    margin-top: -80px;
}

.contact-form {
    max-width: 650px;
    margin-top: 60px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    font-size: 0.95rem;
    margin-bottom: 8px;
    padding-left: 10px;
}

.form-group input, .form-group textarea {
    border-radius: 25px;
    padding: 15px 25px;
    font-size: 1rem;
}

.form-group textarea {
    height: 180px;
    resize: vertical;
}

.contact .submit-button {
    margin-top: 40px;
    padding: 12px 70px;
    font-size: 1.1rem;
    border-radius: 35px;
}

/* Footer Section */
.footer {
    padding: 60px 0 60px;
}

.footer .logo-wrapper {
    margin-bottom: 50px;
    margin-top: 0;
}

.footer .logo {
    font-size: 5rem;
}

.footer .logo-part .logo-kana-sub {
    font-size: 1.2rem;
    margin-top: 8px;
}

.footer-copy {
    font-size: 1.2rem;
    margin-top: 10px;
}

.page-top-wrapper {
    margin-bottom: 30px;
}

.page-top-btn {
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--white);
    transition: opacity 0.3s ease;
}

.page-top-btn:hover {
    opacity: 0.7;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.copyright {
    font-size: 0.85rem;
}



}