html {
    scroll-behavior: smooth;
}

.body {
    font-family: 'Zen Maru Gothic', sans-serif;
    color: #333;
    background: #FAFAF7;
    line-height: 1.8;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.75;
}

ul {
    list-style: none;
}

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

address {
    font-style: normal;
}

.wrapper {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 min(5%, 60px);
}

.pc { display: block !important; }
.sp { display: none !important; }
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ===== common heading ===== */
.common-h2 {
    font-size: 45px;
    font-weight: 700;
    color: #535A53;
    line-height: 1.4;
    margin-bottom: 8px;
}

.common-h2-en {
    font-size: 16px;
    color: #93A493;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.section-lead {
    font-size: 16px;
    color: #555;
    max-width: 640px;
}

.heading {
    margin-bottom: 56px;
}

/* ===== header ===== */
.header01 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(250, 250, 247, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #DDE6E3;
    transition: box-shadow 0.3s;
}

.header01.is-scrolled {
    box-shadow: 0 2px 16px rgba(147, 164, 147, 0.12);
}

.nav01 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 min(3%, 40px);
    height: 100px;
}

.header-left {
    display: flex;
    flex-direction: column;
}

/* .header-logo-text {
    font-size: 16px;
    font-weight: 700;
    color: #535A53;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.header-logo-sub {
    font-size: 16px;
    color: #93A493;
    letter-spacing: 0.06em;
} */

.header-logo {
    width: 250px;
}

.header-right {
    display: flex !important;
    align-items: center;
    gap: min(1.2vw, 16px);
    flex-wrap: nowrap;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

.header-li {
    position: relative;
    flex-shrink: 0;
}

.header-text1 {
    font-size: clamp(13px, 1.3vw, 16px);
    color: #535A53;
    letter-spacing: 0.04em;
    font-weight: 500;
    padding: 4px 0;
    position: relative;
}

.header-text1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #93A493;
    transition: width 0.3s;
}

.header-text1:hover::after {
    width: 100%;
}

.header-tel {
    background: #93A493;
    color: #fff;
    font-size: min(1.1vw, 13px);
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 24px;
    letter-spacing: 0.04em;
    transition: background 0.2s;
    white-space: nowrap;
}

.header-tel:hover {
    background: #7A8D7A;
    opacity: 1;
}

/* opening bar */
.header-opening-bar {
    width: 100%;
    background: #C97B3A;
    text-align: center;
    padding: 5px 16px;
    line-height: 1;
}

.header-opening-bar p {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin: 0;
}

/* hamburger */
.hamburger-btn {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.hamburger-btn span {
    display: block;
    position: absolute;
    left: 8px;
    width: 24px;
    height: 2px;
    background: #535A53;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
}

.hamburger-btn span:nth-child(1) {
    top: 12px;
}

.hamburger-btn span:nth-child(2) {
    top: 19px;
}

.hamburger-btn span:nth-child(3) {
    top: 26px;
}

.hamburger-btn.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* sp drawer */
.sp-nav {
    display: none;
    position: fixed;
    top: 98px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(250, 250, 247, 0.98);
    border-bottom: 1px solid #DDE6E3;
    z-index: 99;
    padding: 24px 20px 32px;
}

.sp-nav.is-open {
    display: block;
}

.sp-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sp-nav-li a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid #DDE6E3;
    font-size: 16px;
    color: #535A53;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.sp-nav-tel {
    display: block;
    margin-top: 20px;
    background: #93A493;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    letter-spacing: 0.06em;
}

/* ===== fv ===== */
.fv {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    /* padding-top: 98px; */
    padding-top: 124px;
    box-sizing: border-box;
}

.wave-fv-recruit {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.wave-fv-recruit svg {
    width: 100%;
    height: 64px;
    display: block;
}

/* ===== section waves ===== */
.section-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.section-wave svg {
    width: 100%;
    height: 64px;
    display: block;
}

.greeting {
    position: relative;
    overflow: hidden;
}

.hours {
    position: relative;
    overflow: hidden;
}

.feature {
    position: relative;
    overflow: hidden;
}

.overview {
    position: relative;
    overflow: hidden;
}

.fv-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #000;
}

.fv-bg-slider,
.fv-bg-slider-sp {
    height: 100%;
    background: #000;
}

