:root {
	--font-family-base: "Noto Sans JP", "Noto Sans", sans-serif;
	--font-family-second: "Noto Serif JP", "Noto Serif", serif;
}

:root {
	--font-weight-regular: 400;
	--font-weight-normal: 500;
	--font-weight-bold: 700;
}

:root {
	--black: #000;
	--white: #fff;
	--bg-color: #fff;
}

:root {
	--z-index-header: 100;
	--z-index-to-top: 200;
	--z-index-drawer: 1000;
	--z-index-modal: 10000;
}

body {
	color: #000;
	color: var(--black);
	font-family: "Noto Sans JP", "Noto Sans", sans-serif;
	font-family: var(--font-family-base);
}

.u-desktop {
	display: none;
}

/* リキッドレイアウト対応 */

html {
	font-size: 16px;
}

/* グローバルリセット */

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

/* テキストサイズの調整をリセット */

html {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
}

/* ボディの基本設定 */

body {
	word-wrap: anywhere;
	line-break: strict;
	line-height: 1.5;
	margin: 0;
	min-height: 100vh;
	text-rendering: optimizeLegibility;
	word-break: normal;
}

/* デフォルトの余白とパディングを削除 */

ul,
ol,
button,
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
time,
small {
	margin: 0;
	padding: 0;
}

/* リストスタイルのリセット */

ul,
ol {
	list-style: none;
}

/* クラスなしのaタグにデフォルトのスタイルを適用 */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* インラインブロック要素 */

a,
span,
button {
	display: inline-block;
}

/* フォントとマージンのリセット */

small,
time,
figure {
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

address {
	font-style: normal;
}

/* 画像の調整 */

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* 記事内の自然な余白を設定 */

article > * + * {
	margin-top: 1em;
}

/* フォーム要素のフォント継承 */

input,
button,
textarea,
select {
	font: inherit;
}

/* フォームのリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
}

textarea {
	resize: vertical;
}

/* チェックボックスとラジオボタンを非表示 */

input[type=checkbox],
input[type=radio] {
	display: none;
}

/* ボタンやラベルにカーソルを設定 */

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

/* IE用の選択ボックスアイコンを非表示 */

select::-ms-expand {
	display: none;
}

/* aタグのスタイルとトランジション */

a {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
	transition: 0.3s;
}

button {
	color: inherit;
}

/* ホバー時のカーソル設定 */

/* PCでtelリンクを無効化 */

/* タップ時のハイライトを透明に設定 */

a {
	-webkit-tap-highlight-color: transparent; /* リンクのハイライトを透明に */
}

button {
	-webkit-tap-highlight-color: transparent; /* ボタンのハイライトも透明に */
}

.mv {
	background-color: #0053AF;
	padding-bottom: 30px;
	padding-top: 30px;
}

.mv__inner {
	height: auto;
	margin-left: auto;
	margin-right: auto;
	max-width: 870px;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}

.mv__img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.sec {
	padding-bottom: 30px;
	padding-top: 30px;
}

.sec__inner {
	height: auto;
	margin-left: auto;
	margin-right: auto;
	max-width: 850px;
	padding-left: 25px;
	padding-right: 25px;
	width: 100%;
}

.sec__img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.sec__link {
	display: block;
	height: 100%;
	transition: opacity 0.3s ease-in-out;
	width: 100%;
}

.sec__link:hover {
	opacity: 0.9;
}

.sec--01 {
	background-color: rgb(82, 113, 255);
}

.sec--02 {
	background-color: #0053AF;
}

.sec--03 {
	background-color: rgb(82, 113, 255);
}

.sec--04 {
	background-color: #0053AF;
}

.sec--05 {
	background-color: rgb(82, 113, 255);
}

.footer {
	background-color: #E6E6E6;
	padding-bottom: 0.625rem;
	padding-top: 1.25rem;
}

.footer__inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 10px;
	height: auto;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	max-width: 400px;
	padding-left: 50px;
	padding-right: 50px;
	width: 100%;
}

.footer__logo {
	display: block;
	height: 100%;
	transition: opacity 0.3s ease-in-out;
}

.footer__logo:hover {
	opacity: 0.8;
}

.footer__logo-img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.footer__copyright {
	font-size: 10px;
	font-weight: 500;
}

