@charset 'UTF-8';
/*==========================================================================

   mixin

===========================================================================*/
/*--------------------------------------------------------------------------
   overwrite
---------------------------------------------------------------------------*/
/* comment
-----------------------------------------------------------------*/
body {
	overflow: hidden;
}

/*--------------------------------------------------------------------------
   common
---------------------------------------------------------------------------*/
/* sec-wall
-----------------------------------------------------------------*/
.sec-wall {
	padding: 100px 0 78px;
	background: url(../../img/form/bg_wall.jpg) repeat-x 50% 0;
}

@media only screen and (max-width: 767px) {
	.sec-wall {
		padding: 30px 0 50px;
		background-image: url(../../img/form/bg_wall_top_sp.jpg), url(../../img/form/bg_wall_repeat_sp.jpg);
		background-repeat: no-repeat, repeat-y;
		background-position: 50% 0, 50% 0;
		background-size: 100% auto, 100% auto;
	}
}

/* sec-contetns
-----------------------------------------------------------------*/
.sec-contetns {
	position: relative;
	margin-top: 40px;
	padding: 45px 80px 80px;
	box-shadow: 6px 0 30px rgba(0, 0, 0, .08);
	background: #fff;
}

@media only screen and (max-width: 767px) {
	.sec-contetns {
		margin-top: 28px;
		padding: 36px 25px;
	}
}

.sec-contetns::before {
	position: absolute;
	top: -12px;
	right: -20px;
	width: 266px;
	height: 274px;
	background: url(../../img/form/obj_ear.jpg) no-repeat;
	content: '';
}

@media only screen and (max-width: 767px) {
	.sec-contetns::before {
		top: -12px;
		right: -20px;
		width: 142px;
		height: 140px;
		background: url(../../img/form/obj_ear_sp.jpg) no-repeat;
		background-size: 142px 140px;
	}
}

@media only screen and (max-width: 767px) {
	.sec-contetns--complete::before {
		background: url(../../img/form/obj_ear_complete_sp.jpg) no-repeat;
		background-size: 142px 140px;
	}
}

/*--------------------------------------------------------------------------
   sec-header
---------------------------------------------------------------------------*/
.sec-header {
	text-align: center;
}

/*--------------------------------------------------------------------------
   sec-lead
---------------------------------------------------------------------------*/
.sec-lead {
	position: relative;
	z-index: 3;
	text-align: center;
}

.sec-lead__txt {
	font-weight: 500;
	line-height: 2.57;
}

@media only screen and (max-width: 767px) {
	.sec-lead__txt {
		line-height: 1.67;
	}
}

.sec-lead__txt .em {
	color: #d22921;
}

.sec-lead .flow {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	margin-top: 32px;

	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	        justify-content: center;
}

@media only screen and (max-width: 767px) {
	.sec-lead .flow {
		margin-top: 21px;
	}
}

.sec-lead .flow__item {
	position: relative;
	margin: 0 28px;
}

@media only screen and (max-width: 767px) {
	.sec-lead .flow__item {
		margin: 0 17px;
	}
}

.sec-lead .flow__item::before {
	position: absolute;
	top: 50%;
	right: -35px;
	width: 17px;
	height: 17px;
	background: url(../../img/form/arrow_black.png) no-repeat;
	content: '';
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
	.sec-lead .flow__item::before {
		right: -23px;
		width: 10px;
		height: 11px;
		background: url(../../img/form/arrow_black_sp.png) no-repeat;
		background-size: 10px 11px;
	}
}

.sec-lead .flow__item:last-child::before {
	content: none;
}

.sec-lead .flow__item--on::before {
	background: url(../../img/form/arrow_red.png) no-repeat;
}

@media only screen and (max-width: 767px) {
	.sec-lead .flow__item--on::before {
		background: url(../../img/form/arrow_red_sp.png) no-repeat;
		background-size: 10px 11px;
	}
}

@media only screen and (max-width: 374px) {
	.sec-lead .flow__item img {
		width: 60px;
		height: auto;
	}
}

/*==========================================================================

   mixin

===========================================================================*/
/*--------------------------------------------------------------------------
   form
---------------------------------------------------------------------------*/
input,
button,
select,
textarea {
	border-radius: 0;
	-webkit-appearance: none;

	    -ms-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}

