@charset "utf-8";



/* ==========================================================================
	mv
========================================================================== */
#mv{
    border-bottom:1px solid #d1dada;
}
#mv .tit {
    display: block;
    text-align: center;
    font-size: 16px;
    
}

#mv .day {
    display: block;
    position: absolute;
    right: 4.86vw;
    bottom:20px;
    font-size: 14px;
}
#mv .day .en{
    position: relative;
    font-size: 13px;
    text-transform: uppercase;
}
#mv .day .en:after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #222;
    bottom: -6px;
    transform: scale(0, 1);
    transform-origin: right top; 
    transition: transform 0.4s cubic-bezier(.25, .46, .45, .94); 
}
#mv .day .en:hover::after {
    transform: scale(1, 1);     
    transform-origin: left top;
    transition: transform 0.4s cubic-bezier(.25, .46, .45, .94); 
}

@media screen and (max-width : 800px ){
    #mv .tit {
        font-size: 10px;
    }

}



/* ==========================================================================
	intro
========================================================================== */
.intro {
    position: relative;
    padding:100px 0 120px;
}
.intro .c_txt {
    font-size: 16px;
    line-height: 40px;
    letter-spacing: 0.1em;
    max-width:850px;
    margin:0 auto;
}
.intro .step {
    position: relative;
	-js-display: flex;
	display:-webkit-box;
	display: -webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
    justify-content: space-between;
	-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
			flex-wrap: wrap;
    width: 585px;
    margin:110px auto 100px;
}
.intro .step li {
    position: relative;
    display:inline-block;
    text-align: center;
}
.intro .step li:nth-child(2):before,
.intro .step li:nth-child(2):after{
    content:"";
    display: block;
    width: 90px;
    height: 1px;
    background:#d1dada;
    position: absolute;
    top: 27px;
}
.intro .step li:nth-child(2):before{
    left: -135px;
}
.intro .step li:nth-child(2):after{
    right: -135px;
}

.intro .step li .enb {
    position: relative;
    text-align: center;
    font-size: 16px;
}

.intro .this .enb:before{
    content:"";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: -25px;
    background:#799191;
    width: 8px;
    height: 8px;
    border-radius:8px;
    margin:auto;
}
.intro .step li p {
    text-align: center;
    font-size: 16px;   
    margin-top: 13px;
}


/*form*/

.form .item{
	box-sizing:border-box;
	position:relative;
	-js-display: flex;
	display:-webkit-box;
	display: -webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
    justify-content: space-between;
	-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
			flex-wrap: wrap;
    margin-bottom: 50px;
    width: 100%;
}

.form .text_area {
    position: relative;
    width: 320px;
    width: clamp(280px,22.22vw,360px);
	vertical-align: middle;
    font-size: 18px;
    box-sizing:border-box;
    padding-top: 20px;
    letter-spacing: 0.1em;
}
/*
.ie .form .text_area {
     width: 20%;   
}

.form.conf .text_area{
    padding-top: 0;
}
*/

textarea.form-item{    
    min-height:320px;
    padding:25px;
}
.form .text_area span{
    display:inline-block;
    
    background:#799191;
    font-weight: 700;
    padding:8px 11px;
    border-radius:15px;
    color:#fff;
    font-size: 13px;
    margin-left: 25px;
}

.form .form_area {
    width: calc(100% - 320px);
    width:calc(100% - clamp(280px,22.22vw,360px));
}

.form .form_area p{
    position: relative;
	vertical-align: middle;
    font-size: 14px;
    line-height: 30px;
}



.form.conf .item{
    
    margin-bottom: 30px;
    padding-bottom: 30px;
    width: 100%;
    border-bottom: 1px solid #eee;
}
.form.conf .item:last-child{
    border:none;
    padding-bottom:0;
    margin-bottom:0;
}

.form.conf .text_area {padding-top: 0;}

.form-item {
	width: 100%;
	height: 80px;
	padding: 0 25px;
	background:#f4f7f7;
    border-radius:5px;
	font-size: 15px;
	box-sizing: border-box;
    border:none;
    transition:background ease .3s;
}


