/* ----------------------------------------
step
---------------------------------------- */
.step {
  position: relative;
  z-index: 1;
}
.step-list {
	display: flex;
	margin: 0 0 6rem 0;
	color: #666;
	font-size: 1.6rem;
	text-align: center;
	line-height: 100%;
	overflow: hidden;
	border: 1px solid #e9ecee;
}

.step-list > li {
	position: relative;
	width: calc(100% / 3);
	padding: 1.8rem 0;
	background: #f2f6f8;
}

.step-list > li:not(:last-child):after {
	content: "";
	position: absolute;
		z-index: 10;
		top: 50%;
		right: 0;
	display: block;
	width: 4rem;
	height: 4rem;
	background: #f2f6f8;
	border: 1px solid #e9ecee;
	border-bottom: 0;
	border-left: 0;
		-ms-transform: translateY(-50%) translateX(50%) rotate(45deg) skew(25deg,25deg);
	transform:
		translateY(-50%)
		translateX(50%)
		rotate(45deg)
		skew(
			25deg,
			25deg
		);
  }

.step-list > li.active:after {
  background: #0068b7;
  border: none;
}

.step-list > li.active {
	color: #fff;
	font-weight: bold;
	background: #0068b7;
}

/* ----------------------------------------
.attention
---------------------------------------- */
.attention-txt{
	font-size: 1.6rem;
	margin: 0 0 1rem 0;
  line-height: 1.75;
}

.attention{
	font-size: 1.6rem;
	color:#e60012;
	margin: 0 0 3rem 0;
}
.attention .equired{
	display: inline-block;
	font-size:1.4rem;
	font-weight: normal;
	line-height: 1;
	color: #fff;
	padding:0.5rem 0.7rem;
	margin:0 1rem 0 0 ;
	background-color: #e60012;
}

.attention-bg{
	font-size: 1.6rem;
  line-height: 1.75;
	padding:1.5rem 2rem;
	margin:0 0 6rem 0 ;
	background-color: #f2f6f8;
}

/* ----------------------------------------
table
---------------------------------------- */
.col-form .input-list{
  margin: 0 0 8rem 0; 
}

