@charset "UTF-8";

@font-face {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 400;
	src: url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.woff2) format('woff2'), url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.woff) format('woff'), url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.otf) format('opentype');
	font-display: swap;
}

@font-face {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 700;
	src: url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.woff2) format('woff2'), url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.woff) format('woff'), url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.otf) format('opentype');
	font-display: swap;
}

/*============================================================
common
==============================================================*/
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
}
body {
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
	font-size: 1.8rem;
	line-height: 1.5;
	color: #1258C2;
}
a {
	text-decoration: none;
	color: #1258C2;
}
img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	margin: auto;
}
input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
ul {
	list-style: none;
}
.cf::after {
	content: "";
	display: block;
	clear: both;
}
.center {
	text-align: center;
}
.left {
	float: left;
}
.right {
	float: right;
}
.pc {
	display: inherit;
}
.sp {
	display: none;
}
.inner {
	width: 1000px;
	margin: auto;
}
.inner_large {
	max-width: 1200px;
	width: 100%;
	min-width: 1000px;
	margin: auto;
}
.section {
	padding: 100px 0 80px;
}
.caution {
	font-size: 1.2rem;
}
.h2_ttl_sub {
	position: relative;
	font-family: 'Jost', sans-serif;
	font-size: 1.6rem;
}
.h2_ttl_sub::after {
	content: "";
	position: absolute;
	width: 3px;
	height: 20px;
	left: 0;
	right: 0;
	top: -22px;
	margin: auto;
	background: #1258C2;
}
.h2_ttl {
	margin-bottom: 60px;
	font-size: 3.6rem;
}
.h2_ttl .small {
	font-size: 3rem;
}
.cta_btn {
	position: relative;
	display: inline-block;
	overflow: hidden;
	width: 384px;
	height: 56px;
	text-align: center;
	line-height: 56px;
	font-size: 2.4rem;
	font-weight: bold;
	color: #fff;
	background: linear-gradient(90deg, rgba(242,116,32,1) 0%, rgba(255,198,38,1) 100%);
	border-radius: 28px;
	transition: .2s ease;
}
.cta_btn::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background: linear-gradient(90deg, rgba(255,198,38,1) 0%, rgba(242,116,32,1) 90%, rgba(255,198,38,1) 100%);
	pointer-events: none;
	opacity: 0;
	transition: .2s ease;
}
.cta_btn:hover::before {
	opacity: 1;
}
.cta_btn span {
	position: relative;
	display: block;
	background: url(../img/cta_img.png) no-repeat center right 36px / 36px 20px;
	transition: .2s ease;
}
.cta_btn:hover span {
	background: url(../img/cta_img.png) no-repeat center right 26px / 36px 20px;
}

/*============================================================
content
==============================================================*/
.header {
	position: fixed;
	width: 100%;
	height: 80px;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	overflow: hidden;
	transition: .2s ease;
	box-shadow: 0px 3px 6px 0px rgba(0,0,0,0);
	z-index: 10;
}
.header.change {
	background: #fff;
	box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
}
.header_list {
	display: flex;
	justify-content: space-between;
}
.header_logo {
	margin: 12px auto 12px 0;
}
.header_logo img {
	width: 138px;
}
.header_link {
	margin-right: 30px;
}
.header_link a {
	position: relative;
	display: block;
	height: 80px;
	font-weight: bold;
	line-height: 80px;
}
.header_link a::after {
	content: "";
	position: absolute;
	width: 0;
	height: 4px;
	bottom: 0;
	left: 0;
	background: #1258C2;
	transition: .2s ease;
}
.header_link a:hover::after {
	width: 100%;
}
.header_cta {
	margin: 15px 0;
}
.header_cta .cta_btn {
	width: 200px;
	height: 46px;
	font-size: 1.8rem;
	line-height: 46px;
	border-radius: 23px;
}
.header_cta .cta_btn span {
	background: url(../img/header_cta.png) no-repeat center right 15px / 20px 10px;
}
.header_cta .cta_btn:hover span {
	background: url(../img/header_cta.png) no-repeat center right 10px / 20px 10px;
}

