@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+JP:wght@400;700;900&display=swap');

html {
}
body {
	font-family: 'Helvetica Neue', Helvetica, 'Noto Sans JP', sans-serif;
	font-size:18px;
	line-height:1.6;
	text-align:center;
	color:#294667;
	font-feature-settings: "palt";
}

@media screen and (max-width:768px){
	body {
		font-size:3.6vw;
		line-height:1.4;
	}
}

.bebas{
	font-family: 'Bebas Neue', sans-serif;
	font-weight:normal;
}

a {
	transition : opacity 0.4s;
	-webkit-transition : opacity 0.4s;
	opacity:1;
	outline:none;
}
a:hover {
	opacity: 0.7;
}

.only_smart,
.only_smart_i{
	display:none !important;
}

@media screen and (max-width:768px){
	.only_pc{
		display:none !important;
	}
	.only_smart{
		display:block !important;
	}
	.only_smart_i{
		display:inline-block !important;
	}
}

img{
	max-width:100%;
}

#wrapper{
	overflow:hidden;
}


/* header */
header{
	width:100%;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	position:fixed;
	z-index:100;
	background-color:#fff;
}
header.scroll{
	box-shadow:0 0 5px rgba(0,0,0,0.3);
}
.header-title{
	text-align: left;
}
.header-title img{
	width:420px;
}
header nav{
	width:840px;
}
header nav .menu{
	width:100%;
	padding:0.6em 0;
	background-color:#008acf;
	border-radius:0 0 0 1.5em;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
header nav .menu li{
	line-height:1;
	padding:0 1.3em;
}
header nav .menu li:nth-child(n+2){
	border-left:1px solid #fff;
}
header nav .menu li a{
	font-size:17px;
	color:#fff;
	white-space:nowrap;
}
header nav .contact{
	width:100%;
	margin-top:30px;
	padding-right:10px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
header nav .contact li:first-child{
	width:450px;
	margin-right:10px;
}
header nav .contact li:last-child{
	width:250px;
}

header h1.seo_title {
	font-size: 12px;
	text-align: center;
	margin-top: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
}

@media screen and (max-width:1280px){
	header{
	}
	.header-title img{
		width:300px;
	}
	header nav{
		width:700px;
	}
	header nav .menu li{
		line-height:1;
		padding:0 0.8em;
	}
	header nav .menu li a{
		font-size:1.0rem;
	}
	header nav .contact{
		margin-top:10px;
	}
	header nav .contact li:first-child{
		width:350px;
	}
	header nav .contact li:last-child{
		width:200px;
	}
}

@media screen and (max-width:1024px){
	header{
		height:80px;
		-webkit-align-items: center;
		align-items: center;
		box-shadow:0 0 5px rgba(0,0,0,0.3);
	}
	.header-title img{
		width:240px;
	}
	header nav{
		width:100%;
		height:100vh;
		position:fixed;
		top:0;
		display:none;
	}
	header nav .menu{
		height:100%;
		padding:60px 0 0;
		display:block;
		border-radius:0;
	}
	header nav .menu li{
		line-height:2;
		margin-top:1em;
		padding:0;
		border:none !important;
	}
	header nav .menu li a{
		font-size:20px;
	}
	header nav .contact{
		display:none;
	}
	header h1.seo_title {
		font-size: 7px;
		margin-top: 5px;
		padding-bottom: 0;
		padding-left: 0;
	}
}


/* #btnmenu */
#btnmenu{
	display:none;
	width:60px;
	height:60px;
	margin:0;
	padding:0;
	background-color:#008acf;
	position:relative;
	z-index:105;
	cursor:pointer;
}
#btnmenu span{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 36px;
	height: 4px;
	border-radius:0;
	margin: -2px 0 0 -18px;
	background: #fff;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-ms-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}
#btnmenu span:before,
#btnmenu span:after{
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 36px;
	height: 4px;
	background: #fff;
	border-radius:0;
	-webkit-transition: .3s;
	transition: .3s;
}

#btnmenu span:before{
	margin-top: -14px;
}
#btnmenu span:after{
	margin-top: 10px;
}
#btnmenu.close{
	width:60px;
	height:60px;
	box-shadow:none;
	border-radius:0;
}
#btnmenu.close span{
	background-color:transparent;
}

#btnmenu.close span:before,
#btnmenu.close span:after{
	margin-top: 0;
	background-color:#fff;
}

#btnmenu.close span:before{
	width: 36px;
	height: 4px;
	margin: -2px 0 0 0;
	border-radius:2px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#btnmenu.close span:after{
	width: 36px;
	height: 4px;
	margin: -2px 0 0 0;
	border-radius:2px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

@media screen and (max-width:1024px){
	#btnmenu{
		display:block;
	}
}


/* article */
article{
	padding-top:140px;
}
article h1.low{
	padding:50px 0 40px;
	font-size:30px;
	font-weight:900;
}
/* h1追記ここから */
article h1.seo_title {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
  }
article span.seo_view-title{
	padding:50px 0 40px;
	font-size:30px;
	font-weight:900;
	display:block;
}
article span.seo_view-title img {
	display: block;
    width: 60px;
    margin: 0 auto 0.3em;
}

/* h1追記ここまで */
article h1.low img{
	display:block;
	width:60px;
	margin:0 auto 0.3em;
}
article h1.low .small{
	display:block;
	font-size:18px;
	font-weight:normal;
}


@media screen and (max-width:1280px){
	article{
		padding-top:90px;
	}
}

