@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100..900&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Sawarabi+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans+SC:wght@100..900&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url("/assets/css/font-awesome.min.css");

@media (prefers-reduced-motion: no-preference) {
html:focus-within {
	scroll-behavior: smooth;
	}
}

* {
	box-sizing: border-box;
}

html {
	color: #333;
	font-family: "Roboto","Noto Sans JP",  sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}

a {
	color: #3a77bb;
	text-decoration: none;
	transition: .3s ease;
	}

a:hover {
	color: #44b0ff;
	}

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

.sp {
	display: none;
	}

/* headerここから */
.header {
	display: none;
}
/* headerここまで */

/* footerここから */
footer {
	position: relative;
	display: block;
	padding: 100px 0 30px;
	text-align: center;
	background: #2E9F92;
}

footer .logo {
	width: 312.54px;
	height: 50px;
	margin: 0 auto 70px;
}

footer p {
	margin: 0 0 70px;
	color: #fff;
	font-size: 16px;
	font-weight: 300;
}
/* footerここまで */

/* mainここから */
main {
	position: relative;
	display: block;
}
/* mainここまで */

/* 共通ボタンここから */
a.bt {
	display: block;
	width: 120px;
	margin: 0 auto 20px;
	padding: 8px 0;
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	line-height: 1em;
	text-align: center;
	background: #1B9FFF;
	border: 1px solid #1B9FFF;
	border-radius: 15px;
	transition: .3s ease;
}

a.bt:hover {
	color: #1B9FFF;
	background: #fff;
	border: 1px solid #1B9FFF;
}
/* 共通ボタンここまで */

/* CVボタンここから */
.bt_cv {
	margin: 0;
	padding: 50px 4vw;
	background: #fff;
}
.bt_cv a {
	display: block;
	width: 400px;
	margin: 0 auto;
	padding: 28px 0;
	color: #fff;
	font-size: 24px;
	font-weight: 400;
	line-height: 1em;
	text-align: center;
	background: #3a77bb;
	border: 1px solid #3a77bb;
	border-radius: 50px;
	transition: .3s ease;
}
.bt_cv a:hover {
	color: #3a77bb;
	background: #fff;
	border: 1px solid #3a77bb;
}
/* CVボタンここまで */

.pagetop {
	position: fixed;
	right: 30px;
	bottom: 30px;
	height: 40px;
	width: 40px;
	background: #fff;
	border: solid 2px #3a77bb;
	border-radius: 50%;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 2;
	cursor: pointer;
}
.pagetop__arrow {
	display: block;
	height: 10px;
	width: 10px;
	border-top: 3px solid #3a77bb;
	border-right: 3px solid #3a77bb;
	transform: translateY(20%) rotate(-45deg);
}



/* タブレットここから */
@media screen and (max-width: 1024px) {
}
/* タブレットここまで */



