/* ============================================================
   COMMON CONTACT（TOP内）
   source: common-contact.css
============================================================ */

/* ============================================
   FLAGSHIP
   COMMON CONTACT
   common-contact.css 完全版
============================================ */


/* ============================================
   セクション全体
============================================ */

.fs-contact {
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: none;
	margin: 0;
	margin-left: -50vw;
	padding: 86px 24px 96px;
	overflow: hidden;
	color: #222222;
	background-color: #fbf3f3;
}

.fs-contact,
.fs-contact *,
.fs-contact *::before,
.fs-contact *::after {
	box-sizing: border-box;
}


/* ============================================
   インナー
============================================ */

.fs-contact__inner {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0;
}


/* ============================================
   セクション見出し
============================================ */

.fs-contact__header {
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
}

.fs-contact__en {
	margin: 0;
	padding: 0;
	color: #ff0000;
	font-family: "Bebas Neue", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.18em;
}

.fs-contact__title {
	margin: 24px 0 0;
	padding: 0;
	color: #222222;
	font-size: clamp(32px, 2.7vw, 48px);
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0.04em;
}

.fs-contact__title-line {
	display: block;
	width: 28px;
	height: 2px;
	margin: 26px auto 0;
	background-color: #ff0000;
}


/* ============================================
   導入文
============================================ */

.fs-contact__description {
	margin: 32px auto 0;
	padding: 0;
	text-align: center;
}

.fs-contact__description p {
	margin: 0;
	padding: 0;
	color: #333333;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.95;
	letter-spacing: 0.015em;
}

.fs-contact__description p + p {
	margin-top: 1px;
}


/* ============================================
   フォーム白カード
============================================ */

.fs-contact__form-card {
	width: 100%;
	max-width: 820px;
	margin: 48px auto 0;
	padding: 64px 74px 58px;
	background-color: #ffffff;
	box-shadow:
		0 4px 20px rgba(0, 0, 0, 0.055);
}


/* ============================================
   Contact Form 7
============================================ */

.fs-contact .wpcf7 {
	width: 100%;
	margin: 0;
	padding: 0;
}

.fs-contact .wpcf7-form {
	width: 100%;
	margin: 0;
	padding: 0;
}

.fs-contact .wpcf7-form p {
	margin: 0;
}


/* ============================================
   各入力項目
============================================ */

.fs-contact-form__field {
	width: 100%;
	margin: 0 0 27px;
	padding: 0;
}

.fs-contact-form__label {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 0 9px;
	padding: 0;
}

.fs-contact-form__label-text {
	color: #222222;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
}


/* ============================================
   必須
============================================ */

.fs-contact-form__required {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 19px;
	margin-left: 10px;
	padding: 0 6px;
	border: 1px solid #ff0000;
	color: #ff0000;
	background-color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	vertical-align: middle;
}


/* ============================================
   任意
============================================ */

.fs-contact-form__optional {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 19px;
	margin-left: 10px;
	padding: 0 6px;
	border: 1px solid #999999;
	color: #ffffff;
	background-color: #999999;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	vertical-align: middle;
}


/* ============================================
   CF7 span
============================================ */

.fs-contact-form .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}


/* ============================================
   input / select / textarea 共通
============================================ */

.fs-contact-form__input,
.fs-contact-form__select,
.fs-contact-form__textarea {
	display: block;
	width: 100%;
	margin: 0;
	border: 1px solid #8d8d8d;
	border-radius: 0;
	outline: none;
	color: #222222;
	background-color: #ffffff;
	font-family:
		"Noto Sans CJK JP",
		"Noto Sans JP",
		"Yu Gothic",
		"YuGothic",
		"Hiragino Kaku Gothic ProN",
		"Meiryo",
		sans-serif;
	font-size: 14px;
	font-weight: 500;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
	appearance: none;
	-webkit-appearance: none;
}


/* ============================================
   input
============================================ */

.fs-contact-form__input {
	height: 48px;
	padding: 0 18px;
}


/* ============================================
   select
============================================ */

