@charset "UTF-8";

:root {
    --about-navy: #15344c;
    --about-blue: #1976a3;
    --about-orange: #e98928;
    --about-ink: #26343c;
    --about-muted: #68747a;
    --about-ivory: #f5f2eb;
    --about-paper: #fbfaf7;
    --about-line: #d8d5ce;
}

.about-page,
.about-page * {
    box-sizing: border-box;
}

.about-page {
    overflow: hidden;
    color: var(--about-ink);
    background: var(--about-paper);
}

.about-inner {
    width: min(1160px, calc(100% - 60px));
    margin: 0 auto;
}

.about-en {
    display: block;
    margin: 0 0 16px;
    color: var(--about-blue);
    font-family: var(--font-garamond);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .2em;
}

.about-heading {
    margin: 0;
    color: var(--about-navy);
    font-family: var(--font-serif);
    font-size: clamp(30px, 3.2vw, 43px);
    font-weight: normal;
    line-height: 1.55;
}

/* 導入：商店らしい落ち着いた誌面構成 */
.about-hero {
    padding: 105px 30px 120px;
    background: var(--about-ivory);
}

.about-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: clamp(55px, 7vw, 105px);
    align-items: center;
}

.about-hero__copy {
    position: relative;
    z-index: 2;
}

.about-hero__copy::before {
    content: "";
    display: block;
    width: 58px;
    height: 2px;
    margin-bottom: 30px;
    background: var(--about-orange);
}

.about-hero__copy h2 {
    margin: 0 0 28px;
    color: var(--about-navy);
    font-family: var(--font-serif);
    font-size: clamp(43px, 4.6vw, 66px);
    font-weight: normal;
    line-height: 1.43;
    letter-spacing: .03em;
}

.about-hero__lead {
    margin: 0 0 27px;
    color: var(--about-navy);
    font-family: var(--font-serif);
    font-size: 22px;
    line-height: 1.8;
}

.about-hero__copy>p:not(.about-hero__lead) {
    margin: 0;
    color: var(--about-muted);
    font-size: 16px;
    line-height: 2.1;
}

.about-hero__photo {
    position: relative;
    margin: 0;
}

.about-hero__photo::after {
    content: "明治42年創業";
    position: absolute;
    right: -24px;
    bottom: -34px;
    padding: 22px 30px;
    background: var(--about-navy);
    color: #fff;
    font-family: var(--font-serif);
    font-size: 19px;
    letter-spacing: .08em;
}

.about-hero__photo img {
    display: block;
    width: 100%;
    height: 535px;
    object-fit: cover;
}

/* 歴史 */
.about-story {
    position: relative;
    padding: 120px 30px;
    background: #fff;
}

.about-story::before {
    content: "1909";
    position: absolute;
    top: 20px;
    right: 5vw;
    color: rgba(21, 52, 76, .035);
    font-family: var(--font-garamond);
    font-size: clamp(110px, 18vw, 270px);
    line-height: 1;
    pointer-events: none;
}

.about-story__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: clamp(55px, 8vw, 120px);
}

.about-story__title {
    padding-top: 8px;
}

.about-story__title .about-heading {
    font-size: 34px;
}

.about-story__body {
    padding-left: clamp(30px, 5vw, 70px);
    border-left: 1px solid var(--about-line);
}

.about-story__body>p {
    margin: 0 0 20px;
    color: var(--about-muted);
    font-size: 16px;
    line-height: 2.15;
}

.about-story__body strong {
    display: block;
    margin-bottom: 25px;
    color: var(--about-navy);
    font-family: var(--font-serif);
    font-size: clamp(24px, 2.5vw, 34px);
    font-weight: normal;
    line-height: 1.7;
}

.about-story__note {
    color: #9a4c35 !important;
    font-size: 12px !important;
}

/* 仕事：カードではなく横長の罫線構成 */
.about-work {
    padding: 115px 30px;
    background: var(--about-ivory);
}

.about-work__head {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 55px;
}

.about-work__head>p {
    margin: 0;
    color: var(--about-muted);
    line-height: 2;
}

.about-work__list {
    border-top: 1px solid var(--about-line);
}

.about-work__item {
    display: grid;
    grid-template-columns: 90px 230px minmax(0, 1fr);
    gap: 30px;
    align-items: center;
    padding: 34px 8px;
    border-bottom: 1px solid var(--about-line);
    transition: padding-left .35s ease, background-color .35s ease;
}

.about-work__item:hover {
    padding-left: 22px;
    background: rgba(255, 255, 255, .55);
}

.about-work__item>span {
    color: var(--about-orange);
    font-family: var(--font-garamond);
    font-size: 16px;
    letter-spacing: .12em;
}

.about-work__item h3 {
    margin: 0;
    color: var(--about-navy);
    font-family: var(--font-serif);
    font-size: 25px;
    font-weight: normal;
}

.about-work__item p {
    margin: 0;
    color: var(--about-muted);
    line-height: 1.95;
}

/* 大切にしていること */
.about-values {
    padding: 120px 30px;
    background: var(--about-navy);
    color: #fff;
}

.about-values .about-en {
    color: #79c9e0;
}

.about-values .about-heading {
    color: #fff;
}

.about-values__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.about-values__statement {
    max-width: 500px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    line-height: 2;
}

.about-values__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.about-values__item {
    min-height: 270px;
    padding: 42px 34px;
    border-right: 1px solid rgba(255, 255, 255, .2);
}

.about-values__item:last-child {
    border-right: 0;
}

.about-values__item>span {
    display: block;
    margin-bottom: 28px;
    color: var(--about-orange);
    font-family: var(--font-garamond);
    font-size: 14px;
}

.about-values__item h3 {
    margin: 0 0 17px;
    font-family: var(--font-serif);
    font-size: 23px;
    font-weight: normal;
}

.about-values__item p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
    line-height: 1.9;
}

/* 代表挨拶 */
.about-message {
    padding: 120px 30px;
    background: var(--about-paper);
}

.about-message__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(60px, 8vw, 120px);
    align-items: center;
}

.about-message__photo {
    position: relative;
    margin: 0;
}

.about-message__photo::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 58%;
    height: 58%;
    border-top: 2px solid var(--about-orange);
    border-left: 2px solid var(--about-orange);
}

.about-message__photo img {
    position: relative;
    display: block;
    width: 100%;
    height: 570px;
    object-fit: cover;
}

.about-message__copy>p:not(.sig) {
    margin: 0 0 19px;
    color: var(--about-muted);
    line-height: 2.05;
}

.about-message__copy .about-heading {
    margin-bottom: 33px;
}

.sig {
    display: block;
    margin: 34px 0 0;
    color: var(--about-navy);
    text-align: right;
    font-weight: 700;
    line-height: 1.9;
}

/* 会社概要への導線 */
.about-company {
    padding: 0 30px 100px;
    background: var(--about-paper);
}

.about-company__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 38px 0;
    border-top: 1px solid var(--about-line);
    border-bottom: 1px solid var(--about-line);
    color: var(--about-navy);
    text-decoration: none;
}

.about-company__link small {
    display: block;
    margin-bottom: 7px;
    color: var(--about-blue);
    font-family: var(--font-garamond);
    font-weight: 700;
    letter-spacing: .17em;
}