/* スマホここから */
@media screen and (max-width: 767.98px) {

.header {
	position: fixed;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 50px;
	z-index: +1;
	}

.hamburger-menu {
	position: absolute;
	right: 0px;
	top: 0px;
	display: block;
	width: 50px;
	height: 50px;
	border: none;
	background: transparent;
	appearance: none;
	padding: 0;
	cursor: pointer;
	z-index: 99999;
}

.hamburger-menu__bar {
	display: inline-block;
	width: 44%;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 50%;
	box-shadow: 0 1px 1px rgba(0,0,0,.5), 0 0 3px rgba(0,0,0,.25);
	transform: translateX(-50%);
	transition: .5s;
}
.hamburger-menu__bar:first-child {
	top: 16px;
}
.hamburger-menu__bar:nth-child(2) {
	top: 24px;
}
.hamburger-menu__bar:last-child {
	top: 32px;
}
.hamburger-menu--open .hamburger-menu__bar {
	top: 50%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
	display: none;
}

.navigation {
	display: none;
	background: #3a77bb;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	padding: 0;
	z-index: 9999;
}

.navigation__list {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

.navigation__list li {
	display: block;
	margin: 0;
	padding: 0;
	height: auto;
	border-bottom: solid 1px #ccc;
}

.navigation__list li a {
	display: block;
	color: #fff;
	background: none;
	font-size: 16px;
	font-weight: 400;
	padding: 24px 20px;
	transition: .5s;
}
@media (hover: hover) and (pointer: fine) {
	.navigation__list li a:hover {
		color: #fff;
		background: #1B9FFF;
	}
}

.navigation__list li a:before {
	content: "\f0a9" !important;
	font-family: FontAwesome;
	padding: 0 5px 0 0;
}

.navigation__list li a.open:before {
	content: "\f2d2" !important;
	font-family: FontAwesome;
	padding: 0 5px 0 0;
}

.subnav_list {
	display: block;
	position: relative;
	left: auto;
	top: auto;
	padding-bottom: 20px;
	opacity: 1;
}

.navigation__list-item:hover .subnav_list {
	top: 0px;
}

.subnav_list-item a {
	display: block;
	margin: 0;
	padding: 10px 24px;
	color: #1B9FFF;
	background: none;
	box-shadow: none;
	font-size: 16px;
	font-weight: 300;
	text-decoration: none;
	white-space: nowrap;
	transition: .3s ease;
}

footer {
	padding: 50px 0 20px;
}

footer ul {
	display: none;
}

footer p {
	margin: 0 0 50px;
	font-size: 14px;
	line-height: 2em;
}

footer p span {
	display: none;
}

.sp {
	display: inline;
	}

/* 共通ボタンここから */
a.bt {
	width: 200px;
	margin: 0 auto 40px;
	padding: 16px 0;
	font-size: 16px;
	border-radius: 30px;
}
/* 共通ボタンここまで */

/* CVボタンここから */
.bt_cv {
	padding: 10vw 4vw;
}
.bt_cv a {
	width: 270px;
	padding: 18px 0;
	font-size: 4vw;
}
/* CVボタンここまで */

}
/* スマホここまで */





#mv {
	background: url("../img/mv_bg.jpg") center bottom no-repeat;
	background-size: cover;
}
@media screen and (max-width: 767.98px) {
#mv {
	background: url("../img/mv_bg.jpg") right bottom no-repeat;
	}
}
#mv .inner {
	position: relative;
	width: 100%;
	max-width: 1000px;
	height: 600px;
	margin: 0 auto;
	padding: 0;
}
@media screen and (max-width: 1024px) {
#mv .inner {
	height: 440px;
	}
}
@media screen and (max-width: 767.98px) {
#mv .inner {
	height: 115vw;
	}
}
#mv img {
	display: block;
	width: 100%;
}
#mv .company_logo {
	position: absolute;
	left: 0px;
	top: 30px;
	width: 300px;
	height: 48px;
}
@media screen and (max-width: 1024px) {
#mv .company_logo {
	left: 20px;
	top: 20px;
	width: 200px;
	height: 32px;
	}
}
@media screen and (max-width: 767.98px) {
#mv .company_logo {
	left: 4vw;
	top: 4vw;
	}
}
#mv h1 {
	position: absolute;
	left: 0px;
	top: 80px;
	display: block;
	width: 700px;
	margin: 0;
	padding: 0;
}
@media screen and (max-width: 1024px) {
#mv h1 {
	left: 50px;
	top: 30px;
	width: 600px;
	}
}
@media screen and (max-width: 768px) {
#mv h1 {
	left: 40px;
	top: 50px;
	width: 520px;
	}
}
@media screen and (max-width: 767.98px) {
#mv h1 {
	left: 5vw;
	top: 14vw;
	width: 90vw;
	}
}
#mv img.package {
	position: absolute;
	left: 0px;
	top: 380px;
	display: block;
	width: 300px;
}
@media screen and (max-width: 1024px) {
#mv img.package {
	left: 20px;
	top: 280px;
	width: 210px;
	}
}
@media screen and (max-width: 768px) {
#mv img.package {
	left: 40px;
	top: 310px;
	width: 170px;
	}
}
@media screen and (max-width: 767.98px) {
#mv img.package {
	left: 5vw;
	top: 58vw;
	width: 50vw;
	}
}
#mv img.device {
	position: absolute;
	right: 60px;
	top: 0px;
	display: block;
	width: 230px;
}
@media screen and (max-width: 1024px) {
#mv img.device {
	right: 80px;
	top: -70px;
	width: 200px;
	}
}
@media screen and (max-width: 768px) {
#mv img.device {
	right: 70px;
	top: 0px;
	width: 170px;
	}
}
@media screen and (max-width: 767.98px) {
#mv img.device {
	right: 2vw;
	top: 4vw;
	width: 43vw;
	}
}
#mv .logo_BS {
	position: absolute;
	right: 0px;
	bottom: 20px;
	width: 90px;
}
@media screen and (max-width: 1024px) {
#mv .logo_BS {
	right: 20px;
	width: 80px;
	}
}
@media screen and (max-width: 768px) {
#mv .logo_BS {
	right: 20px;
	width: 70px;
	bottom: 30px;
	}
}
@media screen and (max-width: 767.98px) {
#mv .logo_BS {
	right: auto;
	left: 5vw;
	bottom: 5vw;
	width: 15vw;
	}
}
#mv .pakitto {
	position: absolute;
	right: 210px;
	top: 510px;
	display: block;
	width: 200px;
}
@media screen and (max-width: 1024px) {
#mv .pakitto {
	right: 210px;
	top: 380px;
	width: 150px;
	}
}
@media screen and (max-width: 768px) {
#mv .pakitto {
	right: 180px;
	top: 380px;
	width: 120px;
	}
}
@media screen and (max-width: 767.98px) {
#mv .pakitto {
	right: 29vw;
	top: auto;
	bottom: 5vw;
	width: 35vw;
	}
}
#mv .newidea {
	position: absolute;
	right: 0px;
	top: 103px;
	display: block;
	width: 130px;
}
@media screen and (max-width: 1024px) {
#mv .newidea {
	right: 40px;
	top:40px;
	width: 100px;
	}
}
@media screen and (max-width: 768px) {
#mv .newidea {
	right: 30px;
	top: 50px;
	width: 85px;
	}
}
@media screen and (max-width: 767.98px) {
#mv .newidea {
	right: 2vw;
	top: 34vw;
	width: 16vw;
	}
}
#mv .copy_pakitto {
	position: absolute;
	right: 220px;
	top: 190px;
	display: block;
	width: 180px;
}