.fs-contact-form__select {
	height: 48px;
	padding: 0 48px 0 18px;
	background-image:
		linear-gradient(
			45deg,
			transparent 50%,
			#333333 50%
		),
		linear-gradient(
			135deg,
			#333333 50%,
			transparent 50%
		);
	background-position:
		calc(100% - 20px) 21px,
		calc(100% - 15px) 21px;
	background-size:
		5px 5px,
		5px 5px;
	background-repeat: no-repeat;
}


/* ============================================
   textarea
============================================ */

.fs-contact-form__textarea {
	min-height: 190px;
	padding: 14px 18px;
	line-height: 1.8;
	resize: vertical;
}


/* ============================================
   Placeholder
============================================ */

.fs-contact-form__input::placeholder,
.fs-contact-form__textarea::placeholder {
	color: #c8c8c8;
	opacity: 1;
}


/* ============================================
   フォーカス
============================================ */

.fs-contact-form__input:focus,
.fs-contact-form__select:focus,
.fs-contact-form__textarea:focus {
	border-color: #ff0000;
	box-shadow:
		0 0 0 1px rgba(255, 0, 0, 0.08);
}


/* ============================================
   個人情報保護方針リンク
============================================ */

.fs-contact .fs-contact-form__privacy-note {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 8px 0 26px;
	padding: 0;
	color: #333333;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.8;
	text-align: center !important;
}

.fs-contact .fs-contact-form__privacy-note p {
	display: block;
	width: 100%;
	margin: 0 !important;
	padding: 0;
	text-align: center !important;
}

.fs-contact-form__privacy-note a {
	color: #00047b;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: opacity 0.2s ease;
}

.fs-contact-form__privacy-note a:hover {
	opacity: 0.7;
}

.fs-contact-form__privacy-note a:focus-visible {
	outline: 2px solid #00047b;
	outline-offset: 3px;
}


/* ============================================
   送信ボタンエリア
============================================ */

.fs-contact-form__submit-area {
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
}


/* ============================================
   送信ボタン
============================================ */

.fs-contact-form__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 480px;
	min-height: 62px;
	margin: 0 auto;
	padding: 14px 30px;
	border: 0;
	border-radius: 999px;
	color: #ffffff;
	background-color: #ff0000;
	font-family:
		"Noto Sans CJK JP",
		"Noto Sans JP",
		"Yu Gothic",
		"YuGothic",
		sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	cursor: pointer;
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
	appearance: none;
	-webkit-appearance: none;
}

.fs-contact-form__submit:hover {
	opacity: 0.82;
}

.fs-contact-form__submit:active {
	transform: translateY(1px);
}


/* ============================================
   送信ボタン下
============================================ */

.fs-contact-form__submit-note {
	margin: 17px 0 0 !important;
	padding: 0;
	color: #333333;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.8;
	text-align: center;
}


/* ============================================
   Contact Form 7 エラー
============================================ */

.fs-contact .wpcf7-not-valid-tip {
	margin-top: 6px;
	color: #ff0000;
	font-size: 14px;
	font-weight: 500;
}

.fs-contact .wpcf7-response-output {
	margin:
		24px
		0
		0 !important;
	padding:
		12px
		16px !important;
	border-width: 1px !important;
	font-size: 14px;
	line-height: 1.7;
}

.fs-contact .wpcf7-spinner {
	display: block;
	margin:
		12px
		auto
		0;
}


/* ============================================
   900px以下
============================================ */

@media (max-width: 900px) {

	.fs-contact__form-card {
		max-width: 760px;
		padding:
			54px
			58px
			52px;
	}

}


/* ============================================
   スマートフォン
============================================ */