.col-form table {
	width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.col-form table th,
.col-form table td{
	text-align: left;
	font-size: 1.6rem;

	border: 1px solid #e9ecee;
	padding:1.5rem 2rem;
}

.col-form table th{
	width: 36rem;
	font-weight: bold;
	background-color: #f2f6f8;
  vertical-align:middle;
}


.col-form table th .icon-equired{
float: right;
	display: inline-block;
	font-size:1.4rem;
	font-weight: normal;
	line-height: 1;
	color: #fff;
	padding:0.5rem 0.7rem;
	margin:0 0 0 0.7rem;
	background-color: #e60012;
}

.col-form table th .icon-any{
float: right;
	display: inline-block;
	font-size:1.4rem;
	font-weight: normal;
	line-height: 1;
	color: #fff;
	padding:0.5rem 0.7rem;
	margin:0 0 0 0.7rem;
	background-color: #8e8e8e;
}

.col-form table .sub{
	font-size: 1.2rem;
	color: #555;
	margin:0 0 1rem 0;
}

.col-form .select-wrap{
	position: relative;
	margin:  0 0 1.5rem 0;
}
.col-form select{
    display: inline-block;
    width: 37rem;
    height: 5rem;
    padding: 0 1rem;
	
	-webkit-appearance: none;
	-moz-appearance: none;
    appearance: none;
	  border-radius: 0;
    outline: none;
    background: transparent;
    cursor: pointer;
	  border: 1px solid #d0d5da;
    font-size: 1.6rem;
    color: #333;
}
		.col-form .select-wrap .selectArrow {
			display: inline-block;
			width: 0.8rem;
			height: 0.8rem;
			border-bottom: 1px solid #0068b7;
			border-right: 1px solid #0068b7;
			transform: rotate(45deg);
			position: absolute;
			top: 2rem;
			left: 35rem;
		}

.col-form textarea,
.col-form input{
  display: inline-block;
  width: 46rem;
  height: 5rem;
  padding: 0 1rem;
	
	-webkit-appearance: none;
	-moz-appearance: none;
  appearance: none;
  border-radius: 0;
  outline: none;
  cursor: auto;
  border: 1px solid #d0d5da;
  font-size: 1.6rem;
  color: #333;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}


.col-form textarea{
	width: 100%;
	min-height: 18rem;
	padding: 1rem;
}
.col-form input.txt-L{
	width: 100%;
}
.col-form input.txt-S:nth-of-type(1){
	width: 16rem;
}
.col-form input.txt-S{
	width: 20rem;
}

.col-form input::placeholder {
	color: #ccc;}


.col-form .radio-wrap{
	display: flex;
	margin: 0 0 1.5rem 0;
	padding: 1rem;
	background-color: #f3f5f7;
}

.col-form .radio {
	display: flex;
	align-items: center;
	margin: 0 2rem 0 0;
}
.col-form .radio input[type=radio] {
  display: none;
}
.col-form .radio input[type=radio] + .radio-label:before {
  content: "";
  background: #fff;
  border-radius: 100%;
  border: 1px solid #b4b4b4;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  position: relative;
  top: 0;
  margin-right: 0.5rem;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.col-form .radio input[type=radio]:checked + .radio-label:before {
  background-color: #005caa;
  box-shadow: inset 0 0 0 0.4rem #fff;
}
.col-form .radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: #005caa;
}
.col-form .radio input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 0.4rem #fff;
  border-color: #b4b4b4;
  background: #b4b4b4;
}
.col-form .radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

.col-form td small {
  display: block;
  font-size: 1.2rem;
  margin-top: 1rem;
  line-height: 2rem;
}


/* ----------------------------------------
.errorMessage
---------------------------------------- */
.err{
	display: block;
	visibility: inherit;
	color: #e60012;
	font-size: 1.6rem;
	padding-left: 2.5rem;
	position: relative;
	line-height: 2rem;
	margin: 0 0 1rem 0;}

.err:before{
	content: '!';
	display: inline-block;
	background-color: #e60012;
	width: 2rem;
	height: 2rem;
	border-radius: 10px;
	font-size: 1.6rem;
	font-weight: normal;
	text-align: center;
	color: #fff;
	position: absolute;
	left: 0;
	top: 0;
	}	
.policy-err{
  width: 73rem;
  margin: 0 auto 2rem;
}


.errorMessage{
	background-color: #FFF8F8;
	padding: 2rem;
	color: #e60012;
	margin:0 0 4rem 0;
	border-radius: 3px;
}
.errorMessage p{
 font-size: 1.8rem;
 font-weight: bold;
 padding-left: 3rem;
 position: relative;
}

.errorMessage p::before{
content: '!';
display: inline-block;
background-color: #e60012;
width: 2rem;
height: 2rem;
border-radius: 1rem;
font-size: 1.6rem;
line-height: 1;
font-weight: normal;
text-align: center;
color: #fff;
position: absolute;
left: 0;
top: 3px;
}	

.errorMessage ul{
	list-style: disc;
	font-size: 1.6rem;
	margin-top: 1.5rem;
	padding-left: 5rem;}
.errorMessage ul li:not(:last-child) {
    margin-bottom: 1.5rem;
}

.errorMessage ul li font,
.err font{
	font-size: 1.6rem !important;
  color: #e60012 !important;
}


/* ----------------------------------------
.policy-wrap
---------------------------------------- */
.policy-wrap{
	margin: 0 0 6rem 0;
}

.policy-wrap h3{
  font-size: 2.1rem;
  color: #000;
  font-weight: bold;
  background-color: #e9ecee;
  padding: 1.5rem;
  margin:0 0 2rem 0;
}

p.categoTxt{
	font-size: 1.6rem;
	font-weight: bold;
  line-height: 1.75;
	margin: 0 0 2rem 0;
}

/*
#accordionBtn {display: none;}
.sp.accordionBtn {display: none;}
*/

.accordionBox{margin: 0 0 6rem 0;}

.scrl {
    overflow: auto;
    height: 20rem;
    padding: 0 2rem 2rem 2rem;
    border: 1px solid #e7ebee;
}

.scrl h4 {
	margin-top: 3rem;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 2;}
.scrl p {
	font-size: 1.4rem;
	line-height: 2;}
.scrl ol {
	font-size: 1.4rem;
	list-style: decimal;
	padding-left: 3rem;}
.scrl li {
	line-height: 2;}
.scrl > *:last-child {
	margin-bottom: 3rem;}

.scrl a{
  color: #0068b7;
	text-decoration: underline;
}

.scrl a:hover{
	text-decoration: none;
}

ol.cookie-txt{
	padding-left: 0;}

ol.cookie-txt li{
	margin-left: 1.5rem;
}
ol.cookie-txt li ul{
	padding-left: 0;}

ol.cookie-txt li ul li{
	list-style-type: none;
	padding-top: 2rem;
	margin-bottom: 1rem;
	margin-left: 0;
}
ol.cookie-txt li ul li p{
	font-size: 1.4rem;
	margin-left: 0;
	padding-top: 1rem;}

.privacyCheck{
 width: 73rem;
 height: 8rem;
 color: #e60012;
 font-size: 1.6rem;
 display: flex;
 justify-content: center;
 align-items: center;
 margin: 0 auto 5.5rem;
 box-sizing: border-box;
 border: 1px solid #e60012;
 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
 cursor: pointer;
 transition: background 0.12s;
}
.privacyCheck.hover{ background-color: #fef1f2;}
.privacyCheck input[type="checkbox"]{ display: none;}
.privacyCheck .checkBox{
 display: inline-block;
 width: 1.5rem;
 height: 1.5rem;
 border: 1px solid #d0d5da;
 margin-right: 1.5rem;
 position: relative;
 top: 0;
 background-color: #fff;
}
.privacyCheck .checkBox::after{
 content: '';
 display: inline-block;
 position: absolute;
 width: 1.1rem;
 height: 0.7rem;
 border-left: 2px solid #e60012;
 border-bottom: 2px solid #e60012;
 transform: rotate(-45deg);
 top: 0;
 left: 0.1rem;
 opacity: 0;
 transition: opacity 0.12s;
}
.privacyCheck input[type="checkbox"]:checked + .checkBox::after{ opacity: 1;}



.noticeCheck{
 font-size: 1.6rem;
 display: flex;
 align-items: center;
 cursor: pointer;
 transition: background 0.12s;
}
.noticeCheck.hover{}
.noticeCheck input[type="checkbox"]{ display: none;}
.noticeCheck .checkBox{
 display: inline-block;
 width: 1.5rem;
 height: 1.5rem;
 border: 1px solid #d0d5da;
 margin-right: 1.5rem;
 position: relative;
 top: 0;
 background-color: #fff;
}
.noticeCheck .checkBox::after{
 content: '';
 display: inline-block;
 position: absolute;
 width: 1.1rem;
 height: 0.7rem;
 border-left: 2px solid #e60012;
 border-bottom: 2px solid #e60012;
 transform: rotate(-45deg);
 top: 0;
 left: 0.1rem;
 opacity: 0;
 transition: opacity 0.12s;
}
.noticeCheck input[type="checkbox"]:checked + .checkBox::after{ opacity: 1;}


/* ----------------------------------------
.btn-confirm
---------------------------------------- */
.btn-confirm {
  width: 30rem;
  margin: 4rem auto 0;
}
.btn-confirm button {
  position: relative;
  width: 100%;
  display: grid;
  place-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 30%);
  min-height: 7rem;
  padding: 1.5rem 4rem;
  background-color: var(--color-main);
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  transition: box-shadow 0.12s, background-color 0.12s;
}
.btn-confirm button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3rem;
  width: 0.8rem;
  aspect-ratio: 1;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.btn-confirm button.hover {
  box-shadow: none;
  background-color: #137bca;
}

/* ----------------------------------------
.btn-correction
---------------------------------------- */
.btn-correction{
  text-align: center;
  margin: 6rem 0 0 0;
}

.btn-correction button {
	cursor: pointer;
	position: relative;
	width: 20rem;
	min-height: 5rem;
	padding: 1rem;
	color: #0068b7;
	font-size: 1.6rem;
  font-weight: bold;
	background-color: #eff4f7;
  border-radius: calc(infinity * 1px);
	transition: background 0.15s, color 0.15s;
}

.btn-correction button.hover {
  color: #fff;
  background-color: #0068b7;
}

