@charset "utf-8";

/*--------------------------------------------------
	common
--------------------------------------------------*/
a:link { color: #183bba; text-decoration: none; }
a:visited { color: #183bba; text-decoration: none; }
a:hover { color: #183bba; text-decoration: none; }
@media screen and (min-width: 768px) {
	a[href^="tel:"] { pointer-events: none; color: inherit; }
}

.bold {	font-weight: bold; }
.marker { line-height: 1.3em; font-size: 2rem; font-weight: bold; background: linear-gradient(transparent 50%, rgba(110,218,255, 0.5) 0%); }
@media screen and (max-width: 767px) {
	.marker { font-size: 1.6rem; }
}

/* 選択時背景色 */
/*::selection {background: #fe4545;color:#fff; }
::-moz-selection {background: #fe4545;color:#fff; }*/

.mgt05 { margin-top: 5px; }
.mgt10 { margin-top: 10px; }
.mgt15 { margin-top: 15px; }
.mgt20 { margin-top: 20px; }
.mgt25 { margin-top: 25px; }
.mgt30 { margin-top: 30px; }
.mgt35 { margin-top: 35px; }
.mgt40 { margin-top: 40px; }
.mgt45 { margin-top: 45px; }

.right { text-align: right; }
.left { text-align: left; }
.center { text-align: center; }

/* float解除 */
.clearfix:after { content: ""; display: block; clear: both; }
.clearfix { display: inline-block; }
* html .clearfix { height: 1%; }
.clearfix { display: block; }
.both { clear: both; }

.sp { display: none !important; }
@media screen and (max-width: 767px) {
	.pc { display: none !important; }
	.sp { display: inherit !important; }
}

/*--------------------------------------------------
	layout
--------------------------------------------------*/
html {
	font-size: 62.5%;
}
body {
	line-height: 1;
	font-family: 'Noto Sans', "メイリオ", "meiryo", Verdana, "Hiragino Kaku Gothic Pro W3", "MS UI Gothic", sans-serif;
	font-size: 1.0rem;
	overflow-wrap: break-word;
	word-wrap: break-word;
	-webkit-text-size-adjust: none;
	color: #333;
}
img {
	max-width: 100%;
	height: auto;
}
.wrap {
	text-align: left;
	font-size: 1.6rem;
}
section {
	padding-top: 100px;
	padding-bottom: 100px;
}
.inner {
	width: 1200px;
	margin-right: auto;
	margin-left: auto;
}
.sec_ttl {
	text-align: center;
	font-size: 4rem;
	font-weight: bold;
	padding-bottom: 40px;
}
.sec_txt {
	line-height: 2;
	text-align: center;
	font-size: 1.8rem;
}
.sec_txt p + p {
	margin-top: 1.5em;
}

@media screen and (max-width: 1280px) {
	.inner {
		width: 92%;
		padding: initial;
	}
}

@media screen and (max-width: 767px) {
	.wrap {
		font-size: 1.4rem;
	}
	section {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.sec_ttl {
		line-height: 1.5;
		font-size: 2.4rem;
		padding-bottom: 30px;
	}
	.sec_txt {
		text-align: left;
		font-size: 1.4rem;
	}
}

/*--------------------------------------------------
	header
--------------------------------------------------*/
#header {
	position: fixed;
	width: 100%;
	height: 80px;
	background: rgba(255,255,255,0.8);
	z-index: 100;
}
#header .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header_logo {
	width: 176px;
	margin: 10px 0;
}
a.header_btn {
	display: inline-block;
	text-align: center;
	font-size: 2rem;
	color: #fff;
	font-weight: bold;
	padding: 20px 30px;
	background: #d82219;
	border-radius: 40px;
	box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

@media screen and (max-width: 767px) {
	#header {
		height: 60px;
	}
	.header_logo {
		width: 120px;
		margin: 10px 0;
	}
	a.header_btn {
		font-size: 1.6rem;
		padding: 15px 20px;
	}
}

/*--------------------------------------------------
	mv
--------------------------------------------------*/
#mv {
	padding-top: 80px;
}
.mv_inner {
	position: relative;
	width: 100%;
	min-height: 400px;
	/* 高さ比率：400 / 1920 * 100 */
	padding-top: 20.83%;
	background: #000 url(../images/mv.jpg) no-repeat center center;
	background-size: cover;
	overflow: hidden;
}
.mv_catch {
	position: absolute;
	top: 50%;
	right: 10%;
	transform: translateY(-50%);
	line-height: 1.5;
	font-size: 4.8rem;
	color: #fff;
	font-weight: bold;
}

@media screen and (max-width: 767px) {
	#mv {
		padding-top: 60px;
	}
	.mv_inner {
		min-height: 250px;
		/* 高さ比率：250 / 375 * 100 */
		padding-top: 66.66%;
		background: #000 url(../images/mv_sp.jpg) no-repeat center center;
		background-size: cover;
	}
	.mv_catch {
		top: 62%;
		right: 0;
		left: 0;
		transform: initial;
		text-align: center;
		font-size: 2.4rem;
		margin: auto;
	}
}