@media (max-width: 767px) {

	/* ========================================
	   セクション
	======================================== */

	.fs-contact {
		left: 50%;
		width: 100vw;
		max-width: none;
		margin:
			0
			0
			0
			-50vw;
		padding:
			58px
			14px
			72px;
		background-color: #fbf3f3;
	}

	.fs-contact__inner {
		width: 100%;
		max-width: none;
		margin: 0;
		padding: 0;
	}


	/* ========================================
	   見出し
	======================================== */

	.fs-contact__en {
		font-size: 15px;
		letter-spacing: 0.16em;
	}

	.fs-contact__title {
		max-width: 380px;
		margin:
			24px
			auto
			0;
		font-size: 30px;
		line-height: 1.5;
		letter-spacing: 0.025em;
	}

	.fs-contact__title-line {
		width: 26px;
		margin-top: 24px;
	}


	/* ========================================
	   導入文
	======================================== */

	.fs-contact__description {
		margin-top: 28px;
		text-align: left;
	}

	.fs-contact__description p {
		font-size: 17px;
		font-weight: 600;
		line-height: 1.9;
		letter-spacing: 0;
	}


	/* ========================================
	   フォームカード
	======================================== */

	.fs-contact__form-card {
		width: 100%;
		max-width: none;
		margin-top: 38px;
		padding:
			38px
			26px
			38px;
		box-shadow:
			0 3px 16px rgba(0, 0, 0, 0.05);
	}


	/* ========================================
	   各項目
	======================================== */

	.fs-contact-form__field {
		margin-bottom: 30px;
	}

	.fs-contact-form__label {
		gap: 10px;
		margin-bottom: 10px;
	}

	.fs-contact-form__label-text {
		font-size: 16px;
		line-height: 1.5;
	}

	.fs-contact-form__required,
	.fs-contact-form__optional {
		min-width: 42px;
		height: 21px;
		font-size: 14px;
	}


	/* ========================================
	   入力欄
	======================================== */

	.fs-contact-form__input,
	.fs-contact-form__select {
		height: 58px;
		font-size: 16px;
	}

	.fs-contact-form__input {
		padding:
			0
			18px;
	}

	.fs-contact-form__select {
		padding:
			0
			45px
			0
			18px;
		background-position:
			calc(100% - 20px) 26px,
			calc(100% - 15px) 26px;
	}

	.fs-contact-form__textarea {
		min-height: 210px;
		padding:
			15px
			18px;
		font-size: 16px;
		line-height: 1.8;
	}


	/* ========================================
	   個人情報保護方針リンク
	======================================== */

	.fs-contact-form__privacy-note {
		margin: 4px 0 24px;
		font-size: 14px;
		font-weight: 600;
		line-height: 1.75;
		text-align: center;
	}

	.fs-contact-form__privacy-note p {
		text-align: center;
	}

	.fs-contact-form__privacy-note a {
		font-weight: 700;
	}


	/* ========================================
	   送信ボタン
	======================================== */

	.fs-contact-form__submit {
		width: 100%;
		max-width: none;
		min-height: 66px;
		padding:
			14px
			12px;
		font-size: 16px;
		line-height: 1.45;
		white-space: nowrap;
	}

	.fs-contact-form__submit-note {
		margin-top: 20px !important;
		font-size: 14px;
		font-weight: 600;
		line-height: 1.75;
		text-align: left;
	}

}


/* ============================================
   414px以下
============================================ */

@media (max-width: 414px) {

	.fs-contact {
		padding-right: 12px;
		padding-left: 12px;
	}

	.fs-contact__title {
		font-size: 29px;
	}

	.fs-contact__description p {
		font-size: 15px;
	}

	.fs-contact__form-card {
		padding:
			36px
			24px
			36px;
	}

	.fs-contact-form__label-text {
		font-size: 15px;
	}

	.fs-contact-form__submit {
		font-size: 15px;
	}

}


/* ============================================
   390px以下
============================================ */

@media (max-width: 390px) {

	.fs-contact {
		padding-right: 10px;
		padding-left: 10px;
	}

	.fs-contact__title {
		font-size: 27px;
	}

	.fs-contact__description p {
		font-size: 14px;
	}

	.fs-contact__form-card {
		padding:
			34px
			22px
			34px;
	}

	.fs-contact-form__label-text {
		font-size: 14px;
	}

	.fs-contact-form__input,
	.fs-contact-form__select,
	.fs-contact-form__textarea {
		font-size: 15px;
	}


	.fs-contact-form__submit {
		font-size: 14px;
	}

}


/* ============================================
   375px以下
============================================ */

@media (max-width: 375px) {

	.fs-contact__title {
		font-size: 26px;
	}

	.fs-contact__form-card {
		padding:
			32px
			20px
			32px;
	}

	.fs-contact-form__submit {
		font-size: 14px;
		padding-right: 8px;
		padding-left: 8px;
	}

}


