section.menu {
    background: #D6F2FC;
    padding-top: clamp(14px, 1.97vw, 27px);
    padding-bottom: clamp(40px, 5.85vw, 80px);
}

.menu-Box {
    width: min(1166px, calc(100% - clamp(60px, 14.65vw, 200px)));
    margin: auto;
    background: rgba(251, 251, 251, 0.5);
    border-radius: 10px;
}

.breadcrumbBox {
    width: min(1166px, calc(100% - clamp(60px, 14.65vw, 200px)));
    margin: auto;
}

.menu-container {
    width: clamp(420px, 68vw, 805px);
    margin: auto;
    padding: clamp(20px, 2.93vw, 40px) 0;
}

.menu-title {
    font-family: "Zen Maru Gothic", sans-serif;
    text-align: center;
    font-size: clamp(22px, 2.93vw, 40px);
    font-weight: bold;
    margin-bottom: clamp(20px, 3.51vw, 48px);
    color: #504947;
}

.company {
    background: #FBFBFB;
    padding: clamp(25px, 3.66vw, 50px) 0;
    border-radius: clamp(5px, 0.73vw, 10px);
}

.company-inner {
    width: min(700px, calc(100% - 40px));
    margin: auto;
}

.company-title {
    font-family: "Zen Maru Gothic", sans-serif;
    text-align: center;
    font-size: clamp(18px, 2.34vw, 32px);
    color: #28529E;
    margin-bottom: clamp(22px, 3.15vw, 43px);
    font-weight: bold;
}

.company-table {
    display: flex;
    flex-direction: column;
}

.company-row {
    display: grid;
    grid-template-columns: clamp(120px, 13.18vw, 180px) 1fr;
    padding: clamp(8px, 1.1vw, 15px) 0;
    line-height: 2.0;
    font-size: clamp(13px, 1.17vw, 16px);
}

.company-head {
    font-family: "Zen Maru Gothic", sans-serif;
    position: relative;
    font-weight: bold;
    color: #504947;
    padding-left: clamp(2px, 0.29vw, 4px);
}

.company-head::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: clamp(-15px, -1.1vw, -8px);
    width: clamp(110px, 12.44vw, 170px);
    height: clamp(2px, 0.22vw, 3px);
    background: #004CD64D;
}

.company-data {
    position: relative;
    color: #504947;
    font-weight: 500;
    padding-left: clamp(10px, 1.46vw, 20px);
}

.company-data::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: clamp(-14px, -1.02vw, -8px);
    width: 100%;
    height: 1px;
    background: #28529E;
}

.company-data ul {
    margin: 0;
    padding-left: clamp(10px, 1.46vw, 20px);
    list-style: disc;
}

.history {
    background: #FBFBFB;
    padding: clamp(25px, 3.66vw, 50px) 0;
    margin-top: clamp(30px, 4.61vw, 63px);
    border-radius: clamp(5px, 0.73vw, 10px);
}

.history-inner {
    width: min(700px, calc(100% - 40px));
    margin: auto;
}

.history-title {
    font-family: "Zen Maru Gothic", sans-serif;
    text-align: center;
    font-size: clamp(18px, 2.34vw, 32px);
    color: #28529E;
    margin-bottom: clamp(23px, 3.29vw, 45px);
    font-weight: bold;
}

.history-list {
    display: flex;
    flex-direction: column;
}

.history-row {
    display: grid;
    grid-template-columns: clamp(90px, 10.24vw, 140px) 1fr;
    align-items: start;
    padding: clamp(8px, 0.95vw, 13px) 0 clamp(10px, 1.24vw, 17px);
    position: relative;
    line-height: 2.0;
    font-size: clamp(13px, 1.17vw, 16px);
}

.history-row::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 1px dotted #28529E;
}

.history-year {
    font-weight: bold;
    color: #28529E;
}

.history-text {
    color: #504947;
}

.pc-none {
    display: none;
}

@media (max-width: 768px) {
    .menu-Box {
        width: calc(100% - 20px);
        border-radius: 8px;
    }

    .breadcrumbBox {
        width: calc(100% - 20px);
    }

    .menu-container {
        width: 100%;
        padding: 20px 15px 30px;
    }

    .menu-title {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .company-title {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .company-row {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 0 25px 0;
    }

    .company-head::after {
        width: 80px;
        height: 3px;
        bottom: -10px;
    }

    .company-data::after {
        height: 1px;
        bottom: -10px;
    }

    .company-head {
        font-size: 16px;
    }

    .company-data {
        font-size: 16px;
        line-height: 1.6;
        padding-left: 4px;
    }

    .company-data ul {
        padding-left: 0;
        list-style: none;
    }

    .history-title {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .history-row {
        grid-template-columns: 1fr;
    }

    .history-year {
        font-size: 16px;
    }

    .history-text {
        font-size: 16px;
    }

    .pc-none {
        display: block;
    }
}