.about-company__link strong {
    font-family: var(--font-serif);
    font-size: 27px;
    font-weight: normal;
}

.about-company__link>span {
    display: grid;
    place-items: center;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--about-navy);
    color: #fff;
    transition: transform .3s ease, background-color .3s ease;
}

.about-company__link:hover>span {
    transform: translateX(7px);
    background: var(--about-blue);
}

/* 締め */
.about-cta {
    position: relative;
    padding: 110px 30px;
    overflow: hidden;
    background: #eee9df;
    text-align: center;
}

.about-cta::before,
.about-cta::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(21, 52, 76, .09);
    border-radius: 50%;
}

.about-cta::before {
    top: -180px;
    right: -120px;
    width: 420px;
    height: 420px;
}

.about-cta::after {
    bottom: -160px;
    left: -100px;
    width: 340px;
    height: 340px;
}

.about-cta__inner {
    position: relative;
    z-index: 1;
}

.about-cta h2 {
    margin: 0 0 22px;
    color: var(--about-navy);
    font-family: var(--font-serif);
    font-size: clamp(38px, 4.2vw, 58px);
    font-weight: normal;
    line-height: 1.5;
}

.about-cta p {
    margin: 0;
    color: var(--about-muted);
    line-height: 2;
}

.about-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

.about-cta__buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 245px;
    min-height: 62px;
    padding: 14px 22px;
    border: 1px solid var(--about-navy);
    color: var(--about-navy);
    text-decoration: none;
    font-weight: 700;
    transition: transform .3s ease, color .3s ease, background-color .3s ease;
}

.about-cta__buttons a:hover {
    transform: translateY(-4px);
    background: var(--about-navy);
    color: #fff;
}

.about-cta__buttons .about-cta__main {
    border-color: var(--about-orange);
    background: var(--about-orange);
    color: #fff;
}

/* 大画面でもノートPC版の密度を維持 */
@media screen and (min-width: 1600px) {
    .about-inner {
        max-width: 1240px;
    }

    .about-hero__photo img {
        height: 575px;
    }
}

/* タブレット・小型ノートPC */
@media screen and (max-width: 1050px) {

    .about-hero__grid,
    .about-message__grid {
        gap: 48px;
    }

    .about-work__head {
        grid-template-columns: 250px minmax(0, 1fr);
        gap: 45px;
    }

    .about-work__item {
        grid-template-columns: 60px 190px minmax(0, 1fr);
        gap: 22px;
    }

    .about-values__item {
        padding: 35px 24px;
    }
}

/* スマートフォン */
@media screen and (max-width: 768px) {
    .about-inner {
        width: 100%;
    }

    .about-hero,
    .about-story,
    .about-work,
    .about-values,
    .about-message,
    .about-company,
    .about-cta {
        padding-right: 20px;
        padding-left: 20px;
    }

    .about-hero,
    .about-story,
    .about-work,
    .about-values,
    .about-message,
    .about-cta {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .about-hero__grid,
    .about-story__grid,
    .about-message__grid,
    .about-work__head {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .about-hero__copy h2 {
        font-size: 37px;
    }

    .about-hero__lead {
        font-size: 19px;
    }

    .about-hero__photo {
        margin-right: 12px;
        margin-bottom: 27px;
    }

    .about-hero__photo img {
        height: 340px;
    }

    .about-hero__photo::after {
        right: -12px;
        bottom: -27px;
        padding: 16px 20px;
        font-size: 15px;
    }

    .about-story::before {
        top: 40px;
        font-size: 120px;
    }

    .about-story__body {
        padding: 27px 0 0;
        border-top: 1px solid var(--about-line);
        border-left: 0;
    }

    .about-work__head {
        margin-bottom: 35px;
    }

    .about-work__item {
        grid-template-columns: 45px minmax(0, 1fr);
        gap: 12px 17px;
        padding: 27px 3px;
    }

    .about-work__item h3 {
        font-size: 22px;
    }

    .about-work__item p {
        grid-column: 1 / -1;
        padding-left: 62px;
    }

    .about-work__item:hover {
        padding-left: 3px;
    }

    .about-values__top {
        display: block;
        margin-bottom: 38px;
    }

    .about-values__statement {
        margin-top: 22px;
    }

    .about-values__list {
        grid-template-columns: 1fr;
    }

    .about-values__item {
        min-height: 0;
        padding: 32px 20px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .2);
    }

    .about-values__item:last-child {
        border-bottom: 0;
    }

    .about-message__photo {
        margin: 20px 0 0 12px;
    }

    .about-message__photo::before {
        top: -12px;
        left: -12px;
    }

    .about-message__photo img {
        height: 390px;
    }

    .about-message__copy .about-heading br {
        display: none;
    }

    .about-company {
        padding-top: 0;
        padding-bottom: 62px;
    }

    .about-company__link strong {
        font-size: 23px;
    }

    .about-company__link>span {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
    }

    .about-cta h2 {
        font-size: 35px;
    }

    .about-cta__buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-cta__buttons a {
        width: 100%;
        min-width: 0;
    }
}

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

    .about-hero,
    .about-story,
    .about-work,
    .about-values,
    .about-message,
    .about-company,
    .about-cta {
        padding-right: 16px;
        padding-left: 16px;
    }

    .about-hero__copy h2 {
        font-size: 32px;
    }

    .about-hero__photo img {
        height: 300px;
    }

    .about-message__photo img {
        height: 340px;
    }
}

/* ==========================================================
   ABOUTページタイトル背景
========================================================== */

.about-page-title {
    background-image: url(../img/top-kv-4.jpg) !important;
    background-position: center 48% !important;
    background-size: cover !important;
}

.about-page-title>div {
    background:
        linear-gradient(90deg,
            rgba(8, 31, 48, 0.8),
            rgba(8, 31, 48, 0.28)) !important;
}


/* ==========================================================
   大矢荘平商店ならではの仕事
========================================================== */

.about-identity {
    position: relative;
    padding: 120px 30px;
    overflow: hidden;
    background: #102f46;
    color: #fff;
}

.about-identity::before {
    content: "OYA SOUHEI SHOTEN";
    position: absolute;
    right: -25px;
    bottom: -25px;
    color: rgba(255, 255, 255, 0.035);
    font-family: var(--font-garamond);
    font-size: clamp(75px, 10vw, 155px);
    line-height: 1;
    letter-spacing: 0.05em;
    white-space: nowrap;
    pointer-events: none;
}

.about-identity__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(60px, 8vw, 120px);
    align-items: center;
}

.about-identity__copy {
    padding-left: 35px;
    border-left: 3px solid #e98928;
}

.about-identity__mark {
    display: inline-block;
    margin-bottom: 30px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    font-size: 12px;
    letter-spacing: 0.12em;
}

.about-identity .about-en {
    color: #7bd0e5;
}

.about-identity h2 {
    margin: 0 0 30px;
    color: #fff;
    font-family: var(--font-serif);
    font-size: clamp(38px, 4vw, 56px);
    font-weight: normal;
    line-height: 1.55;
}

.about-identity__copy>p:not(.about-en) {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 2;
}

.about-identity__photos {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: 190px 190px;
    gap: 12px;
}

