@charset "UTF-8";
/* base
========================= */
body{
	width: 100%;
	background: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300!important;
	color: #302f33;
	font-size: 1.6rem;
	line-height: 1.6;
	box-sizing: border-box;
	text-align: center;
	position: relative;
	letter-spacing: 0.01em;
}
/* font */
.f-small{
	font-size: 85%;
}
.f-large{
	font-size: 120%;
}
.alignleft{
	text-align: left;
}
.alignright{
	text-align: right;
}
.bold{
	font-weight: 700;
}
.c-blue{
	color: #003096;
}
/* flex */
@media (min-width: 751px){
	.dispflex{
		display: flex;
		gap: 10px;
	}
}
.dispinblock{
	display: inline-block;
}
/* layout */
.inner{
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	max-width: 1000px;
}
/* hover */
@media (min-width: 751px){
	.hov{
		-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
		-webkit-transition: .3s ease-in;
		-moz-transition: .3s ease-in;
		-ms-transition: .3s ease-in;
		transition: .3s ease-in;
		opacity: 1;
		filter: alpha(opacity=100);
	}
	.hov:hover{
		filter: alpha(opacity=70);
		opacity: .7;
		text-decoration: none;
		cursor: pointer!important;
	}
	.hov:hover a{
		text-decoration: none;
	}
}
/* btn */
.btn a{
	display: block;
	background: #FF5F1B;
	padding: 2rem 1.5rem;
	color: #FFF;
	-webkit-border-radius: 100px;
	        border-radius: 100px;
	position: relative;
}
.btn a span.arr{
	width: 27px;
	height: auto;
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
.btn a span.arr img{
	vertical-align: middle;
}
/*PC*/
@media (min-width: 751px){
	.btn a{
		font-size: 120%;
	}
}
/* margin */
.mb1{
	margin-bottom: 1.5rem;
}
.mb2{
	margin-bottom: 2rem;
}
.mb3{
	margin-bottom: 3rem;
}
section{
	margin-bottom: 6rem;
}
section	h2{
	font-size: 3rem;
}
.sub_tit{
	font-family: "Arial" sans-serif;
	color: #8D98B6;
	font-weight: 500;
}
h3{
	font-size: 2rem;
}
/*PC*/
@media (min-width: 751px){
	.mb3{
		margin-bottom: 6rem;
	}
	section{
		margin-bottom: 10rem;
	}
	section h2{
		font-size: calc(40 / 1440 * 100vw);
	}
	h3{
		font-size: 2.4rem;
	}
}
/*PC*/
@media (min-width: 1000px){
	
}
/* header
========================= */
.header {
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  position: fixed;
  background: #FFF;
}
.header .inner {
	width: 100%;
  height: 60px;
	padding: 0 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.head_logo {
  width: 280px;
}
@media (min-width: 999px){
	.header .inner{
		height: 80px;
		max-width: 90%;
	}
	.header .pc-btn{
		width: 210px;
	}
	.header .pc-btn a{
		padding: 1rem;
		font-size: 100%;
	}
}
/*********************************	navigation *********************************/
#mobile-head {
	width: 100%;
	position: relative;
}
#global-nav {
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	background: #003096;
	width: 100%;
	height: 100%;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
#global-nav ul li {
	margin: 3rem 0;
}
#global-nav ul li a{
	color: #FFF;
	font-size: 1.8rem;
}
#global-nav .btn{
	display: block;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
.pc-btn{
	display: none;
}
/*********************************	nav-toggle *********************************/
#nav-toggle {
	display: block;
	position: fixed;
	right: 3%;
	top: 2%;
	width: 34px;
	height: 36px;
	cursor: pointer;
	z-index: 999;
}
#nav-toggle div {
	position: relative;
}
#nav-toggle span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #003096;
	left: 0;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
	top: 0;
}
#nav-toggle span:nth-child(2) {
	top: 11px;
}
#nav-toggle span:nth-child(3) {
	top: 22px;
}
.open #nav-toggle span:nth-child(1) {
	top: 11px;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}