#mv p {
	position: absolute;
	display: block;
}
#mv p.copy1 {
	left: 50px;
	top: 260px;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 60px;
	font-family:  serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1;
	text-align: center;
	text-shadow: 0 0 2px rgba(0,0,0,.5),0 0 1px rgba(0,0,0,.5),0 0 5px rgba(0,0,0,.5),0 0 15px rgba(0,0,0,.5);
}
@media screen and (max-width: 1024px) {
#mv p.copy1 {
	left: 200px;
	top: 210px;
	font-size: 50px;
	}
}
@media screen and (max-width: 768px) {
#mv p.copy1 {
	left: 60px;
	top: 190px;
	font-size: 40px;
	}
}
@media screen and (max-width: 767.98px) {
#mv p.copy1 {
	left: 6vw;
	top: 38vw;
	font-size: 7vw;
	}
}
#mv p.copy1 span {
	font-size: 1.25em;
}

#mv p.copy2 {
	left: 80px;
	top: 340px;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 60px;
	font-family:  serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1;
	text-align: center;
	text-shadow: 0 0 2px rgba(0,0,0,.5),0 0 1px rgba(0,0,0,.5),0 0 5px rgba(0,0,0,.5),0 0 15px rgba(0,0,0,.5);
}
@media screen and (max-width: 1024px) {
#mv p.copy2 {
	left: 250px;
	top: 280px;
	font-size: 50px;
	}
}
@media screen and (max-width: 768px) {
#mv p.copy2 {
	left: 70px;
	top: 250px;
	font-size: 40px;
	}
}
@media screen and (max-width: 767.98px) {
#mv p.copy2 {
	left: 8vw;
	top: 48vw;
	font-size: 7vw;
	}
}
#mv p.copy2 span {
	font-size: 1.25em;
}

