@charset "UTF-8";

/* -----------------------------------------------------------------
   RESET & BASE STYLES
----------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #1F2937;
    background-color: #FFFFFF;
    line-height: 1.8;
    overflow-x: hidden; 
    padding-top: 80px; 
    font-size: 18px; 
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* -----------------------------------------------------------------
   VARIABLES
----------------------------------------------------------------- */
:root {
    --c-primary: #EA580C;       
    --c-primary-dark: #C2410C;
    --c-primary-light: #FFEDD5; 
    --c-primary-bg: #FFF7ED; 
    
    --c-text-strong: #111827;
    --c-text-body: #374151;
    --c-white: #FFFFFF;
    
    --radius-xl: 32px; 
    --radius-md: 20px;
    
    --shadow-card: 0 10px 20px -5px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --border-card: 1px solid rgba(0, 0, 0, 0.08);
}

/* -----------------------------------------------------------------
   PAGE TITLE (MV AREA)
----------------------------------------------------------------- */
.page-header-wrapper {
    width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw;
    background-color: var(--c-primary-light); border-bottom: 1px solid rgba(234, 88, 12, 0.1); margin-bottom: 60px;
}
.page-header-inner { 
    padding: 40px 20px; 
    max-width: 1000px; 
    margin: 0 auto; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 30px; 
}
.page-header-char img {
    height: 120px; /* キャラクターの高さ */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}
.page-header-text {
    text-align: left;
}
.page-subtitle { font-size: 1.2rem; font-weight: 800; color: var(--c-primary); letter-spacing: 0.1em; line-height: 1;}
.page-title { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 900; color: var(--c-text-strong); margin-top: 5px; line-height: 1.2; }

/* -----------------------------------------------------------------
   CONTACT INFO STYLES
----------------------------------------------------------------- */
.contact-wrapper {
    max-width: 1000px; margin: 0 auto 120px; padding: 0 20px;
}

.contact-intro {
    text-align: center; margin-bottom: 60px;
}
.contact-intro p {
    font-size: 3rem; margin-bottom: 20px;
}
.contact-phone {
    font-size: 2.5rem; font-weight: 900; color: var(--c-primary); display: block; margin-bottom: 10px; line-height: 1;
}
.contact-hours {
    font-size: 1rem; color: #6B7280; font-weight: 700;
}

