@charset "UTF-8";
/*==============================================================================
1.共通事項
2.fv
3.award
4.intro イントロ
5.news お知らせ
6.concept 降幡設計が考える民家とは
7.設計事例
8.降幡設計ができること
9.採用
==============================================================================*/


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

	1.共通事項

==============================================================================================================================================================
============================================================================================================================================================*/
section + section{
    margin-top: 100px;
}

.top-h2{
    text-align: center;
    font-family: var(--font-sub);
    font-weight: var(--weight-bold);
    font-size: 2.2rem;
}
footer{
    margin-top: 60px;
}

@media all and (min-width: 769px){
    .top-h2{
        font-size: 3.4rem;
    }
}



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

	2.fv

==============================================================================================================================================================
============================================================================================================================================================*/
#fv{
    height: calc(100svh - 53px);
    position: relative;

    & h2{
        position: absolute;
        top: 80px;
        left: 30px;
        z-index: 4;
        font-size: 2.1rem;
        font-family: var(--font-sub);
        color: #fff;
        letter-spacing: 0.2em;
        transform: scale(1.2);
        filter: blur(10px);
        transition: 1800ms;
        opacity: 0;
        text-shadow: 5px 5px 7px rgba(0, 0, 0, 0.2);
        
        &.start{
            opacity: 1;
            transform: scale(1);
            filter: blur(0);
        }
    }
    
    /*============= スライダー =============*/
    & .slick-slider,
    & .slick-list,
    & .slick-track,
    & .slick-slide{
        height: 100%;
    }
    & picture{
        width: 100%;
    }
    & picture img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    & .slick-dots{
        padding: 0 20px;
        justify-content: center;
        bottom: 40px;
        gap: 8px;
        
        & li button {
            background: #fff;
            opacity: 1;
        }
        & li.slick-active button {
            background-color: var(--color-sub);
        }
    }
}
/*==============================================================================

	fv PC

==============================================================================*/
@media all and (min-width: 768px){
    #fv{
        height: 770px;
        
        & .fv-h2_wrap{
            margin-left: auto;
            /*width: calc((100% - 980px) / 2 + 980px);*/
            width: 100%;
            position: relative;

            & h2{
                top: 90px;
                left: 50px;
                font-size: 3rem;
                color: var(--col-font);
                letter-spacing: 0.2em;
                transform: unset;
                filter: unset;
                opacity: 1;
                text-shadow: none;

                & span{
                    padding: 5px 20px;
                    display: inline-block;
                    background-color: #fff;
                    position: relative;
                    opacity: 0;
                    transition: 1200ms ease 800ms;

                    &::before{
                        content: "";
                        width: 100%;
                        height: 100%;
                        position: absolute;
                        z-index: 2;
                        top: 0;
                        left: 0;
                        background-color: #000;
                        transition: 1200ms ease 800ms;
                    }

                    &.start{
                        width: auto;
                        opacity: 1;

                        &::before{
                            width: 0;
                        }
                    }

                    &.animate-1{
                        margin-top: 15px;
                    }
                }
            }
        }

        & .slider-fv{
            margin-left: auto;
            width: 100%;
            height: 100%;
        }
    }
}




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

	3.award

==============================================================================================================================================================
============================================================================================================================================================*/
#award{
    margin: 30px auto 0;
    width: calc(100% - 40px);
    position: relative;

    /* アニメーション */
    & h2,
    & a{
        width: 0;
        opacity: 0;
        transition: 800ms ease-out;

        &::before{
            content: "";
            width: 100%;
            height: 100%;
            position: absolute;
            z-index: 2;
            top: 0;
            left: 0;
            background-color: #000;
            transition: 1000ms ease 800ms;
        }

        &.start{
            width: auto;
            opacity: 1;

            &::before{
                width: 0;
            }
        }

    }

    & h2{
        padding: 5px 10px;
        position: absolute;
        z-index: 2;
        top: 0;
        left: -5px;
        transform: translateY(-50%) translateX(40px);
        z-index: 2;
        display: inline-block;
        background-color: var(--color-sub);
        font-family: var(--font-sub);
        font-weight: var(--weight-bold);
        font-size: 1.2rem;
        line-height: 1;

        &.start{
            transform: translateY(-50%) translateX(0px);
        }
    }

    & a{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        transform: translateX(40px);
        padding: 20px;
        position: relative;
        color: var(--col-font);
        font-size: 1.2rem;
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;

        &.start{
            transform: translateX(0px);
        }

        & time{
            flex-shrink: 0;
            font-feature-settings: "palt";
        }

        & span{
            text-align: left;
            font-family: var(--font-sub);
        }
    }
}
/*==============================================================================

	award PC

==============================================================================*/
@media all and (min-width: 768px){
    #award{
        margin: 60px auto 0;
        width: 600px;

        & h2{
            padding: 5px 15px;
            font-size: 1.6rem;
        }

        & a{
            text-align: center;
            font-size: 1.6rem;
        }
    }
}






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

	4.イントロ

