@charset "UTF-8";
/*==============================================================================
1.共通事項
2.fv
3.news お知らせ
4.topics トピックス
5.intro イントロ
6.menu お品書き
7.shop 店舗情報
8.order 予約について → base.cssに記載
9.point こだわり
10.contact メディアの方へ
11.recruit 採用情報
12.company 会社概要
==============================================================================*/


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

	1.共通事項

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

.more-btn{
    margin-top: 20px;
    text-align: right;

    & a{
        padding-right: 25px;
        display: inline-block;
        position: relative;
        color: var(--color-font);
        font-weight: var(--weight-bold);

        &::after{
            content: "";
            width: 10px;
            height: 10px;
            position: absolute;
            top: 50%;
            right: 0;
            border-top: 2px solid var(--color-font);
            border-left: 2px solid var(--color-font);
            transform: translate(0, -50%) rotate(135deg);
        }
    }
}

@media all and (min-width: 768px){
    .more-btn{
        margin-top: 35px;

        & a{
            font-size: 1.8rem;

            &::after{
                width: 13px;
                height: 13px;
            }
        }
    }
}



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

	2.fv

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

    & h2{
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 4;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;

        & img{
            transform: scale(1.2);
            filter: blur(10px);
            transition: 2000ms;
            opacity: 0;
        
            &.start{
                opacity: 1;
                transform: scale(1);
                filter: blur(0);
            }
        }

        & span{
            display: none;
        }
    }
    
    /*============= スライダー =============*/
    & .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: 50px;
        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: 820px;
        position: relative;
        
        & h2{
            top: 170px;
            height: auto;

            & img{
                width: 390px;
            }
        }

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




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

	3.お知らせ

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

    & .inner{
        margin: 0 10px;
        padding: 50px 20px 30px;
        width: calc(100% - 20px);
        position: relative;
        flex-wrap: wrap;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);

        &::before{
            content: "";
            width: 100%;
            height: 10px;
            position: absolute;
            top: 20px;
            left: 0;
            background-color: var(--color-main);
        }

        & .news-title{
            display: flex;
            gap: 20px;

            & *{
                font-weight: var(--weight-bold);
                font-size: 1.5rem;
            }
        }

        & .news-text{
            & a,& span{
                margin-top: 20px;
                display: block;
                color: var(--color-font);
            }
        }
    }
}
/*==============================================================================

	お知らせ PC

==============================================================================*/
@media all and (min-width: 768px){
    #news{
        margin-top: 0;
        border-top: 10px solid var(--color-main);
        background: #fff;

        & .inner{
            margin: auto;
            padding: 35px 0 30px;
            width: 850px;
            display: flex;
            align-items: center;
            border-radius: 0;
            box-shadow: none;
            gap: 0 25px;

            &::before{
                content: none;
            }

            & .news-title{
                display: flex;
                gap: 20px;
            }

            & .news-text{
                & a,& span{
                    margin-top: 0;
                    font-weight: var(--weight-bold);
                }
            }
        }
    }
}





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

	4.topics トピックス

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

    & .slider-topics_wrap{
        position: relative;

        /* カウンター */
        & .slider-counter{
            width: 100%;
            position: absolute;
            left: 0;
            bottom: -45px;
            text-align: center;
            pointer-events: none;
        }
    }
    & .slider-topics{
        & .slick-list{
            padding-bottom: 20px!important;
        }
        /* 真ん中だけ拡大 */
        & .slick-slide {
            padding: 10px 0;
            transform: scale(0.9);
            transition: transform 800ms;
            will-change: transform;

            & img{
                width: 100%;
                max-width: 450px;
                border-radius: 10px;
                overflow: hidden;
                box-shadow: 5px 5px 20px 0px rgb(96 96 96 / 0.2);
            }
        }
        & .slick-current {
            transform: scale(1);
        }

        /* 矢印 */
        & .slick-arrow{
            top: unset;
            left: unset;
            bottom: -50px;
            width: 35px;

            &::after{
                width: 20%;
            }
        }
        
        & .slick-arrow.prev{
            left: 50%;
            transform: translateX( calc(-100% - 50px) );
        }
        & .slick-arrow.next{
            right: 50%;
            transform: translateX( calc(100% + 50px) );
        }
    }
}
/*==============================================================================

	トピックス PC

==============================================================================*/
@media all and (min-width: 768px){
    #topics{
        padding: 100px 0 50px;

        & .slider-topics_wrap{
            /* カウンター */
            & .slider-counter{
                width: auto;
                left: unset;
                right: 230px;
                bottom: -7px;
            }
        }
        & .slider-topics{

            & .slick-slide {

                & img{
                    max-height: 80vh;
                    min-height: 300px;
                }
            }

            /* 矢印 */
            & .slick-arrow{
                width: 35px;
                bottom: -12px;

                &::after{
                    width: 20%;
                }
            }
            
            & .slick-arrow.prev{
                left: unset;
                right: 300px;
                transform: translate(0px);
            }
            & .slick-arrow.next{
                right: 150px;
                transform: translate(0px);
            }
        }
    }
}








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

	5.intro イントロ

