/* ============================================================
   iMus LP - Redesigned for "Growth Wall" Targeting
   Impactful & Solid Architecture (Gothic / Bold)
   ============================================================ */

:root {
    /* カラーパレット：信頼と覚悟を感じさせるネイビー×白 */
    --bg-color: #FFFFFF;
    --bg-gray: #F4F4F5;        /* 少しソリッドなグレーに調整 */
    --bg-navy: #0F172A;
    
    --text-main: #111827;      /* より濃い黒でコントラストを強化 */
    --text-navy: #1D4ED8;      /* より鮮やかなネイビーで力強さを */
    --text-light: #6B7280;
    --text-on-navy: #F9FAFB;
    
    --border-color: #E5E7EB;
    --border-navy: rgba(255, 255, 255, 0.2);
    
    --error: #DC2626;

    /* フォント設定：力強いゴシック体（Noto Sans JP）と太字のMontserrat */
    --font-ja: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    --font-en: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-ja);
    font-size: 16px; /* ベースサイズを少しアップ */
    font-weight: 400; /* ベースも少し太く */
    line-height: 2;
    letter-spacing: 0.03em; /* ゴシックに合わせて字間を少し詰める */
    color: var(--text-main);
    background: var(--bg-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem; /* スマホでは少し余白を詰める */
}

/* ============================================================
   TYPOGRAPHY (English Labels) - ドカンとインパクト！
   ============================================================ */
.section-en-label {
    font-family: var(--font-en);
    font-size: 2rem; /* スマホ向けに少し調整（PCで大きくする） */
    font-weight: 900; /* 極太 */
    letter-spacing: 0.05em; /* 字間を詰めて塊感を出す */
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: inline-block;
    color: var(--text-navy);
    line-height: 1;
}

.section-en-label::after {
    content: '';
    display: block;
    width: 3rem;
    height: 4px; /* ボーダーも太く */
    background-color: var(--text-navy);
    margin-top: 1rem;
}

.text-body p {
    margin-bottom: 2rem;
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 400;
}
.text-body strong {
    font-weight: 700;
    color: var(--text-navy);
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
    background-color: #fff;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.site-logo {
    pointer-events: auto;
    display: flex;
    align-items: center;
    z-index: 102; /* メニューより上に */
    position: relative;
    flex-shrink: 0; /* ナビに押されてロゴが縮むのを防止 */
}
.site-logo__img {
    height: 40px; /* スマホでは少し小さく */
    width: auto;
}

.site-nav { pointer-events: auto; }

/* ハンバーガーボタン（スマホ用） */
.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    pointer-events: auto;
    width: 28px;
    height: 20px;
    position: relative;
    z-index: 102; /* 開いたメニューより上に配置 */
}

.nav-toggle__bar {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    left: 0;
    transition: all 0.3s ease;
}

/* 1本目 */
.nav-toggle__bar:nth-child(1) {
    top: 0;
}
/* 2本目 */
.nav-toggle__bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}
/* 3本目 (HTMLのspanが2つのため、CSSで補完) */
.nav-toggle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    left: 0;
    bottom: 0;
    transition: all 0.3s ease;
}

/* メニュー開閉時のバッテン（×）アニメーション */
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"]::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* スマホ用全画面メニュー */
.nav-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* centerから変更: 上寄せにする */
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff; /* 透過をなくし、完全な白にして文字被りを防ぐ */
    z-index: 101; /* ヘッダーより上、ボタンより下 */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    gap: 1rem; /* 項目間の余白を少し狭くする */
    padding-top: 100px; /* ヘッダーの裏に隠れないよう上部余白を追加 */
    padding-bottom: 40px; /* 下部余白を追加 */
    overflow-y: auto; /* 画面に収まらない場合はスクロールできるようにする */
}

.nav-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.nav-menu li {
    width: 100%;
    text-align: center;
}

.nav-menu a {
    font-family: var(--font-en);
    font-size: 1.25rem; /* 1.5remから少し小さくして収まりを良くする */
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-main);
    display: block;
    padding: 0.75rem;
}

.nav-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.nav-menu li {
    width: 100%;
    text-align: center;
}

.nav-menu a {
    font-family: var(--font-en);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-main);
    display: block;
    padding: 1rem;
}

/* ============================================================
   SECTIONS & LAYOUTS (Mobile First)
   ============================================================ */
