@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;
}

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

.fa-map-marker-alt {
    color: var(--primary-color);
}


/* =========================
   icon（mask）
========================= */

.c-icon {
    display: inline-flex;
    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    width: .95rem;
    height: .95rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.c-icon.c-icon--instagram {
    -webkit-mask-image: url("../images/common/icon-instagram.svg");
    mask-image: url("../images/common/icon-instagram.svg");
    width: 1.875rem;
    height: 1.875rem;
    opacity: 1;
}

.c-icon.c-icon--instagram:hover {
    opacity: .7;
}

.c-icon.c-icon--map {
    -webkit-mask-image: url("../images/common/icon-map.svg");
    mask-image: url("../images/common/icon-map.svg");
    color: var(--primary-color);
    transform: scale(.99) translateY(.125em);
}

#pagetop-btn {
    cursor: pointer;
    transition: color .25s ease;
}

#pagetop-btn:hover {
    color: var(--primary-color);
}


/*------------------------------------------------------------------
  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(--primary-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: 80px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    padding: 1rem 3.125rem;
    transition: .2s ease-out;
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-gray-color);
}

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

.l-header__inner {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

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

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

.l-header__menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    min-width: 0;
}


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

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

.l-header__logo a {
    display: block;
    width: 8.4vw;
}

.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: 2.2rem;
}

.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: -.4rem;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--border-gray-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s cubic-bezier(.4, 0, .2, 1);
}

.l-header__nav-link:hover::before,
.l-header__nav-link.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.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::before {
        opacity: 1;
    }
}


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

.l-header__cta {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 4rem);
    flex-shrink: 0;
}


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

.c-tel {
    display: flex;
    align-items: center;
    gap: .5rem;
    line-height: 1;
    font-size: 1.5rem;
    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%;
    mask-image: url(../images/common/icon--tell.png);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: var(--primary-color);
}


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

header .c-contact-button {
    justify-content: center;
}

.c-contact-button,
.c-button {
    display: flex;
    align-items: center;
    padding: .75rem 3rem;
    background: var(--accent-color);
    line-height: 1;
    color: var(--white-color);
    white-space: nowrap;
    transition: .2s ease-out;
}

.view-more {
    background-color: transparent;
    color: var(--btn-black-color);
}

footer .c-contact-button {
    display: flex;
    align-items: center;
    padding: 1.25rem 1rem 1.25rem 2rem;
    background: var(--white-color);
    line-height: 1;
    color: var(--primary-color);
    white-space: nowrap;
    transition: .2s ease-out;
    gap: 6rem;
    margin-top: 1rem;
}

.c-button {
    justify-content: space-between;
    gap: initial;
    min-width: 240px;
    width: fit-content;
}

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

.c-contact-button__icon,
.c-button__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    /* border-radius: 50%; */
    transition: .2s ease-out;
}

.c-contact-button__icon::before,
.c-button__icon::before {
    content: "";
    display: block;
    width: 1.125rem;
    height: 1.125rem;
    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;
    transition: .2s ease-out;
}

.c-contact-button:hover,
.c-button:hover {
    background: var(--primary-color);
}

footer .c-contact-button:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.c-contact-button:hover .c-contact-button__icon::before,
.c-button:hover .c-button__icon::before {
    /* transform: translateX(.25rem); */
}

.c-contact-button__icon {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    overflow: hidden;
    vertical-align: middle;
}

.c-contact-button__icon::before,
.c-contact-button__icon::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: currentColor;
    width: 1rem;
    height: 1rem;
    -webkit-mask: url("../images/common/icon-arrow.svg") no-repeat center / contain;
    mask: url("../images/common/icon-arrow.svg") no-repeat center / contain;
    transition: transform 0.4s ease;
}


/* 表示中の矢印 */

.c-contact-button__icon::before {
    transform: translateX(0);
}


/* 次に出る矢印は左で待機 */

.c-contact-button__icon::after {
    transform: translateX(-120%);
}


/* ホバー時：今の矢印は右へ抜ける */

.c-contact-button:hover .c-contact-button__icon::before {
    transform: translateX(120%);
}


/* 新しい矢印が左から入る */

.c-contact-button:hover .c-contact-button__icon::after {
    transform: translateX(0);
}

.c-button.back {
    background-color: var(--gray-dark-color);
}

.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);
}


/* =================================================
c-outline-button
================================================= */

.c-outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    width: fit-content;
    padding: 1.5rem 1.5rem 1.5rem 2.25rem;
    border: 1px solid var(--black-color);
    border-radius: 4px;
    background-color: transparent;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.c-outline-button-w {
    border: 1px solid var(--white-color);
    color: var(--white-color);
}