/*--------------------------------------------------
	content
--------------------------------------------------*/
#sec_intro .sec_ttl {
	margin-top: 100px;
	padding-bottom: 0;
}
.intro_block {
	position: relative;
	width: 85%;
	/* width: 1020px; */
	margin: 0 auto;
}
.intro_list {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 29.41%;
}
.intro_list:first-child {
	left: 0;
}
.intro_list + .intro_list {
	right: 0;
}
.intro_list li {
	line-height: 2;
	text-align: center;
	font-size: 1.4rem;
	padding: 40px 20px;
	background: rgba(110,218,255, 0.5);
	border-radius: 40px;
}
.intro_list li + li {
	margin-top: 40px;
}
.intro_illust {
	text-align: center;
}
.intro_answer {
	line-height: 1.5;
	text-align: center;
	font-size: 2.4rem;
	font-weight: bold;
}
.intro_answer + .sec_txt {
	margin-top: 1.5em;
}

@media screen and (max-width: 767px) {
	#sec_intro .sec_ttl {
		margin-top: 50px;
	}
	.intro_block {
		position: relative;
		width: 100%;
	}
	.intro_list {
		position: initial;
		transform: initial;
		width: 100%;
	}
	.intro_list li {
		line-height: 1.5;
		text-align: left;
		padding: 20px 8%;
	}
	.intro_list li + li,
	.intro_list {
		margin-top: 20px;
	}
	.intro_illust {
		width: 75.36%;
		margin: 0 auto;
	}
	.intro_answer {
		font-size: 1.6rem;
	}
}


#sec_security {
	background: #eee;
}
.security_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.security_block {
	position: relative;
	width: 48.33%;
	min-height: 530px;
	margin-top: 80px;
	background: #fff;
}
.security_block:nth-child(even) {
	margin-left: 3.33%;
}
.security_block:nth-child(n+3) {
	margin-top: 40px;
}
.security_blockInner {
	position: relative;
	padding: 0 40px 30px;
	background: #fff;
	z-index: 1;
}
.security_icon {
	text-align: center;
	width: 40px;
	transform:translateY(-15px);
	margin: 0 auto;
}
.security_ttl {
	position: relative;
	text-align: center;
	font-size: 2.4rem;
	font-weight: bold;
	margin-top: 15px;
}
.security_ttl::after {
	content: "";
	position: absolute;
	width: 100px;
	height: 4px;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #d82219;
	border-radius: 5px;
}
.security_list {
	line-height: 1.5;
	font-size: 1.6rem;
	margin-top: 60px;
}
.security_list dt {
	font-size: 1.8rem;
	font-weight: bold;
}
.security_list dd {
	margin: 5px 0 0 1em;
}
.security_list li {
	text-indent: -1em;
	padding-left: 1em;
}
.security_list dd + dt,
.security_list li + li {
	margin-top: 30px;
}
.security_photo {
	position: absolute;
	bottom: 0;
}
.security_wrap + .sec_txt {
	margin-top: 80px;
}