.open #nav-toggle span:nth-child(2) {
	width: 0;
	left: 50%;
}
.open #nav-toggle span:nth-child(3) {
	top: 11px;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}
.open #global-nav {
	width: 100%;
	-webkit-transition: all .5s;
	transition: all .5s;
	visibility: visible;
	opacity: 1;
}
.open #nav-toggle span{
	background: #FFF;
}
body.fixed{
	position: fixed;
	overflow: hidden;
}
/*PC*/
@media (min-width: 999px){
	#mobile-head {
		display: none;
	}
	#navArea{
		margin-left: auto;
		margin-right: auto;
	}
	#global-nav {
		position: static;
		opacity: 1;
		visibility: visible;
		background: none;
		transition: none;
		display: flex;
		flex-direction: row;
		justify-content: flex-end;
		align-items: center;
		text-align: left;
	}
	#global-nav ul{
		margin-bottom: 0;
	}
	#global-nav ul li {
		display: inline-block;
		margin: 0 2rem;
	}
	#global-nav ul li a{
		color: #302f33;
	}
	#global-nav .btn{
		display: none;
	}
	.pc-btn{
		display: block;
	}
}
/* main visual
========================= */
#main_visual{
	width: 100%;
	height: 100vh;
	position: relative;
	background: url("../img/mv_bg_sp.jpg") no-repeat 50% 50%;
	-webkit-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
	margin-top: 60px;
}
#main_visual .catch_area{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
#main_visual .catch_area .top{
	margin-top: 1.5rem;
}
#main_visual .catch_area .top h1{
	color: #FCD900;
	font-size: calc(60 / 750 * 100vw);
}
#main_visual .catch_area .service-catch{
	font-size: calc(44 / 750 * 100vw);
	color: #FFF;
}
#main_visual .catch_area .mv_logo{
	width: calc(500 / 750 * 100vw);
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2rem;
}
/*PC*/
@media (min-width: 1000px){
	#main_visual{
		margin-top: 80px;
	}
}
/*PC*/
@media (min-width: 751px){
	#main_visual{
		height: 0;
		padding-top: 50%;
		background: url("../img/mv_bg_pc.jpg") no-repeat 50% 50%;
		-webkit-background-size: cover;
		     -o-background-size: cover;
		        background-size: cover;
	}
	#main_visual .inner{
		width: 100%;
		max-width: 100%;
	}
	#main_visual .catch_area{
		position: absolute;
		left: 0;
		top: 50%;
		width: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		padding: 0 30px;
	}
	#main_visual .catch_area .top{
		margin-top: 0;
		margin-bottom: 3rem;
	}
	#main_visual .catch_area .top h1{
		font-size: calc(70 / 1440 * 100vw);
	}
	#main_visual .catch_area .service-catch{
		font-size: calc(40 / 1440 * 100vw);
	}
	#main_visual .catch_area .mv_logo{
		width: calc(340 / 1440 * 100vw);
		margin-bottom: 0;
	}
	#main_visual .mv_point{
		width: calc(530 / 1440 * 100vw);
		margin-left: auto;
		margin-right: auto;
	}
	#main_visual .btn{
		position: static;
		width: 100%;
		max-width: 480px;
		margin-left: auto;
		margin-right: auto;
	}
}
/* nayami
========================= */
section#nayami{
	background: #E5ECF6;
	position: relative;
	padding: 3rem 0;
	margin-bottom: 0;
}
/*PC*/
@media (min-width: 751px){
	section#nayami{
		padding: 6rem 0;
	}
	section#nayami p{
		max-width: 876px;
		margin-left: auto;
		margin-right: auto;
	}
}
/* service
========================= */
section#service .tit-area{
	background: url("../img/tit_bg_sp.jpg") no-repeat 50% 50%;
	-webkit-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
	padding: 3rem 0;
	color: #FFF;
	position: relative;
	margin-bottom: 3rem;
}
section#service .tit-area img{
	vertical-align: middle;
}
section#service .tit-area:before{
	content: "";
	position: absolute;
	top: -3px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	border: 30px solid transparent;
	border-top: 30px solid #E5ECF6;
}
section#service .image{
	margin-bottom: 3rem;
}
section#service .point_num{
	width: 125px;
}
/*PC*/
@media (min-width: 751px){
	section#service .tit-area{
		background: url("../img/tit_bg_pc.jpg") no-repeat 50% 50%;
		padding: 6rem 0;
		margin-bottom: 6rem;
	}
	section#service .tit-area .tit-logo{
		width: 356px;
	}
	section#service .works-area .dispflex{
		justify-content: space-between;
		-webkit-align-items: center;
		        align-items: center;
	}
	section#service .works-area .dispflex.reverse{
	  flex-direction: row-reverse;
	}
	section#service .works-area .text-area{
	  width: 50%;
	  padding-left: 30px;
	}
	section#service .works-area .image{
		width: 50%;
    flex: 1;
    margin-left: calc(50% - 50vw);
	}

	section#service .works-area .dispflex.reverse .text-area{
	  padding-left: 0;
	  padding-right: 30px;
	}
	section#service .works-area .dispflex.reverse .image{
    flex: 1;
    margin-right: calc(50% - 50vw);
    margin-left: auto;
	}
}
/* conv
========================= */
section.conv{
	background: url("../img/conv_bg_sp.jpg") no-repeat left top;
	-webkit-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
	padding: 3rem 0;
	color: #FFF;
	margin-bottom: 0;
}
section.conv h2 .f-large{
	color: #fcd900;
}
/*PC*/
@media (min-width: 751px){
	section.conv{
		background: url("../img/conv_bg_pc.jpg") no-repeat left top;
		padding: 6rem 0;
	}
	section.conv h2{
		font-size: 3.5rem;
		display: flex;
		-webkit-align-items: baseline;
		        align-items: baseline;
		-webkit-justify-content: center;
		        justify-content: center;
	}
	section.conv .btn{
		max-width: 460px;
		margin-left: auto;
		margin-right: auto;
	}
}
/* works
========================= */
section#works{
	background: #f8f8fd;
	padding: 6rem 0;
	margin-bottom: 0;
}
section#works ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: stretch;
}
section#works ul li{
	width: calc(( 100% / 2 ) - 5px );
	background: #FFF;
}
section#works .box{
	padding: 1.5rem;
}
section#works h3{
	font-size: 1.6rem;
}
section#works .tag{
	width: 120px;
	background: #0044d4;
	padding: .5rem;
	line-height: 1;
	color: #FFF;
	text-align: center;
	-webkit-border-radius: 30px;
	        border-radius: 30px;
}
/*PC*/
@media (min-width: 751px){
	section#works ul li{
		width: calc(( 100% / 3 ) - 10px );
	}
}
/* flow
========================= */
section#flow{
	margin-top: 6rem;
}
section#flow .step{
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
section#flow .step .text{
	width: 100%;
	padding: 1.5rem;
	position: absolute;
	bottom: 5rem;
	left: 0;
	color: #FFF;
	line-height: 1.4;
	font-size: 90%;
}
/*PC*/
@media (min-width: 751px){
	section#flow .dispflex{
		justify-content: space-between;
	}
	section#flow .dispflex .step{
		max-width: 310px;
	}
	section#flow .step .text{
		padding: 3rem;
		font-size: 100%;
		bottom: 3rem;
	}
}
/* contact
========================= */
.form_wrap iframe{
	width: 100%;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
/* faq
========================= */
section#faq{
	background: #003096;
	padding: 6rem 0;
	color: #FFF;
	margin-bottom: 3rem;
}
section#faq .ques{
	background: #001866;
	padding: 1.5rem;
}
/* footer
========================= */
footer {
	padding-bottom: 3rem;
}
footer .copy{
	font-size: 1.2rem;
	opacity: 0.8;
}