==============================================================================================================================================================
============================================================================================================================================================*/
#intro{
    margin-top: 30px;

    /* ========== テキストと画像ブロック ========== */
    & .intro-text_wrap{
        padding: 40px 40px 20px;
        position: relative;

        /* ========== 見出し ========== */
        & .intro-h{
            padding: 0 20px;
            position: relative;
            display: flex;
            justify-content: center;
            gap: 30px;
            z-index: 3;

            & h2{
                display: flex;
                flex-direction: row-reverse;
                align-items: start;
                gap: 10px;

                & span{
                    display: inline-block;
                    writing-mode: vertical-rl;
                    color: var(--color-font);
                    font-family: var(--font-sub);
                    font-weight: var(--weight-bold);
                    font-size: 2rem;
                }
            }
        }
        /* ========== テキスト ========== */
        & .intro-text{
            margin-top: 50px;
            position: relative;
            z-index: 3;
        }

        /* ========== 背景画像 ========== */
        & .intro-bg{
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 1;
            pointer-events: none;

            &::after{
                content: "";
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                background: linear-gradient(
                    180deg,
                    rgba(255, 255, 255, 1) 0%,
                    rgba(255, 255, 255, 0.4) 40%,
                    rgba(255, 255, 255, 0.1) 50%,
                    rgba(255, 255, 255, 0.4) 60%,
                    rgba(255, 255, 255, 1) 100%);
                z-index: 2;
            }

            & img{
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
                position: relative;
                z-index: 1;
            }
        }
    }
    /* ========== ボタン ========== */
    & .btn_wrap{
        padding: 0 40px;
        text-align: center;

        & .button{
            width: 100%;
        }
    }
}
/*==============================================================================

	イントロ PC

==============================================================================*/
@media all and (min-width: 768px){
    #intro{
        margin-top: 50px;
        position: relative;

        /* ========== テキストと画像ブロック ========== */
        & .intro-text_wrap{
            padding-top: 80px;
            padding-bottom: 150px;

            /* ========== 見出し ========== */
            & .intro-h{
                & h2{
                    & span{
                        font-size: 3rem;
                        letter-spacing: 0.15em;
                        font-weight: var(--weight-regular);
                    }
                }
            }
            /* ========== テキスト ========== */
            & .intro-text{
                margin-left: auto;
                margin-right: auto;
                width: 980px;
                text-align: center;
            }
        }
        /* ========== ボタン ========== */
        & .btn_wrap{
            width: 100%;
            position: absolute;
            left: 0;
            bottom: 50px;
            z-index: 2;

            & .button{
                width: 280px;
                background-color: transparent;
            }
        }
    }
}






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

	5.お知らせ