#mv {
	position: relative;
	height: 650px;
	background: url(../img/mv_bg.jpg) no-repeat center;
}
#mv .inner_large {
	position: relative;
	height: 650px;
	padding: 100px 0 0;
}
.mv_ttl {
	margin-bottom: 10px;
	font-size: 3.6rem;
	line-height: 1.2;
}
.mv_ttl .large {
	font-size: 5.1rem;
}
.mv_ttl .sup {
	font-size: 1.5rem;
	vertical-align: text-top;
}
.mv_img01 {
	margin: 0 0 10px;
}
.mv_img01 img {
	width: 418px;
	margin-left: 0;
}
.mv_txt {
	margin-bottom: 40px;
}
.mv_txt span {
	display: inline-block;
	font-size: 6rem;
	font-weight: bold;
	color: #F27420;
	border-bottom: 8px solid #F27420;
}
.mv_txt .sup {
	vertical-align: text-top;
}
.mv_cta {
	margin-bottom: 30px;
}
.mv_img02 {
	position: absolute;
	bottom: 0;
	left: 580px;
	margin: auto;
}
.mv_img02 img {
	width: 212px;
}
#campaign {
	padding: 20px 0;
}
.campaign_img {
	position: relative;
}
.campaign_cta {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 20px;
	margin: auto;
}
#feature {
	background: #F7FAFD;
}
.feature_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.feature_list_item {
	width: 32%;
	margin-bottom: 60px;
}
.feature_list_img {
	position: relative;
	width: 290px;
	height: 290px;
	margin: 0 auto 30px;
	border: 2px solid #1258C2;
	border-radius: 50%;
	background: #fff;
}
.feature_list_img img {
	position: absolute;
	width: 164px;
	top: 50%;
	left: 0;
	right: 0;
	margin: auto;
	transform: translateY(-50%);
}
.feature_list_ttl {
	margin-bottom: 20px;
	font-size: 2.4rem;
}
#merit {
	padding-bottom: 0;
}
.merit_tbl {
	width: 100%;
	margin-bottom: 60px;
	table-layout: fixed;
	border-collapse: collapse;
}
.merit_tbl thead, .merit_tbl tbody {
	border: 4px solid #1258C2;
}
.merit_tbl th, .merit_tbl td {
	padding: 25px 30px;
	border: 2px solid #1258C2;
}
.merit_tbl th {
	font-size: 2rem;
	background: #CFDDF3;
}
.merit_tbl td {
	font-size: 2.4rem;
	font-weight: bold;
}
.merit_tbl .title {
	width: 220px;
	text-align: left;
}
.merit_tbl th.kinta {
	position: relative;
	padding: 0 30px 25px;
	text-align: left;
	font-size: 3.2rem;
	line-height: 1;
	color: #fff;
	background: #1258C2;
	border-left: 6px solid #1258C2;
	border-right: 6px solid #1258C2;
	border-top: 6px solid #1258C2;
}
.merit_tbl th.kinta::after {
	content: "";
	position: absolute;
	height: 14px;
	left: -6px;
	right: -6px;
	top: -20px;
	background: #1258C2;
	border-radius: 5px 5px 0 0;
}
.merit_tbl th.kinta .small {
	font-size: 1.6rem;
}
.merit_tbl td.kinta {
	border-left: 6px solid #1258C2;
	border-right: 6px solid #1258C2;
	background: #FFF8F3 url(../img/merit_img01.png) no-repeat center / 50px;
}
.merit_tbl tbody tr:last-child td.kinta {
	border-bottom: 6px solid #1258C2;
}
.merit_tbl .circle {
	background: url(../img/merit_img02.png) no-repeat center / 50px;
}
.merit_tbl .cross {
	background: url(../img/merit_img03.png) no-repeat center / 50px;
}
.merit_ttl {
	display: inline-block;
	font-size: 5rem;
	color: #F27420;
	border-bottom: 8px solid #F27420;
}
#reso {
	padding: 200px 0 80px;
	background: #F7FAFD url(../img/reso_bg.jpg) no-repeat center top;
}
.reso_box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 40px;
	padding: 40px;
	background: #fff;
	border: 2px solid #1258C2;
}
.reso_img {
	width: 260px;
}
.reso_content {
	width: calc(100% - 300px);
}
.reso_ttl {
	margin-bottom: 10px;
	font-size: 2.4rem;
	letter-spacing: .1em;
}
.reso_ttl .num {
	margin-right: 15px;
	font-family: 'Jost', sans-serif;
	font-size: 3.6rem;
	line-height: 1;
}
.reso_ttl span {
	display: inline-block;
	vertical-align: middle;
}
.reso_txt {
	line-height: 1.65;
	letter-spacing: .1em;
}
.price_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.price_list_item {
	width: 48%;
	margin-bottom: 40px;
}
#cta {
	color: #fff;
	background: #1258c2;
}
.cta_ttl {
	margin-bottom: 40px;
	letter-spacing: .1em;
}
.cta_btn_large {
	width: 626px;
	height: auto;
	padding: 20px 0;
	font-size: 3rem;
	line-height: 1.2;
	border-radius: 100vw;
}
.cta_btn_large .large {
	font-size: 4.4rem;
}
.cta_btn_large span {
	background: url(../img/cta_img_large.png) no-repeat center right 36px / 46px 25px;
}
.cta_btn_large:hover span {
	background: url(../img/cta_img_large.png) no-repeat center right 26px / 46px 25px;
}