.about-identity__photos figure {
    margin: 0;
    overflow: hidden;
}

.about-identity__photos figure:first-child {
    grid-row: 1 / 3;
}

.about-identity__photos img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-identity__photos>span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #e98928;
    color: #fff;
    font-family: var(--font-garamond);
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.1em;
    text-align: center;
}


/* タブレット・小型ノートPC */

@media screen and (max-width: 1050px) {
    .about-identity__grid {
        gap: 48px;
    }

    .about-identity__photos {
        grid-template-rows: 160px 160px;
    }
}


/* スマートフォン */

@media screen and (max-width: 768px) {
    .about-identity {
        padding: 72px 20px;
    }

    .about-identity__grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .about-identity__copy {
        padding-left: 22px;
    }

    .about-identity h2 {
        font-size: 35px;
    }

    .about-identity__photos {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 210px 100px;
    }

    .about-identity__photos figure:first-child {
        grid-column: 1 / 3;
        grid-row: 1;
    }
}


/* 小型スマートフォン */

@media screen and (max-width: 420px) {
    .about-identity {
        padding-right: 16px;
        padding-left: 16px;
    }

    .about-identity h2 {
        font-size: 30px;
    }

    .about-identity__photos {
        grid-template-rows: 180px 95px;
    }
}

/* ABOUTメインコピーの改行調整 */
.about-hero__title {
    margin: 0 0 35px;
    font-size: clamp(38px, 3.5vw, 58px);
    line-height: 1.55;
    letter-spacing: .03em;
}

.about-hero__title span {
    display: block;
    white-space: nowrap;
}

/* ノートPC */
@media screen and (max-width: 1200px) {
    .about-hero__title {
        font-size: clamp(38px, 4vw, 50px);
    }
}

/* スマートフォン */
@media screen and (max-width: 768px) {
    .about-hero__title {
        font-size: clamp(31px, 9vw, 40px);
        line-height: 1.5;
    }
}

/* 小さいスマートフォン */
@media screen and (max-width: 390px) {
    .about-hero__title {
        font-size: 29px;
    }
}

/* メインビジュアル・信頼感の強化 */
.about-hero__message {
    max-width: 680px;
    margin-top: 35px;
}

.about-hero__lead {
    margin: 0 0 18px;
    color: #15344c;
    font-size: clamp(17px, 1.35vw, 21px);
    line-height: 2;
    letter-spacing: .03em;
}

.about-hero__lead strong {
    color: #1976a3;
    font-weight: 700;
}

.about-hero__support {
    margin: 0;
    color: #536570;
    font-size: 15px;
    line-height: 1.9;
}

.about-hero__trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: 32px 0 0;
    padding: 0;
    background: #d8e1e4;
    border-top: 3px solid #e98928;
    list-style: none;
}

.about-hero__trust li {
    padding: 18px 10px;
    background: #fff;
    text-align: center;
}

.about-hero__trust strong {
    display: block;
    margin-bottom: 6px;
    color: #15344c;
    font-size: clamp(13px, 1vw, 16px);
    line-height: 1.5;
    white-space: nowrap;
}

.about-hero__trust span {
    display: block;
    color: #687780;
    font-size: 12px;
}

/* スマートフォン */
@media screen and (max-width: 768px) {
    .about-hero__message {
        margin-top: 25px;
    }

    .about-hero__lead br,
    .about-hero__support br {
        display: none;
    }

    .about-hero__trust {
        margin-top: 25px;
    }

    .about-hero__trust li {
        padding: 15px 5px;
    }

    .about-hero__trust strong {
        font-size: 12px;
        white-space: normal;
    }

    .about-hero__trust span {
        font-size: 10px;
    }
}

/* ========================================
   信頼項目・スクロールアニメーション
======================================== */

.about-hero__trust.js-trust-motion {
    position: relative;
    border-top: 0;
    overflow: hidden;
}

/* オレンジ線 */
.about-hero__trust.js-trust-motion::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 3px;
    background: #e98928;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

/* 初期状態 */
.about-hero__trust.js-trust-motion li {
    position: relative;
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .65s ease,
        transform .65s cubic-bezier(.22, 1, .36, 1),
        background-color .35s ease;
}

/* 表示されたとき */
.about-hero__trust.js-trust-motion.is-visible::before {
    transform: scaleX(1);
}

.about-hero__trust.js-trust-motion.is-visible li {
    opacity: 1;
    transform: translateY(0);
}

/* 左から順番に表示 */
.about-hero__trust.js-trust-motion.is-visible li:nth-child(1) {
    transition-delay: .2s;
}

.about-hero__trust.js-trust-motion.is-visible li:nth-child(2) {
    transition-delay: .38s;
}

.about-hero__trust.js-trust-motion.is-visible li:nth-child(3) {
    transition-delay: .56s;
}

/* カーソルを合わせたとき */
.about-hero__trust.js-trust-motion li:hover {
    background: #f1f8fa;
}

.about-hero__trust.js-trust-motion li::after {
    content: "";
    position: absolute;
    right: 20px;
    bottom: 12px;
    left: 20px;
    height: 2px;
    background: #1976a3;
    transform: scaleX(0);
    transition: transform .35s ease;
}

.about-hero__trust.js-trust-motion li:hover::after {
    transform: scaleX(1);
}

/* 動きを減らす設定への対応 */
@media (prefers-reduced-motion: reduce) {

    .about-hero__trust.js-trust-motion::before,
    .about-hero__trust.js-trust-motion li {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ========================================
   大矢荘平商店らしい藍色レイアウト
======================================== */

.about-identity {
    position: relative;
    padding: clamp(85px, 8vw, 125px) 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 15%,
            rgba(41, 129, 166, .2),
            transparent 30%),
        linear-gradient(135deg, #0d2b40, #153c56);
    color: #fff;
}

/* 背景の細いライン */
.about-identity::after {
    content: "";
    position: absolute;
    top: 35px;
    right: 35px;
    bottom: 35px;
    left: 35px;
    border: 1px solid rgba(255, 255, 255, .08);
    pointer-events: none;
}

.about-identity__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(400px, .82fr) minmax(0, 1.18fr);
    gap: clamp(55px, 7vw, 105px);
    align-items: center;
    width: min(1280px, 100%);
    margin: 0 auto;
}

/* 左側 */
.about-identity__copy {
    max-width: 540px;
    padding: 0 0 0 30px;
    border-left: 3px solid #e98928;
}

.about-identity__mark {
    display: inline-block;
    margin-bottom: 24px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, .4);
    color: rgba(255, 255, 255, .85);
    font-size: 11px;
    letter-spacing: .14em;
}

.about-identity .about-en {
    margin-bottom: 23px;
    color: #7bd0e5;
    font-size: 13px;
    letter-spacing: .18em;
}

/* 見出しを3行に固定 */
.about-identity__title {
    margin: 0 0 32px;
    color: #fff;
    font-family: var(--font-serif);
    font-size: clamp(39px, 3.4vw, 55px);
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: .02em;
}

.about-identity__title span {
    display: block;
    white-space: nowrap;
}

.about-identity__copy>p:not(.about-en) {
    max-width: 510px;
    margin: 0 0 17px;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    line-height: 2;
}

