@charset "utf-8";
/* CSS Document */
/*== 全体 ===================================================================================================*/
:root{
	--blue: #3F6184;
	--white: #fff;
	--orange:#FF8800;
	--light-blue:#A2C2D0;
	--button-hover: #A2C2D0;
	--line-green: #00B900;
	--line-green-hover: #62EC62;
	--bg-white: #fff;
}

html {
	height: 100%;
	width: 100%;
	font-size: 62.5%;
	font-family: 'Roboto', 'Noto Sans JP', sans-serif;
	scroll-behavior: smooth;
}
body {
	font-size: 1.6em;
	color: #111;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 1px;
	width: 100%;
}
@media screen and (max-width: 767px) {
	.pc {
		display: none !important;
	}
}
@media screen and (min-width: 768px) {
	.sp {
		display: none !important;
	}
}
ul{
	list-style: none;
}
a{
	text-decoration: none;
}
body{
	background-image: url("../images/back_img-01.svg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}
#main_wrapper{
	display: grid;
	grid-template-columns: 300px 390px 300px;
	grid-template-rows: 1fr;
	grid-column-gap: 2em;
	grid-row-gap: 0px;
	place-content: center;
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
}
@media screen and (max-width:767px){
	#main_wrapper{
		grid-template-columns: 1fr;
	}
}
.notes{
	font-size: .75em;
}
.fadeIn {
	transform: translate3d(0, 50px, 0);
	transition: 1s;
	opacity: 0;
}
.fadeIn.animated {
	transform: translate3d(0, 0, 0);
	opacity: 1;
}
/*== 左 ===================================================================================================*/
#main_left{
	position: relative;
	height: 100vh;
	order: 1;
}
#main_left section.wrap{
	position: fixed;
	top: 50%;
}
#main_left section.wrap img{
	width: 100%;
}
/*== 右（ナビ） ===================================================================================================*/
#main_right{
	position: relative;
	height: 100vh;	
	order: 3;
}
#main_right section.wrap{
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
}
#main_right section.wrap ul li{
	margin-bottom: 2em;
}
#main_right section.wrap ul li:last-child{
	margin-bottom: 0;
}
#main_right section.wrap ul li a{
	display: inline-block;
	background-color: var(--blue);
	color: #fff;
	padding: .5em 1em;
	border-radius: 3em;
	font-size: 1.25em;
	font-weight: bold;
	white-space: nowrap;
	box-shadow: 0 0 3px 2px rgba(0,0,0,0.15);
}
#main_right section.wrap ul li a:hover{
	background-color: var(--button-hover);
}
#main_right section.wrap ul li a.line{
	background-color: var(--line-green);
}
#main_right section.wrap ul li a.line:hover{
	background-color: var(--line-green-hover);
}

/*-- ハンバーガーメニュー --------------------------------------------*/
#sp_menu{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	background: #fff;
	box-shadow: 0 0 3px 2px rgba(0,0,0,0.2);
}
#js-header .p-header {
}

#js-header .p-header__inner {
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: inherit;
	position: relative;
}

#js-header .p-header__title {
	z-index: 997;
}

#js-header .p-header__title a {
	text-decoration: none;
}
#js-header .p-header__title a img{
	width: 150px;
	height: auto;
}
#js-header .p-header__nav {
	position: absolute;
	right: -5px;
	top: 0;
	width: 75%;
	min-width: 25em;
	height: 100vh;
	transform: translateX(100%);
	background-color: #F5F8FA;
	transition: ease .4s;
	z-index: 999;
	box-shadow: 0 0 2px 2px rgba(0,0,0,0.2);
	display: flex;
	justify-content: center;
	align-items: center;
}
#js-header .p-header__nav-item {
}

#js-header .p-header__nav-item a {
	color: #fff;
	display: inline-block;
	text-align: center;
	margin-bottom: 24px;
	font-weight: bold;
	font-size: 1em;
	text-decoration: none;
	background-color: var(--blue);
	border-radius: 3em;
	padding: .5em 1em;
	padding: 1em 2em;
	width: max-content;
}
#js-header .p-header__nav-item a.line{
	background-color: var(--line-green);
}

#js-header .p-header__nav-item:last-child a {
	margin-bottom: 0;
}

#js-header.p-header__hamburger {
	width: 24px;
}

#js-header .hamburger {
	background-color: transparent;
	border-color: transparent;
	z-index: 9999;
	cursor: pointer;
	padding: 1em;
}