#mv p.date {
	left: 515px;
	top: 40px;
	width: fit-content;
	margin: 0;
	padding: 8px 20px;
	font-size: 18px;
	font-weight: 400;
	font-style: normal;
	line-height: 1;
	text-align: center;
	background: #fff;
	border-radius: 10px;
}
@media screen and (max-width: 767.98px) {
#mv p.date {
	left: auto;
	right: 13vw;
	top: 5vw;
	padding: 5px 10px;
	font-size: 11px;
	border-radius: 5px;
	}
}

#mv p.notice {
	right: 180px;
	bottom: 0px;
	display: block;
	width: 100px;
	height: 100px;
	padding: 22.5px 0 0;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.7em;
	text-align: center;
	background: #e61f19;
	border-radius: 100px;
	z-index: +1;
}
#mv p.notice span {
	display: block;
	font-size: 1.25em;
	line-height: 1.2em;
}
#mv p.notice span span {
	display: block;
	font-size: .5em;
}
@media screen and (max-width: 1024px) {
#mv p.notice {
	right: 140px;
	bottom: -15px;
	scale: .8;
	}
}
@media screen and (max-width: 768px) {
#mv p.notice {
	scale: .7;
	}
}
@media screen and (max-width: 767.98px) {
#mv p.notice {
	right: 90px;
	scale: .6;
	}
}

#mv nav {
	padding: 20px 0;
	background: rgba(255,255,255,.5);
}
#mv nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0;
}
#mv nav ul li {
	display: block;
	margin: 0;
	padding: 0;
}
@media screen and (max-width: 767.98px) {
#mv nav ul li {
	min-width: 45%;
	}
}
#mv nav ul li a {
	display: block;
	margin: 0;
	padding: 10px 20px;
	color: #333;
	font-size: 16px;
	text-align: center;
	background: #fff;
	border: 2px solid #3a77bb;
	border-radius: 30px;
}
@media screen and (max-width: 767.98px) {
#mv nav ul li a {
	font-size: 4vw;
	}
}

#mv nav ul li a:after {
	content: "\f078" !important;
	font-family: FontAwesome;
	padding: 0 0 0 5px;
	color: #3a77bb;
}

#mv nav ul li a.open:after {
	content: "\f2d2" !important;
	font-family: FontAwesome;
	padding: 0 0 0 5px;
	color: #3a77bb;
}

#movie {
	padding: 50px 4vw;
	background-image: radial-gradient(circle, rgba(255, 195, 0, 1), rgba(255, 128, 0, 1));
}
#movie h2 {
	display: block;
	margin: 0;
	padding: 30px 0;
	font-size: 32px;
	font-weight: 500;
	text-align: center;
}
@media screen and (max-width: 767.98px) {
#movie h2 {
	font-size: 5vw;
	}
}
#movie .youtube {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	aspect-ratio: 16 / 9;
	background: #000;
	box-shadow: 0 1px 3px rgba(0,0,0,.5);
	border-radius: 10px;
}
.youtube iframe {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border-radius: 10px;
}

/* #problem */
#problem {
	padding: 50px 4vw;
	background: #4C4C4C;
	}

#problem h2 {
	display: block;
	margin: 0;
	padding: 30px 0;
	color: #fff;
	font-size: 32px;
	font-weight: 500;
	text-align: center;
}
@media screen and (max-width: 767.98px) {
#problem h2 {
	font-size: 5vw;
	}
}
#problem div {
	background: #fff;
	width: 100%;
	max-width: 900px;
	margin: 0 auto 30px;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 1px 5px rgba(0,0,0,.25);
	}