/* -----------------------------------------------------------------
   FORM EMBED AREA
----------------------------------------------------------------- */
.form-embed-container {
    background: #FFFFFF;
    border-radius: 40px;
    padding: 60px;
    box-shadow: var(--shadow-card);
    border: 2px solid var(--c-primary-light);
    min-height: 400px;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* -----------------------------------------------------------------
   CTA SECTION
----------------------------------------------------------------- */
.cta-section { 
    background: linear-gradient(135deg, var(--c-primary) 0%, #FF8C42 100%); 
    border-radius: 40px; margin: 100px auto; width: 95%; max-width: 1200px; 
    text-align: center; color: white; padding: 100px 40px; position: relative; overflow: hidden; 
    box-shadow: 0 40px 80px -10px rgba(234, 88, 12, 0.4); 
}
.cta-bg-circle { position: absolute; width: 800px; height: 800px; background: rgba(255,255,255,0.1); border-radius: 50%; z-index: 1; }
.c-1 { top: -250px; left: -250px; } .c-2 { bottom: -250px; right: -250px; }
.cta-content { position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; }
.cta-title { font-size: clamp(3rem, 6vw, 5rem) !important; font-weight: 900; margin-bottom: 40px; line-height: 1.2; text-shadow: 0 3px 15px rgba(0,0,0,0.1); }
.cta-text { font-size: 1.8rem; margin-bottom: 60px; opacity: 1; font-weight: 700; line-height: 1.6; }
.line-btn-embedded {
    display: flex; flex-direction: column; justify-content: center; align-items: center; 
    background: linear-gradient(to bottom, #00E065 0%, #06C755 50%, #04b34b 100%);
    color: white; padding: 50px 80px; width: 100%; max-width: 900px; border-radius: 80px;
    text-decoration: none; border: 6px solid #FFFFFF;
    box-shadow: inset 0 3px 0 rgba(255,255,255,0.4), 0 8px 0 #027a33, 0 30px 60px rgba(0,0,0,0.3);
    transition: transform 0.2s; margin-bottom: 40px;
}
.line-btn-embedded:hover { transform: translateY(-4px); filter: brightness(1.1); }
.btn-sub-text { font-size: clamp(2.5rem, 3.5vw, 3.5rem) !important; font-weight: 800; margin-bottom: 10px; opacity: 0.95; }
.btn-main-text { font-size: clamp(3.5rem, 5vw, 4.5rem) !important; font-weight: 900; line-height: 1.1; }
.email-link { font-size: 1.5rem; color: white; text-decoration: underline; opacity: 0.9; font-weight: 700; }

/* -----------------------------------------------------------------
   5. FOOTER & NAV
----------------------------------------------------------------- */
.site-footer {
    width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw;
    background-color: #111827; color: #F3F4F6; padding: 80px 20px 40px;
}
.footer-container {
    max-width: 1200px; margin: 0 auto; display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 60px;
}
.footer-brand h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: 20px; color: #FFF; }
.footer-brand h2 span { color: var(--c-primary); }
.footer-address { font-style: normal; font-size: 0.95rem; line-height: 1.8; color: #9CA3AF; }
.footer-nav-title {
    font-size: 1.1rem; font-weight: 700; color: #FFF; margin-bottom: 20px;
    border-left: 4px solid var(--c-primary); padding-left: 10px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #D1D5DB; font-weight: 500; display: inline-block; }
.footer-links a:hover { color: var(--c-primary); transform: translateX(5px); }
.copyright { text-align: center; border-top: 1px solid #374151; padding-top: 40px; color: #6B7280; font-size: 0.9rem; }


/* =================================================================
   SMARTPHONE STYLES (Max Width: 768px)
   スマホ用スタイル設定（フォントサイズ調整用）
================================================================= */
@media (max-width: 768px) {
    body { padding-top: 60px; } 
    .site-header { height: 60px; }
    .header-logo { font-size: 1.2rem; }

    /* メニュー表示 */
    .menu-toggle { display: block; }
    .header-nav {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        width: 100vw; height: 100dvh; background-color: #FFFFFF !important; 
        display: flex; flex-direction: column; justify-content: center; align-items: center;     
        padding: 0; margin: 0; opacity: 0; visibility: hidden; pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease; z-index: 10000;
    }
    .header-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
    .header-nav ul { flex-direction: column; gap: 30px; text-align: center; width: 100%; padding: 0; }
    .header-nav li { width: 100%; text-align: center; display: block; } /* スマホではblockに戻す */
    
    /* ▼▼▼ スマホメニューでは「｜」を消す ▼▼▼ */
    .header-nav li:not(:last-child)::after {
        content: none;
    }

    .nav-link { font-size: 1.4rem; color: #111827; display: inline-block; width: auto; white-space: nowrap; }
    .nav-btn-trial { width: auto; min-width: 240px; display: inline-block; margin-top: 20px; padding: 18px 30px; font-size: 1.2rem; white-space: nowrap; margin-left: 0; }

    /* コースグリッドを1列に */
    .course-grid { grid-template-columns: 1fr; gap: 30px; }
    
    .card-image-box { height: 180px; }
    .card-content { padding: 24px; }

    /* ▼▼▼ スマホ用フォントサイズ設定（★ここを調整してください） ▼▼▼ */
    
    .course-title {
        /* ★スマホのコースタイトルサイズ */
        font-size: 2.2rem !important; 
    }
    
    .course-desc {
        /* ★スマホのコース説明文サイズ */
        font-size: 1rem !important;
        margin-bottom: 30px;
    }
    
    .card-title {
        /* ★スマホのカード見出しサイズ */
        font-size: 1.6rem !important;
    }
    
    .card-meta {
        /* ★スマホの期間・ツール表記サイズ */
        font-size: 0.9rem !important;
    }
    
    .card-text {
        /* ★スマホのカード本文サイズ */
        font-size: 1rem !important;
    }
    
    .goal-tag {
        /* ★スマホのタグサイズ */
        font-size: 0.9rem !important;
    }

    /* CTA・フッター調整 */
    .cta-section { padding: 60px 20px; margin: 60px auto; width: 92%; border-radius: 20px; }
    .cta-title { font-size: 2rem !important; }
    .cta-text { font-size: 1.1rem; }
    .line-btn-embedded { padding: 30px 20px; border-radius: 40px; }
    .btn-sub-text { font-size: 1.2rem !important; }
    .btn-main-text { font-size: 2rem !important; }
    
    .footer-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-nav-title { border-left: none; border-bottom: 2px solid var(--c-primary); display: inline-block; padding-bottom: 5px; padding-left: 0; }
}

/*-----------------20260309追加--------------------*/
/*---------------フォント変更------------------*/
body.ft03,
body.ft03 #setting_modal .heading_design *,
.widget_form form .submit input {
    font-family: 'Noto Sans JP', 'Roboto', "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}