==============================================================================================================================================================
============================================================================================================================================================*/
#news{
    margin-top: 50px;

    & .inner{
        padding: 0 40px;
        display: flex;
        flex-wrap: wrap;
        gap: 30px 40px;

        & h2{
            display: flex;
            align-items: start;
            flex-direction: column;
            writing-mode: vertical-rl;
            text-orientation: upright;
            font-family: var(--font-sub);
            font-weight: var(--weight-bold);
            gap: 10px;
            line-height: 1;

            & span[lang="ja"]{
                font-size: 2.2rem;
            }

            & span[lang="en"]{
                text-orientation: mixed;
                font-size: 1.1rem;
                font-family: var(--font-sub);
            }
        }

        /* お知らせ一覧 */
        & .news-list{
            flex: 1;

            & article{
                & a{
                    color: var(--col-font);

                    & time{
                        display: block;
                    }

                    & span{
                        display: -webkit-box;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp: 1;
                        overflow: hidden;
                    }
                }

                & + article{
                    margin-top: 10px;

                    & a{
                        padding-top: 10px;
                        display: block;
                        border-top: 1px solid var(--color-font);
                    }
                }
            }
        }

        & .btn_wrap{
            width: 100%;
            text-align: center;

            & a{
                width: 100%;
            }
        }
    }
}
/*==============================================================================

	お知らせ PC

==============================================================================*/
@media all and (min-width: 768px){
    #news{
        margin-top: 80px;

        & .inner{
            width: 600px;
            padding: 0;
            gap: 40px 40px;

            & h2{

                & span[lang="ja"]{
                    font-size: 3rem;
                }

                & span[lang="en"]{
                    font-size: 1.4rem;
                }
            }

            /* お知らせ一覧 */
            & .news-list{
                & article{
                    & a{
                        & time{
                            font-size: 1.4rem;
                        }

                        & span{
                            font-size: 1.6rem;
                        }
                    }
                }
            }

            & .btn_wrap{
                & a{
                    width: 280px;
                }
            }
        }
    }
}









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

	6.concept 降幡設計が考える民家とは

==============================================================================================================================================================
============================================================================================================================================================*/
#concept{
    margin-top: 40px;

    /* =============== 家型のデザインの箇所 =============== */
    & .concept-house_wrap{
        position: relative;

        /* ===== 家 ===== */
        &::after{
            content: "";
            width: 100%;
            height: 100%;
            background-color: var(--color-sub);
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            clip-path: polygon(50% 0%, 100% 35px, 100% 100%, 0 100%, 0% 35px);
        }

        /* ===== 中身 ===== */
        & .house_wrap{
            padding: 35px 30px 20px;
            position: relative;
            z-index: 2;

            & h2{
                text-align: center;

                & span{
                    display: none;
                } 
            }

            /* スライダー */
            & .slider-concept{

                & .slick-arrow{
                    background-color: #000;
                    border-color: #000;
                }
                & .slick-arrow::after{
                    border-color: #fff;
                }
                & .slick-arrow.prev {
                    left: -25px;
                }
                & .slick-arrow.next {
                    right: -25px;
                }

                & > div{
                    & img{
                        width: 100%;
                    }
                }

                & .num{
                    text-align: center;
                    font-size: 3rem;
                    font-family: var(--font-sub);
                    color: #fff;
                    opacity: 0;
                    transform: translateY(40px);
                    transition: 800ms ease;

                    &.on{
                        transform: translateY(0px);
                        opacity: 1;
                    }
                }

                & .text{
                    margin-top: -10px;
                    position: relative;
                    z-index: 2;

                    & div{
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        gap: 10px;

                        & span{
                            width: 80%;
                            display: block;
                            position: relative;
                            background-color: #fff;
                            text-align: center;
                            font-family: var(--font-sub);
                            font-weight: var(--weight-bold);
                            font-size: 1.6rem;
                            opacity: 0;
                            transform: translateX(40px);
                            transition: 800ms ease;

                            &::after{
                                content: "";
                                width: 100%;
                                height: 100%;
                                position: absolute;
                                top: 0;
                                right: 0;
                                background-color: #000;
                                transition: 800ms ease 500ms;
                            }

                            /* アニメーション */
                            &.on{
                                transform: translateX(0px);
                                opacity: 1;

                                &::after{
                                    width: 0;
                                }
                            }
                        }
                    }

                    & p{
                        margin-top: 15px;
                    }
                }
            }
        }
    }
    /* =============== アウトロ =============== */
    & .concept-soudan{
        margin-top: 20px;
        padding-top: 40px;
        position: relative;

        &::before{
            content: "";
            width: 1px;
            height: 30px;
            position: absolute;
            top: 0;
            left: 50%;
            background-color: #000;
        }

        & p{
            text-align: center;
            font-size: 1.6rem;
            font-family: var(--font-sub);
            font-weight: var(--weight-bold);
        }

        & dl{
            margin-top: 40px;
            padding: 20px;
            background-color: #e2d9c7;

            & dt{
                margin-bottom: 25px;
                padding-bottom: 5px;
                text-align: center;
                font-size: 1.8rem;
                font-family: var(--font-sub);
                font-weight: var(--weight-bold);
                border-bottom: 1px solid #fff;
            }

            & dd{
                display: flex;
                justify-content: center;

                & ul{
                    & li{
                        padding-left: 40px;
                        position: relative;
                        font-size: 1.3rem;

                        &::before{
                            content: "";
                            width: 25px;
                            aspect-ratio: 25 / 22;
                            position: absolute;
                            top: 2px;
                            left: 0;
                            background: url(../1_img/front/concept-check.svg) no-repeat center / 100% auto;
                        }

                        & + li{
                            margin-top: 15px;
                        }
                    }
                }
            }
        }
    }

}

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

	concept 降幡設計が考える民家とは PC

