@charset "UTF-8";

/*====================================================================================================

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。
　- bootstrap.min.css   Bootstrapコンポーネントを利用するためのCSS。基本触らないこと。
　- all.min.css         Font Awesome を利用するためのCSS。基本触らないこと。
　- aos.css             AOSを利用するためのCSS。基本触らないこと。

　//基本的には変更しないCSS
　- base.css            基本の文字設定や、Webフォントの読み込みなど。基本触らなくてもOK。

　//メインで利用しているCSS
　- common.css          ヘッダー、フッター、下層ページのタイトルなど、共通ページレイアウトを記載したCSS
　- stlye.css           各ページ固有のレイアウトを記載したCSS

　//補助的に利用しているCSS
　- module.css          見出しやリスト、テーブルなど、共通利用できるパーツをまとめたCSS
　- utility.css         マージンやパディング、文字サイズや文字色など、補助的に利用できるCSS

====================================================================================================*/

.sp.tb,
.sp {
    display: none;
}

.tb {
    display: none;
}

.pc.tb,
.pc {
    display: block;
}

@media print,
screen and (max-width:1199px) {
    .sp {
        display: none;
    }

    .sp.tb,
    .pc.tb,
    .tb {
        display: block;
    }

    .pc {
        display: none;
    }
}

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

    .sp.tb,
    .sp {
        display: block;
    }

    .pc.tb,
    .tb {
        display: none;
    }

    .pc {
        display: none;
    }
}

body.no-scroll {
    overflow: hidden;
    touch-action: none;
    overscroll-behavior: none;
}

.f-point {
    font-family: var(--point-font);
}

.f-en {
    font-family: var(--en-font);
}

.bg-normal {
    background-color: var(--bg-color);
}

.bg-grad {
    background: var(--gradient-water);
}

.bg-noise {
    background: url(../images/common/bg.jpg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.bg-soft {
    background-color: #f7fbf9;
}

.bg-soft-line {
    background-color: #f7fbf9;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.bg-2 {
    background-color: #FBE3C1;
}

.text-c-primary {
    color: var(--primary-deep-color);
    font-weight: 600;
}

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


/*------------------------------------------------------------------
  paging
------------------------------------------------------------------*/

.paging {
    display: flex;
    justify-content: center;
    column-gap: 10px;
}

.paging-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #aaa;
    color: #898989;
    transition: .2s ease-out;
}

.paging-text a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.25rem;
    transition: .2s ease-out;
    background-color: var(--white-color);
}

.paging-text.current {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff !important;
    pointer-events: none;
    font-size: 1.25rem;
}


/* ホバー時動作 */

@media (hover:hover) and (pointer:fine) {
    .paging-text:hover {
        background: var(--accent-color);
        border-color: var(--primary-color);
    }

    .paging-text:hover a {
        color: #fff !important;
        background: var(--primary-color);
    }
}

@media screen and (max-width:767px) {
    .paging {
        column-gap: 5px;
    }

    .paging-text {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}


/* =================================================
header
================================================= */

.l-header {
    --header-height: 116px;
    --contact-overhang: 32px;
    --contact-button-width: clamp(12rem, 13.5vw, 14.25rem);
    --contact-button-space: calc(var(--contact-button-width) + clamp(1.5rem, 2vw, 2.5rem));
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    height: var(--header-height);
    padding-left: clamp(1.5rem, 2vw, 2.25rem);
    background-color: rgba(255, 255, 255, 0.98);
    /* box-shadow: 0 1px 0 rgba(13, 13, 13, 0.08); */
    overflow: visible;
    transition: .2s ease-out;
}

.l-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: none;
}

.l-header__inner {
    width: 100%;
    min-width: 0;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    overflow: visible;
}

.l-header__brand {
    flex-shrink: 0;
}

.l-header__controls {
    display: flex;
    align-items: center;
    align-self: stretch;
    gap: clamp(1.5rem, 2.4vw, 3rem);
    min-width: 0;
    overflow: visible;
}