/* 写真側 */
.about-identity__photos {
    position: relative;
    display: block;
    min-height: 530px;
    padding: 35px 90px 0 0;
}

/* 集合写真 */
.about-identity__photos figure {
    margin: 0;
    overflow: hidden;
}

.about-identity__photos figure:first-child {
    width: 78%;
    height: 495px;
    box-shadow: 20px 22px 0 rgba(6, 26, 40, .45);
}

.about-identity__photos figure:first-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 仕事風景 */
.about-identity__photos figure:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 245px;
    border: 8px solid #153c56;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .22);
}

.about-identity__photos figure:nth-child(2) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 江東区・扇橋 */
.about-identity__photos>span {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 235px;
    min-height: 165px;
    padding: 20px;
    box-sizing: border-box;
    background: #e98928;
    color: #fff;
    font-family: var(--font-garamond);
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: .12em;
    text-align: center;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .18);
}

/* ノートPC */
@media screen and (max-width: 1200px) {
    .about-identity__grid {
        grid-template-columns: minmax(360px, .85fr) minmax(0, 1.15fr);
        gap: 50px;
    }

    .about-identity__title {
        font-size: clamp(37px, 3.7vw, 48px);
    }

    .about-identity__photos {
        min-height: 470px;
        padding-right: 65px;
    }

    .about-identity__photos figure:first-child {
        height: 435px;
    }

    .about-identity__photos figure:nth-child(2) {
        height: 205px;
    }

    .about-identity__photos>span {
        width: 200px;
        min-height: 145px;
    }
}

/* タブレット・SP */
@media screen and (max-width: 850px) {
    .about-identity {
        padding: 75px 20px;
    }

    .about-identity::after {
        top: 15px;
        right: 15px;
        bottom: 15px;
        left: 15px;
    }

    .about-identity__grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-identity__copy {
        max-width: none;
        padding-left: 20px;
    }

    .about-identity__title {
        font-size: clamp(32px, 8vw, 43px);
    }

    .about-identity__photos {
        min-height: 430px;
        padding: 0 45px 0 0;
    }

    .about-identity__photos figure:first-child {
        width: 88%;
        height: 380px;
    }

    .about-identity__photos figure:nth-child(2) {
        top: 25px;
        width: 43%;
        height: 170px;
        border-width: 5px;
    }

    .about-identity__photos>span {
        width: 175px;
        min-height: 120px;
        font-size: 12px;
    }
}

/* 小型SP */
@media screen and (max-width: 420px) {
    .about-identity {
        padding-right: 16px;
        padding-left: 16px;
    }

    .about-identity__title {
        font-size: 29px;
    }

    .about-identity__copy>p:not(.about-en) {
        font-size: 14px;
    }

    .about-identity__photos {
        min-height: 365px;
        padding-right: 25px;
    }

    .about-identity__photos figure:first-child {
        width: 92%;
        height: 325px;
    }

    .about-identity__photos figure:nth-child(2) {
        width: 46%;
        height: 135px;
    }

    .about-identity__photos>span {
        width: 145px;
        min-height: 100px;
        padding: 12px;
        font-size: 10px;
    }
}

/* ========================================
   ABOUT写真ギャラリー
======================================== */

.about-identity__photos figure {
    position: relative;
    background: #0b283c;
}

/* 切り替え時の動き */
.about-identity__photos figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transform: scale(1);
    transition:
        opacity .65s ease,
        transform 1.2s cubic-bezier(.22, 1, .36, 1);
}

.about-identity__photos.is-changing figure img {
    opacity: 0;
    transform: scale(1.06);
}

/* 写真に藍色を少しなじませる */
.about-identity__photos figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(13, 43, 64, 0),
            rgba(13, 43, 64, .18));
    pointer-events: none;
}

/* 進行状況のライン */
.about-identity__progress {
    position: absolute;
    right: 0;
    bottom: -22px;
    width: 235px;
    height: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, .18);
}

.about-identity__progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: #e98928;
    transform: scaleX(0);
    transform-origin: left center;
}

.about-identity__photos.is-playing .about-identity__progress span {
    animation: identityProgress 4.8s linear infinite;
}

@keyframes identityProgress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* カーソルを合わせた間は停止 */
.about-identity__photos.is-paused .about-identity__progress span {
    animation-play-state: paused;
}

/* SP */
@media screen and (max-width: 768px) {
    .about-identity__progress {
        bottom: -18px;
        width: 175px;
    }
}

@media screen and (max-width: 420px) {
    .about-identity__progress {
        width: 145px;
    }
}

/* 動きを減らす設定 */
@media (prefers-reduced-motion: reduce) {
    .about-identity__photos figure img {
        transition: opacity .2s ease;
        transform: none;
    }

    .about-identity__progress {
        display: none;
    }
}

/* ABOUTメイン写真 */
.about-hero__visual {
    position: relative;
    height: clamp(520px, 50vw, 720px);
    margin: 0;
    overflow: hidden;
    background: #15344c;
}

.about-hero__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 1.2s cubic-bezier(.22, 1, .36, 1);
}

/* 藍色の薄いグラデーション */
.about-hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            transparent 55%,
            rgba(10, 39, 58, .65) 100%);
    pointer-events: none;
}

.about-hero__visual:hover img {
    transform: scale(1.035);
}

/* 写真内の説明 */
.about-hero__visual figcaption {
    position: absolute;
    right: 35px;
    bottom: 30px;
    left: 35px;
    z-index: 2;
    color: #fff;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: .04em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}

.about-hero__visual figcaption span {
    display: block;
    margin-bottom: 5px;
    color: #8ad4e6;
    font-family: var(--font-garamond);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .17em;
}

/* SP */
@media screen and (max-width: 768px) {
    .about-hero__visual {
        height: clamp(330px, 82vw, 470px);
    }

    .about-hero__visual figcaption {
        right: 20px;
        bottom: 20px;
        left: 20px;
        font-size: 12px;
    }
}

/* ABOUTページ・縦方向の間隔調整 */
.about-hero {
    padding-top: clamp(70px, 7vw, 110px);
    padding-bottom: clamp(75px, 7vw, 110px);
}

.about-story {
    min-height: 0 !important;
    padding-top: clamp(75px, 7vw, 110px);
    padding-bottom: clamp(75px, 7vw, 110px);
}

.about-identity {
    margin-top: 0;
}

/* セクション内の最後の要素による余白を解除 */
.about-story__copy>*:last-child,
.about-hero__copy>*:last-child {
    margin-bottom: 0;
}

.about-wide-photo {
    position: relative;
    height: clamp(340px, 38vw, 560px);
    overflow: hidden;
}

.about-wide-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
}

/* ========================================
   江東区・街並み写真
======================================== */

.about-wide-photo {
    position: relative;
    width: 100%;
    height: clamp(340px, 38vw, 560px);
    margin: 0;
    overflow: hidden;
    background: #15344c;
}

.about-wide-photo>img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
}

/* 写真を藍色になじませる */
.about-wide-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(8, 35, 53, .08),
            rgba(8, 35, 53, .38));
    pointer-events: none;
}

/* 右側のメッセージ */
.about-wide-photo__copy {
    position: absolute;
    right: clamp(35px, 7vw, 120px);
    top: 50%;
    z-index: 2;
    max-width: 390px;
    padding: 25px 30px;
    background: rgba(15, 47, 70, .9);
    color: #fff;
    transform: translateY(-50%);
}

