@charset "UTF-8";

:root {
    --recruit-navy: #15344c;
    --recruit-blue: #1976a3;
    --recruit-pale: #eaf5f8;
    --recruit-orange: #e98928;
    --recruit-ink: #23313a;
}

html {
    scroll-behavior: smooth;
}

.recruit-page {
    overflow: hidden;
    color: var(--recruit-ink);
}

.recruit-inner {
    width: calc(100% - 60px);
    max-width: 1180px;
    margin: 0 auto;
    box-sizing: border-box;
}

.recruit-lead {
    padding: 100px 30px 70px;
    text-align: center;
    background: linear-gradient(135deg, #edf6f8, #fff);
}

.recruit-lead__en,
.recruit-apply__en {
    margin: 0 0 18px;
    color: var(--recruit-blue);
    font-family: var(--font-garamond);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .18em;
}

.recruit-lead h3 {
    margin: 0 0 28px;
    color: var(--recruit-navy);
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: normal;
    line-height: 1.55;
}

.recruit-lead__text {
    max-width: 1000px;
    margin: 0 auto;
    color: #62717a;
    font-size: 16px;
    line-height: 2;
    text-align: center;
}

.recruit-jump {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: calc(100% - 60px);
    max-width: 1180px;
    margin: -24px auto 80px;
    position: relative;
    z-index: 2;
}

.recruit-jump a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 150px;
    padding: 28px 70px 28px 30px;
    box-sizing: border-box;
    background: #fff;
    border-top: 4px solid var(--recruit-orange);
    color: var(--recruit-navy);
    box-shadow: 0 12px 35px rgba(21, 52, 76, .12);
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
}

.recruit-jump a:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(21, 52, 76, .18);
}

.recruit-jump__type {
    margin-bottom: 8px;
    color: var(--recruit-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
}

.recruit-jump strong {
    font-size: 21px;
    line-height: 1.5;
}

.recruit-jump__arrow {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--recruit-navy);
    color: #fff;
}

/* 仕事紹介ページへのリンク */
.recruit-work-banner {
    width: calc(100% - 60px);
    max-width: 1180px;
    margin: -22px auto 60px;
    position: relative;
    z-index: 3;
}

.recruit-work-banner a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 34px 40px;
    overflow: hidden;
    box-sizing: border-box;
    background: linear-gradient(135deg, #15344c, #1d607d);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 16px 40px rgba(21, 52, 76, .2);
    transition: transform .35s ease, box-shadow .35s ease;
}

.recruit-work-banner a::after {
    content: "";
    position: absolute;
    right: -65px;
    top: -95px;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
}

.recruit-work-banner a:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(21, 52, 76, .28);
}

.recruit-work-banner span,
.recruit-work-banner strong {
    position: relative;
    z-index: 1;
}

.recruit-work-banner small {
    display: block;
    margin-bottom: 8px;
    color: #79c9e0;
    font-size: 12px;
    letter-spacing: .15em;
}

.recruit-work-banner span {
    font-size: 22px;
    font-weight: 700;
}

.recruit-work-banner strong {
    flex-shrink: 0;
    color: var(--recruit-orange);
    font-size: 15px;
}

.recruit-job {
    padding: 90px 30px;
    scroll-margin-top: 100px;
}

.recruit-job--delivery {
    background: #fff;
}

.recruit-job--accounting {
    background: var(--recruit-pale);
}

.recruit-job__header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 38px;
    padding-bottom: 28px;
    border-bottom: 1px solid #d7e1e5;
}

.recruit-job__icon {
    display: grid;
    place-items: center;
    flex: 0 0 76px;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--recruit-navy);
    color: #fff;
    font-size: 28px;
}

.recruit-job__header span {
    color: var(--recruit-blue);
    font-family: var(--font-garamond);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
}

.recruit-job__header h3 {
    margin: 5px 0;
    color: var(--recruit-navy);
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: normal;
    line-height: 1.45;
}

.recruit-job__header p {
    margin: 0;
    color: #67757d;
}