==============================================================================================================================================================
============================================================================================================================================================*/
#intro{
    filter: blur(10px);
    opacity: 0;
    transition: 1200ms 800ms;

    &.start{
        filter: blur(0px);
        opacity: 1;
    }

    & .intro-box{
        position: relative;

        & .inner-pc{
            padding: 60px 20px 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        & .text-main{
            width: 100%;
            display: flex;
            align-items: center;
            order: 1;
            position: relative;
            z-index: 4;
            font-size: 2rem;
            font-family: var(--font-sub);
            font-weight: var(--weight-bold);
            letter-spacing: 0.2em;
            writing-mode: vertical-rl;
            text-orientation: upright;
            white-space: nowrap;

            &::after{
                content: "";
                position: absolute;
            }
            
            & span{
                filter: blur(10px);
                transform: scale(1.1);
                opacity: 0;
                transition: 1500ms;

                &.start{
                    transform: scale(1);
                    filter: blur(0px);
                    opacity: 1;
                }
            }
        }

        & .img{
            position: relative;
            order: 2;

            & img{
                width: 100%;
                position: relative;
                z-index: 2;
                border-radius: 10px;
                overflow: hidden;
            }

            &::after{
                content: "";
                width: 156px;
                aspect-ratio: 156 / 140;
                position: absolute;
                z-index: 1;
                background: url(../1_img/base/deco-tawara.svg) no-repeat center / 100% auto;
            }
        }

        & .text-sub{
            margin-top: 30px;
            font-family: var(--font-sub);
            order: 3;
        }

        /* スライド1つ目の設定 */
        &.slide-1{

            & .text-main{
                font-size: 2.4rem;
            }
        }

        /* スライド2つ目の設定 */
        &.slide-2{
            & .text-main{
                height: 200px;

                &::after{
                    width: 127px;
                    aspect-ratio: 127 / 100;
                    background: url(../1_img/front/intro-slider2-deco.svg) no-repeat center / 100% auto;
                    bottom: -15px;
                    left: -15px;
                }
            }

            & .img{
                &::after{
                    top: -85px;
                    right: -45px;
                }
            }
        }

        /* スライド3つ目の設定 */
        &.slide-3{
            & .text-main{
                height: 200px;

                &::after{
                    width: 202px;
                    aspect-ratio: 202 / 121;
                    background: url(../1_img/front/intro-slider3-deco.svg) no-repeat center / 100% auto;
                    bottom: -15px;
                    right: -15px;
                }
            }
            & .img{
                &::after{
                    top: -50px;
                    left: -40px;
                }
            }
        }

        /* スライド4つ目の設定 */
        &.slide-4{

            &::after{
                content: "";
                width: 142px;
                aspect-ratio: 142 / 74;
                position: absolute;
                right: 50px;
                top: 50%;
                transform: translateY(calc(-50% + 160px));
                background: url(../1_img/front/intro-slider4-deco.svg) no-repeat center / 100% auto;
            }

            & .inner-pc{
                justify-content: flex-start;
                background: url(../1_img/front/intro-slider4-bg.jpg) no-repeat center center / 100% auto;
            }
        }
    }
}
/*==============================================================================

	イントロ PC

==============================================================================*/
@media all and (min-width: 768px){
    #intro{

        & .intro-box{

            & .inner-pc{
                padding: 150px 0px 170px;
                position: relative;
                flex-direction: row-reverse;
                justify-content: space-between;
                align-items: start;

                &::after{
                    content: "";
                    width: 360px;
                    aspect-ratio: 156 / 140;
                    position: absolute;
                    top: 10px;
                    right: -150px;
                    z-index: 1;
                    background: url(../1_img/base/deco-tawara.svg) no-repeat center / 100% auto;
                }
            }
            & .text-main{
                font-size: 3.5rem;
                width: auto;
                line-height: 1.6;
            }
            & .img{
                flex-shrink: 0;

                & img{
                    width: 490px;
                }

                &::after{
                    content: none;
                }
            }
            & .text-sub{
                margin-top: 20px;
                writing-mode: vertical-rl;
                text-orientation: upright;
                font-size: 1.8rem;
            }

            /* スライド1つ目の設定 */
            &.slide-1{
                & .inner-pc{
                    justify-content: center;
                    &::after{
                        content: none;
                    }
                }
                & .text-main{
                    font-size: 4.5rem;
                }
            }

            /* スライド2つ目の設定 */
            &.slide-2{
                justify-content: space-between;
                align-items: start;

                & .text-main{
                    order: 1;
                    height: auto;

                    &::after{
                        width: 210px;
                        bottom: -150px;
                        left: -130px;
                    }
                }
                & .img{
                    order: 3;
                    &::after{
                        top: -85px;
                        right: -45px;
                    }
                }
                & .text-sub{
                    order: 2;
                    height: 270px!important;
                }
            }

            /* スライド3つ目の設定 */
            &.slide-3{
                justify-content: space-between;
                align-items: start;

                & .text-main{
                    order: 3;
                    height: auto;

                    &::after{
                        width: 350px;
                        bottom: -115px;
                        right: unset;
                        left: -270px;
                    }
                }
                & .img{
                    order: 1;

                    &::after{
                        top: -50px;
                        left: -40px;
                    }
                }
                & .text-sub{
                    height: 320px!important;
                }
            }

            /* スライド4つ目の設定 */
            &.slide-4{
                position: relative;

                &::after{
                    content: none;
                }

                & .inner-pc{
                    padding-right: 150px;
                    background: url(../1_img/front/intro-slider4-bg.jpg) no-repeat right 290px top 160px / 540px auto;

                    &::after{
                        width: 255px;
                        aspect-ratio: 142 / 74;
                        top: unset;
                        right: 0;
                        bottom: 90px;
                        background: url(../1_img/front/intro-slider4-deco.svg) no-repeat center / 100% auto;
                    }
                }
            }
        }
    }
}




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

	6.menu お品書き

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

    /* ========== のれん ========== */
    & .menu-noren{
        width: 100%;

        & img{
            width: 100%;
        }
    }

    /* ========== お品書き ========== */
    & .menu{
        margin-top: 65px;
        padding-bottom: 35px;
        background:
            url(../1_img/front/menu-bg.svg) repeat-y top 240px left -30px / 133px auto,
            url(../1_img/front/menu-bg.svg) repeat-y top 0 right -30px / 133px auto;

        & .menu-list{
            display: flex;
            flex-wrap: wrap;
            gap: 20px 10px;

            & li{
                width: calc( (100% - 10px) / 2 );
                border-radius: 10px;
                overflow: hidden;
                background-color: #fff;
                box-shadow: 5px 5px 20px 0px rgb(96 96 96 / 0.2);

                & a{
                    display: flex;
                    flex-direction: column;
                    height: 100%;
                    color: var(--color-font);
                }

                /* ===== 画像のとこ ===== */
                & .img{
                    position: relative;
                    aspect-ratio: 2 / 1;

                    /* バッジ */
                    & .badge{
                        min-width: 100px;
                        padding: 5px 10px;
                        position: absolute;
                        top: 0;
                        left: 0;
                        background-color: var(--color-main);
                        color: #fff;
                        text-align: center;
                        font-weight: var(--weight-bold);
                        font-size: 1.2rem;
                        line-height: 1.2;
                    }

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

                /* ===== テキストのとこ ===== */
                & .text{
                    padding: 10px 20px;
                    line-height: 1.2;
                    font-weight: var(--weight-bold);
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    height: 100%;

                    & .title{
                        font-size: 1.4rem;
                        font-family: var(--font-sub);
                    }
                    & .price{
                        margin-top: 10px;
                        font-size: 2rem;

                        & span{
                            margin-left: 5px;
                            font-size: 40%;
                        }
                    }
                }
            }
        }
        
    }

    & .menu-carousel{
        & .carousel{
            gap: 0 10px;

            & li{
                width: 150px;
                aspect-ratio: 15 / 10;

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

}
/*==============================================================================

	お品書き PC

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

        /* ========== のれん ========== */
        & .menu-noren{
            text-align: center;
            position: relative;
            border-top: 17px solid var(--color-font);

            & img{
                margin-top: -27px;
                width: 1115px;
                position: relative;
                z-index: 2;
            }
        }

        /* ========== お品書き ========== */
        & .menu{
            margin-top: 100px;
            padding-bottom: 45px;
            background: none;

            & .menu-list{
                position: relative;
                z-index: 2;

                &::before,
                &::after{
                    content: "";
                    position: absolute;
                    width: 400px;
                    aspect-ratio: 156 / 140;
                    background: url(../1_img/base/deco-tawara.svg) no-repeat center / 100% auto;
                    z-index: 1;
                }
                &::before{
                    top: -200px;
                    right: -200px;
                }
                &::after{
                    bottom: -200px;
                    left: -200px;
                }

                & li{
                    width: calc( (100% - 20px) / 3 );
                    position: relative;
                    z-index: 2;

                    /* ===== 画像のとこ ===== */
                    & .img{
                        aspect-ratio: 3 / 2;

                        /* バッジ */
                        & .badge{
                            min-width: 150px;
                            padding: 10px 15px;
                            font-size: 1.6rem;
                        }
                    }

                    /* ===== テキストのとこ ===== */
                    & .text{
                        padding: 20px 30px;

                        & .title{
                            font-size: 2.4rem;
                        }
                        & .price{
                            font-size: 3rem;
                        }
                    }
                }
            }
            
        }

        & .menu-carousel{
            position: relative;
            z-index: 2;

            & .carousel{
                gap: 0 25px;

                & li{
                    width: 300px;
                }
            }
        }
    }
}







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

	7.shop 店舗情報

==============================================================================================================================================================
============================================================================================================================================================*/
#shop{
    margin-top: 0;
    padding-top: 60px;

    & .intro{
        & .intro-img{
            width: 100%;
            aspect-ratio: 98 / 28;
            border-radius: 10px;
            overflow: hidden;

            & img{
                width: 100%;
                height: 100%;
                object-position: center;
                object-fit: cover;
                pointer-events: none;
            }
        }
        & p{
            margin-top: 40px;
            text-align: center;
        }
    }

    /* ==================== 店舗一覧 ==================== */
    & .shop-list{
        margin-top: 45px;
        display: flex;
        flex-wrap: wrap;
        gap: 5px;

        & dl{
            width: calc( (100% - 5px) / 2 );
            display: flex;
            flex-wrap: wrap;

            &.sp-100{
                width: 100%;
                gap: 5px;

                & dd{
                    width: calc( (100% - 5px) / 2 );
                }
            }
            & dt{
                margin-bottom: 5px;
                padding-left: 10px;
                width: 100%;

                & span{
                    min-width: 55px;
                    padding: 5px 0 7px; 
                    display: inline-block;
                    background-color: var(--color-font);
                    color: #fff;
                    text-align: center;
                    line-height: 1;
                }
            }
            & dd{
                width: 100%;

                & a{
                    padding: 10px 30px 10px 25px;
                    min-height: 65px;
                    position: relative;
                    display: flex;
                    align-items: center;
                    justify-content: left;
                    border-radius: 15px;
                    background-color: var(--color-accent);
                    color: var(--col-font);
                    font-weight: var(--weight-bold);

                    &::after{
                        content: "";
                        width: 10px;
                        height: 10px;
                        position: absolute;
                        top: 50%;
                        right: 20px;
                        border-top: 2px solid var(--color-font);
                        border-left: 2px solid var(--color-font);
                        transform: translate(0, -50%) rotate(135deg);
                    }
                }
            }
        }
    }

}
/*==============================================================================

	店舗情報 PC

==============================================================================*/
@media all and (min-width: 768px){
    #shop{
        margin-top: 0;
        padding-top: 125px;
        
        & .intro{
            & .intro-img{
                border-radius: 0;
            }
            & p{
                margin-top: 55px;
                font-size: 1.6rem;
            }
        }

        /* ==================== 店舗一覧 ==================== */
        & .shop-list{
            margin-top: 65px;
            gap: 15px 5px;

            & dl{
                width: calc( (100% - 15px) / 4 );
                display: flex;
                flex-wrap: wrap;

                &.pc-50{
                    width: calc( (100% - 5px) / 2 );
                    gap: 5px;

                    & dd{
                        width: calc( (100% - 5px) / 2 );
                    }
                }

                &.pc-100{
                    width: 100%;
                    gap: 5px;

                    & dd{
                        width: calc( (100% - 15px) / 4 );
                    }
                }
                & dt{
                    padding-left: 0;
                }
            }
        }

    }
}









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

	9.point こだわり