.about-wide-photo__copy span {
    display: block;
    margin-bottom: 9px;
    color: #80d2e5;
    font-family: var(--font-garamond);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .17em;
}

.about-wide-photo__copy strong {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(21px, 2.2vw, 31px);
    font-weight: normal;
    line-height: 1.65;
}

/* 明治42年創業 */
.about-wide-photo__badge {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    min-width: 220px;
    padding: 17px 25px;
    box-sizing: border-box;
    background: #e98928;
    color: #fff;
    text-align: center;
}

.about-wide-photo__badge small {
    display: block;
    margin-bottom: 4px;
    font-family: var(--font-garamond);
    font-size: 9px;
    letter-spacing: .18em;
}

.about-wide-photo__badge strong {
    display: block;
    font-size: 16px;
    white-space: nowrap;
}

/* スマートフォン */
@media screen and (max-width: 768px) {
    .about-wide-photo {
        height: 430px;
    }

    .about-wide-photo>img {
        object-position: center center;
    }

    .about-wide-photo__copy {
        right: 20px;
        bottom: 75px;
        left: 20px;
        top: auto;
        max-width: none;
        padding: 19px 22px;
        transform: none;
    }

    .about-wide-photo__copy strong {
        font-size: 21px;
    }

    .about-wide-photo__copy strong br {
        display: none;
    }

    .about-wide-photo__badge {
        min-width: 175px;
        padding: 12px 17px;
    }

    .about-wide-photo__badge strong {
        font-size: 13px;
    }
}

/* ========================================
   代表挨拶・藍色メッセージ
======================================== */

.about-message {
    position: relative;
    padding: clamp(90px, 8vw, 135px) 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 15%,
            rgba(33, 121, 158, .24),
            transparent 32%),
        linear-gradient(135deg, #0b293e, #153b54);
    color: #fff;
}

/* 背景の大きな英字 */
.about-message__word {
    position: absolute;
    right: -15px;
    bottom: -35px;
    color: rgba(255, 255, 255, .035);
    font-family: var(--font-garamond);
    font-size: clamp(100px, 15vw, 250px);
    line-height: 1;
    letter-spacing: .04em;
    white-space: nowrap;
    pointer-events: none;
}

.about-message__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(380px, .86fr) minmax(0, 1.14fr);
    gap: clamp(55px, 7vw, 105px);
    align-items: center;
}

/* 代表写真 */
.about-message__photo {
    position: relative;
    margin: 0;
    padding: 0 0 35px 35px;
}

.about-message__photo::before {
    content: "";
    position: absolute;
    top: -20px;
    right: 20px;
    bottom: 55px;
    left: 15px;
    width: auto;
    height: auto;
    border: 1px solid rgba(255, 255, 255, .2);
}

.about-message__photo::after {
    content: "1909";
    position: absolute;
    top: 25px;
    left: -5px;
    color: #e98928;
    font-family: var(--font-garamond);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .18em;
    writing-mode: vertical-rl;
}

.about-message__photo img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: clamp(490px, 42vw, 640px);
    object-fit: cover;
    object-position: center top;
}

/* 写真下の役職 */
.about-message__photo figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    min-width: 270px;
    padding: 19px 24px;
    box-sizing: border-box;
    background: #e98928;
    color: #fff;
}

.about-message__photo figcaption small {
    display: block;
    margin-bottom: 5px;
    font-family: var(--font-garamond);
    font-size: 9px;
    letter-spacing: .15em;
}

.about-message__photo figcaption strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

/* 代表挨拶の文章 */
.about-message__copy {
    position: relative;
    max-width: 650px;
}

.about-message__heading {
    position: relative;
    margin-bottom: 32px;
    padding-left: 28px;
    border-left: 3px solid #e98928;
}

.about-message__label {
    display: inline-block;
    margin-bottom: 13px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    font-size: 11px;
    letter-spacing: .12em;
}

.about-message__heading>p {
    margin: 0 0 15px;
    color: #7fd0e4;
    font-family: var(--font-garamond);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
}

.about-message__heading h2 {
    margin: 0;
    color: #fff;
    font-family: var(--font-serif);
    font-size: clamp(39px, 3.7vw, 57px);
    font-weight: normal;
    line-height: 1.5;
}

/* 強いメッセージ */
.about-message__statement {
    margin: 0 0 29px !important;
    padding: 21px 24px;
    border-top: 1px solid rgba(255, 255, 255, .25);
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    color: #fff !important;
    font-family: var(--font-serif);
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.9 !important;
}

.about-message__body p {
    margin: 0 0 17px;
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    line-height: 2;
}

/* 署名 */
.about-message__signature {
    position: relative;
    margin: 31px 0 0;
    padding-top: 22px;
    color: #fff;
    text-align: right;
    font-weight: 700;
    line-height: 1.8;
}

.about-message__signature::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 2px;
    background: #e98928;
}

.about-message__signature span {
    display: block;
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
    font-weight: normal;
}

/* ノートPC */
@media screen and (max-width: 1100px) {
    .about-message__grid {
        grid-template-columns: minmax(330px, .85fr) minmax(0, 1.15fr);
        gap: 50px;
    }

    .about-message__heading h2 {
        font-size: clamp(36px, 4vw, 48px);
    }

    .about-message__photo img {
        height: 530px;
    }
}

/* タブレット・SP */
@media screen and (max-width: 850px) {
    .about-message {
        padding: 75px 20px;
    }

    .about-message__grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-message__photo {
        max-width: 560px;
        margin: 0 auto;
        padding-left: 20px;
    }

    .about-message__photo img {
        height: clamp(430px, 115vw, 590px);
    }

    .about-message__copy {
        max-width: none;
    }

    .about-message__heading h2 {
        font-size: clamp(34px, 9vw, 45px);
    }
}

/* 小型SP */
@media screen and (max-width: 420px) {
    .about-message {
        padding-right: 16px;
        padding-left: 16px;
    }

    .about-message__photo {
        padding-bottom: 30px;
    }

    .about-message__photo img {
        height: 440px;
    }

    .about-message__photo figcaption {
        min-width: 225px;
        padding: 15px 18px;
    }

    .about-message__heading {
        padding-left: 19px;
    }

    .about-message__heading h2 {
        font-size: 32px;
    }

    .about-message__statement br {
        display: none;
    }
}

/* ========================================
   ABOUTページ・締めセクション
======================================== */

.about-closing {
    position: relative;
    padding: clamp(90px, 9vw, 140px) 30px 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 20%,
            rgba(34, 130, 169, .25),
            transparent 30%),
        linear-gradient(135deg, #0a283d, #153c56);
    color: #fff;
}

/* 背景文字 */
.about-closing__word {
    position: absolute;
    right: -25px;
    top: -45px;
    color: rgba(255, 255, 255, .035);
    font-family: var(--font-garamond);
    font-size: clamp(180px, 28vw, 470px);
    line-height: 1;
    pointer-events: none;
}

.about-closing .about-inner {
    position: relative;
    z-index: 2;
}

