@charset "utf-8";
.lower_main{
	& h1{
		font-weight: 500;
		font-size: 35px;
        color: #555;
        letter-spacing: 0.08em;
        @media screen and (max-width: 768px){
            text-align: center;
        }
        @media screen and (max-width: 450px){
            font-size: 24px;
        }
		& span{
			display: block;
			color: #92AB2C;
			font-size: 20px;
			font-family: "Lato", sans-serif;
			font-weight: 700;
            @media screen and (max-width: 450px){
                font-size: 16px;
                margin: 5px 0 0;
            }
		}
	}
}
.list_content{
    @media screen and (max-width: 768px){
        padding: 0;
    }
	& .basein{
        max-width: 1440px;
        @media screen and (max-width: 1100px){
            padding: 0 15px;
            box-sizing: border-box;
        }
		@media screen and (max-width: 768px){
			padding: 0;
		}
	}
}
/* ===============================
   セレクトボックス
================================= */
.btn_area{
    max-width: 400px;
    background: #F8FBEE;
    padding: 20px;
    width: 100%;
    border-radius: 0 8px 8px 0;
    @media screen and (max-width:1304px){
        max-width: 310px;
    }
    @media screen and (max-width:915px){
        max-width: 250px;
    }
    @media screen and (max-width:768px){
        max-width: 100%;
        margin-bottom: 40px;
        padding: 20px 20px 30px;
    }
    & .btn_areain{
        max-width: 280px;
        margin-left: auto;
        @media screen and (max-width:768px){
            max-width: 100%;
            margin: 0;
        }
    }
    & h2{
        font-size: 16px;
        color: #92AB2C;
        font-weight: 600;
        margin-bottom: 25px;
        @media screen and (max-width:450px){
            font-size: 14px;
            margin-bottom: 20px;
        }
    }
    & h3{
        font-size: 14px;
        font-weight: 400;
        line-height: 140%;
        margin-bottom: 10px;
        padding-left: 15px;
        position: relative;
        &::before{
            content: "";
            width: 10px;
            height: 2px;
            background: #92AB2C;
            position: absolute;
            top: 50%;
            left: 0;
        }
    }
}
#cast_category{
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
    max-width: 280px;
    width: 100%;
    color: #555555;
    margin: 0 0 10px;
    font-size: 14px;
    padding: 10px;
    box-sizing: border-box;
    @media screen and (max-width:768px){
        max-width: 310px;
        margin-right: 10px;
    }
    @media screen and (max-width:450px){
        max-width: 100%;
        margin-right: 0;
    }
}
#cast_childcategory{
    padding: 10px;
    font-size: 14px;
    max-width: 280px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #F0F0F0;
    border-radius: 4px;
    background-color: #eee;
    color: #666;
    cursor: not-allowed;
    transition: background-color 0.3s ease, color 0.3s ease;
    @media screen and (max-width:768px){
        max-width: 310px;
    }
    @media screen and (max-width:450px){
        max-width: 100%;
    }
    &:disabled{
        background-color: #f0f0f0;
        color: #999999;
        cursor: not-allowed;
        opacity: 0.6;
        transition: opacity 0.3s ease, background-color 0.3s ease;
    }
    &:not(:disabled){
        background-color: #ffffff;
        color: #333333;
        cursor: pointer;
        opacity: 1;
        transition: opacity 0.3s ease, background-color 0.3s ease;
    }
    &:enabled{
        background-color: #fff;
        color: #333;
        cursor: pointer;
    }
}
#cast_posts_area{
    width: calc((100% - 400px) - 100px);
    @media screen and (max-width:1304px){
        width: calc((100% - 350px) - 50px);
    }
    @media screen and (max-width:915px){
        width: calc((100% - 250px) - 20px);
    }
    @media screen and (max-width:768px){
        width: 100%;
        padding: 0 20px;
    }
    @media screen and (max-width:450px){
        padding: 0 1vw;
    }
    & ul{
        gap: 5px;
        justify-content: flex-start;
        @media screen and (max-width:1304px){
            gap: inherit;
        }
    }
}
.castCard{
    width: calc((100% / 3) - 60px);
    min-width: 240px;
    background: #fff;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
    margin-right: 30px;
    &:nth-child(3n){
        margin-right: 0;
    }
    @media screen and (max-width:1304px){
        width: calc((100% / 3) - 10px);
        margin-bottom: 15px;
        margin-right: 15px;
        min-width: auto;
    }
    @media screen and (max-width:768px){
        margin-bottom: 40px;
    }
    @media screen and (max-width:450px){
        width: calc((100% / 3) - 3.333px);
        margin-bottom: 25px;
        margin-right: 5px;
    }
    &.is-visible {
        opacity: 1;
        transform: translateY(0);
    }
    &:hover{
        transform: translateY(-3px);
    }
    &[data-delay]{
        transition-delay: var(--delay, 0s);
    }
    & .flickImg{
        width: 250px;
        height: 250px;
        overflow: hidden;
        position: relative;
        @media screen and (max-width:1304px){
            width: 100%;
            height: 220px;
        }
        @media screen and (max-width:450px){
            height: 126px;
        }
        &.no_castimg{
            background: #E7EDD1;
        }
    }
    & img{
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 100%;
        height: auto;
        &.no_castimg{
            width: 80px;
            height: 80px;
            object-fit: contain;
        }
    }
    & .badgeList{
        position: absolute;
        top: 210px;
        left: 10px;
        width: calc(100% - 20px);
        @media screen and (max-width:1304px){
            top: 185px;
        }
        @media screen and (max-width:450px){
            top: 100px;
            left: 5px;
            width: calc(100% - 10px);
        }
        &.newBadge{
            top: 10px;
            width: 60px;
            text-align: center;
            left: 10px;
            @media screen and (max-width:1304px){
                left: 5px;
            }
        }
        & ul{
            justify-content: flex-start;
        }
        & .badge{
            border-radius: 4px;
            padding: 5px;
            font-size: 14px;
            line-height: 100%;
            @media screen and (max-width:915px){
                font-size: 12px;
            }
            @media screen and (max-width:450px){
                font-size: 9px;
            }
            &.badge_popularitybadge{
                background: #F07D20EB;
                color: #fff;
                margin-right: 5px;
                @media screen and (max-width:450px){
                    position: absolute;
                    top: -95px;
                    right: 0;
                }
            }
            &.badge_campainbadge{
                color: #FC4949;
                border: 1px solid #FC4949;
                background: #fff;
                border-radius: inherit;
            }
            &.badge_new{
                background: #FC4949EB;
                color: #fff;
                margin-right: 5px;
                @media screen and (max-width:450px){
                    position: absolute;
                    top: -5px;
                    left: 0;
                }
            }
        }
    }
    & .categoryTxtwrap{
        margin: 15px 0;
        @media screen and (max-width:450px){
            margin: 10px 0;
        }
        & .flickCategoryWrap{
            display: flex;
            flex-wrap: wrap;
            margin-top: 10px;
            padding: 0;
            list-style: none;
            gap: 5px;
            & .flickName{
                font-size: 16px;
                font-weight: 600;
                margin-bottom: 5px;
                width: 100%;
                @media screen and (max-width:450px){
                    font-size: 12px;
                    margin-bottom: 10px;
                }
            }
            & .flickCategory{
                display: inline-block;
                color: #A7A7A7;
                margin-right: 5px;
                margin-bottom: 5px;
                font-size: 0.85rem;
                &:last-child{
                    margin-right: 0;
                    @media screen and (max-width:450px){
                        margin-bottom: 10px;
                    }
                }
                @media screen and (max-width:915px){
                    font-size: 0.65rem;
                }
            }
            & .campaignPrice{
                font-size: 16px;
                color: #555555;
                background: url(/images/monyicon.svg) no-repeat;
                padding-left: 25px;
                background-position: 0 3px;
                background-size: 18px;
                margin-bottom: 10px;
                display: block;
                width: 100%;
                @media screen and (max-width:915px){
                    font-size: 14px;
                }
                @media screen and (max-width:768px){
                    width: 100%;
                }
                @media screen and (max-width:450px){
                    font-size: 12px;
                    background-size: 15px;
                    background-position: 0 5px;
                    padding-left: 20px;
                    padding-top: 5px;
                }
                &.campainOn{
                    color: #F07D20;
                    font-weight: 600;
                }
            }
        }
    }
}
.otherList{
    width: 100%;
    & .otherCheckList{
        justify-content: flex-start;
        & li{
            background: #92AB2C;
            border-radius: 4px;
            padding: 5px;
            font-size: 14px;
            line-height: 100%;
            color: #fff;
            text-align: center;
            display: inline-block;
            margin-right: 5px;
            margin-bottom: 5px;
            @media screen and (max-width:915px){
                font-size: 0.65rem;
            }
            &.peopleIcon{
                background-image: url(/images/peopleicon.svg);
                background-repeat: no-repeat;
                background-size: 15px;
                background-position: 6px 50%;
                padding-right: 8px;
                padding-left: 25px;
                @media screen and (max-width:915px){
                    background-size: 20%;
                    padding-left: 10%;
                }
                @media screen and (max-width:450px){
                    padding-left: 15%;
                }
            }
            &.check_delivery{
                background-image: url(/images/cardboardicon.svg);
                background-repeat: no-repeat;
                background-size: 15px;
                background-position: 6px 50%;
                padding-right: 8px;
                padding-left: 25px;
                @media screen and (max-width:915px){
                    background-size: 15%;
                    padding-left: 10.5%;
                }
                @media screen and (max-width:450px){
                    padding-left: 15%;
                }
            }
            &.check_online{
                background-image: url(/images/laptopicon.svg);
                background-repeat: no-repeat;
                background-size: 15px;
                background-position: 6px 50%;
                padding-right: 8px;
                padding-left: 25px;
                @media screen and (max-width:915px){
                    background-size: 12%;
                    padding-left: 10.5%;
                }
                @media screen and (max-width:605px){
                    padding-left: 15%;
                }
            }
        }
    }
}
/* 詳細ページ */
.lower_detail{
    & .pathWrap {
        & .path {
            @media screen and (max-width: 450px) {
                margin-bottom: 0;
            }
        }
    }
}
.lowerdetail_main{
    padding: 0;
    margin-bottom: 100px;
    @media screen and (max-width: 600px){
        margin-bottom: 80px;
    }
    & .detailSection{
        max-width: 980px;
        margin: 0 auto;
        color: #555555;
        @media screen and (max-width:605px) and (min-width:391px){
            padding: 0 20px;
        }
        @media screen and (max-width:390px){
            padding: 0 15px;
        }
        & dl{
            margin-bottom: 50px;
            @media screen and (max-width: 970px){
                margin-bottom: 30px;
            }
            & dt{
                max-width: 400px;
                width: 100%;
                height: auto;
                @media screen and (max-width:970px){
                    max-width: 300px;
                }
                @media screen and (max-width:768px){
                    max-width: 200px;
                }
                @media screen and (max-width:605px){
                    max-width: 100%;
                    width: 100%;
                }
                &.flickImg{
                    position: relative;
                    width: 100%;
                    overflow: hidden;
                    height: 400px;
                    @media screen and (max-width: 970px){
                        max-height: 285px;
                        height: 100vh;
                    }
                    @media screen and (max-width: 768px){
                        max-height: 185px;
                    }
                    @media screen and (max-width:605px){
                        max-height: 330px;
                    }
                    @media screen and (max-width:450px){
                        max-height: 400px;
                    }
                    @media screen and (max-width:400px){
                        max-height: 350px;
                    }
                    & img{
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        -webkit-transform: translate(-50%, -50%);
                        -ms-transform: translate(-50%, -50%);
                        transform: translate(-50%, -50%);
                        width: 100%;
                        height: auto;
                        @media screen and (max-width:605px){
                            width: auto;
                            height: 100%;
                        }
                        @media screen and (max-width:450px){
                            width: 100%;
                            height: auto;
                        }
                    }
                }
            }
            & dd{
                width: calc(100% - 460px);
                @media screen and (max-width:970px){
                    width: calc(100% - 350px);
                }
                @media screen and (max-width:768px){
                    width: calc(100% - 250px);
                }
                @media screen and (max-width:605px){
                    width: 100%;
                }
                & .castDetailName{
                    font-size: 22px;
                    font-weight: 600;
                    margin-bottom: 10px;
                    @media screen and (max-width:605px){
                        font-size: 20px;
                    }
                    @media screen and (max-width:450px){
                        text-align: left;
                    }
                }
                & .popLinks{
                    justify-content: flex-start;
                    margin-bottom: 10px;
                }
                & .castDetailCategory{
                    font-size: 16px;
                    color: #A7A7A7;
                    margin-right: 15px;
                    &:last-child{
                        margin-right: 0;
                    }
                    @media screen and (max-width:605px){
                        font-size: 14px;
                        margin-right: 10px;
                    }
                    @media screen and (max-width:450px){
                        margin-left: 0;
                    }
                }
                & .categoryTxtwrap{
                    margin-bottom: 50px;
                    @media screen and (max-width: 915px){
                        & .otherList{
                            & .peopleIcon,
                            & .check_delivery,
                            & .check_online{
                                padding-left: 5%;
                                @media screen and (max-width:605px){
                                    font-size: 14px;
                                    padding-left: 5%;
                                    background-size: 15px;
                                }
                                @media screen and (max-width:450px){
                                    padding-left: 25px;
                                }
                            }
                        }
                    }
                }
                & .castDetailCareer{
                    margin-bottom: 25px;
                    border-bottom: 1px solid #92AB2C;
                    & h2.careerTitle{
                        font-size: 18px;
                        color: #92AB2C;
                        font-weight: 500;
                        letter-spacing: 5px;
                        padding: 0 15px 15px;
                        @media screen and (max-width:605px){
                            font-size: 16px;
                            padding: 0 10px 10px;
                        }
                    }
                    & .careerTxtarea{
                        display: none;
                        & li{
                            padding: 10px 15px 15px;
                            @media screen and (max-width:605px){
                                font-size: 12px;
                                line-height: 1.8;
                            }
                        }
                    }
                }
                & .castDetailTxtblock{
                    margin-bottom: 25px;
                    border-bottom: 1px solid #92AB2C;
                    @media screen and (max-width:605px){
                        margin-bottom: 50px;
                    }
                    & h2{
                        font-size: 18px;
                        color: #92AB2C;
                        font-weight: 500;
                        letter-spacing: 5px;
                        padding: 0 15px 15px;
                        @media screen and (max-width:605px){
                            font-size: 16px;
                            padding: 0 10px 10px;
                        }
                    }
                    & .introductionText{
                        padding: 10px 15px 15px;
                        display: none;
                        & p{
                            @media screen and (max-width:605px){
                                font-size: 12px;
                                line-height: 1.8;
                            }
                            @media screen and (max-width:450px){
                                text-align: left;
                            }
                        }
                    }
                }
/* Toggle */
                & .toggleHook{
                    cursor: pointer;
                    position: relative;
                    &::after{
                        content: "";
                        width: 7px;
                        height: 7px;
                        border-right: 2px solid #A7A7A7;
                        border-bottom: 2px solid #A7A7A7;
                        position: absolute;
                        bottom: 20px;
                        right: 20px;
                        transform: translateY(0) rotate(45deg);
                        transition: transform 0.3s ease;
                    }
                    &.rotate::after{
                        transform: translateY(0) rotate(225deg);
                    }
                }
/* END */
                & .request{
                    text-align: center;
                    padding: 25px 40px;
                    background: #FFFAEA;
                    @media screen and (max-width:605px){
                        margin-bottom: 50px;
                    }
                    @media screen and (max-width:450px){
                        padding: 25px;
                        margin-bottom: 0;
                    }
                    & h3{
                        display: inline-block;
                        color: #F07D20;
                        font-size: 18px;
                        text-align: center;
                        font-weight: 500;
                        position: relative;
                        overflow: hidden;
                        padding: 0 25px;
                        margin-bottom: 10px;
                        @media screen and (max-width:605px){
                            font-size: 16px;
                            margin-bottom: 15px;
                        }
                        &::before,
                        &::after{
                            content: "";
                            width: 1px;
                            height: 20px;
                            background: #F07D20;
                            position: absolute;
                            bottom: 0;
                        }
                        &::before{
                            transform: rotate(140deg);
                            left: 5px;
                        }
                        &::after{
                            transform: rotate(-140deg);
                            right: 5px;
                        }
                    }
                    & ul{
                        text-align: left;
                        & li{
                            padding-left: 25px;
                            margin-bottom: 10px;
                            background: url(/images/checkicon.svg) no-repeat;
                            background-position: 0 50%;
                            @media screen and (max-width:450px){
                                margin-bottom: 5px;
                                &:last-child{
                                    margin-bottom: 0;
                                }
                            }
                        }
                    }
                }
            }
        }
        & .castDetailPlanblock{
            margin-bottom: 50px;
            & h2{
                font-size: 20px;
                font-weight: 500;
                margin-bottom: 15px;
                @media screen and (max-width:605px){
                    font-size: 18px;
                }
            }
            & .planArea_Wrap{
                padding: 25px 25px 0;
                border: 1px solid #A7A7A7;
                border-radius: 6px;
                & dl{
                    padding-bottom: 15px;
                    margin-bottom: 25px;
                    border-bottom: 1px solid #A7A7A7;
                    &:last-child{
                        border-bottom: none;
                    }
                    &.planarea09{
                        margin-bottom: 0;
                    }
                    & dt{
                        max-width: 100%;
                        width: 100%;
                        position: relative;
                        padding-bottom: 15px;
                        cursor: pointer;
                        & .planTitleAdd{
                            font-size: 18px;
                            color: #92AB2C;
                            font-weight: 500;
                            @media screen and (max-width: 605px){
                                max-width: 330px;
                                font-size: 16px;
                            }
                            @media screen and (max-width:450px){
                                max-width: 175px;
                            }
                            @media screen and (max-width:400px){
                                max-width: 150px;
                            }
                            @media screen and (max-width:380px){
                                width: 100%;
                                display: block;
                                max-width: 100%;
                                margin-bottom: 10px;
                            }
                        }
                        & .placeArea{
                            font-size: 12px;
                            margin-right: 45px;
                            @media screen and (max-width: 605px){
                                max-width: 115px;
                            }
                            @media screen and (max-width:450px){
                                display: flex;
                                justify-content: center;
                                align-items: flex-end;
                            }
                            @media screen and (max-width:380px){
                                margin-left: auto;
                            }
                            &.txtPlace{
                                & i{
                                    color: #A7A7A7;
                                    font-size: 16px;
                                    vertical-align: baseline;
                                    vertical-align: -webkit-baseline-middle;
                                    line-height: 25px;
                                }
                            }
                            & i{
                                font-size: 20px;
                                font-weight: 600;
                                line-height: 120%;
                                margin-right: 5px;
                                @media screen and (max-width: 605px){
                                    font-size: 16px;
                                }
                            }
                        }
                        &::after{
                            content: "";
                            width: 7px;
                            height: 7px;
                            border-right: 2px solid #A7A7A7;
                            border-bottom: 2px solid #A7A7A7;
                            position: absolute;
                            bottom: 20px;
                            right: 20px;
                            transform: translateY(0) rotate(45deg);
                            transition: transform 0.3s ease;
                            @media screen and (max-width: 605px){
                                bottom: 25px;
                            }
                            @media screen and (max-width:450px){
                                bottom: 20px;
                            }
                        }
                        &.rotate::after{
                            transform: translateY(0) rotate(225deg);
                        }
                    }
                    & dd{
                        width: 100%;
                        display: none;
                        & .planTxtArea{
                            width: calc(100% - 260px);
                            @media screen and (max-width: 605px){
                                font-size: 12px;
                                line-height: 1.5;
                                width: 100%;
                                margin-bottom: 10px;
                            }
                            & .estimatedtime{
                                padding: 10px 15px;
                                background: #F8FBEE;
                                border-radius: 6px;
                                margin: 10px 0 0;
                            }
                            & .check_online{
                                background-image: url(/images/laptopicon.svg);
                                background-repeat: no-repeat;
                                background-size: 15px;
                                background-position: 6px calc(50% + 1px);
                                background-color: #92AB2C;
                                border-radius: 4px;
                                padding: 5px 10px 5px 25px;
                                font-size: 14px;
                                line-height: 100%;
                                color: #fff;
                                text-align: center;
                                display: inline-block;
                                margin-right: 5px;
                                margin: 10px 0 0;
                                @media screen and (max-width: 605px){
                                    font-size: 10px;
                                }
                                @media screen and (max-width: 605px){
                                    background-size: 12px;
                                }
                            }
                        }
                        & .planDetail_txtArea{
                                display: grid;
                                place-items: center;
                                align-content: center;
                                align-items: center;
                                justify-items: center;
                                @media screen and (max-width: 605px){
                                    margin: 5px auto 0;
                                }
                            & .planDetail_mailLink{
                                width: 100%;
                                & a{
                                    padding: 15px 40px;
                                    background: #F07D20;
                                    color: #fff;
                                    border-radius: 40px;
                                    line-height: 128%;
                                    @media screen and (max-width: 605px){
                                        display: block;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        & .castDetailSnsblock{
            background: #F8FBEE;
            padding: 40px 0;
            text-align: center;
            margin-bottom: 65px;
            @media screen and (max-width: 605px){
                padding: 20px;
                margin-bottom: 30px;
            }
            & .snsTitle{
                margin-bottom: 25px;
                font-size: 14px;
                font-weight: 500;
                @media screen and (max-width: 605px){
                    margin-bottom: 30px;
                }
                & span{
                    display: block;
                    font-size: 18px;
                    font-weight: 500;
                }
            }
            & .snslinks{
                justify-content: center;
                gap: 30px;
                & li{
                    max-width: 30px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }
            }
        }
        & .backList{
            text-align: center;
            & a{
                color: #92AB2C;
                border: 1px solid #92AB2C;
                padding: 15px 40px;
                display: inline-block;
                border-radius: 40px;
                line-height: 1;
                @media screen and (max-width: 605px){
                    font-size: 16px;
                    margin: 35px 0 0;
                }
            }
        }
    }
}
/* FLICKITY */
.flickWrap{
    @media screen and (max-width:605px){
        margin-bottom: 25px;
    }
    & .flick_main{
        margin-bottom: 10px;
        max-height: 400px;
        height: 100vh;
        @media screen and (max-width: 970px){
            max-height: 285px;
        }
        @media screen and (max-width: 768px){
            max-height: 185px;
        }
        @media screen and (max-width:605px){
            max-height: 330px;
        }
        @media screen and (max-width:450px){
            max-height: 400px;
            height: 100vh;
        }
        @media screen and (max-width:400px){
            max-height: 350px;
        }
        & .flickity-prev-next-button{
            width: 40px;
            height: 40px;
            &.next{
                right: -20px;
                @media screen and (max-width:605px){
                    right: 0;
                }
                @media screen and (max-width:450px){
                    right: -15px;
                }
            }
            &.previous{
                left: -20px;
                @media screen and (max-width:605px){
                    left: 0;
                }
                @media screen and (max-width:450px){
                    left: -15px;
                }
            }
        }
        & .flick_item{
            width: 100%;
            overflow: hidden;
            height: 400px;
            @media screen and (max-width: 970px){
                max-height: 285px;
                height: 100%;
            }
            @media screen and (max-width: 768px){
                max-height: 185px;
            }
            @media screen and (max-width:605px){
                max-height: 330px;
            }
            @media screen and (max-width:450px){
                max-height: 400px;
                height: 100vh;
            }
            @media screen and (max-width:400px){
                max-height: 350px;
            }
            & .trim{
                @media screen and (max-width:605px){
                    width: auto;
                    height: 100%;
                }
                @media screen and (max-width:450px){
                    width: 100%;
                    height: auto;
                }
            }
        }
        @media screen and (max-width: 1020px){
            margin-left: 15px;
            height: 100%;
        }
        @media screen and (max-width:605px){
            margin-left: 0;
        }
    }
    & .flick_thumbs{
        width: 100%;
        @media screen and (max-width: 970px){
            margin: 0 10px;
        }
        & .flick_thumb_item{
            width: 80px;
            margin: 0 5px;
            cursor: pointer;
            border: 2px solid transparent;
            &.is-nav-selected{
                border-color: #92AB2C;
            }
            @media screen and (max-width: 970px){
                width: 50px;
            }
        }
        & img{
            display: block;
            width: 100%;
        }
    }
}
/** CONTACT **/
.contact_basein{
    max-width: 920px;
    margin: 0 auto 60px;
    width: 100%;
	@media screen and (max-width: 768px){
		margin: 0 0 20px;
		padding: 0 15px;
	}
    @media screen and (max-width: 500px){
        margin: 0 0 80px;
    }
    & .wpcf7-list-item{
        margin: 0 1em 0 0;
    }
    & .disBlock{
        color: #92AB2C;
        font-weight: 500;
        display: block;
        font-size: 16px;
        margin-bottom: 10px;
        @media screen and (max-width: 768px){
            width: 100%;
            font-size: 14px;
            margin-bottom: 15px;
        }
    }
	& h2{
		text-align: center;
		margin-bottom: 30px;
	}
	& p.contact_caution,
	& p.contact_cautiontxt{
		font-size: 100%;
	}
	& p.contact_caution{
		margin-bottom: 15px;
	}
	& p.contact_cautiontxt{
		margin-bottom: 60px;
		@media screen and (max-width: 768px){
			font-size: 15px;
			margin-bottom: 35px;
		}
        @media screen and (max-width: 500px){
            margin-bottom: 50px;
        }
		& span{
			color: #F07D20;
		}
	}
	& .contact_form{
        & .formWrap{
            box-shadow: 0 4px 10px #E0E0E0;
            border-radius: 20px;
            padding: 50px 60px;
            margin-bottom: 50px;
            @media screen and (max-width: 500px){
                padding: 25px 15px;
            }
        }
        & dl{
            margin-bottom: 25px;
            border-bottom: 1px solid #A7A7A7;
            padding-bottom: 20px;
            display: flex;
            justify-content: flex-start;
            flex-wrap: wrap;
            align-items: center;
            align-content: center;
            &:last-child{
                margin-bottom: 0;
            }
            &:first-child{
                & p{
                    text-align: center;
                    font-size: 18px;
                    margin-bottom: -10px;
                }
            }
            @media screen and (max-width: 768px){
                margin-bottom: 30px;
                @media screen and (max-width: 500px){
                    margin-bottom: 25px;
                }
                &:last-child{
                    margin-bottom: 0;
                }
                & dt{
                    margin-bottom: 10px;
                    & p{
                        font-size: clamp(18px, 1vw, 20px);
                    }
                }
            }
            &.castForm,
            &.placeForm{
                & dt{
                    margin-bottom: 0;
                    @media screen and (max-width: 500px){
                        margin-bottom: 10px;
                    }
                }
                & dd{
                    & input[type="email"],
                    & input[type="tel"],
                    & input[type="text"],
                    & textarea{
                        padding: 0;
                        border: none;
                        font-weight: 600;
                        font-size: 16px;
                        color: #555;
                    }
                    & input[name="plan_title_view"]{
                        font-size: 12px;
                    }
                }
            }
            & dt{
                font-size: 16px;
                font-weight: 400;
                margin-right: 40px;
                width: 180px;
                @media screen and (max-width: 500px){
                    width: 100%;
                    font-size: 14px;
                    margin-bottom: 10px;
                }
                & span,
                & i{
                    color: #F07D20;
                    margin-left: 10px;
                }
                & i{
                    font-weight: normal;
                    font-size: 12px;
                    @media screen and (max-width: 768px){
                        display: block;
                        margin: 0;
                    }
                }
            }
            & dd{
                width: calc(100% - 220px);
                @media screen and (max-width: 500px){
                    width: 100%;
                    font-size: 16px;
                }
                & input[type="email"],
                & input[type="tel"],
                & input[type="text"],
                & textarea{
                    width: 100%;
                    padding: 10px 15px;
                    font-size: 100%;
                    border: 1px solid #E0E0E0;
                    box-sizing: border-box;
                    border-radius: 4px;
                    @media screen and (max-width: 768px){
                        padding: 10px 15px 15px;
                    }
                    @media screen and (max-width: 500px){
                        padding: 10px;
                    }
                    &:focus-visible,
                    &:focus,
                    &:active{
                        outline: none;
                        border-radius: 0;
                    }
                    &::placeholder{
                        color: #c3c3c3;
                    }
                }
                & span[data-name="referertitle"]{
                    width: auto;
                    & input.castName{
                        border: none;
                        display: inline-block;
                        cursor: auto;
                        font-weight: bold;
                        color: #92ab2c;
                        font-size: 18px;
                        padding: 0;
                        text-align: center;
                        position: relative;
                    }
                }
                & textarea{
                    min-height: 160px;
                    box-sizing: border-box;
                    @media screen and (max-width: 500px){
                        max-height: 160px;
                    }
                }
                & label{
                    cursor: pointer;
                }
                & .policyWrap{
                    & a{
                        text-decoration: underline;
                        color: #92ab2c;
                    }
                }
            }
            & .placeForm{
                & dt{
                    margin-bottom: 0;
                }
                & dd{
                    & p{
                        & input{
                            padding: 0;
                            border: none;
                            font-weight: 600;
                            font-size: 16px;
                            color: #555;
                            line-height: 1;
                        }
                    }
                    & input[type="email"],
                    & input[type="tel"],
                    & input[type="text"],
                    & textarea{
                        padding: 0;
                        border: none;
                        font-weight: 600;
                        font-size: 16px;
                        color: #555;
                    }
                    & select{
                        border: 1px solid #F0F0F0;
                        border-radius: 4px;
                        transition: background-color 0.3s ease, color 0.3s ease;
                        max-width: 290px;
                        width: 100%;
                        color: #555555;
                        margin: 0 0 10px;
                        font-size: 14px;
                        padding: 10px 40px 10px 10px;
                        box-sizing: border-box;
                    }
                }
            }
            &.privacyPolicy{
                & label{
                    font-size: 100%;
                    font-weight: bold;
                    color: #325151;
                }
            }
        }
        & .contactAge{
            & dd{
                & select{
                    border: 1px solid #F0F0F0;
                    border-radius: 4px;
                    transition: background-color 0.3s ease, color 0.3s ease;
                    max-width: 290px;
                    width: 100%;
                    color: #555555;
                    margin: 0 0 10px;
                    font-size: 14px;
                    padding: 10px 40px 10px 10px;
                    box-sizing: border-box;
                    @media screen and (max-width: 500px){
                        max-width: 100%;
                    }
                }
            }
        }
        & .contactSex,
        & .contactOnline,
        & .contactDay{
            & dt{
                @media screen and (max-width: 768px){
                    max-width: 100%;
                }
            }
            & dd{
                & span.first{
                    margin: 0;
                }
                & label{
                    font-size: 16px;
                    margin-right: 15px;
                    @media screen and (max-width: 768px){
                        margin-bottom: 10px;
                        font-size: 14px;
                    }
                    & input[type="radio"]{
                        -webkit-appearance: none;
                        width: 20px;
                        height: 20px;
                        border: 1px solid #E0E0E0;
                        border-radius: 50%;
                        margin: -5px 5px -5px 0;
                        &:before{
                            content: "";
                            display: block;
                            width: calc(100% - 8px);
                            height: calc(100% - 8px);
                            margin: 4px auto;
                            border-radius: 50%;
                        }
                        &:checked:before {
                            background: #92AB2C;
                        }
                    }
                }
                @media screen and (max-width: 768px){
                    width: 100%;
                }
            }
        }
        & .contactSelect{
            & dd{
                & select{
                    border: 1px solid #F0F0F0;
                    border-radius: 4px;
                    transition: background-color 0.3s ease, color 0.3s ease;
                    max-width: 150px;
                    width: 100%;
                    color: #555555;
                    margin: 0 0 10px;
                    font-size: 14px;
                    padding: 10px 40px 10px 10px;
                    box-sizing: border-box;
                    margin-left: 15px;
                    @media screen and (max-width: 500px){
                        margin: 0;
                        max-width: 100%;
                    }
                }
            }
        }
        & .contactDay{
            & dt{
                position: relative;
                overflow: hidden;
                @media screen and (max-width: 768px){

                }
            }
            & dd{
                width: calc(100% - 245px);
                @media screen and (max-width: 768px){
                    width: 100%;
                    display: flex;
                    flex-wrap: wrap;
                    align-content: stretch;
                    justify-content: space-between;
                    align-items: stretch;
                }
                @media screen and (max-width: 500px){
                    & ul{
                        & li{
                            & input[type="date"]{
                                background-color: #fff !important;
                            }
                        }
                    }
                }
                & ul{
                    & li{
                        position: relative;
                    }
                }
                & span{
                    @media screen and (max-width: 768px){
                        width: calc(45% - 15px);
                        display: block;
                    }
                    @media screen and (max-width: 500px){
                        width: 100%;
                        margin-bottom: 15px;
                    }
                    &.wpcf7-not-valid-tip{
                        position: absolute;
                        top: -60px;
                        left: 115px;
                        width: 230px;
                        display: block;
                        @media screen and (max-width: 500px){
                            width: 100%;
                            margin-top: 5px;
                            position: relative;
                            top: 0;
                            left: 0;
                        }
                    }
                }
                & i{
                    margin-left: 30px;
                    @media screen and (max-width: 768px){
                        width: calc(55% - 15px);
                        margin: -15px 0 0;
                        & span{
                            width: 90%;
                        }
                    }
                    @media screen and (max-width: 500px){
                        margin: 0;
                        display: flex;
                        align-items: center;
                        width: 100%;
                        justify-content: space-between;
                        & .wpcf7-form-control-wrap{
                            width: calc(100% - 55px);
                            margin: 0;
                            & select{
                                margin: 0;
                            }
                        }
                    }
                }
                & ul{
                    & li{
                        padding-bottom: 10px;
                        margin-bottom: 10px;
                        border-bottom: 1px dotted #92AB2C;
                        @media screen and (max-width: 500px){
                            padding-bottom: 15px;
                            margin-bottom: 15px;
                        }
                        & .thisTitle{
                            padding-left: 30px;
                            position: relative;
                            margin-bottom: 10px;
                            font-size: 16px;
                            color: #555;
                            &::before{
                                content: "";
                                width: 15px;
                                height: 3px;
                                background: #92AB2C;
                                position: absolute;
                                top: 50%;
                                left: 0;
                            }
                        }
                        &:last-child{
                            margin-bottom: 0;
                            border-bottom: none;
                        }
                    }
                }
                & .thisBlock{
                    font-size: 16px;
                    margin-bottom: 15px;
                    @media screen and (max-width: 500px){
                        font-size: 14px;
                        font-weight: 500;
                        color: #555;
                    }
                }
                & select{
                    border: 1px solid #F0F0F0;
                    border-radius: 4px;
                    transition: background-color 0.3s ease, color 0.3s ease;
                    max-width: 220px;
                    width: 100%;
                    color: #555555;
                    margin: 0 0 10px;
                    font-size: 14px;
                    padding: 10px 40px 10px 10px;
                    box-sizing: border-box;
                    margin-left: 15px;
                    @media screen and (max-width: 768px){
                        margin-left: 0;
                        max-width: 100%;
                    }
                }
            }
            & input{
                border: 1px solid #F0F0F0;
                border-radius: 4px;
                transition: background-color 0.3s ease, color 0.3s ease;
                max-width: 220px;
                width: 100%;
                color: #555555;
                margin: 0;
                font-size: 14px;
                padding: 10px;
                box-sizing: border-box;
                cursor: pointer;
                @media screen and (max-width: 768px){
                    min-width: 100%;
                }
            }
        }
        & .acceptanceWrap{
            padding: 40px 0;
            background: #F8FBEE;
            border-radius: 20px;
            & .acceptance{
                text-align: center;
                & input[type="checkbox"]{
                    width: 20px;
                    height: 20px;
                    min-width: 15px;
                    vertical-align: text-top;
                    margin-right: 10px;
                    border-radius: 4px;
                    &:checked::before{
                        margin: 0;
                        height: 20px;
                        width: 20px;
                        top: 5px;
                        left: 3px;
                        background: url(/images/checkbox.svg) no-repeat;
                        content: "";
                    }
                    @media screen and (max-width: 768px){
                        width: 20px;
                        height: 20px;
                        min-width: 20px;
                        vertical-align: top;
                        @media screen and (max-width: 500px){
                            vertical-align: text-top;
                        }
                        &:checked::before{
                            top: -2px;
                            left: -1px;
                            @media screen and (max-width: 500px){
                                top: 4px;
                                left: 2px;
                            }
                        }
                    }
                }
                & label{
                    font-size: 16px;
                    font-weight: 700;
                    cursor: pointer;
                }
            }
            & .orange_btn{
                text-align: center;
                margin-top: 25px;
                @media screen and (max-width: 768px){
                    margin-top: 20px;
                }
                & input[type="submit"]{
                    max-width: 310px;
                    text-align: center;
                    box-sizing: border-box;
                    margin: 0 auto;
                    color: #fff;
                    border: 1px solid #F07D20;
                    padding: 15px 40px;
                    display: inline-block;
                    border-radius: 40px;
                    line-height: 1;
                    background: #F07D20;
                    font-size: 14px;
                    width: auto;
                    cursor: pointer;
                    &:disabled{
                        background: #cdcdcd;
                        transition: all 0.15s linear;
                        cursor: not-allowed;
                        color: #fff;
                        border: 1px solid #cdcdcd;
                    }
                    @media screen and (max-width: 768px){
                        display: inline-block;
                        line-height: 1;
                        width: auto;
                    }
                    &:hover{
                        opacity: .8;
                    }
                }
                & .wpcf7-spinner{
                    display: none;
                }
            }
        }
        & .cancelPolicy,
        & .privacyPolicy{
            border-bottom: none;
            margin-bottom: 50px;
            padding: 0;
            & dt{
                font-size: 20px;
                font-weight: 600;
                padding-left: 20px;
                width: 100%;
                margin-bottom: 25px;
                position: relative;
                &::before {
                    content: "";
                    width: 5px;
                    height: 25px;
                    background: #92AB2C;
                    position: absolute;
                    top: 5px;
                    left: 0;
                }
            }
            & dd{
                width: 100%;
                & .policyWrap{
                    & p{
                        font-size: 16px;
                        margin-bottom: 10px;
                    }
                    & ul{
                        & li{
                            font-size: 16px;
                            margin-bottom: 5px;
                            padding-left: 15px;
                            position: relative;
                            &::before {
                                content: "";
                                width: 5px;
                                height: 5px;
                                background: #92AB2C;
                                position: absolute;
                                top: 10px;
                                left: 3px;
                                border-radius: 50%;
                            }
                        }
                    }
                }
            }
        }
        & .privacyPolicy{
            border-bottom: none;
            margin-bottom: 50px;
            padding: 0;
            & dt{
                font-size: 20px;
                font-weight: 600;
                padding-left: 20px;
                width: 100%;
                margin-bottom: 25px;
                position: relative;
                &::before {
                    content: "";
                    width: 5px;
                    height: 25px;
                    background: #92AB2C;
                    position: absolute;
                    top: 5px;
                    left: 0;
                }
            }
            & dd{
                width: 100%;
            }
        }
	}
/** CHECK **/
	& .contact_form.checkForm{
        margin: 60px 0 0;
        @media screen and (max-width: 600px){
            margin: 50px 0 0;
        }
        & .formWrap{
            box-shadow: 0 4px 10px #E0E0E0;
            border-radius: 20px;
            padding: 50px 60px;
            margin-bottom: 50px;
            @media screen and (max-width: 600px){
                padding: 25px 15px;
            }
        }
		& h3{
            text-align: center;
            font-size: clamp(30px, 2vw, 42px);
            margin-bottom: 40px;
            @media screen and (max-width: 768px){
                font-size: 25px;
                margin-bottom: 30px;
            }
		}
		& dl{
            border-bottom: 1px solid #A7A7A7;
            padding-bottom: 20px;
            display: flex;
            justify-content: flex-start;
            flex-wrap: wrap;
            align-items: center;
            align-content: center;
            width: 100%;
			margin: 0 auto 25px;
            @media screen and (max-width: 768px){
                margin-bottom: 20px;
            }
            &.check_planName{
                @media screen and (max-width: 768px){
                    & dt{
                        margin-bottom: 5px;
                    }
                    & dd,
                    & dt{
                        width: 100%;
                    }
                }
            }
			& dt{
                font-size: 16px;
                font-weight: 400;
                margin-right: 40px;
                width: 180px;
                @media screen and (max-width: 768px){
                    width: auto;
                    margin-right: 0;
                    & p{
                        text-align: left;
                    }
                }
                @media screen and (max-width: 600px){
                    font-size: 14px;
                }
			}
            & dd{
                padding: 0;
                border: none;
                font-weight: 600;
                font-size: 16px;
                color: #555;
                @media screen and (max-width: 768px){
                    width: auto;
                    text-align: left;
                    margin: 0;
                }
            }
			@media screen and (max-width: 768px){
				align-items: center;
				align-content: center;
				&:last-child{
					margin-bottom: 0;
				}
				& dt{
					margin-bottom: 0;
					margin-right: 5px;
					& p{
						font-size: clamp(14px, 1vw, 20px);
					}
				}
			}
			&.placeForm,
			&.textareaForm{
				border-bottom: 1px solid #A7A7A7;
				padding-top: 15px;
                margin-bottom: 15px;
				& dt{
					margin-bottom: 5px;
				}
				& dd{
					width: 100%;
					margin-bottom: 15px;
				}
			}
		}
		& .chackBtn{
            justify-content: center;
            align-items: center;
            width: 100%;
            padding: 40px 0;
            background: #F8FBEE;
            border-radius: 20px;
            margin: 50px 0 3rem;
            @media screen and (max-width: 600px){
                padding: 40px 20px;
            }
			& .orange_btn{
				& input{
                    color: #92AB2C;
                    border: 1px solid #92AB2C;
                    padding: 15px 30px;
                    display: inline-block;
                    border-radius: 40px;
                    line-height: 1;
                    background: #fff;
                    font-size: 14px;
                    max-width: 310px;
                    text-align: center;
                    width: 100%;
                    box-sizing: border-box;
                    margin: 0 auto;
                    transition: all 0.15s linear;
                    cursor: pointer;
                    @media screen and (max-width: 600px){
                        font-size: 12px;
                        padding: 15px;
                    }
				}
				&.previosBtn{
					margin-right: 45px;
					& input{
                        color: #f07d20;
                        border: 1px solid #f07d20;
                        padding: 15px 30px;
                        display: inline-block;
                        border-radius: 40px;
                        line-height: 1;
                        background: #fff;
                        font-size: 14px;
                        &;hover{
                            opacity: .8;
                        }
                        @media screen and (max-width: 600px){
                            font-size: 12px;
                            padding: 15px;
                        }
					}
				}
				@media screen and (max-width: 768px){
					width: calc(50% - 5px);
					margin-top: 30px;
					& input{
						padding: 15px 0;
						width: 100%;
						line-height: 1;
					}
					&.previosBtn{
						margin-right: 10px;
					}
                    @media screen and (max-width: 600px){
                        margin-top: 0;
                    }

				}
			}
		}
	}
/** COMPLEAT **/
	&.compleatArea{
        max-width: 940px;
        text-align: center;
        margin: 0 auto;
        & .compleatBase{
            margin: 50px auto 0;
            background: #F8FBEE;
            padding: 65px 0;
            @media screen and (max-width: 600px){
                padding: 65px 20px;
            }
            & h1{
                max-width: 535px;
                width: 100%;
                margin: 0 auto;
                color: #555;
                letter-spacing: 0.08em;
            }
            & .contact_caution{
                font-size: 16px;
                margin: 30px 0 0;
                @media screen and (max-width: 600px){
                    font-size: 14px;
                    font-feature-settings: normal;
                }
            }
        }
		& .orange_btn{
			& a{
                margin: 50px auto 100px;
                color: #92AB2C;
                border: 1px solid #92AB2C;
                padding: 15px 40px;
                border-radius: 40px;
                line-height: 1;
                text-align: center;
                width: 100%;
                box-sizing: border-box;
                display: inline-block;
                background: #fff;
                max-width: 200px;
                font-weight: 500;
				@media screen and (max-width: 768px){
					padding: 20px 0;
					margin: 30px auto 60px;
					font-size: clamp(14px, 1vw, 22px);
					line-height: 1;
				}
                @media screen and (max-width: 430px){
                    padding: 15px 0;
                    margin: 40px auto 90px;
                }
			}
		}
	}
}
@media screen and (max-width: 600px){
/* LOWER */
	.lower_main p{
		text-align: center;
		max-width: 1040px;
		margin: 0 auto;
	}
	.lower_main p img{
		width: 100%;
	}

/* CONTACT */
	.contact_basein h2{
		margin-bottom: 20px;
	}
	.contact_basein h2 img{
		width: 25%;
	}
	.contact_basein p.contact_caution{
		font-size: 14px;
		margin-bottom: 15px;
	}
	.contact_form dl{
		margin-bottom: 35px;
	}
	.contact_form dl dt{
		margin-bottom: 15px;
		font-size: 18px;
	}
	.contact_form dl dt i{
		font-size: 15px;
	}
	span.wpcf7-list-item{
		margin: 0 0 0 3em;
	}
	span.wpcf7-list-item.first{
		margin: 0;
	}
	.contact_form label{
		font-size: 18px;
	}
	.contact_form input,
	.contact_form textarea{
		font-size: 18px;
	}
	.contact_form input[type="number"]{
		width: calc( 7% - 22px );
		margin-right: 10px;
		padding: 0 0 0 10px;
	}
	.contact_form input[type="submit"]{
		cursor: pointer;
		width: 35%;
	}
	.contact_form  span.wpcf7-list-item{
		margin: 0;
		& label{
			margin: 0;
		}
	}
}
.contactArea{
    &.contactConfirm{
        @media screen and (max-width: 510px){
            & .screen-reader-response{
                display: none;
            }
        }
    }
    &.defalutContact{
        & p.contact_canceltxt{
            text-align: center;
            & span{
                color: #92AB2C;
                @media screen and (max-width: 510px){
                }
            }
            & .cancel_btn{
                text-align: center;
                box-sizing: border-box;
                margin: 0 auto;
                color: #fff;
                background: #F07D20EB;
                font-size: 14px;
                cursor: pointer;
                border: 1px solid #F07D20EB;
                padding: 15px 40px;
                border-radius: 40px;
                line-height: 1;
                display: block;
                width: auto;
                max-width: max-content;
                margin-top: 15px;
            }
        }
        & .acceptanceWrap{
            & .orange_btn{
                margin: 0;
            }
        }
    }
    & .lower_main{
        &.lowerlist_main{
            background: #F8FBEE;
            margin-bottom: 50px;
            @media screen and (max-width: 500px){
                margin-bottom: 40px;
            }
            & .contact_basein{
                max-width: 920px;
                margin: 0 auto;
                & .castForm{
                    & dd{
                        & input[type="email"],
                        & input[type="tel"],
                        & input[type="text"],
                        & textarea{
                            border: none;
                            font-size: 16px;
                            font-weight: 600;
                            padding: 0;
                        }
                    }
                }
                & dd{
                    & .wpcf7-radio{
                        label{
                            margin-right: 15px;
                            & input[type="radio"]{
                                -webkit-appearance: none;
                                width: 20px;
                                height: 20px;
                                border: 1px solid #E0E0E0;
                                border-radius: 50%;
                                margin: -5px 5px -5px 0;
                                &:before{
                                    content: "";
                                    display: block;
                                    width: calc(100% - 8px);
                                    height: calc(100% - 8px);
                                    margin: 4px auto;
                                    border-radius: 50%;
                                }
                                &:checked:before {
                                    background: #92AB2C;
                                }
                            }
                        }
                    }
                }
            }
            & .contact_basein{
                max-width: 920px;
                margin: 0 auto;
                & .wpcf7{
                    & form{
                        & .wpcf7-response-output{
                            margin: 0;
                            padding: 20px 0 0;
                            border: none;
                            text-align: center;
                            font-size: 20px;
                            color: #F44336;
                        }
                    }
                }
                & .contact_form{
                    padding: 50px 60px;
                    box-shadow: 0 4px 10px #E0E0E0;
                    border-radius: 20px;
                    & dl{
                        & dt{
                            & p{
                                font-size: 18px;
                            }
                        }
                    }
                }
            }
        }
    }
}
.contactCancel__Area{
    & .contact_caution{
        @media screen and (max-width: 550px){
            font-size: clamp(14px, 1vw, 16px);
        }
    }
    & .contact_form{
        & dl{
            @media screen and (max-width: 550px){
                & dt{
                    & .cautionTxt{
                        font-size: clamp(14px, 1vw, 16px);
                        display: block;
                        margin-left: 1rem;
                        text-indent: -1rem;
                        margin-top: 5px;
                    }
                }
            }
            & dd{
                & .cautionTxt{
                    font-size: 16px;
                    font-weight: 400;
                    color: #92AB2C;
                    margin-bottom: 10px;
                    display: block;
                }
            }
            &.selectArea{
                justify-content: flex-start;
                align-items: center;
                & dd{
                    & input,
                    & select{
                        border: 1px solid #F0F0F0;
                        border-radius: 4px;
                        transition: background-color 0.3s ease, color 0.3s ease;
                        max-width: 290px;
                        width: 100%;
                        color: #555555;
                        margin: 0 0 10px;
                        font-size: 14px;
                        padding: 10px;
                        box-sizing: border-box;
                        cursor: pointer;
                        min-width: 290px;
                        @media screen and (max-width: 550px){
                            font-size: clamp(14px, 1vw, 16px);
                            min-width: 100%;
                        }
                    }
                }
            }
        }
        & .acceptanceWrap{
            & .orange_btn{
                margin: 0;
            }
        }
    }
}
/* SINGLE DEFAULT */
.singleDefault{
    & .singleDefault_main{
        max-width: 900px;
        margin: 0 auto;
        & .detail_title{
            font-size: 35px;
            font-weight: 500;
            margin-bottom: 50px;
            @media screen and (max-width: 768px){
                font-size: 25px;
                margin-bottom: 30px;
                padding: 0 20px;
            }
        }
    }
    & .basein{
        @media screen and (max-width: 768px){
            padding: 0 20px;
            box-sizing: border-box;
        }
        & .detail_content{
            max-width: 800px;
            margin: 0 auto 100px;
            padding: 40px;
            box-shadow: 0 4px 10px #E0E0E0;
            border: 1px solid #eeeeee;
            border-radius: 20px;
            @media screen and (max-width: 768px){
                margin: 0 auto 80px;
            }
            & img{
                display: block;
                max-width: 100%;
                margin: 20px auto;
            }
        }
    }
}
body .wpcf7 form .wpcf7-response-output{
    margin: 2em 0.5em 1em;
    padding: 0;
    border: none;
    color: #ee3f3f;
    text-align: center;
}
body .wpcf7 form.invalid .wpcf7-response-output,
body .wpcf7 form.unaccepted .wpcf7-response-output,
body .wpcf7 form.payment-required .wpcf7-response-output{
    border-color: transparent;
}
body .wpcf7-spinner{
    display: none !important;
}