form input,
form textarea {
	border: 0;
}

.ipt-radio,
.ipt-checkbox {
	position: absolute;
	opacity: 0;
}

.ipt-radio:focus + label:before,
.ipt-checkbox:focus + label:before {
	outline: -webkit-focus-ring-color auto 5px;
}

.form-input .ipt-txt {
	box-sizing: border-box;
	width: 100%;
	padding: 14px 15px;
	background: #e8eaeb;
	font-size: 15px;
}

.form-input .ipt-txt:disabled {
	background: #e6e6e6;
	color: #999;
}

.form-input .ipt-txtarea {
	box-sizing: border-box;
	width: 100%;
	padding: 12px 15px;
	background: #e8eaeb;
	font-size: 15px;
	line-height: 1.73;
}

.form-input.error .ipt-err {
	background: #ffe4e4;
}

/* placeholder */
/* 標準版(http://caniuse.com/#search=placeholder-shown) */
:placeholder-shown {
	color: rgba(152, 152, 152, .9);
}

/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
	color: rgba(152, 152, 152, .9);
}

/* Firefox 19+ */
::-moz-placeholder {
	color: rgba(152, 152, 152, .9);
	opacity: 1;
}

/* IE 10+ */
:-ms-input-placeholder {
	color: rgba(152, 152, 152, .9);
}

/* width */
.form-input .ipt-w100 {
	width: 100px;
}

.form-input .ipt-w190 {
	width: 190px;
}

.form-input .ipt-w490 {
	width: 490px;
	margin-left: 10px;
}

/* radio */
.form-input .radio {
	display: inline-block;
	box-sizing: border-box;
	position: relative;
	padding-top: 5px;
	padding-left: 32px;
	border-radius: 50%;
	vertical-align: middle;
	line-height: 1;
	cursor: pointer;
}

.form-input .radio:nth-of-type(n+2) {
	margin-left: 28px;
}

.form-input .radio:before {
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 20px;
	height: 20px;
	margin-top: -7px;
	border: 2px solid #b6b6b6;
	border-radius: 50%;
	background: #fff;
	content: '';
}

.form-input .radio:after {
	display: block;
	position: absolute;
	top: 50%;
	left: 5px;
	width: 10px;
	height: 10px;
	margin-top: -2px;
	border-radius: 50%;
	background-color: #da2b23;
	content: '';
	opacity: 0;
}

.ipt-radio:checked + .radio:after {
	opacity: 1;
}

/* checkbox */
.form-input .checkbox {
	display: inline-block;
	box-sizing: border-box;
	position: relative;
	padding-left: 32px;
	vertical-align: middle;
	cursor: pointer;
}

.form-input .checkbox:before {
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 18px;
	height: 18px;
	margin-top: -7px;
	border: 2px solid #bbb;
	background: #fff;
	content: '';
}

.form-input .checkbox:after {
	display: block;
	position: absolute;
	top: 50%;
	left: 4px;
	width: 10px;
	height: 10px;
	margin-top: -3px;
	background-color: #da2b23;
	content: '';
	opacity: 0;
}

.ipt-checkbox:checked + .checkbox:after {
	opacity: 1;
}

/* media query -> sp
=================================================================*/
@media only screen and (max-width: 767px) {
	.form-input .ipt-txt {
		padding: 12px 10px;
		background: #f2f2f2;
		font-size: 12px;
	}
	.form-input .ipt-txt--sm {
		padding: 12px 5px;
		font-size: 10px;
	}
	.form-input .ipt-txtarea {
		width: 100%;
		padding: 12px 10px;
		background: #f2f2f2;
		font-size: 12px;
	}
	.form-input .ipt-w100,
	.form-input .ipt-w190,
	.form-input .ipt-w490 {
		width: auto;
		margin-left: 0;
	}
	.form-input .ipt-sw40 {
		width: 35%;
	}
	.form-input .ipt-sw30 {
		width: 28%;
	}
	.form-input .ipt-sw75 {
		width: 75%;
	}
	/* radio */
	.form-input .radio {
		padding-top: 2px;
		padding-left: 26px;
	}
	.form-input .radio:nth-of-type(n+2) {
		margin-left: 14px;
	}
	.form-input .radio:before {
		width: 19px;
		height: 19px;
		border: 1px solid #b6b6b6;
	}
	.form-input .radio:after {
		width: 9px;
		height: 9px;
	}
	/* checkbox */
	.form-input .checkbox {
		padding-left: 26px;
	}
	.form-input .checkbox:before {
		border: 1px solid #bbb;
	}
	.form-input .checkbox:after {
		margin-top: -3px;
	}
}