.section { padding: 4rem 0; } /* スマホでは上下の余白を少し詰める */
.section--gray { background: var(--bg-gray); }

/* --- ネイビー背景セクション用 --- */
.section--navy {
    background: var(--bg-navy);
    color: var(--text-on-navy);
}
.section--navy .section-en-label {
    color: var(--text-on-navy);
}
.section--navy .section-en-label::after {
    background-color: var(--text-on-navy);
}
.section--navy .vertical-caption {
    color: rgba(255, 255, 255, 0.6);
}
.section--navy .text-body p {
    color: var(--text-on-navy);
}
/* -------------------------------- */

.layout-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* ★追加：スマホ表示では「縦書き見出し（キャッチコピー等）」をコンテンツの上に持ってくる */
.layout-split__vertical {
    order: -1;
}

/* 縦書き見出しも極太・巨大に */
.vertical-title {
    font-size: 1.75rem; /* スマホ向けに調整 */
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.vertical-title .vertical-line {
    display: inline-block;
    margin-right: 0.5rem;
}
.vertical-caption {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

/* ============================================================
   HERO (スマホ向けにレイアウトを改善)
   ============================================================ */
.hero {
    /* スマホでは上下の余白を少し調整し、テキストを中央揃えに */
    padding: 7rem 1rem 4rem; 
    background: url('/unnamed (2).webp') center center / cover no-repeat;
    position: relative;
    text-align: center; /* 中央揃えに変更 */
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.82);
}
.hero__inner {
    position: relative;
    z-index: 1;
}

/* スマホ表示の時に、文節ごとに綺麗に改行させる設定 */
.hero__title .vertical-line,
.hero__subtitle .vertical-line {
    display: block;
}

.hero__title {
    /* 画面幅に合わせて自動縮小し、変な改行（文字落ち）を防ぐ */
    font-size: clamp(1.2rem, 6vw, 1.6rem); 
    font-weight: 900; /* 極太 */
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-navy);
}
.hero__subtitle {
    font-size: clamp(0.9rem, 4.5vw, 1.05rem); /* サブタイトルも画面幅に合わせて自動調整 */
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-main);
    line-height: 1.6;
}

/* ============================================================
   ISSUES (お悩み)
   ============================================================ */
.issues-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.issue-item {
    position: relative;
    padding-left: 2.5rem;
}

.issue-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 1.2rem;
    height: 1.2rem;
    border-right: 3px solid var(--text-on-navy); /* チェックも太く */
    border-bottom: 3px solid var(--text-on-navy);
    transform: rotate(45deg);
}

.issue-title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    color: var(--text-on-navy);
}

