@charset "utf-8";

/* お問い合わせページ専用スタイル */

.contact-page {
	padding: 80px 0 100px;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #eceff1 100%);
	min-height: calc(100vh - 200px);
}

.page-header {
	text-align: center;
	margin-bottom: 60px;
}

.page-title {
	font-size: 56px;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 15px;
	letter-spacing: 4px;
	position: relative;
	display: inline-block;
}

.page-title::after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 4px;
	background: linear-gradient(90deg, transparent, #2c3e50, #34495e, transparent);
	border-radius: 2px;
}

.page-subtitle {
	font-size: 24px;
	color: #666666;
	font-weight: 400;
	letter-spacing: 1px;
	margin-top: 25px;
}

/* お問い合わせ導入文 */
.contact-intro {
	max-width: 900px;
	margin: 0 auto 80px;
	text-align: center;
	padding: 40px 30px;
	background: #ffffff;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(44, 62, 80, 0.08);
}

.contact-intro-text {
	font-size: 18px;
	line-height: 2;
	color: #444444;
	margin: 0;
}

/* セクション見出し */
.section-heading {
	font-size: 32px;
	font-weight: 700;
	color: #2c3e50;
	text-align: center;
	margin-bottom: 50px;
	letter-spacing: 2px;
}

/* お問い合わせ方法セクション */
.contact-methods-section {
	max-width: 1000px;
	margin: 0 auto 100px;
}

.contact-methods-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.contact-method-card {
	background: #ffffff;
	padding: 50px 40px;
	border-radius: 20px;
	text-align: center;
	border: 2px solid rgba(44, 62, 80, 0.1);
	box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
	transition: all 0.3s ease;
	text-decoration: none;
	display: block;
	color: inherit;
}

.contact-method-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(44, 62, 80, 0.2);
	border-color: #2c3e50;
}

.method-icon {
	font-size: 60px;
	margin-bottom: 25px;
}

.method-label {
	font-size: 20px;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 15px;
	letter-spacing: 0.5px;
}

.method-detail {
	font-size: 24px;
	font-weight: 700;
	color: #34495e;
	margin-bottom: 15px;
	letter-spacing: 1px;
}

.method-note {
	font-size: 15px;
	color: #666666;
	margin-top: 10px;
}

/* お問い合わせフォームセクション */
.contact-form-section {
	max-width: 900px;
	margin: 0 auto 100px;
}

.contact-form {
	background: #ffffff;
	padding: 60px 50px;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(44, 62, 80, 0.12);
	border: 2px solid rgba(44, 62, 80, 0.08);
}

.form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 30px;
}

.form-group {
	margin-bottom: 30px;
}

.form-label {
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 10px;
	letter-spacing: 0.5px;
}

.required {
	color: #e74c3c;
	font-weight: 700;
}

.optional {
	color: #95a5a6;
	font-size: 14px;
	font-weight: 400;
}

.form-input,
.form-select,
.form-textarea {
	width: 100%;
	padding: 15px 20px;
	font-size: 16px;
	border: 2px solid #dce0e3;
	border-radius: 8px;
	background: #ffffff;
	color: #333333;
	font-family: inherit;
	transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	outline: none;
	border-color: #2c3e50;
	box-shadow: 0 0 0 4px rgba(44, 62, 80, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
	color: #bdc3c7;
}

.form-select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%232c3e50' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 20px center;
	background-size: 12px;
	padding-right: 50px;
}

.form-textarea {
	resize: vertical;
	min-height: 180px;
	line-height: 1.8;
}

/* reCAPTCHA */
.form-recaptcha {
	margin: 40px 0;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.g-recaptcha {
	transform: scale(1);
	transform-origin: center;
}

.recaptcha-note {
	font-size: 14px;
	color: #666666;
	margin: 0;
	text-align: center;
}

/* 送信ボタン */
.form-submit {
	text-align: center;
	margin-top: 40px;
}

.submit-button {
	display: inline-block;
	padding: 18px 80px;
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	background: linear-gradient(135deg, #2c3e50, #34495e);
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.submit-button:hover {
	background: linear-gradient(135deg, #34495e, #2c3e50);
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(44, 62, 80, 0.4);
}

.submit-button:active {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
}

/* 会社情報セクション */
.contact-info-section {
	max-width: 900px;
	margin: 0 auto;
}

.company-info-card {
	background: #ffffff;
	padding: 50px 45px;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(44, 62, 80, 0.12);
	border: 2px solid rgba(44, 62, 80, 0.08);
}

.info-row {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 30px;
	padding: 25px 0;
	border-bottom: 1px solid #ecf0f1;
}

.info-row:last-child {
	border-bottom: none;
}

.info-label {
	font-size: 15px;
	font-weight: 700;
	color: #2c3e50;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.info-value {
	font-size: 17px;
	color: #333333;
	line-height: 1.8;
	font-weight: 500;
}

/* レスポンシブ */
@media (max-width: 992px) {
	.contact-methods-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

@media (max-width: 768px) {
	.contact-page {
		padding: 60px 0 80px;
	}

	.page-title {
		font-size: 40px;
	}

	.page-subtitle {
		font-size: 20px;
	}

	.contact-intro {
		padding: 30px 20px;
		margin-bottom: 60px;
	}

	.contact-intro-text {
		font-size: 16px;
	}

	.section-heading {
		font-size: 28px;
		margin-bottom: 35px;
	}

	.contact-method-card {
		padding: 40px 30px;
	}

	.method-icon {
		font-size: 50px;
	}

	.method-label {
		font-size: 18px;
	}

	.method-detail {
		font-size: 20px;
	}

	.contact-form {
		padding: 40px 25px;
	}

	.form-label {
		font-size: 15px;
	}

	.form-input,
	.form-select,
	.form-textarea {
		padding: 12px 15px;
		font-size: 15px;
	}

	.form-recaptcha {
		padding: 15px;
	}

	.g-recaptcha {
		transform: scale(0.85);
		transform-origin: center;
	}

	.recaptcha-note {
		font-size: 13px;
	}

	.submit-button {
		padding: 15px 60px;
		font-size: 16px;
		width: 100%;
	}

	.company-info-card {
		padding: 35px 25px;
	}

	.info-row {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 20px 0;
	}

	.info-label {
		font-size: 14px;
	}

	.info-value {
		font-size: 16px;
	}
}
