/* =========================
   Base
========================= */
html {
    font-size: 1rem;
}

:root {
    --color-primary: #177FB8;
    --color-bg: #fff;
    --content-width: 1380px;
    --side-padding: 30px;
}

body {
    margin: 0;
    background-color: var(--color-primary);
    color: #263238;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.125rem;
}

.wrapper {
    width: calc(100% - (var(--side-padding) * 2));
    max-width: var(--content-width);
    margin: 30px auto 0;
    overflow: hidden;
    background-color: var(--color-bg);
    border-radius: 20px;
}

@media screen and (max-width: 600px) {
    :root {
        --side-padding: 10px;
    }
}

/* =========================
   Header
========================= */

:root {
    --header-height: 88px;
}

/* 固定ヘッダーの差し込み先 */
#site-header {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 1000;

    width: calc(100% - (var(--side-padding) * 2));
    max-width: var(--content-width);

    transform: translateX(-50%);
}

/* ヘッダー本体 */
.site-header {
    width: 100%;
    overflow: hidden;

    background-color: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 4px 16px rgba(38, 50, 56, 0.12);

    transition: border-radius 0.25s ease;
}

#site-header.is-scrolled .site-header {
    border-radius: 0;
}

/* ヘッダー内部 */
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: var(--header-height);
    box-sizing: border-box;
    padding-inline: clamp(30px, 6vw, 90px);
}

/* -------------------------
   ロゴ
------------------------- */

.site-header__logo {
    flex-shrink: 0;

    color: #263238;
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
}

/* -------------------------
   ナビゲーション
------------------------- */

.site-header__nav {
    min-width: 0;
}

.site-header__list {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 48px);

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

.site-header__item {
    flex-shrink: 0;
}

.site-header__link {
    position: relative;

    display: block;
    padding-block: 10px;

    color: #263238;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
}

/* ホバー・現在ページの下線 */
.site-header__link::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;

    height: 2px;
    content: "";

    background-color: var(--color-primary);

    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.site-header__link:hover::after,
.site-header__link--current::after {
    opacity: 1;
    transform: scaleX(1);
}

/* -------------------------
   固定ヘッダー分の余白
------------------------- */

.wrapper {
    padding-top: var(--header-height);
}

/* ページ内リンクがヘッダーに隠れないようにする */
html {
    scroll-padding-top: calc(var(--header-height) + 20px);
}

/* =========================
   Header / Tablet
========================= */

@media (min-width: 701px) and (max-width: 1210px) {

    :root {
        --header-height: 78px;
    }

    .site-header__inner {
        padding-inline: clamp(24px, 4vw, 48px);
    }

    .site-header__logo {
        font-size: clamp(1.6rem, 2.3vw, 2.2rem);
    }

    .site-header__list {
        gap: clamp(16px, 2.5vw, 30px);
    }

    .site-header__link {
        font-size: 1rem;
    }
}

/* =========================
   Header / Smartphone
========================= */

@media (max-width: 700px) {

    :root {
        --header-height: 106px;
    }

    .site-header {
        border-radius: 16px 16px 0 0;
    }

    .site-header__inner {
        display: block;

        min-height: var(--header-height);
        padding: 16px 18px 10px;
    }

    .site-header__logo {
        display: inline-block;
        margin-bottom: 10px;

        font-size: 1.5rem;
    }

    .site-header__nav {
        overflow-x: auto;
        padding-bottom: 4px;

        scrollbar-width: none;
    }

    .site-header__nav::-webkit-scrollbar {
        display: none;
    }

    .site-header__list {
        width: max-content;
        gap: 22px;
    }

    .site-header__link {
        padding-block: 6px;
        font-size: 1rem;
    }

    .site-header__link::after {
        bottom: 0;
    }
}

/* =========================
   Breadcrumb
========================= */

.breadcrumb {
    width: calc(100% - 60px);
    max-width: 1200px;
    margin-inline: auto;
    padding-top: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #8a8a8a;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 0;
    padding: 0;
    list-style: none;

    font-size: 1rem;
    line-height: 1.4;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    color: #263238;
}

.breadcrumb__item + .breadcrumb__item::before {
    margin-right: 12px;
    content: ">";
    color: #263238;
}

.breadcrumb__item a {
    color: inherit;
    text-decoration: none;
}

.breadcrumb__item a:hover {
    text-decoration: underline;
}


/* =========================
   First View
========================= */