/* ============================================
   360px以下
============================================ */

@media (max-width: 360px) {

	.fs-contact__title {
		font-size: 25px;
	}

	.fs-contact__form-card {
		padding:
			30px
			18px
			30px;
	}

	.fs-contact-form__submit {
		font-size: 14px;
	}

}


/* ============================================
   SP セクション共通タイポグラフィ
   デザイナー案基準
============================================ */

@media (max-width: 767px) {

	/* --------------------------------------------
	   セクション左右余白
	-------------------------------------------- */

	.fs-empathy,
	.fs-issues,
	.fs-reasons,
	.fs-compare,
	.fs-case,
	.fs-voice,
	.fs-schools,
	.fs-flow,
	.fs-faq,
	.fs-contact {
		padding-right: 14px;
		padding-left: 14px;
	}


	/* --------------------------------------------
	   英語見出し
	-------------------------------------------- */

	.fs-empathy__en,
	.fs-issues__en,
	.fs-reasons__en,
	.fs-compare__en,
	.fs-case__en,
	.fs-voice__en,
	.fs-schools__en,
	.fs-flow__en,
	.fs-faq__en,
	.fs-contact__en {
		font-size: 18px;
		font-weight: 400;
		line-height: 1;
		letter-spacing: 0.18em;
	}


	/* --------------------------------------------
	   英語見出し下の日本語サブコピー
	-------------------------------------------- */

	.fs-empathy__subcopy,
	.fs-reasons__subcopy,
	.fs-case__subcopy {
		margin-top: 16px;
		font-size: 20px;
		font-weight: 900;
		-webkit-text-stroke: 0.2px currentColor;
		line-height: 1.5;
		letter-spacing: 0.015em;
	}


	/* --------------------------------------------
	   メインタイトル
	-------------------------------------------- */

	.fs-empathy__title,
	.fs-issues__title,
	.fs-reasons__title,
	.fs-compare__title,
	.fs-case__title,
	.fs-voice__title,
	.fs-schools__title,
	.fs-flow__title,
	.fs-faq__title,
	.fs-contact__title {
		width: 100%;
		max-width: none;
		margin-right: auto;
		margin-left: auto;
		font-size: 26px;
		font-weight: 900;
		-webkit-text-stroke: 0.35px currentColor;
		line-height: 1.42;
		letter-spacing: 0.005em;
	}


	/* --------------------------------------------
	   EMPATHY
	-------------------------------------------- */

	.fs-empathy__subcopy {
		margin-top: 16px;
	}

	.fs-empathy__title {
		max-width: none;
		margin-top: 12px;
	}

	.fs-empathy__title-break {
		display: block;
	}

	.fs-empathy__card p {
		font-size: 14px;
		font-weight: 600;
		line-height: 1.85;
		letter-spacing: 0;
	}

	.fs-empathy__message p {
		font-size: 15px;
		font-weight: 600;
		line-height: 1.9;
		letter-spacing: 0;
	}


	/* --------------------------------------------
	   ISSUES
	-------------------------------------------- */

	.fs-issues__title {
		max-width: 330px;
		margin-top: 12px;
		font-size: 28px;
		line-height: 1.38;
	}

	.fs-issues__title-break {
		display: block;
	}

	.fs-issues__intro p {
		font-size: 16px;
		font-weight: 500;
		line-height: 1.9;
		letter-spacing: 0;
	}

	.fs-issues__text {
		font-size: 14px;
		font-weight: 500;
		line-height: 1.85;
		letter-spacing: 0;
	}


	/* --------------------------------------------
	   REASONS
	-------------------------------------------- */

	.fs-reasons__subcopy {
		max-width: 330px;
		margin-right: auto;
		margin-left: auto;
	}

	.fs-reasons__title {
		max-width: 330px;
		margin-top: 10px;
	}

	.fs-reasons__text p {
		font-size: 16px;
		font-weight: 600;
		line-height: 1.9;
		letter-spacing: 0;
	}


	/* --------------------------------------------
	   COMPARE
	-------------------------------------------- */

	.fs-compare__title {
		max-width: 330px;
		margin-top: 18px;
	}

	.fs-compare__leadbar {
		font-size: 14px;
		font-weight: 700;
		line-height: 1.45;
	}


	/* --------------------------------------------
	   CASE
	-------------------------------------------- */

	.fs-case__subcopy {
		max-width: 330px;
		margin-right: auto;
		margin-left: auto;
	}

	.fs-case__title {
		max-width: 330px;
		margin-top: 12px;
	}

	.fs-case__intro {
		font-size: 17px;
		font-weight: 600;
		line-height: 1.9;
		letter-spacing: 0;
	}

	.fs-case__description p {
		font-size: 16px;
		font-weight: 600;
		line-height: 1.9;
		letter-spacing: 0;
	}


	/* --------------------------------------------
	   VOICE
	-------------------------------------------- */

	.fs-voice__title {
		max-width: 330px;
		margin-top: 18px;
	}

	.fs-voice__intro {
		font-size: 15px;
		font-weight: 600;
		line-height: 1.9;
		letter-spacing: 0;
	}


	/* --------------------------------------------
	   SCHOOLS
	-------------------------------------------- */

	.fs-schools__title {
		max-width: 330px;
		margin-top: 18px;
	}

	.fs-schools__title-break {
		display: block;
	}


	/* --------------------------------------------
	   FLOW
	-------------------------------------------- */

	.fs-flow__title {
		max-width: 330px;
		margin-top: 18px;
	}

	.fs-flow__title-break {
		display: block;
	}

	.fs-flow__lead {
		font-size: 17px;
		font-weight: 600;
		line-height: 1.9;
		letter-spacing: 0;
	}

	.fs-flow__description p {
		font-size: 17px;
		font-weight: 600;
		line-height: 1.85;
		letter-spacing: 0;
	}


	/* --------------------------------------------
	   FAQ
	-------------------------------------------- */

	.fs-faq__title {
		max-width: 330px;
		margin-top: 18px;
	}

	.fs-faq__lead {
		font-size: 17px;
		font-weight: 600;
		line-height: 1.9;
		letter-spacing: 0;
	}


	/* --------------------------------------------
	   CONTACT
	-------------------------------------------- */

	.fs-contact__title {
		max-width: 330px;
		margin-top: 18px;
	}

	.fs-contact__description p {
		font-size: 17px;
		font-weight: 600;
		line-height: 1.9;
		letter-spacing: 0;
	}

}