.l-header__menu {
    display: flex;
    align-items: center;
    gap: clamp(2.5rem, 3vw, 4.5rem);
    min-width: 0;
    height: 100%;
    overflow: visible;
}


/* =================================================
logo
================================================= */

.l-header__logo {
    margin: 0;
    flex-shrink: 0;
}

.l-header__logo a {
    display: block;
    width: 13rem;
}

.l-header__logo img {
    display: block;
    width: 100%;
    height: auto;
}


/* =================================================
nav
================================================= */

.l-header__nav {
    display: flex;
    align-items: center;
    min-width: 0;
}

.l-header__nav-list {
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, 2vw, 2.5rem);
}

.l-header__nav-item {
    position: relative;
}

.l-header__nav-link {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--black-color);
    white-space: nowrap;
    transition: .15s ease-in-out;
}

/* .l-header__nav-link::before {
    content: "";
    position: absolute;
    bottom: -.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0;
    transition: .15s ease-in;
} */

.l-header__nav-link.active {
    color: var(--accent-color);
}

.l-header__nav-link.active::before {
    /* opacity: 1; */
}

.l-header__nav-link .l-header__nav-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1rem;
    height: 1rem;
    margin-right: .25rem;
}

.l-header__nav-link .l-header__nav-icon::before {
    content: "";
    display: block;
    width: .7rem;
    aspect-ratio: 1;
    mask-image: url(../images/common/icon--dropdown.png);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: var(--primary-color);
    transition: .15s ease-in;
}

.l-header__nav-trigger {
    appearance: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

@media (hover:hover) and (pointer:fine) {
    .l-header__nav-link:hover {
        color: var(--accent-color);
    }

    .l-header__nav-link:hover::before {
        opacity: 1;
    }
}


/* =================================================
dropdown
================================================= */

.l-header__nav-item--has-dropdown>.l-header__nav-link:hover::before {
    opacity: 0;
}

.l-header__dropdown {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    width: max-content;
    padding: 1rem 2rem;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, .6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 0 4px rgba(223, 223, 223, 0.1);
    line-height: 2.5;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .18s ease;
}

.l-header__dropdown-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.l-header__dropdown-item::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    background-color: var(--primary-color);
    border-radius: 100%;
    opacity: 0;
    transition: .15s ease-in;
}

.l-header__dropdown-link {
    display: block;
    width: fit-content;
    white-space: nowrap;
    font-weight: 500;
    transition: .2s ease-out;
}

.l-header__dropdown-item:has(.l-header__dropdown-link.active)::after,
.l-header__dropdown-item:hover::after {
    opacity: 1;
}

@media (hover:hover) and (pointer:fine) {
    .l-header__nav-item--has-dropdown::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 1rem;
    }

    .l-header__nav-item--has-dropdown:hover>.l-header__dropdown,
    .l-header__nav-item--has-dropdown>.l-header__dropdown:hover {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}


/* =================================================
cta
================================================= */

.l-header__cta {
    position: relative;
    display: flex;
    align-items: center;
    align-self: center;
    gap: clamp(2.5rem, 3vw, 4.5rem);
    flex-shrink: 0;
    height: var(--header-height);
    padding-right: var(--contact-button-space);
    padding-bottom: 0;
}


/* =================================================
tell
================================================= */

.c-tel {
    display: flex;
    align-items: center;
    gap: .5rem;
    line-height: 1;
    color: var(--black-color);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: .04em;
    white-space: nowrap;
}

.c-tel .icon {
    width: .75em;
    height: .75em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-tel .icon--tel::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    -webkit-mask: url("../images/common/icon-tel.svg") center / contain no-repeat;
    mask: url("../images/common/icon-tel.svg") center / contain no-repeat;
    background-color: var(--black-color);
    margin: 1px;
}


/* =================================================
contact button
================================================= */

.c-contact-button,
.c-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--gradient-primary);
    color: var(--white-color);
    letter-spacing: .1em;
    white-space: nowrap;
    transition: filter .2s ease-in-out, background-color .2s ease-in-out;
}

