@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 
    
====================================================================================================*/


/* MV ------------------------------------------------------------------*/

.mv {
    position: relative;
    width: 100vw;
    height: 100svh;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    z-index: 3;
    background-color: var(--primary-color);
    overflow: hidden;
}

.mv_img {
    width: 100vw;
    height: 100svh;
}

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

.catch {
    position: absolute;
    bottom: 8.5vw;
    left: 3.5rem;
    z-index: 10;
    color: var(--white-color);
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: .1em;
    transition: font-size .3s ease-in-out;
    text-shadow:
        0 0 2px rgba(3, 0, 41, 0.8),
        0 0 6px rgba(3, 0, 41, 0.4);
}

.catch .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .5s ease, transform .5s ease;
}

.catch .char.is-show {
    opacity: 1;
    transform: translateY(0);
}

.marquee {
    overflow: hidden;
    width: 100%;
}

.marquee__track {
    position: absolute;
    bottom: -.9em;
    display: flex;
    width: max-content;
    animation: marquee 90s linear infinite;
    will-change: transform;
}

.marquee__track span {
    white-space: nowrap;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    padding-right: 56px;
    color: rgba(255, 255, 255, .15);
    font-size: 12.5rem;
    font-weight: 500;
    transition: all ease-in-out;
}

footer .marquee__track {
    position: absolute;
    bottom: -.5em;
}

footer .marquee__track span {
    white-space: nowrap;
    font-size: 8rem;
    padding-right: 56px;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all ease-in-out;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee__track {
        animation: none;
        transform: none;
    }
}

@media screen and (max-width: 1399px) {
    .marquee__track {
        bottom: -.6em;
    }

    .marquee__track span {
        font-size: 10rem;
    }
}

@media screen and (max-width: 1199px) {
    .catch {
        left: 5vw;
        bottom: 9rem;
    }
}

@media screen and (max-width: 991px) {
    .catch {
        font-size: 2rem;
    }

    .marquee__track {
        bottom: -.5em;
    }

    .marquee__track span {
        font-size: 8rem;
    }

    footer .marquee__track {
        bottom: -.3em;
    }

    footer .marquee__track span {
        font-size: 6rem;
    }
}

@media screen and (max-width: 599px) {
    .catch {
        font-size: 2rem;
        letter-spacing: .08em;
        font-weight: 700;
        bottom: 7rem;
        text-shadow:
            0 0 1px rgba(3, 0, 41, 0.8),
            0 0 3px rgba(3, 0, 41, 0.4);
    }
}

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

    .mv,
    .mv_img {
        height: 95svh;
        object-position: center top;
    }

    .marquee__track span {
        font-size: 7rem;
    }

    footer .marquee__track {
        bottom: -.3em;
    }

    footer .marquee__track span {
        font-size: 5rem;
    }

    .catch {
        font-size: 1.6rem;
    }
}

/* @media screen and (max-width: 499px) {
    .catch {
        font-size: 1.525rem;
    }
}

@media screen and (max-width: 424px) {
    .catch {
        font-size: 1.4rem;
    }
} */

.txt-area .txt {
    font-size: 1.25rem;
    text-align: justify;
}


/* business */

#business {
    background-image: url(../images/bg_01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

#business .txt-area {
    display: flex;
    align-items: start;
    margin-bottom: 7rem;
    gap: 8vw;
}

#business .txt {
    text-align: justify;
}

.biz__list {
    display: flex;
    justify-content: space-between;
}

.bizCard {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: fit-content;
    gap: 1.5rem;
    width: calc((100% - 6rem) / 3);
    max-width: 400px;
}

.bizCard__media {
    display: flex;
    align-items: flex-start;
}

.bizCard__img {
    aspect-ratio: 3 / 4;
    width: 100%;
}

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

.bizCard__badge {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: bottom;
    gap: 4px;
    margin-right: .25rem;
}

.bizCard__dot {
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: var(--gradient-blue);
    display: block;
    transform: translateX(.2em);
    flex-grow: 0;
}

.bizCard__badgeText {
    display: flex;
    align-items: flex-end;
    line-height: 1;
    writing-mode: vertical-rl;
    font-size: .95rem;
}

.bizCard__badgeText .num {
    margin-top: .25rem;
    font-size: 1.5rem;
}

.bizCard__text {
    display: inline-block;
    width: calc(100% - 1.65rem);
    font-size: 1.125rem;
}

.bizCard__title {
    margin-bottom: .5rem;
    font-size: 1.5rem;
    text-align: justify;
}

.is-accent {
    color: var(--primary-color);
}

.bizCard__desc {
    text-align: justify;
}

/* bizCard フェードイン初期状態 */
.bizCard {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

/* 表示状態 */
.bizCard.is-show {
    opacity: 1;
    transform: translateY(0);
}


@media screen and (max-width: 1199px) {
    #business .txt-area {
        flex-direction: column;
        gap: initial;
    }

    .bizCard__title {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 991px) {
    #business {
        background-image: url(../images/bg_01_sp.jpg);
        background-repeat: repeat-y;
        background-size: cover;
    }

    #business .txt-area {
        width: fit-content;
        margin-inline: auto;
    }

    .biz__list {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        max-width: 480px;
        margin: 0 auto;
        gap: 6rem;
    }

    .bizCard {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        width: 100%;
    }
}

