/* --- 変数設定 --- */
:root {
    --hr-blue: #007AFF;
    --hr-dark: #1a1a1a;
    --hr-bg-light: #f8faff;

    --food-dark: #2c2c2c;
    --food-gold: #c5a059;

    --white: #ffffff;
    --text-gray: #555;
}

/* --- ベース設定 --- */
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--hr-dark);
    margin: 0;
    line-height: 1.6;
}



.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5vw;
}

/* --- タイトル・共通装飾 --- */
.about-tag {
    display: block;
    text-align: center;
    font-family: 'Montserrat';
    color: var(--hr-blue);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-main-title, .about-sub-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 50px;
}

.about-main-title { font-size: 2.5rem; }
.about-sub-title { font-size: 2.2rem; }


/* ============================
   About Main Visual（Funeral風）
============================ */
.about-main-visual {
    display: flex;
    min-height: 85vh;
    padding-top: 105px;
    background: #fff;
    overflow: hidden;
}

.about-content-left {
    flex: 1;
    padding: 80px 5% 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-category-group {
    margin-bottom: 30px;
}

.brand-tag {
    font-family: 'Montserrat', sans-serif;
    color: var(--hr-blue);
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
}

.sub-category {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-top: 5px;
}

.about-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.4;
    color: var(--hr-dark);
    margin-bottom: 30px;
}

.about-title .phrase {
    display: block;
}

.highlight-blue {
    color: var(--hr-blue);
}

.about-lead {
    font-size: 1.05rem;
    line-height: 2;
    color: #555;
    max-width: 600px;
}

/* 右側ビジュアル */
.about-content-right {
    flex: 1;
    position: relative;
}

.about-visual-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 40px 0 0 40px;
}

/* --- Mission & Vision Grid --- */
.m-v-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.m-v-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--food-gold);
    text-align: center;
}

.m-v-item:hover {
    transform: translateY(-5px);
}

.m-v-header {
    margin-bottom: 20px;
}

.m-v-en {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--food-gold);
    letter-spacing: 0.2em;
    margin-bottom: 5px;
}

.m-v-jp {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--food-dark);
    margin: 0;
}

.m-v-content {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
    font-weight: 500;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .m-v-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .m-v-item {
        padding: 30px 20px;
    }
}

/* Responsive */
@media screen and (max-width: 991px) {
    .about-main-visual {
        flex-direction: column;
        padding-top: 80px;
    }

    .about-content-left {
        padding: 60px 5%;
        order: 2;
    }

    .about-content-right {
        height: 40vh;
        order: 1;
    }

    .about-visual-img {
        border-radius: 0;
    }

    .about-title {
        font-size: 2rem;
    }
}


/* --- 1. 経営理念セクション (Management Concept) --- */
.about-hero {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    padding: 120px 0 80px;
}

.concept-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 122, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.concept-lead {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 700;
    line-height: 2;
    text-align: center;
    margin-bottom: 50px;
    word-break: keep-all;
}

.agenda-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.agenda-item {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #eee;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.agenda-num {
    color: var(--hr-blue);
    font-family: 'Montserrat';
    font-weight: 900;
    font-size: 1.2rem;
    margin-right: 20px;
}

/* --- 2. 会社概要セクション (Company Profile) --- */
.profile-section { 
    padding: 100px 0; 
    background: #fff; 
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.profile-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 24px;
}

.label {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--hr-dark);
    margin-bottom: 10px;
}