.c-button {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    min-width: 240px;
    width: fit-content;
    padding: 1rem 1.5rem;
    text-align: center;
    transition: .2s ease-out;
}

.c-contact-button {
    position: absolute;
    top: 0;
    right: 0;
    justify-content: center;
    gap: 1rem;
    width: var(--contact-button-width);
    min-width: 12rem;
    height: calc(var(--header-height) + var(--contact-overhang));
    min-height: calc(var(--header-height) + var(--contact-overhang));
    padding: 1.5rem 1rem;
    text-align: center;
    background: var(--gradient-primary);
    transition: filter .2s ease-in-out, background-color .2s ease-in-out, height .2s ease-in-out, min-height .2s ease-in-out, top .2s ease-in-out, transform .2s ease-in-out, padding .2s ease-in-out;
}

@media screen and (min-width:1200px) {
    .l-header.scroll .c-contact-button.nav-tel {
        top: 0;
        height: var(--header-height);
        min-height: var(--header-height);
        padding-top: 0;
        padding-bottom: 0;
    }
}

.l-footer__cta .c-contact-button__icon::before {
    content: "";
    display: block;
    width: 1.5rem;
    aspect-ratio: 31 / 25;
    background-color: var(--primary-color);
    -webkit-mask: url(../images/common/icon-mail.svg) center / contain no-repeat;
    mask: url(../images/common/icon-mail.svg) center / contain no-repeat;
}

.l-footer__cta .c-contact-button {
    position: relative;
    top: initial;
    left: initial;
    width: 200px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: none;
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    transition: .2s ease-out;
}

@media screen and (max-width:1199px) {
    .l-footer__cta .c-contact-button {
        width: 240px;
    }


}

.c-button-normal {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-width: 300px;
    padding: 0.5rem 0.5rem 0.5rem 1.25rem;
    border: 1px solid var(--primary-color);
    border-radius: 0;
    background-color: var(--white-color);
    color: var(--gray-bg-color);
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
    transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}

.c-button-normal .c-button__text {
    position: relative;
    display: inline-block;
    color: inherit;
    transition: color .3s ease;
}

.c-button-normal:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--accent-color);
}

.c-button-normal .c-button__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 0;
    background-color: var(--primary-light-color);
    transition: background-color .3s ease;
}

.c-button-normal .c-button__icon::before {
    content: none;
}

.c-button-normal .arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    width: 0.72rem;
    height: 0.72rem;
    overflow: hidden;
    color: transparent;
    font-size: 0;
    line-height: 0;
    text-indent: 100%;
    white-space: nowrap;
    background-color: var(--primary-color);
    -webkit-mask: url("../images/common/icon-arrow.svg") center / contain no-repeat;
    mask: url("../images/common/icon-arrow.svg") center / contain no-repeat;
    transform: translate(-50%, -50%);
    transition: transform .3s ease, opacity .3s ease;
}

.c-button-normal:hover .c-button__icon {
    background-color: var(--primary-light-color);
}

.c-button-normal:hover .arrow {
    opacity: 1;
}

.c-button-normal:hover .arrow--old {
    transform: translate(135%, -175%);
    opacity: 0;
    /* 右外へスライドアウト */
}

.c-button-normal .arrow--new {
    transform: translate(-240%, 45%);
    opacity: 0;
    /* 初期：左外 */
}

.c-button-normal:hover .arrow--new {
    transform: translate(-50%, -50%);
    opacity: 1;
    /* 中央にスライドイン */
}


/* 動きを抑えたいユーザー配慮 */
@media screen and (max-width: 575px) {

    .c-button-normal {
        width: 100%;
        min-width: 0;
        padding: 0.75rem;
        padding-left: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .c-button-normal,
    .c-button-normal .c-button__text,
    .c-button-normal .arrow {
        transition: none !important;
    }
}


.c-contact-button__text,
.c-button__text {
    display: block;
}

.c-button__text {
    line-height: 1.2;
}

.c-contact-button__text {
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: .1em;
    font-weight: 500;
    margin-top: .25rem;
}

.l-footer .c-contact-button__text {
    font-size: initial;
    margin-top: 0;
    padding-top: .15em;
}

.c-contact-button__icon,
.c-button__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.75rem;
    flex-shrink: 0;
    transition: .2s ease-out;
}