==============================================================================*/
@media all and (min-width: 768px){
    #concept{
        margin-top: 80px;

        /* =============== 家型のデザインの箇所 =============== */
        & .concept-house_wrap{
            position: relative;

            & h2{
                display: none;
            }

            /* ===== 家（スマホ） ===== */
            &::after{
                content: none;
            }

            /* ===== 中身 ===== */
            & .house_wrap{
                padding: 35px 30px 20px;
                position: relative;
                z-index: 2;

                & h2{
                    text-align: center;

                    & span{
                        display: none;
                    } 
                }

                /* スライダー */
                & .slider-concept{
                    visibility: visible;
                    opacity: 1;
                    display: flex;
                    gap: 0 40px;

                    & > div{
                        flex: 1;
                        padding: 100px 20px 20px;
                        background-color: var(--color-sub);
                        background-image: url(../1_img/front/concept-title.svg);
                        background-repeat: no-repeat;
                        background-position: top 35px center;
                        background-size: 220px;
                        clip-path: polygon(50% 0%, 100% 35px, 100% 100%, 0 100%, 0% 35px);

                        & img{
                            width: 100%;
                        }
                    }

                    & .num{
                        margin-bottom: 15px;
                        font-size: 3rem;
                        opacity: 1;
                        line-height: 1;
                        transform: translateY(0px);
                    }

                    & .text{
                        margin-top: -10px;
                        position: relative;
                        z-index: 2;

                        & div{
                            & span{
                                opacity: 1;
                                transform: translateX(0px);

                                &::after{
                                    content: none;
                                }
                            }
                        }

                        & p{
                            margin-top: 15px;
                        }
                    }
                }
            }
        }
        /* =============== アウトロ =============== */
        & .concept-soudan{
            margin-top: 50px;
            padding-top: 70px;

            &::before{
                height: 50px;
            }

            & p{
                font-size: 2rem;
            }

            & dl{
                margin: 30px auto 0;
                padding: 40px;
                width: 600px;
            }
        }

    }
}








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

	7.設計事例

