/* ==================================
   基本設定・リセット
   ================================== */
:root {
    --primary-color: #004aad;
    --accent-color: #0097b2;
    --text-dark: #1a1a1a;
    --text-gray: #555555;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ==================================
   共通クラス
   ================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

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

.section-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.subtitle {
    font-size: 22px;
    font-weight: 400;
    color: var(--text-gray);
    display: block;
    margin-top: 8px;
}

.highlight {
    background: linear-gradient(transparent 60%, rgba(0, 151, 178, 0.3) 60%);
    padding: 0 4px;
    font-weight: 600;
}

.emphasis {
    color: var(--primary-color);
    font-weight: 700;
}

.emphasis-large {
    color: var(--accent-color);
    font-size: 1.2em;
    font-weight: 700;
}

/* ==================================
   ボタン
   ================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-large {
    padding: 18px 40px;
    font-size: 17px;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 151, 178, 0.5);
}

.btn-primary:hover {
    background: #007a8f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 151, 178, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: white;
    color: var(--accent-color);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.btn-secondary-alt {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 151, 178, 0.3);
}

.btn-secondary-alt:hover {
    background: #007a8f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 151, 178, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-gray);
}

.btn-outline:hover {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
}

/* ==================================
   ヘッダー
   ================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.logo-image:hover {
    opacity: 0.8;
}

.main-nav ul {
    display: flex;
    gap: 32px;
    align-items: center;
}

.main-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.btn-nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
}

.btn-nav-cta:hover {
    background: #003a8c;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    padding: 20px;
}

.mobile-menu li {
    margin-bottom: 16px;
}

.mobile-menu a {
    display: block;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* ==================================
   ヒーローセクション
   ================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 暗めのグラデーションオーバーレイでテキストを読みやすく */
    background: linear-gradient(135deg, 
        rgba(0, 74, 173, 0.75) 0%, 
        rgba(0, 151, 178, 0.65) 50%,
        rgba(0, 74, 173, 0.70) 100%);
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 微妙なノイズテクスチャで質感を追加 */
    background-image: 
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 3px
        );
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 3;
}

.hero-title {
    margin-bottom: 32px;
}