/* 上段 */
.about-closing__top {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: clamp(60px, 9vw, 140px);
    align-items: end;
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.about-closing__copy {
    padding-left: 30px;
    border-left: 3px solid #e98928;
}

.about-closing__en {
    margin: 0 0 20px;
    color: #7fd0e4;
    font-family: var(--font-garamond);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
}

.about-closing__copy h2 {
    margin: 0;
    color: #fff;
    font-family: var(--font-serif);
    font-size: clamp(44px, 5vw, 72px);
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: .02em;
}

.about-closing__copy h2 span {
    color: #fff;
    white-space: nowrap;
}

/* 右側文章 */
.about-closing__message>p {
    margin: 0 0 17px;
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
    line-height: 2;
}

/* メインお問い合わせボタン */
.about-closing__contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-top: 32px;
    padding: 23px 27px;
    background: #e98928;
    color: #fff;
    text-decoration: none;
    transition:
        transform .35s ease,
        background-color .35s ease;
}

.about-closing__contact:hover {
    background: #f09535;
    transform: translateY(-5px);
}

.about-closing__contact small {
    display: block;
    margin-bottom: 5px;
    font-family: var(--font-garamond);
    font-size: 9px;
    font-weight: normal;
    letter-spacing: .18em;
}

.about-closing__contact span {
    font-size: 18px;
    font-weight: 700;
}

.about-closing__contact i {
    font-size: 17px;
    transition: transform .3s ease;
}

.about-closing__contact:hover i {
    transform: translateX(7px);
}

/* 下部3リンク */
.about-closing__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 55px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-left: 1px solid rgba(255, 255, 255, .16);
}

.about-closing__links>a {
    position: relative;
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr) 25px;
    gap: 17px;
    align-items: center;
    min-height: 130px;
    padding: 25px;
    box-sizing: border-box;
    border-right: 1px solid rgba(255, 255, 255, .16);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    text-decoration: none;
    transition:
        background-color .35s ease,
        color .35s ease;
}

.about-closing__links>a:hover {
    background: #fff;
    color: #15344c;
}

.about-closing__number {
    color: #e98928;
    font-family: var(--font-garamond);
    font-size: 13px;
    font-weight: 700;
}

.about-closing__links small {
    display: block;
    margin-bottom: 8px;
    color: #7fd0e4;
    font-family: var(--font-garamond);
    font-size: 9px;
    letter-spacing: .15em;
}

.about-closing__links strong {
    display: block;
    font-size: 16px;
    line-height: 1.5;
}

.about-closing__links i {
    font-size: 13px;
    transition: transform .3s ease;
}

.about-closing__links>a:hover i {
    transform: translateX(6px);
}

/* 電話 */
.about-closing__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 30px;
    margin-top: 45px;
    color: rgba(255, 255, 255, .65);
}

.about-closing__phone>span {
    font-size: 13px;
}

.about-closing__phone>a {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    text-decoration: none;
}

.about-closing__phone>a i {
    color: #e98928;
    font-size: 16px;
}

.about-closing__phone>small {
    font-size: 11px;
}

/* ノートPC */
@media screen and (max-width: 1100px) {
    .about-closing__top {
        grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
        gap: 55px;
    }

    .about-closing__copy h2 {
        font-size: clamp(40px, 5vw, 60px);
    }

    .about-closing__links>a {
        grid-template-columns: 35px minmax(0, 1fr) 20px;
        padding: 22px 18px;
    }
}

/* タブレット */
@media screen and (max-width: 850px) {
    .about-closing {
        padding: 75px 20px 65px;
    }

    .about-closing__top {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 55px;
    }

    .about-closing__links {
        grid-template-columns: 1fr;
    }

    .about-closing__links>a {
        min-height: 105px;
    }
}

/* スマートフォン */
@media screen and (max-width: 480px) {
    .about-closing {
        padding-right: 16px;
        padding-left: 16px;
    }

    .about-closing__copy {
        padding-left: 20px;
    }

    .about-closing__copy h2 {
        font-size: 35px;
    }

    .about-closing__copy h2 span {
        white-space: normal;
    }

    .about-closing__message>p br {
        display: none;
    }

    .about-closing__contact {
        padding: 20px;
    }

    .about-closing__contact span {
        font-size: 15px;
    }

    .about-closing__phone {
        display: grid;
        justify-items: center;
        text-align: center;
    }

    .about-closing__phone>a {
        font-size: 23px;
    }
}

/* ==========================================================
   FINAL LAYOUT BALANCE
   白→藍→生成り→藍→生成りのリズムで各セクションを分離
========================================================== */

/* 大切にしていること：藍色の連続を止める */
.about-values {
    padding: clamp(85px, 8vw, 120px) 30px;
    background: #f3f0e8;
    color: #15344c;
}

.about-values .about-en {
    color: #1976a3;
}

.about-values .about-heading {
    color: #15344c;
}

.about-values__top {
    display: grid;
    grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
    gap: clamp(45px, 7vw, 100px);
    align-items: end;
    margin-bottom: 50px;
}

.about-values__statement {
    margin: 0;
    color: #15344c;
    font-family: var(--font-serif);
    font-size: clamp(22px, 2.3vw, 32px);
    line-height: 1.8;
}

.about-values__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    background: transparent;
}

.about-values__item,
.about-values__item:last-child {
    position: relative;
    min-height: 260px;
    padding: 35px 27px;
    box-sizing: border-box;
    border: 0;
    border-top: 3px solid #e98928;
    background: #fff;
    box-shadow: 0 12px 32px rgba(21, 52, 76, .08);
    color: #15344c;
    transition: transform .35s ease, box-shadow .35s ease;
}

.about-values__item:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 42px rgba(21, 52, 76, .14);
}

.about-values__item>span {
    color: #e98928;
}

.about-values__item h3 {
    color: #15344c;
}

.about-values__item p {
    color: #62717a;
    font-size: 14px;
    line-height: 1.9;
}

/* 代表挨拶：大画面でも間延びさせない */
.about-message {
    padding-top: clamp(85px, 7vw, 110px);
    padding-bottom: clamp(85px, 7vw, 110px);
}