.form-item:focus {
    background-color: #d8d8d8;
    transition:background ease .3s;
}


/*select box*/
.cp_ipselect {
	overflow: hidden;
	width: 100%;
	margin: 0;
	text-align: center;
}
.cp_ipselect select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.cp_ipselect select::-ms-expand {
    display: none;
}
.cp_ipselect.cp_sl01 {
	position: relative;
	background:#f4f7f7;
    border-radius:5px;
}

.cp_ipselect.cp_sl01::before {
    content: '';
	position: absolute;
    top: 0;
    bottom: 0;
    right: 38px;
    margin:auto;
    width: 11px;
    height: 7px;
    background: url(../image/project/menu_ar_af.png);
    background-size:cover;
    pointer-events: none;
    z-index:10;
}



.cp_ipselect.cp_sl01 select {
	height: 80px;
    padding:0 25px;
	font-size: 15px;
}

/*
.form-foot{
    width: 100%;
	-js-display: flex;
	display:-webkit-box;
	display: -webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
    justify-content: space-between;
	-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
			flex-wrap: wrap;
    
}

.form-foot li{
    width: 48%;
}
.form-submit{
.form-submit.back{
    background: #bbb;
}
.form-submit:hover{
    background:#ff7a59;
}

.form-foot li .form-submit{
    width: 100%;
    margin-left: 0;
}

.form-list {
	-js-display: flex;
	display:-webkit-box;
	display: -webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
    justify-content: space-between;
	-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
			flex-wrap: wrap;
}
*/
.form .btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width:600px;
    height: 60px;
    font-size: 15px;
    border-radius: 60px;
    background:#fff;
    border: 1px solid #d1dada;
    margin: 0 auto;
    color:#222;
    box-shadow: 8px 8px 0px 0px #f4f7f7;
    transition: border 0.4s cubic-bezier(.25, .46, .45, .94);
}
.form .btn:hover{
    border-color:#222;
}



.link_btn_wrap{
    position: relative;
    width: 100%;
    max-width:600px;
    height: 60px;
    margin: 100px 0 0;
}
.link_btn_wrap:before{
    content: "";
    display: block;
    position: absolute;
    right: 28px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 5px;
    height: 5px;
    border-top: 1px solid #222;
    border-right: 1px solid #222;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: right 0.4s cubic-bezier(.25, .46, .45, .94);
    z-index:50;
}

.link_btn_wrap:hover:before{
     right: 25px;   
    transition: right 0.4s cubic-bezier(.25, .46, .45, .94);
}

.form-foot .link_btn_wrap,
.form-foot .link_btn{
     width: 100%;   
}



.form-foot{
    width: 100%;
	-js-display: flex;
	display:-webkit-box;
	display: -webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
    justify-content: space-between;
	-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
			flex-wrap: wrap;
    
}

.form-foot li{
    width: 48%;
}
.btn.back{
    background: #eee;
    border-color:#eee;
}
.link_btn_wrap.rev:before {
    right: auto;
    left: 28px;
    border-top: none;
    border-right: none;
    border-left: 1px solid #222;
    border-bottom: 1px solid #222;
    transition: left 0.4s cubic-bezier(.25, .46, .45, .94);
    z-index: 50;
}
.link_btn_wrap.rev:hover:before{
     right: auto;
    left:25px;
    transition: left 0.4s cubic-bezier(.25, .46, .45, .94);
}

.form-foot li .form-submit{
    width: 100%;
    margin-left: 0;
}

.conf .link_btn_wrap{
    margin-top: 50px;
}

.t_tit{
    text-align: center;
    
    font-size: 36px;
    margin-bottom: 70px;
}