==============================================================================================================================================================
============================================================================================================================================================*/
#works{
    margin-top: 30px;
    padding: 40px 0;
    background-color: var(--color-font);
    color: #fff;

    /* 設計事例 */
    & .works-title{
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
        gap: 0 50px;

        & h2{
            display: flex;
            align-items: start;
            flex-direction: column;
            writing-mode: vertical-rl;
            text-orientation: upright;
            font-family: var(--font-sub);
            font-weight: var(--weight-bold);
            gap: 10px;
            line-height: 1;

            & span[lang="ja"]{
                font-size: 2.2rem;
            }

            & span[lang="en"]{
                text-orientation: mixed;
                font-size: 1.1rem;
                font-family: var(--font-sub);
            }
        }

        & p{
            flex: 1;
        }
    }

    /* 受賞歴 */
    & .award-total{
        margin-top: 30px;
        display: flex;
        justify-content: center;

        & .award-total_inner{
            padding: 0 40px;
            height: 70px;
            display: flex;
            align-items: end;
            position: relative;
            background: 
            url(../1_img/base/deco-award_left.svg) no-repeat bottom left / 30px auto,
            url(../1_img/base/deco-award_right.svg) no-repeat bottom right / 30px auto;
            gap: 15px;

            & p{
                font-family: var(--font-sub);

                &:nth-child(1){
                    writing-mode: vertical-rl;
                    text-orientation: upright;
                    font-size: 2.1rem;
                }

                &:nth-child(2){
                    height: 100%;
                    display: flex;
                    gap: 10px;

                    & span{
                        width: 50px;
                        height: 100%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        background-color: #fff;
                        color: var(--color-font);
                        font-size: 4.2rem;
                    }
                }

                &:nth-child(3){
                    font-size: 2.3rem;
                    line-height: 1;
                }
            }
        }
    }

    /* =============== pickup =============== */
    & .pickup_wrap{
        margin-top: 40px;
        padding-left: 20px;

        & h3{
            font-size: 1.8rem;
            font-weight: var(--weight-bold);
        }

        /* =============== スライダー =============== */
        & .slider-pickup{
            margin-top: 10px;
            padding-bottom: 60px;
            overflow: visible;
            
            & .slick-slide {
                margin-right: 20px;
                width: calc( 100vw - 20px -  90px);
            }
            /* 画像とそのタイトル */
            & figure{
                position: relative;
                aspect-ratio: 250 / 300;

                & img{
                    width: 100%;
                    height: 100%;
                    position: absolute;
                    top: 0;
                    left: 0;
                    object-fit: cover;
                    object-position: center;
                }

                & figcaption{
                    position: absolute;
                    bottom: 10px;
                    display: flex;
                    flex-direction: column;
                    gap: 10px;

                    & p{
                        display: inline-block;
                        background-color: #000;
                        color: #fff;
                        line-height: 1;

                        &:first-child{
                            padding: 10px;
                            font-size: 1.6rem;
                        }

                        &:last-child{
                            padding: 5px 10px;
                            font-size: 1.2rem;
                        }
                    }
                }
            }
            /* 賞の名前と受賞タイトル */
            & .pickup-text{
                margin-top: 10px;
                font-family: var(--font-sub);
                font-size: 1.4rem;

                & ul{
                    margin-top: 10px;
                    display: flex;
                    gap: 10px;
                    flex-wrap: wrap;
                    font-size: 1.2rem;

                    & li{
                        padding: 0 10px 1px;
                        border-radius: 1.5em;
                        border: 1px solid #fff;
                        color: #fff;
                    }
                }
            }

            /* ページ送りの矢印 */
            & .slick-arrow {
                width: 40px;
                top: unset;
                bottom: 0;
                transform: translateY(0);
                border-color: #fff;
                background-color: transparent;

                &::after{
                    border-color: #fff;
                }

                &.prev{
                    left: 0;
                }
                &.next{
                    right: unset;
                    left: 50px;
                }
            }

            /* ページネーション */
            & .slick-dots{
                padding-left: 120px;
                display: flex;
                gap: 0;

                & li{
                    height: 2px;
                    flex: 1;
                    aspect-ratio: unset;

                    & button{
                        border-radius: unset;
                    }

                    &.slick-active button{
                        background-color: var(--color-sub);
                    }
                }
            }
        }
    }


    & .post_wrap{
        margin-top: 20px;

        & .article-title{
            color: #fff;
        }
    }
    & .button_wrap{
        margin-top: 40px;
        padding: 0 40px;

        & a{
            width: 100%;
        }
    }
}
/*==============================================================================

	設計事例 PC

==============================================================================*/
@media all and (min-width: 768px){
    #works{
        margin-top: 90px;
        padding: 70px 0;

        /* 設計事例 */
        & .works-title{
            flex-direction: column;
            align-items: center;
            gap: 30px;

            & h2{
                & span[lang="ja"]{
                    font-size: 3rem;
                }

                & span[lang="en"]{
                    font-size: 1.4rem;
                }
            }

            & p{
                flex: 1;
            }
        }

        /* 受賞歴 */
        & .award-total{
            margin-top: 50px;

            & .award-total_inner{
                padding: 0 70px;
                height: 87px;
                background-size: 38px auto;

                & p{
                    &:nth-child(1){
                        font-size: 2.6rem;
                    }

                    &:nth-child(2){
                        & span{
                            width: 65px;
                            font-size: 5.2rem;
                        }
                    }

                    &:nth-child(3){
                        font-size: 2.8rem;
                    }
                }
            }
        }

        /* =============== pickup =============== */
        & .pickup_wrap{
            margin-top: 40px;
            padding-left: 0;

            & .inner-pc{
                width: 600px;
            }

            & h3{
                font-size: 2rem;
            }

            /* =============== スライダー =============== */
            & .slider-pickup{
                margin-top: 10px;
                padding-bottom: 90px;
                
                & .slick-slide {
                    margin: 0 10px;
                    width: 600px;
                }
                /* 画像とそのタイトル */
                & figure{
                    aspect-ratio: 6 / 4;

                    & figcaption{
                        bottom: 30px;

                        & p{
                            &:first-child{
                                padding: 10px 30px;
                                font-size: 1.8rem;
                            }

                            &:last-child{
                                padding: 10px 30px;
                                font-size: 1.4rem;
                            }
                        }
                    }
                }
                /* 賞の名前と受賞タイトル */
                & .pickup-text{
                    font-size: 1.6rem;
                }

                /* ページ送りの矢印 */
                & .slick-arrow {
                    &.prev{
                        left: 50%;
                        transform: translateX(-100%);
                    }
                    &.next{
                        left: calc(50% + 10px);
                    }
                }

                /* ページネーション */
                & .slick-dots{
                    width: 240px;
                    padding-left: 0;
                    bottom: 55px;
                    left: 50%;
                    transform: translateX(-50%);
                }
            }
        }


        & .post_wrap{
            margin-top: 60px;
        }
        & .button_wrap{
            margin-top: 50px;
            padding: 0;
            text-align: center;

            & a{
                width: 280px;
            }
        }
    }
}







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

	8.降幡設計ができること

