@charset "UTF-8";

#mvPage{
	background: url(../images/mv.jpg) center center no-repeat;
	background-size: cover;
	margin-top: 65px;  
}

#mvPage .mvInr{
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;
	width: 90%;
}

#mvPage .catchWrap{
	display: flex;
	justify-content: space-between;
}

#mvPage .catchWrap h1{
font-family: 'Lato', sans-serif;
	font-size: 30px;
	font-size: 3.0rem;
	max-width: 630px;
	width: 100%;
}

#mvPage .catchWrap h1 span{
	color: #181430;
    font-size: 12px;
    font-size: 1.2rem;
    position: relative;
    padding-left: 90px;
    margin-left: 10px;
}

#mvPage .catchWrap h1 span:before {
    content: '';
    position: absolute;
    left: 0px;
    width: 76px;
    top: 50%;
    height: 1px;
    background-color: #181430;
}

.form-block{
	text-align: center;
}

.txt{
	font-size: 14px;
	font-size: 1.4rem;
	width: 90%;
	margin:  0 auto 110px;
	line-height: 32px;
}

.txt .mark{
	color: #A60554;
}

.form{
	text-align: left;
	font-size: 14px;
	font-size: 1.4rem;
	width: 80%;
	margin: 0 auto;
}

.form p{
		margin-bottom: 6px;
}

.form-label{
	margin-bottom: 45px;
}

.form-label span{
	color: #A60554;
}

input, select, textarea{
	border: 1px solid #c1c1c1;
	padding: 10px 25px 10px 5px;
	width: 100%;
}

.radio {
	width: 3%;
}

.flex{
	margin-top: 20px;
}

.flex_l, .flex_r, .radio-btns{
	display: inline;
}

select {
  /* 初期化 */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  position: relative;
  width: 50%;
  padding: 15px 5px;
  background: url(../images/select-icon.svg) no-repeat right 15px center / 26px auto;
}

option[selected][disabled] {
  display: none;
}

textarea{
	height: 250px;
}

.plivacy {
	line-height: 32px;
	height: 410px;
	margin-top: 65px;
    border: 1px solid #c1c1c1;
    overflow-y: auto;
	width: 80%;
	margin: 80px auto 0;
}

.plivacy h1{
	font-size: 30px;
	font-size: 3.0rem;
	margin: 50px 0 5px 0;
}

.plivacy span{
	font-size: 12px;
	font-size: 1.2rem;
}

.plivacy p{
	font-size: 14px;
	font-size: 1.4rem;
}

.plivacy_ttl{
	text-align: center;
	width: 90%;
	margin: 0 auto;
}

.plivacy_ttl h2{
	margin: 45px 0 50px 0;
	font-size: 20px;
}

.plivacy_ttl .plivacy_p{
	font-size: 12px;
	font-size: 1.2rem;
	text-align: center;
}

.plivacy_txt{
	text-align: left;
	width: 90%;
	margin: 0 auto;
	padding: 20px 0 50px 0;
}

.plivacy_txt h2{
	font-size: 18px;
	font-size: 1.8rem;
	margin: 65px 0 35px 0;
	padding-bottom: 7px;
	border-bottom: 1px solid;
}

.plivacy_txt .txt_mt{
	margin-top: 30px;
}

.plivacy_txt table{
	width: 100%;
	border: 1px solid;
	margin: 30px 0;
}

.plivacy_txt th{
	text-align: center;
    border: 1px solid;
    width: 20%;
    background-color: #F7F8F8;
    vertical-align: middle;
}

.plivacy_txt td{
	border: 1px solid;
	width: 80%;
	padding: 12px 29px;
}

.box{
	margin: 62px 0 0 0;
}

/*
[type=checkbox]{
	margin-top: -6px;
    height: 20px;
    width: 20px;
}
*/

.box span{
	font-size: 14px;
	font-size: 1.4rem;
}

.box .error{
	font-size: 12px;
	font-size: 1.2rem;
    display: block;
    margin-top: 20px;
    color: red;
}

button{
	display: flex;
    margin: 60px auto 0;
    padding: 15px;
    border: 1px solid;
    width: 480px;
    font-size: 20px;
    font-size: 2.0rem;
}

button p{
	flex: 2;
	font-size: 16px;
	line-height: 30px;
}

button img{
	width: 15px;
}

/* チェックボタン */
.mycheckbox input[type="checkbox"]{
    display: none;
}

.mycheckbox input[type="checkbox"]+label{
    display: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding-left: 25px;
    padding-right: 10px;
}

.mycheckbox input[type="checkbox"]+label::before{
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    left: 0;
    top: 50%;
    border: 1px solid;
    border-color:  #585753; 
    background-color: #FFF; 
}

.mycheckbox input[type="checkbox"]:checked+label::after{
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 18px;
    height: 9px;
    margin-top: -9px;
    top: 50%;
    left: 3px;
    transform: rotate(-45deg);
    border-bottom: 3px solid;
    border-left: 3px solid;
    border-color:  #585753; 
}