.top_btn{
    
    display: block;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 600px;
    height: 60px;
    font-size: 15px;
    border-radius: 60px;
    border: 1px solid #d1dada;
    margin: 0 auto;
    box-shadow: 8px 8px 0px 0px #f4f7f7;
    margin-top: 70px;
    margin-top: max(70px,4.86vw);
    z-index: 30;
}
.top_btn:hover{
    border-color:#222;
}
.top_btn:after{
    content: "";
    display: block;
    position: absolute;
    right: 28px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 5px;
    height: 5px;
    border-top: 1px solid #222;
    border-right: 1px solid #222;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: right 0.4s cubic-bezier(.25, .46, .45, .94);
}
.top_btn:hover:after{
    right: 25px;
    transition: right 0.4s cubic-bezier(.25, .46, .45, .94);
}
@media screen and (max-width : 800px ){
    

    .intro {
        padding:60px 0 75px;
    }
    .intro .c_txt {
        font-size: 12px;
        line-height: 27px;
    }
    .intro .step {
        width: 90%;
        min-width: 330px;
        margin:75px auto 57px;
    }
    .intro .step:before{
        content:"";
        display: block;
        width: 100%;
        height: 1px;
        background:#d1dada;
        position: absolute;
        left: 0;
        top:18px;
    }
    .intro .step li{
        background:#fff;
    }
    .intro .step li:before{
        content:"";
        display: block;
        width: 15px;
        height: 100%;
        position: absolute;
        right: -14px;
        top: 0;
        background:#fff;
        z-index:10;
    }
    .intro .step li:nth-child(2):before,
    .intro .step li:nth-child(2):after{
        width: 15px;
        top: 0;
        height: 100%;
        background:#fff;
    }
    .intro .step li:nth-child(2):before{
        left: -14px;
    }
    .intro .step li:nth-child(2):after{
        right: -14px;
    }
    .intro .step li:nth-child(3):before{
        left: -14px;
    }

    .intro .step li .enb {
        font-size: 10px;
    }

    .intro .this .enb:before{
        top: -25px;
    }
    .intro .step li p {
        text-align: center;
        font-size: 10px;   
        margin-top: 8px;
    }


    /*form*/

    .form .item{
        display: block;
        margin-bottom: 30px;
    }

    .form .text_area {
        width: 100%;
        font-size: 13px;
        padding-top: 0;
        margin-bottom: 13px;
    }
    textarea.form-item{    
        min-height:150px;
        padding:20px;
    }
    .form .text_area span{

        padding:3px 6px;
        font-size: 10px;
        margin-left: 10px;
    }

    .form .form_area {
        width: 100%;
    }

    .form .form_area p{
        font-size: 10px;
        line-height: 21px;
    }

    .form-item {
        height: 64px;
        padding: 0 20px;
        font-size: 13px;
    }


    .cp_ipselect.cp_sl01::before {
        right: 22px;
        width: 9px;
        height: 6px;
    }



    .cp_ipselect.cp_sl01 select {
        height: 64px;
        padding:0 20px;
        font-size: 13px;
    font-size: 16px;
    transform: scale(0.8) translateX(-10%);
    width: 122%;
    }

    .form .btn{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width:600px;
        height: 43px;
        font-size: 11px;
        border-radius: 60px;
        box-shadow: 8px 8px 0px 0px #f4f7f7;
        transition: border 0.4s cubic-bezier(.25, .46, .45, .94);
    }



    .link_btn_wrap{
        height: 43px;
        margin: 60px 0 0;
    }
    .link_btn_wrap:before{
        right: 20px;
        width: 3px;
        height: 3px;
    }
    .link_btn_wrap.rev:before{
        left: 20px;
    }

    .link_btn_wrap:hover:before{
         right: 17px;   
    }
    .link_btn_wrap.rev:hover:before{
         right: auto;
        left:17px;
    }
    .form-foot li{
        width: 100%;
    }
    .conf .link_btn_wrap{
        margin-top: 20px;
    }


    .t_tit{
        font-size: 25px;
        margin-bottom: 47px;
    }

    .top_btn{

        width: calc(100% - 12.5vw);
        height: 43px;
        font-size: 11px;
        border-radius: 43px;
        box-shadow: 3px 3px 0px 0px #f4f7f7;
        margin-top: 45px;
    }
    .top_btn:after{
        right: 20px;
        width: 3px;
        height: 3px;
    }
    .top_btn:hover:after{
        right: 17px;
    }

}