.hero-title-main {
    display: block;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-title-sub {
    display: block;
    font-size: 32px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    animation: bounce 2s infinite;
    z-index: 3;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ==================================
   問題提起セクション
   ================================== */
.pain-section {
    background: linear-gradient(180deg, 
        rgba(250, 250, 250, 0.5) 0%, 
        rgba(255, 255, 255, 1) 100%);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.pain-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 74, 173, 0.08);
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pain-icon {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.pain-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.empathy-message {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, 
        rgba(0, 74, 173, 0.05), 
        rgba(0, 151, 178, 0.05));
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.empathy-text {
    font-size: 19px;
    line-height: 2;
    color: var(--text-dark);
}

/* ==================================
   ストーリーセクション
   ================================== */
.story-section {
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.story-text {
    font-size: 17px;
    line-height: 2;
    color: var(--text-dark);
}

.story-intro {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.story-text p {
    margin-bottom: 24px;
}

.story-highlight-box {
    background: linear-gradient(135deg, 
        rgba(0, 74, 173, 0.03), 
        rgba(0, 151, 178, 0.03));
    border-left: 4px solid var(--primary-color);
    padding: 32px;
    margin: 40px 0;
    border-radius: 8px;
}

.story-belief {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.9;
    margin-bottom: 20px;
}

.story-commitment {
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 20px;
}

.story-turning-point {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 32px 0 24px;
}

.story-quote {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--primary-color);
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, 
        rgba(0, 74, 173, 0.05), 
        rgba(0, 151, 178, 0.05));
    border-radius: 12px;
    margin: 32px 0;
    position: relative;
}

.story-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: var(--accent-color);
    opacity: 0.2;
}

.story-quote-secondary {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.8;
    color: var(--text-gray);
    text-align: center;
    padding: 24px;
    border: 2px dashed var(--accent-color);
    border-radius: 12px;
    margin: 32px 0;
}

.story-mission {
    font-size: 20px;
    font-weight: 600;
    line-height: 2;
    margin: 32px 0;
}

.story-closing {
    font-size: 19px;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin-top: 32px;
}

.story-image-container {
    position: relative;
}

.story-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
    object-fit: cover;
    transition: var(--transition);
}

.story-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.story-image-placeholder {
    background: linear-gradient(135deg, 
        rgba(0, 74, 173, 0.08), 
        rgba(0, 151, 178, 0.08));
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.story-image-placeholder i {
    font-size: 120px;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.story-image-placeholder p {
    font-size: 14px;
    color: var(--text-gray);
}

.commitment-box {
    background: linear-gradient(135deg, 
        var(--primary-color), 
        var(--accent-color));
    color: white;
    padding: 48px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.commitment-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.5;
}

.commitment-text {
    font-size: 18px;
    line-height: 2;
}

/* ==================================
   サービスセクション
   ================================== */
.services-section {
    background: linear-gradient(180deg, 
        rgba(250, 250, 250, 0.5) 0%, 
        rgba(255, 255, 255, 1) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-number {
    position: absolute;
    top: -16px;
    right: 24px;
    font-size: 64px;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.1;
}

.service-icon {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.5;
}

.service-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.service-features {
    margin-bottom: 28px;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-features i {
    color: var(--accent-color);
    margin-top: 4px;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-cta:hover {
    gap: 12px;
    color: var(--accent-color);
}

/* ==================================
   なぜGoogleなのか?
   ================================== */
.why-google-section {
    background: white;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.reason-card {
    background: linear-gradient(135deg, 
        rgba(250, 250, 250, 0.8), 
        rgba(255, 255, 255, 1));
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.reason-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.reason-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.reason-icon {
    font-size: 56px;
    color: var(--accent-color);
    margin: 32px 0 20px;
}

.reason-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

.reason-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
}

/* ==================================
   プロフィールセクション
   ================================== */
.profile-section {
    background: linear-gradient(180deg, 
        rgba(250, 250, 250, 0.5) 0%, 
        rgba(255, 255, 255, 1) 100%);
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.profile-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
    object-fit: cover;
    transition: var(--transition);
}

.profile-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.profile-image-placeholder {
    background: linear-gradient(135deg, 
        rgba(0, 74, 173, 0.08), 
        rgba(0, 151, 178, 0.08));
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.profile-image-placeholder i {
    font-size: 140px;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.profile-image-placeholder p {
    font-size: 14px;
    color: var(--text-gray);
}

.profile-name {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.profile-name-en {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-gray);
    margin-top: 8px;
    font-family: 'Outfit', sans-serif;
}

.profile-title {
    font-size: 16px;
    line-height: 1.8;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 32px;
}

.profile-details h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 32px 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-details h4 i {
    color: var(--accent-color);
}

.profile-details ul li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
}

.profile-details ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--accent-color);
    font-weight: 700;
}

.profile-links {
    margin-top: 32px;
}

.profile-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}

.profile-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==================================
   実績セクション
   ================================== */
.results-section {
    background: white;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.result-card {
    background: linear-gradient(135deg, 
        rgba(250, 250, 250, 0.8), 
        rgba(255, 255, 255, 1));
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.result-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.result-card-highlight {
    background: linear-gradient(135deg, 
        rgba(0, 74, 173, 0.05), 
        rgba(0, 151, 178, 0.05));
    border: 2px solid var(--primary-color);
}

.result-icon {
    font-size: 56px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.result-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.result-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
}

.testimonial {
    text-align: left;
    margin-top: 20px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border-left: 3px solid var(--accent-color);
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
}

/* ==================================
   FAQセクション
   ================================== */
.faq-section {
    background: linear-gradient(180deg, 
        rgba(250, 250, 250, 0.5) 0%, 
        rgba(255, 255, 255, 1) 100%);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(0, 74, 173, 0.02);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 16px;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 32px 28px 32px;
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-gray);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ==================================
   最終CTAセクション
   ================================== */
.final-cta-section {
    background: linear-gradient(135deg, 
        rgba(0, 74, 173, 0.08) 0%, 
        rgba(0, 151, 178, 0.08) 100%);
}

.final-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
}

.final-cta-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.final-cta-text {
    font-size: 20px;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

/* ==================================
   フッター
   ================================== */
.site-footer {
    background: linear-gradient(135deg, 
        var(--text-dark) 0%, 
        #2a2a2a 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
    /* フッターではロゴを白色化 */
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.footer-location {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--accent-color);
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ==================================
   アニメーション
   ================================== */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in-up.visible {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================================
   レスポンシブ対応
   ================================== */
@media (max-width: 992px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-title-main {
        font-size: 42px;
    }
    
    .hero-title-sub {
        font-size: 26px;
    }
    
    .story-content,
    .profile-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-image-placeholder,
    .profile-image-placeholder,
    .story-image,
    .profile-image {
        position: relative;
        top: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .logo-image {
        height: 32px;
    }
    
    .footer-logo-image {
        height: 40px;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-title-main {
        font-size: 36px;
    }
    
    .hero-title-sub {
        font-size: 22px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        padding: 16px 32px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .pain-grid,
    .services-grid,
    .reasons-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-title {
        font-size: 24px;
    }
    
    .final-cta-title {
        font-size: 32px;
    }
    
    .final-cta-text {
        font-size: 17px;
    }
    
    .final-cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title-main {
        font-size: 28px;
    }
    
    .hero-title-sub {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .story-quote {
        font-size: 22px;
        padding: 24px;
    }
    
    .profile-name {
        font-size: 28px;
    }
}