.l-footer .c-contact-button__icon {
    width: 1.25rem;
}

.c-button__text,
.c-button__icon {
    line-height: 1;
}

.c-button__icon {
    width: 1.1rem;
    aspect-ratio: 1 / 1;
    border-radius: 0;
}

.c-contact-button__icon::before,
.c-button__icon::before {
    content: "";
    display: block;
    width: 1.75rem;
    aspect-ratio: 31 / 25;
    background-color: var(--white-color);
    -webkit-mask: url("../images/common/icon-mail.svg") center / contain no-repeat;
    mask: url("../images/common/icon-mail.svg") center / contain no-repeat;
    transition: .2s ease-out;
}

.c-button__icon::before {
    width: 1.1rem;
    aspect-ratio: 1 / 1;
}

.c-contact-button__icon.icon--triangle::before,
.c-button__icon.icon--triangle::before {
    width: 100%;
    aspect-ratio: 1 / 1;
    -webkit-mask: url("../images/common/icon-triangle-rounded.svg") center / contain no-repeat;
    mask: url("../images/common/icon-triangle-rounded.svg") center / contain no-repeat;
}

.c-contact-button:hover {
    filter: brightness(1.125);
}

.l-footer__cta .c-contact-button:hover {
    filter: none;
    opacity: 0.8;
}

.c-button:hover {
    opacity: 0.8;
}

.c-button.back {
    background: var(--gradient-gray) !important;
}

.back .c-button__icon::before {
    transform: rotate(180deg);
}

.back.c-button:hover {
    background-color: var(--black-color);
}

.back.c-button:hover .c-button__icon::before {
    transform: translateX(-.25rem) rotate(180deg);
}


/* =================================================
toggle
================================================= */

.l-header__toggle {
    display: none;
}

.l-header__toggle-lines {
    position: relative;
    width: 18px;
    height: 14px;
}

.l-header__toggle-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    border-radius: 2px;
    background: var(--white-color);
    transition: .2s ease-out;
}

.l-header__toggle-line:nth-child(1) {
    top: 0;
}

.l-header__toggle-line:nth-child(2) {
    top: calc(50% - 1px);
}

.l-header__toggle-line:nth-child(3) {
    bottom: 0;
}

.l-header__toggle.open .l-header__toggle-line:nth-child(1) {
    top: 6px;
    transform: rotate(-45deg);
}

.l-header__toggle.open .l-header__toggle-line:nth-child(2) {
    opacity: 0;
}

.l-header__toggle.open .l-header__toggle-line:nth-child(3) {
    top: 6px;
    transform: rotate(45deg);
}


/* =================================================
overlay
================================================= */

.l-header__overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background: rgb(8 57 42 / 90%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-out;
}

.l-header__overlay.open {
    opacity: 1;
    visibility: visible;
}

body {
    padding-top: 116px;
}


/* =================================================
responsive
================================================= */