#js-header .hamburger span {
	width: 24px;
	height: 2px;
	background-color: var(--blue);
	position: relative;
	transition: ease .4s;
	display: block;
}

#js-header .hamburger span:nth-child(1) {
	top: 0;
}

#js-header .hamburger span:nth-child(2) {
	margin: 8px 0;
}

#js-header .hamburger span:nth-child(3) {
	top: 0;
}

#js-header .p-header__nav.active {
	transform: translateX(0);
}

#js-header .hamburger.active span:nth-child(1) {
	top: 5px;
	transform: rotate(45deg);
}

#js-header .hamburger.active span:nth-child(2) {
	opacity: 0;
}

#js-header .hamburger.active span:nth-child(3) {
	top: -15px;
	transform: rotate(-45deg);
}

#sp_menu .p-header__nav-box-mask.active {
	position: fixed;
	width: 100vw;
	height: 100vh;
	z-index: 998;
	background: rgba(0,0,0,0.55);
	transition: ease .4s;
}

/*== 中央（メインコンテンツ） ===================================================================================================*/
#main_center{
	background-color: #F5F8FA;
	border-left: 8px solid #fff;
	border-right: 8px solid #fff;
	box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.16);
	order: 2;
}
#main_center .inner{
	padding: 0 1em;
}
#main_center .inner_in{
	padding: 4em 0;
}
#main_center img:not(:last-child),
#main_center video:not(:last-child){
	margin-bottom: 1em;
}
#main_center img,
#main_center video{
	width: 100%;
}
#main_center p{
	line-height: 1.5;
}
#main_center p:not(:last-child){
	margin-bottom: 1em;
}
#main_center .al-c{
	text-align: center;
}
#main_center .blue{
	color: var(--blue);
}
#main_center .bg_white{
	background-color: var(--bg-white);
}
#main_center h2{
	color: var(--blue);
	font-size: 3em;
	text-align: center;
	margin-bottom: 1.25em;
	line-height: 1;
	font-weight: 400;
}
#main_center h2 span{
	font-size: .4em;
	font-weight: bold;
}
#main_center h3{
	text-align: center;
	font-size: 2em;
	font-weight: 400;
	margin-bottom: 1.25em;
	line-height: 1.5;
}
#main_center h4{
	font-size: 1.25em;
	margin-bottom: 1em;
}
#main_center .line_button{
	background-color: var(--line-green);
	color: var(--white);
	border-radius: 3em;
	padding: 0.5em 1em;
	width: 100%;
	display: block;
	text-align: center;
	font-size: 1.25em;
	font-weight: bold;
}
#main_center .line_button:hover{
	background-color: var(--line-green-hover);
}
@media screen and (max-width:767px){
	#main_center{
		margin-top: 45px;
	}
}
/*-- #MV ---------------------------------------------------------------------------------------*/
#main_center #mv{
}
/*-- #intro ---------------------------------------------------------------------------------------*/
#main_center #intro .logo{
	width: 10em;
	margin: 0 auto 2em;
}
#main_center #intro h1{
	line-height: 2;
	font-size: 2em;
	margin-bottom: 1.5em;
	font-weight: 400;
	text-align: center;
}
#main_center #intro h2{
	color: var(--blue);
	font-size: 1em;
	font-weight: bold;
	line-height: 3;
}
#main_center #intro h2 span{
	font-size: 2em;
}
#main_center #intro h3{
	color: var(--blue);
	font-size: 1.25em;
	margin-bottom: 1.25em;
	line-height: 1.5;
	font-weight: bold;
	text-align: left;
}

/*-- #project ---------------------------------------------------------------------------------------*/
#main_center #project img{
	margin-bottom: 3.125em;
}
#main_center #project h4{
	color: var(--line-green);
	font-weight: bold;
	text-align: center;
}
#main_center #project p:nth-of-type(1){
	margin-bottom: 3.125em;
}

