@charset "UTF-8";
/*-----------------------------------

	headline

-----------------------------------*/
#headline {
	background-image: url(../img/contact/headline_bg.jpg);
}
#headline h1::after {
	content: "CONTACT";
}
/*-----------------------------------

	common

-----------------------------------*/
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /*background: transparent;*/
  background: #F5F5F5;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus{
  -webkit-box-shadow: 0 0 0 1000px #F5F5F5 inset;
  -webkit-text-fill-color: #232323;
}

textarea {
  resize: vertical;
}
input[type='checkbox'],
input[type='radio'] {
  display: none;
}
input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}
.error {
	color: #D81616;
  font-size: 1.4rem;
  margin-top: 5px;
  display: block;
  margin-top: 10px;
}
.alert {
  color: #D81616;
  font-size: 1.6rem;
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
/*-----------------------------------

	contact_block

-----------------------------------*/
#contact_block {
	padding-bottom: 100px;
}
#contact_block h2 {
	font: 700 3.7rem/1 var(--fJa);
	text-align: center;
	margin-bottom: 20px;
}
#contact_block h2::before {
	content: "Contact";
	font: 700 1.5rem/1 var(--fEn);
	color: var(--mClr1);
	display: block;
	margin-bottom: 10px;
}
#contact_block h3 {
	font: 700 2.8rem/1 var(--fJa);
	color: var(--mClr1);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-bottom: 100px;
}
#contact_block h3::before, #contact_block h3::after {
	content: "";
	width: 30px;
	height: 2px;
	background: var(--mClr1);
	display: block;
}
@media screen and (max-width: 640px) {
	#contact_block {
		padding-bottom: 50px;
	}
	#contact_block h2 {
		font-size: 2.5rem;
		margin-bottom: 15px;
	}
	#contact_block h2::before {
		font-size: 1.3rem;
		margin-bottom: 5px;
	}
	#contact_block h3 {
		font-size: 1.8rem;
		gap: 5px;
		margin-bottom: 50px;
	}
	#contact_block h3::before, #contact_block h3::after {
		width: 20px;
	}
}
/*-- step --*/
#contact_block ul.step {
	width: 560px;
	margin: 0 auto 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 160px;
	position: relative;
	z-index: 0;
}
#contact_block ul.step::before,
#contact_block ul.step::after {
	content: "";
	height: 1px;
	position: absolute;
	top: 40px;
	left: 0;
	z-index: 1;
}
#contact_block ul.step::before {
	width: 100%;
	background: var(--mClr3);
}
#contact_block ul.step::after {
	background: var(--mClr1);
}
#contact_block.form ul.step::after {
	width: 160px;
}
#contact_block.confirm ul.step::after {
	width: 400px;
}
#contact_block.complete ul.step::after {
	width: 100%;
}
#contact_block ul.step li {
	width: 80px;
	text-align: center;
}
#contact_block ul.step li .no {
	width: 100%;
	height: 80px;
	border-radius: 50%;
	border: 1px solid var(--mClr3);
	background: #FFF;
	color: var(--mClr3);
	display: grid;
	place-content: center;
	position: relative;
	z-index: 2;
	margin-bottom: 10px;
	font: 700 3rem/1 var(--fEn);
}
#contact_block ul.step li .no span {
	font-size: 1.5rem;
}
#contact_block.form ul.step li:nth-child(1) .no,
#contact_block.confirm ul.step li:nth-child(-n+2) .no,
#contact_block.complete ul.step li:nth-child(-n+3) .no {
	border: 1px solid var(--mClr1);
	color: var(--mClr1);
}
#contact_block ul.step li .txt {
	font: 700 1.6rem/1 var(--fJa);
	color: var(--mClr3);
}
#contact_block.form ul.step li:nth-child(1) .txt,
#contact_block.confirm ul.step li:nth-child(-n+2) .txt,
#contact_block.complete ul.step li:nth-child(-n+3) .txt {
	color: var(--mClr1);
}
@media screen and (max-width: 640px) {
	#contact_block ul.step {
		width: 300px;
		gap: 0 60px;
		margin: 0 auto 40px;
	}
	#contact_block ul.step::before,
	#contact_block ul.step::after {
		top: 30px;
	}
	#contact_block.form ul.step::after {
		width: 90px;
	}
	#contact_block.confirm ul.step::after {
		width: 210px;
	}
	#contact_block ul.step li {
		width: 60px;
	}
	#contact_block ul.step li .no {
		height: 60px;
		margin-bottom: 5px;
		font-size: 2rem;
	}
	#contact_block ul.step li .no span {
		font-size: 1.3rem;
	}
	#contact_block ul.step li .txt {
		font-size: 1.4rem;
	}
}
/*-- read/copy --*/
#contact_block .copy {
	font: 600 2.4rem/1.4 var(--fJa);
	text-align: center;
	margin-bottom: 20px;
}
#contact_block p.read {
	line-height: 2.53;
	white-space: pre-line;
	text-align: center;
	margin-bottom: 80px;
}
@media screen and (max-width: 640px) {
	#contact_block .copy {
		font-size: 2rem;
		margin-bottom: 10px;
	}
	#contact_block p.read {
		margin-bottom: 40px;
	}
}
/*-- form --*/
#contact_block table {
	width: min(875px,100%);
	margin: 0 auto 80px;
}
#contact_block table th {
	width: 280px;
	text-align: left;
	padding: 30px 0 0;
	font: 600 1.6rem/20px var(--fJa);
	vertical-align: top;
}
#contact_block table th .required {
	display: inline-block;
	background: #D81616;
	color: #FFF;
	font-size: 1.3rem;
	letter-spacing: 0.05em;
	padding: 5px 12px;
	border-radius: 2px;
	margin-left: 15px;
	text-box: trim-both cap alphabetic;
}
#contact_block table th .note {
	font-size: 1.1rem;
}
#contact_block table td {
	width: calc(100% - 280px);
	padding: 15px 0;
}
#contact_block.confirm table td {
	padding: 30px 0;
	line-height: 2;
	color: #7D797D;
}
#contact_block table td > *:not(.error) {
	width: 100%;
	font: 600 1.6rem/1.4 var(--fJa);
	background: #F5F5F5;
	border-radius: 10px;
	padding: 15px;
}
#contact_block table td textarea {
	height: 240px;
}
#contact_block table td > *::placeholder {
   color: #7D797D;
}
#contact_block .recaptha {
	width: max-content;
	margin: 0 auto 80px;
}

