@charset "UTF-8";
/* CSS Document */


/******************************************************

PC設定 1200px以上の場合に適用

*******************************************************/

.contact {
	background: #f7f8fa;
	}

.contact__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 48px;
	}


/* form */
.form {
	background: #FFF;
	padding: 44px;
	border: 1px solid #e5e7eb;
	}

.form__row {
	display: grid;
	gap: 8px;
	margin-bottom: 22px;
	}

.form__row--two {
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	}

.form__row--two .form__field {
	display: grid;
	gap: 8px;
	}

.form__label {
	font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 13.5px;
	color: #1a2a5e;
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	}

.form__req {
	background: #f5cd1a;
	color: #1a2a5e;
	font-family: "Oswald", sans-serif;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 6px;
	letter-spacing: 0.1em;
	}

.form__opt {
	background: #e5e7eb;
	color: #6b7280;
	font-size: 10px;
	font-weight: 600;
	padding: 2px 6px;
	letter-spacing: 0.05em;
	}

.form__input,
.form__textarea {
	width: 100%;
	height: 48px;
	padding: 0 14px;
	border: 1.5px solid #e5e7eb;
	background: #FFF;
	font-family: inherit;
	font-size: 15px;
	color: #15171c;
	transition: border-color 0.15s;
	border-radius: 0;
	}

.form__textarea {
	height: auto;
	padding: 12px 14px;
	resize: vertical;
	min-height: 140px;
	line-height: 1.7;
	}

.form__input:focus,
.form__textarea:focus {
	outline: none;
	border-color: #1a2a5e;
	}

.form__radios {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	}

.form__radio {
	flex: 1;
	min-width: 100px;
	border: 1.5px solid #e5e7eb;
	padding: 12px 14px;
	text-align: center;
	font-size: 13.5px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.15s;
	background: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	}

.form__radio input {
	display: none;
	}

.form__radio:has(input:checked) {
	border-color: #1a2a5e;
	background: #1a2a5e;
	color: #FFF;
	}

.form__check {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 14px 16px;
	background: #f7f8fa;
	font-size: 13.5px;
	line-height: 1.7;
	cursor: pointer;
	margin-top: 8px;
	}

.form__check input {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: #1a2a5e;
	flex-shrink: 0;
	}

.form__check a {
	color: #1a2a5e;
	text-decoration: underline;
	}

.form__check-mark {
	color: #d33b3b;
	margin-left: 4px;
	}

.form__submit {
	display: block;
	width: 100%;
	height: 60px;
	margin-top: 24px;
	background: #f5cd1a;
	color: #1a2a5e;
	font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
	font-weight: 900;
	font-size: 17px;
	letter-spacing: 0.08em;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 0 #e6b800;
	transition: transform 0.12s, background 0.15s;
	}

.form__submit:hover {
	background: #fdd732;
	}

.form__submit:active {
	transform: translateY(2px);
	box-shadow: 0 2px 0 #e6b800;
	}


/* contact side */
.contact__side {
	display: flex;
	flex-direction: column;
	gap: 24px;
	}

.contact__card {
	background: #1a2a5e;
	color: #FFF;
	padding: 28px;
	}

.contact__card--ghost {
	background: transparent;
	border: 1px solid #e5e7eb;
	color: #15171c;
	}

.contact__card-label {
	font-family: "Oswald", sans-serif;
	font-size: 12px;
	letter-spacing: 0.2em;
	color: #f5cd1a;
	margin-bottom: 14px;
	}

.contact__card--ghost .contact__card-label {
	color: #e6b800;
	}

.contact__card-phone {
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	font-size: 32px;
	letter-spacing: 0.04em;
	color: #FFF;
	display: block;
	margin-bottom: 6px;
	}

.contact__card-hours {
	font-size: 12.5px;
	color: rgba(255,255,255,0.7);
	letter-spacing: 0.04em;
	margin: 0;
	}

.contact__card-divider {
	height: 1px;
	background: rgba(255,255,255,0.15);
	margin: 22px 0;
	}