.scene_iframe {
	margin: auto;
	text-align: center;
}
#flow {
	background: #F7F7F7;
}
.flow_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flow_list_item {
	position: relative;
	width: 30%;
	max-width: 300px;
	padding: 25px 20px 20px;
	background: #fff;
	border: 2px solid #1258c2;
}
.flow_list_item::after {
	content: "";
	position: absolute;
	width: 2px;
	height: 20px;
	left: 0;
	right: 0;
	top: 0;
	margin: auto;
	background: #1258c2;
}
.flow_list_num {
	text-align: center;
	font-family: 'Jost', sans-serif;
	font-size: 2rem;
	line-height: 1;
}
.flow_list_ttl {
	margin-bottom: 30px;
	text-align: center;
	font-size: 2.4rem;
	letter-spacing: .1em;
}
.flow_list_img {
	margin-bottom: 30px;
}
.flow_list_img img {
	width: 153px;
}
.flow_list_txt {
	font-size: 1.6rem;
	letter-spacing: .1em;
}
.flow_arw {
	position: absolute;
	top: 50%;
	right: -38px;
	margin: auto;
	transform: translateY(-50%);
}
.flow_arw img {
	width: 38px;
}
.product_box {
	display: flex;
	justify-content: space-between;
	padding: 20px;
	border: 1px solid #000000;
}
.product_tbl {
	width: 49%;
	font-size: 1.5rem;
	color: #000000;
	border-collapse: collapse;
	table-layout: fixed;
}
.product_tbl span {
	display: inline-block;
	vertical-align: top;
}
.product_tbl th {
	position: relative;
	width: 100px;
	text-align: left;
	padding: 5px 0;
	vertical-align: top;
	border-bottom: 1px solid #000000;
	border-right: 1px solid #000000;
}
.product_tbl .last {
	border-bottom: none;
}
.product_tbl td {
	position: relative;
	padding: 5px 8px;
	vertical-align: top;
	border-bottom: 1px solid #000000;
}
.product_tbl .bar::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 1px;
	bottom: -1px;
	left: 0;
	margin: auto;
	background: #fff;
}
.product_content {
	display: flex;
	justify-content: space-between;
}
.product_content span {
	width: 50%;
}
.product_bar {
	width: 1px;
	background: #000;
}
.product_caution {
	font-size: 0.8rem;
}

.footer {
	padding: 15px 0;
	font-size: 1.5rem;
	color: #fff;
	background: #1258C2;
}
.footer_link {
	text-decoration: underline;
	color: #fff;
}
.footer_link:hover {
	text-decoration: none;
}

/*============================================================
pagetop
==============================================================*/
.pagetop_box {
	position: relative;
}
.pagetop {
	position: fixed;
	display: block;
	overflow: hidden;
	width: 80px;
	height: 80px;
	bottom: 60px;
	right: 20px;
	background: #1258C2;
	border-radius: 50%;
	pointer-events: none;
	opacity: 0;
	box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
	transition: .2s ease;
	z-index: 5;
}
.pagetop.fixed {
	position: absolute;
}
.pagetop a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	transition: .2s ease;
	z-index: 2;
}
.pagetop a::after {
	content: "";
	position: absolute;
	width: 32px;
	height: 32px;
	top: 16px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	border-right: 6px solid #fff;
	border-top: 6px solid #fff;
	border-radius: 4px;
	transform: rotate(-45deg);
	transition: .2s ease;
}
.pagetop.opacity {
	opacity: 1;
	pointer-events: all;
}
.pagetop a:hover::after {
	top: 0;
}