/*-- #point ---------------------------------------------------------------------------------------*/
#main_center #point ul li p{
	text-align: center;
}
#main_center #point ul li p:first-of-type{
	font-size: 0.75em;
	font-weight: 400;
	margin-bottom: 1em;
}
#main_center #point ul li p:nth-of-type(2){
	font-size: 1.25em;
	font-weight: bold;
	margin-bottom: 2em;
}
/*-- #point01/#point02/#point03/ ---------------------------------------------------------------------------------------*/
#main_center #point01 .box,
#main_center #point02 .box,
#main_center #point03 .box{
	margin-bottom: 2em;
}
#main_center #point01 h2,
#main_center #point02 h2,
#main_center #point03 h2{
	font-weight: bold;
	font-size: 2em;
	line-height: 1.5;
}
#main_center #point01 h2 span,
#main_center #point02 h2 span,
#main_center #point03 h2 span{
	font-size: 0.5em;
	font-weight: 400;
	display: inline-block;
	margin-bottom: 1em;
}
#main_center #point01 h3,
#main_center #point02 h3,
#main_center #point03 h3{
	font-size: 1.25em;
	font-weight: bold;
	text-align: left;
	margin-bottom: .5em;
}
#main_center #point02 ul{
	margin-bottom: 1em;
}
#main_center #point02 ul li,
#main_center #point03 ul li{
	position: relative;
	padding-left: 1em;
}
#main_center #point02 ul li::before,
#main_center #point03 ul li::before{
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
#main_center #point02 ul li a{
	border-bottom: 1px solid #111;
	color: #111;
	font-size: .75em;
}
#main_center #point03 ul{
	margin-bottom: 1em;
}
/*-- コンバージョンエリア ---------------------------------------------------------------------------------------*/
#main_center .cv .inner_in{
	padding-top: 0;
}
#main_center .cv h2{
	font-size: 2em;
	line-height: 1.5;
	margin-bottom: 1em;
	color: #111;
}
#main_center .cv h4{
	color: var(--line-green);
	text-align: center;
}
#main_center .cv a{
	display: block;
	font-size: 1.25em;
	font-weight: bold;
	text-align: center;
	background-color: var(--line-green);
	color: #fff;
	border-radius: 3em;
	padding: .5em;
	box-shadow: 0 0 3px 2px rgba(0,0,0,0.15);
}
/*-- Q&A ---------------------------------------------------------------------------------------*/
#main_center #qa .question{
	position: relative;
	padding-left: 2em;
}
#main_center #qa p.question::before{
	content: "Q";
	background-color: var(--blue);
	color: #fff;
	font-size: .75em;
	font-weight: bold;
	border-radius: 50%;
	padding: .25em;
	position: absolute;
	left: 0;
	top: 0;
	width: 2em;
	height: 2em;
	text-align: center;
}
#main_center #qa .answer{
	position: relative;
	padding-left: 2em;
}
#main_center #qa p.answer::before{
	content: "A";
	background-color: var(--orange);
	color: #fff;
	font-size: .75em;
	font-weight: bold;
	border-radius: 50%;
	padding: .25em;
	position: absolute;
	left: 0;
	top: 0;
	width: 2em;
	height: 2em;
	text-align: center;
}
#main_center #qa .advice h4{
	font-size: 1em;
	color: var(--blue);
}
#main_center #qa .advice ol{
	margin-bottom: 1em;
	counter-reset: number 0;
}
#main_center #qa .advice ol li{
	list-style: none;
	position: relative;
	padding-left: 2em;
	margin-bottom: 1em;
}
#main_center #qa .advice ol li::before{
	counter-increment: number 1;
	content: counter(number);
	background-color: var(--light-blue);
	color: #fff;
	font-size: .75em;
	font-weight: bold;
	border-radius: 50%;
	padding: .25em;
	position: absolute;
	left: 0;
	top: 0;
	width: 2em;
	height: 2em;
	text-align: center;
	line-height: 1.5;
	
}
/*-- ABOUT US ---------------------------------------------------------------------------------------*/
#main_center #about .col2{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
#main_center #about .col2 .box{
	width: calc((100% - 2.5em) / 2);
	margin-right: 2.5em;
	margin-bottom: 2.5em;
	text-align: center;
}
#main_center #about .col2 .box:nth-child(2n){
	margin-right: 0;
}
#main_center #about .circle_width{
	width: 100%; 
	border-radius: 50%;
	background-color: var(--light-blue);
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 1em;
}
#main_center #about .circle_height{
	position: relative;
	padding-top: 100%;
	height: 0;
}
#main_center #about .circle_height img{
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center;
	transform: translate(-50%,-50%);
	height: 100%;
}
#main_center #about h3{
	font-size: 1.25em;
	color: #111;
	font-weight: bold;
	margin-bottom: .75em;
	text-align: left;
}
/*-- FOOTER ---------------------------------------------------------------------------------------*/
#main_center footer{
	background-color: var(--blue);
}
#main_center footer address{
	font-size: .75em;
	color: var(--white);
	font-style: normal;
}
#main_center footer address p{
	line-height: 2;
}
#main_center footer address a{
	color: var(--white);
	border-bottom: 1px solid #fff;
}