.fv {
    position: relative;
    width: 100%;
    aspect-ratio: 1440 / 750;
    background-image: 
        linear-gradient(
        to bottom,
        rgba(115, 115, 115, 0) 0%,
        rgba(115, 115, 115, 0.35) 100%
        ),
        url("../img/top/fv.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

.fv__inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.fv__title {
    position: absolute;
    left: 40px;
    bottom: 40px;

    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 5rem;
    font-weight: 700;
}

.fv__info {
    position: absolute;
    right: 40px;
    bottom: 40px;

    display: flex;
    flex-direction: column;
}

.fv__lead {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.5;
}

.fv__company-name {
    font-size: 4rem;
    font-weight: 700;
}

.fv__company-en {
    font-size: 2rem;
    font-weight: 700;
}

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

    .fv__title {
    font-size: clamp(3rem, 5vw, 5rem);
    }

    .fv__lead {
        font-size: clamp(1.5rem, 2vw, 2.25rem);
    }

    .fv__company-name {
        font-size: clamp(2.5rem, 2vw, 4rem);;
    }

    .fv__company-en {
        font-size: clamp(1rem, 2vw, 2rem);;
    }

}

@media screen and (max-width: 1024px) {
    .fv__title {
    font-size: clamp(2rem, 5vw, 5rem);
    }

    .fv__lead {
        font-size: clamp(1rem, 2vw, 2.25rem);
    }

    .fv__company-name {
        font-size: clamp(2rem, 2vw, 4rem);;
    }

    .fv__company-en {
        font-size: clamp(1rem, 2vw, 2rem);;
    }

}

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

    .fv__title {
        font-size: clamp(1rem, 5vw, 5rem);
        right: 20px;
        bottom: 20px;
        }

    .fv__info {
        right: 20px;
        bottom: 20px;
        gap: 10px;
    }

    .fv__lead {
        font-size: clamp(0.5rem, 2vw, 2.25rem);
    }

    .fv__company-name {
        font-size: clamp(0.5rem, 3vw, 2.25rem);
    }

    .fv__company-en {
        font-size: clamp(0.5rem, 2vw, 2rem);
    }

}

/* =========================
   city-band
========================= */

    .city-band {
        width: 100%;
        overflow: hidden;
        padding: 64px 0;
    }

    .city-band__image {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
    }

/* =========================
   info
========================= */

    .info {
        --info-side-space: clamp(24px, 6.95vw, 100px);
        --info-bottom-space: clamp(40px, 4.45vw, 64px);
        --info-min-gap: clamp(20px, 2vw, 32px);
    }

    /* -------------------------
    共通ブロック
    ------------------------- */

    .info__block {
        /*
        外側余白を除いた範囲の中で、
        2列がはみ出さない幅を計算
        */
        --info-usable-width:
            calc(100% - var(--info-side-space));

        --info-column-width:
            min(
                600px,
                calc(
                    (var(--info-usable-width) - var(--info-min-gap)) / 2
                )
            );

        display: grid;
        grid-template-columns:
            minmax(0, var(--info-column-width))
            minmax(0, var(--info-column-width));

        justify-content: space-between;
        align-items: stretch;

        width: 100%;
        box-sizing: border-box;
        padding-bottom: var(--info-bottom-space);
    }

    /* 上段：左側に可変余白 */
    .info__block--top {
        padding-left: var(--info-side-space);
    }

    /* 下段：右側に可変余白 */
    .info__block--bottom {
        padding-right: var(--info-side-space);
    }

    /* -------------------------
    文章エリア
    ------------------------- */

    .info__content {
        width: 100%;
        min-width: 0;
    }

    .info__content--bottom {
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }

    .info__title {
        margin: 0 0 clamp(24px, 2.8vw, 40px);
        color: var(--color-primary);
        font-size: clamp(2rem, 2.8vw, 2rem);
        font-weight: 700;
        line-height: 1.5;
    }

    .info__title span {
        display: block;
    }

    .info__text {
        margin: 0;
        font-size: 1rem;
        line-height: 2;
    }

    /* -------------------------
    写真
    ------------------------- */

    .info__image {
        width: 100%;
        min-width: 0;
        overflow: hidden;
    }

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

    /* 上段：content側の左角 */
    .info__block--top .info__image img {
        border-radius: 20px 0 0 20px;
    }

    /* 下段：content側の右角 */
    .info__block--bottom .info__image img {
        border-radius: 0 20px 20px 0;
    }

    /* -------------------------
    下段イラスト
    ------------------------- */

    .info__illustration {
        margin-top: auto;
    }

    .info__illustration img {
        display: block;
        width: 100%;
        height: auto;
    }

    /* =========================
   info / Tablet
========================= */

@media (min-width: 701px) and (max-width: 1210px) {

    .info {
        --info-side-space: clamp(24px, 5vw, 56px);
        --info-bottom-space: clamp(40px, 5vw, 56px);
        --info-min-gap: clamp(20px, 3vw, 32px);
    }

    .info__block {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);
        column-gap: clamp(24px, 4vw, 40px);;
    }

    .info__content,
    .info__image {
        width: 100%;
        min-width: 0;
    }

    .info__title {
        margin-bottom: 24px;
        font-size: clamp(1.5rem, 2vw, 2rem);
        line-height: 1.5;
    }

    .info__text {
        font-size: 1rem;
        line-height: 1.8;
    }

    .info__text br {
        display: none;
    }

    .info__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .info__block--top .info__image img {
        border-radius: 16px 0 0 16px;
    }

    .info__block--bottom .info__image img {
        border-radius: 0 16px 16px 0;
    }

    .info__illustration img {
        width: 100%;
        height: auto;
    }
}

/* =========================
   info / Smartphone
========================= */