==============================================================================================================================================================
============================================================================================================================================================*/
#point{
    & .inner-pc{
        padding-top: 75px;
        position: relative;
        background-color: var(--color-accent);

        &::after{
            content: "";
            width: 100%;
            height: 40px;
            position: absolute;
            left: 0;
            bottom: 0;
            background-color: #fff;
            z-index: 1;
        }

        & .title-lv2{
            & em{
                font-family: var(--font-base);
                font-style: normal;
                font-size: 120%;
            }
        }
        
        /* ==================== point リスト ==================== */
        & .point-list{
            padding: 40vw 20px 0;
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 60px;
            background: url(../1_img/front/point-bg_sp.png) no-repeat top left / 75% auto;

            /* 見出し */
            & .h3_wrap{
                display: flex;
                justify-content: center;
                position: relative;

                & h3{
                    margin-left: 50px;
                    padding-right: 55px;
                    width: 285px;
                    aspect-ratio: 1 / 1;
                    position: relative;
                    display: flex;
                    justify-content: center;
                    align-items: flex-start;
                    background-color: #fff;
                    border-radius: 100%;
                    writing-mode: vertical-rl;
                    text-orientation: upright;
                    line-height: 1.5;
                    font-size: 2.4rem;
                    font-weight: var(--weight-bold);

                    & > span{
                        font-family: var(--font-sub);
                        opacity: 0;
                        transform: translateY(20px);
                        transition: 1000ms;

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

                        & span{
                            display: block;
                        }
                        & span:last-child{
                            text-indent: 2.5em;
                        }
                    }

                    & img{
                        position: absolute;
                        top: 50%;
                        left: -50px;
                        transform: translateY(-50%);
                    }
                }
                
                & .point-icon{
                    position: absolute;
                    left: 50%;
                    bottom: -65px;
                    transform: translateX(-50%);

                    &.point2-icon{
                        bottom: -80px;
                    }
                }
            }

            /* テキスト */
            & .text{
                margin-top: 100px;

                & h4{
                    padding: 0 10px 20px;
                    font-size: 2.4rem;
                    font-family: var(--font-sub);
                    font-weight: var(--weight-bold);
                    line-height: 1.4;
                    opacity: 0;
                    transform: translateY(20px);
                    transition: 1000ms;

                    &::after{
                        content: "";
                        width: 0%;
                        height: 10px;
                        position: absolute;
                        left: 0;
                        bottom: 0;
                        background-color: var(--color-main);
                        transition: 1000ms 500ms;
                    }

                    &.start{
                        opacity: 1;
                        transform: translateY(0);

                        &::after{
                            width: 100%;
                        }
                    }
                }

                & p{
                    margin-top: 30px;
                }

                & .img{
                    margin-top: 20px;
                    text-align: center;

                    & span{
                        display: none;
                    }
                }
            }
        }
        /* ==================== point リスト end ==================== */

        /* お米を引き立てる素材 */
        & .material_wrap{
            margin-top: 60px;
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;

            & .material{
                padding: 100px 60px 0;
                width: 300px;
                aspect-ratio: 1 / 1;
                position: relative;
                background-color: #fff;
                background-image: url(../1_img/base/deco-icon.svg);
                background-size: 64px auto;
                background-position: top 30px center;
                background-repeat: no-repeat;
                border-radius: 100%;
                text-align: justify;
                box-shadow: 8px 8px 0px 0px var(--color-sub);

                & em{
                    font-style: normal;
                    -webkit-text-emphasis: filled dot;
                    text-emphasis: filled dot;
                    -webkit-text-emphasis-position: over;
                    text-emphasis-position: over;
                }

                & .img{
                    width: 100%;
                    position: absolute;
                    top: -27px;
                    left: 0;
                    text-align: center;
                    
                    & span{
                        display: none;
                    }
                    & img{
                        width: 250px;
                    }
                }

                &::before,
                &::after{
                    content: "";
                    position: absolute;
                    background-size: 100% auto;
                }
                &::before{
                    width: 115px;
                    aspect-ratio: 188 / 93;
                    top: 50px;
                    right: -36px;
                    background-image: url(../1_img/front/material-deco1.png);
                }
                &::after{
                    width: 170px;
                    aspect-ratio: 229 / 138;
                    bottom: -70px;
                    left: -25px;
                    background-image: url(../1_img/front/material-deco2.png);
                }
            }
        }
    }
}
/*==============================================================================

	こだわり PC

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

        & .inner-pc{
            width: 1200px;
            padding-top: 200px;
            padding-bottom: 350px;
            border-radius: 15px;
            background-image: url(../1_img/base/deco-tawara_white.svg),url(../1_img/base/deco-tawara_white.svg);
            background-size: 390px auto;
            background-position: top -44px left -85px, bottom 20px right -85px;
            background-repeat: no-repeat;

            &::after{
                content: none;
            }
            
            /* ==================== point リスト ==================== */
            & .point-list{
                padding: 400px 70px 0;
                flex-direction: row;
                gap: 35px;
                background: url(../1_img/front/point-bg_pc.png) no-repeat top left / 827px auto;

                & > div{
                    width: calc( (100% - 70px) / 3 );
                }

                /* 動きの調整 */
                & > div:nth-child(2){
                    /* 見出し */
                    & .h3_wrap{
                        & h3{
                            & > span{
                                transition: 1000ms 500ms;
                            }
                        }
                    }
                    /* テキスト */
                    & .text{
                        & h4{
                            transition: 1000ms 1000ms;

                            &::after{
                                transition: 1000ms 1000ms;
                            }
                        }
                    }
                }
                & > div:nth-child(3){
                    /* 見出し */
                    & .h3_wrap{
                        & h3{
                            & > span{
                                transition: 1000ms 1000ms;
                            }
                        }
                    }
                    /* テキスト */
                    & .text{
                        & h4{
                            transition: 1000ms 1500ms;

                            &::after{
                                transition: 1000ms 1500ms;
                            }
                        }
                    }
                }

                /* 見出し */
                & .h3_wrap{
                    & .point-icon{
                        margin-left: 30px;

                        /* ごはんのアイコン */
                        &.point1-icon{
                            width: 210px;
                            bottom: -135px;
                        }
                        /* お母さんのアイコン */
                        &.point2-icon{
                            width: 320px;
                            bottom: -150px;
                        }
                        /* 手にぎりのアイコン */
                        &.point3-icon{
                            width: 200px;
                            bottom: -105px;
                        }
                    }
                }

                /* テキスト */
                & .text{
                    margin-top: 150px;

                    & h4{
                        transform: translateX(-20px);

                        &.start{
                            transform: translateX(0);
                        }
                    }
                }
            }
            /* ==================== point リスト end ==================== */

            /* お米を引き立てる素材 */
            & .material_wrap{
                width: 100%;
                position: absolute;
                left: 0;
                bottom: -160px;

                & .material{
                    padding: 135px 60px 0;
                    width: 360px;
                    background-size: 80px auto;
                    background-position: top 35px center;
                    font-size: 1.8rem;
                    line-height: 1.6;

                    & .img{
                        top: -32px;

                        & img{
                            width: 320px;
                        }
                    }
                    &::before{
                        width: 190px;
                        top: 45px;
                        right: -100px;
                    }
                    &::after{
                        width: 230px;
                        bottom: 75px;
                        left: -200px;
                    }
                }
            }
        }
    }
}








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

	10.contact メディアの方へ

