@charset "utf-8";

/* -------------------------------------- */
/* from部品------------------------------- */
/* -------------------------------------- */

input,
textarea,
select {
	border: 1px solid #aaaaaa;
	background-color: #ffffff;
}

select {
	appearance: auto;
}

/* -------------------------------------- */
/* 背景画像------------------------------- */
/* -------------------------------------- */

.access-img {
	background-image: url(../images/access/bg-main.jpg);
}

/* -------------------------------------- */
/* 地図(google map)----------------------- */
/* -------------------------------------- */

.map {
	margin-top: 75px;
}

.map iframe {
	display: block;
	width: 100%;
	height: 320px;
	margin-top: 25px;
}

/* -------------------------------------- */
/* お問い合わせフォーム---------------------- */
/* -------------------------------------- */

.contact {
	margin-top: 75px;
}

.form-area {
	background-color: #f8f8f8;
	border: 1px solid #aaa;
	margin-top: 25px;
	padding: 45px 30px;
}

/* 入力項目 */
.form-area dl {
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
}

.form-area dl:last-child {
	margin-bottom: 0;
}

/* 入力項目名 */
.form-area dt {
	width: 200px;
	font-size: 15px;
	font-weight: bold;
	padding-top: 4px;
}

/* 入力項目名（必須項目） */
.form-area dt .required::after {
	content: "必須";
	font-size: 11px;
	color: #eb4f32;
	margin-left: 10px;
}

.form-area dd {
	width: calc(100% - 200px);
}

/* データ入力エリア */

/* お名前、メールアドレス、お電話番号 */
.form-area input[type="text"],
.form-area input[type="email"],
.form-area input[type="tel"] {
	width: 100%;
	max-width: 280px;
	height: 40px;
	padding: 0 10px;
}

/* お問い合わせ種別 */
.form-area select {
	width: 200px;
	height: 40px;
	padding-left: 10px;
}

/* お客様について */
.radio-button {
	display: block;
	margin-top: 20px;
}

.radio-button:first-child {
	margin-top: 5px;
}

.radio-button input {
	margin-right: 8px;
}

/* 問い合わせ入力 */
.message {
	width: 100%;
	height: 260px;
	padding: 10px;
	line-height: 1.5;
}

/* submit */
.confirm-text {
	font-size: 14px;
	line-height: 22px;
	margin-top: 30px;
}

form .button-yellow {
	margin-top: 20px;
}

/* -------------------------------------- */
/* お問い合わせフォーム---------------------- */
/* -------------------------------------- */

#access footer {
	margin-top: 100px;
}

/* -------------------------------------- */
/* mobile端末用　CSS---------------------- */
/* -------------------------------------- */

@media (max-width: 800px) {

	/* 最大幅の変更 */
	.map,
	.contact {
		max-width: 500px;
		margin-top: 45px;
	}

	/* 入力項目名、入力エリアを縦並びに */
	.form-area dl {
		display: block;
	}

	/* 入力エリアの幅を拡大 */
	.form-area dd {
		width: 100%;
	}

	.form-area dl:last-child dd {
		width: 100%;
	}

	/* 項目名の下に余白を設定 */
	.form-area dt {
		padding-bottom: 15px;
		line-height: 1.0;
	}

	.radio-button {
		margin-left: 10px;
	}

	form .button-yellow {
		width: 100%;
		color: #000;
	}

}