@charset "UTF-8";

/************************************
 汎用
************************************/
.inner{
    width: 86.67%;
    margin: 0 auto;
}
.bg-gradation{
    background: -webkit-linear-gradient(-30deg, #F1EBFF, #D6E8F9);
    background: linear-gradient(-30deg, #F1EBFF, #D6E8F9);
}

p{
    font-size: 1.4rem;
    line-height: 1.75;
}
p + p{
    margin-top: 2em;
}

.m_bottom20{
    margin-bottom: 20px;
}

/*フォント関連*/
.font_red{
    color: #F30F0F;
}
.font_blue{
    color: #202F83;
}
.font-en {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    letter-spacing: 0.03em;
}

@media screen and (min-width: 900px){
    .inner{
        width: 70.15%;
        margin: 0 auto;
    }
    p{
        font-size: 1.6rem;
    }
    h2{
        font-size: 2.8rem;
    }
}

/*ボタン関連*/
.common_btn a {
    display: block;
    border: 1px solid #3472D6;
    margin-top: 20px;
    padding: 20px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    color: #3472D6;
}
.common_btn.w550 a {
    width: auto;
    margin: 15px auto 0;
}
.common_btn + p {
    margin-top: 30px;
}
.btn_shadow{
    box-shadow: 2px 2px 2px 0 rgba(49, 60, 83, 0.2);
}

@media screen and (min-width: 900px){
    .common_btn a {
        -webkit-transition: all 0.5s cubic-bezier(0.36, 0.14, 0, 1);
        transition: all 0.5s cubic-bezier(0.36, 0.14, 0, 1);
    }

    .common_btn a {
        display: block;
        border: 1px solid #3472D6;
        margin-top: 20px;
        padding: 20px;
        text-align: center;
        font-size: 1.2rem;
        font-weight: 600;
        color: #3472D6;
    }

    .common_btn a:hover {
        color: #ffffff;
        background-color: #3472D6;
    }
    .common_btn.w550 a {
        width: 61.11%;
        margin: 35px auto 0;
        font-size: 2rem;
    }
}


/*タイトル関連*/
.common_ttl {
    font-size: 2.0rem;
    color: #202F83;
    border-bottom: 1px solid #EBEBEB;
    margin: 80px 0 30px;
    padding-bottom: 8px;
}

.page_ttl {
    text-align: center;
    padding: 125px 0 110px;
    background: -webkit-linear-gradient(-30deg, #D6E8F9 15%, #F1EBFF);
    background: linear-gradient(-30deg, #D6E8F9 15%, #F1EBFF);
}
.page_ttl_thanks {
    color: #F30F0F;
    font-size: 1.6rem;
}
.page_ttl h1{
    font-size: 3rem;
    color: #181461;
    font-weight: 600;
    padding-top: 10px;
}

@media screen and (min-width: 900px){
    .page_ttl_thanks {
        font-size: 2rem;
    }
}

/*ページ部分*/
.page_top{
    width: 100%;
    margin-bottom: 45px;
}

.page_item{
    margin-bottom: 70px;
}
.page_item a {
    color: #3472D6;
}
.page_item_faq .common_btn {
    margin-top: 50px;
}

/************************************
 スタートトランジション
************************************/
#start {
	position: fixed;
	width: 100%;
	height: 100%;
    background: -webkit-linear-gradient(-30deg, #F1EBFF, #D6E8F9);
    background: linear-gradient(-30deg, #F1EBFF, #D6E8F9);
	z-index: 999;
}

.start_logo_snowboard {
	position: fixed;
	left: 50%;
	top: 45%;
	transform: translate(-50%, -50%);
	
	z-index: 9999;
	width: 240px;
}
.start_logo_ski  {
	position: fixed;
	left: 50%;
	top: 55%;
	transform: translate(-50%, -50%);
	
	z-index: 9999;
	width: 240px;
}
.start_txt  {
    font-size: 1.6rem;
	position: fixed;
	right: 10%;
	bottom: 5%;
	
	z-index: 9999;
}

/*画面遷移部分のアニメーション*/

body.appear{
    background:#fff;
}
.startbg{
	position: fixed;
	top: 0;
	right:0;
	bottom:0;
	left: 0;
	border-width: 0px;
	border-style:solid;
    border-color: #D6E8F9;/*拡大する四角の色*/
	animation-duration:.5s;
	animation-fill-mode:forwards;
}

@keyframes backBoxAnime{
	99.9% {/*アニメーション終了ぎりぎりまで*/
        z-index: 2;
		border-width: 0px;
	}
    100%{
       z-index: -1;
        border-width: 0px;
    }
}

/*画面遷移の後の設定*/
#container{
    position: relative;
	opacity: 0;/*はじめは透過0に*/
}
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay:0.2s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/************************************
 横スクロール可能部分
************************************/
.slide-wrap{
    display:-webkit-box;
    display:-ms-flexbox;
    display: flex;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding:0 0 1em;
    margin:0 0 2em 0;
    scroll-behavior: smooth;
}
 .slide-wrap .slide-content{
    flex: 0 0 90%;
    margin: 0 10px;
    height:100%;
}
 @media screen and (max-width: 480px){
    .slide-wrap .slide-content {
        flex: 0 0 88%;
        margin: 0px 5px;
        scroll-snap-align:center;
    }
}

/************************************
ポップアップ
************************************/
.open {
	cursor:pointer;
}
#pop-up_add,#pop-up_part,#pop-up_cancel {
	display: none;
}
.pop-up_area {
	display: none;
}
#pop-up_add:checked + .pop-up_area,#pop-up_part:checked + .pop-up_area {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}

#pop-up_cancel:checked + .pop-up_area {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}

.pop-up_window {
	width: 90vw;
	max-width: 750px;
    padding: 50px 20px;
	height: auto;
	background-color: #ffffff;
	border-radius: 10px;
	display: flex;
    flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.pop-up_ttl {
    font-size: 1.8rem;
    font-weight: 600;
	margin-bottom: 30px;
    position: relative;
}
.pop-up_ttl::after{
    content: '';
    width: 220px;
    height: 1px;
    display: inline-block;
    background-color: #2a2ac0;
    position: absolute;
    bottom: -10px;
    left: calc(50% - 110px)
}
.pop-up-cancel_ttl {
    font-size: 1.8rem;
    font-weight: 600;
	margin-bottom: 25px;
}
.pop-up_close {
	cursor:pointer;
	position: absolute;
	top: 5px;
	right: 10px;
	font-size: 24px;
}
.add-item{
    display: flex;
    gap: 20px;
}
.add-item-line{
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 30px 0 20px 0;
}
.add-item-txt{
    line-height: 1.5;
}



/************************************
ヘッダー
************************************/
header{
    position: relative;
}
.header_ttl{
    font-size: 1rem;
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
    text-align: center;
}
@media screen and (min-width: 768px){
    .header_ttl{
        font-size: 1.4rem;
    }
}
/************************************
 フッター
************************************/
footer{
    font-size: 1.2rem;
    padding-bottom: 10px;
}

footer ul{
    margin-bottom: 35px;
}

footer ul li{
    background-color: #ECF1FA;
    display: flex;
    align-items: center;
}

footer ul li:not(:last-child){
    margin-bottom: 15px;
}

footer ul li a:after{
    content: ">";
    margin-left: auto;
}

footer ul li img{
    padding-right: 10px;
}

footer ul li a{
    border-radius: 5px;
    padding: 20px 10px;
    width: 100%;
    display: flex;
    align-items: center;
}

.permission{
    text-align: center;
}

footer.contact_footer {
    text-align: center;
    font-size: 1.1rem;
}

@media screen and (min-width: 900px){
    footer{
        font-size: 1.6rem;
    }
    footer ul{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    footer ul li{
        width: 48.22%;
    }
    footer ul li:not(:last-child){
        margin-bottom: 20px;
    }
    footer ul li:last-child{
        margin-bottom: 20px;
    }
    footer.contact_footer > .inner {
        padding: 0 0 55px;
    }
}

/************************************
-satei-査定結果ページ
************************************/

/*priceセクション*/
.price{
    margin-bottom: 45px;
}
.price_inner{
    text-align: center;
    padding: 65px 0 45px;
    margin-bottom: 30px;
}
.price_ttl{
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #ffffff;
    padding: 10px 40px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 2px 2px 2px 0 rgba(49, 60, 83, 0.2);
}
.price_total{
    margin: 20px 0 30px 0;
    position: relative;
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    gap: 3px;
}
.price_total img{
    margin-top: auto;
    margin-bottom: auto;
    width: auto;
}
.price_total_offer{
    font-size: 4rem;
    font-weight: bold;
    margin-right: 5px;
}
.price_yen{
    margin-top: auto;
    padding-bottom: 5px;
}
.price_total:after{
content: '';
width: 260px;
height: 2px;
display: inline-block;
background-color: #ffffff;
position: absolute;
bottom: -10px;
left: calc(50% - 130px)
}
.price_detail{
    font-size: 1.2rem;
    background-color: #ffffff;
    padding: 15px 15px 20px;
    margin-bottom: 35px;
    position: relative;
}
.price_detail_txt{
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.price_detail_ttl{
    margin-bottom: 15px;
}

/**
.price_detail_ttl::after{
    content: '';
    width: 260px;
    height: 1px;
    display: inline-block;
    background-color: #181461;
    position: absolute;
    bottom: -7px;
    left: calc(50% - 130px)
}
**/

.price_detail ul{
    text-align: justify;
    padding: 0 5px;
}
.price_detail li{
    position: relative;
    padding-bottom: 15px;
}
.price_detail li:not(:first-child){
    border-top: 1px solid #619ED3;
    padding-top: 15px;
}
.price_detail li:nth-child(4) {  
    background: linear-gradient(360deg,rgba(24, 20, 97, 0) , #181461 115%);
    -webkit-background-clip: text;
    color: transparent;
}

.price_detail_list{
    text-align: justify;
    line-height: 1.75;
}

.price_detail_list br{
    position: relative;
    padding-bottom: 15px;
}

.price_detail_list br:not(:first-child){
    border-top: 1px solid #619ED3;
    padding-top: 15px;
}
.price_detail_list br:nth-child(4) {  
    background: linear-gradient(360deg,rgba(24, 20, 97, 0) , #181461 115%);
    -webkit-background-clip: text;
    color: transparent;
}

.price_detail p{
    position: absolute;
    bottom: -10px;
    left: calc(50% - 10px);
}
.price_btn a{
    display: block;
    margin: 0 auto;
    padding: 20px 10px;
    font-size: 1.6rem;
    color: #ffffff;
    background-color: #2699FB;
    border-radius: 10px;
}
.open-btn{
    width: 25px;
    height: 25px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #2a2ac0;
    color: #fff;
    font-weight: 600;
}
.price_option{
    font-size: 1.2rem;
    color: #2A2AC0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.price_option ul{
    margin-bottom: 20px;
    text-align: left;
    display: inline-block;
}
.price_option li:first-child{
    margin-bottom: 20px;
}
.price_option li:before{
    content: '';
    background-image: url(../img/question.png);
    background-repeat: no-repeat;
    padding-right: 20px;
    background-size: contain;
}
.price_option li:after{
    content: '>';
}
.price_option_cancel{
    border-bottom: 1px solid #2A2AC0;
    padding-bottom: 1px;
}
@media screen and (min-width: 900px){
    .price_ttl{
        font-size: 2rem;
        padding: 10px 40px;
    }
    .price_total{
        margin: 25px 0 35px 0;
    }
    .price_detail {
        margin-bottom: 45px;
    }
    .price_detail_txt {
        margin-bottom: 30px;
    }

    .price_detail,.price_detail_txt,.price_option{
        font-size: 1.6rem;
    }
    .price_total_offer{
        font-size: 6rem;
        font-weight: bold;
        margin-right: 5px;
    }
    .price_total:after{
    content: '';
    width: 320px;
    height: 2px;
    display: inline-block;
    background-color: #ffffff;
    position: absolute;
    bottom: -10px;
    left: calc(50% - 160px)
    }
    .price_detail p {
        bottom: -16px;
    }
    .price_btn a{
        width: 61.11%;
    }
    .open-btn{
        width: 35px;
        height: 35px;
        padding-top: 3px;
    }
}

/*flowセクション*/
.flow{
    width: 100%;
    color: #2A2AC0;
    margin-bottom: 70px;
}
.flow_step{
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.flow ul{
    display:-webkit-box;
    display:-ms-flexbox;
    display: flexbox;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    padding:0 5.165% 0 5.165%;
    margin:0 0 10px 0;
}
.flow ul::-webkit-scrollbar{
    display: none;
}
.flow ul li{
    border: solid 1px #A5A5AD;
    border-radius: 10px;
    width: 230px;
    text-align: center;
    padding: 15px;
}

.flow ul li:not(:last-child){
    margin-right: 20px;
}

.ttx-left{
    display: inline-block;
    text-align: left;
}

.flow li img{
    width: 80%;
    margin-bottom: 20px;
}

.flow_step_ttl{
    margin-bottom: 20px;
    position: relative;
}

.flow_step_ttl:after{
    content: '';
    width: 200px;
    height: 1px;
    display: inline-block;
    background-color: #A5A5AD;
    position: absolute;
    bottom: -10px;
    left: calc(50% - 100px)
}

.flow_detail:after{
    content: '>';
    padding-left: 5px;
}

.flow_detail{
    font-size: 1.2rem;
    padding-left: 5.165%;
}

@media screen and (min-width: 768px){
    .flow ul{
        padding:0 0 15px 0;
        margin:0 0 10px 0;
        width: 89.67%;
        margin-left: auto;
        margin-right: auto;
    }
    .flow ul li{
        border: solid 1px #A5A5AD;
        border-radius: 10px;
        width: calc((100%/3) - (40px/3));
        text-align: center;
    }
}

@media screen and (min-width: 900px){
    .flow_step,.flow_detail{
        font-size: 1.6rem;
    }
    .flow ul{
        padding:0 0 15px 0;
        margin:0 0 10px 0;
        width: 70.15%;
        margin-left: auto;
        margin-right: auto;
    }
    .flow_detail{
        width: 70.15%;
        margin: 0 auto;
        padding-left: 0;
    }
}

/*itemセクション*/
.item{
    margin-bottom: 60px;
}

.item_ttl{
    font-size: 2.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.item_camp{
    margin-bottom: 30px;
    border: 1px solid rgb(0, 4, 0, 0.1);
    border-radius: 5px;
    box-shadow: 2px 2px 0px 0 rgb(0, 4, 0, 0.2);
}

.item_camp_ttx{
    font-size: 1.1rem;
    padding: 12px 15px;
    display: flex;
    align-items: center;
}

.item_camp_ttx__red{
    color: #C02A3C;
    padding-right: 10px;
}

.item_camp_ttx img{
    margin-left: auto;
    width: auto;
}


.item ul{
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}

.item ul li{
    font-size: .7rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;  
    padding: 15px 10px;  
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
}

.item ul li img{
    width: 75%;
    margin-bottom: 15px;
}

.item ul:after {
    content: "";
    display: block;
    width: 25%;
    height: 0;
}

@media screen and (min-width: 768px){
    .item ul li{
        font-size: 1.2rem;
        font-weight: 600;
        width: calc(100%/6);
        padding: 15px;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
    }
}
@media screen and (min-width: 900px){
    .item_ttl{
        font-size: 2.8rem;
    }
    .item_camp_ttx{
        font-size: 1.6rem;
    }
    .item ul li{
        padding: 20px;
    }
}

/*infoセクション*/
.info{
    margin-bottom: 70px;
}

.info_banner{
    width: 100%;
    margin-bottom: 15px;
}

.info_banner ul{
    display:-webkit-box;
    display:-ms-flexbox;
    display: flex-box;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    padding:0 5.165% 20px 5.165%;
}

.info_banner ul::-webkit-scrollbar{
    display: none;
}

.info_banner ul li{
    width: 70%;
}

.info_banner ul li:not(:last-child){
    margin-right: 20px;
}

.info_banner ul li img{
    width: 100%;
}

.info_alert{
    font-size: 1.2rem;
    background-color: rgb(217, 217, 217, 0.3);
    color: #2A2AC0;
    margin-bottom: 30px;
    padding: 10px;
    border-radius: 5px;
}

@media screen and (min-width: 900px){
    .info_banner{
        width: 70.15%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 15px;
    }

    .info_banner ul{
        display:-webkit-box;
        display:-ms-flexbox;
        display: flex-box;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -ms-overflow-style: none;
        padding:0 0 20px 0;
    }

    .info_banner ul li{
        width: calc((100% / 3) - 10px);
    }
}


/************************************
 -kit-受け取り日時
************************************/
.complete{
    background: #ffffff;
    margin: 20px 0;
    padding: 20px 10px;
}

.complete_ttl{
    font-size: 1.3rem;
    color: #F24E1E;
    position: relative;
    padding-left: 25px;
    font-weight: 600;
}

.complete_ttl:before,
.complete_ttl:after{
	content:"";
	display:block;
	position:absolute;
}
.complete_ttl:before{
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background: #F24E1E;
    left: 0;
    top: -3px;
}
.complete_ttl:after{
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    width: 15px;
    height: 5px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 3px;
    top: 3px;
}
.complete_txt{
    margin-top: 15px;
}
.complete_txt span{
    display: block;
    margin-bottom: 5px;
}

/************************************
 -satei&satei-kanryo-買取依頼〜完了
************************************/
.flower:before{
    position: absolute;
    content: "";
    background-image: url(../img/flower_left.png);
    left: 2%;
    top: 180px;
    background-size: cover;
    width: 110px;
    height: 113px;
}

.flower:after{
    position: absolute;
    content: "";
    background-image: url(../img/flower_right.png);
    right: 2%;
    top: 180px;
    background-size: cover;
    width: 110px;
    height: 113px;
}

@media screen and (min-width: 768px){
    .flower:before{
        position: absolute;
        content: "";
        background-image: url(../img/flower_left.png);
        left: 16%;
        top: 108px;
        background-size: cover;
        width: 180px;
        height: 186px;
    }
    .flower:after{
        position: absolute;
        content: "";
        background-image: url(../img/flower_right.png);
        right: 16%;
        top: 108px;
        background-size: cover;
        width: 180px;
        height: 186px;
    }
}

/*受け取り日時*/
.satei-status{
    width: 100%;
    margin-bottom: 45px;
}

.satei-status_step{
    margin-bottom: 30px;
}

.satei-status_step ul{
    display:table;
    width:100%;
    overflow:hidden;
}

.satei-status_step li{
    height: 50px;
    width: 50%;
    vertical-align: middle;
    text-align: center;
    display:table-cell;
    position:relative;
    background: #efefef;
    padding: 1em 0em 1em 1em;
    color: #726e7a;
}

.satei-status_step li:last-child{
    padding-right: 1em;
}

.satei-status_step li:before,
.satei-status_step li:after{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    margin: auto;
}
.satei-status_step li:before{
    top:-15px;
    right:-1em;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    border-width: 40px 0 40px 1em;
    z-index: 10;
  }
.satei-status_step li:after{
    top:-15px;
    right:-.8em;
    border-style: solid;
    border-color: transparent transparent transparent #efefef;
    border-width: 40px 0 40px 1em;
    z-index: 10;
}

.satei-status_step li:last-child:before{
    top:-15px;
    right: -55px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    border-width: 40px 20px 40px 45px;
    z-index: 10;
}

.satei-status_step li:last-child:after{
    top:-15px;
    right:0;
    border-style: solid;
    border-color: transparent transparent transparent #efefef;
    border-width: 40px 0 40px 1em;
    z-index: 10;
}

.satei-status_step li.current{
    background: #3399ff;
    color: #ffffff;
    font-weight: 600;
}
.satei-status_step li.current:after{
    border-color: transparent transparent transparent #3399ff;
}

.kit_ttl{
    margin-bottom: 18px;
    text-align: center;
    border: 1px solid rgb(0, 4, 0, 0.1);
    border-radius: 5px;
    box-shadow: 2px 2px 0px 0 rgb(0, 4, 0, 0.2);
}

.kit_ttl span{
    padding: 20px 15px;
    display: inline-block;
}

.kit_yamato{
    margin-bottom: 30px;
    text-align: center;
}
.kit_yamato img{
    width: 100%;
}

.kit_yamato_txt{
    margin-bottom: 30px;
}

.option_add{
    color: #2A2AC0;
    text-align: center;
    font-size: 1.4rem;
}
.option_add:before{
    content: '';
    background-image: url(../img/question.png);
    background-repeat: no-repeat;
    padding-right: 20px;
    background-size: 20px;
    background-size: contain;
}

.option_add:after{
    content: '>';
    padding-left: 5px;
}

.step1_status{
    position: relative;
}

.step1_ok{
    color: #F24E1E;
    position: absolute;
    right: 5px;
    top: 10px;
    padding-left: 25px;
}

.step1_ok:before,
.step1_ok:after{
	content:"";
	display:block;
	position:absolute;
}
.step1_ok:before{
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background: #F24E1E;
    left: 0;
    top: 0;
}
.step1_ok:after{
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    width: 15px;
    height: 5px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 3px;
    top: 6px;
}

/*****PC買取依頼フォーム*****/

.forcustomeradress h2{
    font-size: 1.8rem;
    font-weight: 600;
    border-bottom: 1px solid #EBEBEB;
    margin-bottom:20px;
    padding-bottom: 8px;
}

.customer{
    margin-bottom: 70px;
}

.customer input{
    width: 100%;
}

.customer th {
    width: 240px;
    padding: 17px 20px 17px 0;
    font-size: 1.6rem;
    vertical-align: top;
}

.required_asterisk{
    display: inline-block;
    margin-left: 10px;
    padding: 5px 10px;
    background: #2B4EE0;
    color: #fff;
    border-radius: 6px;
    font-weight: 500;
}

.attention{
    font-size: 1.2rem;
}

.customer .note {
    font-size: 1.2rem;
    display: block;
    margin-top: 8px;
}

.customer td {
    font-size: 1.6rem;
    padding: 17px 0;
    vertical-align: top;
}

.customer select {
    font-size: 1.2rem;
    padding: 15px;
    border: 1px solid #707070;
}

input.inputTextSingle,.infonote {
    width: 100%;
    font-size: 1.2rem;
    box-sizing: border-box;
    padding: 15px;
    border: none;
    border: 1px solid #707070;
    box-sizing: border-box;
}

.input100 {
    width: 100%;
}

.mb10{
    margin-bottom: 10px;
}

.pc-form_btn {
    display: block;
    border: 1px solid #3472D6;
    background: #3472D6;
    width: 61.11%;
    margin: 15px auto 50px;
    padding: 20px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    line-height: 2;
}

.pc-form_btn:hover {
    color: #ffffff;
    background-color: #3472D6;
    transition: 1s;
}


.error{
    font-size: 1.1rem;
    position: relative;
    background: #e34b66;
    color: #ffffff;
    display: block;
    border-radius: 5px;
    padding: 5px 10px;
    margin: 10px 0 5px;
}

.error::after{
    margin-top: 5px;
    content: "";
    position: absolute;
    top: -20px;
    left: 16px;
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-bottom: 8px solid #e34b66;
}


.sp_form dl{
    width: 100%;
}

.sp_form dl:not(:first-child) {
    margin-top: 20px;
}

.sp_form dd{
    margin-bottom: 5px;
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 600;
}

.sp_form dd:first{
    font-size: 1.8rem;
}

.sp-form_btn{
    display: block;
    border: 1px solid #3472D6;
    background: #3472D6;
    width: 100%;
    margin: 15px auto 50px;
    padding: 20px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    line-height: 2;
}

@media screen and (min-width: 768px){
    .kit_yamato img{
        width: 50%;
    }
}

@media screen and (max-width: 899px){
    .pc_form{
        display: none;
    }
}

@media screen and (min-width: 900px){
    .satei-status_step ul{
        font-size: 1.6rem;
    }
    .satei-status_step {
        margin-bottom: 65px;
    }
    .kit_yamato img{
        width: 50%;
    }
    .kit_ttl{
        font-size: 1.6rem;
        width: 80%;
        margin: 0 auto 50px;
    }
    .option_add{
        color: #2A2AC0;
        text-align: center;
        font-size: 1.6rem;
    }
    .forcustomeradress h2{
        font-size: 2.5rem;
    }
    .sp_form{
        display: none;
    }
}

/************************************
 -step-買取手順
************************************/
.step_flow_list {
    width: auto;
    margin-left: 0;
    padding-left: 0;
    box-sizing: border-box;
    position: relative;
}
.step_flow_list > div {
    margin-top: 60px;
}
.step_flow_list img {
    width: 100%;
}
.step_flow_list .num {
    position: absolute;
    left: 0;
    top: -30px;
    font-size: 4.7rem;
    color: #202F83;
    z-index: 2;
}
.step_flow_list .top_step_list_body {
    display: block;
    justify-content: space-between;
    position: relative;
}
.step_flow_list .top_step_list_body .ph {
    width: 59.38%;
    max-width: 375px;
    margin: 0 auto 10px;
    position: relative;
}
.step_flow_list .top_step_list_body .txt {
    width: auto;
}
.step_point_img img {
    width: 100%;
}

.step_flow_list .top_step_list_body .ttl {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
}
.box_gray {
    padding: 20px 40px;
    margin: 15px 0;
    background: #EBEBEB;
}
.step_flow_list .top_step_list_body .notes {
    font-size: 1.0rem;
    margin-top: 5px;
}
.step_flow_finish_ico {
    width: 96px;
    height: 96px;
    background: #202F83;
    text-align: center;
    position: relative;
    border-radius: 50%;
    margin: 70px auto 40px;
}
.step_flow_finish_ico span {
    width: 100%;
    color: #fff;
    font-size: 1.2rem;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    line-height: 1.5;
}
.step_flow_finish_ico strong {
    color: #fff;
    font-size: 2.0rem;
    font-weight: 600;
}

.step_point_ttl {
    margin: 70px 0 30px;
    background: url(../img/step_point_ttl_bg.png) no-repeat center bottom/ cover;
    padding: 15px 0 25px;
    font-size: 1.9rem;
    font-weight: 600;
    text-align: center;
}

.step_point_list_item .num > span {
    display: inline-block;
    margin-bottom: 15px;
    padding: 0 18px;
    font-size: 2.2rem;
    color: #202F83;
    position: relative;
    line-height: 1.35;
}

.step_point_list_item .num > span:before {
    content: "";
    display: block;
    width: 100%;
    height: 15px;
    background: #EAEFFF;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    transform: skewX(-30deg);
}
.step_point_list_item {
    padding: 15px 0;
    border-bottom: 1px solid #EBEBEB;
}
.step_point_tasya {
    font-size: 1.6rem;
    font-weight: 600;
    color: #202F83;
    margin: 25px 0 20px;
}

.step_point_img {
    display: block;
    justify-content: space-between;
    margin-top: 60px;
}

.step_point_img > div + div {
    margin-top: 25px;
}

@media screen and (min-width: 900px){
    .step_flow_list {
        width: 100%;
        box-sizing: border-box;
        position: relative;
    }

    .step_flow_list img {
        width: 100%;
    }

    .step_flow_list > div {
        margin-top: 150px;
    }

    .step_flow_list .num {
        position: absolute;
        top: -50px;
        font-size: 6.0rem;
        color: #202F83;
    }
    .step_flow_list .top_step_list_body {
        display: flex;
        justify-content: space-between;
        position: relative;
    }

    .step_flow_list .top_step_list_body .ph {
        width: 33.54%;
        margin-top: 50px;
    }

    .step_flow_list .top_step_list_body .txt {
        width: 57.29%;
    }

    .step_flow_list .top_step_list_body .ttl {
        font-size: 2.8rem;
        font-weight: 600;
        margin-bottom: 25px;
    }

    .box_gray {
        padding: 25px 36px;
        margin: 15px 0;
        background: #EBEBEB;
    }

    .step_flow_list .top_step_list_body .notes {
        font-size: 1.2rem;
        margin-top: 5px;
    }
    
    .step_flow_finish_ico {
        width: 144px;
        height: 144px;
        background: #202F83;
        text-align: center;
        position: relative;
        border-radius: 50%;
        margin: 70px auto 40px;
    }

    .step_flow_finish_ico span {
        width: 100%;
        color: #fff;
        font-size: 1rem;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        line-height: 1.5;
    }

    .step_flow_finish_ico strong {
        color: #fff;
        font-size: 2.1rem;
        font-weight: 600;
    }

    .step_point_ttl {
        margin: 110px 0 70px;
        background: url(../img/step_point_ttl_bg.png) no-repeat center bottom/ cover;
        padding: 30px 0 30px;
        font-size: 2.7rem;
        font-weight: 600;
        text-align: center;
    }

    .step_point_list {
        margin-top: 30px;
    }

    .step_point_list_item {
        padding: 20px 0;
        border-bottom: 1px solid #EBEBEB;
    }

    .step_point_list_item .num > span {
        display: inline-block;
        margin-bottom: 15px;
        padding: 0 27px;
        font-size: 2.9rem;
        color: #202F83;
        position: relative;
        line-height: 1.35;
    }

    .step_point_list_item .num > span:before {
        content: "";
        display: block;
        width: 100%;
        height: 20px;
        background: #EAEFFF;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -1;
        transform: skewX(-30deg);
    }

    .step_point_tasya {
        font-size: 2.0rem;
        font-weight: 600;
        color: #202F83;
        margin: 25px 0 20px;
    }

    .step_point_img {
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
    }

    .step_point_img > div {
        width: 48.22%;
    }

    .step_point_img > div + div {
        margin-top: 0;
    }

    .isActive {
        -webkit-animation-timing-function: cubic-bezier(0.36, 0.14, 0, 1);
        animation-timing-function: cubic-bezier(0.36, 0.14, 0, 1);
        -webkit-animation-duration: 1.0s;
        animation-duration: 1.0s;
        -webkit-animation-name: fadeUp;
        animation-name: fadeUp;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }
}


/*規約スクロール*/
.kiyaku-scroll{
    margin-bottom: 45px;
}

.kiyaku-area h2{
    text-align: center;
    font-weight: 600;
    font-size: 1.5rem;
    margin-top: 10px;
}
.kiyaku-area {
    border: 1px #CCCCCC solid;
    padding: 10px;
    height: 150px;
    overflow: scroll;
}

.kiyaku-area p + p{
    margin-top: 15px;
}

.privacydetail {
    margin-top: 15px;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 30px;
}

.privacydetail h3 {
    margin: 20px 0 15px 0;
    font-weight: 600;
}

@media screen and (min-width: 900px){
    .kiyaku-scroll{
        margin-bottom: 70px;
    }
    .kiyaku-area {
        height: 250px;
        font-size: 1.4rem;
    }
    .kiyaku-area h2{
        font-size: 2rem;
    }
    .privacydetail h3 {
        font-size: 1.6rem;
    }
}

/************************************
-faq-よくある質問
************************************/
.faq_nav {
    display: flex;
    justify-content: space-between;
    margin: 60px 0 10px;
}
.faq_nav a {
    width: 31.77%;
    height: 95px;
    text-align: center;
    border: 1px solid #3472D6;
    color: #3472D6;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.75;
    position: relative;
}
.faq_nav a > span {
    display: block;
    width: 100%;
    position: absolute;
    top: 40%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 1.4rem;
}
.faq_nav a:after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid #3472D6;
    border-right: 2px solid #3472D6;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    left: 50%;
    bottom: 12px;
}
.faq_ttl {
    font-size: 2.0rem;
    font-weight: 600;
    color: #202F83;
    border-bottom: 1px solid #EBEBEB;
    margin-top: 40px;
    padding-bottom: 10px;
}
.faq_item {
    border-bottom: 1px solid #EBEBEB;
}
.faq_item .q {
    padding: 20px 30px;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
}
.faq_item .q .ico {
    color: #202F83;
}
.faq_item .q .ico, .faq_item .a .ico {
    font-size: 1.6rem;
    position: absolute;
    left: 0;
}
.faq_item .a .ico {
    line-height: 1.6;
}
.faq_item .q:before {
    content: "";
    display: block;
    width: 13px;
    height: 2px;
    background: #3472D6;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform-origin: top;
    transform-origin: top;
}
.faq_item .q.active:after {
    -webkit-transform: rotate(0) translateY(-50%);
    transform: rotate(0) translateY(-50%);
}
.faq_item .q:after {
    content: "";
    display: block;
    width: 13px;
    height: 2px;
    background: #3472D6;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: rotate(90deg) translateY(-50%);
    transform: rotate(90deg) translateY(-50%);
    -webkit-transition: transform 0.5s cubic-bezier(0.36, 0.14, 0, 1);
    transition: transform 0.5s cubic-bezier(0.36, 0.14, 0, 1);
    -webkit-transform-origin: top;
    transform-origin: top;
}
.faq_item .a {
    padding: 0 30px 15px;
    margin: 0;
    font-size: 1.4rem;
    position: relative;
}
.faq_item .a {
    display: none;
    padding: 0 40px 20px;
    margin: 0 24px;
    font-size: 1.6rem;
    position: relative;
}
.faq_ttl + p {
    margin-top: 20px;
}

@media screen and (min-width: 900px){
    .faq_nav a {
        width: 31.77%;
        height: 65px;
        text-align: center;
        border: 1px solid #3472D6;
        color: #3472D6;
        font-size: 1.6rem;
        font-weight: 600;
        line-height: 1.75;
        position: relative;
    }
    .faq_nav a > span {
        display: block;
        width: 100%;
        position: absolute;
        top: 40%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .sp-only{
        display: none;
    }
}

/************************************
 -kiyaku-利用規約
************************************/
.kiyaku_attention {
    background: #EBEBEB;
    padding: 10px 15px;
}

.kiyaku_ttl{
        font-size: 1.8rem;
        margin: 45px 0 15px;
}

/************************************
 -company-会社概要
************************************/

.ico_ex_link {
    display: inline-block;
    width: 8.5px;
    margin-right: 8px;
    line-height: 1;
}
.company_about {
    display: block;
}
.company_about img{
    width: 100%;
}
.company_about .ph {
    width: auto;
}
.company_about .read {
    font-size: 1.6rem;
    font-weight: 600;
}
.company_about .txt {
    width: auto;
    margin-top: 20px;
}

.company_subttl {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 20px 0 15px;
}

.googlemap {
    height: 0;
    overflow: hidden;
    padding-bottom: 104.61%;
    margin-top: 5px;
    position: relative;
}
.googlemap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.company_tb {
    width: 100%;
}
.company_tb th {
    font-size: 1.2rem;
    font-weight: 400;
    vertical-align: middle;
    width: 102px;
    background: #F0F0F0;
    padding: 15px 12px 15px 18px;
}
.company_tb th, .company_tb td {
    border: 1px solid #707070;
}
.company_tb td {
    font-size: 1.4rem;
    padding: 15px 18px;
}
.company_tb td strong, .company_tb td span {
    display: inline-block;
    margin-bottom: 10px;
}


.top_about {
    background: -webkit-linear-gradient(30deg, #D6E9F9 15%, #F1EBFF);
    background: linear-gradient(30deg, #D6E9F9 15%, #F1EBFF);
    margin-bottom: 70px;
}
.top_about > .inner {
    width: 76%;
    min-width: auto;
    margin: 0 auto;
    padding: 20px 0 37px;
}
.page_item + .top_about {
    margin-top: 60px;
}
.top_about_head {
    text-align: center;
    font-size: 2.0rem;
    color: #202F83;
    margin: 0 0 20px;
}
.top_about_head .ico {
    display: block;
    background: url(../img/top_about_ttl_sp.png) no-repeat center / cover;
    position: relative;
    font-size: 1.8rem;
    display: inline-block;
    margin: 0 auto 3px;
    padding: 2px 12px 8px 12px;
}
.top_about_main {
    display: block;
    justify-content: space-between;
}
.top_about_main h3 {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 15px;
    font-weight: 600;
}
.top_about_main p {
    margin-top: 20px;
}
.top_about_main .ph{
    width: auto;
}
.top_about_main img{
    width: 100%;
}
.top_about_main .txt {
    width: auto;
}
.top_about_main .banner {
    width: 131.57%;
    margin-top: 50px;
    margin-left: -15.78%;
}
.top_about_main .social {
    text-align: right;
}
.top_about_main .fb-like {
    margin: 10px -9px 0 0;
}
.fb_iframe_widget {
    display: inline-block;
    position: relative;
}
.fb_iframe_widget span {
    display: inline-block;
    position: relative;
    text-align: justify;
}
.fb_iframe_widget iframe {
    position: absolute;
}
.top_about_item {
    margin-top: 35px;
}
.top_about_item .ttl {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 25px;
}
.top_about_item .ttl span {
    padding: 0 25px;
    font-weight: 600;
}
.top_about_item .ttl:before, .top_about_item .ttl:after {
    content: "";
    display: block;
    flex-grow: 2;
    height: 1px;
    background: #202F83;
}
.top_about_item .ttl:before, .top_about_item .ttl:after {
    content: "";
    display: block;
    flex-grow: 2;
    height: 1px;
    background: #202F83;
}
.top_staff_list {
    display: block;
    justify-content: center;
}
.top_staff_list > div {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top_staff_list > div + div {
    margin-left: 0;
    margin-top: 20px;
}
.top_staff_list > div:nth-child(2) {
    flex-direction: row-reverse;
}
.top_staff_list > div:nth-child(2) .fukidashi:before {
    right: -17px;
    left: auto;
    top: 50%;
    -webkit-transform: rotate(90deg) translateX(-50%);
    transform: translateX(90deg) translateY(-50%);
}
.top_staff_list img{
    width: 100%;
}
.top_staff_list .head {
    width: 33.68%;
}
.top_staff_list .ph {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
.top_staff_list .ph img {
    border-radius: 50%;
}
.top_staff_list .name {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 6px;
}
.top_staff_list .fukidashi {
    width: 60%;
    background: #fff;
    border-radius: 5px;
    margin-top: 0;
    padding: 20px 15px;
    font-size: 1.2rem;
    line-height: 1.8;
    position: relative;
    box-sizing: border-box;
}
.top_staff_list .fukidashi:before {
    content: "";
    display: block;
    position: absolute;
    left: -17px;
    top: 50%;
    -webkit-transform: rotate(-90deg) translateX(50%);
    transform: translateX(-90deg) translateY(50%);
    width: 0;
    height: 0;
    border-bottom: 19px solid #fff;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
}

.top_future_list {
    display: block;
    justify-content: space-between;
}
.top_future_list > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: auto;
    margin: 0;
}
.top_future_list > div + div {
    margin-top: 25px;
}
.top_future_list > div:nth-child(2n) {
    flex-direction: row-reverse;
}
.top_future_list .ph {
    width: 44.56%;
    margin-bottom: 0;
}
.top_future_list .ph img {
    width: 100%;
    border-radius: 50%;
}
.top_future_list .txt {
    width: 47.36%;
}

@media screen and (min-width: 900px){
.ico_ex_link {
    display: inline-block;
    width: 10px;
    line-height: 1;
}
.company_about {
    display: flex;
    justify-content: space-between;
}

.company_about .ph {
    width: 51.44%;
}
.company_about .read {
    font-size: 1.8rem;
    font-weight: 600;
}
.company_about .txt {
    width: 38.22%;
    margin-top: 0; 
}
.company_subttl {
    font-size: 1.8rem;
    margin: 30px 0 10px;
}
.googlemap {
    height: 0;
    overflow: hidden;
    padding-bottom: 44.88%;
    margin-top: 10px;
    position: relative;
}

.company_tb th {
    font-size: 1.4rem;
    font-weight: 400;
    vertical-align: middle;
    width: 164px;
    background: #F0F0F0;
    padding: 20px 30px 20px 45px;
}
.company_tb th, .company_tb td {
    border: 1px solid #707070;
    line-height: 1.75;
}
.company_tb td {
    font-size: 1.6rem;
    padding: 20px 45px;
}


.page_item + .top_about {
    margin-top: 120px;
}
.top_about > .inner {
    width: 70.15%;
    min-width: 680px;
    margin: 0 auto;
    padding: 70px 0 100px;
}
.top_about_head {
    text-align: center;
    font-size: 2.8rem;
    color: #202F83;
    margin: 0 0 60px;
}
.top_about_head .ico {
    background: url(../img/top_about_ttl.png) no-repeat center / cover;
    position: relative;
    font-size: 2.2rem;
    display: inline-block;
    padding: 2px 24px 2px 12px;
    margin-right: 24px;
}
.top_about_main {
    display: flex;
    justify-content: space-between;
}
.top_about_main .ph{
    width: 52.18%;
}
.top_about_main h3 {
    font-size: 2rem;
    margin-top: 0;
}
.top_about_main .txt {
    width: 42.70%;
}

.top_about_main .banner {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
}

.top_about_item {
    margin-top: 100px;
}
.top_about_item .ttl {
    display: flex;
    align-items: center;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
}
.top_about_item .ttl span {
    padding: 0 25px;
    color: #202F83;
}

.top_about_item .ttl:before, .top_about_item .ttl:after {
    content: "";
    display: block;
    flex-grow: 2;
    height: 1px;
    background: #202F83;
}
.top_about_item .ttl:before, .top_about_item .ttl:after {
    content: "";
    display: block;
    flex-grow: 2;
    height: 1px;
    background: #202F83;
}
.top_staff_list {
    display: flex;
    justify-content: center;
}
.top_staff_list > div {
    width: 32.72%;
    display: block;
}
.top_staff_list > div + div {
    margin-left: 4.18%;
    margin-top: 0;
}


.top_staff_list .ph {
    width: 160px;
    height: 160px;
    margin: 0 auto;
}
.top_staff_list .head {
    width: 100%;
}
.top_staff_list .name {
    text-align: center;
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 10px;
}
.top_staff_list .fukidashi {
    width: 100%;
    background: #fff;
    margin-top: 30px;
    padding: 27px 30px;
    font-size: 1.6rem;
    position: relative;
    border-radius: 5px;
}

.top_staff_list .fukidashi:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: -16px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-bottom: 21px solid #fff;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
}
.top_staff_list > div:nth-child(2) .fukidashi:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: -16px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-bottom: 21px solid #fff;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
}

.top_future_list {
    display: flex;
    justify-content: space-between;
}
.top_future_list > div {
    display: block;
    width: 17.63%;
    margin: 0 3.68%;
}
.top_future_list > div + div {
    margin-top: 0;
}
.top_future_list .ph {
    width: 100%;
    margin-bottom: 30px;
}
.top_future_list .txt {
    width: 100%;
}
}

/************************************
 -contact-お問い合わせ
************************************/
.ico_equired {
    display: inline-block;
    margin-left: 10px;
    padding: 0 10px;
    font-size: 1.2rem;
    background: #2B4EE0;
    color: #fff;
    border-radius: 6px;
    font-weight: 500;
}
.ico_equired {
    display: inline-block!important;
    margin-left: 10px;
    padding: 5px 10px;
    font-size: 1.2rem;
    background: #2B4EE0;
    color: #fff;
    border-radius: 6px;
    font-weight: 500;
}

.txt_privacy {
    text-align: left;
    margin-top: 30px;
}

.btn_submit {
    display: block;
    border: 1px solid #3472D6!important;
    background: none;
    margin: 25px auto 0;
    padding: 20px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #3472D6;
    width: 100%;
    box-sizing: border-box;
}
.wpcf7-spinner {
    visibility: hidden;
    display: inline-block;
    background-color: #23282d;
    opacity: 0.75;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0 24px;
    position: relative;
}
.wpcf7-spinner::before {
    content: '';
    position: absolute;
    background-color: #fbfbfc;
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    border: none;
    border-radius: 100%;
    transform-origin: 8px 8px;
    animation-name: spin;
    animation-duration: 1000ms;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.notes_privacy {
    font-size: 1.2rem;
    color: #999;
    text-align: center;
}

.contact_form {
    margin-top: 30px;
}

.wpcf7 .screen-reader-response {
    position: absolute;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    word-wrap: normal !important;
}

.contact_form table th,.contact_form table td{
    font-size: 1.6rem;
    display: block;
}
textarea.message {
    width: 100%;
    height: 140px;
    box-sizing: border-box;
    padding: 15px;
    border: none;
    border: 1px solid #707070;
}

.contact_form table th {
    padding: 30px 20px 5px 0;
}

.wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 1em;
}
.wpcf7-list-item:first-child {
    margin-left: 0!important;
}
.wpcf7-list-item-label::before, .wpcf7-list-item-label::after {
    content: " ";
}
.wpcf7-list-item + .wpcf7-list-item {
    margin-left: 15px;
}

.input_txt {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    border: none;
    border: 1px solid #707070;
}

@media screen and (min-width: 900px){
    .contact_form {
        margin-top: 65px;
    }

    .contact_form table {
        width: 100%;
    }

    .contact_form table th, .contact_form table td {
        padding: 25px 0;
        vertical-align: top;
    }
    .contact_form table th {
        padding-right: 20px;
        width: 240px;
        display: inline-block;
    }
    .contact_form table td {
        display: inline-block;
        width: 58.11%;
    }

    .contact_form table td input, .contact_form table td textarea {
        font-size: 1.6rem;
    }

    .txt_privacy {
        text-align: center;
        margin-top: 60px;
    }
    .btn_submit {
        display: block;
        border: 1px solid #3472D6!important;
        background: none;
        margin: 20px auto 0;
        padding: 20px;
        text-align: center;
        font-size: 1.8rem;
        font-weight: 600;
        color: #3472D6;
        width: 61.11%;
    }
}