.c-outline-button__text {
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
}

.c-outline-button__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    transition: transform .2s ease, border-color .2s ease;
}

.c-outline-button__icon::before {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    -webkit-mask: url("../images/common/icon-arrow.svg") center / contain no-repeat;
    mask: url("../images/common/icon-arrow.svg") center / contain no-repeat;
    background-color: var(--black-color);
}

.c-outline-button-w .c-outline-button__icon::before {
    background-color: var(--white-color);
}

.c-button .c-outline-button__icon::before {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    -webkit-mask: url("../images/common/icon-arrow.svg") center / contain no-repeat;
    mask: url("../images/common/icon-arrow.svg") center / contain no-repeat;
    background-color: var(--white-color);
}

.c-button.back .c-outline-button__icon::before {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    -webkit-mask: url("../images/common/icon-arrow.svg") center / contain no-repeat;
    mask: url("../images/common/icon-arrow.svg") center / contain no-repeat;
    transform: rotate(180deg);
    background-color: var(--white-color);
}

@media (hover:hover) and (pointer:fine) {
    .c-outline-button:hover {
        color: var(--white-color);
        background-color: var(--black-color);
    }
    .c-outline-button:hover .c-outline-button__icon::before {
        background-color: var(--white-color);
    }
    .c-outline-button-w:hover {
        color: var(--black-color);
        background-color: #C5DA3D;
    }
    .c-outline-button-w:hover .c-outline-button__icon::before {
        background-color: var(--black-color);
    }
}


/* =================================================
text swap button animation
================================================= */

.js-char-button {
    overflow: hidden;
}

.js-char-button .c-outline-button__text {
    position: relative;
    display: block;
    overflow: hidden;
    height: 1.2em;
    line-height: 1.2;
    white-space: nowrap;
}

.js-char-button .c-outline-button__text::before,
.js-char-button .c-outline-button__text::after {
    content: attr(data-text);
    display: block;
    line-height: 1.2;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}


/* 上に見えてる文字 */

.js-char-button .c-outline-button__text::before {
    transform: translateY(0);
}


/* 下で待機してる文字 */

.js-char-button .c-outline-button__text::after {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(0);
}

@media (hover:hover) and (pointer:fine) {
    .js-char-button:hover .c-outline-button__text::before {
        transform: translateY(-100%);
    }
    .js-char-button:hover .c-outline-button__text::after {
        transform: translateY(-100%);
    }
}


/* =========================
   contact button text swap
========================= */

.view-more .c-contact-button__text {
    color: var(--btn-black-color);
}

.js-char-button .c-contact-button__text {
    position: relative;
    display: block;
    overflow: hidden;
    height: 1em;
    line-height: 1;
    color: transparent;
}

.js-char-button .c-contact-button__text::before,
.js-char-button .c-contact-button__text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    width: 100%;
    color: var(--white-color);
    line-height: 1;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

footer .js-char-button .c-contact-button__text::before,
footer .js-char-button .c-contact-button__text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    width: 100%;
    color: var(--primary-color);
    line-height: 1;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.js-char-button .c-contact-button__text::before {
    top: 0;
    transform: translateY(0);
}

.js-char-button .c-contact-button__text::after {
    top: 100%;
    transform: translateY(0);
}

@media (hover:hover) and (pointer:fine) {
    .js-char-button:hover .c-contact-button__text::before {
        transform: translateY(-100%);
    }
    .js-char-button:hover .c-contact-button__text::after {
        transform: translateY(-100%);
    }
}


/* =========================
   view-more button
========================= */

.view-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    padding: .5rem 0;
    border-bottom: 1px solid var(--border-gray-color);
    background: transparent;
    color: var(--black-color);
    width: 200px;
}

.view-more.c-contact-button:hover {
    background-color: transparent;
}

.view-more .c-contact-button__text {
    position: relative;
    display: block;
    overflow: hidden;
    height: 1.2em;
    line-height: 1.2;
    color: transparent;
}

.view-more .c-contact-button__text::before,
.view-more .c-contact-button__text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    width: 100%;
    color: var(--black-color);
    line-height: 1.2;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.view-more .c-contact-button__text::before {
    top: 0;
    transform: translateY(0);
}

.view-more .c-contact-button__text::after {
    top: 100%;
    transform: translateY(0);
}

.view-more .c-contact-button__icon {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 30px;
    background: var(--primary-color);
    overflow: hidden;
    flex-shrink: 0;
}

