@charset "utf-8";

/**
 *
 *  ページ用CSS
 *　index
 */

/*--------------------------------------------------------------------------
   Overwright
---------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/
.page-ttl{
  background-image:url(../image/ttl_page_pc.png); 
}


/* contact
-----------------------------------------------------------------*/
.contact{
  padding: 30px 0 85px;  
}
.contact .txt-lead{
  margin-bottom: 40px;
  font-size: 1.6rem;  
}
.contact .txt-lead a,
.contact .privacy .txt a{
  color: #DF0021;
  text-decoration:underline;
}
.contact .txt-lead a:hover,
.contact .privacy .txt a:hover{
  text-decoration:none;
}
.contact .proceed{
  margin-bottom: 40px;  
}
.contact-form{
  margin-bottom: 65px;
}
.contact-form > div{
  display: flex;
}
.contact-form dt{
  width: 250px;
  padding: 45px 0 40px;  
  border-bottom: 3px solid #DE0021; 
  font-size: 1.6rem;
  font-weight: bold;
  font-family:"Noto Sans JP","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo ,"ＭＳ Ｐゴシック" ,"MS P Gothic" ,sans-serif; 
}
.contact-form dt small{
  display:block;
  font-size: 1.2rem;
  font-weight:normal;  
}
.contact-form dt .required{
  display: inline-block;
  margin-left: 15px;
  padding: 2px 10px 4px;
  background:#DE0021;
  color: #FFF;
  font-size: 1.1rem;  
}
.contact-form dd{
  width: calc(100% - 250px);
  padding: 40px 0;    
  border-bottom: 3px solid #D9DADA;  
}
.contact-form dd .note{
  display: inline-block;
  margin-left: 15px;
  font-size: 1.6rem;
}

.contact .privacy{
  margin-bottom: 55px;
  padding: 35px;
  background:#ECECEC;
  text-align:center;
  font-size: 1.6rem;  
}
.contact .privacy .txt{
  margin-bottom: 20px;
}

.contact .js-confilm-button.is-disabled{
  opacity:.5;
  pointer-events:none;
  background-color:#ECECEC;
  color: #000;
}

.contact .btn-list{
  display: flex;
  justify-content: center;
  align-items: center;  
}
.contact .btn-list li{
  margin: 0 8px;  
}
.contact .btn-list .btn-back a{
  max-width: none;
  width: 270px;
  background:url(../../common/image/ico_arw_w_13_19.svg) no-repeat right 28px center #777;   
}


/* 完了ページ */
.contact .ttl-complete{
  margin: 75px 0 55px;
  text-align:center;
  font-size: 2.6rem;
}
.contact .ttl-complete+.txt{
  max-width: 700px;
  margin: 0 auto 75px;
  font-size: 1.6rem;  
}



/* form
-----------------------------------------------------------------*/


.contact input[type="text"],
.contact input[type="email"]{
  box-sizing:border-box;
  width: 450px;
  padding: 10px 25px;
  border: 1px solid #D9DADA;
  background: #F9F0E4;
  font-size: 1.6rem;
  font-family:"Noto Sans JP","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo ,"ＭＳ Ｐゴシック" ,"MS P Gothic" ,sans-serif;  
}
.contact textarea{
  box-sizing:border-box;
  width: 100%;
  height: 200px;
  padding: 10px 25px;
  border: 1px solid #D9DADA;
  background: #F9F0E4;
  font-size: 1.6rem;
  font-family:"Noto Sans JP","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo ,"ＭＳ Ｐゴシック" ,"MS P Gothic" ,sans-serif;  
}
.contact input[type="checkbox"]{
	position:relative;
	z-index:10;
	opacity:0;
  cursor: pointer; 
}
.contact .checkbox {
  box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  padding: 0 20px 0 5px;
  vertical-align: middle;
  cursor: pointer; 
}
.contact .checkbox:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: -20px;
  display: block;
  margin-top: -11px;
  width: 16px;
  height: 16px;
  border: 2px solid #646464;
  background: #FFF;
  content: '';
  cursor: pointer; 
}
.contact .checkbox:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  z-index:10;
  top: 50%;
  left: -13px;
  display: block;
  margin-top: -10px;
  width: 5px;
  height: 10px;
  border-right: 3px solid #DE0021;
  border-bottom: 3px solid #DE0021;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.contact input[type=checkbox]:checked + .checkbox:before {
  opacity: 1;
}

