/* =================================
   GrowSmile ベースセンター簡易LP
   学習プリント.com トンマナ準拠
   ================================= */

/* Variables */
:root {
    --sky-blue: #00AEEF;
    --sky-blue-light: #5CCEF7;
    --sky-blue-dark: #0097D4;
    --orange: #FF9800;
    --orange-dark: #F57C00;
    --pink: #FF6B9D;
    --yellow: #FFD54F;
    --cream: #FFF9E6;
    --white: #FFFFFF;
    --gray: #666666;
    --light-gray: #F5F5F5;
    
    --font-round: 'M PLUS Rounded 1c', sans-serif;
    
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-round);
    color: var(--gray);
    line-height: 1.8;
    font-size: 16px;
    background: var(--cream);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-img {
    height: 50px;
    width: auto;
}

/* Main */
.main {
    padding: 40px 0;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.hero-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--sky-blue);
    line-height: 1.5;
    margin-bottom: 20px;
}

.highlight-blue {
    color: var(--sky-blue-dark);
    font-weight: 900;
    font-size: 36px;
    display: block;
    margin-bottom: 10px;
}

.highlight-pink {
    background: linear-gradient(135deg, var(--pink), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 38px;
}

.highlight-yellow {
    background: var(--yellow);
    padding: 0 10px;
    border-radius: 8px;
    color: var(--sky-blue-dark);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray);
    margin-bottom: 40px;
}

.hero-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.visual-card {
    background: linear-gradient(135deg, var(--sky-blue-light), var(--sky-blue));
    color: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 174, 239, 0.3);
    transition: transform 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-10px);
}

.visual-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.visual-number {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 5px;
}

.visual-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Section Title */
.section-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--sky-blue);
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.title-icon {
    font-size: 32px;
}

/* What Section */
.what {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.what-box {
    background: linear-gradient(135deg, var(--sky-blue-light), var(--sky-blue));
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
}

.what-box h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
}

.what-box p {
    font-size: 16px;
    line-height: 1.9;
}

.what-box strong {
    background: var(--yellow);
    color: var(--sky-blue-dark);
    padding: 2px 8px;
    border-radius: 5px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.feature-item {
    background: var(--cream);
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    border: 3px solid var(--sky-blue);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 14px;
    color: var(--gray);
}

.feature-text strong {
    color: var(--sky-blue);
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

/* Points Section */
.points {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.point-card {
    background: var(--cream);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 4px solid var(--orange);
    position: relative;
    transition: transform 0.3s ease;
}

.point-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.point-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
}

.point-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--sky-blue);
    margin: 25px 0 15px;
}

.point-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
}

/* Flow Section */
.flow {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.flow-step {
    background: var(--cream);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    flex: 0 1 180px;
    border: 3px solid var(--sky-blue);
}

.flow-step-number {
    background: var(--sky-blue);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.flow-step-title {
    font-size: 16px;
    font-weight: 900;
    color: var(--sky-blue);
    margin-bottom: 8px;
}

.flow-step-desc {
    font-size: 13px;
    color: var(--gray);
}

.flow-arrow {
    font-size: 24px;
    color: var(--orange);
    font-weight: 900;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--sky-blue), var(--sky-blue-dark));
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
    text-align: center;
}

.stats-badge {
    background: var(--white);
    color: var(--sky-blue);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 25px 15px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--white);
    opacity: 0.9;
}

/* CTA Section */
.cta {
    margin-bottom: 40px;
}

.cta-box {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.cta-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--orange);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.btn-arrow {
    font-size: 20px;
    font-weight: 900;
}

.cta-note {
    font-size: 12px;
    color: var(--white);
    margin-top: 20px;
    opacity: 0.9;
}

/* Download Form Section */
.download {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.download-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--sky-blue);
    text-align: center;
    margin-bottom: 30px;
}

.download-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--gray);
    margin-bottom: 8px;
}

.required {
    background: var(--orange);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    margin-left: 5px;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-round);
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--sky-blue);
}

.form-checkbox {
    display: flex;
    align-items: center;
}

.form-checkbox label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.form-checkbox a {
    color: var(--sky-blue);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    padding: 18px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 900;
    font-family: var(--font-round);
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4);
}