.contact {
	background-color: #0053AF;
	padding-bottom: 3.75rem;
	padding-top: 3.125rem;
}

.contact__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 65.625rem;
	padding-left: 0.625rem;
	padding-right: 0.625rem;
}

.contact__form-wrap {
	background-color: #fff;
	padding: 2.5rem 1.25rem;
}

.contact__title {
	font-size: 1.25rem;
	letter-spacing: 0.04em;
	text-align: center;
}

.contact__form-text {
	font-feature-settings: "palt";
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.8;
	margin-top: 1.25rem;
}

.contact__form-title {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.8;
	margin-top: 1.25rem;
}

.contact__form-list {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.8;
	margin-top: 0.3125rem;
}

.contact__form-item {
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.8;
}

.contact__form-note {
	font-feature-settings: "palt";
	font-size: 0.625rem;
	font-weight: 500;
	line-height: 1.8;
	margin-top: 0.625rem;
}

.contact__form-thanks {
	font-feature-settings: "palt";
	font-size: 0.875rem;
	font-weight: 500;
	font-weight: var(--font-weight-normal);
	letter-spacing: 0.02em;
	margin-top: 0.875rem;
	text-align: center;
}

/* ===============================================
# form.scss
=============================================== */

.form {
	margin-top: 1.25rem;
}

.form__wrap {
	display: flex;
	flex-direction: column;
	gap: 0.3125rem;
}

.form__wrap + .form__wrap {
	margin-top: 1.875rem;
}

.form__label {
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
}

.form__label label {
	align-items: center;
	display: flex;
	gap: 0.3125rem;
}

.form__label--flex {
	align-items: center;
	display: flex;
	gap: 0.3125rem;
}

.form__label-required {
	border: 1px solid #ff0000;
	color: #ff0000;
	display: inline-block;
	font-size: 0.625rem;
	font-weight: 500;
	line-height: 1;
	padding: 0.125rem 0.25rem;
}

.form__label-optional {
	border: 1px solid #a6a6a6;
	color: #a6a6a6;
	display: inline-block;
	font-size: 0.625rem;
	font-weight: 500;
	line-height: 1;
	padding: 0.125rem 0.25rem;
}

.form__label-note {
	font-feature-settings: "palt";
	font-size: 0.625rem;
	font-weight: 500;
	line-height: 1;
	margin-top: 0.625rem;
}

.form__input,
.form__textarea {
	margin-top: 0.625rem;
	width: 100%;
}

.form__submit {
	margin-top: 2.5rem;
	text-align: center;
}

.form__wrap.form__wrap--textarea {
	margin-top: 2.5rem;
}

/* ===============================================
# form-input.scss
=============================================== */

.form-input input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #e6e6e6;
	background-image: none;
	border: none;
	border-radius: 0;
	font-size: 0.75rem;
	line-height: 1;
	padding: 0.6875rem 0.9375rem;
	width: 100%;
}

.form-input input:focus {
	box-shadow: none;
	outline: none;
}

/* ===============================================
# form-radio.scss
=============================================== */

.form__radio {
	display: flex;
	gap: 0.875rem;
}

.form__radio label {
	display: inline-block;
}

.form__radio input {
	display: none;
}

.form__radio input + span {
	cursor: pointer;
	display: block;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1;
	padding: 0 0 0 1.125rem;
	position: relative;
}

.form__radio input + span::before {
	background: transparent;
	border: 1px solid #000;
	border-radius: 50%;
	content: "";
	display: block;
	height: 0.75rem;
	left: 0;
	position: absolute;
	top: 60%;
	transform: translateY(-50%);
	width: 0.75rem;
}

.form__radio input + span::after {
	background: #333;
	border: 1px solid transparent;
	border-radius: 50%;
	content: "";
	height: 0.375rem;
	left: 0.1875rem;
	opacity: 0;
	padding: 0.125rem;
	position: absolute;
	top: 60%;
	transform: translateY(-50%);
	transition: 0.3s;
	width: 0.375rem;
}

.form__radio input:checked + span::after {
	opacity: 1;
}

/* ===============================================
# form__checkbox.scss
=============================================== */

.form__checkbox {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-top: 0.3125rem;
}

