@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-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(--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: 120px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    padding: 2rem 3rem 0;
    transition: .2s ease-out;
    background: transparent;
}

.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: clamp(1.5rem, 3vw, 4.5rem);
    min-width: 0;

}


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

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

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

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

.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: 0;
    left: 0;

    width: 100%;
    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::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;
    color: var(--white-color);
    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
================================================= */

.c-contact-button,
.c-button {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem .95rem .85rem 1.7rem;
    background: var(--accent-color);
    color: var(--white-color);
    letter-spacing: .1em;
    white-space: nowrap;
    transition: .2s ease-out;
}

.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: 1rem;
    height: 1rem;
    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-contact-button:hover,
.c-button:hover {
    background: var(--primary-color);
}

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

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

}

/* =================================================
char button animation
================================================= */

.js-char-button [class$="__text"] {
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
}

.js-char-button .char {
    position: relative;
    display: inline-block;
    overflow: hidden;
    line-height: 1.2;
}

.js-char-button .char>span {
    display: block;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    transition-delay: calc(var(--i) * 0.05s);
    will-change: transform;
}

.js-char-button .char::after {
    content: attr(data-char);
    position: absolute;
    left: 0;
    top: 100%;
    display: block;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    transition-delay: calc(var(--i) * 0.05s);
    will-change: transform;
}

@media (hover:hover) and (pointer:fine) {
    .js-char-button:hover .char>span {
        transform: translateY(-100%);
    }

    .js-char-button:hover .char::after {
        transform: translateY(-100%);
    }
}


/* =================================================
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: rgba(25, 25, 25, 0.9);
    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: 20px;
    }

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

    .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(--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-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-tel {
        justify-content: center;
    }

    .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 {
    padding: 5rem 0 1.2rem;
    background-color: #000;
}

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

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

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

.l-footer__secondary {
    margin-top: 3.5rem;
}

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

.l-footer__brand {
    width: 15rem;
}

.l-footer__brand a {
    display: block;
}

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

.l-footer__company-info {
    color: var(--white-color);
}

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

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

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

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

.l-footer__contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

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

.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__navigation {
    display: flex;
    gap: 2.4rem;
    min-width: 0;
}

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

.l-footer__nav-item a {
    line-height: 1.6;
    color: var(--white-color);
    padding-inline: 2rem;
    border-right: 1px solid var(--gray-dark-color);
}

.l-footer__nav-item:last-of-type a {
    border: none;
}

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

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

.l-footer__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
}

.c-recruit-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 300px;
    width: 60%;
    padding: 1.5rem 0;
    background: var(--black-color);
    color: var(--white-color);
    text-align: center;
    transition: .3s ease;
}

.c-recruit-button__main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.c-recruit-button__text {
    font-weight: 500;
    line-height: 1.4;
}

.c-recruit-button__sub {
    display: block;
    font-size: .875rem;
    line-height: 1;
    opacity: 0.5;
}

.c-recruit-button .c-recruit-button__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}

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

.c-recruit-button:hover {
    opacity: .8;
}

.l-footer__bottom {
    padding-top: 3rem;
}

.l-footer__copyright {
    font-size: .75rem;
    text-align: center;
    color: var(--gray-dark-color);
}


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

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

    .l-footer__secondary,
    .l-footer__cta {
        margin-top: 3rem;
    }

    .l-footer__nav-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .75rem;
        width: 100%;
        max-width: 28rem;
        margin-inline: auto;
    }

    .l-footer__nav-item {
        width: 100%;
    }

    .l-footer__nav-item a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 3rem;
        margin: 0;
        padding: .75rem 1rem;
        text-align: center;
        border: none;
        background-color: var(--black-color);
    }
}


/*------------------------------------------------------------------
  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;
    background: linear-gradient(126deg,
            #fff 0%,
            #fff 54.7%,
            #9c9da2 54.8%,
            #9c9da2 100%);
    width: 100%;
    display: flex;
    justify-content: center;
    padding-block: 10rem 6rem;
}

.c-lower-mv__inner {
    display: flex;
    align-items: center;
}

.c-lower-mv__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    width: 45%;
}

.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:991px) {

    .c-lower-mv__inner {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 4em;
    }

    .c-lower-mv__image {
        width: 100%;
    }


    .c-lower-mv__title-en {
        font-size: 3rem;
    }

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

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

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

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