@charset "utf-8";

:root{
    --color-font: #604128;
    --color-accent: #c6ab6c;
    --color-bg: #fbfaf6;
    --color-white: #fff;
    --font-main: "Noto Serif JP", serif;
    --font-header: "Shippori Mincho", serif;
    --font-en-header: "Cormorant Garamond", serif;
    --font-sub: "Shippori Mincho B1", serif;
}

/* Base */
html, body {
    overflow-x: hidden;
    width: 100%;
    font-size: 16px;
    /* scroll-behavior: smooth; */
    letter-spacing: 0.05em;
    scroll-padding-top: 100px;
}
@media (min-width: 769px) {
    html, body {
        scroll-behavior: smooth;
    }
}
@media (max-width: 768px) {
    html, body {
        scroll-padding-top: 80px;
    }
}
body {
    font-family: var(--font-main);
    color: var(--color-font);
    font-size: 16px;
    line-height: 2;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

a {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}
a:focus-visible {
    outline: 2px solid var(--color-accent);
}
li{
    list-style: none;
}
p{
    text-align: justify;
}
.section-title-en{
    font-size: 100px;
    font-family: var(--font-en-header);
    font-weight: 600;
    text-align: center;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: -3rem;
    letter-spacing: 0.05em;
}

/* .section-title-en.js-text span {
    display: inline-block;
    transform: translateY(0);
    will-change: transform, opacity;
} */

h3{
    font-size: 36px;
    font-family: var(--font-sub);
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.2em;
}
section{
    margin-top: 5rem;
}
.wrapper{
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
@media (max-width: 768px) {
    .section-title-en{
        font-size: 48px;
        margin-bottom: -1rem;
    }
    h3{
        font-size: 24px;
    }
    section{
        margin-top: 2rem;
    }
    .wrapper{
        padding: 0 20px;
    }
}

.view-more{
    padding: 0.5rem 0;
    color: var(--color-accent);
    text-transform: uppercase;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1rem;
    font-size: 21px;
    font-family: var(--font-en-header);
    .view-more-icon{
        width: 26px;
        height: 26px;
        object-fit: contain;
        mask-image: url(../img/icon-plus.svg);
        mask-size: contain;
        mask-repeat: no-repeat;
        mask-position: center;
        background-color: var(--color-accent);
        transition: all 0.3s;
    }
}

.download{
    display: inline-block;
    padding: 0.5rem 0;
    color: var(--color-accent);
    font-size: 20px;
    font-family: var(--font-header);
    font-weight: bold;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1rem;
}
@media screen and (max-width: 768px) {
    .view-more{
        font-size: 16px;
        .view-more-icon{
            width: 20px;
            height: 20px;
        }
    }
    .download{
        font-size: 16px;
    }
}

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

@media (min-width: 769px) {
    a:hover {
        opacity: 0.7;
    }
    .view-more:hover {
        color: var(--color-font);
        .view-more-icon{
            background-color: var(--color-font);
            transform: scale(1.3);
        }
    }

    .download:hover {
        color: var(--color-font);
    }

    .top__news ul li a:hover {
        background: var(--color-bg);
        opacity: 1;
    }

    .close-modal-button:hover {
        color: var(--color-font);
    }

    .hp-link:hover {
        color: var(--color-font);
    }
}




/* Header -----------------------------------------------------------------------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-white);
    z-index: 1000;
    font-size: 20px;
    font-family: var(--font-header);
    height: 100px;

    .header__inner{
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;

        .header__logo{
            width: 300px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;

            .header__logo-img{
                object-fit: contain;
            }
        }

        .header__nav{
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: flex-end;

            .header__nav-list{
                display: flex;
                gap: 3rem;

                li{
                    font-family: var(--font-header);
                    font-weight: bold;
                    letter-spacing: 0.08em;

                    a{
                        padding: 0.5rem 1rem;
            
                    }
                    &:last-of-type{
                        a{
                            padding: 0.5rem 2rem;
                            border-radius: 1000px;
                            background: var(--color-accent);
                        }
                    }
                }

            }
        }
    }
}
@media (max-width:1020px) {
    .header{
        .header__inner{
            padding: 0 1rem;
            .header__nav{
                .header__nav-list{
                    gap: 0rem;
                    li{
                        a{
                            padding: 0.5rem 0.5rem;
                        }
                        &:last-of-type{
                            a{
                                padding: 0.5rem 1rem;
                            }
                        }
                    }
                }
            }
        }
    }
}
/* hamburger-overlay -----------------------------------------------------------------------*/
.hamburger-overlay {
    position: fixed;
    top: 10px;
    right: 20px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    display: none;
}
@media (max-width: 768px) {
    .hamburger-overlay {
        display: block;
    }
}

.hamburger-overlay__line {
    position: absolute;
    left: 11px;
    width: 40px;
    height: 1px;
    background-color: var(--color-accent);
    transition: all .4s;
}

.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }

.hamburger-overlay__text {
    position: absolute;
    left: 24%;
    bottom: -12px;
    font-size: 12px;
    font-family: var(--font-en-header);
    font-weight: bold;
    color: var(--color-font);
    text-transform: uppercase;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
    opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
}

@media (max-width: 768px) {
    .header{
        height: 80px;
        padding: 0 1rem;

        .header__inner{
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0 0;

            .header__logo{
                width: 180px;
                height: 60px;
                
            }
            .header__nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: rgba(255, 255, 255, 0.95);
                visibility: hidden;
                opacity: 0;
                transition: all .4s;
                z-index: 900;
                font-size: 24px;
                display: flex;
                align-items: start;
                justify-content: center;
                gap: 2rem;
                padding-top: 6rem;

                .header__nav-list{
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 2rem;

                    li{
                        transition: all 0.3s;
                        &:last-of-type{
                            a{
                                padding: 0.5rem 2rem;
                            }
                        }
                    }
                }
                
            }
            .header__nav.active {
                visibility: visible;
                opacity: 1;
            }
        }
        
    }
}

