/* ----------------------------------------
common
---------------------------------------- */
/* ----------------------------------------
フォントは下記2種類
font-family: "Noto Sans JP", sans-serif;　←日本語
font-family: "Jost", sans-serif;　←英数
font-weight: <weight>;　←100~900
font-style: normal;　←Jostのみitalicもあり
---------------------------------------- */
:root {
	--main-color: #2799fb;
	--main-dark-color: #0d3b63;
	--main-pale-color: #d9e5ee;
	--point-color: #f9f752;
	--red-color: #fb5927;
	--red-dark-color: #be2a2a;
	--red-pale-color: #FEDCD2;
}
.pc_off {
	display: none !important;
}
html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}
body {
	background: #fff;
	font-size: 14px;
	line-height: 1.5;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	position: relative;
	padding-top: 100px;
}
p.head_catch {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
	color: #999;
	font-size: 11px;
	z-index: 11;
}
a {
	transition: all 0.5s ease;
}
a[href^="tel:"] {
	pointer-events: none;
}
.w_1100 {
	width: 1100px;
	margin: 0 auto;
}
.pankuzu {
	overflow: hidden;
	padding: 5px 5%;
	font-size: 12px;
}
.pankuzu>div {
	float: left;
	margin-right: 10px;
	font-weight: normal;
	font-weight: 700;
}
.pankuzu a {
	color: #333;
	margin-right: 10px;
}
.pankuzu a:hover {
	text-decoration: underline;
	color: #2899fb;
}
.conts_tl {
	background: url(/img/top/pro_bg.jpg) no-repeat 50% 20%;
	height: 140px;
	border-bottom: 1px dashed #2c3f50;
	width: 100%;
	margin: 0 auto;
	font-weight: bold;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.conts_tl p {
	font-size: 28px;
	width: 100%;
	padding: 40px 0 15px 0;
}
.conts_tl h1 {
	font-size: 28px;
	width: 100%;
	padding: 40px 0 15px 0;
}
.conts_tl span {
	font-size: 13px;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
	color: var(--main-color);
}
.notfound_img {
	text-align: center;
	margin-bottom: 60px;
}
a.btn_blue {
	background: var(--main-color);
	& span {
		color: #fff;
	}
	&:after {
		background: url(/img/common_test/arrow_white_frame.svg) 0 0 no-repeat;
	}
	&:hover {
		background: var(--main-dark-color);
	}
}
a.btn_white {
	background: #fff;
	border: 2px solid var(--main-color);
	& span {
		color: var(--main-color);
	}
	&:after {
		background: url(/img/common_test/arrow_blue_frame.svg) 0 0 no-repeat;
	}
	&:hover {
		background: var(--main-pale-color);
	}
}
a.btn_transparent {
	border: 2px solid #fff;
	& span {
		color: #fff;
	}
	&:after {
		background: url(/img/common_test/arrow_white_frame.svg) 0 0 no-repeat;
	}
	&:hover {
		background: var(--main-dark-color);
	}
}
a.btn_basic {
	width: 340px;
	height: 60px;
	border-radius: 30px;
	padding: 0 20px;
	box-sizing: border-box;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	& span {
		font-size: 16px;
		font-weight: 600;
		flex-grow: 3;
		text-align: center;
	}
	&:after {
		content: "";
		display: block;
		background-size: 26px;
		height: 26px;
		width: 26px;
	}
}
/* ----------------------------------------
header
---------------------------------------- */
header {
	position: fixed;
	top: 0;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	background: #fff;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
	height: 100px;
	z-index: 100;
}
.h_box {
	width: 90vw;
	min-width: 1200px;
	max-width: 1600px;
	margin: 0 auto;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.h_logo {
	& a:hover {
		opacity: 0.8;
	}
}
.h_nav {
	margin-left: auto;
}
.h_nav_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}
.h_tel {
	& img {
		margin-right: 5px;
	}
	& a {
		font-family: "Jost", sans-serif;
		font-size: 28px;
		margin-right: 20px;
		display: flex;
		align-items: center;
		color: #111;
	}
}
.h_contact {
	& a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 200px;
		height: 36px;
		border-radius: 18px;
		padding-bottom: 1px;
		color: #fff;
		font-weight: 500;
		background: var(--red-color);
		font-size: 16px;
		&:hover {
			background: var(--red-dark-color);
		}
	}
}
.h_nav_li {
	& ul {
		display: flex;
		justify-content: flex-end;
		& li {
			margin-left: 30px;
			& a {
				font-size: 16px;
				color: #111;
				font-weight: 600;
				&:hover {
					color: var(--main-color);
				}
			}
		}
	}
}
.h_btn_menu {
	cursor: pointer;
	display: block;
	margin-left: 20px;
	&:hover {
		background: url(/img/common_test/btn_menu_on.webp);
		& img {
			visibility: hidden;
		}
	}
}
/* overlay
---------------------------------------- */
#menu-toggle {
	display: none;
}
.overlay {
	position: fixed;
	inset: 0;
	background: var(--main-color);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}