/*============================================================
breakpoint 768px
==============================================================*/
@media screen and (max-width: 768px) {
	body {
		font-size: 1.4rem;
	}
	.pc {
		display: none;
	}
	.sp {
		display: inherit;
	}
	.left, .right {
		float: none;
	}
	.inner, .inner_large {
		width: 90%;
		max-width: none;
		min-width: auto;
		margin: auto;
		padding: 0;
	}
	.section {
		padding: 50px 0 40px;
	}
	.caution {
		font-size: 1rem;
	}
	.h2_ttl {
		margin-bottom: 30px;
		font-size: 2.4rem;
	}
	.h2_ttl_sub {
		font-size: 1.4rem;
	}
	.h2_ttl_sub::after {
		height: 12px;
		top: -14px;
	}
	.h2_ttl .small {
		font-size: 2rem;
	}
	.cta_btn {
		width: 100%;
		height: 48px;
		line-height: 48px;
		font-size: 1.8rem;
		border-radius: 24px;
	}
	.header {
		height: 60px;
	}
	.header .inner_large {
		width: 100%;
	}
	.header_logo {
		position: relative;
		margin-left: 5%;
		z-index: 100;
	}
	.header_logo img {
		width: 84px;
	}
	.header_link {
		display: none;
	}
	.header_btn {
		position: relative;
		width: 60px;
		height: 60px;
		cursor: pointer;
		z-index: 100;
	}
	.header_btn span {
		position: absolute;
		display: block;
		width: 36px;
		height: 4px;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		background: #1258C2;
		border-radius: 2px;
		pointer-events: none;
		transition: .2s ease;
	}
	.header_btn span:nth-child(1) {
		top: -20px;
	}
	.header_btn span:nth-child(3) {
		bottom: -20px;
	}
	.open .header_btn span:nth-child(1) {
		top: 0;
		transform: rotate(45deg);
	}
	.open .header_btn span:nth-child(2) {
		width: 0;
	}
	.open .header_btn span:nth-child(3) {
		bottom: 0;
		transform: rotate(-45deg);
	}
	.header_menu {
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		padding: 60px 0 0;
		background: #fff;
		z-index: 20;
		opacity: 0;
		transform: scale(.9);
		transition: .2s ease;
		pointer-events: none;
	}
	.open .header_menu {
		opacity: 1;
		transform: scale(1);
		pointer-events: all;
	}
	.header_menu_list_item {
		border-top: 1px solid #F7FAFD;
	}
	.header_menu_list_item a {
		display: block;
		padding: 20px;
		font-size: 1.6rem;
		font-weight: bold;
		background: url(../img/header_menu.png) no-repeat center right 20px / 20px 10px;
	}
	.header_menu_list_cta {
		padding: 20px;
		border-top: 1px solid #F7FAFD;
	}
	#mv {
		height: auto;
		background: url(../img/sp/mv_bg.jpg) no-repeat center top / cover;
	}
	#mv .inner_large {
		height: auto;
		padding: 70px 0 10px;
	}
	.mv_ttl {
		margin-bottom: 5px;
		text-align: center;
		font-size: 5.4vw;
	}
	.mv_ttl .large {
		font-size: 7.6vw;
	}
	.mv_img01 {
		margin: 0 0 10px;
	}
	.mv_img01 img {
		margin: auto;
	}
	.mv_txt {
		margin-bottom: 20px;
		text-align: center;
	}
	.mv_txt span {
		font-size: 9vw;
		border-bottom: 6px solid #F27420;
	}
	.mv_cta {
		margin-bottom: 5px;
	}
	.mv_img03 {
		position: relative;
		width: 37.63%;
		margin-bottom: 10px;
	}
	.mv_img03 img {
		margin-left: 0;
	}
	#campaign {
		padding: 0;
	}
	.campaign_box .inner {
		width: 100%;
	}
	.campaign_cta {
		width: 90%;
		bottom: 3.4vw;
	}
	.feature_list_item {
		width: 48%;
	}
	.feature_list_img {
		width: 145px;
		height: 145px;
		margin: 0 auto 15px;
	}
	.feature_list_img img {
		width: 82px;
	}
	.feature_list_ttl {
		margin-bottom: 10px;
		font-size: 1.8rem;
	}
	.feature_list_item {
		margin-bottom: 30px;
	}
	.merit_tbl_box {
		padding-top: 10px;
		overflow-x: scroll;
	}
	.merit_tbl {
		width: 600px;
		margin-bottom: 30px;
	}
	.merit_tbl thead, .merit_tbl tbody {
		border: 2px solid #1258C2;
	}
	.merit_tbl th, .merit_tbl td {
		padding: 10px;
		border: 1px solid #1258C2;
	}
	.merit_tbl th {
		font-size: 1.4rem;
	}
	.merit_tbl th.kinta {
		padding: 0 0px 10px 10px;
		font-size: 2rem;
		border-left: 4px solid #1258C2;
		border-right: 4px solid #1258C2;
		border-top: 4px solid #1258C2;
	}
	.merit_tbl th.kinta .small {
		font-size: 1.2rem;
	}
	.merit_tbl th.kinta::after {
		height: 6px;
		left: -4px;
		right: -4px;
		top: -10px;
	}
	.merit_tbl td {
		font-size: 1.6rem;
	}
	.merit_tbl .title {
		width: 130px;
	}
	.merit_tbl td.kinta {
		border-left: 4px solid #1258C2;
		border-right: 4px solid #1258C2;
		background: #FFF8F3 url(../img/merit_img01.png) no-repeat center / 25px;
	}
	.merit_tbl tbody tr:last-child td.kinta {
		border-bottom: 4px solid #1258C2;
	}
	.merit_tbl .circle {
		background: url(../img/merit_img02.png) no-repeat center / 25px;
	}
	.merit_tbl .cross {
		background: url(../img/merit_img03.png) no-repeat center / 25px;
	}
	.merit_ttl {
		font-size: 2.4rem;
		border-bottom: 4px solid #F27420;
	}
	#reso {
		padding: 80px 0 40px;
		background: #F7FAFD url(../img/reso_bg.jpg) no-repeat center top -100px;
	}
	.reso_box {
		margin-bottom: 20px;
		padding: 20px;
	}
	.reso_img {
		width: 100%;
		margin-bottom: 10px;
	}
	.reso_content {
		width: 100%;
	}
	.reso_ttl {
		margin-bottom: 10px;
		text-align: center;
		font-size: 1.8rem;
	}
	.reso_ttl .num {
		display: block;
		margin-right: 5px;
		font-size: 2.4rem;
	}
	.price_list_item {
		width: 100%;
		margin-bottom: 20px;
	}
	.cta_btn_large {
		height: auto;
		line-height: 1.2;
		border-radius: 100vw;
	}
	.cta_btn_large .large {
		font-size: 2.4rem;
	}
	.cta_btn_large span, .cta_btn_large span:hover {
		background: url(../img/cta_img.png) no-repeat center right 26px / 36px 20px;
	}
	.scene_iframe {
		position: relative;
		width: 100%;
		padding-top: 56.25%;
	}
	.scene_iframe iframe {
		position: absolute;
		top: 0;
		right: 0;
		width: 100% !important;
		height: 100% !important;
	}
	.flow_list_item {
		width: 100%;
		max-width: none;
		margin-bottom: 20px;
		padding: 20px 15px;
	}
	.flow_list_item::after {
		height: 15px;
	}
	.flow_list_num {
		font-size: 1.8rem;
	}
	.flow_list_ttl {
		margin-bottom: 15px;
		font-size: 2rem;
	}
	.flow_list_img {
		margin-bottom: 15px;
	}
	.flow_list_txt {
		font-size: 1.4rem;
	}
	.flow_arw {
		display: none;
	}
	#product {
		padding: 50px 0 120px;
	}
	.product_tbl {
		width: 100%;
		font-size: 1.2rem;
	}
	.product_tbl th {
		width: 80px;
	}
	.product_bar {
		width: 100%;
		height: 1px;
	}
	.product_box {
		flex-wrap: wrap;
		padding: 10px;
	}
	.pagetop {
		width: 60px;
		height: 60px;
		bottom: 30px;
		right: 10px;
	}
	.pagetop a::after {
		width: 24px;
		height: 24px;
		top: 8px;
	}
}