@charset "utf-8";
/* ============================================================
   CONTACT PAGE ── contact/contact.html
   カンプ: CONTACTpage.png に忠実
   ============================================================ */

/* ── CONTACT FORM ── 背景: #fff */
.contact-form {
	padding: 100px 80px;
	background: #fff;
}
.contact-form__body {
	max-width: 640px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.contact-form__group {
	margin-bottom: 28px;
}
.contact-form__label {
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #2B1D14;
	margin-bottom: 8px;
}
.contact-form__required {
	display: inline-block;
	background: #A45A22;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 2px 10px;
	border-radius: 3px;
	margin-left: 8px;
	vertical-align: middle;
}
.contact-form__input,
.contact-form__select,
.contact-form__textarea {
	width: 100%;
	border: 1px solid #d4c5b0;
	border-radius: 6px;
	padding: 16px 18px;
	font-size: 16px;
	background: #faf8f5;
	transition: border-color 0.3s, box-shadow 0.3s;
	font-family: 'Noto Sans JP', sans-serif;
}
.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
	outline: none;
	border-color: #A45A22;
	box-shadow: 0 0 0 3px rgba(164, 90, 34, 0.12);
}
.contact-form__select {
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A45A22' stroke-width='2' fill='none'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
}
.contact-form__textarea {
	min-height: 200px;
	resize: vertical;
}
.contact-form__submit {
	display: block;
	width: 100%;
	max-width: 360px;
	margin: 48px auto 0;
	background: #BD6767;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 20px;
	font-weight: 700;
	padding: 18px;
	border-radius: 16px;
	letter-spacing: 2px;
	transition: background 0.3s, transform 0.2s;
	border: none;
}
.contact-form__submit:hover {
	background: #F8A5A5;
	transform: translateY(-2px);
}

/* ── FAQ ── 背景: #F2EADB
   カンプ: カードなし、Q/Aがシンプルに並ぶ
   ============================================================ */
.contact-faq {
	padding: 100px 80px;
	background: #F2EADB;
}
.contact-faq__list {
	max-width: 800px;
	margin: 0 auto;
}
.contact-faq__item {
	padding: 24px 0;
	border-bottom: 1px solid #d4c5b0;
}
.contact-faq__item:last-child {
	border-bottom: none;
}
/* Q: 太字・大きめ */
.contact-faq__q {
	font-size: 24px;
	font-weight: 700;
	color: #2B1D14;
	display: flex;
	gap: 8px;
	align-items: baseline;
	margin-bottom: 8px;
}
.contact-faq__q-icon {
	flex-shrink: 0;
	font-family: 'Inter', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #2B1D14;
}
/* A: 小さめ・グレー */
.contact-faq__a {
	font-size: 16px;
	color: #666;
	line-height: 1.8;
	display: flex;
	gap: 8px;
	align-items: baseline;
	padding-left: 0;
}
.contact-faq__a-icon {
	flex-shrink: 0;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #666;
}

/* ── COMPANY TABLE ── 背景: #fff
   カンプ: 装飾ライン付き
   ============================================================ */
.contact-company {
	padding: 100px 80px;
	background: #fff;
}
.contact-company__table {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	border-collapse: collapse;
}
.contact-company__table th {
	background: #F2EADB;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 20px;
	padding: 18px 24px;
	text-align: left;
	width: 25%;
	border: 1px solid #d4c5b0;
	white-space: nowrap;
}
.contact-company__table td {
	padding: 18px 24px;
	font-size: 20px;
	border: 1px solid #d4c5b0;
	background: #fff;
	color: #2B1D14;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media screen and (max-width: 768px) {
	.contact-form,
	.contact-faq,
	.contact-company {
		padding: 50px 20px;
	}
	.contact-form__label { font-size: 16px; }
	.contact-form__input,
	.contact-form__select,
	.contact-form__textarea { font-size: 16px; }
	.contact-faq__q { font-size: 18px; }
	.contact-faq__a { font-size: 14px; }
	.contact-company__table th,
	.contact-company__table td {
		font-size: 14px;
		padding: 12px;
	}
	.contact-company__table th { width: 30%; }
}