.issue-desc {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.issues-conclusion {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    padding-top: 2rem;
    border-top: 2px solid var(--border-navy);
}

/* ============================================================
   APPROACH (ベン図) - スマホはみ出し対策
   ============================================================ */
.venn-container {
    position: relative;
    height: 320px; /* スマホ向けに高さを抑える */
    max-width: 320px; /* スマホの幅に合わせて縮小 */
    margin: 2rem auto 3rem;
}
.circle {
    position: absolute;
    width: 180px; /* スマホ向けに円を小さく */
    height: 180px;
    border: 1px solid var(--text-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem; /* フォントも少し小さく */
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: default;
}
.circle:hover {
    background: var(--text-navy);
    color: white;
    z-index: 10;
}
.circle-1 { top: 0; left: 50%; transform: translateX(-50%); }
.circle-2 { bottom: 20px; left: 0; }
.circle-3 { bottom: 20px; right: 0; }
.center-label {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: var(--text-navy);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 900;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.approach-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
.approach-item {
    border-top: 2px solid var(--text-navy); /* ラインを力強く */
    padding-top: 1.5rem;
}
.approach-num {
    font-family: var(--font-en);
    font-size: 3rem; /* ドカンと大きく */
    font-weight: 900;
    color: var(--text-navy);
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.approach-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}
.approach-subtitle {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--text-navy);
    margin-bottom: 1rem;
}
.approach-detail {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

/* ============================================================
   SERVICE
   ============================================================ */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.service-item {
    border-bottom: none;
}
.service-num {
    font-family: var(--font-en);
    font-size: 4rem; /* ドカンと大きく */
    font-weight: 900;
    color: var(--text-navy);
    opacity: 0.2;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.text-body p.service-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 900;
    color: var(--text-main);
}

/* ============================================================
   PROFILE
   ============================================================ */
.profile-card {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}
.profile-photo {
    flex-shrink: 0;
}
.profile-photo__img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 65% 20%;
}
.profile-company {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}
.profile-position {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}
.profile-name {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}
.profile-bio {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 2;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-lead {
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 1.125rem;
}
.form-group { margin-bottom: 2rem; }
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}
.form-required {
    color: var(--error);
}
.form-input, .form-textarea {
    width: 100%;
    padding: 0.75rem 0;
    font-family: var(--font-ja);
    font-size: 1rem;
    font-weight: 700;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border-color); /* 入力欄も太く */
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0;
    -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus {
    border-bottom-color: var(--text-navy);
}
.form-textarea { resize: vertical; min-height: 120px; }

.form-group--submit {
    text-align: center;
}
.btn {
    display: inline-block;
    width: 100%; /* スマホでは横幅いっぱいに */
    max-width: 320px; /* ただし広がりすぎないように */
    padding: 1.2rem 2rem;
    font-family: var(--font-ja);
    font-size: 1.125rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    cursor: pointer;
    text-align: center;
    background: var(--text-navy); /* 塗りつぶしの力強いボタン */
    color: var(--bg-color);
    border: none;
    transition: all 0.3s ease;
}
.btn:hover {
    background: var(--text-main);
}
.form-error-msg {
    display: block;
    color: var(--error);
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

/* ============================================================
   OTHER SERVICE
   ============================================================ */
.other-service-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
.other-service-item {
    display: block;
    border-top: 2px solid var(--border-navy);
    padding-top: 2rem;
    transition: opacity 0.3s ease;
}
a.other-service-item:hover {
    opacity: 0.7;
}
.other-service-num {
    font-family: var(--font-en);
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-on-navy);
    opacity: 0.3;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.other-service-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-on-navy);
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
}
.other-service-catch {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-on-navy);
    margin-bottom: 1rem;
}
.other-service-desc {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--border-color);
    background: var(--bg-color);
    color: var(--text-main);
    text-align: center;
}
.footer__logo {
    font-family: var(--font-ja);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--text-main);
    margin-bottom: 1rem;
}
.footer__addresses {
    margin-bottom: 2rem;
}
.footer__address {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.is-visible {
    opacity: 1;
    transform: none; /* ぼやけ防止のためnone */
}

/* ============================================================
   MEDIA QUERIES (PC LAYOUT)
   ============================================================ */
@media (min-width: 1024px) {
    .section {
        padding: 8rem 0;
    }

    /* ヘッダーの右寄せ縦書きナビゲーションを廃止し、上部横書きに */
    .site-header {
        height: auto;
        align-items: center;
        padding: 2rem 4rem;
    }
    .site-logo__img {
        height: 72px;
    }

    /* PC版ではハンバーガーボタンと疑似要素を非表示に */
    .nav-toggle,
    .nav-toggle::after {
        display: none;
    }

    .site-nav {
        position: static;
        writing-mode: horizontal-tb;
    }

    /* PC版ではメニューを横並びにリセット */
    .nav-menu {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap; /* 折り返し防止 */
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        opacity: 1;
        visibility: visible;
        gap: clamp(1rem, 1.5vw, 2rem); /* 画面幅に応じてギャップも調整 */
        padding-top: 0; /* 追加: スマホ用の余白をリセット */
        padding-bottom: 0; /* 追加: スマホ用の余白をリセット */
        overflow-y: visible; /* 追加: スマホ用のスクロールをリセット */
    }
    .nav-menu li {
        width: auto;
    }
    .nav-menu a {
        font-family: var(--font-en);
        font-size: clamp(0.75rem, 1.1vw, 1.125rem); /* 画面幅に応じて自動縮小 */
        font-weight: 900;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text-main);
        padding: 0;
        white-space: nowrap; /* テキストの折り返し防止 */
    }

    .container {
        /* 右ナビゲーションのための余白をリセット */
        padding-left: 2rem;
        padding-right: 2rem; 
    }

    /* Hero（ファーストビュー）の横書き・中央配置 */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center; /* 中央配置に変更 */
        text-align: center; /* テキストも中央揃え */
        padding-top: 0;
    }
    .hero__catch-vertical {
        display: block;
        height: auto;
    }
    
    /* PCのメインコピー：ドカンと大きく・中央に */
    .hero__title {
        font-size: 4rem; /* PC版では固定の大きいサイズを適用 */
        font-weight: 900;
        letter-spacing: 0.05em;
        line-height: 1.5;
        margin-bottom: 2.5rem;
        margin-right: 0;
    }
    .hero__title .vertical-line { display: block; }
    
    .hero__subtitle {
        font-size: 1.5rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        line-height: 1.8;
        margin-right: 0;
    }
    .hero__subtitle .vertical-line { display: block; }

    /* Layout Split */
    .layout-split {
        grid-template-columns: 1fr 180px;
        gap: 6rem;
        align-items: start;
    }
    .layout-split--reverse {
        grid-template-columns: 180px 1fr;
    }
    .layout-split__vertical {
        order: 0; /* ★追加：PC版では順序を元に戻す（右側配置） */
        writing-mode: vertical-rl;
        text-orientation: mixed;
        display: block;
        height: 100%;
        min-height: 400px;
    }

    /* PCのセクション英語ラベル：巨大化 */
    .section-en-label {
        font-size: 4rem;
        margin-bottom: 3rem;
    }
    .section-en-label::after {
        width: 4rem;
        height: 6px;
    }

    /* PCの縦書き見出し：巨大化 */
    .vertical-title {
        font-size: 3rem;
        font-weight: 900;
        letter-spacing: 0.05em;
        line-height: 1.3;
        margin-right: 0;
        margin-bottom: 0;
    }
    .vertical-title .vertical-line { display: block; }
    .vertical-caption {
        font-size: 1.25rem;
        margin-right: 2rem;
    }
    .vertical-caption .vertical-line { display: block; }
    
    /* ============================================================
       ISSUES (横長レイアウトに変更)
       ============================================================ */
    #issues .layout-split--reverse {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    #issues .layout-split__vertical {
        writing-mode: horizontal-tb;
        height: auto;
        min-height: auto;
        order: -1;
        text-align: center;
        margin-bottom: 4rem;
    }

    #issues .vertical-title {
        margin-bottom: 0;
    }

    #issues .vertical-title .vertical-line { 
        display: inline-block; 
    }

    #issues .layout-split__text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #issues .section-en-label {
        order: -2;
        margin-bottom: 2rem;
    }

    #issues .section-en-label::after {
        margin-left: auto;
        margin-right: auto;
    }

    #issues .issues-list {
        flex-direction: row;
        gap: 3rem;
        width: 100%;
        margin-bottom: 4rem;
    }

    #issues .issue-item {
        flex: 1;
        text-align: left;
    }

    #issues .issues-conclusion {
        text-align: center;
        font-size: 1.125rem;
        padding-top: 3rem;
        max-width: 900px;
    }

    /* Approach Grid */
    .approach-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
        margin-top: -2rem;
    }
    .approach-num {
        font-size: 4rem;
    }

    /* PC版 ベン図のサイズを元に戻す */
    .venn-container {
        height: 400px;
        max-width: 400px;
        margin: 3rem auto 4rem;
    }
    .circle {
        width: 220px;
        height: 220px;
        font-size: 1rem;
    }
    .circle-2 { bottom: 50px; left: 0; }
    .circle-3 { bottom: 50px; right: 0; }
    .center-label {
        padding: 8px 16px;
        font-size: 0.875rem;
    }

    /* Service List */
    .service-list {
        gap: 8rem;
    }
    .service-num {
        font-size: 6rem;
    }
    .text-body p.service-subtitle {
        font-size: 1.75rem;
    }
    
    /* PC版 ボタンのスタイルを元に戻す */
    .btn {
        width: auto;
        max-width: none;
        padding: 1.2rem 4rem;
    }
    .form-group--submit {
        text-align: left;
    }

    /* Profile - PC版横並び */
    .profile-card {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 3rem;
    }
    .profile-photo__img {
        width: 220px;
        height: 220px;
    }

    /* Other Service */
    .other-service-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
    .other-service-num {
        font-size: 4rem;
    }
    .other-service-title {
        font-size: 1.75rem;
    }

    /* Footer */
    .footer__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    .footer__tagline {
        margin: 0.5rem 0 0;
    }
}