.label small {
    font-family: 'Montserrat';
    font-size: 0.65rem;
    color: var(--hr-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.value {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.group-title {
    font-size: 1.5rem;
    margin: 80px 0 30px;
    border-left: 5px solid var(--hr-blue);
    padding-left: 15px;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* PCは3列 */
    gap: 20px;
}

.office-card {
    padding: 35px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.office-card h4 { color: var(--hr-blue); margin: 0 0 15px; }
.office-card .tel { display: block; margin-top: 15px; font-weight: 700; color: var(--hr-blue); }

/* --- 3. 事業内容セクション (Business Activity) --- */
.business-section { 
    padding: 100px 0; 
    background: var(--hr-bg-light);
    clear: both; /* 前の要素との干渉（埋まり）を防止 */
}

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

.business-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 28px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.4s;
}

.business-item:hover { transform: translateY(-10px); border-color: var(--hr-blue); }

/* 日本語見出しと英語を改行して表示 */
.biz-header {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--hr-dark);
    margin-bottom: 20px;
}

.biz-header small {
    display: block; /* 強制改行 */
    font-family: 'Montserrat';
    font-weight: 800;
    color: var(--hr-blue);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
}

.business-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.license {
    display: block;
    font-size: 0.75rem;
    color: #888;
    background: #f4f4f4;
    padding: 6px 12px;
    border-radius: 6px;
    width: fit-content;
}

/* --- 4. 沿革セクション (History) --- */
.history-section { padding: 120px 0; background: #fff; }

.timeline {
    position: relative;
    padding-left: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #eee;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -57px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--hr-blue);
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px var(--hr-blue);
}

.time-date {
    font-family: 'Montserrat';
    font-weight: 700;
    color: var(--hr-blue);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.time-content { font-weight: 600; line-height: 1.8; }

/* --- レスポンシブ (スマホ対応) --- */
@media (max-width: 991px) {
    .profile-grid, .office-grid, .agenda-grid { grid-template-columns: 1fr; }
    .concept-card { padding: 40px 20px; }
    .about-main-title { font-size: 2rem; }
    .business-grid { grid-template-columns: 1fr; }
}

/* 関連会社セクション全体のコンテナ */
.affiliate-section {
    padding: 80px 0;
    background: #fff;
}

/* カード全体の囲い */
.affiliate-card {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 20px;
}

/* 会社名ヘッダー */
.biz-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.biz-header small {
    font-size: 0.8rem;
    color: #007bff; /* 画像の青色。ゴールドにするなら #c5a059 */
    margin-top: 5px;
}

/* 所在地・連絡先の横並びグリッド */
.location-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.location-card {
    flex: 1;
    background: #f8f9fa; /* 薄いグレーの背景 */
    padding: 30px;
    border-radius: 20px; /* 画像のような大きな角丸 */
}

.location-card .label {
    display: block;
    font-weight: bold;
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #333;
}

.location-card .label small {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    color: #007bff;
    margin-left: 5px;
    text-transform: uppercase;
}

.location-card .value {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
}

/* 事業内容エリア */
.affiliate-business {
    padding-left: 20px;
}

.group-title {
    font-size: 1.3rem;
    border-left: 5px solid #007bff; /* 青いアクセント線 */
    padding-left: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.group-title small {
    font-size: 0.9rem;
    color: #666;
    font-weight: normal;
}

/* リストスタイル */
.business-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.business-list li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.business-list li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #ccc;
}
/* 右側のリンクエリア */
.affiliate-link-area {
    flex: 0 0 280px; /* ボタンの幅を固定して右側に置く */
    text-align: left;
    margin-bottom: 12px; /* リストの最終行と高さを合わせる調整 */
}

/* ボタン（Official Website） */
.site-link {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: 0.3s;
}

.site-link:hover {
    background: #0056b3;
    transform: translateY(-2px);
}


/* スマホ対応 */
@media screen and (max-width: 768px) {
    .affiliate-details {
        flex-direction: column;
        gap: 40px;
        padding: 30px 20px;
    }
    .affiliate-business {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #eee;
        padding-top: 30px;
    }
    .profile-grid {
        flex-direction: column;
    }
}

/* サイトへのリンクボタン */
.site-link {
    display: inline-block;
    padding: 12px 25px;
    background: var(--hr-blue);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat';
    font-size: 0.85rem;
    font-weight: 700;
    transition: 0.3s;
}

.site-link:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 122, 255, 0.2);
}

.back-to-top {
    text-align: center;
    margin-top: 30px;
}

.btn-back {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 40px;
    border: 1px solid var(--hr-blue);
    color: var(--hr-blue);
    background: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 122, 255, 0.12);
}

.btn-back:hover {
    background: var(--hr-blue);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 122, 255, 0.25);
}



/* --- Footer (フッター) --- */
.main-footer {
    background: #1a1c20; /* 深いダークグレー */
    color: #fff;
    padding: 80px 0 30px;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: 'Montserrat';
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
}

.footer-logo small {
    display: block;
    font-size: 0.75rem;
    font-family: 'Noto Sans JP';
    font-weight: 500;
    color: var(--hr-blue); /* ロゴのサブテキストにアクセント */
    margin-top: 5px;
}

.footer-address {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.footer-contact span {
    display: block;
    font-family: 'Montserrat';
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
}

/* フッターナビゲーション */
.footer-nav {
    display: flex;
    justify-content: flex-end;
    gap: 80px;
}

.nav-group h4 {
    font-family: 'Montserrat';
    font-size: 1rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}

.nav-group h4 small {
    display: block;
    font-size: 0.65rem;
    color: var(--hr-blue);
    margin-top: 5px;
}

.nav-group ul {
    list-style: none;
    padding: 0;
}

.nav-group ul li {
    margin-bottom: 12px;
}

.nav-group ul li a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-group ul li a:hover {
    color: var(--hr-blue);
    padding-left: 5px;
}

/* ミッション・ビジョン ボックス */
.breakfast-mission-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background: var(--food-dark); /* 深みのある色 */
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
}