/* footer -----------------------------------------------------------------------*/
.footer{
    margin-top: 6rem;
    .footer__inner{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;

        .footer__logo{
            width: 470px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            
            img{
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }

        .footer__nav{
            margin-top: 2rem;
            .footer__nav-list{
                display: flex;
                gap: 3rem;
                font-size: 20px;
                font-family: var(--font-header);
                font-weight: bold;
            }
        }
        .footer__copyright{
            font-size: 14px;
            text-align: center;
            margin: 6rem 0 2rem;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 400;
        }
    }
}
@media (max-width: 900px) {
    .footer{
        .footer__inner{
            .footer__nav{
                .footer__nav-list{
                    gap: 1rem;
                }
            }
        }
    }
}
@media (max-width: 768px) {
    .footer{
        .footer__inner{
            padding: 0 20px;
            .footer__logo{
                width: 240px;
                height: 60px;
            }
            .footer__nav{
                .footer__nav-list{
                    gap: 1.5rem;
                    flex-direction: column;
                    align-items: center;
                }
            }
        }
    }
}


/* Hero -----------------------------------------------------------------------*/
.hero {
    position: relative;
    margin-top: 100px;
}
@media (min-width: 769px) {
    .hero{
        .hero__image{
            img{
                width: 100%;
                aspect-ratio: 1440/600;
                max-height: 700px;
                object-fit: cover;
            }
        }
    }
}

.description{
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 0 20px;

    .section-title{
        font-size: 36px;
        margin-bottom: 2rem;
        letter-spacing: 0.1em;
        font-weight: 500;
        span{
            display: inline-block;
        }
    }
    p{
        font-size: 16px;
        line-height: 2;
        letter-spacing: 0.05em;
    }
}
@media (max-width: 768px) {
    .hero{
        margin-top: 80px;
        .hero__image{
            img{
                width: 100%;
            }
        }
    }
    .description{
        margin-top: 2rem;
        padding: 0 20px;
        .section-title{
            font-size: 20px;
        }
        p{
            font-size: 16px;
        }
    }
}

/* scroll -----------------------------------------------------------------------*/
.scroll-down {
    position: absolute;
    right: 1%;
    bottom: 10%;
    writing-mode: vertical-rl;
    span{
        font-size: 16px;
        font-family: var(--font-en-header);
        font-weight: bold;
        color: var(--color-accent);
        text-transform: uppercase;
    }
}
.scroll-down::before {
    background-color: var(--color-accent);
    bottom: -115px;
    content: "";
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
    animation: arrowMove 3s ease-in-out infinite;

}
.scroll-down::after{
    background-color: var(--color-accent);
    bottom: -115px;
    content: "";
    height: 6px;
    left: 6px;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
    transform: rotate(45deg);
    animation: arrowMove 3s ease-in-out infinite;
}

@keyframes arrowMove {
    0%, 100% {
        bottom: -115px;
    }
    50% {
        bottom: -125px;
    }
}

@media (max-width: 768px) {
    .scroll-down{
        bottom: 15%;
    }
    .scroll-down::before{
        height: 120px;
        bottom: -140px;
    }
    .scroll-down::after{
        bottom: -140px;
    }
}

/* breadcrumb -----------------------------------------------------------------------*/
.breadcrumb {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    font-size: 16px;
    font-family: var(--font-main);
    color: var(--color-accent);
    letter-spacing: 0.05em;
    gap: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-of-type)::after {
    content: "›";
    margin: 0 0.6em;
    color: var(--color-accent);
}
.breadcrumb a{
    padding: 0 0.6em;
}
@media (max-width: 768px) {
    .breadcrumb {
        margin: 1rem 0 0 calc(20px - 0.6em); 
    }
}
@media (min-width: 769px) {
    .breadcrumb a:hover{
        color: var(--color-font);
    }
}
.bread-wrapper-page, .bread-wrapper-single{
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 0 20px;
    .breadcrumb{
        margin-left: 0;

    }
}
.bread-wrapper-page{
    margin: 0 auto;
}


/* news -----------------------------------------------------------------------*/
.top__news{
    margin-bottom: 4rem;
    .wrapper{
        display: grid;
        grid-template-columns: 20% 70%;
        gap: 2rem;
        align-items: start;

        .top__news-wrapper{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: start;
            h2{
                font-size: 48px;
                margin-bottom: -1rem;
            }
            h3{
                font-size: 18px;

            }
        }

        ul{
            li{
                a{
                    display: grid;
                    grid-template-columns: 80px 1fr 16px;
                    align-items: center;
                    gap: 2rem;
                    padding: 2rem 2rem 2rem 0;
                    border-top: 1px solid var(--color-accent);

                    time{
                        font-size: 14px;
                    }
                    p{
                        font-size: 16px;
                        width: 100%;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        -webkit-line-clamp: 2;
                        display: -webkit-box;
                        -webkit-box-orient: vertical;
                        line-height: 1.5;
                    }
                    &::after{
                        content: "";
                        display: block;
                        width: 16px;
                        height: 16px;
                        background-image: url('../img/icon-arrow.svg');
                        background-size: contain;
                        background-repeat: no-repeat;
                        background-position: center;
                    }
                }
                &:last-of-type{
                    a{

                        border-bottom: 1px solid var(--color-accent);
                    }
                }

            }
        }
    }
}
@media (max-width: 768px) {
    .top__news{
        .wrapper{
            grid-template-columns: 1fr;
            .top__news-wrapper{
                display: block;
                h2{
                    font-size: 48px;
                    text-align: center;
                    margin-bottom: -1rem;
                }
                h3{
                    font-size: 24px;
                }
            }
            ul{
                li{
                    a{
                        gap: 0.7rem;
                        padding: 1rem 1rem 1rem 0;
                        grid-template-columns: 80px 1fr 16px;
                        grid-template-rows: auto 1fr;

                        time{
                            grid-row: 1 / 2;
                            grid-column: 1 / 2;
                        }
                        p{
                            grid-row: 2 / 3;
                            grid-column: 1 / 3;
                        }
                        &::after{
                            grid-row: 1 / 3;
                            grid-column: 3 / 4;
                        }
                    }
                }
            }
        }
    }
}




/* modal -----------------------------------------------------------------------*/
.modaal-content-container .modal__inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem;
    overflow-y: auto;
    .modal__image{
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    .modal__text{
        width: 100%;
        color: var(--color-font);

        time{
            display: block;
            font-size: 14px;
            font-family: var(--font-main);
            color: var(--color-accent);
        }
        h3{
            text-align: left;
            font-family: var(--font-sub);
            font-weight: 700;
            font-size: 32px;
            margin-bottom: 1.5rem;
            line-height: 1.5;
            letter-spacing: 0.1em;
        }
    }
}
.close-modal{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;

    .close-modal-button{
        font-size: 21px;
        font-family: var(--font-en-header);
        font-weight: bold;
        color: var(--color-accent);
        text-transform: uppercase;
        padding: 0.5rem 1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        transition: all 0.3s;
        .close-modal-icon{
            width: 26px;
            height: 26px;
            object-fit: contain;
            mask-image: url(../img/icon-close.svg);
            mask-size: contain;
            mask-repeat: no-repeat;
            mask-position: center;
            background-color: var(--color-accent);
            transition: all 0.3s;
            }
    }
}
.modaal-inner-wrapper{
    padding-top: 100px !important;
}

@media (max-width: 860px) {
    .modaal-content-container .modal__inner{
        grid-template-columns: 1fr;
        padding: 0rem;
        align-items: center;
        justify-content: center;
        .modal__text{
            h3{
                font-size: 20px;
            }
            p{
                line-height: 1.8;
            }
        }
    }
}
@media (max-width: 700px) {
    .modaal-content-container .modal__inner{
        margin: -1rem;
    }
}
@media (min-width: 769px) {
    .close-modal{
        :hover{
            color: var(--color-font);
            .close-modal-icon{
                background-color: var(--color-font);
            }
        }
    }
}

/* message -----------------------------------------------------------------------*/
.message{
    /* margin-top: -80px;
    padding-top: 80px; */
}
.message__bg-wrapper{
    background: var(--color-bg);
    /* 背景色を固定 */
    position: relative;
    z-index: 1;

    h3{
        font-size: 24px;
    }
    
    .message__content{
        display: grid;
        grid-template-columns: 50% auto;
        gap: 4rem;
        align-items: center;
        padding: 0 2rem 0 0;

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

        .message__text{
            max-width: 610px;
            h3{
                font-size: 30px;
                text-align: left;
                letter-spacing: 0.05em;
                font-weight: bold;
                line-height: 1.5;
                text-align: justify;
            }
            p{
                font-size: 16px;
                margin-bottom: 0.5rem;
            }
        }
    }
}

/* GSAPアニメーション用の初期状態 */
/* .message__content,
.network__content,
.company__content {
    opacity: 0;
    transform: translateY(60px);
} */
@media (max-width: 1000px) {
    .message__bg-wrapper{
        .message__content{
            gap: 2rem;
        }
    }
}
@media (max-width: 768px) {
    .message__bg-wrapper{
        padding-bottom: 2rem;
        .message__content{
            padding: 0;
            grid-template-columns: 1fr;
            .message__text{
                max-width: 100%;
                padding: 0 20px;
                h3{
                    font-size: 24px;
                }
            }
        }
    }
}
.message__business{
    margin: 4rem auto 0;
    padding: 0 2rem;
    max-width: 1400px;

    h3{
        font-size: 36px;
        text-align: left;
        letter-spacing: 0.1em;
        line-height: 1.5;
    }

    .message__business-wrapper{
        display: grid;
        grid-template-columns: 25% 65%;
        grid-template-rows: 1fr auto;
        gap: 4rem;
        align-items: start;

        .message__business-wrapper-inner{
            grid-column: 1 / 2;
            grid-row: 1 / 2;
        }
        .message__business-link{
            grid-column: 1 / 2;
            grid-row: 2 / 3;
            align-self: start;
        }
        .swiper-container{
            grid-column: 2 / 3;
            grid-row: 1 / 3;
            
        }
    }    
    .message__business-wrapper *{
        min-width: 0;
        min-height: 0;
    }
}
@media (max-width: 1000px) {
    .message__business{
        .message__business-wrapper{
            gap: 2rem;
        }
    }
}
@media (max-width: 768px) {
    .message__business{
        padding: 0 20px;
        h3{
            font-size: 24px;
            span{
                display: inline-block;
            }
        }
        .message__business-wrapper{
            grid-template-columns: minmax(0, 1fr);
            grid-template-rows: repeat(3, auto);
            gap: 1rem;
            .message__business-wrapper-inner{
                grid-row: 1 / 2;
            }
            .message__business-link{    
                grid-row: 3 / 4;
            }
            .swiper-container{
                grid-row: 2 / 3;
                grid-column: 1 / 2;
            }
        }
    }
}
.swiper{
    width: 100%;
    a{
        aspect-ratio: 3 / 4;
        transition: all 0.3s;
        figure{
            position: relative;
            aspect-ratio: 3 / 4;
            &::before{
                content: "";
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), transparent);
            }
            img{
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
        .slide-content{
            position: absolute;
            bottom: 0;
            left: 0;
            padding: 0 2rem 1rem 2rem;
            color: var(--color-white);
            text-shadow: 0px 0px 10px black;
            font-weight: bold;
            font-family: var(--font-sub);

            .slide-number{
                font-size: 20px;
            }
            .slide-text{
                font-size: 26px;
                letter-spacing: 0.1em;
                line-height: 1.5;
                font-weight: 500;
            }
        }
    }
}
@media (min-width: 769px) {
    .swiper{
        a:hover{
            figure::before{
                opacity: 0.8;
            }
        }
    }
}
@media (max-width: 768px) {
    .swiper{
        width: 90%;
        margin: 0 auto;
        margin-top: 2rem;

        a{
            figure{
                aspect-ratio: 4 / 5;
            }
            .slide-content{
                .slide-text{
                    font-size: 18px;
                }
            }
        }
    }
}
/* swiper ---------------------------------------*/
.swiper-container{
    position: relative;
    
    .swiper-button-next, .swiper-button-prev{
        width: 160px;
        height: 160px;
        border-radius: 100%;
        position: absolute;
        top: 55%;
        transform: translateY(-50%);
        z-index: 10;
        right: -10%;
        img{
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }
    .swiper-button-next{
        right: -10%;
    }
    .swiper-button-prev{
        left: -10%;
    }
    .swiper-button-prev:after,
    .swiper-button-next:after {
    display: none;
}
}
@media (max-width: 1000px) {
    .swiper-container{
        .swiper-button-next, .swiper-button-prev{
            width: 120px;
            height: 120px;
        }
    }
}
@media (max-width: 768px) {
    .swiper-container{
        .swiper-button-next, .swiper-button-prev{
            width: 100px;
            height: 100px;
        }
        .swiper-button-next{
            right: 0;
        }
        .swiper-button-prev{
            left: 0;
        }
    }
}
@media (max-width: 600px) {
    .swiper-container{
        .swiper-button-next{
            right: -5%;
        }
        .swiper-button-prev{
            left: -5%;
        }
    }
}
@media (max-width: 500px) {
    .swiper-container{
        .swiper-button-next, .swiper-button-prev{
            top: 60%;
        }
    }
}
@media (max-width: 400px) {
    .swiper-container{
        .swiper-button-next, .swiper-button-prev{
            top: 65%;
        }
        .swiper-button-next{
            right: -10%;
        }
        .swiper-button-prev{
            left: -10%;
        }
    }
}
/* network -----------------------------------------------------------------------*/
.network{
    .network__bg-wrapper{
        background: var(--color-bg);
        padding-bottom: 4rem;
        /* 背景色を固定 */
        position: relative;
        z-index: 1;
    }
    .section-title{
        font-size: 24px;
        text-align: center;
    }
    .network__text{
        max-width: 760px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .network__map{
        margin: 2rem auto;
        padding: 0 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 1200px;
        height: auto;
        img{
            object-fit: contain;

        }
    }
    .network__partner-title{
        letter-spacing: 0.1em;
    }
    .network__partner-wrapper{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6rem;
        padding: 0 2rem;
        max-width: 1200px;
        margin: 0 auto 2rem;
        .network__partner-item{
            width: 300px;
            figure{
                width: 80%;
                margin: 0 auto;
                img{
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }
            h3{
                font-size: 22px;
                text-align: center;
                font-family: var(--font-main);
                border-bottom: 1px solid var(--color-font);
                padding-bottom: 1rem;
                margin-bottom: 1rem;
                letter-spacing: 0.05em;
                font-weight: 600;
            }
            p{
                font-size: 16px;
                text-align: left;
                span{
                    display: inline-block;
                }
            }
        }
    }
}
.hp-link{
    align-items: center;
    color: var(--color-accent);
    font-size: 20px;
    font-weight: bold;
    margin-top: 1rem;
    display: inline-block;
    font-family: var(--font-header);
    i{
        margin-right: 1rem;
    }
}

@media (max-width: 768px) {
    .network{
        .section-title{
            font-size: 22px;
        }
        .network__map{
            margin: 4rem auto;
            img{
                max-height: 400px;
            }
        }
        .network__partner-wrapper, .network__partner-wrapper-2{
            grid-template-columns: 1fr;
            gap: 3rem;
            padding: 0 20px;
        }
    }
    .hp-link{
        font-size: 16px;
    }
}


/* company -----------------------------------------------------------------------*/
.company{
    /* margin-top: -80px;
    padding-top: 80px; */
    /* 背景色を固定 */
    position: relative;
    z-index: 1;
    margin-top: 0rem;
    
    .section-title{
        font-size: 24px;
        text-align: center;
    }
    .company__text{
        max-width: 760px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .company__info{
        margin: 2rem auto 0;
        max-width: 1200px;
        padding: 0 20px 0 72px;

        .company__info-item{
            margin-bottom: 4rem;

            .company__info-title{
                font-size: 38px;
                font-family: var(--font-en-header);
                color: var(--color-accent);
                font-weight: 700;
                text-align: left;
                margin-bottom: 0;
                position: relative;
                letter-spacing: 0.05em;
                &::before{
                    content: "";
                    position: absolute;
                    bottom: 28px;
                    left: -52px;
                    width: 48px;
                    height: 1px;
                    background-color: var(--color-accent);
                }
            }
            .company__info-text{
                font-size: 16px;
            }
        }
        .company__info-wrap{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 2rem;
            margin-left: -52px;
            .company__info-wrap-item{
                display: flex;
                flex-direction: column;
                align-items: center;

                .company__info-circle{
                    width: 230px;
                    height: 230px;
                    border-radius: 100%;
                    background: #ffffff;
                    background: linear-gradient(138deg,rgba(255, 255, 255, 1) 10%, rgba(232, 217, 183, 1) 70%, rgba(227, 198, 150, 1) 90%);                    
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    font-size: 24px;
                    font-family: var(--font-main);
                    font-weight: bold;
                    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
                    .company__info-circle-text{
                        font-size: 32px;
                        letter-spacing: 0.05em;
                    }
                    .company__info-circle-text-en{
                        font-size: 16px;
                        letter-spacing: 0.05em;
                    }
                }
                p{
                    width: 185px;
                    margin-top: 1rem;
                    font-size: 16px;
                }
            }
        }
    }
    .company__about-title{
        font-size: 40px;
        font-family: var(--font-sub);
        letter-spacing: 0.1em;
        margin-top: 6rem;
    }
    .company__about{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        justify-content: center;
        margin: 0 auto;
        max-width: 1200px;
        margin-top: 4rem;

        .company__about-map{
            aspect-ratio: 4 / 3;
            iframe{
                width: 100%;
                height: 100%;
            }
        }
        .company__about-item{
            .company__about-item-header{
                display: inline-block;
                font-size: 24px;
                font-family: var(--font-header);
                font-weight: bold;
                margin-bottom: 1rem;
                padding-bottom: 0.5rem;
                border-bottom: 1px solid var(--color-font);
                letter-spacing: 0.08em;
            }
            p{
                margin-bottom: 1rem;
            }
        }
    }
}
@media (max-width: 1000px) {
    .company{
        .company__about{
                gap: 1rem;
                /* .company__about-item{
                    padding: 0 20px;
                } */
            }
    }
}
@media (max-width: 880px) {
    .company{
        .company__info{
            .company__info-item{        
                .company__info-wrap{
                    .company__info-wrap-item{
                        .company__info-circle{
                            width: 180px;
                            height: 180px;
                        }
                    }
                }
            }
        }
        .company__about{
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 2rem;
            .company__about-item{
                padding: 0 20px;
            }
        }
    }
}
@media (max-width: 768px) {
    .company{
        .company__info{
            .company__info-item{
                .company__info-title{
                    font-size: 28px;
                    &::before{
                        bottom: 16px;
                        left: -46px;
                        width: 40px;
                        height: 1px;
                    }
    
                }
                margin-bottom: 2rem;
                .company__info-wrap{
                    margin-top: 1rem;
                    .company__info-wrap-item{
                        .company__info-circle{
                            width: 150px;
                            height: 150px;
                            .company__info-circle-text{
                                font-size: 24px;
                            }
                            .company__info-circle-text-en{
                                font-size: 14px;
                            }
                        }
                        p{
                            width: 150px;
                            line-height: 1.5;
                        }
                    }
                }
            }
        }
        .company__about-title{
            font-size: 24px;
        }
    }
}


/* gallery -----------------------------------------------------------------------*/
.gallery{
    div{
        margin: 0 auto;
        width: 100%;
        height: 600px;
        background-color: #ccc;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* contact -----------------------------------------------------------------------*/
.top__contact{
    margin-top: 0;
    
    .top__contact-bg-wrapper{
        background: var(--color-bg);
        padding: 4rem 0;
    }
    .section-title{
        font-size: 40px;
        text-align: center;
        font-family: var(--font-sub);
        letter-spacing: 0.06em;
    }
    .top__contact-wrapper{
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .top__contact-text{
        font-size: 18px;
        margin-bottom: 2rem;
        letter-spacing: 0.08em;
    }
}
@media (max-width: 768px) {
    .top__contact{
        .section-title{
            font-size: 24px;
        }
        .top__contact-wrapper{
            .top__contact-text{
                font-size: 16px;
                padding: 0 20px;
            }
        }
    }
}

/* -----------------------------------------------------------------------
business 
-----------------------------------------------------------------------*/
@media (min-width: 769px) {
    .business__hero{
        .hero__image{
            img{
                aspect-ratio: 3 / 1;
                min-height: 300px;
                max-height: 600px;
                object-fit: cover;
            }
        }
    }
}

.business__description{
    display: none;
}
@media (max-width: 768px) {
    .business__description{
        display: block;
        text-align: center;
        .business__description-title{
            font-size: 30px;
            font-family: var(--font-sub);
            letter-spacing: 0.1em;
            margin: 0;
        }
        .business__description-subtitle{
            font-size: 16px;
            font-family: var(--font-en-header);
            color: var(--color-accent);
            text-transform: uppercase;
        }
        .business__description-text{
            font-size: 16px;
            letter-spacing: 0.05em;
            margin-top: 2rem;
            padding: 0 20px;
            text-align: left;
        }
    }
}

.business__wrapper{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.business__link-area{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;

    .business__link-item{
        a{
            display: block;
            width: 100%;
            height: 100%;
            aspect-ratio: 54 / 12;
            figure{
                position: relative;
                width: 100%;
                height: 100%;
                aspect-ratio: 54 / 12;
                &::before{
                    content: "";
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    top: 0;
                    left: 0;
                    background: linear-gradient(270deg, rgba(0, 0, 0, 0.3), transparent);
                }
                img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }
            .business__link-content{
                position: absolute;
                bottom: 0;
                right: 0;
                color: var(--color-white);
                text-shadow: 0px 0px 10px black;
                font-weight: bold;
                font-family: var(--font-sub);
                display: flex;
                align-items: center;
                justify-content: end;
                gap: 1rem;
                margin-right: 1rem;
    
                .business__link-text{
                    font-size: 30px;
                    letter-spacing: 0.1em;
                    line-height: 1.5;
                    font-weight: 600;
    
                    &::after{
                        content: "";
                        display: inline-block;
                        width: 16px;
                        height: 16px;
                        background-image: url('../img/arrow.svg');
                        margin-left: 1rem;
                    }
    
                }
            }
        }
    }
}
@media (max-width: 1000px) {
    .business__link-area{
        gap: 1rem;
        .business__link-item{
            a{
                .business__link-content{
                    .business__link-text{
                        font-size: 20px;
                    }
                }
            }
        }
    }
}
@media (max-width: 768px) {
    .business__link-area{
        grid-template-columns: 1fr;
        .business__link-item{
            a{
                .business__link-content{
                    .business__link-text{
                        font-size: 24px;
                    }
                }
            }
        }
    }
}
@media (max-width: 400px) {
    .business__link-area{
        .business__link-item{
            a{
                .business__link-content{
                    .business__link-text{
                        font-size: 20px;
                        &::after{
                            width: 12px;
                            height: 12px;
                            margin-left: 0.5rem;
                        }
                    }
                }
            }
        }
    }
}
.business__content{
    .business__content-item{
        &:nth-child(1), &:nth-child(2), &:nth-child(3), &:nth-child(7), &:nth-child(8), &:nth-child(9){
            position: relative;
            
            &::before {
                content: '';
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                width: 100vw;
                height: 100%;
                background-color: var(--color-bg);
                z-index: -1;
            }
        }

        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-bottom: 0;
        margin-top: -120px;
        padding: 120px 0 4rem;
        /* padding-bottom: 4rem; */
        align-items: start;
        max-width: 1200px;
        margin: 0 auto;

        &:last-child {
            padding-bottom: 0;
        }

        .business__content-item-wrapper{

            .business__content-item-header{
                display: flex;
                flex-direction: row;
                align-items: start;
                justify-content: start;
                gap: 0.5rem;
                margin-bottom: 2rem;

                .business__content-number{
                    font-size: 60px;
                    font-family: "EB Garamond", serif;
                    letter-spacing: 0.05em;
                    line-height: 1;
                    color: var(--color-accent);
                }
                .business__content-title{
                    font-size: 32px;
                    font-family: var(--font-sub);
                    font-weight: 600;
                    letter-spacing: 0.1em;
                    margin: 0;
                    line-height: 1.5;
                    text-align: left;
                    span{
                        display: inline-block;
                    }
                }
            }   
        }
        .business__content-item-image{
            img{
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        &:nth-child(even){
            .business__content-item-wrapper{
                order: 1;
            }
        }
    }
}
.business__download{
    background-color: var(--color-bg);
    display: flex;
    justify-content: center;
    padding: 6rem 0 2rem;
    .download{
        text-align: center;
        display: inline-block;
        i{
            margin-right: 1rem;
        }
    }
}
@media (max-width: 1000px) {
    .business__content{
        .business__content-item{
            gap: 2rem;
            .business__content-item-wrapper{
                .business__content-item-header{
                    .business__content-title{
                        font-size: 24px;
                    }
                }
            }
        }
    }
}
@media (max-width: 768px) {
    .business__content{
        .business__content-item{
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: -120px;
            padding: 140px 0 4rem;
    

            .business__content-item-wrapper{
                order: 0 !important;

                .business__content-item-header{
                    .business__content-number{
                        font-size: 40px;
                    }
                    .business__content-title{
                        font-size: 20px;
                    }
                }
            }
        }
    }
}


/* -----------------------------------------------------------------------
contact 
-----------------------------------------------------------------------*/
.contact{
    display: flex;
    justify-content: center;
    align-items: center;
    .contact__wrapper{
        max-width: 1140px;
        margin: 0 20px;
        padding: 4rem;
        background-color: var(--color-bg);
        flex-grow: 1;
    }
    .Form{
        .Form-Item{
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 3rem;

            .Form-Item-Label{
                font-size: 20px;
                font-weight: 600;
                letter-spacing: 0.1em;
                font-family: var(--font-sub);
                .is-required{
                    color: var(--color-white);
                    background-color: #c1272d;
                    padding: 0.3rem 0.6rem;
                    border-radius: 60px;
                    font-size: 16px;
                    font-weight: 700;
                    letter-spacing: 0.1em;
                    font-family: var(--font-sub);
                    margin-right: 1rem;
                }
            }
            input, select, textarea{
                width: 100%;
                padding: 1rem;
                font-size: 20px;
                letter-spacing: 0.05em;
                background-color: var(--color-white);
                box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
            }
            input:focus, select:focus, textarea:focus{
                box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
            }
            input[type="checkbox"]{
                width: 28px;
                height: 28px;
                border: none;
                background-color: var(--color-white);
                box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
                margin-top: 1rem;
            }
            ::placeholder{
                color: #999;
            }
            .placeholder{
                color: #999;
            }
            .select-wrapper {
                position: relative;
                select{
                    cursor: pointer;
                }

                &::after{
                    content: "";
                    position: absolute;
                    top: 28px;
                    right: 28px;
                    transform: translateY(-50%);
                    width: 12px;
                    height: 12px;
                    border-right: 3px solid var(--color-font);
                    border-bottom: 3px solid var(--color-font);
                    transform: rotate(45deg);
                }
            }
            .privacy-link{
                color: rgb(32, 32, 199);
                text-decoration: underline;
                display: inline;
            }
            .agree-label{
                letter-spacing: 0.05em;
            }
        }
        .button-wrap{
            input[type="submit"]{
                width: 220px;
                height: 50px;
                font-size: 20px;
                letter-spacing: 0.08em;
                background-color: var(--color-accent);
                font-family: var(--font-header);
                border-radius: 60px;
                color: var(--color-font);
                font-weight: 700;
            }
        }
    }
}
@media (max-width: 768px) {
    .contact{
        .contact__wrapper{
            padding: 3rem 1rem 1rem;
        }
        .Form{
            .Form-Item{
                .Form-Item-Label{
                    font-size: 16px;
                    .is-required{
                        font-size: 14px;
                    }
                }
                input, select, textarea{
                    font-size: 16px;
                    padding: 0.5rem;
                }
                input[type="checkbox"]{
                    width: 24px;
                    height: 24px;
                }
                .select-wrapper{
                    &::after{
                        top: 16px;
                        right: 16px;
                    }
                }
            }
            .button-wrap{
                display: flex;
                justify-content: center;
                align-items: center;
                margin-bottom: 2rem;
                input[type="submit"]{
                    width: 180px;
                    height: 40px;
                    font-size: 16px;
                }
            }
        }
    }
}

/* -----------------------------------------------------------------------
privacy 
-----------------------------------------------------------------------*/
.privacy{
    .privacy__description{
        margin-top: 8rem;
        text-align: center;
        .privacy__description-title{
            font-size: 30px;
            font-family: var(--font-sub);
            letter-spacing: 0.1em;
            margin: 0;
        }
        .privacy__description-subtitle{
            font-size: 16px;
            font-family: var(--font-en-header);
            color: var(--color-accent);
            text-transform: uppercase;
        }
    }
    .privacy__wrapper{
        max-width: 1200px;
        margin: 2rem auto;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        .privacy__wrapper-inner{
            padding: 0 20px;
        }
        p{
            font-size: 16px;
            line-height: 2;
        }
        h2{
            margin-top: 2rem;
        }
        .tR{
            text-align: right;
            margin-top: 2rem;
        }
        .return{
            margin: 2rem auto;
            display: flex;
            justify-content: center;
            align-items: center;
            a{
                background-color: var(--color-accent);
                width: 220px;
                height: 46px;
                font-size: 20px;
                letter-spacing: 0.08em;
                font-family: var(--font-header);
                border-radius: 60px;
                color: var(--color-font);
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 1rem;

            }
        }
    }
}
.wpcf7-list-item{
    margin: 0;
}
.wpcf7-spinner{
    display: none;
}

/* GSAPページ遷移アニメーション */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    pointer-events: none;
}

/* 初期状態でページ全体を非表示 */
body {
    opacity: 0;
    visibility: hidden;
}

body.page-loaded {
    opacity: 1;
    visibility: visible;
}

/* スクロールアニメーション用スタイル */
.scroll-animation {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animation.animate {
    opacity: 1;
    transform: translateY(0);
}


