@charset "utf-8";

form#mail_form{
	width: 1050px;
    max-width: 100%;
	margin : 15px auto 40px;
	padding : 15px 0;
	background : #ffffff;
	border : 1px solid #ccc;
	border-radius : 7px;
	box-shadow : 0 0 7px rgba( 0, 0, 0, 0.2 )
}
form#mail_form dl{
	width: 90%;
    margin: 0 auto 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}
form#mail_form dl dt{
	width: 22%;
    padding: 15px 0;
    font-size: 1.4rem;
    font-weight: 600
}
form#mail_form dl dd{
	width: 70%;
    font-size: 1.4rem;
    margin-top: 16px
}
form#mail_form dl dt:first-child,
form#mail_form dl dt:first-child+dd{
	border : none
}
form#mail_form dl dt span{
	display : block;
	font-size : 60%;
	color : #3377ff
}

/* -- for JavaScript ここから -------------------------------------------------------------------------------- */

form#mail_form dl dt span.required,
form#mail_form dl dt span.optional{
	display : inline-block;
	float : left;
	color : #ffffff;
	line-height : 1;
	padding : 5px 9px;
	border-radius : 3px;
	font-size: 1.2rem
}
form#mail_form dl dt span.required{
	background : #39c4c6;
	border : 1px solid #39c4c6;
	float: right;
	margin-top: 3px
}
form#mail_form dl dt span.optional{
	background : #337ab7;
	border : 1px solid #2e6da4
}
form#mail_form dl dd span.error_blank,
form#mail_form dl dd span.error_format,
form#mail_form dl dd span.error_match{
	display: block;
    color: #f00;
    margin-top: 3px;
    font-size: 1.4rem
}
span.loading{
	width : 50px;
	height : 50px;
	border-radius : 50%;
	border-top : 5px solid rgba( 255, 255, 255, 0.2 );
	border-right : 5px solid rgba( 255, 255, 255, 0.2 );
	border-bottom : 5px solid rgba( 255, 255, 255, 0.2 );
	border-left : 5px solid #ffffff;
	-webkit-transform : translateZ( 0 );
	-ms-transform : translateZ( 0 );
	transform : translateZ( 0 );
	-webkit-animation : load-circle 1.0s linear infinite;
	animation : load-circle 1.0s linear infinite;
	position : absolute;
	top : 50%;
	left : 50%;
	margin-top : -25px;
	margin-left : -25px
}
@-webkit-keyframes load-circle{
	0%{
		-webkit-transform : rotate( 0deg );
		transform : rotate( 0deg )
	}
	100%{
		-webkit-transform : rotate( 360deg );
		transform : rotate( 360deg )
	}
}
@keyframes load-circle{
	0%{
		-webkit-transform : rotate( 0deg );
		transform : rotate( 0deg )
	}
	100%{
		-webkit-transform : rotate( 360deg );
		transform : rotate( 360deg )
	}
}

/* -- for JavaScript ここまで -------------------------------------------------------------------------------- */