@media (max-width: 700px) {

    .info {
        --info-side-space: 0;
        --info-bottom-space: 48px;
    }

    .info__block {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 28px;
        column-gap: 0;

        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }

    .info__block--top,
    .info__block--bottom {
        padding-inline: 0;
    }

    .info__content,
    .info__image {
        width: 100%;
        min-width: 0;
    }

    /* 上段：文章 → 写真 */
    .info__block--top .info__content {
        order: 1;
    }

    .info__block--top .info__image {
        order: 2;
    }

    /* 下段：文章・イラスト → 写真 */
    .info__block--bottom .info__content {
        order: 1;
    }

    .info__block--bottom .info__image {
        order: 2;
    }

    .info__content {
        box-sizing: border-box;
        padding-inline: 24px;
    }

    .info__content--bottom {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .info__title {
        margin-bottom: 24px;
        font-size: clamp(1.25rem, 4vw, 2rem);
        line-height: 1.5;
    }

    .info__text {
        font-size: 1rem;
        line-height: 1.9;
    }

    .info__text br {
        display: none;
    }

    .info__image {
        overflow: hidden;
    }

    .info__image img {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }

    /* スマホでは上側の角を丸める */
    .info__block--top .info__image img,
    .info__block--bottom .info__image img {
        border-radius: 0 0;
    }

    .info__illustration {
        margin-top: 28px;
    }

    .info__illustration img {
        display: block;
        width: 100%;
        height: auto;
    }
}

/* =========================
   service
========================= */

    .service {
        background-color: #86BCDA;
        padding-block: clamp(56px, 6vw, 46px);
    }

    .service__inner {
        width: calc(100% - 48px);
        max-width: 1280px;
        margin-inline: auto;
    }

    .service__heading {
        margin-bottom: clamp(32px, 4vw, 48px);
        color: #fff;
    }

    .service__heading-en {
        margin: 0;
        font-size: clamp(2.8rem, 4vw, 4rem);
        font-weight: 700;
        line-height: 1;
    }

    .service__heading-ja {
        margin: 6px 0 0;
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .service__grid {
        display: grid;
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);
        gap: clamp(28px, 3.5vw, 48px);
        align-items: stretch;
    }

    .service__card {
        box-sizing: border-box;
        padding: clamp(24px, 3vw, 36px);
        background-color: #fff;
        border-radius: 20px;
    }

    .service__card-heading {
        display: flex;
        align-items: center;
        gap: 16px;
        padding-bottom: 16px;
        margin-bottom: 20px;
        border-bottom: 1px dashed #83bbd8;
    }

    .service__icon {
        flex: 0 0 auto;
        width: 70px;
        height: 70px;
        object-fit: contain;
    }

    .service__catch {
        margin: 0 0 4px;
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .service__title {
        margin: 0;
        font-size: clamp(2rem, 2.4vw, 2.5rem);
        line-height: 1.35;
    }

    .service__text {
        margin: 0;
        font-size: 1rem;
        line-height: 2;
    }

    .service__image {
        overflow: hidden;
    }

    .service__image img {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 320px;
        object-fit: cover;
        border-radius: 20px;
    }

@media (min-width: 851px) and (max-width: 1100px) {
    .service__inner {
        width: calc(100% - 40px);
    }

    .service__grid {
        gap: 28px;
    }

    .service__card {
        padding: 24px;
    }

    .service__icon {
        width: 44px;
        height: 44px;
    }

    .service__catch {
        font-size: 1.25rem;
    }

    .service__title {
        font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    }

    .service__image img {
        min-height: 280px;
    }
}

@media (max-width: 850px) {
    .service {
        padding-block: 48px;
    }

    .service__inner {
        width: calc(100% - 32px);
    }

    .service__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

        /* 水まわりリフォーム */
    .service__grid > .service__card:nth-child(1) {
        order: 1;
    }

    .service__grid > .service__image:nth-child(2) {
        order: 2;
    }

    /* 給排水衛生設備工事 */
    .service__grid > .service__card:nth-child(4) {
        order: 3;
    }

    .service__grid > .service__image:nth-child(3) {
        order: 4;
    }

    /* 水道本管引き込み工事 */
    .service__grid > .service__card:nth-child(5) {
        order: 5;
    }

    .service__grid > .service__image:nth-child(6) {
        order: 6;
    }

    .service__card {
        padding: 22px;
    }

    .service__card-heading {
        align-items: flex-start;
    }

    .service__icon {
        width: 42px;
        height: 42px;
    }
  
    .service__catch {
        font-size: 0.85rem;
    }


    .service__title {
        font-size: 1.25rem;
    }

    .service__image img {
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }
}

/* =========================
   Facility Gallery
========================= */

    .facility-gallery {
        padding-block: clamp(48px, 6vw, 80px);
        background-color: var(--color-bg);
    }

    .facility-gallery__inner {
        display: grid;
        grid-template-columns:
            minmax(0, 30%)
            minmax(0, 55%);

        justify-content: space-between;
        align-items: start;
        width: 100%;
    }

    .facility-gallery__item {
        overflow: hidden;
    }

    .facility-gallery__item img {
        display: block;
        width: 100%;
        height: auto;
    }

    /* 左写真：中央側の右角を丸める */
    .facility-gallery__item--small img {
        border-radius: 0 20px 20px 0;
    }

    /* 右写真：中央側の左角を丸める */
    .facility-gallery__item--large img {
        border-radius: 20px 0 0 20px;
    }

/* =========================
   commitment
========================= */

    .commitment {
        padding-block: clamp(56px, 6vw, 88px);
        background-color: var(--color-bg);
    }

    .commitment__inner {
        width: calc(100% - 60px);
        max-width: 1200px;
        margin-inline: auto;
    }

    /* 見出し */

    .commitment__heading {
        margin-bottom: 40px;
    }

    .commitment__heading-en {
        margin: 0;
        color: #263238;
        font-size: clamp(3rem, 4vw, 4rem);
        font-weight: 700;
        line-height: 1;
    }

    .commitment__heading-ja {
        display: inline-block;
        margin: 4px 0 0;
        padding-inline: 16px;
        color: #263238;
        background-color: #83bbd8;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.5;
    }

    /* 導入文 */

    .commitment__intro {
        margin-bottom: 40px;
    }

    .commitment__intro p {
        margin: 0;
        font-size: 1rem;
        line-height: 1.9;
    }

    .commitment__intro p + p {
        margin-top: 4px;
    }

    /* 青い一覧エリア */

    .commitment__list {
        padding: 28px 40px;
        background-color: #83bbd8;
        border-radius: 20px;
    }

    /* 各項目 */

    .commitment__item {
        display: grid;
        grid-template-columns: 160px minmax(0, 1fr);
        column-gap: 32px;
        align-items: center;
        padding-block: 28px;
    }

    .commitment__item + .commitment__item {
        border-top: 2px dotted rgba(255, 255, 255, 0.9);
    }

    /* アイコン */

    .commitment__icon {
        overflow: hidden;
        background-color: #fff;
        border-radius: 16px;
    }

    .commitment__icon img {
        display: block;
        width: 100%;
        height: auto;
    }

    /* 文章 */

    .commitment__content {
        min-width: 0;
    }

    .commitment__title-wrap {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .commitment__number {
        display: grid;
        flex: 0 0 auto;
        width: 44px;
        height: 44px;
        place-items: center;

        color: #263238;
        background-color: #fff;
        border-radius: 50%;

        font-size: 2.4rem;
        font-weight: 700;
        line-height: 1;
    }

    .commitment__title {
        margin: 0;
        color: #263238;
        font-size: clamp(2rem, 2.3vw, 2rem);
        font-weight: 700;
        line-height: 1.4;
    }

    .commitment__text {
        margin: 0;
        color: #263238;
        font-size: 1rem;
        line-height: 2;
    }
    

/* =========================
   commitment / Tablet
========================= */

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

    .commitment__inner {
        width: calc(100% - 48px);
    }

    .commitment__list {
        padding: 24px 32px;
    }

    .commitment__item {
        grid-template-columns: 130px minmax(0, 1fr);
        column-gap: 28px;
        padding-block: 24px;
    }

    .commitment__title-wrap {
        gap: 16px;
        margin-bottom: 16px;
    }

    .commitment__number {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .commitment__title {
        font-size: clamp(1.25rem, 2.5vw, 2rem);
    }

}

/* =========================
   commitment / Smartphone
========================= */

@media (max-width: 700px) {

    .commitment {
        padding-block: 48px;
    }

    .commitment__inner {
        width: calc(100% - 32px);
    }

    .commitment__heading {
        margin-bottom: 28px;
    }

    .commitment__heading-en {
        font-size: 2.5rem;
    }

    .commitment__heading-ja {
        font-size: 1.2rem;
    }

    .commitment__intro {
        margin-bottom: 28px;
    }

    .commitment__list {
        padding: 12px 20px;
        border-radius: 16px;
    }

    .commitment__item {
        grid-template-columns: 1fr;
        row-gap: 20px;
        padding-block: 28px;
    }

    .commitment__icon {
        width: min(180px, 60%);
        margin-inline: auto;
    }

    .commitment__title-wrap {
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
    }

    .commitment__number {
        width: 36px;
        height: 36px;
        font-size: 1.8rem;
    }

    .commitment__title {
        flex: 1;
        font-size: 1.25rem;
    }

    .commitment__text br {
        display: none;
    }
}

/* =========================
   Service Area
========================= */

    .service-area {
        padding-block: clamp(56px, 6vw, 88px);
        background-color: var(--color-bg);
    }

    .service-area__inner {
        display: grid;
        grid-template-columns:
            minmax(0, 600px)
            minmax(0, 600px);

        justify-content: space-between;
        align-items: center;

        width: 100%;
    }

    /* -------------------------
    左側
    ------------------------- */

    .service-area__content {
        min-width: 0;
        padding-left: clamp(24px, 6.95vw, 100px);
    }

    /* 見出し */

    .service-area__heading {
        width: min(100%, 420px);
        margin-bottom: 32px;
    }

    .service-area__heading-en {
        margin: 0;
        color: #263238;
        font-size: clamp(3rem, 4vw, 4rem);
        font-weight: 700;
        line-height: 1;
    }

    .service-area__heading-ja {
        display: inline-block;
        margin: 4px 0 0;
        padding-inline: 16px;
        color: #263238;
        background-color: #83bbd8;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.5;
    }

    /* 対応地域 */

    .service-area__cities {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;

        margin: 0 0 28px;
        padding: 0;
        list-style: none;
    }

    .service-area__cities li {
        min-width: 104px;
        padding: 8px 20px;

        background-color: #83bbd8;
        border-radius: 999px;

        color: #263238;
        font-size: 1.6rem;
        line-height: 1.4;
        text-align: center;
    }

    /* 説明文 */

    .service-area__text {
        margin: 0 0 32px;
        font-size: 1rem;
        line-height: 1.9;
    }

    /* 風景写真 */

    .service-area__photo {
        overflow: hidden;
        border-radius: 0 20px 20px 0;
        margin-left: calc(clamp(24px, 6.95vw, 100px) * -1);
    }

    .service-area__photo img {
        display: block;
        width: 100%;
        height: auto;
    }

    /* -------------------------
    地図
    ------------------------- */

    .service-area__map {
        min-width: 0;
        padding-right: clamp(24px, 5vw, 72px);
    }

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

/* =========================
   Service Area / Tablet
========================= */

@media (min-width: 701px) and (max-width: 1210px) {

    .service-area__inner {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        column-gap: clamp(32px, 5vw, 56px);
    }

    .service-area__content {
        padding-left: clamp(24px, 5vw, 56px);
    }

    .service-area__photo {
        margin-left: calc(clamp(24px, 5vw, 56px) * -1);
    }

    .service-area__map {
        padding-right: clamp(24px, 4vw, 48px);
    }

    .service-area__cities li {
        min-width: 88px;
        padding-inline: 16px;
        font-size: 1rem;
    }

    .service-area__text br {
        display: none;
    }
}

/* =========================
   Service Area / Smartphone
========================= */

@media (max-width: 700px) {

    .service-area {
        padding-block: 48px;
    }

    .service-area__inner {
        grid-template-columns: 1fr;
        row-gap: 32px;
    }

    .service-area__content {
        display: contents;
        padding-left: 0;
    }

    .service-area__heading,
    .service-area__cities,
    .service-area__text {
        margin-right: 24px;
        margin-left: 24px;
    }

    .service-area__heading {
        width: auto;
        margin-bottom: 0;
    }

    .service-area__heading-en {
        font-size: 2.5rem;
    }

    .service-area__heading-ja {
        font-size: 1.2rem;
    }

    .service-area__cities {
        gap: 10px;
        margin-bottom: 0;
    }

    .service-area__cities li {
        flex: 1;
        min-width: 0;
        padding: 8px 10px;
        font-size: 1.3rem;
    }

    .service-area__text {
        margin-bottom: 0;
        font-size: 1rem;
        line-height: 1.8;
    }

    .service-area__text br {
        display: none;
    }

    .service-area__map {
        padding-inline: 24px;
    }

    .service-area__photo {
        margin-left: 0;
        border-radius: 0;
    }

    .service-area__photo img {
        width: 100%;
        height: auto;
    }

    .service-area__map {
        display: none;
    }
}

/* =========================
   About
========================= */

.about {
    --about-visual-width: min(420px, 32vw);
    --about-visual-offset-x: clamp(24px, 3vw, 42px);
    --about-visual-offset-y: clamp(32px, 4vw, 56px);

    position: relative;
    overflow: hidden;
    padding-block: clamp(56px, 7vw, 96px);
    background-color: var(--color-bg);
}

.about__inner {
    display: grid;
    grid-template-columns:
        minmax(0, 600px)
        minmax(0, 520px);

    justify-content: space-between;
    align-items: center;

    width: calc(100% - 60px);
    max-width: 1240px;
    margin-inline: auto;
}

/* -------------------------
   左側
------------------------- */

.about__content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.about__heading {
    width: min(100%, 320px);
    margin-bottom: clamp(36px, 5vw, 56px);
}

.about__heading-en {
    margin: 0;
    color: #111;
    font-size: clamp(3.2rem, 4.5vw, 4rem);
    font-weight: 700;
    line-height: 1;
}

.about__heading-ja {
    display: inline-block;
        margin: 4px 0 0;
        padding-inline: 16px;
        color: #263238;
        background-color: #83bbd8;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.5;
}

.about__text {
    margin: 0 0 36px;
    font-size: 1rem;
    line-height: 2;
}

/* -------------------------
   ボタン
------------------------- */

.about__button {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: min(100%, 280px);
    box-sizing: border-box;
    padding: 14px 18px 14px 72px;

    color: #263238;
    background-color: #fff;
    border: 2px solid var(--color-primary);
    border-radius: 999px;

    font-size: 1.25rem;
    text-decoration: none;

    box-shadow: 4px 5px 0 rgba(38, 50, 56, 0.18);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.about__button:hover {
    transform: translateY(2px);
    box-shadow: 2px 3px 0 rgba(38, 50, 56, 0.18);
}

.about__button-arrow {
    font-size: 2rem;
    line-height: 1;
}

/* -------------------------
   右側ビジュアル
------------------------- */

.about__visual {
    position: relative;
    min-height: calc(
        (var(--about-visual-width) * 4 / 3)
        + var(--about-visual-offset-y)
    );
}

/* 背面の青い影 */
.about__visual-bg {
    position: absolute;
    top: 0;
    right: calc(
        (100vw - min(100vw - 60px, 1240px)) / -2
    );

    width: var(--about-visual-width);
    aspect-ratio: 3 / 4;

    background-color: var(--color-primary);
    border-radius: 20px 0 0 0;
}

/* 前面のイラスト */
.about__visual-image {
    position: absolute;
    top: var(--about-visual-offset-y);
    right: var(--about-visual-offset-x);
    z-index: 1;

    display: block;
    width: var(--about-visual-width);
    height: auto;
}

/* =========================
   About / Tablet
========================= */

@media (min-width: 701px) and (max-width: 1210px) {

    .about {
        --about-visual-width: min(360px, 36vw);
        --about-visual-offset-x: clamp(20px, 3vw, 32px);
        --about-visual-offset-y: clamp(28px, 4vw, 44px);
    }

    .about__inner {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 0.85fr);

        column-gap: clamp(32px, 5vw, 56px);
        width: calc(100% - 48px);
    }

    .about__heading {
        margin-bottom: 36px;
    }

    .about__heading-en {
        font-size: clamp(3.2rem, 5vw, 4.8rem);
    }

    .about__text br {
        display: none;
    }

    .about__visual-bg {
        right: calc(
            (100vw - min(100vw - 48px, 1240px)) / -2
        );
    }
}

/* =========================
   About / Smartphone
========================= */

@media (max-width: 700px) {

    .about {
        --about-visual-width: min(320px, 82vw);
        --about-visual-offset-x: 20px;
        --about-visual-offset-y: 28px;

        padding-block: 48px;
    }

    .about__inner {
        grid-template-columns: 1fr;
        row-gap: 40px;
        width: calc(100% - 40px);
    }

    .about__heading {
        width: min(100%, 280px);
        margin-bottom: 28px;
    }

    .about__heading-en {
        font-size: 2.5rem;
    }

    .about__heading-ja {
        font-size: 1.2rem;
    }

    .about__text {
        margin-bottom: 28px;
        line-height: 1.9;
    }

    .about__text br {
        display: none;
    }

    .about__button {
        width: 240px;
        padding-left: 60px;
        font-size: 1.4rem;
    }

    .about__visual {
        min-height: calc(
            (var(--about-visual-width) * 4 / 3)
            + var(--about-visual-offset-y)
        );
    }

    .about__visual-bg {
        right: calc(
            (100vw - (100vw - 40px)) / -2
        );
    }

    .about__visual-image {
        right: var(--about-visual-offset-x);
    }
}

/* =========================
   Contact
========================= */

.contact {
    padding-block: clamp(56px, 7vw, 96px);
    background-color: var(--color-bg);
}

.contact__inner {
    width: calc(100% - 60px);
    max-width: 1240px;
    margin-inline: auto;
}

/* -------------------------
   上段
------------------------- */

.contact__top {
    display: grid;
    grid-template-columns:
        minmax(0, 500px)
        minmax(0, 600px);

    justify-content: space-between;
    align-items: end;
    column-gap: clamp(40px, 6vw, 80px);

    margin-bottom: clamp(32px, 4vw, 48px);
}

/* -------------------------
   見出し・説明文
------------------------- */

.contact__content {
    min-width: 0;
}

.contact__heading {
    width: min(100%, 260px);
    margin-bottom: 24px;
}

.contact__heading-en {
    margin: 0;
    color: #111;
    font-size: clamp(3.2rem, 4.5vw, 4rem);
    font-weight: 700;
    line-height: 1;
}

.contact__heading-ja {
    display: inline-block;
        margin: 4px 0 0;
        padding-inline: 16px;
        color: #263238;
        background-color: #83bbd8;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.5;
}

.contact__text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.9;
}

/* -------------------------
   相談例
------------------------- */

.contact__action {
    min-width: 0;
}

.contact__examples {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;

    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.contact__examples li {
    position: relative;

    display: grid;
    min-height: 68px;
    place-items: center;

    box-sizing: border-box;
    padding: 10px 14px;

    color: #fff;
    background-color: #f89a4d;
    border-radius: 999px;

    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.contact__examples li::after {
    position: absolute;
    bottom: -10px;
    left: 50%;

    width: 0;
    height: 0;
    content: "";

    border-top: 12px solid #f89a4d;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;

    transform: translateX(-50%);
}

/* -------------------------
   電話番号
------------------------- */

.contact__phone {
    display: flex;
    align-items: center;
    gap: 20px;

    box-sizing: border-box;
    width: 100%;
    padding: 16px 24px;

    color: #222;
    background-color: #fff;
    border: 3px solid var(--color-primary);
    border-radius: 20px;

    text-decoration: none;
}

.contact__phone-icon {
    display: grid;
    flex: 0 0 auto;

    width: 76px;
    height: 96px;
    place-items: center;

    color: #555;
    font-size: 5rem;
    line-height: 1;
}

.contact__phone-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.contact__phone-lead {
    font-size: 1.8rem;
    line-height: 1.4;
}

.contact__phone-number {
    font-size: clamp(2rem, 4.5vw, 4rem);
    line-height: 1.1;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.contact__phone-hours {
    font-size: 1rem;
    line-height: 1.5;
}

/* -------------------------
   Google Map
------------------------- */

.contact__map {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.contact__map iframe {
    display: block;
    width: 100%;
    height: 520px;
    border: 0;
}

/* =========================
   Contact / Tablet
========================= */

@media (min-width: 701px) and (max-width: 1210px) {

    .contact__inner {
        width: calc(100% - 48px);
    }

    .contact__top {
        grid-template-columns:
            minmax(0, 0.85fr)
            minmax(0, 1.15fr);

        column-gap: clamp(28px, 4vw, 48px);
    }

    .contact__heading-en {
        font-size: clamp(3.2rem, 5vw, 4.8rem);
    }

    .contact__text br {
        display: none;
    }

    .contact__examples {
        gap: 8px;
    }

    .contact__examples li {
        min-height: 64px;
        padding-inline: 8px;
        font-size: 0.825rem;
    }

    .contact__phone {
        gap: 14px;
        padding: 14px 18px;
    }

    .contact__phone-icon {
        width: 60px;
        height: 80px;
        font-size: 4rem;
    }

    .contact__phone-lead {
        font-size: 1rem;
    }

    .contact__phone-hours {
        font-size: 1.1rem;
    }

    .contact__map iframe {
        height: 440px;
    }
}

/* =========================
   Contact / Smartphone
========================= */

@media (max-width: 800px) {

    .contact {
        padding-block: 48px;
    }

    .contact__inner {
        width: calc(100% - 40px);
    }

    .contact__top {
        grid-template-columns: 1fr;
        row-gap: 36px;
        margin-bottom: 32px;
    }

    .contact__heading {
        width: min(100%, 240px);
        margin-bottom: 24px;
    }

    .contact__heading-en {
        font-size: 2.5rem;
    }

    .contact__heading-ja {
        font-size: 1.2rem;
    }

    .contact__text {
        font-size: 1rem;
        line-height: 1.8;
    }

    .contact__examples br {
        display: none;
    }

    .contact__examples {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .contact__examples li {
        min-height: 0;
        padding: 12px 20px;
        border-radius: 12px;
        font-size: 0.825rem;
    }

    .contact__phone {
        gap: 12px;
        padding: 16px;
        border-width: 2px;
        border-radius: 16px;
    }

    .contact__phone-icon {
        width: 48px;
        height: 64px;
        font-size: 3.2rem;
    }

    .contact__phone-lead {
        font-size: 1rem;
    }

    .contact__phone-number {
        font-size: clamp(2rem, 9vw, 4rem);
    }

    .contact__phone-hours {
        font-size: 1rem;
    }

    .contact__map {
        border-radius: 16px;
    }

    .contact__map iframe {
        height: 360px;
    }
}

/* =========================
   Service Contact
========================= */

.service-contact {
    padding-block: clamp(64px, 8vw, 112px);
    background-color: var(--color-bg);
}

.service-contact__inner {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    column-gap: clamp(48px, 7vw, 96px);
    align-items: stretch;

    width: calc(100% - 60px);
    max-width: 1240px;
    margin-inline: auto;
}

.service-contact__area,
.service-contact__contact {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

/* -------------------------
   共通見出し
------------------------- */

.service-contact__heading {
    width: min(100%, 420px);
    margin-bottom: 32px;
}

.service-contact__heading-en {
    margin: 0;
    color: #111;
    font-size: clamp(3.6rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1;
}

.service-contact__heading-ja {
    display: inline-block;
        margin: 4px 0 0;
        padding-inline: 16px;
        color: #263238;
        background-color: #83bbd8;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.5;
}

/* -------------------------
   共通本文
------------------------- */

.service-contact__text {
    margin: 0 0 32px;
    color: #263238;
    font-size: 1rem;
    line-height: 1.9;
}

/* -------------------------
   対応エリア
------------------------- */

.service-contact__cities {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;

    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.service-contact__cities li {
    padding: 10px 12px;

    color: #263238;
    background-color: #83bbd8;
    border-radius: 999px;

    font-size: 1.6rem;
    line-height: 1.4;
    text-align: center;
}

.service-contact__map {
    margin-top: auto;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.service-contact__map iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
}

/* -------------------------
   相談例
------------------------- */

.service-contact__action {
    margin-top: auto;
}

.service-contact__examples {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;

    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.service-contact__examples li {
    position: relative;

    display: grid;
    min-height: 68px;
    place-items: center;

    box-sizing: border-box;
    padding: 10px 12px;

    color: #fff;
    background-color: #f89a4d;
    border-radius: 999px;

    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.service-contact__examples li::after {
    position: absolute;
    bottom: -10px;
    left: 50%;

    width: 0;
    height: 0;
    content: "";

    border-top: 12px solid #f89a4d;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;

    transform: translateX(-50%);
}

/* -------------------------
   電話番号
------------------------- */

.service-contact__phone {
    display: flex;
    align-items: center;
    gap: 20px;

    box-sizing: border-box;
    width: 100%;
    padding: 16px 20px;

    color: #222;
    background-color: #fff;
    border: 3px solid var(--color-primary);
    border-radius: 20px;

    text-decoration: none;
}

.service-contact__phone-icon {
    display: grid;
    flex: 0 0 auto;

    width: 72px;
    height: 88px;
    place-items: center;

    color: #555;
    font-size: 4.8rem;
    line-height: 1;
}

.service-contact__phone-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.service-contact__phone-lead {
    font-size: 1.7rem;
    line-height: 1.4;
}

.service-contact__phone-number {
    font-size: clamp(3rem, 4vw, 4rem);
    line-height: 1.1;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.service-contact__phone-hours {
    font-size: 1.2rem;
    line-height: 1.5;
}

/* =========================
   Service Contact / Tablet
========================= */

@media (min-width: 701px) and (max-width: 1210px) {

    .service-contact__inner {
        width: calc(100% - 48px);
        column-gap: clamp(32px, 5vw, 56px);
    }

    .service-contact__heading-en {
        font-size: clamp(3.2rem, 5vw, 4rem);
    }

    .service-contact__text {
        font-size: 1.3rem;
    }

    .service-contact__text br {
        display: none;
    }

    .service-contact__cities {
        gap: 8px;
    }

    .service-contact__cities li {
        padding-inline: 8px;
        font-size: 1.4rem;
    }

    .service-contact__examples {
        gap: 8px;
    }

    .service-contact__examples li {
        min-height: 64px;
        padding-inline: 8px;
        font-size: 1.1rem;
    }

    .service-contact__phone {
        gap: 12px;
        padding: 14px;
    }

    .service-contact__phone-icon {
        width: 56px;
        height: 72px;
        font-size: 3.8rem;
    }

    .service-contact__phone-lead {
        font-size: 1rem;
    }

    .service-contact__phone-hours {
        font-size: 1rem;
    }

    .service-contact__map iframe {
        height: 300px;
    }
}

/* =========================
   Service Contact / Smartphone
========================= */

@media (max-width: 700px) {

    .service-contact {
        padding-block: 48px;
    }

    .service-contact__inner {
        grid-template-columns: 1fr;
        row-gap: 64px;

        width: calc(100% - 40px);
    }

    .service-contact__heading {
        width: min(100%, 300px);
        margin-bottom: 24px;
    }

    .service-contact__heading-en {
        font-size: 2.5rem;
    }

    .service-contact__heading-ja {
        font-size: 1.2rem;
    }

    .service-contact__text {
        margin-bottom: 28px;
        font-size: 1rem;
        line-height: 1.8;
    }

    .service-contact__text br {
        display: none;
    }

    .service-contact__cities {
        gap: 8px;
    }

    .service-contact__cities li {
        padding: 8px 6px;
        font-size: 1.3rem;
    }

    .service-contact__map {
        margin-top: 0;
        border-radius: 16px;
    }

    .service-contact__map iframe {
        height: 300px;
    }

    .service-contact__action {
        margin-top: 0;
    }

    .service-contact__examples {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 24px;
    }

    .service-contact__examples li {
        min-height: 0;
        padding: 12px 16px;
        border-radius: 12px;
        font-size: 1rem;
    }

    .service-contact__examples li br {
        display: none;
    }

    .service-contact__examples li::after {
        display: none;
    }

    .service-contact__phone {
        gap: 12px;
        padding: 14px;
        border-width: 2px;
        border-radius: 16px;
    }

    .service-contact__phone-icon {
        width: 44px;
        height: 60px;
        font-size: 3rem;
    }

    .service-contact__phone-lead {
        font-size: 1rem;
    }

    .service-contact__phone-number {
        font-size: clamp(2rem, 4vw, 4rem);
    }

    .service-contact__phone-hours {
        font-size: 1rem;
    }
}

/* =========================
   Footer
========================= */

#site-footer {
    width: calc(100% - (var(--side-padding) * 2));
    max-width: var(--content-width);
    margin-inline: auto;
}

.site-footer {
    width: 100%;
    color: #fff;
    background-color: var(--color-primary);
}

.site-footer__inner {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, auto);

    justify-content: space-between;
    align-items: stretch;
    column-gap: clamp(48px, 8vw, 120px);

    box-sizing: border-box;
    min-height: 220px;
    padding:
        clamp(36px, 4vw, 56px)
        clamp(24px, 4.5vw, 64px)
        20px;
}

/* -------------------------
   会社情報
------------------------- */

.site-footer__company-name {
    margin: 0 0 18px;

    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 700;
    line-height: 1.4;
}

.site-footer__address,
.site-footer__hours,
.site-footer__holiday {
    margin: 0;

    color: inherit;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.8;
}

.site-footer__hours {
    margin-top: 6px;
}

.site-footer__holiday {
    margin-top: 6px;
}

.site-footer__holiday span {
    margin-left: 14px;
}

/* -------------------------
   右側
------------------------- */

.site-footer__right {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

/* ナビゲーション */

.site-footer__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px clamp(24px, 3vw, 48px);

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

.site-footer__list a {
    position: relative;

    display: block;
    padding-block: 6px;

    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
}

.site-footer__list a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    height: 1px;
    content: "";

    background-color: #fff;

    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.site-footer__list a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

/* コピーライト */

.site-footer__copyright {
    margin: 24px 0 0;
    text-align: right;
}

.site-footer__copyright small {
    font-size: 1rem;
    line-height: 1.5;
}

/* =========================
   Footer / Tablet
========================= */

@media (min-width: 701px) and (max-width: 1210px) {

    .site-footer__inner {
        column-gap: 40px;
        padding-inline: clamp(24px, 4vw, 48px);
    }

    .site-footer__company-name {
        font-size: clamp(1rem, 3vw, 1.5rem);
    }

    .site-footer__address,
    .site-footer__hours,
    .site-footer__holiday {
        font-size: 1rem;
    }

    .site-footer__holiday span {
        display: block;
        margin-left: 0;
    }

    .site-footer__list {
        gap: 14px 24px;
    }

    .site-footer__list a {
        font-size: 1rem;
    }
}

/* =========================
   Footer / Smartphone
========================= */

@media (max-width: 700px) {

    .site-footer__inner {
        grid-template-columns: 1fr;
        row-gap: 32px;

        min-height: 0;
        padding: 36px 20px 20px;
    }

    .site-footer__company-name {
        margin-bottom: 16px;
        font-size: 1.5rem;
    }

    .site-footer__address,
    .site-footer__hours,
    .site-footer__holiday {
        font-size: 0.825rem;
    }

    .site-footer__holiday span {
        display: block;
        margin-left: 0;
    }

    .site-footer__right {
        align-items: flex-start;
    }

    .site-footer__list {
        display: grid;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        width: 100%;
        gap: 12px 24px;
    }

    .site-footer__list a {
        font-size: 1rem;
    }

    .site-footer__copyright {
        width: 100%;
        margin-top: 32px;
        text-align: left;
    }

    .site-footer__copyright small {
        font-size: 1rem;
    }
}