@charset "utf-8";
/* CSS Document */
*{
	margin:0;
	padding:0;
	box-sizing: border-box;
}
html{
	font-size: 62.5%;
}
body{
	overflow-x: hidiven;
	width:100%;
	height: 100%;
	font-family: 'Noto Sans JP', sans-serif;
	font-size:1.8rem;
	line-height:1.8;
	color:#333333;
	position: relative;
	background-image: url(../img/bg.jpg);
	background-size: cover;
	background-attachment: fixed;
}

h1{
	font-size: 4rem;
	margin: 0 5px 40px;
}
h2{
	text-align: center;
	font-size: 3.5rem;
	font-weight: 600;
}

h3{
	text-align: left;
	font-size: clamp(1.875rem, 1.427rem + 1.94vw, 3.75rem);
	color: #E6B422;
	margin:7% 0 0 2rem;

}

#service .content h3{
	text-align: left;
	font-size: clamp(3.75rem, 2.631rem + 4.84vw, 8.438rem);
	color: #FFF;
	-webkit-text-stroke: 3px #E6B422;
	text-stroke: 3px #E6B422;
	font-weight: 600;
	margin: 7% 0 -1rem 0;
	padding-bottom: 0px;
}

img{
	width: 100%;
}

video{
	width: 100%;
}

iframe{
	width: 100%;
}

li{
	list-style-type: none;
}
p{
	line-height: 1.8;
	padding-bottom: 10px;
	color: #333333;
}
.noto-serif{
	font-family: "Noto Serif JP", serif;
	font-style: normal;
}


.noto-sans {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
}


.lexend-deca {
	font-family: "Lexend Deca", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
}

#header{
	width: 100%;
	background-color: #fff;
	display: flex;
	justify-content: space-between;
}

.logo{
	width: 30%;
	min-width: 300px;
	padding: 15px 30px;
}

.nav{
	width: 70%;
	padding: 15px 0px;
	color: #0F2350;
}

.nav ul{
	display: flex;
	justify-content: space-around;
}

nav ul li{
	width: 20%;
	display: block;
	text-align: center;
}

nav ul li a{
	display: block;
}

nav ul li:hover{
	border-bottom: 5px solid #E6B422;
}

#top{
	position: relative;
}

.video{
	width: 100%;
	position: fixed;
	z-index: -1;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	overflow: hidden;
}

section{
	background-color: #fff;
}

.content1{
	width: 100%;
	margin-top: 55%;
	padding: 60px;
	background-color: #fff;
	}

.content {
	width: 100%;
	max-width: 1200px;
	margin: 30% auto 0 auto;
	padding: 60px;
	}

.catch{
	color:rgba(117, 112, 112, .3) ;
	font-size:6rem;
	text-align: right;
	margin-top: -65px;
}

.flex-container{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
}

.card{
	width: 30%;
	text-align: center;
}

.flow-image{
	width: 80%;
	margin: 0 auto;
}

.btn{
	display: block;
	width: 230px;
	margin-top: 100px;
	border-radius: 30px;
	background-color: #0F2350;
	color: #FFF;
	font-size: 2rem;
	padding: 10px;
	text-align: center;
}

a{
	display: block;
}
.btn:hover{
	background-color: #DFE4F0 ;
	color: #0F2350;
}

.table{
	display: flex;
	align-items: stretch;
	height: 120px;
}

.title{
	background-color: #0F2350;
	width: 30%;
	color: #FFF;
	border-bottom: 2px solid #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
}

.price{
	width: 20%;
	background-color: #DFE4F0;
	border-bottom: 2px solid #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
}

.explan{
	width: 48%;
	background-color:#F0F5FF;
	border-bottom: 2px solid #FFF;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: left;
}

.mov-container{
	width: 30%;
	padding-top: 100px;
}

.mov-container p{
	text-align: center;
	padding: 0;
	font-size: 1.4rem;
}

.youtube {
	width: 100%;
	aspect-ratio: 16 / 9;
}
.youtube iframe {
	width: 100%;
	height: 100%;
}

.plof{
	padding-top: 100px;
}

.plof-text{
	width: 60%;
}
.bold{
	font-weight: 500;
	font-size: 2.5rem;
}

.pic{
	width: 30%;
}

.content .center{
	margin: 100px auto 100px auto;
}

#footer{
	background-color: #0F2350;
	color: #FFF;
	display: flex;
	padding: 1.5rem 10rem 3rem 5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-container{
	width: 40%;
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	align-items: center;
}

.footer-logo{
	width: 60%;
	min-width: 200px;
}
.ico{
	width: 50px;
	padding-left: 2rem;
}


/*========= ページトップのためのCSS ===============*/

/*スクロールリンクの形状*/
.scroll-top {
	/*表示位置*/
	position: fixed;
	right: 20px;
	bottom: 10px;
	z-index: 2;
	/*はじめは非表示*/
	opacity: 0;
	visibility: hidden; 
	transition: opacity .5s, visibility .5s; /*それぞれに0.5秒の変化のアニメーション*/
	/*縦書き*/
	-webkit-writing-mode: vertical-rl;
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
	/*改行禁止*/
		white-space: nowrap;
	/*矢印の動き*/
	animation: arrowmove 1s ease-in-out infinite;
}