form#mail_form input[type="text"],
form#mail_form input[type="email"],
form#mail_form input[type="tel"]{
	max-width : 90%;
	height : 2.5em;
	padding : 2px 2%;
	border : 1px solid #ccc;
	border-radius : 3px;
	background : #fafafa;
	-webkit-appearance : none;
	font-size: 1.4rem
}
form#mail_form input[type="text"]:focus,
form#mail_form input[type="email"]:focus,
form#mail_form input[type="tel"]:focus,
form#mail_form textarea:focus{
	box-shadow : 0px 0px 5px #55ccff;
	border : 1px solid #55ccff;
	background : #ffffff
}
form#mail_form select{
    font-size: 1.4rem;
    padding: 7px 15px 7px 5px;
    border-radius: 5px
}
form#mail_form option{
	font-size: 1.4rem
}
form#mail_form ul li label:hover{
	cursor : pointer
}
form#mail_form input#company{
	width : 100%
}
form#mail_form input#postal,
form#mail_form input#phone,
form#mail_form input#schedule,
form#mail_form input#email{
	width : 100%
}
form#mail_form input#name_1,
form#mail_form input#name_2,
form#mail_form input#read_1,
form#mail_form input#read_2{
	width: 40%;
    margin-right: 18px
}
form#mail_form input#postal{
	width : 44%
}
form#mail_form input#mail_address,
form#mail_form input#mail_address_confirm{
	width : 100%
}
form#mail_form input#mail_address1,
form#mail_form input#mail_address1_confirm{
	width : 100%
}
form#mail_form input#postal+a{
	padding: 11px 15px;
    background: #5bc0de;
    border-radius: 3px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-left: 10px
}
form#mail_form input#postal+a:hover{
	opacity: 0.7
}
form#mail_form input#address{
	width : 90%
}
form#mail_form input#address1{
	width : 90%
}
form#mail_form p#form_submit{
	width: 140px;
    margin: 30px auto 20px
}
form#mail_form input[type="button"]{
	padding: 14px 0;
    width: 140px;
    vertical-align: middle;
    line-height: 1;
    background: #39c4c6;
    border: 1px solid #39c4c6;
    border-radius: 3px;
    color: #fff;
    -webkit-appearance: none;
    font-size: 1.4rem;
	font-weight: 600
}
form#mail_form input[type="button"]:hover{
	cursor : pointer;
	opacity: 0.8;
	transition: 0.7s
}
.multicheck {
    list-style: none;
    margin: 0;
    padding: 0
}
.multicheck input[type="checkbox"] {
    display: none
}
.multicheck input[type="checkbox"].multicheck-input:checked + label {
    background-color: #39c4c6;
    border: 1px solid #39c4c6;
    color: #fff
}
.multicheck .multicheck-label {
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    color: #4b4a4a;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 3px;
    background: #F3F3F3;
    transition: 0.1s;
    font-size: 1.4rem
}
.multicheck .multicheck-label:hover {
	transition: 0.7s
}
.multicheck .multicheck-label:active {
    background-color: #39c4c6;
    border: 1px solid #39c4c6;
	color: #fff
}
.multicheck.multicheck-inline .multicheck-item {
    display: inline-block;
    text-align: center
}
.multicheck.multicheck-inline .multicheck-label {
    display: inline-block;
    text-align: center;
    margin-right: 10px;
	width: 100px
}
.marathon_form{
    padding: 20px 0 0
}
.marathon_form_inner{
	width: 90%;
    margin: 0 auto
}
.marathon_form h3{
	font-size: 1.5rem;
	font-weight: 600;
	color: #ce1225;
	margin-top: 30px;
	line-height: 1.4
}
.marathon_form h3:first-child{
	margin-top: 0
}
.selectExtension{
	display: flex;
	margin-top: 3px
}
.selectExtension li{
	margin-right: 30px;
	color: #231815;
    font-weight: 600;
	cursor: pointer
}
.selectExtension li .formUiRadio{
	display: flex;
    align-items: center
}
.selectExtension li input{
	cursor: pointer;
	margin-right: 10px;
	inline-size: 1.5rem;
    block-size: 1.5rem
}
.selectExtension li input:checked{
	accent-color: #231815
}
.selectExtension .label{
	font-size: 1.4rem
}
.marathon_form textarea{
	display: block;
    width: 90%;
    height: 80px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #fff;
    font-size: 1.4rem;
    margin-top: 8px;
    box-sizing: border-box;
    line-height: 1.2
}
footer .footer_bottom{
	background: #ce1225
}

.cv_btn{
	margin-top: 10px;
	font-weight: 600;
    text-align: center;
	width: 600px;
	margin-left: 60px;
    border-radius: 34px;
	box-sizing: border-box;
	box-shadow: 6px 6px 2px rgb(0 0 0 / 18%);
   background: linear-gradient(to bottom,#ce1225 45%,#bc0f29 100%)
}
.cv_btn:hover{
	opacity: 0.8;
	transition: 0.7s
}
.cv_btn a{
	position: relative;
    font-weight: 600;
    font-size: 30px;
    padding: 11px 0;
    display: block;
    z-index: 5;
    overflow: hidden;
    width: 100%;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: .25s linear;
    -webkit-transition: .25s linear;
    -moz-transition: .25s linear;
}
.cv_btn a::before{
	content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -800%;
    background-image: linear-gradient(130deg,rgba(255,255,255,0) 25%,rgba(255,255,255,0.8) 50%,rgba(255,255,255,0) 75%);
    -webkit-animation: shine 2.5s infinite;
    animation: shine 2.5s infinite
}
@-webkit-keyframes shine{100%{left:100%}}
@keyframes shine{100%{left:100%}}

#floating{
	position: fixed;
    bottom: 0;
    left: 0;
	background:rgb(0 0 0 / 50%) ;
    display: block;
	width: 100%;
	height: 120px;
    z-index: 50
}