.recruit-detail {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    margin: 0;
    border-top: 1px solid #d7e1e5;
}

.recruit-detail dt,
.recruit-detail dd {
    margin: 0;
    padding: 24px 26px;
    border-bottom: 1px solid #d7e1e5;
    box-sizing: border-box;
    line-height: 1.9;
}

.recruit-detail dt {
    background: #edf3fa;
    color: var(--recruit-navy);
    font-weight: 700;
}

.recruit-job--accounting .recruit-detail dt {
    background: #dcecf1;
}

.recruit-detail dd {
    background: rgba(255, 255, 255, .92);
    color: #536169;
}

.recruit-detail dd strong {
    color: var(--recruit-navy);
    font-size: 18px;
}

.recruit-apply {
    position: relative;
    padding: 100px 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #0c2639, #15344c 55%, #0b2233);
    color: #fff;
    text-align: center;
}

.recruit-apply h3 {
    margin: 0 0 24px;
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: normal;
    line-height: 1.55;
}

.recruit-apply>.recruit-inner>p:not(.recruit-apply__en):not(.recruit-apply__note) {
    color: rgba(255, 255, 255, .76);
    line-height: 1.9;
}

.recruit-apply__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
}

.recruit-apply__phone,
.recruit-apply__contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 78px;
    min-width: 300px;
    padding: 12px 28px;
    box-sizing: border-box;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.recruit-apply__phone {
    gap: 14px;
    background: var(--recruit-orange);
    font-size: 22px;
}

.recruit-apply__phone small {
    display: block;
    font-size: 11px;
    font-weight: normal;
    letter-spacing: .08em;
}

.recruit-apply__contact {
    gap: 25px;
    border: 1px solid rgba(255, 255, 255, .7);
}

.recruit-apply__note {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
}

@media screen and (max-width: 768px) {
    .recruit-work-banner {
        width: calc(100% - 40px);
        margin: -15px auto 45px;
    }

    .recruit-work-banner a {
        display: block;
        padding: 27px 23px;
    }

    .recruit-work-banner span {
        font-size: 18px;
        line-height: 1.6;
    }

    .recruit-work-banner strong {
        display: block;
        margin-top: 18px;
    }

    .recruit-inner,
    .recruit-jump {
        width: calc(100% - 40px);
    }

    .recruit-lead {
        padding: 75px 20px 55px;
    }

    .recruit-lead h3 {
        font-size: 30px;
    }

    .recruit-jump {
        grid-template-columns: 1fr;
        margin-top: -15px;
        margin-bottom: 55px;
    }

    .recruit-jump a {
        min-height: 125px;
        padding: 24px 65px 24px 22px;
    }

    .recruit-jump strong {
        font-size: 18px;
    }

    .recruit-job {
        padding: 65px 20px;
    }

    .recruit-job__header {
        align-items: flex-start;
        gap: 15px;
    }

    .recruit-job__icon {
        flex-basis: 56px;
        width: 56px;
        height: 56px;
        font-size: 21px;
    }

    .recruit-job__header h3 {
        font-size: 25px;
    }

    .recruit-detail {
        display: block;
        border-top: 0;
    }

    .recruit-detail dt,
    .recruit-detail dd {
        display: block;
        width: 100%;
        padding: 16px;
    }

    .recruit-detail dt {
        border-bottom: 0;
    }

    .recruit-apply {
        padding: 75px 20px;
    }

    .recruit-apply h3 {
        font-size: 29px;
    }

    .recruit-apply h3 br {
        display: none;
    }

    .recruit-apply__buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .recruit-apply__phone,
    .recruit-apply__contact {
        width: 100%;
        min-width: 0;
    }
}

.recruit-work-banner {
    position: relative;
    z-index: 100;
}

.recruit-work-banner a {
    position: relative;
    z-index: 101;
    pointer-events: auto;
}

.recruit-work-banner {
    position: relative;
    z-index: 100;
}