@media screen and (max-width: 767px) {
	.security_wrap {
		display: block;
	}
	.security_block {
		width: 100%;
		min-height: initial;
		margin-top: 40px;
	}
	.security_block:nth-child(even) {
		margin-left: initial;
	}
	.security_block + .security_block,
	.security_block:nth-child(n+3) {
		margin-top: 40px;
	}
	.security_blockInner {
		padding: 0 4% 30px;
	}
	.security_icon {
		width: 30px;
		transform:translateY(-10px);
	}
	.security_ttl {
		font-size: 2rem;
		margin-top: 10px;
	}
	.security_ttl::after {
		bottom: -15px;
	}
	.security_list {
		font-size: 1.4rem;
		margin-top: 50px;
	}
	.security_list dt {
		font-size: 1.6rem;
	}
	.security_list dd + dt,
	.security_list li + li {
		margin-top: 20px;
	}
	.security_photo {
		position: initial;
	}
	.security_wrap + .sec_txt {
		margin-top: 40px;
	}
}


.service_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.service_block {
	position: relative;
	width: 48.33%;
	min-height: 530px;
	margin-top: 80px;
	background: #eee;
}
.service_block:nth-child(even) {
	margin-left: 3.33%;
}
.service_block:nth-child(n+3) {
	margin-top: 40px;
}
.service_head {
	position: relative;
	color: #fff;
	padding: 30px 40px 20px;
	background: linear-gradient(to right,  #333333 50%,#6edaff 100%);
}
.service_ttl {
	line-height: 1.5;
	font-size: 2.4rem;
	font-weight: bold;
}
.service_no {
	position: absolute;
	right: 20px;
	bottom: -15px;
	font-size: 12rem;
	color: #333;
	font-family: "Teko", sans-serif;
}
.service_blockInner {
	padding: 40px;
}
.service_list {
	line-height: 1.5;
	font-size: 1.6rem;
}
.service_list dt {
	font-size: 1.8rem;
	font-weight: bold;
}
.service_list dd {
	margin: 5px 0 0 1em;
}
.service_list li {
	text-indent: -1em;
	padding-left: 1em;
}
.service_list dd + dt,
.service_list li + li {
	margin-top: 30px;
}
.service_wrap + .sec_txt {
	margin-top: 80px;
}
.service_block.block1 {
	background: #eee url(../images/service_illust_1.png) no-repeat right -60px bottom -100px;
}
.service_block.block2 {
	background: #eee url(../images/service_illust_2.png) no-repeat right -140px bottom -170px;
}
.service_block.block3 {
	background: #eee url(../images/service_illust_3.png) no-repeat right -50px bottom -50px;
}
.service_block.block4 {
	background: #eee url(../images/service_illust_4.png) no-repeat right 10px bottom -50px;
}
.service_block.block5 {
	background: #eee url(../images/service_illust_5.png) no-repeat right -120px bottom 10px;
}

@media screen and (max-width: 767px) {
	.service_wrap {
		display: block;
	}
	.service_block {
		width: 100%;
		min-height: initial;
		margin-top: 40px;
	}
	.service_block:nth-child(even) {
		margin-left: initial;
	}
	.service_block:nth-child(n+3) {
		margin-top: 20px;
	}
	.service_head {
		padding: 15px 4% 10px;
	}
	.service_ttl {
		font-size: 1.7rem;
	}
	.service_no {
		right: 4%;
		bottom: -10px;
		font-size: 7rem;
	}
	.service_blockInner {
		padding: 30px 4%;
	}
	.service_list {
		font-size: 1.4rem;
	}
	.service_list dt {
		font-size: 1.6rem;
	}
	.service_wrap + .sec_txt {
		margin-top: 40px;
	}
	.service_block.block1 {
		background: #eee url(../images/service_illust_1.png) no-repeat right -20px bottom -30px;
		background-size: 60%;
	}
	.service_block.block2 {
		background: #eee url(../images/service_illust_2.png) no-repeat right -50px bottom -50px;
		background-size: 65%;
	}
	.service_block.block3 {
		background: #eee url(../images/service_illust_3.png) no-repeat right -20px bottom -30px;
		background-size: 50%;
	}
	.service_block.block4 {
		background: #eee url(../images/service_illust_4.png) no-repeat right 10px bottom -20px;
		background-size: 30%;
	}
	.service_block.block5 {
		background: #eee url(../images/service_illust_5.png) no-repeat right -60px bottom -10px;
		background-size: 80%;
	}
}


#sec_price {
	background: #eee;
}
#sec_price .sec_ttl {
	padding-bottom: 50px;
}
.price_balloon {
	position: relative;
	text-align: center;
	padding: 40px 40px 30px;
	background: #fff;
	border-radius: 40px;
}
.price_label {
	position: absolute;
	top: -15px;
	right: 0;
	left: 0;
	margin: auto;
}
.price_label span {
	display: inline-block;
	font-size: 2rem;
	color: #fff;
	letter-spacing: 0.1em;
	font-weight: bold;
	padding: 10px 10px 5px;
	background: #d82219;
}
.price_block {
	display: flex;
	justify-content: space-between;
	margin-top: 80px;
}
.price_txt {
	width: 50%;
	text-align: left;
}
.price_img {
	position: relative;
	width: 46.67%;
}
.price_illust {
	position: absolute;
	top: 50px;
	right: 0;
	left: 0;
	width: 76.07%;
	margin: auto;
}

