@charset "UTF-8";
/*--------------------------------------------------
**************************************************
  ページタイトル
**************************************************
--------------------------------------------------*/
.mv .tel_box {
	margin-top: 30px;
	text-align: center;
}

.mv .tel_box a[href^="tel:"] {
	padding-left: 40px;
	background: url(../imgs/common/icon_tel_01.png) no-repeat left center / 35px;
	font-family: "Poppins", sans-serif;
	font-size: 3.6rem;
	font-weight: 600;
	line-height: 1;
}

.mv .tel_box .tel_ok {
	font-weight: 500;
}

.mv .tel_box .tel_info {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 10px;
}

.mv .tel_box .tel_info li {
	padding: 0 16px;
	border: var(--gray-line) 1px solid;
	border-radius: 8px;
	font-size: 1.3rem;
	font-weight: 600;
}

/* SP */
@media screen and (max-width: 767px) {
	.mv .tel_box {
		margin-top: 20px;
	}

	.mv .tel_box a[href^="tel:"] {
		padding-left: 35px;
		background: url(../imgs/common/icon_tel_01_sp.png) no-repeat left center / 30px;
	}

	.mv .tel_box .tel_ok {
		font-size: 1.4rem;
	}
}


/*--------------------------------------------------
**************************************************
  メインコンテンツ
**************************************************
--------------------------------------------------*/
.contact_type_box {
	padding-bottom: 200px;
	border-bottom: var(--gray-line) 1px solid;
}


/*--------------------------------------------------
**************************************************
  タブ
**************************************************
--------------------------------------------------*/
.tab_buttons {
	display: flex;
	justify-content: center;
	gap: 70px;
	border-bottom: var(--gray-line) 1px solid;
}

.tab_buttons button {
	max-width: 500px;
	width: 100%;
	padding: 20px;
	background: var(--gray-darker);
	border-radius: 8px 8px 0 0;
	text-align: center;
	font-size: 2.0rem;
	font-weight: 800;
	line-height: 1;
	color: var(--white);
}

.tab_buttons button.is-active {
	background: linear-gradient(131.51deg, #237DDE 11.62%, #0252A8 99.2%);
}

.tab_panels {
	max-width: 960px;
	width: 100%;
	margin: 64px auto 0;
}

.tab_panel {
	display: none;
}

.tab_panel.is-active {
	display: block;
}

/* SP */
@media screen and (max-width: 767px) {
	.tab_buttons {
		justify-content: flex-start;
		gap: 0;
		border-bottom: var(--blue-dark) 2px solid;
	}

	.tab_buttons button {
		width: 50%;
		padding: 10px;
		border-radius: 0;
		font-size: 1.4rem;
	}

	.tab_buttons button.is-active {
		background: linear-gradient(90deg, #0652D5 0%, #004EA2 100%);
	}
}


/*--------------------------------------------------
**************************************************
  フォーム
**************************************************
--------------------------------------------------*/
.form_box + .form_box {
	margin-top: 120px;
}

.form_box .heading {
	margin-bottom: 40px;
	font-size: 2.0rem;
	font-weight: 600;
}

.form_box .item_name {
	width: 215px;
}

.form_box .item_body {
	width: 680px;
}

.form_box a[href="/privacy/"] {
	padding-bottom: 2px;
	border-bottom: var(--black-base) 1px solid;
}

/* SP */
@media screen and (max-width: 767px) {
	.form_box .item_name,
	.form_box .item_body {
		width: 100%;
	}
}