.view-more .c-contact-button__icon::before,
.view-more .c-contact-button__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 1rem;
    height: 1rem;
    background-color: var(--white-color);
    -webkit-mask: url("../images/common/icon-arrow.svg") no-repeat center / contain;
    mask: url("../images/common/icon-arrow.svg") no-repeat center / contain;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.view-more .c-contact-button__icon::before {
    left: 50%;
    transform: translate(-50%, -50%);
}

.view-more .c-contact-button__icon::after {
    left: 50%;
    transform: translate(calc(-50% - 40px), -50%);
}

.c-contact-button__icon.link-blank {
    background-color: var(--border-gray-color);
}

@media (hover:hover) and (pointer:fine) {
    .view-more:hover .c-contact-button__icon::before {
        transform: translate(calc(-50% + 40px), -50%);
    }
    .view-more:hover .c-contact-button__icon::after {
        transform: translate(-50%, -50%);
    }
}


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


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

@media screen and (max-width:1199px) {
    .l-header {
        --header-height: 2.5rem;
        width: 100vw;
        padding: 8px 20px;
    }
    .l-header__logo a {
        width: 8rem;
    }
    .l-header__controls {
        justify-content: flex-end;
        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;
        background: var(--bg-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-light-color);
    }
    .l-header__nav-link {
        justify-content: space-between;
        align-items: baseline;
        padding: .75em 2rem;
        border-bottom: 1px solid var(--gray-light-color);
        width: 100%;
        font-weight: 500;
    }
    .l-header__nav-link::before {
        display: none;
    }
    .l-header__nav-link::after {
        content: "";
        position: absolute;
        left: 0rem;
        right: 0rem;
        bottom: 0;
        height: 1px;
        background-color: var(--primary-color);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform .25s cubic-bezier(.4, 0, .2, 1);
    }
    .l-header__nav-link:hover::after,
    .l-header__nav-link:active::after,
    .l-header__nav-link.active::after {
        transform: scaleX(1);
        transform-origin: left;
    }
    .l-header__nav-link.active {
        color: var(--primary-color);
    }
    .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%;
        padding-inline: 2rem;
    }
    .c-contact-button {
        justify-content: space-between;
    }
    .l-header__toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        width: var(--header-height);
        min-width: 40px;
        aspect-ratio: 1 / 1;
        background: var(--accent-color);
        cursor: pointer;
        z-index: 4;
    }
}


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

.l-footer {
    border-top: 1px solid var(--border-gray-color);
    padding: 9.375rem 0 0;
}

.l-footer__contact {
    padding: 6% 0;
    background-color: var(--primary-dark-color);
}

.l-footer__contact-intro {
    margin-right: 7%;
    padding-right: 7%;
    padding-block: 1rem;
    border-right: 1px solid var(--border-gray-color);
}

.l-footer__contact-title {
    font-size: 1.5rem;
}

.l-footer__contact-text {
    margin-top: 2rem;
}

.l-footer__primary {
    display: flex;
    flex-direction: column;
}

.l-footer__secondary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3.5rem;
    z-index: 2;
}

.l-footer__company {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.l-footer__brand-image {
    width: 10.5rem;
}

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

.l-footer__address {
    display: flex;
    flex-direction: column;
}

.l-footer__company-name {
    font-size: 1.125rem;
    font-weight: 500;
}

.l-footer__postal-code,
.l-footer__address-text,
.l-footer__hours {
    font-size: .875rem;
    line-height: 2;
}

.l-footer__address-text a {
    transition: opacity 0.3s ease;
}

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

.l-footer__contact {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    padding: 6.6rem auto;
}

.l-footer__contact-links {
    display: flex;
    justify-content: center;
    gap: 5rem;
}

.l-footer__contact-label {
    font-size: 0.95rem;
}

.l-footer__contact-tel {
    font-size: 1.5rem;
    margin-top: .75rem;
}

.l-footer__contact-tel span {
    font-size: 2.5rem;
    color: var(--white-color);
}

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

.l-footer__contact-row {
    display: flex;
    gap: 1rem;
}

.l-footer__contact-row .c-tel,
.l-footer__contact-row .c-tel a,
.l-footer__contact-row .c-fax {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.l-footer__navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2.4rem;
    min-width: 0;
}

.l-footer__navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5rem;
}

.l-footer__nav-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(230px, 1fr));
    gap: 1rem 2rem;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.l-footer__nav-item {
    margin: 0;
}