/* Footer */
.footer {
    background: var(--sky-blue-dark);
    color: var(--white);
    padding: 40px 0 20px;
    text-align: center;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-note {
    font-size: 13px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-copyright {
    font-size: 12px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 24px;
    }
    
    .highlight-blue {
        font-size: 26px;
    }

    .highlight-pink {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .visual-number {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .points-grid,
    .hero-visual {
        grid-template-columns: 1fr;
    }

    .flow-steps {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .cta-title {
        font-size: 22px;
    }

    .btn-cta {
        font-size: 16px;
        padding: 15px 30px;
    }
}

/* Heckman Section */
.heckman {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.heckman-intro {
    text-align: center;
    margin-bottom: 40px;
}

.heckman-lead {
    font-size: 18px;
    line-height: 2;
}

.heckman-lead strong {
    color: var(--sky-blue);
    font-size: 20px;
}

.heckman-boxes {
    display: grid;
    gap: 30px;
}

.heckman-box {
    background: var(--cream);
    padding: 35px 30px;
    border-radius: 15px;
    border: 3px solid var(--sky-blue);
}

.heckman-box h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--sky-blue);
    margin-bottom: 20px;
}

.heckman-box p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.highlight-text {
    background: linear-gradient(135deg, var(--pink), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 18px;
}

.heckman-result {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.result-item {
    background: var(--white);
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.result-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.result-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray);
    line-height: 1.6;
}

.heckman-gs {
    background: linear-gradient(135deg, var(--sky-blue-light), var(--sky-blue));
    border-color: var(--sky-blue-dark);
}

.heckman-gs h3,
.heckman-gs p {
    color: var(--white);
}

.gs-method {
    background: var(--yellow);
    color: var(--sky-blue-dark);
    padding: 3px 10px;
    border-radius: 5px;
    font-weight: 900;
}

.gs-method-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.gs-method-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    flex: 1 1 200px;
    max-width: 300px;
}

.gs-method-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--sky-blue-dark);
    margin-bottom: 5px;
}

.gs-method-sub {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
}

.gs-method-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

.gs-method-plus {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
}

/* Inagaki Section */
.inagaki {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.inagaki-profile {
    max-width: 900px;
    margin: 0 auto;
}

.inagaki-name {
    background: linear-gradient(135deg, var(--sky-blue), var(--sky-blue-dark));
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
}

.inagaki-name h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
}

.inagaki-title {
    font-size: 15px;
    opacity: 0.95;
    line-height: 1.7;
}

.career-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.inagaki-career {
    background: var(--cream);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 3px solid var(--sky-blue);
}

.inagaki-lead {
    font-size: 16px;
    line-height: 1.9;
}

.inagaki-lead strong {
    color: var(--sky-blue-dark);
    font-weight: 900;
}

.highlight-number {
    background: var(--yellow);
    color: var(--sky-blue-dark);
    padding: 3px 10px;
    border-radius: 5px;
    font-weight: 900;
    font-size: 18px;
}

.inagaki-achievements,
.inagaki-works,
.inagaki-method {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.inagaki-achievements h4,
.inagaki-works h4,
.inagaki-method h4 {
    font-size: 18px;
    font-weight: 900;
    color: var(--sky-blue);
    margin-bottom: 15px;
}

.achievements-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.achievements-list li {
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    line-height: 1.7;
}

.achievements-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 900;
    font-size: 16px;
}

.inagaki-works p,
.inagaki-method p {
    font-size: 15px;
    line-height: 1.9;
}

.inagaki-method strong {
    color: var(--sky-blue-dark);
    font-weight: 900;
}

.highlight-gs {
    background: linear-gradient(135deg, var(--pink), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    display: block;
    margin-top: 15px;
    font-size: 16px;
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flow-step {
        flex: 1 1 100%;
    }
    
    .heckman-result {
        grid-template-columns: 1fr;
    }
    
    .gs-method-grid {
        flex-direction: column;
    }
    
    .gs-method-plus {
        transform: rotate(90deg);
    }
    
    .achievements-list {
        grid-template-columns: 1fr;
    }
}





















/* =================================
    Masayuki Inagaki Section (Round Layout)
   ================================= */

.inagaki {
    background: var(--white);
    padding: 60px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

/* レイアウトを縦並び・中央揃えに設定 */
.inagaki-flex {
    display: flex;
    flex-direction: column; /* 縦方向に並べる */
    align-items: center;    /* 水平方向の中央に配置 */
    gap: 35px;              /* 写真とテキストの間隔 */
}

/* --- 画像エリアのスタイル（丸円表示・調整版） --- */
.inagaki-image {
    /* 円形の外枠コンテナサイズ（変更なし） */
    /*width: 280px;
    height: 280px;*/
    flex: 0 0 auto;
    position: relative;

    /* コンテナを丸くする設定 */
    /*border-radius: 50%;*/
    /* overflow: hidden; は外枠の影を表示するために削除 */

    /* 外枠のデザイン（太い白枠と影） */
    /*border: 8px solid var(--white);
    box-shadow: var(--shadow-lg), 0 0 0 4px var(--sky-blue-light);*/

    /* 【調整ポイント1】写真のサイズ（余白の太さ） */
    /* この数値を大きくすると、中の写真はより小さくなります */
    padding: 20px;
    background-color: var(--white); /* 余白部分の色 */
    
    /* 中の写真を中央に配置 */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 中の写真のスタイル */
.profile-img {
    /* 余白の内側いっぱいに表示 */
    width: 100%;
    height: 100%;
    
    /* 写真自体もきれいに丸く切り抜く */
    border-radius: 50%;
    object-fit: cover; /* 歪まずに枠を埋める */
    
    /* 【調整ポイント2】写真の表示位置（トリミング位置） */
    /* 「左右位置 上下位置」で指定します。デフォルトは center center */
    /* 例: 顔が上すぎる場合、少し下げる → object-position: center 30%; などと調整してください */
    object-position: center center;

    /* 内側にもう一つ細い枠線を追加してデザインを引き締める（任意） */
   /* box-shadow: inset 0 0 0 2px rgba(0,0,0,0.1);*/
}


/* --- テキストエリアのスタイル --- */
.inagaki-profile {
    width: 100%;
    max-width: 850px; /* テキストが広がりすぎないように制限 */
    text-align: center; /* 全体を中央揃え */
}

/* 名前部分のデザイン */
.inagaki-name {
    background: linear-gradient(135deg, var(--sky-blue), var(--sky-blue-dark));
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.inagaki-name h3 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 10px;
}

.inagaki-name h3 span {
    font-size: 16px;
    font-weight: normal;
    display: block; /* スマホで見やすいよう改行 */
    margin-top: 5px;
    opacity: 0.9;
}

.inagaki-title {
    font-size: 15px;
    font-weight: 700;
    opacity: 0.95;
}

/* 経歴バッジ */
.career-badge {
    display: inline-block;
    background: var(--pink);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.inagaki-career {
    background: var(--cream);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 3px solid var(--yellow);
}

.inagaki-lead {
    font-size: 17px;
    line-height: 1.9;
    color: var(--gray);
    text-align: left; /* リード文は読みやすく左寄せ */
    display: inline-block; /* 中央揃えの中で左寄せにするための工夫 */
}

/* 実績・作品・メソッドの共通カード */
.inagaki-achievements,
.inagaki-works,
.inagaki-method {
    background: var(--light-gray);
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: left; /* 内部のテキストは左寄せ */
}

.inagaki-achievements h4,
.inagaki-works h4,
.inagaki-method h4 {
    font-size: 18px;
    font-weight: 900;
    color: var(--sky-blue-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center; /* 見出しは中央揃え */
    gap: 10px;
}

/* 実績リスト */
.achievements-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* 自動で折り返す列 */
    gap: 10px 20px;
    padding: 0;
    margin-top: 20px;
}

.achievements-list li {
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--gray);
}

.achievements-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 900;
    font-size: 16px;
}

/* 強調ボックス（GSメソッド部分） */
.highlight-gs-box {
    background: #fff;
    border: 3px solid var(--pink);
    padding: 20px;
    margin-top: 20px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 700;
    color: var(--sky-blue-dark);
    text-align: center;
    box-shadow: var(--shadow);
}


/* =================================
    Responsive Adjustments (Rounded Ver.)
   ================================= */

@media (max-width: 768px) {
    .inagaki {
        padding: 40px 20px;
    }

    /* スマホでは写真を少し小さく */
    .inagaki-image {
        width: 220px;
        height: 220px;
    }
    
    .profile-img {
        border-width: 5px; /* 枠線を少し細く */
    }

    .inagaki-name h3 {
        font-size: 24px;
    }

    .inagaki-lead {
        font-size: 15px;
    }
    
    .achievements-list {
        grid-template-columns: 1fr; /* スマホでは1列表示 */
    }
}













/* 日本地図エリアの調整 */
.hero-map {
    width: 100%;
    max-width: 600px; /* 地図の最大幅を制限してスッキリ見せます */
    margin: 0 auto 40px; /* 上下の余白（特にカードとの間に40px） */
    text-align: center;
}

.map-img {
    width: 100%;
    height: auto;
    /* 地図を少し浮かせて印象的にしたい場合は以下を有効にしてください */
    /* filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05)); */
}

/* レスポンシブ調整（スマホ） */
@media (max-width: 768px) {
    .hero-map {
        max-width: 90%; /* スマホでは画面幅に合わせて表示 */
        margin-bottom: 30px;
    }
}



















/* ===============================
   Thanksページ資料DLボタン
================================ */

.thanks-download {
  margin-top: 40px;
  text-align: center;
}

.thanks-download-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
}

.thanks-download-grid {
  display: grid;
  gap: 18px;
}

.thanks-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-radius: 12px;
  text-decoration: none;
  background: linear-gradient(135deg, #1e67d6, #0f3f9a);
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.thanks-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.thanks-btn-title {
  font-size: 14px;
  opacity: 0.8;
}

.thanks-btn-text {
  flex: 1;
  margin-left: 15px;
  text-align: left;
  font-size: 15px;
}

.thanks-btn-arrow {
  font-size: 14px;
}

/* PC横並び */
@media (min-width: 768px) {
  .thanks-download-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .thanks-btn {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .thanks-btn-text {
    margin: 10px 0;
    text-align: center;
  }
}




/* ===============================
   Thanks中央寄せ
================================ */

.thanks-center {
  text-align: center;
}

.thanks-message {
  margin: 20px 0 30px;
  font-size: 16px;
}

.thanks-back-btn {
  display: inline-flex;
}


















/* 稲垣プロフィール詳細ボタン */
.inagaki-profile-link {
    margin-top: 30px;
}

.btn-profile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    background: linear-gradient(135deg, #1e67d6, #0f3f9a);
    color: #fff;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(30,103,214,0.25);
}

.btn-profile:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(30,103,214,0.35);
    opacity: 0.95;
}

.btn-profile .btn-arrow {
    font-size: 14px;
}