#floating .cv_btn {
	margin:25px auto 0;
	width: 550px
}
.pageTop {
    position: fixed;
    bottom: 32px;
    right: 45px;
    display: none;
    z-index: 100;
    transform: rotate(-90deg)
}
.pageTop a {
    display: inline-block;
    border-radius: 15px;
    position: relative;
    background: linear-gradient(to left,#ce1225 70%,#bc0f29 100%);
    width: 50px;
    height: 50px
}
.pageTop a:hover{
	opacity: 0.8;
	transition: 0.7s
}
.pageTop a:after {
    border-width: 5px
}
.pageTop a:after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-60%,-50%) rotate(-45deg);
    width: 15px;
    height: 15px;
    border-right: 4px solid #fff;
    border-bottom: 4px solid #fff
}
@media screen and (min-width:768px) and ( max-width:1024px) {
.pageTop{
	bottom: 22px	
	}
.pageTop a{
	width: 60px;
    height: 60px	
	}
}


@media screen and (min-width:768px) and ( max-width:769px) {

.cv_btn{
	width:600px
}
.cv_btn a{
	font-size: 30px
}
#floating .cv_btn{
	width: 530px
}
.pageTop {
	right: 20px
	}
}

@media screen and ( max-width: 1049px){
form#mail_form{
	width: 95%
}
.multicheck.multicheck-inline .multicheck-label{
	width: 94px
}

}

/* --responsive----------------------------------------------------------------------------------------------------------------- */

/* スマホ */
@media screen and ( max-width: 767px){
form#mail_form {
	margin: 15px auto 8px
}
form#mail_form dl{
	margin: 0 auto
}
form#mail_form dl dt{
	width: auto;
    padding: 0;
    margin-top: 3vw;
    display: flex;
    align-items: center
}
form#mail_form dl dd{
	width: 100%;
	border-top : none;
	padding : 2px 0 3px 0px;
	margin-top: 5px
}
form#mail_form input#name_1, form#mail_form input#name_2, form#mail_form input#read_1, form#mail_form input#read_2{
	margin-right: 3vw
}
form#mail_form dl dt span{
	font-weight: normal
}
.multicheck.multicheck-inline .multicheck-label {
    margin-bottom: 10px
}
form#mail_form select#productYear,form#mail_form select#productMonth,form#mail_form select#productDay{color:#000}
.multicheck.multicheck-inline .multicheck-label {
	width: 38vw
}
/* -- for JavaScript ここから -------------------------------------------------------------------------------- */

form#mail_form dl dt span.required,
form#mail_form dl dt span.optional{
	margin: 0 2vw 0 0
}

/* -- for JavaScript ここまで -------------------------------------------------------------------------------- */

form#mail_form input#phone,
form#mail_form input#schedule{
	width : 100%
}
form#mail_form p#form_submit {
    width: 180px;
    margin: 20px auto
}
form#mail_form input[type="button"]{width: 180px}


.cv_area .cv_btn_area{
	top: 52vw;
    left: 5vw
}
.cv_btn {
    margin-top: 5px;
    width: 78vw;
    margin-left: 24px;
	box-shadow: 4px 4px 2px rgb(0 0 0 / 18%)
}
.cv_btn:hover{
	opacity: 1;
	transition: unset
}
.cv_btn a {
    font-size: 17px;
	padding: 7px 0;
}
#floating{
	height: 70px
}
#floating .cv_btn {
    margin: 3.2vw 0 0 5vw;
    width: 76vw
}
.pageTop {
    bottom: 11px;
    right: 10px;
	background: none
}
.pageTop a{
	width: 45px;
    height: 45px	
	}
.pageTop a:hover{
	opacity: 1;
	transition: unset
}
}

@media screen and (min-width:540px) and ( max-width:767px) {
#floating .cv_btn {
	margin: 2vw 0 0 5vw
}
}
@media screen and ( max-width: 375px){
#floating .cv_btn {
    margin: 3.5vw 0 0 4vw
}
}
/* スマホ end */