@media only screen and (max-width: 374px) {
	.form-input .ipt-sw30 {
		width: 26%;
	}
	.form-input .ipt-sw75 {
		display: block;
		width: 100%;
		margin-top: 16px;
	}
}

/*--------------------------------------------------------------------------
   sec-input
---------------------------------------------------------------------------*/
.sec-input {
	margin-top: 40px;
}

@media only screen and (max-width: 767px) {
	.sec-input {
		margin-top: 30px;
	}
}

.sec-input__hdg {
	padding: 18px 0;
	background: #000;
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-weight: normal;
	line-height: 1;
	letter-spacing: .2em;
}

@media only screen and (max-width: 767px) {
	.sec-input__hdg {
		padding: 14px 0;
		font-size: 13px;
	}
}

/*--------------------------------------------------------------------------
   .sec-input .form-input
---------------------------------------------------------------------------*/
.sec-input .form-input {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	width: 100%;
	margin: 10px 0 15px;

	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
	.sec-input .form-input {
		display: block;
	}
}

.sec-input .form-input__hdg {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	position: relative;
	width: 270px;
	padding: 30px 0;
	border-bottom: 1px solid rgba(203, 203, 203, .5);

	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	        align-items: center;
}

@media only screen and (max-width: 767px) {
	.sec-input .form-input__hdg {
		display: block;
		width: auto;
		padding: 20px 0 0;
		border-bottom: 0;
		font-weight: 500;
	}
}

.sec-input .form-input__hdg--top {
	display: block;
}

.sec-input .form-input__hdg .sm {
	font-size: 12px;
}

@media only screen and (max-width: 767px) {
	.sec-input .form-input__hdg .sm {
		font-size: 11px;
	}
}

.sec-input .form-input__hdg .sm--block {
	display: block;
}

@media only screen and (max-width: 767px) {
	.sec-input .form-input__hdg .sm--block {
		display: inline-block;
	}
}

.sec-input .form-input__hdg .required {
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 40px;
	margin-top: -11px;
	padding: 2px 12px;
	background: #da2b23;
	color: #fff;
	font-size: 12px;
}

@media only screen and (max-width: 767px) {
	.sec-input .form-input__hdg .required {
		right: 0;
		margin-top: -1px;
		padding: 1px 10px;
		font-size: 10px;
	}
}

.sec-input .form-input__item {
	width: calc(100% - 270px);
	padding: 30px 0;
	border-bottom: 1px solid rgba(203, 203, 203, .5);
}

@media only screen and (max-width: 767px) {
	.sec-input .form-input__item {
		width: auto;
		padding: 10px 0 20px;
	}
}

.sec-input .form-input__item .item {
	display: inline-block;
}

.sec-input .form-input__item .item + .item {
	margin-left: 18px;
}

.sec-input .form-input__item .txt-example {
	display: block;
	margin-top: 2px;
	color: #989898;
	font-size: 13px;
}

.sec-input .form-input__item .hyphen {
	padding: 0 14px;
}

@media only screen and (max-width: 767px) {
	.sec-input .form-input__item .hyphen {
		padding: 0 8px;
	}
}

.sec-input .form-input__item .radio-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	padding: 11px 0 16px;

	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
	.sec-input .form-input__item .radio-list {
		margin-bottom: -15px;
		padding: 3px 0 6px;
	}
}

.sec-input .form-input__item .radio-list li {
	margin: 0 36px 1px 0;
	line-height: 1;
}

@media only screen and (max-width: 767px) {
	.sec-input .form-input__item .radio-list li {
		width: 50%;
		margin: 0 0 15px;
	}
}

.sec-input .form-input__item .check-list {
	padding: 11px 0 16px;
}