==============================================================================================================================================================
============================================================================================================================================================*/
#service{
    margin-top: 0;
    padding-top: 50px;

    & .service-title{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
        writing-mode: vertical-rl;
        gap: 0 5px;

        & span{
            font-family: var(--font-sub);
        }

        & span[lang="ja"]{
            line-height: 1.4;
            font-size: 2.2rem;
        }

        & span[lang="en"]{
            color: var(--color-font);
            font-size: 0.9rem;
        }
    }
    /* サービスリスト */
    & .sevice-list{
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        gap: 10px;

        & a{
            aspect-ratio: 36 / 18;
            position: relative;

            & img{
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
            }

            & span {
                padding: 5px;
                height: calc(100% - 50px);
                position: absolute;
                display: flex;
                justify-content: center;
                align-items: center;
                top: 0;
                left: 20px;
                transform: translateY(-10%);
                opacity: 0;
                transition: 1500ms;
                writing-mode: vertical-rl;
                background-color: var(--color-sub);
                color: var(--color-font);
                font-weight: var(--weight-bold);
                font-family: var(--font-sub);

                &.start {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
        }
    }
    /* ボタン */
    & .button_wrap{
        margin-top: 40px;
        padding: 0 40px;

        & a{
            width: 100%;
        }
    }
}
/*==============================================================================

	降幡設計ができること PC

==============================================================================*/
@media all and (min-width: 768px){
    #service{
        padding-top: 80px;

        & .service-title{
            & span[lang="ja"]{
                font-size: 3rem;
            }
            & span[lang="en"]{
                font-size: 1.4rem;
            }
        }
        /* サービスリスト */
        & .sevice-list{
            margin-top: 40px;
            flex-direction: row;

            & a{
                aspect-ratio: 32 / 38;

                & span {
                    padding-top: 20px;
                    height: 160px;
                    justify-content: start;
                    left: 30px;
                    font-size: 2rem;
                }
            }
        }
        /* ボタン */
        & .button_wrap{
            padding: 0;
            text-align: center;

            & a{
                width: 280px;
            }
        }
    }
}