@keyframes arrowmove{
		0%{bottom:20px;}
		50%{bottom:25px;}
    100%{bottom:20px;}
}


/*.scroll-viewクラスがついたら出現*/
.scroll-top.scroll-view {
	opacity: 1;
	visibility: visible;
}

/*リンク全体の aタグの形状*/
.scroll-top a {
	text-decoration: none;
	color: #666;
	text-transform: uppercase;
	font-size:0.9rem;
	display: block;
}

/*スクロールリンクの形状*/

.js-scroll a::after{
	content:"";
	position: absolute;
	top:0;
	right:0;
	width:1px;
	height: 50px;
	background:#666;
}

.js-scroll a::before {
    content: "";
    position: absolute;
    top: 30px;
    right: -6px;
    width: 1px;
    height: 20px;
    background: #666;
    transform: skewX(-31deg);
}

/*Edge IE11 hack*/
_:-ms-lang(x), .js-scroll a::before{
	right:-11px;
}

/*ページトップリンクの形状*/

.js-pagetop a::after{
	content:"";
	position: absolute;
	top:0;
	right:0;
	width:1px;
	height: 50px;
	background:#666;
}

.js-pagetop a::before {
    content: "";
    position: absolute;
    top: 0;
    right: -6px;
    width: 1px;
    height: 20px;
    background: #666;
    transform: skewX(31deg);
}

/*Edge IE11 hack*/
_:-ms-lang(x), .js-pagetop a::before{
	right:0;
}
	
	
@media only screen and (max-width: 830px) {
h1{
	font-size: 2.5rem;
}
h3{
	font-size: 4rem;
	margin:2rem 0 1.5rem 2rem;
}

#header{
	position: fixed;
	z-index: 10;
	top:0;
}
.content1,.content{
	padding: 2rem;
}
.card{
	width: 45%;
	margin-bottom: 3rem;

}
.btn{
	margin: 5rem auto 0;
}
.catch{
	font-size: 4rem;
	margin-top: -10%;
}

.table{
	height: auto;
}

.title,.price{
	width: 50%;
}

.explan{
	width: 100%;
	margin-bottom: 30px;
}
.explan_non{
	background-color: #FFF;
}

.mov-container{
	width: 100%;
}
.plof{
	padding-top: 5rem;
}
.pic{
	width: 50%;
	padding-bottom: 5rem;
}

.plof-text{
	width: 100%;
	margin: 0 2rem;
}
#footer{
	display: block;
	padding:2rem;
}
.footer-container{
	width: 100%;
	justify-content: center;
}

.copyright{
	text-align: center;
	font-size: 1rem;
}
/* ハンバーガーボタン */
nav {
		width: 300px;
		position: fixed;
		top: 0;
		bottom: 0;
		right: 0;
		visibility: hidden;
		opacity: 0;
		transition: 0.5s;
		background-color: rgba(255, 255, 255, 0.9);
		z-index: 100;
	}

nav ul {
		position: absolute;
		top:20%;
		transform: translateX(50%);
		display: flex;
		flex-direction: column;
		align-items: center;
}

nav ul li {
		margin: 20px;
		width: 100%;
	}

nav ul li a {
		font-size: 20px;
		color:#0F2350;
	}

	.btn-trigger {
		position: absolute;
		margin: 15px 15px;
		top: 0;
		right: 15px;
		width: 34px;
		height: 28px;
		transform: translateX(50%);
		cursor: pointer;
		z-index: 200;
	}

	.btn-trigger span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 4px;
		background-color: #383838;
		border-radius: 4px;
	}

	.btn-trigger, .btn-trigger span {
		display: inline-block;
		transition: all 0.5s;
		box-sizing: border-box;
	}

	.btn-trigger span:nth-of-type(1) {
		top: 0;
	}

	.btn-trigger span:nth-of-type(2) {
		top: 12px;
	}

	.btn-trigger span:nth-of-type(3) {
		bottom: 0;
	}
	#btn.active span:nth-of-type(1) {
		transform: translateY(12px) rotate(-45deg);
	}

	#btn.active span:nth-of-type(2) {
		left: 50%;
		opacity: 0;
		animation: active-btn-bar02 0.8s forwards;
	}
}/* 830px */ 

@media only screen and (max-width: 495px) {
	h1{
		font-size: 2.3rem;
	}
	h3{
		font-size: 2rem;
		margin: 2rem 0 1rem 0;
	}
	.noto-serif br{
		display: none;
	}
	.card{
		width: 80%;
	}
	.flow-image{
		width: 100%;
		margin: 0;
	}
	.mov-container p{
		font-size: 1.8rem;
	}
}/* 495px */

@keyframes active-btn-bar02{
	100% {
			height: 0;
		}
	}
	#btn.active span:nth-of-type(3) {
		transform: translateY(-12px) rotate(45deg);
	}


@media (min-width: 830px) {
	.btn-trigger {
		display: none;
	}
} 