#problem h3 {
	display: block;
	margin: 0 0 .5em;
	padding: 10px;
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	background-image: linear-gradient(90deg, #3a77bb, #003d73);
	border-radius: 5px;
}
#problem p {
	display: block;
	margin: 0 0 .25em;
	padding: 0;
	font-size: 16px;
	line-height: 2em;
	}
@media screen and (max-width: 767.98px) {
#problem p {
	width: 100%;
	font-size: 4vw;
	}
}
#problem img {
	display: block;
	width: 100%;
	border-radius: 10px;
	margin: 0 0 1em;
	}
#problem a {
	display: block;
	width: fit-content;
	margin: 0 auto 30px;
	padding: 15px 30px;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	text-align: center;
	background: #3a77bb;
	border-radius: 50px;
	transition: .3s ease;
	}

#problem a:after {
	content: "\f2d2" !important;
	font-family: FontAwesome;
	padding: 0  0 0 5px;
}

/* #feature */
#feature {
	padding: 50px 4vw;
	background-image: linear-gradient(0deg, #cedfef, #D3EDFB);
	}
#feature h2 {
	display: block;
	margin: 0;
	padding: 30px 0;
	color: #333;
	font-size: 32px;
	font-weight: 500;
	text-align: center;
}
@media screen and (max-width: 767.98px) {
#feature h2 {
	font-size: 5vw;
	}
}
#feature h3 {
	display: block;
	margin: 0 0 .5em;
	padding: 10px;
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	background-image: linear-gradient(90deg, #3a77bb, #003d73);
	border-radius: 5px;
}
#feature h4 {
	display: block;
	margin: 0 0 .5em;
	padding: 0;
	font-size: 20px;
	font-weight: 500;
}
#feature h5 {
	display: block;
	margin: 0 0 .5em;
	padding: 0;
	color: #3a77bb;
	font-size: 18px;
	font-weight: 500;
}
#feature div {
	background: #fff;
	width: 100%;
	max-width: 900px;
	margin: 0 auto 30px;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 1px 5px rgba(0,0,0,.25);
	}
#feature img {
	display: block;
	width: 100%;
	margin: 0 auto .5em;
	}
#feature ol {
	display: block;
	margin: 0;
	padding: 0;
	}
#feature li {
	position: relative;
	display: block;
	margin: 0 0 1em;
	padding: .25em 0 .25em 30px;
	font-size: 16px;
	line-height: 1.5em;
	}
#feature li span.num {
	position: absolute;
	left: 0;
	top: .25em;
	display: block;
	width: 25px;
	height: 25px;
	margin: 0:
	padding: 0;
	color: #fff;
	font-size: 16px;
	line-height: 25px;
	text-align: center;
	background: #0075c2;
	border-radius: 50%;
	}
#feature li span.ppo {
	color: #cd0000;
	font-weight: 500;
	}
#feature li span.peo {
	color: #006dff;
	font-weight: 500;
	}
#feature p {
	display: block;
	margin: 0 0 1em;
	padding: 0;
	font-size: 16px;
	line-height: 1.5em;
	}
@media screen and (max-width: 767.98px) {
#feature p {
	font-size: 4vw;
	}
}
#feature .feature1 .prize {
	margin: 0;
	padding: 10px;
	box-shadow: none;
	border-radius: 5px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background: #e3f6ff;
	}
#feature .feature1 .prize div {
	width: 60%;
	margin: 0;
	padding: 20px;
	box-shadow: none;
	border-radius: 0;
	background: none;
	}
@media screen and (max-width: 767.98px) {
#feature .feature1 .prize div {
	width: 100%;
	padding: 10px;
	}
}
#feature .feature1 .prize img {
	display: block;
	width: 40%;
	margin: 0;
	}
@media screen and (max-width: 767.98px) {
#feature .feature1 .prize img {
	width: 100%;
	}
}
#feature .feature4 img {
	float: right;
	width: 35%;
	}