.about-message__grid {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.about-message__photo img {
    height: clamp(480px, 40vw, 600px);
}

.about-message__body p {
    font-size: 14px;
    line-height: 1.9;
}

/* 締め：代表挨拶と色を分ける */
.about-closing {
    border-top: 8px solid #e98928;
    background:
        radial-gradient(circle at 85% 15%, rgba(25, 118, 163, .09), transparent 32%),
        #f3f0e8;
    color: #15344c;
}

.about-closing__word {
    color: rgba(21, 52, 76, .045);
}

.about-closing__copy {
    border-left-color: #e98928;
}

.about-closing__en {
    color: #1976a3;
}

.about-closing__copy h2,
.about-closing__copy h2 span {
    color: #15344c;
}

.about-closing__message>p {
    color: #62717a;
}

.about-closing__top {
    border-bottom-color: rgba(21, 52, 76, .18);
}

.about-closing__links {
    border-top-color: rgba(21, 52, 76, .18);
    border-left-color: rgba(21, 52, 76, .18);
}

.about-closing__links>a {
    background: rgba(255, 255, 255, .58);
    border-right-color: rgba(21, 52, 76, .18);
    border-bottom-color: rgba(21, 52, 76, .18);
    color: #15344c;
}

.about-closing__links>a:hover {
    background: #15344c;
    color: #fff;
}

.about-closing__links small {
    color: #1976a3;
}

.about-closing__phone,
.about-closing__phone>small {
    color: #62717a;
}

.about-closing__phone>a {
    color: #15344c;
}

@media screen and (max-width: 850px) {
    .about-values {
        padding: 70px 20px;
    }

    .about-values__top {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 35px;
    }

    .about-values__list {
        grid-template-columns: 1fr;
    }

    .about-values__item,
    .about-values__item:last-child {
        min-height: 0;
        padding: 30px 24px;
    }
}

@media screen and (max-width: 480px) {
    .about-values {
        padding-right: 16px;
        padding-left: 16px;
    }

    .about-values__statement br {
        display: none;
    }
}

/* 大切にしていること・見出し調整 */
.about-values__top {
    grid-template-columns: minmax(390px, .85fr) minmax(0, 1.15fr);
    gap: clamp(50px, 7vw, 100px);
    align-items: center;
}

.about-values__title .about-heading {
    margin: 0;
    font-size: clamp(38px, 3.5vw, 52px);
    line-height: 1.55;
}

.about-values__title .about-heading span {
    display: block;
    white-space: nowrap;
}

.about-values__statement {
    max-width: 660px;
    font-size: clamp(18px, 1.7vw, 25px);
    line-height: 1.9;
}

.about-values__statement strong {
    color: #1976a3;
    font-weight: 600;
}

/* タブレット・SP */
@media screen and (max-width: 850px) {
    .about-values__top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-values__title .about-heading {
        font-size: clamp(34px, 8vw, 43px);
    }

    .about-values__statement {
        max-width: none;
        font-size: 18px;
    }
}

/* 小型SP */
@media screen and (max-width: 480px) {
    .about-values__title .about-heading {
        font-size: 32px;
    }

    .about-values__statement {
        font-size: 16px;
        line-height: 1.9;
    }

    .about-values__statement br {
        display: none;
    }
}

/* ========================================
   大切にしている3つのこと・専用アニメーション
======================================== */

/* 見出し初期状態 */
.js-values-motion .about-values__title {
    opacity: 0;
    transform: translateX(-45px);
    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22, 1, .36, 1);
}

/* 説明文初期状態 */
.js-values-motion .about-values__statement {
    opacity: 0;
    transform: translateX(45px);
    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22, 1, .36, 1);
}

/* カード初期状態 */
.js-values-motion .about-values__item {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.22, 1, .36, 1),
        box-shadow .35s ease;
}

/* カード上部のオレンジ線 */
.js-values-motion .about-values__item::before {
    content: "";
    position: absolute;
    top: -3px;
    right: 0;
    left: 0;
    height: 3px;
    background: #e98928;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .75s cubic-bezier(.22, 1, .36, 1);
}

/* 数字 */
.js-values-motion .about-values__item>span {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity .5s ease,
        transform .5s ease;
}

/* 表示開始 */
.js-values-motion.is-visible .about-values__title,
.js-values-motion.is-visible .about-values__statement,
.js-values-motion.is-visible .about-values__item {
    opacity: 1;
    transform: translate(0);
}

/* 左右の表示時間 */
.js-values-motion.is-visible .about-values__title {
    transition-delay: .05s;
}

.js-values-motion.is-visible .about-values__statement {
    transition-delay: .18s;
}

/* カードを順番に表示 */
.js-values-motion.is-visible .about-values__item:nth-child(1) {
    transition-delay: .3s;
}

.js-values-motion.is-visible .about-values__item:nth-child(2) {
    transition-delay: .47s;
}

.js-values-motion.is-visible .about-values__item:nth-child(3) {
    transition-delay: .64s;
}

.js-values-motion.is-visible .about-values__item:nth-child(1)::before {
    transform: scaleX(1);
    transition-delay: .55s;
}

.js-values-motion.is-visible .about-values__item:nth-child(2)::before {
    transform: scaleX(1);
    transition-delay: .72s;
}

.js-values-motion.is-visible .about-values__item:nth-child(3)::before {
    transform: scaleX(1);
    transition-delay: .89s;
}

.js-values-motion.is-visible .about-values__item>span {
    opacity: 1;
    transform: translateY(0);
}

.js-values-motion.is-visible .about-values__item:nth-child(1)>span {
    transition-delay: .7s;
}

.js-values-motion.is-visible .about-values__item:nth-child(2)>span {
    transition-delay: .87s;
}

.js-values-motion.is-visible .about-values__item:nth-child(3)>span {
    transition-delay: 1.04s;
}

/* カーソルを合わせた動き */
.js-values-motion.is-visible .about-values__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(21, 52, 76, .16);
}

/* 動きを減らす端末設定 */
@media (prefers-reduced-motion: reduce) {

    .js-values-motion .about-values__title,
    .js-values-motion .about-values__statement,
    .js-values-motion .about-values__item,
    .js-values-motion .about-values__item>span {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .js-values-motion .about-values__item::before {
        transform: scaleX(1);
        transition: none;
    }
}

/* ========================================
   代表挨拶・約束のメッセージ
======================================== */

.about-message__promise {
    position: relative;
    margin-top: 35px;
    padding: 29px 30px 29px 34px;
    overflow: hidden;
    background: rgba(5, 25, 39, .32);
    border-left: 4px solid #e98928;
}

.about-message__promise::after {
    content: "PROMISE";
    position: absolute;
    right: -7px;
    bottom: -17px;
    color: rgba(255, 255, 255, .035);
    font-family: var(--font-garamond);
    font-size: 70px;
    line-height: 1;
    letter-spacing: .05em;
    pointer-events: none;
}

.about-message__promise>span {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 13px;
    color: #7fd0e4;
    font-family: var(--font-garamond);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
}

.about-message__promise>p {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    line-height: 1.9;
}

.about-message__promise>strong {
    position: relative;
    z-index: 1;
    display: block;
    color: #fff;
    font-family: var(--font-serif);
    font-size: clamp(18px, 1.7vw, 24px);
    font-weight: normal;
    line-height: 1.8;
}

/* SP */
@media screen and (max-width: 480px) {
    .about-message__promise {
        margin-top: 28px;
        padding: 24px 18px 25px 21px;
    }

    .about-message__promise>p br,
    .about-message__promise>strong br {
        display: none;
    }

    .about-message__promise>strong {
        font-size: 18px;
    }

    .about-message__promise::after {
        font-size: 48px;
    }
}

/* ========================================
   代表挨拶・困りごとと回答を明確に分離
======================================== */

.about-message .about-message__needs-label {
    margin: 30px 0 14px;
    color: #7fd0e4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
}

/* 01～03 */
.about-message .about-message__needs {
    display: grid;
    gap: 11px;
    margin: 0;
}

.about-message .about-message__needs>div {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 15px;
    align-items: center;
    min-height: 65px;
    padding: 12px 21px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, .16);
    border-left: 4px solid #e98928;
    background: rgba(255, 255, 255, .07);
}

.about-message .about-message__needs span {
    color: #e98928;
    font-family: var(--font-garamond);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
}