.l-footer__nav-link {
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-gray-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.l-footer__nav-link:hover {
    color: var(--primary-color);
}

.l-footer__pagetop {
    line-height: 1.4;
}

.l-footer__bottom {
    padding: 3rem 0 0;
    z-index: -1;
}

.l-footer__bottom img {
    width: 100%;
    height: 100%;
}

.l-footer__decoration {
    font-size: 19.5rem;
    letter-spacing: .085em !important;
    line-height: 1;
    color: var(--gray-light-color);
    text-align: center;
}


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

@media screen and (max-width: 1199px) {
    .l-footer__contact {
        flex-direction: column;
        gap: 3rem;
    }
    .l-footer__contact-intro {
        margin: auto;
        padding: initial;
        width: 90%;
        border: none;
        border-bottom: 1px solid var(--border-gray-color);
        padding-bottom: 3rem;
        text-align: center;
    }
    .l-footer__contact-links {
        min-width: 70%;
        justify-content: space-between;
    }
    .l-footer__contact-label {
        text-align: center;
    }
}

@media screen and (max-width: 991px) {
    .l-footer {
        padding: 6rem 0 0;
    }
    .l-footer__contact {
        flex-direction: column;
        gap: 3rem;
    }
    .l-footer__contact-intro {
        margin: auto;
        padding: auto;
        width: 90%;
        border: none;
        border-bottom: 1px solid var(--border-gray-color);
        padding-bottom: 3rem;
        text-align: center;
    }
    .l-footer__contact-links {
        min-width: initial;
        flex-direction: column;
        gap: 2rem;
    }
    .l-footer__contact-label {
        text-align: center;
    }
    .l-footer__contact-tel {
        line-height: 1;
    }
    .l-footer__secondary {
        flex-direction: column-reverse;
        gap: 3rem;
    }
    .l-footer__company,
    .l-footer__navigation {
        width: 100%;
    }
    .l-footer__nav-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(100px, 1fr));
    }
    .l-footer__company,
    .l-footer__company-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .l-footer__contact-row {
        display: flex;
        gap: 1rem;
        justify-content: center;
    }
}

@media screen and (max-width: 575px) {
    .l-footer__contact {
        padding: 20% 0;
    }
    .l-footer__contact-tel {
        font-size: 1.25rem;
    }
    .l-footer__contact-tel span {
        font-size: 2rem;
    }
}


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

.l-media {
    display: flex;
    align-items: center;
    gap: 5%;
}

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

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

.l-media__image {
    margin: 0;
    overflow: hidden;
    width: 40%;
}

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

.l-media__content {
    width: 55%;
    min-width: 0;
    text-align: justify;
    font-weight: 400;
}

.l-media__text {
    margin-top: 1.5rem;
    line-height: 2;
}


/*------------------------------------------------------------------
  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__image {
        width: 100%;
    }
    .l-media__content {
        width: 100%;
    }
    .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%;
    }
}


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

.c-lower-mv {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 1;
    display: flex;
    border-bottom: 1px solid var(--border-gray-color);
}

.c-lower-mv .p-top-mv__copy {
    margin: 0 0 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.c-lower-mv .p-top-mv__lead::before {
    display: block;
    content: "";
    height: 2.5rem;
    width: .75rem;
    position: relative;
    background-color: var(--border-gray-color);
}

.c-lower-mv .p-top-mv__lead {
    position: relative;
    display: flex;
    gap: .75rem;
    align-items: center;
    font-size: 1rem;
}

.c-lower-mv__inner {
    display: flex;
    align-items: flex-end;
    width: 97%;
    height: 100%;
    border-left: 1px solid var(--border-gray-color);
    margin-left: 3%;
}

.c-lower-mv__title-en {
    position: relative;
    display: inline-block;
    margin: 0;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.25;
    color: var(--primary-color);
}

.c-lower-mv__title-jp {
    line-height: 1.5;
    letter-spacing: .1em;
}

.c-lower-mv__image {
    display: block;
    width: 55%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
}

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

@media screen and (max-width:1199px) {
    .child-page .p-top-mv__title {
        font-size: 6rem;
    }
}

@media screen and (max-width:991px) {
    .c-lower-mv {
        aspect-ratio: 2 / 1;
    }
}

@media screen and (max-width:576px) {
    .c-lower-mv {
        aspect-ratio: 1 / 1;
    }
    .child-page .p-top-mv__title {
        padding-inline: 1rem 1.5rem;
        padding-block: 0;
        font-size: 4rem;
    }
    .p-about-ttl .p-top-mv__title {
        line-height: .9;
        padding-inline: 1rem 1.5rem;
        padding-block: .5rem 0;
        margin-top: 1.25rem;
    }
}