@media screen and (max-width:1024px){
	article{
		padding-top:60px;
	}
}

@media screen and (max-width:768px){
	article{
		padding-bottom:9%;
	}
	article h1.low{
		padding:9% 0 3%;
		font-size:4.5vw;
	}
	article h1.low img{
		width:2em;
	}
	article h1.low .small{
		font-size:3.6vw;
	}
}


.inner{
	max-width:1000px;
	width:94%;
	margin:auto;
}


/* .appli */
.appli{
	padding:40px 0;
	background-color:#0092d7;
}
.appli a{
	display:inline-block;
	max-width:1000px;
	width:94%;
}


/* .cont */
.cont{
	padding:35px 0;
}
.inner{
	max-width:1000px;
	width:94%;
	margin:auto;
}


/* color */
.white{
	color:#fff;
}
.bg_white{
	background-color:#fff;
}
.blue{
	color:#0092d7;
}
.bg_blue{
	background-color:#0092d7;
}
.orange{
	color:#ff643a;
}
.yellow{
	color:#ffff00;
}
.bg_yellow{
	background-color:#ffdb32;
}
.sky{
	background-color:#f2f9fd;
}




/* footer */
footer{
	padding-bottom:50px;
}
footer dl{
	margin-top:50px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
footer dl dt{
	width:100%;
	margin-bottom:30px;
}
footer dl dt img{
	width:280px;
}
footer dl dd{
	line-height:1;
	padding:0 0.5em;
}
footer dl dd:nth-of-type(n+2){
	border-left:1px solid;
}
footer dl dd a{
	color:#294667;
}

@media screen and (max-width:1024px){
	footer dl{
		font-size:16px;
	}
}
@media screen and (max-width:768px){
	footer{
		padding-bottom:33.5%;
	}
	footer dl{
		margin-top:0;
		display: block;
	}
	footer dl dt{
		margin-bottom:3%;
	}
	footer dl dt img{
		max-width:280px;
		width:50%;
	}
	footer dl dd{
		line-height:2;
		padding:0;
		border-top:1px dotted;
	}
	footer dl dd:nth-of-type(n+2){
		border-left:none;
	}
	footer dl dd a{
		display:block;
		padding:0 3%;
		font-size:3.6vw;
		text-align:left;
	}
	footer dl dd a:before{
		content:'';
		display:inline-block;
		width: 0;
		height: 0;
		margin-right:0.3em;
		border-style: solid;
		border-width: 0.4em 0 0.4em 0.6em;
		border-color: transparent transparent transparent #0092d7;
	}
}



/* #bottom_banner */
#bottom_banner{
	width:240px;
	background-color:#fff;
	border:3px solid #0092d7;
	box-shadow:5px 5px 8px rgba(0,0,0,0.3);
	position:fixed;
	right:10px;
	bottom:10px;
	z-index:110;
}
#bottom_banner h2{
	line-height:3;
	font-size:10px;
}
#bottom_banner p{
	margin-top:0.5em;
	line-height:1.2;
	font-size:16px;
	font-weight:900;
}
#bottom_banner p .small{
	font-size:12px;
	color:#294667;
}
#bottom_banner p .large{
	font-size:24px;
	letter-spacing:0.03em;
	text-indent:0.03em;
}
#bottom_banner dl{
	padding:5%;
}
#bottom_banner dl dt{
	font-size:12px;
	font-weight:bold;
	background-color:#ebeaeb;
}
#bottom_banner dl dd{
	margin-top:3%;
}

@media screen and (max-width:768px){
	#bottom_banner{
		width:100%;
		padding-bottom:1.5%;
		border:0.5vw solid #0092d7;
		box-shadow:0px 0px 5px rgba(0,0,0,0.3);
		position:fixed;
		right:0;
		bottom:0;
	}
	#bottom_banner h2{
		line-height:2;
		font-size:3.2vw;
	}
	#bottom_banner p{
		font-size:3.4vw;
	}
	#bottom_banner p .small{
		font-size:2.8vw;
	}
	#bottom_banner p .large{
		font-size:4.5vw;
	}
	#bottom_banner dl{
		padding:1.5% 5%;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}
	#bottom_banner dl dd{
		width:49%;
		margin-top:0;
	}
}


/* fadein */
.fadein {
	opacity : 0;
	-webkit-transform : translate(0, 70px);
	transform : translate(0, 70px);
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
}
.fadein_0 {
	opacity : 0;
	-webkit-transform : translate(0, 0);
	transform : translate(0, 0);
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
}
.fadein_l {
	opacity : 0;
	-webkit-transform : translate(-100px, 0);
	transform : translate(-100px, 0);
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
}
.fadein_r {
	opacity : 0;
	-webkit-transform : translate(100px, 0);
	transform : translate(100px, 0);
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
}
.delay1 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
	-webkit-transition-delay: 0.2s;
	transition-delay : 0.2s;
}
.delay2 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
	-webkit-transition-delay: 0.4s;
	transition-delay : 0.4s;
}
.delay3 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
	-webkit-transition-delay: 0.6s;
	transition-delay : 0.6s;
}
.delay4 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
	-webkit-transition-delay: 0.8s;
	transition-delay : 0.8s;
}


.fadein.scrollin,
.fadein_0.scrollin,
.fadein_l.scrollin,
.fadein_r.scrollin{
	opacity : 1;
	-webkit-transform : translate(0, 0);
	transform : translate(0, 0);
}