.sec-input .form-input__item .check-list li {
	display: inline-block;
	width: 220px;
	margin: 0 0 20px 0;
	line-height: 1;
}

.sec-input .form-input__item .check-list li:last-child {
	width: 100%;
	margin-bottom: -20px;
}

.sec-input .form-input--mid .form-input__hdg:last-of-type {
	border: 0;
}

.sec-input .form-input--mid .form-input__item:last-of-type {
	border: 0;
}

.sec-input .form-input__error {
	display: block;
	margin-bottom: 6px;
	color: #da2b23;
}

/*--------------------------------------------------------------------------
   .sec-input .form-btn
---------------------------------------------------------------------------*/
.sec-input .form-btn {
	text-align: center;
}

.sec-input .form-btn__cb {
	margin-top: 52px;
	font-size: 16px;
}

.sec-input .form-btn__btn {
	position: relative;
	width: 440px;
	margin: 45px auto 0;
	font-size: 20px;
	cursor: pointer;
}

.sec-input .form-btn__btn:before {
	position: absolute;
	top: 50%;
	right: 26px;
	width: 29px;
	height: 6px;
	margin-top: -5px;
	background: url(../../img/form/ico_arrow.png) no-repeat;
	content: '';
}

.sec-input .form-btn__btn input {
	width: 100%;
	padding: 30px 0;
	background-color: #000;
	color: #fff;
	-webkit-transition: .3s;
	        transition: .3s;
}

.sec-input .form-btn__btn input:hover {
	background-color: #c13834;
}

.sec-input .form-btn__back {
	position: relative;
	width: 300px;
	margin-right: 30px;
	font-size: 16px;
	cursor: pointer;
}

.sec-input .form-btn__back:before {
	position: absolute;
	top: 50%;
	left: 26px;
	width: 29px;
	height: 6px;
	margin-top: -5px;
	background: url(../../img/form/ico_arrow_back.png) no-repeat;
	content: '';
	-webkit-transition: .3s;
	        transition: .3s;
}

.sec-input .form-btn__back input {
	width: 100%;
	padding: 27px 0;
	border: 2px solid #000;
	background-color: #fff;
	-webkit-transition: .3s;
	        transition: .3s;
}

.sec-input .form-btn__back input:hover {
	background-color: #000;
	color: #fff;
}

.sec-input .form-btn__back:hover:before {
	background: url(../../img/form/ico_arrow_back_white.png) no-repeat;
}

.sec-input .form-btn--confirm {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	margin-top: 60px;
	        flex-direction: row-reverse;

	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: row-reverse;
	    -ms-flex-direction: row-reverse;
}

.sec-input .form-btn--confirm .form-btn__btn {
	margin: 0;
}

.sec-input .form-btn--confirm .form-btn__btn input {
	padding: 25px 0;
}

.form-btn .checkbox {
	display: inline-block;
	box-sizing: border-box;
	position: relative;
	padding-left: 48px;
	vertical-align: middle;
	cursor: pointer;
}

.form-btn .checkbox:before {
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	border: 2px solid #222;
	background: #fff;
	content: '';
}

.form-btn .checkbox:after {
	display: block;
	position: absolute;
	top: 50%;
	left: -1px;
	width: 41px;
	height: 35px;
	margin-top: -24px;
	background: url(../../img/form/ico_check.png) no-repeat;
	content: '';
	opacity: 0;
}

.ipt-checkbox:checked + .checkbox:after {
	opacity: 1;
}