.fv-bg-slider .slick-list,
.fv-bg-slider .slick-track,
.fv-bg-slider .slick-slide,
.fv-bg-slider .slick-slide > div,
.fv-bg-slider-sp .slick-list,
.fv-bg-slider-sp .slick-track,
.fv-bg-slider-sp .slick-slide,
.fv-bg-slider-sp .slick-slide > div,
.fv-bg-slide {
    height: 100%;
}

.fv-bg-slide {
    position: relative;
}

.fv-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.fv-bg-overlay {
    display: none;
}

.fv-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: calc(72px + 80px) min(5%, 60px) 80px;
    max-width: 1080px;
    margin: 0 auto;
}

.fv-content {
    max-width: 520px;
}

.fv-logo {
    display: block;
    width: 400px;
    max-width: 100%;
    height: auto;
    margin-bottom: 28px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.fv-title-block {
    margin-bottom: 32px;
}

.fv-title {
    font-size: min(4vw, 44px);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.45;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.fv-title span {
    color: #A8D4AE;
}

.fv-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 40px;
}

.fv-btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.fv-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: all 0.2s;
}

.fv-btn._primary {
    background: #93A493;
    color: #fff;
    box-shadow: 0 4px 20px rgba(147,164,147,0.4);
}

.fv-btn._primary:hover {
    background: #7A8D7A;
    transform: translateY(-2px);
    opacity: 1;
}

.fv-btn._outline {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
}

.fv-btn._outline:hover {
    background: rgba(255, 255, 255, 0.15);
    opacity: 1;
}

.fv-opening-notice {
    display: inline-block;
    font-size: min(1.6vw, 20px);
    font-weight: 700;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 12px;
    padding: 12px 28px;
    letter-spacing: 0.08em;
    line-height: 1.7;
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(4px);
}

/* ===== recruit ===== */
.recruit {
    background: #93A493;
    padding: 24px 0 88px;
    font-family: 'Zen Maru Gothic', sans-serif;
    position: relative;
}

.recruit-banner {
    display: block;
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 12px;
    padding: 28px 36px;
    cursor: pointer;
    text-align: left;
    transition: box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.recruit-banner:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.14);
}

.recruit-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.recruit-body {
    flex: 1;
}

.recruit-title {
    font-size: 24px;
    font-weight: 700;
    color: #C97B3A;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
    line-height: 1.3;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.recruit-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.recruit-cta {
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 700;
    color: #C97B3A;
    white-space: nowrap;
    letter-spacing: 0.04em;
    font-family: 'Zen Maru Gothic', sans-serif;
}

/* recruit modal */
.recruit-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(40, 45, 40, 0.5);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.recruit-modal-overlay.is-open {
    display: flex;
}

.recruit-modal {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 680px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 48px 48px 40px;
    position: relative;
}

.recruit-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 20px;
    color: #93A493;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
}

.recruit-modal-close:hover {
    color: #535A53;
}

.recruit-modal-body {
    min-height: 120px;
}

.recruit-modal-placeholder {
    color: #93A493;
    font-size: 16px;
    text-align: center;
    padding: 40px 0;
}

/* modal内コンテンツ */
.recruit-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #535A53;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #DDE6E3;
}

.recruit-modal-lead {
    font-size: 16px;
    color: #444;
    line-height: 1.9;
    margin-bottom: 28px;
}

.recruit-modal-info {
    background: #EEF2F1;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 28px;
    font-size: 16px;
    color: #555;
    line-height: 2;
}

.recruit-modal-info dt {
    font-weight: 700;
    color: #535A53;
    float: left;
    clear: left;
    width: 9em;
}

.recruit-modal-info dd {
    margin-left: 9em;
    padding-bottom: 4px;
}

.recruit-modal-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #535A53;
    margin: 28px 0 12px;
    padding-left: 10px;
    border-left: 3px solid #93A493;
}

.recruit-modal-job {
    background: #fff;
    border: 1px solid #DDE6E3;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #555;
    line-height: 2;
}

.recruit-modal-job-title {
    font-size: 16px;
    font-weight: 700;
    color: #535A53;
    margin-bottom: 10px;
}

.recruit-modal-job dt {
    font-weight: 700;
    color: #535A53;
    float: left;
    clear: left;
    width: 7em;
}

.recruit-modal-job dd {
    margin-left: 7em;
    padding-bottom: 4px;
}