/* ============================================
   390px以下
============================================ */

@media (max-width: 390px) {

	.fs-empathy__en,
	.fs-issues__en,
	.fs-reasons__en,
	.fs-compare__en,
	.fs-case__en,
	.fs-voice__en,
	.fs-schools__en,
	.fs-flow__en,
	.fs-faq__en,
	.fs-contact__en {
		font-size: 17px;
	}

	.fs-empathy__subcopy,
	.fs-reasons__subcopy,
	.fs-case__subcopy {
		font-size: 20px;
	}

	.fs-empathy__title,
	.fs-reasons__title,
	.fs-compare__title,
	.fs-case__title,
	.fs-voice__title,
	.fs-schools__title,
	.fs-flow__title,
	.fs-faq__title,
	.fs-contact__title {
		font-size: 25px;
	}


}


/* ============================================
   360px以下
============================================ */

@media (max-width: 360px) {

	.fs-empathy__en,
	.fs-issues__en,
	.fs-reasons__en,
	.fs-compare__en,
	.fs-case__en,
	.fs-voice__en,
	.fs-schools__en,
	.fs-flow__en,
	.fs-faq__en,
	.fs-contact__en {
		font-size: 16px;
	}

	.fs-empathy__subcopy,
	.fs-reasons__subcopy,
	.fs-case__subcopy {
		font-size: 20px;
	}

	.fs-empathy__title,
	.fs-reasons__title,
	.fs-compare__title,
	.fs-case__title,
	.fs-voice__title,
	.fs-schools__title,
	.fs-flow__title,
	.fs-faq__title,
	.fs-contact__title {
		font-size: 24px;
	}


	.fs-issues__intro p {
		font-size: 15px;
	}

}


/* ============================================
   SP 本文文字サイズ 共通ルール
   440px前後を含むスマートフォンで可読性を確保
============================================ */