@media screen and (max-width:1199px) {
    body {
        padding-top: 72px;
    }

    .l-header {
        --header-height: 72px;
        width: 100vw;
        padding: 12px 20px;
    }

    .l-header__inner {
        height: auto;
    }

    .l-header__logo a {
        width: 10rem;
    }

    .l-header__controls {
        justify-content: flex-end;
        align-self: center;
        gap: 0;
    }

    .l-header__menu {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        display: flex;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        max-width: 300px;
        height: 100dvh;
        padding: 100px 0 24px;
        padding-right: 0;
        background: var(--white-color);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transition: transform .2s ease-out, opacity .2s ease-out, visibility .2s ease-out;
        z-index: 3;
    }

    .l-header__controls.open .l-header__menu {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .l-header__menu::-webkit-scrollbar {
        display: none;
    }

    .l-header__nav {
        width: 100%;
    }

    .l-header__nav-list {
        display: block;
        margin-bottom: 0;
        width: 100%;
    }

    .l-header__nav-list>.l-header__nav-item:first-of-type {
        border-top: 1px solid var(--gray-color);
    }

    .l-header__nav-link {
        justify-content: space-between;
        align-items: baseline;
        padding: .75em 2rem;
        border-bottom: 1px solid var(--gray-color);
        width: 100%;
        font-weight: 500;
    }

    .l-header__nav-link::before {
        display: none;
    }

    .l-header__nav-link .l-header__nav-icon,
    .l-header__nav-link .l-header__nav-icon::before {
        display: none;
    }

    .l-header__dropdown {
        position: static;
        width: 100%;
        padding: 0;
        border-radius: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        font-size: 1rem;
        line-height: 1.6;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .l-header__nav-item--has-dropdown:hover {
        cursor: default;
    }

    .l-header__nav-item--has-dropdown>.l-header__nav-link:hover {
        color: var(--black-color);
    }

    .l-header__dropdown-item {
        border-bottom: 1px solid var(--gray-light-color);
    }

    .l-header__dropdown-item::after {
        display: none;
    }

    .l-header__dropdown-link {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: .75em 1rem .75em 2.5rem;
        transition: .3s all ease;
    }

    .l-header__dropdown-link::after {
        content: "";
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        width: 1rem;
        height: 1rem;
        mask-image: url(../images/common/icon-triangle-rounded.svg);
        mask-size: contain;
        mask-repeat: no-repeat;
        mask-position: center;
        background-color: var(--primary-color);
    }

    .l-header__dropdown-link.active {
        color: var(--primary-color);
    }

    .l-header__dropdown-link:active {
        opacity: .7;
    }

    .l-header__cta {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        width: 100%;
        height: auto;
        padding-right: 0;
        padding-inline: 2rem;
    }

    .c-tel {
        justify-content: center;
        font-size: 1.75rem;
    }

    .c-contact-button {
        position: static;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        min-width: 0;
        min-height: 0;
        height: auto;
        padding: 1.75rem 1.25rem;
    }

    .l-header__toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 48px;
        aspect-ratio: 1 / 1;
        border-radius: 0%;
        background: var(--gradient-primary);
        cursor: pointer;
        z-index: 4;
    }
}

@media screen and (max-width:575px) {
    .l-header {
        padding-inline: 16px;
    }

    .l-header__logo a {
        width: 8rem;
    }
}


/* =================================================
footer
================================================= */

.l-footer {
    padding: 4.8rem 0 1.5rem;
    background-color: var(--gray-bg-color);
    color: var(--white-color);
}

.l-footer a {
    color: var(--white-color);
}

.l-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(2.4rem, 3vw, 4rem);
}

.l-footer__top>* {
    min-width: 0;
}

.l-footer__primary {
    display: flex;
    align-items: flex-start;
    gap: clamp(2rem, 2.4vw, 4rem);
    flex: 1 1 auto;
    min-width: 0;
}

.l-footer__company {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.l-footer__brand {
    flex-shrink: 0;
}

.l-footer__brand a {
    display: block;
}

.l-footer__brand-image {
    width: 13rem;
    margin-bottom: 2rem;
}

.l-footer__brand-image img {
    display: block;
    width: 100%;
    height: auto;
}

.l-footer__company-info {
    font-weight: 400;
}

.l-footer__company-title {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1;
}

.l-footer__company-type {
    font-size: 1.25rem;
}

.l-footer__company-name-main {
    font-size: 1.75rem;
}

.l-footer__postal-code,
.l-footer__address-text {
    /* font-size: .875rem; */
}

.l-footer__address-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.l-footer__address-text a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.l-footer__address-text a:hover {
    opacity: 0.7;
}

.c-icon--map {
    width: .75rem;
    height: .75rem;
    flex-shrink: 0;
    color: var(--white-color);
}

.c-icon--map::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: .75rem;
    line-height: 1;
    color: currentColor;
}

