@charset "utf-8";

/* ---------------------------------------- 
 - contents（contact）
---------------------------------------- */
#contact #contact__inner {
	width:94%;
	max-width: 1000px;
	padding: 75px 0;
	margin: 0 auto;
}
#contact a {
	text-decoration: underline;
}
#contact a:hover {
	text-decoration: none;
}

#contact .contact__notice{
	max-width: 850px;
	margin: 0 auto 35px;
}
#contact .contact__notice .txt {
	padding:0 0 2.0em;
}
#contact .contact__notice .required {
	color: #c21008;
}
#contact .contact__form{
	max-width: 850px;
	margin: 0 auto 35px;
}
#contact .contact__form input[type=checkbox] { /* checkbox */
    margin-right: 12px;
    position: relative;
    display: inline-block;
    cursor: pointer;
	padding-left: 22px;
}
#contact .contact__form input[type=checkbox]::before {   /* checkbox */
	display: block;
    width: 18px;
    height: 18px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    box-sizing: border-box;
	border: 1px solid #999;
	margin-top: -2px;
}
#contact .contact__form input[type=checkbox]:checked::after { /* checkbox */
	display: block;
    width: 10px;
    height: 7px;
    content: "";
    position: absolute;
    top: 0;
    left: 4px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(-45deg);
    margin-top: 2px;
}
#contact .contact__form input[type=radio] { /* radio */
    margin-right: 12px;
    position: relative;
    display: inline-block;
    cursor: pointer;
	padding-left: 22px;
}
#contact .contact__form input[type=radio]::before { /* radio */
	display: block;
    width: 18px;
    height: 18px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    box-sizing: border-box;
	border: 1px solid #999;
	border-radius: 50%;
	margin-top: -2px;
}
#contact .contact__form input[type=radio]:checked::after { /* radio */
	display: block;
	width: 10px;
    height: 10px;
	content: "";
    position: absolute;
    top:0;
	left: 0;
	border-radius: 50%;
	background: #000;
	margin-top: 2px;
	margin-left: 4px;
}
#contact .contact__form table td input[type="text"] {
	width:100%;
	max-width:500px;
}
#contact .contact__form table {
	width:100%;
	table-layout: fixed;
}
#contact .contact__form table th {
	width:25%;
	border-bottom:dashed 1px #a6a6a6;
	padding:30px 20px 30px 0;
	box-sizing:border-box;
	vertical-align: top;
	position: relative;
	text-align: left;
}
#contact .contact__form table th .required {
	display: inline-block;
	color: #c21008;
	position: absolute;
    right: 0;
    top: 30px;
}
#contact .contact__form table th .example {
	font-size:1.2rem;
}
#contact .contact__form table th .notice {
	font-size:1.2rem;
}
#contact .contact__form table th .notice li {
	text-indent: -1.0em;
	margin-left:1.0em;
}
#contact .contact__form table td {
	width:75%;
	border-bottom:dashed 1px #a6a6a6;
	padding:30px 15px;
	box-sizing:border-box;
}
#contact .contact__form table td select { /* select */
	border:solid 1px #999;
	padding:5px;
	box-sizing:border-box;
	cursor: pointer;
}
#contact .contact__form table td input { /* input */
	border:solid 1px #999;
	padding:5px;
	box-sizing:border-box;
}
#contact .contact__form table td textarea { /* textarea */
	border:solid 1px #999;
	padding:7px;
	box-sizing:border-box;
	width:100%;
	height:150px;
}
#contact .contact__form table td ul.radio { /* radio */
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
}
#contact .contact__form table td ul.radio li { /* radio */
	margin-right: 1.0em;
}
#contact .contact__form table td .inputset .txt {
	display:inline-block;
}
#contact .contact__form table td ul.notice {
	padding:10px 0 0;
}
#contact .contact__form table td ul.notice li {
	text-indent:-1.0em;
	margin-left:1.0em;
	font-size:1.2rem;
}
#contact .contact__form table td .example {
	padding:0.7em 0 0;
	font-size:1.2rem;
}
#contact .contact__form table td.name input { /* お名前 */
	width:200px;
}
#contact .contact__form table td.tel input { /* 電話番号 */
	width:150px;
}
#contact .contact__form table td.mail input { /* メールアドレス */
	width:245px;
}
#contact .contact__submit {
	text-align:center;
}
#contact .contact__submit a {
	text-decoration: underline;
}
#contact .contact__submit a:hover {
	text-decoration: none;
}
#contact .contact__submit .privacy {
	font-size:1.8rem;
	font-weight:bold;
	margin-bottom: 1.0em;
}
#contact .contact__submit .txt {
	margin-bottom: 2.0em;
}
#contact .contact__submit ul.btn-list {
	display: -webkit-flex;
	display: flex;
	justify-content: center;
}
#contact .contact__submit ul.btn-list li {
	margin:0 15px;
	width:300px;
}
#contact .contact__submit ul.btn-list li button {
	width:100%;
	height: 55px;
	line-height: 53px;
	border:solid 2px #000;
	font-size: 1.6rem;
	font-weight: bold;
	display: block;
	text-align: center;
	padding: 0 3%;
	border-radius: 55px;
	box-sizing: border-box;
	text-decoration: none;
	transition: .5s;
	cursor: pointer;
}
#contact .contact__submit ul.btn-list li button.conf {    
	background:#9efcb0;
	width:100%;
}
#contact .contact__submit ul.btn-list li button.reset {
	background:#fff;
	color:#000;
}
#contact .contact__submit ul.btn-list li button:hover {
	background: #fff;
	color:#000;
	border-style: dashed;
}
@media screen and (max-width: 768px) {
	#contact #contact__inner {
		padding: 35px 0;
	}
	#contact .contact__notice{
		margin-bottom: 15px;
	}
	#contact .contact__form{
		margin-bottom: 20px;
	}
	#contact .contact__form table th {
		display: block;		
		width:100%;
		padding:0;
		border: none;
	}
	#contact .contact__form table th .required {
		position:static;
		margin-left: 5px;
	}
	#contact .contact__form table td {
		display: block;		
		width:100%;
		padding:10px 0 20px;
		margin-bottom: 20px;
	}
	#contact .contact__form table td input,
	#contact .contact__form table td select,
	#contact .contact__form table td textarea{ /* input,select,textarea */
		font-size:1.6rem;
	}
	#contact .contact__form table td ul.radio { /* radio */
		display: block;
	}
	#contact .contact__form table td ul.radio li { /* radio */
		margin-bottom: 0.5em;
	}
	#contact .contact__form table td .inputset .txt {
		margin-bottom: 1.0em;
		width: 100%;
	}
	#contact .contact__form table td .inputset .txt:last-child {
		margin-bottom: 0;
	}
	#contact .contact__form table td.name input { /* お名前 */
		width: 60%;
	}
	#contact .contact__form table td.tel input { /* 電話番号 */
		width:28%;
	}
	#contact .contact__form table td.mail input { /* メールアドレス */
		width:38%;
	}
	#contact .contact__form table td.mail input:nth-child(1),
	#contact .contact__form table td.mail input:nth-child(4){ /* メールアドレス */
		width:55%;
	}
	#contact .contact__submit .privacy {
		font-size:1.7rem;
	}	
	#contact .contact__submit ul.btn-list li {
		width: 48%;
		margin: 0 1%;
	}
	#contact .contact__submit ul.btn-list li button {
		height: 45px;
		line-height: 43px;
		font-size: 1.4rem;
		padding: 0 2%;
		border-radius: 45px;
	}	
}