#menu-toggle:checked~.overlay {
	opacity: 1;
	visibility: visible;
}
.close-btn {
	position: absolute;
	top: 0;
	right: 15px;
	font-size: 2rem;
	color: #fff;
	cursor: pointer;
	user-select: none;
}
#menu-toggle:checked~.overlay {
	opacity: 1;
	visibility: visible;
}
/* ----------------------------------------
footer
---------------------------------------- */
footer {
	background: var(--main-color);
	padding: 80px 0 40px;
}
.copy {
	font-family: "Jost", sans-serif;
	font-size: 12px;
	letter-spacing: 1px;
	text-align: center;
	padding-top: 15px;
	color: #fff;
}
/* ----------------------------------------
menu　※ヘッダー内オーバーレイメニューとフッター共通
---------------------------------------- */
.menu_inner {
	min-width: 1200px;
	max-width: 1600px;
	width: 90%;
	margin: 0 auto;
	padding: 40px;
	border-radius: 40px;
	box-sizing: border-box;
	background: #fff;
}
.menu_top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.menu_top_logo {
	margin-right: 15px;
	& a:hover {
		opacity: 0.8;
	}
}
.menu_top_tel {
	margin-right: auto;
	& img {
		margin-right: 5px;
	}
	& a {
		font-family: "Jost", sans-serif;
		font-size: 30px;
		display: flex;
		align-items: center;
		color: #111;
	}
}
.menu_top_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 280px;
	height: 60px;
	border-radius: 30px;
	padding: 0 20px;
	background: #fff;
	margin-left: 15px;
	& p {
		flex-grow: 2;
		text-align: center;
		font-size: 18px;
		font-weight: 600;
		line-height: 1.4;
		color: #fff;
	}
}
.menu_top_btn_online {
	background: var(--main-color);
	&:hover {
		background: var(--main-dark-color);
	}
}
.menu_top_btn_contact {
	background: var(--red-color);
	&:hover {
		background: var(--red-dark-color);
	}
}
.menu_conts {
	padding: 30px 0;
	display: flex;
	justify-content: space-between;
	gap: 15px;
}
.menu_conts_box {
	display: flex;
	flex-direction: column;
	flex-grow: 2;
}
.menu_conts_ttl {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
	&:before {
		content: "●";
		color: var(--main-color);
		margin-right: 5px;
	}
	& span {
		font-weight: 600;
	}
}
.menu_conts_link {
	background: #f5f5f5;
	border-radius: 20px;
	padding: 15px 20px;
	display: flex;
	flex-grow: 3;
}
.menu_conts_link+.menu_conts_ttl {
	margin-top: 10px;
}
.menu_conts_li {
	& li {
		display: flex;
		align-items: center;
		margin: 2px 0;
		& a {
			font-size: 14px;
			color: #111;
			&:hover {
				color: var(--main-color);
				text-decoration: underline;
			}
		}
		&:before {
			content: "-";
			color: var(--main-color);
			font-weight: 600;
			margin-right: 5px;
		}
	}
	&:not(:first-child) {
		margin-left: 20px;
	}
}
.menu_bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.menu_bottom_bnr {
	display: flex;
	p {
		margin-right: 10px;
		& img {
			max-height: 100px;
		}
	}
}
.menu_bottom_bnr_zombie {
	display: block;
	&:hover {
		background: url(/img/common_test/f_bnr_zombie_on.webp);
		& img {
			visibility: hidden;
		}
	}
}
.menu_bottom_logo {
	& a:hover {
		opacity: 0.8;
	}
}
/* ----------------------------------------
form　→contents_pcへ移動
---------------------------------------- */
.form {
	width: 900px;
	margin: 0 auto 80px;
}
.form_ttl {
	text-align: center;
	width: 1000px;
	margin: 0 auto 20px;
	display: flex;
	justify-content: space-between;
}
.form_ttl h3 {
	font-size: 35px;
	display: flex;
	align-items: center;
}
.form_ttl h3 span {
	font-size: 18px;
	font-weight: normal;
	color: #40a0fb;
	font-family: "Century Gothic", "Arial";
	display: flex;
	align-items: center;
	padding-left: 20px;
}
.form_ttl h3 span:before {
	content: "";
	display: block;
	width: 1px;
	height: 35px;
	background: #111;
	margin-right: 20px;
}
.form_box {
	box-shadow: 0 0 5px 0 #ccc;
	padding: 40px;
}
.form_box table {
	width: 100%;
}
.form_box th {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin-top: 5px;
}
.form_box th span {
	color: #ff4a32;
	font-size: 12px;
	font-weight: bold;
	padding: 0 10px;
}
.form_box th span.form_any {
	border: 1px solid #237dc0;
	color: #237dc0 !important;
	background: #dfebf5 !important;
}
.form_box th,
.form_box td {
	padding: 5px 10px;
	vertical-align: middle;
	box-sizing: border-box;
}
.form_box td {
	width: 80%;
}
.form_box td p {
	font-size: 12px;
	background: #FFE5E5;
	display: inline-block;
	color: #ff0000;
	font-weight: bold;
}
.form_box td input {
	font-size: 15px;
	padding: 5px 10px;
	border: 1px solid #ccdae4;
	background: #f5f9fc;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Noto Sans Japanese", Roboto, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.form_note {
	text-align: center;
	padding: 20px 0;
	font-size: 12px;
}
.form_note a {
	color: #111;
	text-decoration: underline;
}
.form_txtblock {
	border: 5px solid #eee;
	padding: 15px !important;
	margin-bottom: 40px;
}
.form_subtext {
	padding: 10px 0;
	color: #ff0000;
	font-size: 12px;
	line-height: 1.5;
}
.form_submit {
	margin: 0 auto;
	width: 400px;
	height: 60px;
}
.form_submit label input {
	display: none;
}
.form_submit label p {
	border: 2px solid #2799fb;
	background: #2799fb;
	color: #fff;
	border-radius: 30px;
	width: 400px;
	height: 60px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	box-shadow: 0 0 3px 0 #999;
	padding: 0 40px;
	font-weight: bold;
	cursor: pointer;
}
.form_submit label p:hover {
	color: #2799fb;
	background: #fff;
}
.form_submit label p span {
	background: url(/img/common/arrow_r_white.png) no-repeat 98% 50%;
	display: block;
	line-height: 56px;
	font-size: 20px;
}
.form_submit label:hover p span {
	background: url(/img/common/arrow_r_blue.png) no-repeat 100% 50%;
}
.form_box td label {
	border: 1px solid #ccdae4;
	background: #f5f9fc;
	cursor: pointer;
	border-radius: 3px;
	padding: 6px 10px;
	display: inline-block;
	margin: 0 10px 10px 0;
	font-size: 14px;
}
.form_box td label span {
	display: inherit;
	color: #999;
	font-size: 12px;
	padding-left: 5px;
}
.form_box td label input {
	width: 15px;
	height: 15px;
	margin-right: 5px;
}
.form_box td label input[type="checkbox"],
.form_box td label input[type="radio"] {
	vertical-align: middle;
	margin-top: 0;
	margin-left: 0;
}
.form_box textarea {
	font-size: 16px;
	background: #f5f9fc;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Noto Sans Japanese",
		Roboto, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
		"メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic",
		sans-serif;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	padding: 10px 20px;
	border: 1px solid #ccdae4;
	height: 100px;
}
.form_box select {
	cursor: pointer;
	padding: 5px 10px;
	border: 1px solid #ccdae4;
	font-size: 15px;
	background: #f5f9fc;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, 'Noto Sans Japanese', Roboto, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.form_box td input[type="text"]:hover,
.form_box td input[type="tel"]:hover,
.form_box td textarea:hover,
.form_box td select:hover,
.form_box td label:hover {
	background: #f9fcf5;
	border: 1px solid #d6eaba;
}
/* ----------------------------------------
	inq　→消してOK？
	---------------------------------------- */
.inq {
	background: url(/img/top/inq_bg.jpg) repeat-x 50% 50%;
	height: 200px;
}
.inq_inner {
	width: 900px;
	margin: 0 auto;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
}
.inq .inq_phone {
	flex-basis: 200px;
}
.inq .inq_phone img {
	padding-top: 25px;
	padding-left: 40px;
}
.inq .inq_btn {}
.inq a {
	display: block;
	position: relative;
	height: 200px;
}
.inq a img {
	margin-top: -20px;
}
.inq p {
	position: absolute;
	bottom: 30px;
	left: 0;
	border: 2px solid #ff4a32;
	background: #ff4a32;
	color: #fff;
	border-radius: 30px;
	width: 400px;
	height: 60px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	box-shadow: 0 0 3px 0 #999;
	padding: 0 40px;
	font-weight: bold;
}
.inq a:hover p {
	color: #ff4a32;
	background: #fff;
}
.inq p span {
	background: url(/img/common/arrow_r_white.png) no-repeat 98% 50%;
	display: block;
	line-height: 56px;
	font-size: 20px;
}
.inq a:hover p span {
	background: url(/img/common/arrow_r_red.png) no-repeat 100% 50%;
}
.inq .inq_chara {
	flex-basis: 200px;
	padding-top: 30px;
	display: none;
}
/* ----------------------------------------
	con_step　→消す（インハウスページ修正後）
	---------------------------------------- */
.con_step {
	width: 1100px;
	margin: 20px auto 60px;
}
.con_step_ttl {
	text-align: center;
	font-weight: bold;
	font-size: 32px;
	line-height: 1.5;
	margin-bottom: 30px;
	border-top: 1px solid #111;
	border-bottom: 1px solid #111;
	padding: 10px;
}
.con_step_ttl br {
	display: none;
}
.con_step_ttl span {
	color: #2899fb;
	font-size: 42px;
}
.sample_video_link {
	display: flex;
	justify-content: center;
	margin-top: 60px;
}
.con_step ul {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.con_step li:not(:last-child) {
	flex-basis: 290px;
}
.con_step li:last-child {
	flex-basis: 240px;
}
.con_step li p {
	width: 240px;
	height: 220px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: flex-start;
}
.con_step li:not(:last-child) p:after {
	content: url(/img/top/st_arrow.png);
	padding-left: 5px;
}
.con_step li span {
	margin-top: -30px;
	display: block;
	font-weight: bold;
	font-size: 18px;
	text-align: center;
	width: 240px;
	background: none;
}
/* ----------------------------------------
	sample_movie →消す（インハウスページ修正後）
	---------------------------------------- */
.sample_movie {
	position: relative;
	height: 180px;
	overflow: hidden;
}
.sample_movie video {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
.sample_movie:before {
	content: "";
	/*background: rgba(255, 255, 255, 0.7);*/
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 180px;
	z-index: 1;
}
.sample_video {
	width: 1200px;
	margin: 0 auto 80px;
}
.sample_video_link a {
	display: block;
	background: url(/img/common/arrow_r_white.png) no-repeat 90% 50%;
	width: 400px;
	padding: 0 30px;
	font-size: 17px;
	color: #fff;
	height: 60px;
	line-height: 60px;
	border-radius: 30px;
	box-sizing: border-box;
	margin: 0 10px;
}
.sample_video_link_red {
	background-color: #ff4a32 !important;
}
.sample_video_link_red:hover {
	background-color: #991100 !important;
}
.sample_video_link_blue {
	background-color: #40a0fb !important;
}
.sample_video_link_blue:hover {
	background-color: #2c3f50 !important;
}
.sample_video_link a:hover {
	background: url(/img/common/arrow_r_white.png) no-repeat 92% 50%;
}
.sample_video_link span {
	font-weight: bold;
}
/* ----------------------------------------
	btm_contact
---------------------------------------- */
.btm_contact {
	background: url(/img/top/inq_bg.jpg) repeat 50% 50%;
	padding: 80px 0;
}
.btm_contact_ttl {
	width: 1000px;
	margin: 0 auto 60px;
	display: flex;
	justify-content: center;
}
.btm_contact_ttl p {
	position: relative;
	display: inline-block;
	padding: 0 70px;
	color: #008dd0;
	font-size: 26px;
	font-weight: bold;
}
.btm_contact_ttl p br {
	display: none;
}
.btm_contact_ttl p:before,
.btm_contact_ttl p:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 45px;
	height: 1px;
	background-color: #008dd0;
}
.btm_contact_ttl p:before {
	left: 0;
}
.btm_contact_ttl p:after {
	right: 0;
}
.btm_contact_link {
	display: flex;
	width: 1000px;
	margin: 0 auto;
	justify-content: space-between;
}
.btm_contact_link li {
	width: 300px;
}
.btm_contact_link li p {
	text-align: center;
	color: #2c3f50;
	font-weight: bold;
	margin-bottom: 5px;
}
.btm_contact_link li a {
	display: block;
	border: 1px solid #008dd0;
	background: #fff;
	color: #008dd0;
	font-weight: bold;
	text-align: center;
	height: 50px;
	border-radius: 25px;
	line-height: 48px;
	box-sizing: border-box;
	font-size: 18px;
	position: relative;
}
.btm_contact_link li a:hover {
	background: #008dd0;
	color: #fff;
}
.btm_contact_link li a::after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 25px;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 8px;
	height: 8px;
	border-top: 2px solid #008dd0;
	border-right: 2px solid #008dd0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.btm_contact_link li a:hover::after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}
/* Bnr　→contents_pcもしくはcolumnへ移動
-----------------------------------------*/
.Bnr {
	width: 100%;
	height: 100%;
	display: none;
	z-index: 100;
}
.Bnr .Bnr_img {
	background: rgba(0, 0, 0, 0.4);
	position: fixed;
	bottom: 0;
	left: 0;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
	z-index: 100;
}
.Bnr_img_inner {
	width: 600px;
	height: 400px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
}
.Bnr .Bnr_img_inner a {
	display: block;
	width: 290px;
	height: 370px;
}
.Bnr .Bnr_img_inner a img {
	border: 4px solid #fff;
}
.Bnr .Bnr_img_inner a:hover img {
	border: 4px solid #FF9800;
}
.Bnr_bg_close {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	p {
		border: 2px solid #111;
		display: block;
		border-radius: 22px;
		width: 22px;
		height: 22px;
		background: #fff;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-bottom: 420px;
		margin-left: 330px;
		&:hover {
			background: #ccc;
		}
		i {
			font-size: 20px;
			z-index: 888;
			color: #222;
		}
	}
}