@charset "utf-8";

/**
 *
 *  ページ用CSS
 *　index
 */
/*--------------------------------------------------------------------------
   Form
---------------------------------------------------------------------------*/
input:focus:placeholder-shown, textarea:focus:placeholder-shown {
  color: transparent;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: transparent;
}

input:focus::-ms-input-placeholder, textarea:focus::-ms-input-placeholder {
  color: transparent;
}


label {
	cursor: pointer;
}

input, select {
  vertical-align: middle;
}




/* 入力
-----------------------------------------------------------------*/

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea{
	box-sizing:border-box;
	padding: 0.6em 0.8em;
	border: 1px solid #000;
	border-radius:10px;
  background:#FFF;
	font-size:1.8rem;
}

input[type="text"]{
	width: 200px;	
}
textarea{
	width: 100%;	
	font-family: 'Noto Sans JP','ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','游ゴシック体','Yu Gothic', YuGothic,'メイリオ',Meiryo ,'ＭＳ Ｐゴシック','MS P Gothic' ,sans-serif;
}

input::placeholder,
textarea::placeholder {
	position: relative;
	top:-2px;
  color: #B7B7B7;
}
/* IE */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #B7B7B7;
}
/* Edge */
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #B7B7B7;
}



/* @SP */

@media all and (max-width: 1000px) {
	
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea{
	font-size:1.6rem;
}
}






/* セレクト
-----------------------------------------------------------------*/

select {
	width: 100px;
	height: 46px;
	padding: 5px 10px 5px 40px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #000;
	border-radius:10px;
	background: #eee;
	background: #FFF;
	background-size:auto 100%;
	font-size:1.8rem;
	cursor:pointer;
}

/* IE */
@media all and (-ms-high-contrast:none){
::-ms-expand {
	display: none;
}

}


/* @SP */

@media all and (max-width: 768px) {

	select {
		font-size:1.6rem;
	}	
}






/* ラジオボタン・チェックボックス
-----------------------------------------------------------------*/

input[type="radio"], input[type="checkbox"] {
  opacity:0;
}


input[type="checkbox"]+label,
input[type="checkbox"]+label span{
  position: relative;  
}

input[type="checkbox"]+label span:before {
  position: absolute;
  left: -27px;
  top: 4px;
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #111111;
  border-radius:3px;
  background:#FFF;
}

input[type="checkbox"]:checked+label:before {
  position: absolute;
  left: -32px;
  top: 16px;
  display: block;
  /* -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .5); */
  content: "";
  width: 14px;
  height: 3px;
  background: #2dbd2a;
  -webkit-transform: rotate(40deg);
  -webkit-transform-origin: right center;
  transform: rotate(40deg);
  transform-origin: right center;
  z-index:5;
}

input[type="checkbox"]:checked+label:after {
  display: block;
  position: absolute;
  left: -19px;
  top: 16px;
  content: "";
  width: 26px;
  height: 3px;
  background: #2dbd2a;
  -webkit-transform: rotate(-58deg);
  -webkit-transform-origin: left center;
  transform: rotate(-58deg);
  transform-origin: left center;
  z-index:5;
}

input[type="radio"]+label{
	position: relative;	
}
input[type="radio"]+label:before{
  display: block;
  position: absolute;
  left: -21px;
  top:3px;
  content: "";
  border: 1px solid #111111;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:#FFF;	
}
input[type="radio"]:checked+label:after {
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  content: "";
  left: -17px;
  top: 7px;
  background-color: #2dbd2a;
  border-radius: 50%;
}


/* @SP */

@media all and (max-width: 768px) {

input[type="checkbox"]+label span:before {
  top: 5px;	
}
input[type="checkbox"]:checked+label:before {
  top: 20px;
}
input[type="checkbox"]:checked+label:after {
  top: 20px;	
}
  
}



/* 送信ボタン
-----------------------------------------------------------------*/
input[type="submit"],
input[type="button"]{
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
	position: relative;
	display: block;
	width: 100%;
	padding: 15px 0;
	border-radius: 50px;
	background: #2dbd2a;
	font-size: 1.5rem;
	font-weight: 700;
	color: #FFF;
	text-align: center;
	cursor:pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

button{
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
	position: relative;
	display: block;
	width: 190px;
	padding: 12px 0;
	border-radius: 10px;
	background: #2dbd2a;
	font-size: 1.5rem;
	font-weight: 700;
	color: #FFF;
	text-align: center;
	cursor:pointer;	
	transition: .3s;
}
button:hover{
	opacity: .7;	
}





/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/
#Mv{
	background-image: url(../image/img_mv_pc.jpg);
}

#Mv h1{
  mix-blend-mode: screen;  
}