==============================================================================================================================================================
============================================================================================================================================================*/
#contact{
    padding-top: 60px;

    & .title-lv2{
        margin-bottom: 70px;
    }

    & .text-1{
        text-align: center;

        & span{
            padding: 0 10px 10px;
            display: inline-block;
            position: relative;
            font-family: var(--font-sub);
            font-size: 1.5rem;

            &::after{
                content: "";
                position: absolute;
                left: 0;
                bottom: 0;
                width: 100%;
                height: 5px;
                background: radial-gradient(circle at 2.5px 2.5px, var(--color-sub) 0 2.5px, transparent 2.5px);
                background-size: 10px 5px;
                background-repeat: repeat-x;
            }
        }
    }

    & .text-2{
        margin-top: 25px;
        text-align: center;
        font-size: 1.4rem;
    }

    & .img{
        margin-top: 25px;
        text-align: center;

        & img{
            aspect-ratio: 342 / 163;
        }
        
        & span{
            display: none;
        }
    }

    & .btn_wrap{
        margin-top: 30px;
        text-align: center;

        & .button{
            width: 100%;
            border-width: 2px;
            font-family: var(--font-base);
            
            &::after{
                width: 10px;
                height: 10px;
                top: 50%;
                right: 24px;
                border-right-width: 2px;
                border-bottom-width: 2px;
            }
        }
    }
}
/*==============================================================================

	メディアの方へ PC

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


        & .text-1{
            & span{
                padding: 0 15px 10px;
                font-size: 1.8rem;
            }
        }

        & .img{
            margin-top: 50px;

            & img{
                width: 980px;
                aspect-ratio: 980 / 270;
            }
        }

        & .btn_wrap{
            margin-top: 40px;

            & .button{
                width: 320px;
            }
        }
    }
}







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

	11.recruit 採用情報

==============================================================================================================================================================
============================================================================================================================================================*/
#recruit{
    margin-top: 100px;
    padding-bottom: 90px;
    background-color: var(--color-accent);

    /* ==================== h2 ==================== */
    & .h2_wrap{
        padding-top: 55px;
        display: flex;
        position: relative;

        & .inner{
            position: relative;
            z-index: 2;

            & h2{
                margin-bottom: 35px;
            }
        }

        &::before{
            content: "";
            width: 100%;
            height: 215px;
            position: absolute;
            top: 0;
            left: 0;
            background-image: url(../1_img/front/recruit-h2-bg_sp.jpg);
            background-position: center;
            background-size: cover;
            z-index: 1;
        }
    }

    /* ==================== 募集要項 ==================== */
    & .recruit_wrap{
        position: relative;
        z-index: 3;
        background-color: #fff;
        padding: 30px 20px;
        border-radius: 15px;

        & h3{
            text-align: center;

            & span{
                padding: 0 20px 15px;
                display: inline-block;
                position: relative;
                font-size: 1.8rem;
                font-weight: var(--weight-bold);

                &::after{
                    content: "";
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    width: 100%;
                    height: 5px;
                    background: radial-gradient(circle at 2.5px 2.5px, var(--color-font) 0 2.5px, transparent 2.5px);
                    background-size: 10px 5px;
                    background-repeat: repeat-x;
                }
            }
        }

        & table{
            margin-top: 30px;
            width: 100%;
            border: none;
            table-layout: fixed;

            & tr{
                border: none;
            }

            & th{
                padding: 15px 0;
                width: 5em;
                border: none;
                white-space: nowrap;

                & span{
                    display: block;
                    text-align: justify;
                    text-align-last: justify;
                    text-justify: inter-ideograph;
                }
            }

            & td{
                padding: 15px 0 10px 40px;
                border: none;

                & p{
                    & a{
                        color: var(--color-font);
                        text-decoration: underline;
                    }

                    & + p{
                        margin-top: 5px;
                    }
                }
            }
            
            /* 最初のtr以外にborderをつける */
            & tr:not(:first-child){
                & th,& td{
                    border-top: 1px dashed var(--color-font);
                }
            }
        }

        & .contact{
            margin-top: 25px;

            & .tel{
                padding: 35px 20px 15px;
                display: block;
                position: relative;
                border: 1px solid var(--color-font);
                border-radius: 15px;
                color: var(--color-font);
                text-align: center;
                font-size: 2rem;
                font-weight: var(--weight-bold);

                & .fukidashi{
                    padding: 5px 15px;
                    display: inline-block;
                    position: absolute;
                    top: 0;
                    left: 50%;
                    transform: translate(-50%,-50%);
                    background-color: var(--color-font);
                    color: #fff;
                    font-size: 1.3rem;
                    font-family: var(--font-sub);
                    white-space: nowrap;

                    &::after{
                        content: "";
                        width: 10px;
                        height: 12px;
                        position: absolute;
                        top: calc(100% - 1px);
                        left: 50%;
                        clip-path: polygon(0 0, 50% 100%, 100% 0);
                        background-color: var(--color-font);
                    }
                }
            }

            & .contact-text{
                margin-top: 15px;
                text-align: center;
            }
        }
    }
}
/*==============================================================================

	採用情報 PC

==============================================================================*/
@media all and (min-width: 768px){
    #recruit{

        /* ==================== h2 ==================== */
        & .h2_wrap{
            padding-top: 145px;

            & .inner{
                & h2{
                    margin-bottom: 70px;
                }
            }

            &::before{
                height: 380px;
                background-image: url(../1_img/front/recruit-h2-bg_pc.jpg);
            }
        }

        /* ==================== 募集要項 ==================== */
        & .recruit_wrap{
            background-color: rgb(255,255,255,0.7);
            padding: 70px 90px;

            & h3{
                & span{
                    font-size: 2rem;
                }
            }

            & table{
                margin-top: 65px;

                & th{
                    padding: 30px 0;
                    width: 170px;

                    & span{
                        text-align: left;
                        text-align-last: auto;
                        font-size: 1.7rem;
                    }
                }

                & td{
                    padding: 30px 0 30px 20px;
                    font-size: 1.5rem;
                }
            }

            & .contact{
                margin-top: 0px;
                display: flex;
                align-items: center;
                gap:  0 25px;

                & .tel{
                    padding: 35px 40px 15px;
                    display: block;
                    font-size: 2.4rem;
                    line-height: 1.6;

                    & .fukidashi{
                        padding: 5px 15px;
                        display: inline-block;
                        position: absolute;
                        top: 0;
                        left: 50%;
                        transform: translate(-50%,-50%);
                        background-color: var(--color-font);
                        color: #fff;
                        font-size: 1.3rem;
                        font-family: var(--font-sub);
                        white-space: nowrap;

                        &::after{
                            content: "";
                            width: 10px;
                            height: 12px;
                            position: absolute;
                            top: calc(100% - 1px);
                            left: 50%;
                            clip-path: polygon(0 0, 50% 100%, 100% 0);
                            background-color: var(--color-font);
                        }
                    }

                    & .sub-text{
                        display: block;
                        font-weight: var(--weight-regular);
                        font-size: 1.5rem;
                    }
                }

                & .contact-text{
                    margin-top: 0;
                    text-align: left;
                    font-size: 1.5rem;
                }
            }
        }
    }
}










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

	12.company 運営会社

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

    & .company-text{
        display: flex;
        flex-direction: column;

        & .inner.text{
            margin-top: 40px;
            order: 2;

            & h3{
                font-size: 2rem;
                font-family: var(--font-sub);
            }

            & .text{
                margin-top: 40px;
            }
        }
        & .img-wrap{
            text-align: center;
            order: 1;

            & img{
                width: 200px;
                pointer-events: none;
            }
        }
        & .inner.btn_wrap{
            margin-top: 40px;
            width: 100%;
            text-align: center;
            order: 3;

            & .button {
                width: 100%;
                border-width: 2px;
            }
        }
    }
}

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

	COMPANY PC

==============================================================================*/
@media all and (min-width: 769px) {
    #company{
        padding: 100px 0 0;

        & .company-text{
            margin-top: 115px;
            position: relative;

            & .inner.text{
                margin-top: 0;
                padding: 0;
                
                & > div{
                    margin-left: auto;
                    padding: 0 0 0 50px;
                    width: 50%;
                }

                & h3{
                    text-align: left;
                    font-size: 2.4rem;
                    line-height: 1.8;
                }

                & .text{
                    margin-top: 25px;
                    text-align: left;
                    font-size: 1.5rem;
                }
            }
            & .img-wrap{
                width: calc(50%);
                height: 230px;
                position: absolute;
                aspect-ratio: unset;
                top: 10px;
                left: 0;

                & img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center;
                }
            }
            & .inner.btn_wrap{
                margin-top: 50px;

                & .button {
                    padding-top: 20px;
                    padding-bottom: 20px;
                    width: 350px;
                    font-size: 1.4rem;
                }
            }
        }
    }
}