.recruit-work-banner a {
    position: relative;
    z-index: 101;
    pointer-events: auto;
    cursor: pointer;
}

.recruit-work-banner {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 100;
}

.recruit-work-banner a {
    position: relative;
    z-index: 101;
    pointer-events: auto;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .recruit-lead__text {
        font-size: 15px;
        line-height: 1.9;
        text-align: left;
    }

    .recruit-lead__text br {
        display: none;
    }
}

.recruit-note {
    margin: 10px 0 0;
    color: #c62828;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
}

.recruit-overtime {
    color: var(--recruit-navy);
    font-weight: 700;
}

.recruit-overtime {
    display: inline-block;
    margin-top: 6px;
    padding: 2px 8px;
    background: rgba(233, 137, 40, .14);
    color: var(--recruit-navy);
    font-weight: 700;
}

.recruit-note {
    display: block;
    margin-top: 10px;
    color: #c62828;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
}

/* ========================================
   FOOTER
========================================= */

.site-footer {
    --footer-navy: #15344c;
    --footer-navy-dark: #15344c;
    --footer-orange: #ed8a24;
    --footer-white: #ffffff;
    --footer-text: rgba(255, 255, 255, 0.72);
    --footer-muted: rgba(255, 255, 255, 0.46);

    position: relative;
    width: 100%;
    color: var(--footer-white);
    background: var(--footer-navy);
    border-top: 5px solid var(--footer-orange);
}

.site-footer *,
.site-footer *::before,
.site-footer *::after {
    box-sizing: border-box;
}


/* ========================================
   フッター全体
========================================= */

.site-footer .site-footer__inner {
    width: min(calc(100% - 80px), 1440px);
    margin-inline: auto;
    display: grid;
    grid-template-columns:
        minmax(280px, 1.2fr) minmax(190px, 0.8fr) minmax(190px, 0.8fr) minmax(210px, 0.9fr);
    align-items: start;
    gap: clamp(40px, 5vw, 85px);
    padding-top: 50px;
    padding-bottom: 55px;
}


/* ========================================
   会社情報
========================================= */

.site-footer .site-footer__company {
    min-width: 0;
}