.form__checkbox-item label:not(:first-of-type) {
	margin-top: 0.625rem;
}

.form__checkbox-item input {
	display: none;
}

.form__checkbox-item input + span {
	font-feature-settings: "palt";
	cursor: pointer;
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1;
	padding: 0 0 0 1.25rem;
	position: relative;
}

.form__checkbox-item input + span::before {
	background: #fff;
	border: 1px solid #ccc;
	content: "";
	display: block;
	height: 0.75rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0.75rem;
}

.form__checkbox-item input + span::after {
	border-bottom: 0.0625rem solid #000;
	border-left: 0.0625rem solid #000;
	content: "";
	display: block;
	height: 0.25rem;
	left: 0.125rem;
	margin-top: -0.125rem;
	opacity: 0;
	position: absolute;
	top: 58%;
	transform: translateY(-50%) rotate(-45deg);
	transition: 0.3s;
	width: 0.4375rem;
}

.form__checkbox-item input:checked + span::after {
	opacity: 1;
}

/* ===============================================
# form-textarea.scss
=============================================== */

.form-textarea textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #e6e6e6;
	background-image: none;
	border: none;
	border-radius: 0;
	font-size: 0.625rem;
	height: 11.25rem;
	padding: 0.5rem 0.9375rem;
	width: 100%;
}

.form-textarea textarea:focus {
	box-shadow: none;
	outline: none;
}

/* ===============================================
# form-submit.scss
=============================================== */

.form-submit input {
	background-color: rgb(9, 39, 235);
	border-radius: 10px;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 1.25rem 7.5rem;
	transition: color 0.3s, background-color 0.3s;
}

/* ===============================================
# お問い合わせ
=============================================== */

.contact-thanks-wrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100vh;
}

.contact-thanks {
	padding: 5rem 0;
}

.contact-thanks-main {
	align-items: center;
	display: flex;
	flex: 1;
	height: 100%;
	justify-content: center;
}

.contact-thanks__inner {
	margin: 0 auto;
	max-width: 1000px;
	padding: 0 0.625rem;
}

.contact-thanks__content {
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 10px;
	padding: 3.125rem 1.25rem;
}

.contact-thanks__title {
	color: #000;
	font-size: 1.125rem;
	font-weight: bold;
	text-align: center;
}

.contact-thanks__text {
	color: #000;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.8;
	margin-top: 1.875rem;
	text-align: left;
}

.contact-thanks__button-area {
	margin-top: 3.75rem;
	text-align: center;
}

.button {
	-webkit-text-decoration: none;
	background-color: rgb(9, 39, 235);
	border: 1px solid rgb(9, 39, 235);
	border-radius: 5px;
	color: #fff;
	display: inline-block;
	font-size: 0.875rem;
	font-weight: bold;
	min-width: 15.625rem;
	padding: 1.25rem;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s;
}

input:user-invalid,
textarea:user-invalid,
select:user-invalid {
	border: 1px solid red;
}

input:user-invalid + .error-message,
textarea:user-invalid + .error-message {
	display: block;
}

.error-message {
	color: red;
	display: none;
	font-size: 0.625rem;
	margin-top: 0.3125rem;
}

.error-message--textarea {
	color: red;
	font-size: 0.625rem;
	margin-top: 0.3125rem;
}

.inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}

/* ===============================================
# フェードアニメーション：IntersectionObserver＆GSAP用
=============================================== */

/* フェード */