@media screen and (max-width: 767px) {
	#sec_price .sec_ttl {
		padding-bottom: 40px;
	}
	.price_balloon {
		text-align: center;
		padding: 30px 8% 20px;
	}
	.price_label span {
		font-size: 1.6rem;
		padding: 5px;
	}
	.price_block {
		display: block;
		margin-top: 30px;
	}
	.price_txt {
		width: 100%;
	}
	.price_img {
		width: 100%;
		margin-top: 30px;
		padding-bottom: 40px;
	}
	.price_illust {
		position: absolute;
		top: 20px;
		right: 0;
		left: 0;
		width: 76.07%;
		margin: auto;
	}
}


.contact_block {
	margin: 40px 7.5% 0;
	padding: 60px;
	background: #eee;
	border-radius: 5px;
}
.contact_item {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.contact_item + .contact_item {
	margin-top: 20px;
}
.contact_itemHead {
	width: 28.26%; /* 260px */
	text-align: left;
	font-size: 2rem;
	font-weight: bold;
}
.contact_itemHead span {
	font-size: 1rem;
	color: #d82219;
	margin-left: 1em;
}
.contact_itemInput {
	width: 69.57%; /* 640px */
}
.contact_itemInput input {
	width: 100%;
	font-size: 1.6rem;
	padding: 10px 5px;
	background: #fff;
	border: none;
	border-radius: 5px;
}
.contact_itemInput textarea {
	width: 100%;
	font-size: 1.6rem;
	padding: 10px 5px;
	background: #fff;
	border: none;
	border-radius: 5px;
}
.contact_btns {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}
.contact_btn {
	display: block;
	width: 300px;
	text-align: center;
	font-size: 2.4rem;
	font-weight: bold;
	color: #fff !important;
	margin: 0 10px;
	padding: 15px;
	background: #d82219;
	border: none;
	border-radius: 40px;
	box-shadow: 0 0 10px rgba(0,0,0,0.4);
	cursor: pointer;
}
.contact_btn-back {
	background: #333;
}

@media screen and (max-width: 767px) {
	.contact_block {
		margin: 40px 0 0;
		padding: 30px 4%;
	}
	.contact_item {
		display: block;
	}
	.contact_itemHead {
		width: 100%;
		font-size: 1.4rem;
	}
	.contact_itemInput {
		width: 100%;
		margin-top: 10px;
	}
	.contact_btns {
		display: block;
	}
	.contact_btn {
		width: 90.48%;
		font-size: 2rem;
		margin: 0 auto;
	}
	.contact_btn + .contact_btn {
		margin-top: 20px;
	}
}

/*--------------------------------------------------
	footer
--------------------------------------------------*/
#footer {
	text-align: center;
	color: #fff;
	background: linear-gradient(to right,  #333333 50%,#6edaff 100%);
}
.footer_copy {
	font-size: 1.2rem;
	padding: 45px 0 40px;
}

@media screen and (max-width: 767px) {
	#footer {
		min-height: initial;
	}
	.footer_copy {
		font-size: 1rem;
		padding: 25px 0 20px;
	}
}