.l-footer__certification {
    flex-shrink: 0;
    width: 7.875rem;
    padding-top: 0.4rem;
}

.l-footer__certification-image img {
    display: block;
    width: 100%;
    height: auto;
}

.l-footer__secondary {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}


.l-footer__nav-list {
    display: flex;
}

.l-footer__nav-item {
    line-height: 1;
    letter-spacing: .15em;
    padding-inline: 2.25rem;
    border-right: 1px solid var(--border-color);
}

.l-footer__nav-item:last-of-type {
    padding: 0 0 0 2.25rem;
    border: none;
}

.l-footer__nav-link {
    transition: opacity 0.3s ease;
}

.l-footer__nav-link:hover {
    opacity: 0.7;
}

.l-footer__nav-list--sub {
    position: relative;
}

.l-footer__nav-list--sub .l-footer__nav-item:nth-child(n+2) {
    padding-left: 1.6rem;
}

.l-footer__nav-list--sub::before {
    content: "";
    position: absolute;
    top: 2.5rem;
    left: 0.6rem;
    width: 2px;
    height: calc(100% - 2.2rem);
    background-color: var(--primary-color);
    opacity: .6;
}

.l-footer__cta {
    position: relative;
    margin-top: 2.25rem;
}

.l-footer__bottom {
    margin-top: 5rem;
    border-top: 1px solid var(--white-color);
    padding-top: 1.5rem;
}

.l-footer__copyright {
    font-size: .7rem;
    text-align: center;
}

@media screen and (max-width: 1199px) {
    .l-footer__brand-image {
        width: 10rem;
        margin-bottom: 2rem;
    }
}


/* =================================================
page top
================================================= */

.c-pagetop {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 900;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(.75rem);
    transition: opacity .2s ease-out, filter .2s ease-out, transform .2s ease-out, visibility 0s linear .2s;
}

.c-pagetop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
}

.c-pagetop__image {
    display: block;
    width: 4.5rem;
    height: auto;
}

@media (hover:hover) and (pointer:fine) {
    .c-pagetop:hover {
        filter: brightness(1.05);
        transform: translateY(-2px);
    }
}

@media screen and (max-width:575px) {
    .c-pagetop {
        right: .75rem;
        bottom: .75rem;
    }

    .c-pagetop__image {
        width: 2.25rem;
    }
}


/* =================================================
responsive
================================================= */