.recruit-modal-apply {
    background: #fff;
    border: 1px solid #DDE6E3;
    border-radius: 8px;
    padding: 20px;
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-top: 8px;
}

/* ===== greeting ===== */
.greeting {
    padding: 100px 0 128px;
    background: #fff;
}

.greeting-inner {
    display: flex;
    align-items: center;
    gap: 72px;
}

.greeting-img-block {
    flex: 0 0 340px;
    position: relative;
}

.greeting-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.greeting-img-block::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 2px solid #D4E4D6;
    z-index: -1;
}

.greeting-body {
    flex: 1;
}

.greeting-text {
    font-size: 16px;
    color: #444;
    line-height: 2.0;
    margin-bottom: 16px;
}

.greeting-sign {
    margin-top: 32px;
    font-size: 16px;
    color: #93A493;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.greeting-sign strong {
    display: block;
    font-size: 18px;
    color: #535A53;
    font-weight: 700;
    margin-top: 4px;
}

/* ===== hours ===== */
.hours {
    padding: 100px 0 128px;
    background: #EEF2F1;
}

.hours-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.hours-block {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(147,164,147,0.08);
}

.hours-block-title {
    font-size: 18px;
    font-weight: 700;
    color: #535A53;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #DDE6E3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-icon {
    width: 36px;
    height: 36px;
    background: #DDE6E3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.hours-table th,
.hours-table td {
    padding: 10px 8px;
    text-align: center;
    border-bottom: 1px solid #E9EAED;
}

.hours-table th {
    font-weight: 700;
    color: #93A493;
    font-size: 16px;
    letter-spacing: 0.06em;
}

.hours-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #535A53;
}

.hours-table ._circle {
    color: #93A493;
    font-weight: 700;
}

.hours-table ._triangle {
    color: #B5AA7A;
}

.hours-table ._cross {
    color: #ccc;
}

.hours-note {
    margin-top: 16px;
    font-size: 16px;
    color: #777;
    line-height: 1.7;
}

.hours-note ._red {
    color: #C0392B;
}

/* access */
.access-block {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(147,164,147,0.08);
}

.access-map {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.access-info {
    padding: 28px 32px;
}

.access-item {
    display: flex;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #E9EAED;
    font-size: 16px;
}

.access-item:last-child {
    border-bottom: none;
}

.access-item dt {
    font-weight: 700;
    color: #93A493;
    min-width: 72px;
    font-size: 16px;
    letter-spacing: 0.06em;
    padding-top: 2px;
}

.access-item dd {
    color: #444;
    line-height: 1.7;
}

.access-map-link {
    display: inline-block;
    margin-top: 6px;
    font-size: 16px;
    color: #93A493;
    font-weight: 700;
    text-decoration: underline;
    letter-spacing: 0.04em;
}

.access-map-link:hover {
    color: #535A53;
    opacity: 1;
}

/* ===== menu ===== */
.menu {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('menu_bg.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(3px) brightness(1.18);
    transform: scale(1.04);
    z-index: 0;
}

.menu::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55);
    z-index: 1;
}