/* media query -> sp
=================================================================*/
@media only screen and (max-width: 767px) {
	.sec-input .form-btn__cb {
		margin-top: 34px;
		font-size: 13px;
		font-weight: 500;
	}
	.sec-input .form-btn__btn {
		width: 100%;
		margin: 32px auto 0;
		font-size: 15px;
	}
	.sec-input .form-btn__btn:before {
		right: 18px;
		width: 21px;
		height: 5px;
		margin-top: -4px;
		background: url(../../img/form/ico_arrow_sp.png) no-repeat;
		background-size: 21px 5px;
	}
	.sec-input .form-btn__btn input {
		padding: 23px 0;
		background-color: #c13834;
		-webkit-transition: none;
		        transition: none;
	}
	.sec-input .form-btn__back {
		width: auto;
		margin: 15px 0 0;
		font-size: 12px;
	}
	.sec-input .form-btn__back:before {
		left: 20px;
		width: 21px;
		height: 5px;
		margin-top: -3px;
		background: url(../../img/form/ico_arrow_back_sp.png) no-repeat;
		background-size: 21px 5px;
		-webkit-transition: none;
		        transition: none;
	}
	.sec-input .form-btn__back input {
		padding: 20px 0;
		border: 1px solid #000;
		-webkit-transition: none;
		        transition: none;
	}
	.sec-input .form-btn--confirm {
		display: block;
		margin-top: 30px;
	}
	.sec-input .form-btn--confirm .form-btn__btn input {
		padding: 23px 0;
	}
	.form-btn .checkbox {
		padding-left: 33px;
	}
	.form-btn .checkbox:before {
		width: 20px;
		height: 20px;
		margin-top: -10px;
	}
	.form-btn .checkbox:after {
		width: 27px;
		height: 24px;
		margin-top: -17px;
		background: url(../../img/form/ico_check_sp.png) no-repeat;
		background-size: 27px 24px;
	}
}

/*--------------------------------------------------------------------------
   sec-privacy
---------------------------------------------------------------------------*/
.sec-privacy {
	margin-top: 60px;
}

@media only screen and (max-width: 767px) {
	.sec-privacy {
		margin-top: 35px;
	}
}

.sec-privacy__hdg {
	text-align: center;
	font-size: 24px;
	font-weight: 600;
}

@media only screen and (max-width: 767px) {
	.sec-privacy__hdg {
		font-size: 14px;
	}
}

.sec-privacy__lead {
	margin-top: 20px;
	text-align: center;
}

@media only screen and (max-width: 767px) {
	.sec-privacy__lead {
		margin-top: 10px;
	}
}

.sec-privacy__contents {
	overflow: auto;
	height: 270px;
	margin-top: 35px;
	padding: 30px 70px 30px 38px;
	border: 1px solid #e5e5e5;
}

.sec-privacy__contents::-webkit-scrollbar {
	width: 5px;
}

.sec-privacy__contents::-webkit-scrollbar-track {
	background-color: #f1f1f1;
}

.sec-privacy__contents::-webkit-scrollbar-thumb {
	background-color: #da2b23;
}

@media only screen and (max-width: 767px) {
	.sec-privacy__contents {
		height: 200px;
		margin-top: 22px;
		padding: 19px 18px;
	}
	.sec-privacy__contents::-webkit-scrollbar {
		width: 3px;
	}
}

/* privacy
-----------------------------------------------------------------*/
.sec-privacy .privacy__hdg {
	font-size: 16px;
}

@media only screen and (max-width: 767px) {
	.sec-privacy .privacy__hdg {
		font-size: 13px;
	}
}

.sec-privacy .privacy__lead {
	margin-top: 20px;
}

@media only screen and (max-width: 767px) {
	.sec-privacy .privacy__lead {
		margin-top: 10px;
	}
}

.sec-privacy .privacy__item {
	margin-top: 15px;
}

@media only screen and (max-width: 767px) {
	.sec-privacy .privacy__item {
		margin-top: 10px;
	}
}

/* inquiry
-----------------------------------------------------------------*/
.sec-privacy .inquiry {
	margin-top: 20px;
}

@media only screen and (max-width: 767px) {
	.sec-privacy .inquiry {
		margin-top: 15px;
	}
}

/*--------------------------------------------------------------------------
   sec-complete
---------------------------------------------------------------------------*/
.sec-complete {
	position: relative;
	z-index: 3;
	padding-top: 20px;
	text-align: center;
}

@media only screen and (max-width: 767px) {
	.sec-complete {
		padding-top: 10px;
	}
}

.sec-complete__hdg {
	margin-bottom: 30px;
	font-size: 40px;
	font-weight: 800;
}

@media only screen and (max-width: 767px) {
	.sec-complete__hdg {
		margin-bottom: 20px;
		font-size: 20px;
	}
}

.sec-complete__txt {
	margin-top: 20px;
	font-size: 16px;
	font-weight: 500;
	line-height: 2.25;
}