.contact__card-note {
	font-size: 13px;
	line-height: 1.85;
	color: rgba(255,255,255,0.85);
	margin: 0;
	}

.contact__card--ghost .contact__card-note {
	color: #3a3f4b;
	}

.contact__card-future {
	font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 10px;
	color: #1a2a5e;
	}



/******************************************************

タブレット 768〜1199px

*******************************************************/

@media screen and (max-width: 1199px) {

.contact__grid {
	grid-template-columns: 1fr;
	gap: 32px;
	}

}



/******************************************************

スマホ 〜767px

*******************************************************/

@media screen and (max-width: 767px) {

.form {
	padding: 24px 18px;
	}

.form__row--two {
	grid-template-columns: 1fr;
	gap: 22px;
	}

.contact__card {
	padding: 20px;
	}

.contact__card-phone {
	font-size: 26px;
	}

}



/******************************************************

エラーメッセージ表示

*******************************************************/

.form__errors {
	margin-bottom: 24px;
	padding: 16px 20px;
	background: #fff5f5;
	border: 1.5px solid #d33b3b;
	color: #d33b3b;
	}

.form__errors-title {
	font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 8px;
	color: #d33b3b;
	}

.form__errors ul {
	margin: 0;
	padding-left: 20px;
	}

.form__errors li {
	font-size: 13px;
	line-height: 1.7;
	list-style: disc;
	color: #d33b3b;
	}



/******************************************************

送信完了 (Thank You) ページ

*******************************************************/

.sent {
	background: #f7f8fa;
	}

.sent__wrapper {
	text-align: center;
	}

.sent__check {
	width: 88px;
	height: 88px;
	margin: 0 auto 28px;
	border-radius: 50%;
	background: #f5cd1a;
	color: #1a2a5e;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 44px;
	font-weight: 900;
	box-shadow: 0 6px 0 #e6b800;
	}

.sent__h2 {
	font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
	font-weight: 900;
	font-size: 32px;
	color: #1a2a5e;
	letter-spacing: 0.04em;
	margin-bottom: 24px;
	}

.sent__txt {
	font-size: 16px;
	line-height: 2;
	color: #3a3f4b;
	margin-bottom: 28px;
	}

.sent__txt strong {
	color: #1a2a5e;
	font-weight: 700;
	}

.sent__note {
	font-size: 13px;
	line-height: 1.9;
	color: #6b7280;
	padding: 16px 20px;
	background: #FFF;
	border-left: 3px solid #f5cd1a;
	text-align: left;
	margin-bottom: 40px;
	}

.sent__contact {
	margin-bottom: 40px;
	}

.sent__contact-card {
	background: #1a2a5e;
	color: #FFF;
	padding: 28px;
	max-width: 480px;
	margin: 0 auto;
	}

.sent__contact-label {
	font-family: "Oswald", sans-serif;
	font-size: 12px;
	letter-spacing: 0.2em;
	color: #f5cd1a;
	margin-bottom: 14px;
	}

.sent__contact-phone {
	display: block;
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	font-size: 32px;
	letter-spacing: 0.04em;
	color: #FFF;
	text-decoration: none;
	margin-bottom: 6px;
	}

.sent__contact-hours {
	font-size: 12.5px;
	color: rgba(255,255,255,0.7);
	letter-spacing: 0.04em;
	margin: 0;
	}

.sent__actions {
	display: flex;
	justify-content: center;
	}

.sent__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	padding: 0 36px;
	background: #1a2a5e;
	color: #FFF;
	font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.06em;
	text-decoration: none;
	transition: .2s;
	}

.sent__btn:hover {
	background: #121f47;
	color: #f5cd1a;
	}

@media screen and (max-width: 767px) {
	.sent__check {
		width: 72px;
		height: 72px;
		font-size: 36px;
		}
	.sent__h2 {
		font-size: 24px;
		}
	.sent__txt {
		font-size: 14px;
		}
	.sent__contact-phone {
		font-size: 26px;
		}
}