.about-message .about-message__needs strong {
    color: #fff;
    font-family: var(--font-serif);
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: normal;
    line-height: 1.6;
}

/* 01～03と回答の間を空ける */
.about-message .about-message__answer {
    position: relative;
    margin: 38px 0 0;
    padding: 30px 28px;
    overflow: hidden;
    border: 0;
    background:
        linear-gradient(135deg,
            rgba(25, 118, 163, .38),
            rgba(12, 43, 63, .65));
}

/* 01～03から回答へつなぐ小さな矢印 */
.about-message .about-message__answer::before {
    content: "";
    position: absolute;
    top: -17px;
    left: 42px;
    width: 0;
    height: 0;
    border-right: 15px solid transparent;
    border-bottom: 17px solid rgba(25, 118, 163, .38);
    border-left: 15px solid transparent;
}

.about-message .about-message__answer>small {
    display: block;
    margin-bottom: 10px;
    color: #7fd0e4;
    font-family: var(--font-garamond);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
}

.about-message .about-message__answer>strong {
    display: block;
    margin-bottom: 13px;
    color: #fff;
    font-family: var(--font-serif);
    font-size: clamp(20px, 1.8vw, 26px);
    font-weight: normal;
    line-height: 1.6;
}

.about-message .about-message__answer>p {
    margin: 0;
    color: rgba(255, 255, 255, .73);
    font-size: 14px;
    line-height: 1.9;
}

/* 次のOUR PROMISEとの間隔 */
.about-message .about-message__promise {
    margin-top: 42px;
}

/* SP */
@media screen and (max-width: 480px) {
    .about-message .about-message__needs>div {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 10px;
        min-height: 60px;
        padding: 11px 14px;
    }

    .about-message .about-message__needs strong {
        font-size: 16px;
    }

    .about-message .about-message__answer {
        margin-top: 32px;
        padding: 25px 18px;
    }

    .about-message .about-message__answer>p br {
        display: none;
    }
}

/* 01～03の入れ子崩れ防止 */
.about-message__needs {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 11px !important;
    width: 100%;
}

.about-message__needs>.about-message__need {
    position: relative;
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 15px;
    align-items: center;
    width: 100%;
    min-height: 65px;
    margin: 0 !important;
    padding: 12px 21px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, .16);
    border-left: 4px solid #e98928;
    background: rgba(255, 255, 255, .07);
}

.about-message__needs>.about-message__need span {
    display: block;
    color: #e98928;
    font-family: var(--font-garamond);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    writing-mode: horizontal-tb !important;
}

.about-message__needs>.about-message__need strong {
    display: block;
    width: 100%;
    color: #fff;
    font-family: var(--font-serif);
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: normal;
    line-height: 1.6;
    white-space: normal;
    writing-mode: horizontal-tb !important;
    word-break: normal;
}

@media screen and (max-width: 480px) {
    .about-message__needs>.about-message__need {
        grid-template-columns: 28px minmax(0, 1fr) !important;
        gap: 10px;
        padding: 12px 14px;
    }

    .about-message__needs>.about-message__need strong {
        font-size: 15px;
    }
}

/* 代表挨拶：写真を上側に配置 */
@media screen and (min-width: 769px) {
    .about-message__grid {
        align-items: start;
    }

    .about-message__visual,
    .about-message__photo {
        align-self: start;
        margin-top: 0 !important;
        top: 40px;
    }
}

/* 代表挨拶：写真の追従位置を上へ修正 */
@media screen and (min-width: 769px) {
    .about-message__grid {
        align-items: start;
    }

    .about-message__visual {
        position: sticky;
        top: 40px;
        align-self: start;
        margin-top: 0 !important;
    }
}

@media screen and (min-width: 1600px) {
    .about-message__visual {
        top: 50px;
    }
}

@media screen and (max-width: 768px) {
    .about-message__visual {
        position: relative;
        top: auto;
        margin-top: 0 !important;
    }
}

/* =========================================================
   01～03 お困りごとの訴求アニメーション
========================================================= */

.about-message__need {
    position: relative;
    overflow: hidden;
    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.22, 1, .36, 1),
        border-color .35s ease,
        background-color .35s ease,
        box-shadow .35s ease;
}

/* JavaScriptが動作する場合のみ非表示にする */
.js-about-animation .about-message__need {
    opacity: 0;
    transform: translateX(45px);
}

/* 順番に表示 */
.js-about-animation .about-message__need.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* 左側のオレンジ線 */
.about-message__need::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: #e98928;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .55s ease .2s;
}

.about-message__need.is-visible::before {
    transform: scaleY(1);
}

/* 表示後の強調 */
.about-message__need.is-active {
    border-color: rgba(233, 137, 40, .85);
    background: rgba(255, 255, 255, .13);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .16),
        inset 0 0 0 1px rgba(233, 137, 40, .12);
    transform: translateX(7px);
}

/* 番号 */
.about-message__need span {
    transition:
        color .35s ease,
        transform .35s ease;
}

.about-message__need.is-active span {
    color: #ffad4d;
    transform: scale(1.15);
}

/* テキスト */
.about-message__need strong {
    transition:
        color .35s ease,
        letter-spacing .35s ease;
}

.about-message__need.is-active strong {
    color: #fff;
    letter-spacing: .04em;
}

/* スマートフォン */
@media screen and (max-width: 768px) {
    .js-about-animation .about-message__need {
        transform: translateY(25px);
    }

    .js-about-animation .about-message__need.is-visible {
        transform: translateY(0);
    }

    .about-message__need.is-active {
        transform: translateY(-3px);
    }
}

/* 動きを減らす設定の端末 */
@media (prefers-reduced-motion: reduce) {
    .js-about-animation .about-message__need {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .about-message__need::before {
        transform: scaleY(1);
        transition: none;
    }
}

/* =========================================================
   ABOUTページ締め部分・見出しのレスポンシブ修正
========================================================= */

.about-closing__copy h2 {
    font-size: clamp(42px, 4vw, 64px);
    line-height: 1.45;
}

.about-closing__line {
    display: block;
    white-space: nowrap;
}

.about-closing__line--company {
    color: inherit;
}

/* ノートPC */
@media screen and (min-width: 851px) and (max-width: 1400px) {
    .about-closing__top {
        grid-template-columns:
            minmax(430px, .9fr) minmax(0, 1.1fr);
        gap: clamp(35px, 4vw, 60px);
    }

    .about-closing__copy h2 {
        font-size: clamp(39px, 3.45vw, 48px);
        letter-spacing: 0;
    }

    .about-closing__copy {
        padding-left: 24px;
    }
}

/* タブレット・スマートフォン */
@media screen and (max-width: 850px) {
    .about-closing__top {
        grid-template-columns: minmax(0, 1fr);
        gap: 38px;
    }

    .about-closing__copy h2 {
        font-size: clamp(32px, 7vw, 44px);
        line-height: 1.5;
    }

    .about-closing__line {
        white-space: nowrap;
    }
}

/* 小型スマートフォン */
@media screen and (max-width: 390px) {
    .about-closing__copy {
        padding-left: 16px;
    }

    .about-closing__copy h2 {
        font-size: clamp(27px, 8vw, 31px);
    }
}

/* ========================================
   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;
    }

}