/* ---------------------------------------- 
 - contents（thanks）
---------------------------------------- */
#contact .contact__thanks {
	text-align:center;
}
#contact .contact__thanks .lead {
	font-size:2.2rem;
	font-weight:bold;
	padding:0 0 1.0em;
}
#contact .contact__thanks .txt {
	font-size:1.5rem;    
	padding: 0 0 2em;
}
#contact .contact__thanks .txt:last-child {
	padding-bottom: 0;
}
#contact .contact__thanks .required {
    color: #c21008;
}
#contact .contact__btn {
	width:300px;
	margin: 55px auto 0;
	text-align: center;
}
#contact .contact__btn a {
	width:100%;
	height: 55px;
	line-height: 53px;
	border:solid 2px #000;
	font-size: 1.6rem;
	font-weight: bold;
	display: block;
	text-align: center;
	padding: 0 3%;
	border-radius: 55px;
	box-sizing: border-box;
	text-decoration: none;
	transition: .5s;
	cursor: pointer;
	background:#9efcb0;
}
#contact .contact__btn a:hover {
	background: #fff;
	color:#000;
	border-style: dashed;
}
@media screen and (max-width: 768px) {
	#contact .contact__thanks .lead {
		font-size:1.7rem;
	}
	#contact .contact__thanks .txt {
		font-size:1.4rem;
		text-align: left;
	}
	#contact .contact__btn {
		width:60%;
		max-width: 300px;
		margin-top: 35px;
	}
	#contact .contact__btn a {
		height: 45px;
		line-height: 43px;
		font-size: 1.4rem;
		padding: 0 2%;
		border-radius: 45px;
	}
}