.js-fade-in {
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

.js-fade-in.is-active {
	opacity: 1;
}

/* 上方向にスライド */

.js-fade-up {
	opacity: 0;
	transition: opacity 0.5s ease-in-out, translate 0.5s ease-in-out;
	translate: 0 50px;
}

.js-fade-up.is-active {
	opacity: 1;
	translate: 0 0;
}

@media (any-hover: hover) {

a:hover {
	cursor: pointer;
}

.form-submit input:hover {
	background-color: #fff;
	color: rgb(9, 39, 235);
}

.button:hover {
	background-color: #fff;
	color: rgb(9, 39, 235);
}

}

@media screen and (min-width: 768px) {

.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

html {
	font-size: 1.4545454545vw;
}

.mv {
	padding-bottom: 80px;
	padding-top: 60px;
}

.mv__inner {
	padding-left: 60px;
	padding-right: 60px;
}

.sec {
	padding-bottom: 90px;
	padding-top: 90px;
}

.sec__inner {
	padding-left: 50px;
	padding-right: 50px;
}

.footer {
	padding-bottom: 1.875rem;
	padding-top: 2.5rem;
}

.footer__inner {
	gap: 20px;
	max-width: 500px;
	padding-left: 50px;
	padding-right: 50px;
}

.footer__copyright {
	font-size: 12px;
}

.contact {
	padding-bottom: 7.5rem;
	padding-top: 6.25rem;
}

.contact__inner {
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.contact__form-wrap {
	margin-top: 2.5rem;
	padding: 5rem 8.125rem;
}

.contact__title {
	font-size: 2.125rem;
}

.contact__form-text {
	font-size: 0.875rem;
	letter-spacing: 0.02em;
	margin-top: 1.875rem;
	text-align: center;
}

.contact__form-title {
	font-size: 1rem;
	margin-top: 1.875rem;
}

.contact__form-item {
	font-size: 0.875rem;
}

.contact__form-note {
	font-size: 0.875rem;
}

.contact__form-thanks {
	margin-top: 1.875rem;
}

.form {
	margin-top: 2.5rem;
}

.form__wrap {
	gap: 0.9375rem;
}

.form__wrap + .form__wrap {
	margin-top: 2.5rem;
}

.form__label {
	font-size: 1rem;
}

.form__label-required {
	font-size: 0.75rem;
	padding: 0.125rem 0.3125rem;
}

.form__label-optional {
	font-size: 0.75rem;
	padding: 0.125rem 0.3125rem;
}

.form__label-note {
	font-size: 0.75rem;
}

.form__input,
.form__textarea {
	margin-top: 0;
}

.form__submit {
	margin-top: 5rem;
}

.form-input input {
	font-size: 0.875rem;
	padding: 0.625rem 0.9375rem;
}

.form__radio {
	gap: 1rem;
}

.form__radio input + span {
	font-size: 1rem;
	padding: 0 0 0 1.25rem;
}

.form__radio input + span::before {
	height: 0.875rem;
	width: 0.875rem;
}

.form__radio input + span::after {
	height: 0.5rem;
	width: 0.5rem;
}

.form__checkbox {
	gap: 0.625rem;
}

.form__checkbox-item label:not(:first-of-type) {
	margin-top: 0;
}

.form__checkbox-item input + span {
	font-size: 1rem;
	padding: 0 0 0 1.5625rem;
}

.form__checkbox-item input + span::before {
	height: 0.9375rem;
	width: 0.9375rem;
}

.form__checkbox-item input + span::after {
	border-bottom: 0.125rem solid #000;
	border-left: 0.125rem solid #000;
	height: 0.375rem;
	top: 50%;
	width: 0.625rem;
}

.form-textarea textarea {
	font-size: 0.875rem;
	height: 12.5rem;
}

.form-submit input {
	border: 2px solid rgb(9, 39, 235);
	font-size: 1rem;
	padding: 1.5625rem 8.75rem;
}

.contact-thanks__inner {
	padding: 0 1.25rem;
}

.contact-thanks__content {
	padding: 5.625rem 7.5rem;
}

.contact-thanks__title {
	font-size: 1.75rem;
}

.contact-thanks__text {
	font-size: 0.9375rem;
	margin-top: 3.125rem;
	text-align: center;
}

.button {
	font-size: 1rem;
	padding: 1.25rem 1.875rem;
}

.error-message {
	font-size: 0.75rem;
}

.error-message--textarea {
	font-size: 0.75rem;
}

.inner {
	max-width: 1170px;
	padding-left: 35px;
	padding-right: 35px;
}

}

@media (min-width: 768px) {

a[href*="tel:"] {
	-webkit-text-decoration: none;
	cursor: default;
	pointer-events: none;
	text-decoration: none;
}

}

@media (min-width: 1100px) {

html {
	font-size: 16px;
}

}

@media (max-width: 767px) {

.footer__logo {
	width: 60%;
}

.form-input input:focus {
	border: 1px solid #ccc;
}

.form-textarea textarea:focus {
	border: 1px solid #ccc;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}


/*# sourceMappingURL=style.css.map */