/*-- form_wrap / form_note --*/
#contact_block .form_wrap {
	max-width: 100%;
	box-sizing: border-box;
}
#contact_block .form_note {
	width: min(875px, 100%);
	margin: 4em auto 0;
	box-sizing: border-box;
}
#contact_block .form_note p {
	margin: 0 0 10px;
	padding-left: 1.2em;
	position: relative;
	line-height: 1.5;
	font-size: 0.9em;
}
#contact_block .form_note p a{
	display: inline-block;
	text-decoration: underline;
}
#contact_block .form_note p::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--mClr1, #231815);
}
#contact_block .form_note p:last-child {
	margin-bottom: 0;
}

#contact_block .btnArea {
	display: flex;
	justify-content: center;
	gap: 15px;
}
#contact_block .btnArea .btn {
	width: 207px;
	background: #231815;
	color: #FFF;
	padding: 15px 15px 15px 0;
	text-align: center;
	border-radius: 6px;
	font: 700 1.5rem/1 var(--fJa);
	position: relative;
}
#contact_block .btnArea .btn::after {
	content: "";
	width: 16px;
	height: 7px;
	background: url(../img/contact/arrow_wh.svg) no-repeat center/contain;
	position: absolute;
	top: calc(50% - 3.5px);
	right: 25px;
}
#contact_block .btnArea .btn.btn-back {
	padding: 15px 0 15px 15px;
	background: var(--mClr4);
	color: var(--mClr1);
}
#contact_block .btnArea .btn.btn-back::after {
	background: url(../img/contact/arrow_gr.svg) no-repeat center/contain;
	right: auto;
	left: 25px;
}
@media screen and (max-width: 840px) {
	#contact_block table th {
		display: block;
		width: 100%;
		padding: 30px 0 0;
	}
	#contact_block table td {
		display: block;
		width: 100%;
		padding: 15px 0;
	}
	#contact_block.confirm table td {
		padding: 15px 0;
	}
}
@media screen and (max-width: 640px) {
	#contact_block table {
		margin: 0 auto 40px;
	}
	#contact_block .recaptha {
		margin: 0 auto 40px;
	}
	#contact_block .btnArea {
		flex-direction: column;
		align-items: center;
	}
}