/* --- 基本設定 --- */
:root {
    --color-main: #000233;
    --color-accent: #f25d5d;
    --color-bg: #f7fcff;
    --color-text: #000233;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* /header共通部分 */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    box-sizing: border-box;
    background: transparent; /* ←初期は透明 */
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

/* スクロール後：白背景に切り替え */
header.scrolled {
    background: #f7fcff;
}

.header-contact-btn {
    display: none;
}

.logo-box img {
    display: block; /* 余計な隙間防止 */
}
/* PCナビゲーション (デフォルト非表示) */
.nav-pc {
    display: none;
}

.nav-pc ul {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.nav-pc a {
    color: #000233;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
}

.nav-pc a:hover {
    color: #0072e3;
}

/* ハンバーガーメニューアイコン */
.menu-icon {
    /* position: fixed は不要 (headerがfixedのため) */
    width: 40px;
    height: 30px;
    z-index: 2001;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    height: 4px;
    background: #003366;
    margin: 4.5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-icon.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-icon.open span:nth-child(2) {
    opacity: 0;
}

.menu-icon.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* === オーバーレイメニュー === */

.overlay-menu.open {
    top: 0; /* 開いたときに画面内に */
    opacity: 1;
}

/* 閉じるボタン */
.overlay-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 38px;
    color: #004b9b;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2100;
    transition: 0.3s;
}

.overlay-close:hover {
    transform: scale(1.1);
}

/* メニュー内容 */
.overlay-content {
    display: flex;
    flex-direction: column; /* スマホでは縦並び */
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 950px;
    height: 80%; /* メニュー全体の高さに対する割合 */
    gap: 30px; /* スマホでの隙間 */
}

.overlay-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center; /* スマホでは中央揃え */
}

.overlay-nav li {
    margin-bottom: 28px;
}

.overlay-nav .menu-item {
    font-family: "Roboto", sans-serif; /*セクションの英語*/
    display: block;
    font-size: 2rem; /* スマホでのサイズ */
    letter-spacing: 3.6px;
    font-weight: 800;
    color: #000233;
}

.overlay-nav .menu-item2 {
    display: block;
    font-size: 1.2rem; /* スマホでのサイズ */
    font-weight: 600;
    letter-spacing: 2px;
    color: #000233;
}

.overlay-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-contact-btn {
    /* オーバーレイ内のボタン */
    display: inline-block;
    background: linear-gradient(to right, #ff5f4d, #ff7a73);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    border-radius: 40px;
    padding: 18px 56px;
    font-size: 1.6rem; /* スマホ・タブレット共通サイズ */
    transition: 0.3s ease;
}

.overlay-contact-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* //header共通部分 */

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #000233;
    background-color: #f7fcff;
    color: var(--color-text);
    margin: 0;
}
html {
    background-color: #f7fcff; /*全体の背景*/
    font-family: "Zen Kaku Gothic New", sans-serif; /*日本語*/
    font-size: 12px;
}

/* セクションの英語 */
h1 {
    font-family: "Roboto", sans-serif; /*セクションの英語*/
    font-weight: 900;
    color: #000233;
    line-height: 1;
}
/* //セクションの英語 */

/* セクションの日本語 */
h2 {
    font-weight: 700;
    color: #000233;
    line-height: 1.2;
}

h3 {
    font-weight: 900;
    color: #000233;
    line-height: 85px;
}
/* //セクションの日本語 */
p {
    color: #000233;
    font-weight: 500;
    letter-spacing: 0.15em;
}

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

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* --- メッセージ --- */

.message-container {
    width: 700px;
    margin: 0 auto;
}

.message-image {
    margin-bottom: 25px;
}

.message-image img {
    /* 【スマホ・タブレット】幅100% + アスペクト比3:2 */
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 8px;
}

.message-headline {
    font-size: 24px;
    line-height: 1.2;
    color: var(--color-text);
}

.message-text {
    margin-top: -20px;
}

.message-text p {
    font-size: 10px;
    margin-top: 0;
}

.message-owner {
    margin-bottom: 25px;
}

/* --- HISTORY --- */
.history {
    background-color: var(--color-bg);
}
.history-title {
    color: var(--color-text);
    padding: 80px 30px 20px;
}
.history-title-inner {
    margin: 0 auto;
}
.history-title h2 {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-size: 36px;
    margin: 0;
}
.history-title p {
    font-weight: bold;
    margin-top: -10px;
    font-size: 20px;
}
.history-body {
    padding: 0 60px 60px;
}
.history-timeline {
    margin: 0 auto;
    /* border-left: 2px solid #00689B; */ /* ← 削除（またはコメントアウト） */
    padding-left: 0px;
    position: relative; /* ← これを追加 */
}
.history-timeline::before {
    content: "";
    position: absolute;
    background-color: #00689b;
    width: 2px;
    left: 0;
    top: 40px;
    bottom: 45px;
    z-index: 1; /* ← これを追加 */
}
.history-timeline li {
    position: relative;
    background-color: #cdecfc;
    border-radius: 8px;
    padding: 25px 25px 25px 40px;
    margin-bottom: 20px;
}
.history-timeline li:last-child {
    margin-bottom: 0;
}
.history-timeline li::before {
    content: "";
    position: absolute;
    top: 40px;
    left: -12px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #0068b6;
}
.history-timeline time {
    font-weight: bold;
    font-size: 18px;
    color: var(--color-main);
}
.history-timeline .month {
    font-size: 16px;
    margin-left: 8px;
}
.history-timeline p {
    margin: 5px 0 0;
}

/* //セクションの日本語 */
@media (max-width: 768px) and (min-width: 466px) {
    /* header共通 */
    header {
        padding-right: 6vw;
        padding-left: 6vw;
        padding-top: 2vw;
    }
    .overlay-content {
        flex-direction: column;
        gap: 30px;
    }

    .overlay-nav ul {
        display: block;
    }

    .overlay-nav li {
        text-align: start;
    }

    .overlay-menu {
        position: fixed;
        top: -100%; /* 初期状態は画面外 */
        left: 0;
        width: 100%;
        height: 100vh; /* スマホでは全画面 */
        background-image: url(../../images/SP_humberger_back.svg);
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 10px;
        box-sizing: border-box;
        opacity: 0;
        transition: all 0.6s ease;
        z-index: 2000;
        display: flex;
        align-items: center; /* スマホでは中央揃え */
    }

    .logo-box img {
        height: 8vw;
        display: block; /* 余計な隙間防止 */
    }
    /*// header共通 */
}

@media (max-width: 465px) {
    /* header共通 */
    header {
        padding-right: 6vw;
        padding-left: 6vw;
        padding-top: 2vw;
    }
    .overlay-content {
        flex-direction: column;
        gap: 30px;
    }

    .overlay-nav ul {
        display: block;
    }

    .overlay-nav li {
        text-align: start;
    }

    .overlay-menu {
        position: fixed;
        top: -100%; /* 初期状態は画面外 */
        left: 0;
        width: 100%;
        height: 100vh; /* スマホでは全画面 */
        background-image: url(../../images/SP_humberger_back3.svg);
        background-repeat: no-repeat;
        background-size: cover;
        box-sizing: border-box;
        opacity: 0;
        transition: all 0.6s ease;
        z-index: 2000;
        display: flex;
        align-items: center; /* スマホでは中央揃え */
    }

    .logo-box img {
        height: 8vw;
        display: block; /* 余計な隙間防止 */
    }
    /*// header共通 */
}

@media screen and (max-width: 768px) {
    /* footer共通部分 */
    /* フッター（モバイル） */
    .footer-mobile {
        background: transparent url("../../images/footer_back.svg") no-repeat
            center;
        background-size: cover;

        padding: 80px 15vw 24px;
        text-align: left;
        color: #000233;
    }

    .footer-mobile .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-mobile .footer-nav li {
        margin-bottom: 5.6vw;
    }

    .footer-mobile .footer-nav a {
        font-family: "Roboto", sans-serif; /*セクションの英語*/
        text-decoration: none;
        font-size: clamp(20px, 6vw, 28px);
        color: #000233;
        letter-spacing: 3px;
        font-weight: 900;
    }

    .footer-mobile .footer-nav span {
        display: block;
        font-weight: 700;
        font-size: clamp(10px, 3vw, 14px);
        letter-spacing: 2px;
        opacity: 0.8;
    }

    .footer-mobile .footer-copy {
        font-family: "Roboto", sans-serif; /*セクションの英語*/
        font-size: clamp(10px, 2.5vw, 14px);
        font-weight: 500;
        letter-spacing: 2px;
        opacity: 0.8;
        margin-top: 40px;
        text-align: center;
    }

    .footer-pc {
        display: none;
    }
    /* //footer共通部分 */

    /* 共通部分 */
    .head {
        max-width: 100%;
        background-repeat: no-repeat;
        background-image: url(../../images/kasou_top_back_sp.svg);
    }

    .page {
        padding-top: 23vw;
        max-width: 85%;
        margin: 0 auto;
    }
    .page_subtitle p {
        font-size: clamp(10px, 2.5vw, 14px);
        margin-top: 3vw;
    }

    /* セクションの英語 */
    h1 {
        font-size: 10vw;
        letter-spacing: 0.06em;
    }
    /* //セクションの英語 */

    /* セクションの日本語 */
    h2 {
        font-size: 5vw;
        letter-spacing: 0.15em;
    }
    /* //セクションの日本語 */

    /* //共通部分 */
    h3 {
        font-size: clamp(24px, 6.1vw, 36px);
        line-height: 30px;
        letter-spacing: 0.1em;
    }
    .message {
        width: 85%;
        margin: 0 auto;
    }
    .message-header {
        margin-top: 22vw;
    }

    .message-text {
        margin-top: 40px;
    }
    .message-text p {
        margin-top: 20px;
        font-size: 1.4rem;
    }

    .message-owner {
        font-size: 1.2rem;
        padding-top: 10px;
    }

    .overlay-menu * {
        line-height: 1.15;
    }

    html {
        font-size: 10px;
    }
}
/* //セクションの日本語 */
/* //共通部分 */

/* --- タブレット (768px以上) --- */

@media (max-width: 1024px) and (min-width: 769px) {
    /*/header共通部分 */
    /* ヘッダーのお問い合わせボタン (タブレットでは非表示のまま) */
    header {
        padding-right: 4vw;
        padding-left: 4vw;
        padding-top: 2vw;
    }
    .header-contact-btn {
        display: none;
    }
    .logo-box img {
        height: 7vw;
        display: block; /* 余計な隙間防止 */
    }
    .overlay-menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background-image: url(../../images/TB_humberger_back.svg);
        background-repeat: no-repeat;

        background-size: 100% auto;
        background-position: center top;

        border-radius: 10px;
        box-sizing: border-box;
        opacity: 0;
        transition: all 0.6s ease;
        z-index: 2000;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding-top: 80px;
        padding-bottom: 101px;
        overflow-y: auto;
    }

    .overlay-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        width: 90%; /* 幅を少し可変に */
        margin: 0 auto;
        padding: 4vw 5vw; /* 画面幅に応じて余白を調整 */
        gap: 5vw; /* 文字とボタンの間隔を相対値で */
    }

    .overlay-nav ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2vw 4vw; /* カラム間の隙間も相対値に */
        text-align: left;
    }

    .overlay-nav .menu-item {
        font-size: clamp(1.4rem, 1.8vw, 2.2rem); /* ← 可変フォント */
        letter-spacing: 0.2vw;
    }

    .overlay-nav .menu-item2 {
        font-size: clamp(1rem, 1.2vw, 1.6rem);
    }

    .overlay-right {
        flex: 0 0 auto;
        align-self: flex-end;
        margin-right: 4vw;
    }

    .overlay-contact-btn {
        font-size: clamp(1.2rem, 1.5vw, 1.8rem); /* ← ボタン文字も可変 */
        padding: 1.2em 3em;
    }
    /* //header共通部分 */

    /* footer共通部分 */
    /* モバイル用のフッターは非表示 */
    .footer-mobile {
        display: none;
    }

    .footer-pc {
        display: block;
        padding: 80px 7.6vw 20px 7.6vw;
        color: #000233;
    }

    .footer-inner {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 60px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .footer-left {
        flex: 1;
    }

    .footer-menu {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 30px 80px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-menu a {
        font-family: "Roboto", sans-serif; /*セクションの英語*/
        text-decoration: none;
        font-size: 1.8rem;
        font-weight: 900;
        letter-spacing: 3px;
        color: #000233;
    }

    .footer-menu span {
        letter-spacing: 3px;
        font-size: 1.2rem;
        font-weight: 700;
        margin-top: 3px;
    }

    .footer-right {
        flex: 1;
        text-align: left;
        background: url("../../images/logo_lightbule.png") no-repeat right
            bottom;
        background-size: contain;
        padding-left: 40px;
    }

    .footer-right h2 {
        font-size: 3.6rem;
        font-weight: 900;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .footer-text {
        font-size: 1.2rem;
        line-height: 1.8;
        font-weight: 700;
        margin-bottom: 30px;
    }

    /* フッターのお問い合わせボタン */
    .footer-btn {
        display: inline-block;
        background: linear-gradient(90deg, #ff5f4d, #ff7a73);
        color: #fff;
        font-size: 1.4rem;
        font-weight: 500;
        text-decoration: none;
        padding: 24px 60px;
        border-radius: 100px;
        transition: all 0.3s ease;
        letter-spacing: 3px;
    }

    .footer-btn:hover {
        transform: translateY(-2px);
    }

    .footer-copy {
        text-align: center;
        font-weight: 500;
        margin-top: 60px;
        font-size: 1.4rem;
        opacity: 0.8;
    }

    .footer-menu_top li {
        margin-top: 20px;
    }
    .footer-menu_news li {
        margin-top: 20px;
    }

    /* //footer共通部分 */
    /* 共通部分 */

    .head {
        max-width: 100%;
        min-width: 100%;
        background-repeat: no-repeat;
        background-image: url(../../images/kasou_top_back_tb.svg);
        background-size: contain;
    }

    .page {
        max-width: 74%;
        padding-top: 16vw;
        margin: 0 auto;
    }

    .page-title {
        margin-left: -5%;
    }

    /* セクション */
    h1 {
        font-size: 7.3vw;
        letter-spacing: 0.1em;
    }

    h2 {
        font-size: 2.6vw;
        letter-spacing: 0.1em;
    }

    h3 {
        letter-spacing: 0.15em;
    }

    .page_subtitle p {
        font-size: clamp(10px, 1.8vw, 14px);
        margin-top: 3vw;
    }
    /* //セクション */
    /* //共通部分 */

    .message {
        width: 75%;
        margin: 0 auto;
    }

    /* ▼▼▼ これが重要！ ▼▼▼ */
    .message-header {
        margin-top: 23vw;
    }
    /* ▲▲▲ ここまで ▲▲▲ */

    .message-text {
        margin-top: 40px;
    }
    .message-text p {
        margin-top: 20px;
        font-size: 1.4rem;
    }
    .message-headline {
        font-size: 3.6rem;
        line-height: 46px;
    }

    .message-owner {
        font-size: 1.6rem;
        padding-top: 10px;
    }

    /* ( .message-image img はスマホのスタイルが継承されます ) */

    .history-title {
        padding: 80px 60px 40px;
    }
    .history-title h2 {
        font-family: "Roboto", sans-serif;
        font-weight: 900;
        font-size: 56px;
        margin: 0;
    }
    .history-title p {
        font-weight: bold;
        margin-top: -10px;
        font-size: 20px;
    }
    .history-body {
        padding: 0 100px 80px;
    }

    .history-timeline li::before {
        content: "";
        position: absolute;
        top: 40px;
        left: -12px;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        background-color: #0068b6;
    }

    .history-timeline p {
        font-size: 1.6rem;
    }
}

/* --- PC (1024px以上) --- */
@media (min-width: 1161px) {
    .header-contact-btn {
        padding: 24px 56px;
    }
}
@media (max-width: 1160px) and (min-width: 1060px) {
    .header-contact-btn {
        padding: 20px 40px;
    }
}

@media (max-width: 1060px) and (min-width: 1025px) {
    .header-contact-btn {
        padding: 20px 30px;
    }
}
@media (min-width: 1025px) {
    /* header共通部分 */
    header {
        padding-right: 2vw;
        padding-left: 2vw;
    }

    .header-contact-btn {
        display: inline-block;
        background: linear-gradient(to right, #ff5f4d, #ff7a73);
        color: #fff;
        font-weight: 500;
        text-decoration: none;
        border-radius: 100px;
        font-size: clamp(12px, 1vw, 18px);
        letter-spacing: 4px;
        transition: 0.3s ease;
        order: 2;
    }

    .menu-icon {
        display: none;
    }

    .overlay-menu {
        display: none !important;
    }

    .nav-pc {
        display: block;
        order: 1;
        font-size: clamp(12px, 1vw, 18px);
        margin-left: auto;
        margin-right: 20px;
        letter-spacing: 3px;
    }
    .logo-box img {
        height: 5vw;
        display: block; /* 余計な隙間防止 */
    }

    /* //header共通部分 */

    /* footer共通部分 */
    /* モバイル用のフッターは非表示 */
    .footer-mobile {
        display: none;
    }

    /* PC用のフッター */
    .footer-pc {
        display: block;
        padding: 80px 8% 20px 8%;
        color: #000233;
    }

    .footer-inner {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 60px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .footer-left {
        flex: 1;
    }

    .footer-menu_top li {
        margin-top: 20px;
    }
    .footer-menu_news li {
        margin-top: 20px;
    }
    .footer-menu {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 30px 80px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-menu a {
        font-family: "Roboto", sans-serif; /*セクションの英語*/
        text-decoration: none;
        font-size: 2.4rem;
        letter-spacing: 3.6px;
        font-weight: 900;
        color: #000233;
    }

    .footer-menu span {
        font-size: 1.6rem;
        font-weight: 700;
        letter-spacing: 2.4px;
        opacity: 0.8;
        margin-top: 3px;
    }

    .footer-right {
        flex: 1;
        text-align: left;
        background: url("../../images/logo_lightbule.png") no-repeat right
            bottom;
        background-size: contain;
        padding-left: 40px;
    }

    .footer-right h2 {
        font-size: 4.8rem;
        font-weight: 900;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .footer-text {
        font-size: 1.6rem;
        line-height: 1.8;
        font-weight: 700;
        margin-bottom: 40px;
    }

    .footer-btn {
        display: inline-block;
        background: linear-gradient(90deg, #ff5f4d, #ff7a73);
        color: #fff;
        font-size: 1.6rem;
        font-weight: 500;
        text-decoration: none;
        padding: 24px 60px;
        border-radius: 100px;
        letter-spacing: 4px;
        transition: all 0.3s ease;
    }

    .footer-btn:hover {
        transform: translateY(-2px);
    }

    .footer-copy {
        font-weight: 500;
        text-align: center;
        margin-top: 60px;
        font-size: 1.6rem;
        opacity: 0.8;
    }

    /* //footer共通部分 */

    /* 共通部分 */
    .head {
        background-image: url(../../images/kasou_top_back_pc.svg);
        background-repeat: no-repeat;
        background-size: contain;
    }

    h1 {
        font-size: 8.3vw;
        letter-spacing: 0.1em;
    }

    h2 {
        font-size: 3.3vw;
        letter-spacing: 0.1em;
    }
    h3 {
        letter-spacing: 0.1em;
    }

    .page {
        padding-top: 20%;
        max-width: 75%;
        margin: 0 auto;
    }

    .page-title {
        margin-left: -5%;
    }

    .page_subtitle p {
        font-size: 1.38vw;
        margin-top: 2.8vw;
    }

    /* //共通部分 */

    .message {
        max-width: 65%;
        margin: 0 auto;
        margin-top: 29vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* 【修正】PCだけ元のレイアウトに戻す */
    .message-header {
        width: 100%;
        display: flex;
        align-items: center;
    }

    .catch-copy {
        display: flex;
        flex-direction: column;
    }

    .message-image img {
        margin-bottom: 0; /* 縦積みのマージンをリセット */
        width: 100%;
        /* flex-shrink: 0; */ /* ← 削除（またはコメントアウト） */
        /* flex-basis: 45%;    ← 新しく追加（例: 45%） */
    }
    /* ( .message-headline はスマホのスタイルが継承されます ) */

    .message-headline {
        width: 120%;
        /* font-size: 4.4rem;  */
        margin-left: 40px; /* ← 古い指定を削除
        /* ↓↓ 画面幅に合わせて滑らかにサイズが変わる指定 ↓↓ */
        font-size: clamp(30px, 3.8vw, 64px);
    }

    .message-text p {
        padding-top: 50px;
        font-size: 1.8rem;
    }
    .message-owner {
        font-size: 1.6rem;
        padding-top: 30px;
        padding-left: 40px;
    }
    .history-title {
        padding: 100px 100px 40px;
    }
    .history-body {
        padding: 0 180px 80px;
    }
    .history-title h2 {
        font-family: "Roboto", sans-serif;
        font-weight: 900;
        font-size: 72px;
        margin: 0;
    }
    .history-title p {
        font-weight: bold;
        margin-top: -10px;
        font-size: 24px;
    }

    .history-timeline li {
        display: flex;
        align-items: center;
    }
    .history-timeline time {
        flex: 0 0 100px;
    }
    .history-timeline time {
        font-weight: bold;
        font-size: 20px;
        color: var(--color-main);
    }
    .history-timeline li::before {
        content: "";
        position: absolute;
        top: 24px;
        left: -12px;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        background-color: #0068b6;
    }

    .history-timeline .month {
        font-size: 18px;
        margin-left: 8px;
    }

    .history-timeline p {
        font-size: 1.6rem;
        margin: 0;
    }
}