@media (max-width: 767px) {

	/* HERO */
	.fs-hero__lead,
	.fs-hero__description {
		font-size: 16px;
		line-height: 1.8;
	}

	/* EMPATHY */
	.fs-empathy__card p,
	.fs-empathy__message p {
		font-size: 16px;
		line-height: 1.85;
	}

	/* ISSUES */
	.fs-issues__intro p,
	.fs-issues__time-message {
		font-size: 16px;
		line-height: 1.9;
	}

	.fs-issues__text {
		font-size: 16px;
		font-weight:600;
		line-height: 1.9;
	}
	
	/* REASONS */
	.fs-reasons__text p {
		font-size: 16px;
		line-height: 1.9;
	}

	/* COMPARE */
	.fs-compare__leadbar,
	.fs-compare__message {
		font-size: 16px;
		line-height: 1.8;
	}

	/* CASE */
	.fs-case__intro,
	.fs-case__description p {
		font-size: 16px;
		line-height: 1.9;
	}

	.fs-case__note {
		font-size: 14px;
		line-height: 1.8;
	}

	/* VOICE */
	.fs-voice__intro,
	.fs-voice__card-body p {
		font-size: 16px;
		line-height: 1.9;
	}

	/* SCHOOLS */
	.fs-schools__note {
		font-size: 14px;
		line-height: 1.8;
	}

	/* FLOW */
	.fs-flow__lead,
	.fs-flow__description p {
		font-size: 17px;
		font-weight: 600;
		line-height: 1.9;
	}

	/* FAQ */
	.fs-faq__lead {
		font-size: 17px;
		font-weight: 600;
		line-height: 1.9;
	}

	.fs-faq__answer-text,
	.fs-faq__answer-text p {
		font-size: 19px;
		font-weight: 600;
		line-height: 1.9;
	}

	/* CONTACT */
	.fs-contact__description p {
		font-size: 17px;
		font-weight: 600;
		line-height: 1.9;
	}

	.fs-contact-form__input,
	.fs-contact-form__select,
	.fs-contact-form__textarea {
		font-size: 16px;
	}

}



/* ============================================================
   CONTACT 見出し 共通最終調整
   TOP front-page.css と同じ表示
============================================================ */

/* ============================================
   PC：768px以上
============================================ */

@media (min-width: 768px) {

	.fs-contact__en {
		margin: 0;
		padding: 0;
		font-family: "Bebas Neue", sans-serif;
		font-size: 20px;
		font-weight: 400;
		line-height: 1;
		letter-spacing: 0.20em;
	}

	.fs-contact__title {
		margin-top: 22px;
		padding: 0;
		font-size: 38px;
		font-weight: 900;
		line-height: 1.4;
		letter-spacing: 0.03em;
	}

	.fs-contact__title-line {
		display: block;
		width: 28px;
		height: 2px;
		margin: 24px auto 0;
	}
}


/* ============================================
   SP：767px以下
============================================ */

@media (max-width: 767px) {

	.fs-contact__en {
		margin: 0;
		padding: 0;
		font-family: "Bebas Neue", sans-serif;
		font-size: 18px;
		font-weight: 400;
		line-height: 1;
		letter-spacing: 0.18em;
	}

	.fs-contact__title {
		width: 100%;
		max-width: none;
		margin: 12px auto 0;
		padding: 0;
		font-size: 28px;
		font-weight: 900;
		-webkit-text-stroke: 0.35px currentColor;
		line-height: 1.38;
		letter-spacing: 0.01em;
	}

	.fs-contact__title-line {
		display: block;
		width: 22px;
		height: 2px;
		margin: 16px auto 0;
	}

	.fs-contact__description p {
		font-size: 17px;
		font-weight: 600;
		line-height: 1.9;
		letter-spacing: 0;
	}
}


/* ============================================
   390px以下
============================================ */

@media (max-width: 390px) {

	.fs-contact__title {
		max-width: none;
		font-size: 27px;
	}
}


/* ============================================
   360px以下
============================================ */

@media (max-width: 360px) {

	.fs-contact__title {
		max-width: none;
		font-size: 26px;
	}
}