.site-footer .site-footer__logo {
    display: inline-block;
    margin-bottom: 25px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.site-footer .site-footer__logo::after {
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 12px;
    background: var(--footer-orange);
    content: "";
}

.site-footer .site-footer__address {
    margin: 0;
    color: var(--footer-text);
    font-size: 13px;
    font-style: normal;
    line-height: 1.9;
    letter-spacing: 0.02em;
}

.site-footer .site-footer__business {
    max-width: 330px;
    margin: 26px 0 0;
}

.site-footer .site-footer__business>div {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 15px;
    padding-block: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.site-footer .site-footer__business dt,
.site-footer .site-footer__business dd {
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
}

.site-footer .site-footer__business dt {
    color: var(--footer-muted);
}

.site-footer .site-footer__business dd {
    color: var(--footer-text);
}


/* ========================================
   SNS
========================================= */

.site-footer .site-footer__sns {
    margin-top: 34px;
}

.site-footer .site-footer__sns-title {
    margin: 0 0 15px;
    color: rgba(255, 255, 255, 0.54);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.site-footer .site-footer__sns-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer .site-footer__sns-link {
    min-width: 125px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 14px;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    text-decoration: none;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.site-footer .site-footer__sns-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.site-footer .site-footer__sns-link .sns-fill {
    fill: currentColor;
    stroke: none;
}

.site-footer .site-footer__sns-link span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.site-footer .site-footer__sns-link:hover {
    color: var(--footer-navy);
    background: var(--footer-orange);
    border-color: var(--footer-orange);
    transform: translateY(-2px);
}


/* ========================================
   フッターメニュー
========================================= */

.site-footer .footer-nav__column {
    min-width: 0;
    width: 100%;
}

.site-footer .footer-nav__title {
    position: relative;
    margin: 0 0 18px;
    padding-bottom: 16px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.site-footer .footer-nav__title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--footer-orange);
    content: "";
}


/* 古いflex指定を確実に解除 */

.site-footer .footer-nav__list {
    width: 100%;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.site-footer .footer-nav__list li {
    width: 100%;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.site-footer .footer-nav__list li+li {
    margin-top: 14px !important;
}

.site-footer .footer-nav__list a {
    position: relative;
    width: auto;
    max-width: 100%;
    display: inline-block !important;
    padding: 0 0 0 15px !important;
    color: var(--footer-text);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.02em;
    text-decoration: none;

    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: anywhere;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.site-footer .footer-nav__list a::before {
    position: absolute;
    top: 0.82em;
    left: 0;
    width: 6px;
    height: 1px;
    background: var(--footer-orange);
    content: "";
    opacity: 0.85;
    transition:
        width 0.3s ease,
        opacity 0.3s ease;
}

.site-footer .footer-nav__list a:hover {
    color: var(--footer-orange);
    transform: translateX(4px);
}

.site-footer .footer-nav__list a:hover::before {
    width: 9px;
    opacity: 1;
}


/* ========================================
   最下部
========================================= */

.site-footer .site-footer__bottom {
    background: var(--footer-navy-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .site-footer__bottom-inner {
    width: min(calc(100% - 80px), 1440px);
    min-height: 74px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-footer .site-footer__bottom-message {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    letter-spacing: 0.06em;
}

.site-footer .site-footer__copyright {
    color: rgba(255, 255, 255, 0.42);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    letter-spacing: 0.1em;
}


/* ========================================
   ノートPC
========================================= */

@media screen and (max-width: 1200px) {

    .site-footer .site-footer__inner {
        width: min(calc(100% - 50px), 1440px);
        grid-template-columns:
            minmax(240px, 1.05fr) minmax(160px, 0.75fr) minmax(170px, 0.8fr) minmax(190px, 0.85fr);
        gap: 30px;
    }

    .site-footer .footer-nav__list a {
        font-size: 12px;
    }

    .site-footer .site-footer__bottom-inner {
        width: min(calc(100% - 50px), 1440px);
    }

}


/* ========================================
   タブレット
========================================= */

@media screen and (max-width: 960px) {

    .site-footer .site-footer__inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .site-footer .site-footer__company {
        grid-column: 1 / -1;
        padding-bottom: 45px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    .site-footer .site-footer__business {
        max-width: 430px;
    }

}


/* ========================================
   スマートフォン
========================================= */

@media screen and (max-width: 767px) {

    .site-footer {
        border-top-width: 4px;
    }

    .site-footer .site-footer__inner {
        width: calc(100% - 40px);
        display: block;
        padding-block: 50px 38px;
    }

    .site-footer .site-footer__company {
        padding-bottom: 38px;
    }

    .site-footer .site-footer__logo {
        font-size: 16px;
    }

    .site-footer .site-footer__address {
        font-size: 12px;
    }

    .site-footer .site-footer__business {
        max-width: none;
    }

    .site-footer .site-footer__sns-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer .site-footer__sns-link {
        min-width: 0;
        width: 100%;
    }

    .site-footer .footer-nav__column {
        padding-block: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    .site-footer .footer-nav__title {
        margin-bottom: 15px;
        padding-bottom: 12px;
        font-size: 14px;
    }

    .site-footer .footer-nav__list {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 5px 15px;
    }

    .site-footer .footer-nav__list li+li {
        margin-top: 0 !important;
    }

    .site-footer .footer-nav__list a {
        width: 100%;
        display: block !important;
        padding-block: 7px !important;
        padding-right: 5px !important;
        font-size: 12px;
    }

    .site-footer .site-footer__bottom-inner {
        width: calc(100% - 40px);
        min-height: auto;
        display: block;
        padding-block: 22px 25px;
        text-align: center;
    }

    .site-footer .site-footer__bottom-message {
        margin-bottom: 14px;
    }

    .site-footer .site-footer__copyright {
        display: block;
    }

}


/* ========================================
   小さいスマートフォン
========================================= */

@media screen and (max-width: 390px) {

    .site-footer .site-footer__inner,
    .site-footer .site-footer__bottom-inner {
        width: calc(100% - 30px);
    }

    .site-footer .site-footer__sns-list,
    .site-footer .footer-nav__list {
        grid-template-columns: 1fr !important;
    }

}

/* ========================================
   大矢荘平商店らしいフッター装飾
========================================= */

.site-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(120deg,
            #102b3a 0%,
            #102b3a 67%,
            #0e2634 100%);
    border-top: 5px solid #ed8a24;
}

/* 大きなOYA背景文字 */
.site-footer::before {
    position: absolute;
    top: 40px;
    right: -35px;
    z-index: -1;
    content: "OYA";
    color: rgba(255, 255, 255, 0.025);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(180px, 22vw, 390px);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: -0.08em;
    pointer-events: none;
}

/* 右側の斜線 */
.site-footer::after {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 34%;
    height: 100%;
    content: "";
    background:
        repeating-linear-gradient(-45deg,
            transparent 0,
            transparent 17px,
            rgba(255, 255, 255, 0.025) 17px,
            rgba(255, 255, 255, 0.025) 19px);
    mask-image:
        linear-gradient(to left,
            rgba(0, 0, 0, 0.85),
            transparent);
    pointer-events: none;
}


/* ========================================
   会社名まわり
========================================= */

.site-footer .site-footer__logo {
    position: relative;
    margin-bottom: 27px;
    padding-left: 18px;
}

/* 上のコンタクトセクションと同じ縦線 */
.site-footer .site-footer__logo::before {
    position: absolute;
    top: 1px;
    bottom: 1px;
    left: 0;
    width: 3px;
    background: #ed8a24;
    content: "";
}

.site-footer .site-footer__logo::after {
    display: none;
}

.site-footer .site-footer__logo {
    color: #fff;
    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        "Noto Serif JP",
        serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
}


/* ========================================
   見出し
========================================= */

.site-footer .footer-nav__title {
    position: relative;
    padding-left: 16px;
    padding-bottom: 0;
    margin-bottom: 28px;
    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        "Noto Serif JP",
        serif;
    font-size: 16px;
    letter-spacing: 0.05em;
}

.site-footer .footer-nav__title::before {
    position: absolute;
    top: 0.18em;
    bottom: 0.18em;
    left: 0;
    width: 3px;
    background: #ed8a24;
    content: "";
}

.site-footer .footer-nav__title::after {
    display: none;
}


/* ========================================
   通常メニュー
========================================= */

.site-footer .footer-nav__list>li+li {
    margin-top: 16px !important;
}

.site-footer .footer-nav__list>li>a {
    position: relative;
    padding-left: 16px !important;
}

.site-footer .footer-nav__list>li>a::before {
    top: 0.82em;
    width: 6px;
    height: 1px;
    background: #ed8a24;
}


/* ========================================
   採用情報の下層「仕事の流れ」
========================================= */

.site-footer .footer-nav__sublist {
    display: block !important;
    margin: 10px 0 0 16px !important;
    padding: 0 0 0 14px !important;
    list-style: none !important;
    border-left: 1px solid rgba(237, 138, 36, 0.5);
}

.site-footer .footer-nav__sublist li {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.site-footer .footer-nav__sublist a {
    position: relative;
    display: inline-block !important;
    padding: 3px 0 3px 16px !important;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    line-height: 1.7;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.site-footer .footer-nav__sublist a::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 1px;
    background: rgba(237, 138, 36, 0.75);
    content: "";
}

.site-footer .footer-nav__sublist a:hover {
    color: #ed8a24;
    transform: translateX(3px);
}


/* ========================================
   営業時間・定休日
========================================= */

.site-footer .site-footer__business>div {
    border-bottom:
        1px solid rgba(237, 138, 36, 0.18);
}

.site-footer .site-footer__business dt {
    color: rgba(255, 255, 255, 0.48);
}

.site-footer .site-footer__business dd {
    color: rgba(255, 255, 255, 0.8);
}


/* ========================================
   SNS
========================================= */

.site-footer .site-footer__sns-title {
    color: #ed8a24;
}

.site-footer .site-footer__sns-link {
    border-color: rgba(237, 138, 36, 0.42);
}

.site-footer .site-footer__sns-link:hover {
    color: #102b3a;
    background: #ed8a24;
    border-color: #ed8a24;
}


/* ========================================
   コピーライト部分
========================================= */

.site-footer .site-footer__bottom {
    position: relative;
    z-index: 1;
    background: rgba(7, 25, 35, 0.72);
    border-top: 1px solid rgba(237, 138, 36, 0.2);
}


/* ========================================
   スマートフォン
========================================= */

@media screen and (max-width: 767px) {

    .site-footer::before {
        top: 65px;
        right: -35px;
        font-size: 190px;
    }

    .site-footer::after {
        width: 75%;
        opacity: 0.7;
    }

    .site-footer .footer-nav__title {
        padding-left: 14px;
        font-size: 15px;
    }

    .site-footer .footer-nav__sublist {
        margin-left: 15px !important;
    }

    .site-footer .footer-nav__sublist a {
        white-space: normal;
    }

}

/* ==================================================
   大矢荘平商店 PC HEADER
   common.cssの一番下に追加
================================================== */

header.site-header {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    z-index: 1000;
    width: 100%;
    height: 94px;
    margin: 0;
    padding: 0;
    background: rgba(247, 244, 236, 0.98);
    border-top: 4px solid #ed8a24;
    border-bottom: 1px solid rgba(18, 52, 73, 0.12);
    box-shadow: none;
}

.site-header *,
.site-header *::before,
.site-header *::after {
    box-sizing: border-box;
}

.site-header__inner {
    width: min(calc(100% - 48px), 1540px);
    height: 90px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}


/* ==================================================
   ロゴ
================================================== */

.site-header__logo {
    width: clamp(210px, 18vw, 300px);
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding-right: clamp(20px, 2.5vw, 42px);
}

.site-header__logo a {
    display: block;
    width: 100%;
    line-height: 0;
}

.site-header__logo img {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    max-height: 68px;
    object-fit: contain;
    object-position: left center;
}


/* ==================================================
   PCグローバルナビ
================================================== */

.pc-global-nav {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: stretch;
}

.pc-global-nav__list {
    width: 100%;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: stretch;
    justify-content: flex-end;
    gap: 0;
    list-style: none !important;
}

.pc-global-nav__item {
    position: relative;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: stretch;
}

.pc-global-nav__item>a,
.pc-global-nav__toggle {
    position: relative;
    min-height: 90px;
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    padding: 0 clamp(14px, 1.35vw, 24px);
    color: #17364f;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-family:
        "Yu Gothic",
        "YuGothic",
        "Hiragino Kaku Gothic ProN",
        sans-serif;
    font-size: clamp(12px, 0.86vw, 14px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.025em;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    appearance: none;
}

.pc-global-nav__item>a::after,
.pc-global-nav__toggle::after {
    position: absolute;
    right: 20px;
    bottom: 18px;
    left: 20px;
    height: 2px;
    background: #ed8a24;
    content: "";
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.pc-global-nav__item>a:hover,
.pc-global-nav__toggle:hover,
.pc-global-nav__item:focus-within>a,
.pc-global-nav__item:focus-within>.pc-global-nav__toggle {
    color: #ed8a24;
}

.pc-global-nav__item>a:hover::after,
.pc-global-nav__toggle:hover::after,
.pc-global-nav__item:focus-within>a::after,
.pc-global-nav__item:focus-within>.pc-global-nav__toggle::after {
    transform: scaleX(1);
}

.pc-global-nav__arrow {
    display: inline-block;
    color: #ed8a24;
    font-size: 9px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.pc-global-nav__item--dropdown:hover .pc-global-nav__arrow,
.pc-global-nav__item--dropdown:focus-within .pc-global-nav__arrow {
    transform: rotate(180deg);
}


/* ==================================================
   ドロップダウン
================================================== */

.pc-global-nav__dropdown {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    z-index: 1100;
    width: 260px;
    padding: 10px;
    background: #fff;
    border-top: 3px solid #ed8a24;
    box-shadow: 0 18px 40px rgba(16, 43, 58, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 12px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.pc-global-nav__item--dropdown:hover .pc-global-nav__dropdown,
.pc-global-nav__item--dropdown:focus-within .pc-global-nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.pc-global-nav__dropdown a {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px 14px;
    color: #17364f;
    background: #fff;
    border-bottom: 1px solid #ece8de;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        padding-left 0.25s ease;
}

.pc-global-nav__dropdown a:last-child {
    border-bottom: 0;
}

.pc-global-nav__dropdown a>span {
    min-width: 21px;
    color: #ed8a24;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 10px;
    letter-spacing: 0.05em;
}

.pc-global-nav__dropdown a:hover {
    color: #ed8a24;
    background: #f7f4ec;
    padding-left: 19px;
}

.pc-global-nav__dropdown-sub {
    padding-left: 31px !important;
    color: rgba(23, 54, 79, 0.72) !important;
    font-size: 12px !important;
}


/* ==================================================
   SNS・お問い合わせ
================================================== */

.site-header__actions {
    flex: 0 0 auto;
    display: flex;
    align-items: stretch;
    margin-left: clamp(5px, 1vw, 16px);
}

.site-header__sns {
    width: clamp(48px, 4.2vw, 64px);
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #17364f;
    background: transparent;
    border-left: 1px solid rgba(23, 54, 79, 0.11);
    text-decoration: none;
    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.site-header__sns i {
    font-size: 17px;
}

.site-header__sns span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.site-header__sns:hover {
    color: #ed8a24;
    background: rgba(237, 138, 36, 0.07);
}

.site-header__contact {
    position: relative;
    width: clamp(150px, 11.5vw, 190px);
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: 0;
    padding: 15px 45px 15px 22px;
    color: #fff;
    background: #ed8a24;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.04em;
    transition: background-color 0.3s ease;
}

.site-header__contact>span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.75);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.site-header__contact i {
    position: absolute;
    top: 50%;
    right: 18px;
    font-size: 13px;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.site-header__contact:hover {
    color: #fff;
    background: #17364f;
}

.site-header__contact:hover i {
    transform: translate(4px, -50%);
}


/* ==================================================
   1440px以下
================================================== */

@media screen and (max-width: 1440px) {

    .site-header__inner {
        width: calc(100% - 28px);
    }

    .site-header__logo {
        width: 225px;
        padding-right: 18px;
    }

    .pc-global-nav__item>a,
    .pc-global-nav__toggle {
        padding-inline: 13px;
        font-size: 12px;
    }

    .site-header__sns {
        width: 48px;
    }

    .site-header__sns span {
        display: none;
    }

    .site-header__contact {
        width: 155px;
        padding-left: 18px;
        font-size: 13px;
    }

}


/* ==================================================
   1200px以下
   SNSはアイコンだけ
================================================== */

@media screen and (max-width: 1200px) {

    .site-header__logo {
        width: 190px;
    }

    .pc-global-nav__item>a,
    .pc-global-nav__toggle {
        padding-inline: 10px;
        font-size: 11px;
    }

    .site-header__sns {
        width: 42px;
    }

    .site-header__contact {
        width: 135px;
        padding-right: 34px;
        padding-left: 13px;
        font-size: 11px;
    }

    .site-header__contact>span {
        font-size: 7px;
    }

}


/* ==================================================
   SP切り替え
   現在のSPメニューはそのまま使用
================================================== */

@media screen and (max-width: 900px) {

    header.site-header {
        display: none !important;
    }

}