.menu .wrapper {
    position: relative;
    z-index: 2;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.menu-lead {
    margin-bottom: 32px;
}

.menu-lead-title {
    font-size: 18px;
    font-weight: 700;
    color: #535A53;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.menu-lead-text {
    font-size: 16px;
    color: #555;
    line-height: 1.85;
}

.menu-item {
    background: #FAFAF7;
    border: 1px solid #DDE6E3;
    border-radius: 16px;
    padding: 28px 24px;
}

.menu-item-title {
    font-size: 24px;
    font-weight: 700;
    color: #535A53;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid #DDE6E3;
    letter-spacing: 0.06em;
}

.menu-item-symptoms {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-item-symptoms li {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    padding-left: 1em;
    text-indent: -1em;
}

/* ===== feature ===== */
.feature {
    padding: 100px 0 128px;
    background: #fff;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feature-item {
    background: #FAFAF7;
    border: 1px solid #DDE6E3;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    box-shadow: 0 4px 24px rgba(147,164,147,0.07);
}

.feature-num {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    background: #93A493;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.feature-body {
    flex: 1;
}

.feature-title {
    font-size: 28px;
    font-weight: 700;
    color: #535A53;
    margin-bottom: 10px;
    line-height: 1.4;
}

.feature-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.85;
}

/* ===== overview ===== */
.overview {
    padding: 100px 0 128px;
    background: #EEF2F1;
    position: relative;
    overflow: hidden;
}


.overview .wrapper {
    position: relative;
    z-index: 2;
}

.overview-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.overview-table tr {
    border-bottom: 1px solid #DDE6E3;
}

.overview-table th {
    width: 200px;
    padding: 20px 24px;
    text-align: left;
    font-weight: 700;
    color: #93A493;
    vertical-align: top;
    background: #F8FBF8;
    font-size: 16px;
    letter-spacing: 0.04em;
}

.overview-table td {
    padding: 20px 24px;
    color: #444;
    line-height: 1.8;
    background: #FFFFFF;
}

/* ===== footer ===== */
.footer {
    background: #93A493;
    color: #FFFFFF;
    padding: 32px 0;
}

.footer-text1 {
    text-align: center;
    font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 0.08em;
}

/* page top */
.arrow-fixed {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.arrow-fixed.is-visible {
    opacity: 1;
    visibility: visible;
}

.arrow-fixed a {
    display: flex;
    width: 48px;
    height: 48px;
    background: #93A493;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(147,164,147,0.35);
    transition: background 0.2s, transform 0.2s;
}

.arrow-fixed a:hover {
    background: #7A8D7A;
    transform: translateY(-3px);
    opacity: 1;
}

.arrow-fixed a::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg) translateY(2px);
}

/* ===== media query ===== */
@media screen and (max-width: 960px) {
    .pc { display: none !important; }
    .sp { display: block !important; }

    .hamburger-btn {
        display: flex;
    }

    .nav01 {
        padding: 0 20px;
    }

    .header-right {
        display: none;
    }

    /* fv */
    .fv {
        min-height: 80vh;
    }

    .fv-inner {
        flex-direction: column;
        padding: 48px 20px 60px 20px;
        text-align: left;
        align-items: flex-start;
        min-height: 80vh;
    }

    .fv-content {
        max-width: 100%;
    }

    .fv-title {
        font-size: min(8vw, 36px);
    }

    .fv-logo {
        width: min(80vw, 400px);
        margin: 0 0 20px;
    }

    .fv-title-br {
        display: block;
        height: 0;
        overflow: hidden;
    }

    .fv-btn-group {
        justify-content: center;
    }

    .fv-img-block {
        max-width: 100%;
        width: 100%;
    }

    .fv-img-placeholder {
        height: 300px;
        border-radius: 16px 40% 16px 16px / 16px 30% 16px 16px;
    }

    /* greeting */
    .greeting {
        padding: 64px 0;
    }

    .greeting-inner {
        flex-direction: column;
        gap: 40px;
    }

    .greeting-img-block {
        flex: none;
        width: 60%;
        margin: 0 auto;
    }

    /* hours */
    .hours {
        padding: 64px 0;
    }

    .hours-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        overflow-x: auto;
    }

    .hours-table {
        font-size: 16px;
        min-width: 0;
        width: 100%;
    }

    .hours-table th,
    .hours-table td {
        padding: 8px 4px;
    }

    .hours-block {
        padding: 20px;
    }

    .access-info {
        padding: 20px;
    }

    /* feature */
    .feature {
        padding: 64px 0;
    }

    .feature-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item {
        padding: 20px;
        gap: 10px;
        flex-direction: column;
    }

    .feature-num {
        width: 40px;
        height: 40px;
        flex: 0 0 auto;
        font-size: 16px;
    }

    .feature-title {
        font-size: 24px;
    }

    .common-h2 {
        font-size: 32px;
    }

    /* recruit */
    .recruit-banner {
        padding: 20px;
    }

    .recruit-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .recruit-title {
        font-size: 18px;
    }

    .recruit-modal {
        padding: 40px 24px 32px;
    }

    /* menu */
    .menu {
        padding: 64px 0;
    }

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

    .fv-opening-notice {
        font-size: min(5vw, 20px);
    }

    /* overview */
    .overview {
        padding: 64px 0;
    }

    .overview-table th {
        width: 120px;
        font-size: 16px;
        padding: 16px;
    }

    .overview-table td {
        padding: 16px;
        font-size: 16px;
    }

    /* arrow */
    .arrow-fixed {
        bottom: 20px;
        right: 20px;
    }
}