.contact input[type="submit"],
.contact input[type="button"]{
  display:block;
  height: 80px;
  line-height:78px;
  width: 380px;
  margin: 0 auto;
  border:none;
  border-radius: 40px;
  background:url(../../common/image/ico_arw_w_13_19.svg) no-repeat right 28px center #E10021;
  background-size: 13px auto;
  text-align:center; 
  font-size: 1.8rem;
  color: #FFF;
  font-weight: bold;
  cursor:pointer;
  transition: .3s;   
}
.contact input[type="submit"]:hover,
.contact input[type="button"]:hover{
  opacity:.7;  
}

.contact select {
  box-sizing:border-box;
  width: 450px;
  padding: 10px 25px;
  border: 1px solid #D9DADA;
  cursor: pointer; 
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url(../image/arw_select.svg) right 10px center no-repeat #F9F0E4;
	background-size:16px auto;
	font-size:1.6rem;
}


/* IE用 */
@media all and (-ms-high-contrast:none){
::-ms-expand {
	display: none;
}
.contact select {
	width: 150px;
	padding: 5px 10px 5px 60px;
	border: 1px solid #C0C0C0;
}

}










/*--------------------------------------------------------------------------
   mobile
---------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {


/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/
  .page-ttl{
    background-image:url(../image/ttl_page_sp.png); 
  }


/* contact
-----------------------------------------------------------------*/
  .contact{
    padding: 30px 0 50px;  
  }
  .contact .txt-lead{
    margin-bottom: 20px;
    font-size: 1.4rem;
    line-height:1.6;  
  }
  .contact .proceed{
    margin-bottom: 20px;  
  }
  .contact-form{
    margin-bottom: 35px;
  }
  .contact-form > div{
    display: block;
  }
  .contact-form dt{
    width: 100%;
    padding: 15px 0 10px;  
    border-bottom: 2px solid #DE0021; 
    font-size: 1.6rem;
  }
  .contact-form dt small{
    display:inline-block;
    margin-left: 15px;
    vertical-align:middle;
  }
  .contact-form dt .required{
    line-height: 1.4;
  }
  .contact-form dd{
    width: 100%;
    padding: 15px 0;    
    border-bottom: 2px solid #D9DADA;  
  }
  .contact-form dd .note{
    display: block;
    margin: 5px 0 0;
    font-size: 1.4rem;
  }
  
  .contact .privacy{
    margin-bottom: 35px;
    padding: 20px 15px;
    font-size: 1.4rem;  
  }
  .contact .privacy .txt{
    margin-bottom: 10px;
  }
  
  .contact .btn-list{
    display: flex;
    flex-wrap:wrap;
  }
  .contact .btn-list li:nth-child(1){
    order: 2; 
  }
  .contact .btn-list li:nth-child(2){
    order: 1;
    margin-bottom: 15px; 
  }
  .contact .btn-list li{
    margin: 0 8px;  
  }
  .contact .btn-list .btn-back a{
    max-width: none;
    width: 270px;
    background:url(../../common/image/ico_arw_w_13_19.svg) no-repeat right 20px center #777;
    background-size: 10px auto;   
  }


/* 完了ページ */
  .contact .ttl-complete{
    margin: 35px 0 20px;
    font-size: 2rem;
  }
  .contact .ttl-complete+.txt{
    max-width: none;
    margin: 0 auto 35px;
    font-size: 1.3rem;  
  }
  .contact .btn-back-top{
    width: 270px;
    margin: 0 auto; 
  }



/* form
-----------------------------------------------------------------*/

  
  .contact input[type="text"],
  .contact input[type="email"]{
    width: 100%;
    padding: 10px 15px;
  }
  .contact textarea{
    height: 150px;
    padding: 10px 15px;
  }
  
  .contact input[type="submit"],
  .contact input[type="button"]{
    display:block;
    height: 50px;
    line-height:48px;
    width: 270px;
    font-size: 1.4rem;
	  background: url(../../common/image/ico_arw_w_13_19.svg) no-repeat right 20px center #E10021;
    background-size: 10px auto;
  }
  
  .contact select {
    width: 100%;
    padding: 10px 15px;
  }








}