/* CSS Document */
main{
    color: #0F0E47;
    background: #E0F5F8;
}
.inner1280{
    width: 90%;
    
}
.title_wrap{
    text-align: center;
    margin-bottom: 100px;
    .title_img {
        margin-bottom: 50px;
        img{
            max-width: 550px;
            width: 90%;
        }
    }
    .title_cap{
        display: inline-block;
        text-align: left;
    }
}
.taisaku_main{
    width: 40%;
    @media screen and (max-width:480px){
        width:100%;
    }
    .taisaku_img{
        margin-bottom: 10px;
    }
    .uneri_staff{
        display: inline-flex;
        align-items: center;
        @media screen and (max-width:480px){
            display:flex;
            justify-content:flex-end;
        }
        &::after{
            content: "";
            width: 35px;
            height: 1px;
            background: #0F0E47;
            display: block;
            order: 1;
            margin: 0 5px;
        }
        .uneri_staff_name{
            order: 2;
            margin-right: 10px;
        }
        .uneri_staff_tmb{
            order: 3;
            width: 70px;
            aspect-ratio:1/1;
            border-radius: 50%;
            overflow: hidden;
            @media screen and (max-width:768px){
                width: 30px;
            }
            img{
                width: 100%;
            }
        }
    }
}
.taisaku_box{
    align-items: flex-start;
    margin-bottom: 50px;
}
.taisaku_cap{
    width: 55%;
    @media screen and (max-width:480px){
        width:100%;
    }
    .taisaku_title{
        font-family: 'Hiragino Mincho Pro';
        font-weight: 600;
        font-size: 24px;
        line-height: 1.6;
        margin-bottom: 30px;
        @media screen and (max-width:768px){
            font-size:18px;
        }
        img{
            width: 70px;
            vertical-align: middle;
            margin-right: 20px;
            margin-bottom: 20px;
            @media screen and (max-width:768px){
                width:40px;
                margin-right: 10px;
                margin-bottom: 10px;
            }
        }
    }
    .taisaku_text{
        margin-bottom: 50px;
    }
    .taisaku_price{
        position: relative;
        display: inline-block;
        span{
            position: relative;
            z-index: 1;
        }
        .price_marker{
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
        }
    }
}
.is_arrange{
    .taisaku_cap{
        display: block;
        width: 100%;
        text-align: center;
    }
    .arrange_illust{ 
        text-align: center;
        img{
            max-width: 420px;
            width: 100%;
        }
    }
}
.arrange_list{
    counter-reset: number;
    margin-bottom: 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:10px;
    @media screen and (max-width:768px){
        display:block;
    }
    .arrange_item{
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 3;
        grid-row-gap: 20px;
        @media screen and (max-width:768px){
            margin-bottom:10px;
            @media screen and (max-width:480px){
                margin-bottom:30px;
            }
            .arrange_img{
                grid-column: 1/2;
                grid-row: 1/3;
            }
            .taisaku_main{
                grid-column: 2/3; 
                grid-row: 1/2;
            }
            .arrange_cap{
                grid-column: 2/3;
                grid-row: 2/3;
            }
        }
        .arrange_box{
            display: inherit;
            grid-template-rows: inherit;
            grid-row: inherit;
            @media screen and (max-width:768px){
                grid-template-columns:1fr 1fr;
                grid-template-rows:1fr 1fr;
                gap:10px;
                @media screen and (max-width:480px){
                    display:block;
                }
            }
        }
        .arrange_img{
            img{
                width: 100%;
            }
            @media screen and (max-width:768px){
                margin-bottom:20px;
            }
        }
        .taisaku_main{
            width: 100%;
        }
        .uneri_staff{
            width: 100%;
            display: flex;
            justify-content: flex-end;
            @media screen and (max-width:768px){
                justify-content: flex-start;
                @media screen and (max-width:480px){
                    justify-content: flex-end;
                }
            }
        }
        .arrange_number{
            position: relative;
            text-align: center;
            padding-right: 20px;
            border-right: 1px solid;
            width: 75px;
            .border{
                display: block;
                width: 1px;
                height: 15px;
                background: #0F0E47;
                margin: 5px auto;
            }
            &::before{
                content: "STYLE";
                font-size: 10px;
                font-weight: normal;
            }
            &::after{
                counter-increment: number;
                content: counter(number, decimal-leading-zero);
                font-size: 30px;
            }
        }
        .arrange_text{
            width:calc(100% - 75px);
            padding:0 20px;
        }
    }
}