/* entry
-----------------------------------------------------------------*/
.entry{
  padding: 40px 0 120px;  
}
.entry .inner{
	max-width: 840px;	
}
.entry h2{
  margin-bottom: 35px;
}
.progress{
  margin-bottom: 35px;
  display: flex;
  justify-content: center;
}
.progress li{
  max-width: 200px;
  width: calc((100% 60px)/3);margin: 0 15px;
  padding: 1em 10px;
  background: #b2f8a9;
  text-align: center;
  color: #FFF;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;  
}
.progress li.current{
  background: #2dbd2a;  
}
.progress+.txt{
  margin-bottom: 40px;
  text-align: center;
  line-height: 2;
  font-size: 1.6rem;
}
span.req{
  display: inline-block;
  padding: 0 8px;
  margin-right: 5px;
  border-radius: 4px;
  background: #2dbd2a;
  color: #FFF;
  font-size: 1.2rem;  
}

/* form-list */
.form-list{
  margin-bottom: 65px;  
}
.form-list > div{
  display: flex;
	border-bottom: 1px solid #000;
	font-weight: 500;  
}
.form-list > div.no_border{
	border-bottom: none;	
}
.form-list dt{
  flex-shrink: 0;
  width: 260px;
  padding:30px 20px;
  background-image: linear-gradient( 90deg, rgb(210,250,197,.6) 0%, rgb(195,246,214,.6) 100%); 
}
.form-list dt .ttl{
	display: inline-block;
	min-width: 4em;
	text-align: center;
	margin-right: 0.5em;
}

.form-list dt .ttl.align-left{
	text-align: left;
}

.form-list > div:last-child dt{
	position: relative;	
}
.form-list > div:last-child dt .ttl{
	text-align: left;
}
.form-list > div:last-child dt .req{
	position: absolute;
	right: 20px;
	top: 35px;	
}

.form-list dd{
	width: calc(100% - 260px);
  padding: 30px 20px;  
}
.form-list dd.align-center{
	display: flex;
	align-items: center;
}
.form-list dd p+p{
	margin-top: 15px;	
}
.form-list dd .note{
	margin-top: 5px;
	font-size: 1.2rem;		
}
.form-list dd a{
	color: #2dbd2a;	
}
.form-list dd a:hover{
	text-decoration: underline;	
}
.form-list .radio-list{
	display: flex;	
}
.form-list .radio-list li+li{
	margin-left: 25px;	
}


.btn-send{
	position: relative;
	max-width: 230px;
	margin: 0 auto;	
}
.btn-send::after{
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-40%);
	display: block;
	content: "";
	width: 13px;
	height: 12px;
	background:url(../common/image/btn_arw_w.svg) no-repeat;
	background-size: 100% auto;	
	transition: .2s;
}
.btn-send:hover::after{
	right: 20px;
}


/* 個別スタイル */
label{
	display: inline-block;
	line-height: 1.4;	
}
.q01 label,
.q02 label{
	min-width: 2em;
	margin-right: 5px;	
}
.q01 label:nth-of-type(2),
.q02 label:nth-of-type(2){
	margin-left: 10px;
}

.q03 span{
	display: inline-block;
	margin: 0 3px;	
}
.q03 span:nth-of-type(1){
	margin: 0 5px 0 0;	
}
#month,
#day{
	width: 70px;
	padding-left: 30px;
}
.q05 span{
	display: inline-block;	
}
.q05 span:nth-of-type(1){
	margin: 0 5px 0 0;	
}
.q05 span:nth-of-type(2){
	margin: 0 5px;	
}
#zip01,
#zip02{
	width: 100px;
}
.q05 button{
	display: inline-block;
	margin-left: 10px;	
}
.q06 span,
.q07 span,
.q08 span{
	display: inline-block;
	width: 7em;
}
.q06 input,
.q06 select,
.q07 input,
.q08 input{
	width: calc(100% - 7em);
}

.q06 select{
	padding: 0.6em 0.8em;
}

.q09 input{
	width: 200px;
}
.q09 span{
	display: inline-block;	
}
.q09 span:nth-of-type(1){
	margin: 0 5px 0 0;	
}
.q09 span:nth-of-type(2){
	margin: 0 5px;	
}
.form-list dd .q11{
	margin-top: 5px;	
}
.q10 input,
.q11 input,
.q13 input{
	width: 100%;
}
.q16 .txt{
	margin-bottom: 15px;
	line-height: 1.5;	
}

.q17 .radio-list{
	flex-wrap:wrap;
}

.form-list .q17 .radio-list li{
	margin: 0 15px 10px 0;
}

.form-list+.txt{
	margin-bottom: 25px;
	text-align: center;	
}




/*--------------------------------------------------------------------------
   確認画面
---------------------------------------------------------------------------*/
.confirm .btn-list{
	display: flex;
	justify-content: center;
}
.confirm .btn-list li{
	min-width: 240px;
	margin: 0 10px;	
}
.confirm .btn-list .btn-base a{
	line-height: 1.6;
}
.confirm .btn-list .btn-base a::after{
	right: auto;
	left: 25px;
	transform: translateY(-50%) rotate(180deg);	
}
.confirm .btn-list .btn-base a:hover::after{
	left: 20px;	
}


