@charset "UTF-8";
/* font-family: 'EB Garamond', serif; */ 
/*
style.css
　　　　・全ページ共通
　　　　・topページのスタイル
contact.css
　　　　・コンタクトページのスタイル
*/

.page_contact{
	padding: 10rem 0;
}
.contact_read{
	line-height: 2;
}

@media (max-width:768px){
	.page_contact{
		padding: 6rem 0 8.6rem;
	}
	.contact_read{
		line-height: 1.7;
	}
}/*max-width:768px*/

/*お問い合せ・ご注文*/
.contact-tel{
	max-width: 400px;
	margin: 3rem auto 4.5rem;
	border: 1px solid #000;
	padding: 2.1rem 0 2rem;
	text-align: center;
}
.contact-tel h3{
	font-size: 1.6rem;
	font-weight: normal;
	margin-bottom: 2rem;
}
.contact-tel .tel{
	font-size: 2.4rem;
	margin-bottom: 1.5rem;
}
.contact-tel .tel a {
	color: #3f3f3f;
	font-weight: bold;
}
.contact-tel .time{
	font-size: 1.4rem;
}
@media (max-width:768px){
	.contact-tel{
		margin-top: 4.5rem;
		padding: 1.5rem 0;
	}
	.contact-tel h3{
		font-size: 1.4rem;
		margin-bottom: 1.5rem;
	}
	.contact-tel .tel{
		font-size: 1.2rem;
	}
	.tel a{
		font-size: 2.4rem;
	}
}/*max-width:768px*/

/*必須マーク*/
.mandatory {
	color: #fff;
	background: #fd5460;
	font-size: 1.2rem;
	padding: .1rem .3rem;
}
/*フォーム内容*/
form{
	margin-top: 2.2rem;
}
form dt{
	background: #e1e1e1;
	padding: 1.1rem 1.5rem 1.2rem;
	margin-bottom: 1.6rem;
}
form .mandatory{
	margin-left: 1rem;
}
form dd{
	padding: 0 1.5rem;
	margin-bottom: 1.6rem;
}
input::placeholder, textarea::placeholder{
	color: #e1e1e1;
}
/*フォームのデフォルトスタイルをリセット*/
input,
button,
textarea,
select{
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
	outline: none;
}
/*１行テキスト*/
.textbox{
	border: 1px solid #e1e1e1;
	width: 100%;
	padding: 1.6rem 2rem;
	border-radius: 5px;
}
/*ラジオボタン*/
.radio{
	width: 16px;
	height: 16px;
	border: 1px solid #e1e1e1;
	border-radius: 50%;
	vertical-align: sub;
/*	ラジオボタンの縦位置をテキストに揃える*/
}
.radio:checked{
	background: #e1e1e1;
	box-shadow: 0 0 0 2px #fff,0 0 0 3px #e1e1e1;
}
.radio_area{
	padding: 2.2rem 0 1.4rem;
}
.radio_area label{
	margin-right: 3rem;
}
.radio_area span{
	color: #fd5460;
	font-size: 1.4rem;
	margin-left: .5rem;
}
@media (max-width:768px){
	.radio_area label{
		margin-right: 7rem;
		display: inline-block;
		margin-bottom: 1.6rem;
	}
}/*max-width:768px*/

/*複数行テキスト*/
.textarea{
	border: 	1px solid#e1e1e1;
	width: 100%;
	border-radius: 5px;
	padding: 1.6rem 1.5rem;
	min-height: 160px;
	margin-bottom: 2rem;
}
.text_area p{
	color: #fd5460;
}
/*チェックボックス*/
input[type=checkbox]{
	display: none;
}
.checkbox{
	width: auto;
	position: relative;
	padding: 3px 30px;
	display: inline-block;
	cursor: pointer;
	box-sizing: border-box;
}
.checkbox::before{
	background: #fff;
	border: 1px solid #e1e1e1;
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	position: absolute;
	top: 50%;
	transform:  translateY(-50%);
	left: 5px;
}
.checkbox::after{
	border-right: 3px solid #e1e1e1;
	border-bottom: 3px solid #e1e1e1;
	content: "";
	display: block;
	width: 5px;
	height: 9px;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	margin-top: -6px;
	left: 11px;
	opacity: 0;
}
input[type=checkbox]:checked + .checkbox::after{
	opacity: 1;
}
.notes{
	font-size: 1.2rem;
	margin-left: .5rem;
}
@media (max-width:768px){
	.checkbox{
		display: inline-block;
		margin-bottom: 1rem;
	}
}/*max-width:768px*/

.select{
	display: inline-block;
/*	見た目がインライン要素の横に並ぶが、幅や上下のマージンがブロック要素と同じに指定できる*/
	max-width: 90px;
	width: 100%;
	border: 1px solid #e1e1e1;
	padding: 1.5rem;
	border-radius: 5px;
/*
	text-align: center;
	margin-left: 2rem;
*/
}
.select.day{
	margin-left: 2rem;
}
@media (max-width:768px){
	.select{
		max-width: 80px;
		padding: 1rem 1.5rem;
	}
	.select_area .notes{
		display: block;
		margin-top: 1rem;
	}
}/*max-width:768px*/

.submit{
	display: block;
	background: #000;
	color: #fff;
	max-width: 360px;
	width: 100%;
	line-height: 60px;
	height: 60px;
	margin: 6.4rem auto 0;
}
@media (max-width:768px){
	.submit{
		margin-top: .4rem;
	}
}/*max-width:768px*/

footer{
	padding-top: 2rem;
}