@media screen and (max-width: 489px) {
    .biz__list {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        max-width: 350px;
        margin: 0 auto;
    }
}


/* company */

#company {
    background-image: linear-gradient(185deg, #c3e1ff, #dbebfc, var(--bg-color), var(--bg-color));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#company .wrap {
    display: flex;
    align-items: center;
    gap: 5%;
}

#company .image-area {
    width: 50%;
    height: auto;
    position: relative;
    left: 0;
}

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

#company .txt-area {
    width: 40%;
}

#company .table_wrapper {
    width: 100%;
}

@media screen and (max-width: 1199px) {
    #company .wrap {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 6rem;
    }

    #company .image-area {
        width: 80%;
    }

    #company .txt-area {
        width: 80%;
    }
}

@media screen and (max-width: 1119px) {
    #company .table_wrapper {
        width: 100%;
        margin-inline: auto;
    }
}

@media screen and (max-width: 991px) {
    #company {
        background-position: 100% center;
    }

    #company .table_wrapper {
        width: 100%;
        margin-inline: auto;
    }
}


/* bg */

.bg-01 {
    background-image: url(../images/bg_01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    position: relative;
}

.bg-01::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 360px;
    background: inherit;
    filter: blur(12px);
    transform: scale(1.1);
    pointer-events: none;
    z-index: 1;
}


/* recruit */

#recruit {
    padding-bottom: 0;
}

#recruit .txt-area {
    background-image: url(../images/recruit.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 80%;
    margin-inline: auto;
    padding: 5rem;
    position: relative;
}

#recruit .txt-area .txt {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-size: 1.125rem;
}

#recruit .txt-area .txt p:nth-of-type(1) {
    font-size: 2rem;
    line-height: 1;
}

@media screen and (max-width: 1199px) {
    #recruit .txt-area {
        width: 90%;
        padding: 5%;
    }

    #recruit .txt-area .txt p:nth-of-type(1) {
        line-height: inherit;
    }
}

@media screen and (max-width:575px) {
    #recruit .title-english {
        margin-bottom: 4rem;
    }

    #recruit .txt-area {
        background-image: url(../images/recruit_sp.jpg);
        padding: 15% 5%;
    }

    #recruit .txt-area .txt p:nth-of-type(1) {
        font-size: 1.5rem;
    }

    #recruit .txt-area .txt {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        font-size: 1.125rem;
    }
}


/* contact */

#contact .title-english {
    margin-bottom: .6em;
}

#contact .txt-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    margin: 0 auto;
}

#contact .txt-area .contact__tel {
    text-align: center;
}

.contact__tel .num {
    font-size: 2.5rem;
    line-height: 1;
    display: flex;
    align-items: flex-end;
    gap: .25em;
    color: var(--black-color);
    position: relative;
}

.contact__tel .num::before {
    content: "";
    display: block;
    width: 2.25rem;
    height: 2.25rem;
    aspect-ratio: 1;
    background-image: url(../images/tel.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.contact__tel span {
    display: block;
    font-size: 1rem;
}

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

    #contact .title-english .jp,
    #contact .title-english .en {
        text-align: center;
    }

    #contact .txt-area {
        flex-direction: column;
        gap: 1.5rem;
    }

    #contact .txt-area .txt {
        text-align: center;
    }
}


/* access */

#access iframe {
    width: 100%;
    max-height: 60dvh;
}


/* footer-area */

.parallax-area {
    position: relative;
}


/* parallax */


/* ===== PC（デフォルト）===== */

.parallax-section {
    position: relative;
    z-index: 0;
    display: flex;
    height: 37.5rem;
    justify-content: center;
    align-items: center;
    background-image: url(../images/parallax.jpg);
    background-attachment: fixed;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}


/* ===== SP（transform方式に切り替え）===== */

@media screen and (max-width: 991px) {
    .parallax-section {
        background: none;
    }

    .parallax-section::before {
        content: "";
        position: absolute;
        inset: -35% 0;
        background-image: url(../images/parallax.jpg);
        background-position: center 80%;
        background-size: cover;
        background-repeat: no-repeat;
        transform: translate3d(0, 0, 0);
        will-change: transform;
        z-index: -1;
    }

    .parallax-section::before {
        transform: translate3d(0, var(--py, 0px), 0);
    }
}

@media screen and (max-width: 575px) {
    .parallax-section {
        background: none;
    }

    .parallax-section::before {
        content: "";
        position: absolute;
        inset: -35% 0;
        background-image: url(../images/parallax_sp.jpg);
        background-position: center 80%;
        background-size: cover;
        background-repeat: no-repeat;
        transform: translate3d(0, 0, 0);
        will-change: transform;
        z-index: -1;
    }

    .parallax-section::before {
        transform: translate3d(0, var(--py, 0px), 0);
    }
}

.txtanimation .__row {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: flex-end;
    overflow: hidden;
}

.txtanimation .__row>span {
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
    margin-bottom: -0.6em;
    opacity: 0;
    transform: translate(-10px, 30px) rotate3d(1, 0.3, 0, 90deg);
    transform-origin: 50% 100%;
    transition: transform 1.4s cubic-bezier(0.08, 0.8, 0.315, 1), opacity .6s ease;
}

.txtanimation.__show .__row>span {
    margin-bottom: 0;
    opacity: 1;
    transform: translate(0, 0) rotate3d(0, 0, 0, 0);
}