@media screen and (max-width: 767.98px) {
#feature .feature4 img {
	float: none;
	width: 80%;
	margin: 20px auto;
	}
}

#feature .feature5 img {
	float: right;
	width: 50%;
	}
@media screen and (max-width: 767.98px) {
#feature .feature5 img {
	float: none;
	width: 100%;
	}
}

/* #use */
#use {
	padding: 50px 4vw;
	background-image: linear-gradient(0deg, #cedfef, #D3EDFB);
	}
#use h2 {
	display: block;
	margin: 0;
	padding: 30px 0;
	color: #333;
	font-size: 32px;
	font-weight: 500;
	text-align: center;
}
@media screen and (max-width: 767.98px) {
#use h2 {
	font-size: 5vw;
	}
}
#use h3 {
	display: block;
	margin: 0 0 .5em;
	padding: 10px;
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	background-image: linear-gradient(90deg, #3a77bb, #003d73);
	border-radius: 5px;
}
#use div {
	background: #fff;
	width: 100%;
	max-width: 900px;
	margin: 0 auto 30px;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 1px 5px rgba(0,0,0,.25);
	}
#use img {
	display: block;
	width: 100%;
	margin: 0 auto .5em;
	}

/* #spec */
#spec {
	padding: 50px 4vw;
	background-image: linear-gradient(0deg, #cedfef, #D3EDFB);
	}
#spec h2 {
	display: block;
	margin: 0;
	padding: 30px 0;
	color: #333;
	font-size: 32px;
	font-weight: 500;
	text-align: center;
}
@media screen and (max-width: 767.98px) {
#spec h2 {
	font-size: 5vw;
	}
}
#spec div.package {
	display: block;
	width: 100%;
	max-width: 500px;
	margin: 0 auto 30px;
	}
#spec div.box img {
	display: block;
	}
#spec table {<button id="js-pagetop" class="pagetop" style="display: flex;">…</button>flex
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	background: #f0f8ff;
	border: 0;
	border-collapse: collapse;
	}
#spec tr:nth-child(even) {
	background: #f4fbff;
	}
#spec table th {
	padding: 20px 0 20px 20px;
	font-size: 16px;
	line-height: 1.8em;
	white-space: nowrap;
	}
#spec table td {
	padding: 20px;
	font-size: 16px;
	line-height: 1.8em;
	}
#spec table th span {
	display: block;
	font-size: 12px;
	font-weight: 300;
	}
#spec table td span.notice {
	font-size:  .7em;
	}

#faq {
	padding: 50px 4vw;
	background-image: linear-gradient(0deg, #cedfef, #D3EDFB);
	}
#faq h2 {
	display: block;
	margin: 0;
	padding: 30px 0;
	color: #333;
	font-size: 32px;
	font-weight: 500;
	text-align: center;
}
@media screen and (max-width: 600px) {
#faq h2 {
	font-size: 5vw;
	}
}
#faq p {
	display: block;
	margin: 0 0 30px;
	padding: 0;
	font-size: 16px;
	text-align: center;
}
@media screen and (max-width: 767.98px) {
#faq p {
	font-size: 4vw;
	line-height: 1.8em;
	}
}
#faq .checkbox {
	display: none;
}
#faq div {
	width: 100%;
	max-width: 900px;
	margin: 0 auto 10px;
}
#faq dl {
	display: block;
	margin: 0;
	padding: 0;
}
#faq dt {
	color: #fff;
	background-image: linear-gradient(90deg, #3a77bb, #003d73);
	border-radius: 10px 10px;
}
#faq dt label {
	position: relative;
	display: block;
	padding: 10px 40px;
	line-height: 1.5em;
	cursor: pointer;
}
#faq dt label::before {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 40px;
	padding: 10px 0;
	content: 'Q';
	color: #fff;
	text-align: center;
	border-radius: 10px 0 0 10px;
}
#faq dt label::after {
	content:'';
	display: block;
	border-left:7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 10px solid #fff;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0,-50%);
	transition:.4s .4s;
}
#faq dd {
	position: relative;
	height: 0;
	transition:.4s;
	overflow: hidden;
	width: 100%;
	margin: 0;
	padding: 0 20px 0 40px;
	font-size: 16px;
	line-height: 1.8em;
	background: #fff;
	border-radius: 0 0 10px 10px;
	box-shadow: 0 1px 3px rgba(0,0,0,.5);
}
#faq .checkbox:checked ~ dl dd::before {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 40px;
	padding: 10px 0;
	content: 'A';
	color: #1c61a0;
	text-align: center;
	opacity: 0;
	transition: .4s .4s;
}
#faq .checkbox:checked ~ dl dt {
	border-radius: 10px 10px 0 0;
}
#faq .checkbox:checked ~ dl dt label::before {
	border-radius: 10px 0 0 0;
}
#faq .checkbox:checked ~ dl dt label::after {
	transform: translate(0,-50%) rotate(-180deg);  
}
#faq .checkbox:checked ~ dl dd {
	height: auto;
	padding: 10px 20px 10px 40px;
}
#faq .checkbox:checked ~ dl dd::before {
	opacity: 1;
}