label ~ label {
  margin-left: 15px;
}

input[type=radio] {
  margin-right: 8px;
}

/* ラジオボタン */
.radio-btns input[type=radio] {
  display: none;
}

.radio-btns label {
  position: relative;
  padding-left: 25px;
}

.radio-btns input[type=radio] + label::before {
  position: absolute;
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  left: 1px;
  top: 3px;
}

.radio-btns input[type=radio] + label::after {
  position: absolute;
  content: '';
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #cccccc;
  left: 3px;
  top: 5px;
  opacity: 0;
  transition: .3s;
}

.radio-btns input[type=radio]:checked + label::after {
 opacity: 1;
}



/*********************
       submit page
*********************/

.form .form-txt{
	font-weight: bold;
	margin-bottom: 20px;
}

.submitbox {
    margin: 200px 0 0;
}

/*********************
       Thanks page
*********************/

.thanks_btn{
	display: flex;
	justify-content: center;
}

.back_btn {
    justify-content: center;
    margin: 0 5% 0 0;
    width: 250px;
    font-size: 16px;
    line-height: 34px;
}

.next_btn{
	justify-content: center;
	margin: 0;
	width: 250px;
	font-size: 16px;
    line-height: 34px;
}


.thanks .secInr {
    padding: 80px 0 100px;
}

.thanks_btn .next_btn img{
	width: 13px;
}

.thanks .secInr .txt{
	margin: 0 auto 50px;
	text-align: center;
}

.topBtn{
	text-align: center;
}

.topBtn a {
    background: #cd6836;
    border-radius: 50px;
    color: #fff;
    padding: 15px 30px;
}

/*
@media only screen and (max-width: 1530px){	
	.flex_l, .flex_r{
		display: block;
		margin: 10px 0;
	}
}
*/

@media only screen and (max-width: 1530px){
	.radio-btns{
		display: block;
		margin-top: 10px;
	}
}

@media only screen and (max-width: 600px) {	

.secInr {
    padding: 50px 0;
}	
	
#mvPage {
    background: url(../images/mv.jpg) center center no-repeat;
    margin-top: 56px;
    background-size: cover;
}	
	
#mvPage .mvInr {
    background-size: 140px;
    padding: 50px 0;
    width: 90%;
}
#mvPage .catchWrap h1 {
    font-size: 20px;
    font-size: 2.0rem;
}	
#mvPage .catchWrap h1 span {
    color: #181430;
    font-size: 12px;
    font-size: 1.0rem;
    position: relative;
    padding-left: 45px;
    margin-left: 0;
    display: block;
    margin-top: 5px;
}
#mvPage .catchWrap h1 span:before {
    width: 35px;
}	
      
	.txt {
    margin: 0 auto 40px;
    font-size: 13px;
    line-height: 1.7;
	}
   
   .txt span{
	   font-size: 12px;
   }
   
   .form{
	   font-size: 13px;
	   width: 100%;
   }

   .form-label {
    margin-bottom: 25px;
	}
   
   select{
	   width: 100%;
   }   
   
   .plivacy {
    line-height: 1.7;
    width: 100%;
	}

   .plivacy h1{
	   font-size: 22px;
	   margin: 50px 0 0 0;
   }
   .plivacy h2 {
    margin: 25px 0 25px 0;
    font-size: 14px;
	}
   
   .plivacy p{
	   font-size: 12px;
	   text-align: left;
   }
      
   .plivacy_txt th{
	   font-size: 12px;
	   width: 26%;
   }
   
   .plivacy_txt td{
   	   font-size: 12px;
	   width: 74%;
	   padding: 12px 10px;
	}
   
	.box{
		margin: 90px 0 0 0;
	}
	
/*
	[type=checkbox]{
	    margin-top: -4px;
	    height: 20px;
	    width: 20px;
	    padding: 0;
	}
*/
	
	.box span{
		font-size: 12px;
	}
	
	button{
	    width: 250px;
	    font-size: 14px;
	    margin: 50px auto;
	}
	
	button img{
		width: 10px;
	}
	
	button p{
		font-size: 14px;
		line-height: inherit;
	}
	
/*********************
       submit page
*********************/
	
	.submitbox{
		margin: 90px 0 0;
	}

/*********************
       Thanks page
*********************/

.thanks .secInr {
    padding: 50px 0 80px;
}

.thanks .secInr .txt{
	margin: 0 auto 65px;
	text-align: center;
}

	.thanks_btn{
		display: block;
	}
	
	.back_btn{
		margin: auto;
		font-size: 14px;
    	line-height: 20px;
	}
	
	.next_btn{
		margin: 10px auto;
		font-size: 14px;
    	line-height: 20px;
	}
	
	.thanks_btn .next_btn img{
		width: 9px;
	}	

	.mt100.txt {
    margin: 125px auto 125px;
}
}

@media only screen and (min-width: 600px){
	.sp{
		display: none;
	}
	
}