@media screen and (max-width: 1199px) {
    .l-footer__top {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        width: 640px;
        margin: 0 auto;
    }

    .l-footer__company-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .l-footer__primary {
        gap: 2.4rem;
    }

    .l-footer__secondary {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .l-footer__navigation {
        width: 240px;
    }

    .l-footer__nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .l-footer__nav-item {
        letter-spacing: .15em;
        border: none;
        border: 1px solid var(--border-color);
        text-align: center;
        padding: 0;
    }

    .l-footer__nav-item:last-of-type {
        padding: 0;
        border: 1px solid var(--border-color);
    }

    .l-footer__nav-link {
        display: block;
        width: 100%;
        padding: .65rem 2.25rem;
        line-height: 1.4;
    }


    .l-footer__address {
        text-align: center;
    }

    .l-footer__cta {
        position: relative;
        margin-top: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .l-footer__top {
        width: 100%;
        gap: 2rem;
    }

    .l-footer__primary {
        flex-direction: column-reverse;
        align-items: center;
        gap: 2rem;
        width: 100%;
    }

    .l-footer__nav-list {
        flex-direction: column;
        gap: .5rem;
    }

    .l-footer__nav-item,
    .l-footer__nav-item:last-of-type {
        padding-top: 0;
    }

    .l-footer__nav-link {
        padding: .45rem 2.25rem;
        line-height: 1.5;
    }

    .c-icon--map::before {
        line-height: 1.25;
        padding-bottom: .25em;
    }

    .l-footer__cta {
        position: relative;
        margin-top: .5rem;
    }

    .l-footer__bottom {
        margin: 1.75rem 0 0;
        padding-top: 1rem;
    }

    .l-footer__cta .c-contact-button {
        padding: 1em;
    }
}

@media screen and (max-width: 575px) {
    .l-footer {
        padding: 5rem 0 2rem;
    }

    .l-footer__company {
        align-items: center;
    }

    .l-footer__company {
        gap: .75rem;
    }

    .l-footer__company-category {
        font-size: .85rem;
    }

    .l-footer__company-title {
        margin-bottom: .25rem;
    }

    .l-footer__company-type,
    .l-footer__company-name-main {
        font-size: 1.125rem;
    }

    .l-footer__postal-code,
    .l-footer__address-text {
        line-height: 1.25;
    }

    .l-footer__copyright {
        font-size: .75rem;
    }

}


/*------------------------------------------------------------------
  l-media
------------------------------------------------------------------*/

.l-media {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.l-media--reverse {
    flex-direction: row-reverse;
}

.l-media__images {
    display: flex;
    align-items: flex-start;
    gap: 5%;
}

.l-media__image {
    margin: 0;
    overflow: hidden;
    /* width: 70%; */
}

.l-media__image img {
    display: block;
    width: 100%;
    height: auto;
}

.l-media__content {
    max-width: 750px;
    min-width: 0;
    width: 50%;
    text-align: justify;
    font-weight: 500;
}

.l-media__text {
    line-height: 2;
}

.l-media__text h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.65;
}

.l-media__button {
    margin-top: 3rem;
}

.sec-risk .l-media__button {
    margin-top: 5rem;
}


/*------------------------------------------------------------------
  responsive
------------------------------------------------------------------*/

@media screen and (max-width:1399px) {
    .l-media__content {
        max-width: 55%;
    }

    .l-media__images {
        width: 45%;
    }

    .l-media__image--sub {
        margin-top: 28px;
    }
}

@media screen and (max-width:991px) {
    .l-media {
        gap: 3rem;
    }

    .l-media__button {
        margin-top: 32px;
    }
}

@media screen and (max-width:767px) {
    .l-media {
        flex-direction: column;
    }

    .l-media__content {
        max-width: initial;
    }

    .l-media__images {
        width: 60%;
        margin-inline: auto;
    }

    .l-media__image--sub {
        margin-top: 24px;
    }

    .l-media__text {
        margin-top: 20px;
        line-height: 1.9;
    }

    .l-media__button {
        margin-top: 24px;
    }
}

@media screen and (max-width:576px) {
    .l-media__images {
        width: 80%;
    }
}


/* =================================
CARD
================================= */

.c-card {
    position: relative;
    filter: drop-shadow(0px 0px 8px rgba(151, 129, 67, 0.1));
}

.c-card--risk {
    padding-top: 60px;
}

.c-card__body {
    position: relative;
    padding: 2.25rem 2rem 2.25rem;
    background: var(--white-color);
    border-radius: 8px;
    text-align: center;
    z-index: 1;
}

.c-card__badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 5.5rem;
    height: 5.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* 半円背景 */

.c-card__badge::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 70px;
    background: var(--white-color);
    border-radius: 70px 70px 0 0;
    z-index: -1;
}

.c-card__badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* margin-top: 1.5rem; */
}

.c-card__title {
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid #ffc999;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: .075em;
    line-height: 1.4;
}

.c-card__text {
    line-height: 1.5;
    font-weight: 500;
}


/* ========================================
GRID
======================================== */

.l-grid {
    display: grid;
    gap: 40px;
}

.l-grid--risk {
    grid-template-columns: repeat(3, 1fr);
}

.l-grid--risk .c-card:nth-child(4) {
    grid-column: 1 / 2;
}

.l-grid--risk .c-card:nth-child(5) {
    grid-column: 3 / 4;
}


/* 下層ページ */

.child-page {
    background: var(--gradient-cream-2);
}