#download {
	padding: 50px 4vw;
	background-image: linear-gradient(0deg, #cedfef, #D3EDFB);
}
#download h2 {
	display: block;
	margin: 0;
	padding: 30px 0;
	font-size: 32px;
	font-weight: 500;
	text-align: center;
}
@media screen and (max-width: 767.98px) {
#download h2 {
	font-size: 5vw;
	}
}
#download p {
	display: block;
	margin: 0 0 30px;
	padding: 0;
	font-size: 16px;
	text-align: center;
}
@media screen and (max-width: 767.98px) {
#download p {
	font-size: 4vw;
	line-height: 1.8em;
	}
}
#download div {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	padding: 0;
}
#download div a {
	display: block;
	width: 45%;
}
#download div img {
	display: block;
	width: 100%;
}

/* pagetitle */
#pagetitle {
	margin: 0;
	padding: 0;
	background: url("../img/mv_bg.jpg") center center no-repeat;
	background-size: cover;
	}
#pagetitle div {
	position: relative;
	width: 100%;
	padding: 70px 0;
	text-align: center;
	background: rgba(255,255,255,.7);
	}
@media screen and (max-width: 767.98px) {
#pagetitle div {
	padding: 15vw 0;
	}
}
#pagetitle h1 {
	display: block;
	margin: 0;
	padding: 0;
	font-size: 32px;
	line-height: 1em;
	letter-spacing: .1em;
	}
@media screen and (max-width: 767.98px) {
#pagetitle h1 {
	font-size: 6vw;
	}
}
#pagetitle img {
	position: absolute;
	left: 10px;
	top: 10px;
	width: 200px;
	}
@media screen and (max-width: 767.98px) {
#pagetitle img {
	width: 150px;
	}
}

/* .example */
.example {
	padding: 4em 4vw;
	background-image: linear-gradient(0deg, #cedfef, #D3EDFB);
	}
.example h2 {
	display: block;
	margin: 0 0 .5em;
	padding: 10px;
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	background-image: linear-gradient(90deg, #3a77bb, #003d73);
	border-radius: 5px;
}
.example h2 span {
	display: block;
	font-size: .7em;
}
@media screen and (max-width: 767.98px) {
.example h2 {
	font-size: 5vw;
	}
}
.example .inner {
	display: block;
	background: #fff;
	width: 100%;
	max-width: 900px;
	margin: 0 auto 2em;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 1px 5px rgba(0,0,0,.25);
	}
.example p {
	font-size: 16px;
	line-height: 1.8em;
	}
.example .notice {
	font-size: 12px;
	}
.example ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 0 1em;
	padding: 0;
	}
.example ul li {
	display: block;
	width: 50%;
	padding: 30px;
	}
@media screen and (max-width: 767.98px) {
.example ul li {
	width: 100%;
	}
}

.youtube-wrapper {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.youtube-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}