@media only screen and (max-width: 767px) {
	.sec-complete__txt {
		text-align: left;
		font-size: 12px;
		line-height: 1.67;
	}
}

.sec-complete__btn {
	position: relative;
	width: 440px;
	margin: 50px auto 0;
	font-size: 20px;
}

@media only screen and (max-width: 767px) {
	.sec-complete__btn {
		width: auto;
		margin: 35px auto 0;
		font-size: 15px;
	}
}

.sec-complete__btn:before {
	position: absolute;
	top: 50%;
	right: 26px;
	width: 29px;
	height: 6px;
	margin-top: -5px;
	background: url(../../img/form/ico_arrow.png) no-repeat;
	content: '';
}

@media only screen and (max-width: 767px) {
	.sec-complete__btn:before {
		right: 18px;
		width: 21px;
		height: 5px;
		margin-top: -4px;
		background: url(../../img/form/ico_arrow_sp.png) no-repeat;
		background-size: 21px 5px;
	}
}

.sec-complete__btn a {
	display: block;
	width: 100%;
	padding: 30px 0;
	background-color: #000;
	color: #fff;
	-webkit-transition: .3s;
	        transition: .3s;
}

@media only screen and (max-width: 767px) {
	.sec-complete__btn a {
		padding: 23px 0;
		background-color: #c13834;
		-webkit-transition: none;
		        transition: none;
	}
}

.sec-complete__btn a:hover {
	background-color: #c13834;
}

/* inquiry
-----------------------------------------------------------------*/
.sec-complete .inquiry {
	margin-top: 40px;
	padding: 12px;
	background: url(../../img/form/bg_stripe.png) repeat 0 0;
}

@media only screen and (max-width: 767px) {
	.sec-complete .inquiry {
		margin-top: 25px;
		padding: 6px;
		background: url(../../img/form/bg_stripe.png) repeat 0 0;
		background-size: 6px auto;
	}
}

.sec-complete .inquiry__inner {
	padding: 35px 0;
	background: #fff;
}

@media only screen and (max-width: 767px) {
	.sec-complete .inquiry__inner {
		padding: 27px 0;
	}
}

.sec-complete .inquiry__hdg {
	position: relative;
	margin-bottom: 35px;
	font-size: 20px;
}

@media only screen and (max-width: 767px) {
	.sec-complete .inquiry__hdg {
		margin-bottom: 30px;
		font-size: 15px;
	}
}

.sec-complete .inquiry__hdg::before {
	position: absolute;
	bottom: -10px;
	left: calc(50% - 13px);
	width: 25px;
	height: 2px;
	background-color: #000;
	content: '';
}

@media only screen and (max-width: 767px) {
	.sec-complete .inquiry__hdg::before {
		bottom: -12px;
		left: calc(50% - 9px);
		width: 18px;
		height: 1px;
	}
}

.sec-complete .inquiry__mail {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;

	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	        align-items: center;
}

.sec-complete .inquiry__mail .ico {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	width: 60px;
	height: 60px;
	margin-right: 18px;
	border-radius: 50%;
	background-color: #000;
	line-height: 1;

	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	        align-items: center;
}

@media only screen and (max-width: 767px) {
	.sec-complete .inquiry__mail .ico {
		width: 33px;
		height: 33px;
		margin-right: 10px;
	}
}

@media only screen and (max-width: 374px) {
	.sec-complete .inquiry__mail .ico {
		width: 28px;
		height: 28px;
		margin-right: 5px;
	}
}

.sec-complete .inquiry__mail .address {
	font-size: 20px;
	font-weight: 600;
	-webkit-transition: .3s;
	        transition: .3s;
}

@media only screen and (max-width: 767px) {
	.sec-complete .inquiry__mail .address {
		font-size: 11px;
		-webkit-transition: none;
		        transition: none;
	}
}

.sec-complete .inquiry a:hover .inquiry__mail {
	color: #c13834;
}

.sec-complete .inquiry__charge {
	margin-top: 25px;
	font-weight: 500;
}

@media only screen and (max-width: 767px) {
	.sec-complete .inquiry__charge {
		margin-top: 16px;
		font-size: 10px;
		line-height: 2;
	}
}