/* =========================================
lower mv
========================================= */

.c-lower-mv {
    position: relative;
    padding: 12rem 0 5rem;
}

.p-business .c-lower-mv {
    background-image: url(../images/mv_1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.p-land .c-lower-mv {
    background-image: url(../images/mv_2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.p-office .c-lower-mv {
    background-image: url(../images/office.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.p-contact .c-lower-mv {
    background-image: url(../images/contact.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.p-news .c-lower-mv {
    background-image: url(../images/mv_4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
}

.c-lower-mv::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(85deg, rgba(2, 187, 150, 0.95) 0%, rgba(2, 187, 150, 0.5) 40%, rgba(2, 187, 150, 0.0) 100%);
    z-index: 2;
}

.c-lower-mv__inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.25rem;
}

.c-lower-mv__title-en {
    position: relative;
    display: inline-block;
    margin: 0;
    font-size: 6rem;
    font-weight: 500;
    line-height: 1;
    font-family: var(--en-font);
    color: var(--white-color);
    border-bottom: 1px solid var(--white-color);
}

.c-lower-mv__title-jp {
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: .1em;
    padding-inline: .25em;
    color: var(--white-color);
    border-bottom: 1px solid var(--white-color);
}

@media screen and (max-width:991px) {
    .c-lower-mv__title-en {
        font-size: 4.5rem;
    }

    .c-lower-mv__deco {
        width: 2.5rem;
        height: 2.5rem;
        left: -1.5rem;
        top: -1.25rem;
    }

    .c-lower-mv__title-jp {
        font-size: 1.25rem;
    }
}

@media screen and (max-width:767px) {
    .c-lower-mv__title-en {
        font-size: 3.5rem;
    }
}

@media screen and (max-width:575px) {
    .c-lower-mv__inner {
        align-items: start;
        margin: 0 auto;
        gap: .5em;
    }

    .c-lower-mv__title-en {
        font-size: 3rem;
        line-height: initial;
        border: none;
    }

    .c-lower-mv__deco {
        width: 2.25rem;
        height: 2.25rem;
        left: -1.25rem;
        top: -1rem;
    }
}


/* =========================================
breadcrumb
========================================= */

.c-breadcrumb {
    padding: 1.6rem 0;
    opacity: .9;
}

.c-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.c-breadcrumb__item {
    font-size: .9rem;
    line-height: 1.6;
}

.c-breadcrumb__item:not(:last-child)::after {
    content: "/";
    margin-left: .8rem;
}

.c-breadcrumb__link {
    text-decoration: none;
}

.c-breadcrumb__link:hover {
    text-decoration: underline;
}

@media screen and (max-width:991px) {
    .c-breadcrumb {
        padding: 5rem 0 0;
    }
}

@media screen and (max-width:576px) {
    .c-breadcrumb {
        padding: 7rem 0 0;
    }
}

/* =================================================
header flicker fix
================================================= */

/* 描画のちらつき対策 */
.l-header__menu,
.l-header__nav,
.l-header__dropdown,
.l-header__overlay,
.l-header__toggle-line {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* ドロワー全体を別レイヤー化してちらつき軽減 */
@media screen and (max-width:1199px) {
    .l-header__menu {
        will-change: transform, opacity;
        transform: translate3d(100%, 0, 0);
    }

    .l-header__controls.open .l-header__menu {
        transform: translate3d(0, 0, 0);
    }
}

/* リサイズ中は transition を止める */
.is-resizing .l-header__menu,
.is-resizing .l-header__overlay,
.is-resizing .l-header__toggle-line,
.is-resizing .l-header__dropdown,
.is-resizing .l-header,
.is-resizing .l-header__controls,
.is-resizing .l-header__nav,
.is-resizing .l-header__cta {
    transition: none !important;
}

/* 念のため、SP時のドロップダウンの描画を安定化 */
@media screen and (max-width:1199px) {
    .l-header__dropdown {
        overflow: hidden;
        contain: layout paint;
    }
}
