@charset "UTF-8";
/************************************
component
************************************/
/** Cookie表示 **/
.cookie_consent {
	position: fixed;
	bottom: -50px;
	width: 100%;
	font-size: 12px;
	line-height: 1.5;
	box-sizing: border-box;
	opacity: 0;
	transition: bottom 0.5s ease, opacity 0.5s ease;
	z-index: 99;
	visibility: hidden;
}
.cookie_consent.is-show {
	opacity: 1;
	bottom: 10px;
	visibility: visible;
}
.cookie_inner {
	position: relative;
	background: #fff;
	padding: 20px;
	border-radius: 4px;
	box-shadow: 0 2px 20px rgba(112,143,170,0.18);
}
.cookie_text {
	width: calc(100% - 320px);
	padding-right: 20px;
}
.policy_link {
	color: #565E6A;
	text-decoration: underline;
}
.cookie_agree,
.cookie_reject {
	width: 110px;
	color: #fff;
	background: #1B3345;
	border: 1px solid #1B3345;
	border-radius: 4px;
	padding: 10px 20px;
	margin-left: 10px;
	text-align: center;
}
.cookie_agree:hover,
.cookie_reject:hover {
	cursor: pointer;
	background: #fff;
	color: #1B3345;
}

.cc-hide2 {
	animation: hide 0.3s forwards; 
}
.cookie_consent .close_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width:  35px;
	height: 35px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	margin-left: 40px;
	background: #F4F6F8;
	border-radius: 50%;
	line-height: 1;
}

.cookie_consent .close_btn:hover {
	opacity: 0.8;
}

/**  reCAPTCHA **/
.grecaptcha-badge { 
	visibility: hidden;
}
.recapcha-text {
	margin-top: 20px;
	font-size: 12px;
	text-align: center;
}
.recapcha-text a {
	text-decoration: underline;
}
.external_icon {
	width: 16px;
    vertical-align: baseline;
    margin-left: 5px;
}
/************************************
form共通
************************************/
  #form h2 {
	font-size: 24px;
	margin-bottom: 40px;
	text-align: center;
  }
  
  /** form_value **/
  #form .form_value {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
  }
  #form .form_value div {
	position: relative;
	text-align: center;
	width: 150px;
	padding: 0 5px;
  }
  #form .form_value div::after {
	position: absolute;
	top: 12px;
	left: 97px;
	content: "";
	display: inline-block;
	width: 110px;
	height: 1px;
	background-image : linear-gradient(to right, #C6C6C6, #C6C6C6 2px, transparent 2px, transparent 8px);  /* 幅2の線を作る */
	background-size: 5px 1px;
	background-position: left bottom;
	background-repeat: repeat-x;
  }
  #form .form_value div:last-child::after {
	content: none;
  }
  #form .form_value .form_value_icon {
	font-family: 'Barlow', sans-serif;
	display: block;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(27,51,69,0.2);
	color: #fff;
	font-weight: bold;
	margin: 0 auto 5px;
	font-size: 14px;
  }
  #form .form_value .form_value_txt {
	color: rgba(27,51,69,0.2);
	font-size: 12px;
	font-weight: bold;
  }
  #form .form_value div.active .form_value_icon {
	background: #FFAD14;
  }
  #form .form_value div.active .form_value_txt {
	color: #FFAD14;
  }
  #form .form_value div.complete::after {
	background: rgba(27,51,69,0.3);
  }
  #form .form_value div.complete .form_value_icon {
	background: rgba(27,51,69,0.6);
  }
  #form .form_value div.complete .form_value_txt {
	color: rgba(27,51,69,0.6);
  }
  
  /** form_toptxt **/
  #form .form_toptxt {
	margin-bottom: 80px;
  }
  
  /** form **/
  #form dl div {
	margin-bottom: 40px;
  }
  #form .form_term {
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
  }
  #form .form_step2 .form_term {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 5px;
  }
  #form .form_step2 .form_description {
	font-size: 16px;
  }
  #form .req,
  #form .any {
	font-size: 10px;
	width: 32px;
	height: 18px;
	line-height: 18px;
	margin-left: 10px;
	border-radius: 4px;
	text-align: center;
  }
  #form .req {
	font-weight: bold;
	color: #fff;
	background: #EF5151;
  }
  #form .any {
	color: #565E6A;
	background: #E2E1E1;
  }
  #form .ex {
	font-size: 12px;
	color: rgba(27,51,69,0.5);
  }
  #form .caution {
	color: #EF5151;
	font-size: 12px;
	margin-top: 5px;
  }
  #form .form_name .form_description {
	width: 49%;
  }
  #form .form_birthday .form_description {
	width: 32%;
  }
  #form .form_birthday select {
	width: calc(100% - 25px);
  }
  #form .form_birthday span {
	font-size: 12px;
  }
  #form .form_birthday dd div {
	margin-bottom: 0;
  }
  #form .form_sex {
	margin-bottom: 0;
  }
  #form .form_sex label.radio_label_style {
	width: 49%;
	margin-bottom: 0;
  }
  #form .form_description.other_textarea {
	margin-top: 15px;
  }
  
  #form .privacypolicy {
	max-width: 500px;
	border: 1px solid #E2E1E1;
	border-radius: 4px;
	padding: 30px 5%;
	margin: 0 auto 50px;
  }
  #form .privacypolicy div {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 20px;
  }
  #form .privacypolicy p {
	font-size: 12px;
	margin-bottom: 20px;
  }
  #form .privacypolicy p a {
	border-bottom: 1px dotted rgba(27,51,69,0.5);
  }
  #form .privacypolicy label.label_style {
	padding: 0 0 0 25px;
	border: none;
  }
  #form .privacypolicy label.label_style::before {
	left: 0;
  }
  #form .privacypolicy label.label_style::after {
	left: 7px;
  }
  #form .privacypolicy label.label_style:hover {
	background: none!important;
  }
  
  #form .btn_wrap {
	margin: 0 auto;
  }

/************************************
privacypolicy
************************************/

.policy_content .content_head_txt {
 	 margin-bottom: 50px;
}
.policy_content dl div {
 	 margin-bottom: 50px;
}
.policy_content dl div dt {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 15px;
}





/************************************
responsive
************************************/
@media (max-width: 960px) {
	/************************************
	form共通
	************************************/

	#form .form_value div {
		width: 100px;
	}
	#form .form_value div::after {
		top: 12px;
		left: 70px;
		width: 65px;
	}

	#form .form_name {
		flex-direction: column;
	}
	#form .form_name .form_description {
		width: 100%;
	}



}