.mission-item .label {
    display: block;
    color: var(--food-gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.mission-item p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}



/* クレド：Special Thanks */
.thanks-box {
    margin-top: 60px;
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 100px; /* 楕円形の優しいフォルム */
    border: 1px solid var(--food-gold);
}

.thanks-flex {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-weight: 700;
    color: var(--food-dark);
}
/* --- 経営理念セクションのブラッシュアップ --- */
.philosophy-box {
    text-align: center;
    margin: 60px 0;
}

.philosophy-catch {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

.mvv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.mvv-item {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
    border-top: 4px solid #c5a059;
}

.mvv-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    color: #c5a059;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

/* --- クレド（行動指針） --- */
/* --- クレド（行動指針） --- */
.credo-section {
    padding: 100px 0;
    background-color: #ebeae3; /* 落ち着いた背景色 */
}

.credo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 基本2カラム */
    gap: 30px;
    margin-top: 50px;
}

/* 各項目の基本スタイル */
.credo-item {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

/* Values（項目3）を2カラム分使って目立たせる場合、または横並びを維持 */
.credo-item.full-width {
    grid-column: span 2;
    border-top: 4px solid #c5a059;
    margin-top: 30px;
}
.credo-type {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: #c5a059;
    margin-bottom: 25px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    display: inline-block;
}

/* Special Thanks タイトル内のサブテキスト */
/* 3つを横並びにするコンテナ */

.credo-en {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #c5a059; /* STCのブランドカラー */
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.credo-jp {
    font-size: 1.1rem;
    font-weight: 500;
    color: #666;
    margin: 10px 0 0 0; /* 英語との間に10pxの隙間 */
    letter-spacing: 0.1em;
}

/* 各感謝のカードスタイル */
/* 各感謝のカードスタイル：枠と影を消してスッキリさせる */
.thanks-card {
    flex: 1;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;           /* 四方の枠を消す */
    padding: 0;                         /* 余計な余白をリセット */
    text-align: center;
}

.target-label {
    display: inline-block;              /* 下線の長さを文字に合わせる */
    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #c5a059;                     /* 他の見出しと同じ金色 */
    letter-spacing: 0.1em;
    padding-bottom: 8px;                /* 文字と線の間隔 */
    border-bottom: 2px solid #f0f0f0;   /* ★他と同じ薄いグレーの下線 */
    margin-bottom: 15px;
}

/* 3つを綺麗に横に並べる */
.thanks-targets {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 40px;                   /* 上のヘッダーとの間隔 */
}

.thanks-targets span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

/* ホバー時に少し浮く演出だけ残す（不要なら削除してください） */
.thanks-card:hover {
    transform: translateY(-3px);
}

/* Mission/Visionの強調テキスト */
.main-phrase p {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.8;
    color: #333;
}

/* Valuesのリスト装飾 */
.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.values-list li span {
    background: #c5a059;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    min-width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-top: 2px;
}

/* Special Thanks の装飾 */
.credo-type.highlight {
    color: #d1b17a;
}

.thanks-message {
    font-weight: 700;
    color: #c5a059;
    margin-bottom: 20px;
    font-size: 1.1rem;
}


/* --- 事業部別指針セクション --- */
.division-mv-section {
    padding: 100px 0;
    background: #fff;
}

.division-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.division-card {
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.division-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border-color: #c5a059;
}

.div-header {
    background: #f8f9fa;
    padding: 20px 30px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.div-body {
    padding: 30px;
}

.div-item {
    margin-bottom: 20px;
}

.div-item:last-child {
    margin-bottom: 0;
}

.div-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #c5a059;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    border: 1px solid #c5a059;
    padding: 2px 8px;
    border-radius: 4px;
}

.div-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 5px 0 0 0;
}


/* --- about.html 専用アンカーナビ --- */
.about-anchor-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0; /* glass-navの高さに合わせて調整してください */
    z-index: 99;
}

.about-anchor-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.about-anchor-nav ul li a {
    display: block;
    padding: 15px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--hr-dark);
    text-decoration: none;
    transition: 0.3s;
    position: relative;
}

.about-anchor-nav ul li a:hover {
    color: var(--hr-blue);
}

/* ホバー時の下線装飾 */
.about-anchor-nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--hr-blue);
    transition: 0.3s;
    transform: translateX(-50%);
}

.about-anchor-nav ul li a:hover::after {
    width: 60%;
}

/* スムーズスクロールと停止位置の調整 */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px; /* ナビの高さ分、止まる位置を下げます */
}


/* コピーライト */
.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.copyright {
    font-size: 0.75rem;
    color: #666;
    font-family: 'Montserrat', sans-serif;
}

/* スマホ対応 */
@media screen and (max-width: 991px) {

    .profile-grid,
    .office-grid,
    .agenda-grid,
    .business-grid,
    .division-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-nav {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 40px;
    }

    .credo-grid {
        grid-template-columns: 1fr;
    }

    .credo-item.full-width {
        grid-column: span 1;
    }

    .credo-item {
        padding: 40px 30px;
    }

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

    .about-anchor-nav ul {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        padding: 0 5vw;
    }
}