/*--------------------------------------------------------------------------
   完了画面
---------------------------------------------------------------------------*/
.complete h3{
	margin-bottom: 30px;
	text-align: center;
	font-size: 3rem;
	color: #2dbd2a;		
}
.complete h3 + .txt{
	margin-bottom: 100px;
	text-align: center;		
}
.complete .btn-back{
	max-width: 300px;
	margin: 0 auto;	
}









/*--------------------------------------------------------------------------
   mobile
---------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {


/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/
	#Mv{
		background-image: url(../image/img_mv_sp.jpg);
	}	

/* entry
-----------------------------------------------------------------*/
	.entry{
		padding: 40px 0 60px;  
	}
	.entry h2{
		margin-bottom: 25px;
	}
	.progress{
		margin-bottom: 25px;
	}
	.progress li{
		max-width: 200px;
		width: calc((100% 60px)/3);
		margin: 0 5px;
		font-size: 1.6rem;  
	}
	.progress li.current{
		background: #2dbd2a;  
	}
	.progress+.txt{
		margin-bottom: 25px;
		font-size: 1.3rem;
	}
	span.req{
		display: inline-block;
		padding: 0 8px;
		margin-right: 5px;
		border-radius: 4px;
		background: #2dbd2a;
		color: #FFF;
		font-size: 1.1rem;  
	}

/* form-list */
	.form-list{
		margin-bottom: 40px;  
	}
	.form-list > div{
		display: block;
		border-bottom: none;
	}
	.form-list > div.no_border{
		border-bottom: none;	
	}
	.form-list dt{
		flex-shrink: 0;
		width: 100%;
		padding:15px 10px;
	}
	.form-list dt .ttl{
		display: inline-block;
		min-width:inherit;
		text-align: center;
		margin-right: 0.5em;
	}
	.form-list dt .ttl.align-left br{
		display: none;
	}
	.form-list > div:last-child dt{
		position: relative;	
	}
	.form-list > div:last-child dt .ttl{
		text-align: left;
	}
	.form-list > div:last-child dt .req{
		position: static;
	}
	
	.form-list dd{
		width: 100%;
		padding:15px 10px;
	}
	.form-list dd .note{
		font-size: 1.1rem;		
	}
	.form-list .radio-list{
		display: flex;	
	}
	.form-list .radio-list li+li{
		margin-left: 15px;	
	}
	
	
	.btn-send{
		position: relative;
		max-width: 230px;
		margin: 0 auto;	
	}
	.btn-send::after{
		position: absolute;
		right: 25px;
		top: 50%;
		transform: translateY(-40%);
		display: block;
		content: "";
		width: 13px;
		height: 12px;
		background:url(../common/image/btn_arw_w.svg) no-repeat;
		background-size: 100% auto;	
		transition: .2s;
	}
	.btn-send:hover::after{
		right: 20px;
	}


/* 個別スタイル */
	input[type="radio"]+label{
		line-height: 1.8;	
	}
	.q01 label:nth-of-type(2),
	.q02 label:nth-of-type(2){
		margin-left: 0;
	}
	.q01 input,
	.q02 input{
		width: auto;
	}
	#sei,
	#kana_sei{
		margin-bottom: 10px;
	}
	
	.q03 span{
		display: inline-block;
		margin: 0 3px;	
	}
	.q03 span:nth-of-type(1){
		margin: 0 5px 0 0;	
	}
	#year{
		padding-left: 35px;
		width: 90px;
	}
	#month,
	#day{
		padding-left: 20px;
		width: 50px;	
	}
	.q05 button{
		margin: 10px 0 0 1.3em;	
		font-size: 1.4rem;
	}
	.q06 input,
	.q06 select,
	.q07 input,
	.q08 input,
	.q09 input{
		width: auto;
	}
	.q09 span:nth-of-type(1){
		margin: 0 5px 0 0;	
	}
	.q09 span:nth-of-type(2){
		margin: 0 5px 0 0;	
	}
	#tel01{
		margin-bottom: 10px;
	}
	.form-list dd .q11{
		margin-top: 5px;	
	}
	.q10 input,
	.q11 input,
	.q13 input{
		width: 100%;
	}
	
	.q16 .txt{
		margin-bottom: 10px;
		line-height: 1.5;	
	}
	
	.form-list+.txt{
		margin-bottom: 25px;
		text-align: center;	
	}







/*--------------------------------------------------------------------------
   確認画面
---------------------------------------------------------------------------*/
.confirm .btn-list{
	display: block;
}
.confirm .btn-list li{
	max-width: 240px;
	margin: 0 auto;	
}
.confirm .btn-list li:nth-child(2){
	margin-top: 15px;
}
.confirm .btn-list .btn-base a{
	font-size: 1.5rem;
}
.confirm .btn-list .btn-base a:hover::after{
	left: 25px;	
}





/*--------------------------------------------------------------------------
   完了画面
---------------------------------------------------------------------------*/
	.complete h3{
		margin-bottom: 20px;
		font-size: 2rem;
	}
	.complete h3 + .txt{
		margin-bottom: 50px;
	}
	.complete .btn-back{
		max-width: 300px;
	}
	





}