@charset "utf-8";
*{
	box-sizing: border-box;

}
body,h1,h2,h3,h4,h5,form,ul,li,p,figure{
	list-style: none;
	padding: 0;
	margin: 0;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 2px
}

input[type=text],
input[type=email],
input[type=tel],
textarea{
	border: 1px solid #ccc;
	padding: 12px;
	border-radius: 4px;
	width: 100%;
	outline: none;
	font-size: 16px;
}


/* スライド */
.kv {
  position: relative;
  width: 100%;
	height: 90vh;
  aspect-ratio: 16 / 9; /* 高さ確保 */
  max-height: 90vh;
  overflow: hidden;
  background: #000;
}

/* スライド共通 */
.kv-slide {
  position: fixed;
	top:0;
	left: 0;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 6s ease;
  will-change: opacity, transform;
}

.kv-slide picture,
.kv-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 表示中スライド */
.kv-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}


.container{
	position: absolute;
	top:0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 200vh
}
.mv-cnt{
	width: 100%;
	height: 100vh;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding-left: 10%;
}
.logo{
	width: 35%;
	position: fixed;
	left: 0;
	top:0;
	z-index: 10;
}
@media screen and (min-width: 1500px) {
	.logo{width: 22%;}
}
@media screen and (min-width: 1700px) {
	.logo{width: 18%;}
}
.logo img{
	width: 100%;
	height: auto
}
.top{
	display: block;
	width: 50%;
	padding-top: 7vw;
}
.top img{
	width: 100%;
	height: auto;
}

.cnt-1{
	padding:5vw 0;
	background: #E2F5F6;
}
.box1{
	display: flex;
	justify-content: space-between;

}
.box1 .item1{
	width: 50%;
}

.box1 .item2{
	width: 45%;
}
.box1 h2{
	font-size: 3vw;
	margin-bottom: 2vw;
	color: #009DB6;
}
.box1 h3{
	margin-bottom: 0vw;
	font-size: 1.1vw;
	font-weight: normal
}
.box1 h3 span{
	color: #009DB6;
	
}
.box1 p{
	margin-bottom: 2vw;
	line-height: 220%;
	font-size: 1.3vw;
}
.logo2{
	width: 15vw;
}
.logo2 img{
	width: 100%;
	height: auto
}

.cnt-2{
	background: #FFF;
	padding: 8vw 0 3vw 0;
	margin-bottom: 400px;
}
.inner{
	width: 90%;
	margin: 0 auto;
}
.list-1{
	
}
.list-1 li{
	display: flex;
	justify-content: space-between;
	margin-bottom: 5vw;
}
.list-1 .item1{
	width: 58%;
}
.list-1 .item2{
	width: 40%;
}
/* 奇数行 */
.list-1 li:nth-child(odd) {
	flex-direction: row;
}
.list-1 li:nth-child(odd) .item2 {
	text-align: right
}
/* 偶数行は左右反転 */
.list-1 li:nth-child(even) {
	flex-direction: row-reverse;
}
.list-1 .item2 img{
	width: 90%;
}
.list-1 h2{
	display: flex;
	border-bottom: 1px solid #ccc;
	margin-bottom: 2vw;
	padding-bottom: 2vw;
	font-size: 2vw;
}
.list-1 h2 img{
	width: 6vw;
	height: auto;
	margin-right: 2vw
}
.point{
	text-align: center;
	margin-right: 2vw;

}
.point span{
	color: #009DB6;
	line-height: 1;
	font-size: 1.2vw;
	margin-bottom: -0.5vw;
	display: block;
}
.point .no{
	color: #009DB6;
	line-height: 1;
	font-size: 5vw;

}
.lpw{
	margin-bottom: 2vw;
	line-height: 220%;
	font-size: 1.3vw;
}
.h2{
	color: #FFF;
	margin-bottom: 35px;
	letter-spacing: 2px
}

.cnt-3{
	background: #E2F5F6;
	padding: 7vw 0;
	margin-bottom: 200px;
}


.cnt-4{
	background: #FFF;
	padding: 100px 0;
	margin-bottom: 200px;
}
.tit1{
	text-align: center;
	font-size: 32px;
	color: #333;
	margin-bottom: 50px;
	border-bottom: 3px double #333;
	padding-bottom: 15px;
}
.tit1.bk{
	color: #333;
	border-bottom: 3px double #333;
}
.tit1 div{
	font-size: 17px;
}
.cnt-5{
	background: #FFF;
	padding: 100px 0;
	margin-bottom: 200px;
}
.sns{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 40px;
}
.sns li{
	background-image: url("../img/insta.png");
	background-repeat: no-repeat;
	background-size: 50px auto;
	padding-left: 60px;
}
.sns li:last-child{
	border: none
}
.sns li a{
	color: #FFF;
	text-decoration: none;
	display: block;
	padding-right: 25px;
}
#faq_list{
	padding-bottom: 50px;
}
#faq_list .item{
	
}
#faq_list .q{
	display: flex;
	margin-bottom: 10px;
	padding: 20px 10px 10px 10px;
	font-weight: bold;
	border-top: 1px dashed #009DB6;
}
#faq_list .item:first-child .q{
	border: none;
}
#faq_list .q div,
#faq_list .answer .inr div{
	color: #009DB6;
	font-size: 47px;
	width: 60px;
	font-weight: bold;
	line-height: 1;
	text-align: center
}
#faq_list .q p,#faq_list .answer p{
	padding-top: 14px;
	padding-left: 10px;
	font-size: 20px;
	width: calc(100% - 60px - 62px);
}
#faq_list .answer p{
	font-size: 17px;
}
#faq_list .answer{
	display: none;
	margin-bottom: 20px;
}
#faq_list .answer .inr{
	display: flex;
	background: #F5F5F5;
	padding: 10px;

}
#faq_list .answer .inr div{
	color: #A12828;

}
#faq_list .q a{
	text-decoration: none;
	display: block;
	width: 62px;
}
#faq_list .q a img{
	width: 100%;
	height: auto;
}
.faq_close{
	display: none 
}


.txt1{
	color: #009DB6;
	font-size: 1.5vw;
	line-height: 200%;
	padding-bottom: 40px;
	text-align: center;
}
.sp{ display: none }
.pc{ display: block }
.plist-li .item1{
	padding-right: 30px;
}
.service-item__link{
	pointer-events: none
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
	margin-bottom: 10px;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.ta1{
	width: 100%;
	margin-bottom: 40px;
}
.ta1 td,.ta1 th{
	padding: 1vw;
	border-bottom: 1px dashed #333;
	font-size:1.2vw;
}
.ta1 th{
	background: #eee;
	width: 200px;
}
.ta2{
	width: 100%;
	margin-bottom: 40px;
}
.ta2 td,.ta2 th{
	padding: 15px;
	border-bottom: 1px dashed #000;
	color: #000 !important;
	font-size: 1.4vw;
	background: #FFF
}
.ta2 th{
	font-weight: bold;
	width: 200px;
}
#privacy{
	height: 300px;
	overflow-y: auto;
	width: 100%;
	padding: 15px;
	border: 1px solid #ccc;
}
#privacy h3{
	padding-bottom: 5px;
	font-size: 1.3vw;
}
#privacy h4{
	padding-bottom: 5px;
	font-size: 1.2vw;
}
#privacy p{
	padding-bottom: 15px;
	font-size: 1.1vw;
}
.contact .txt1{
	color: #333;	
}
.btn1{
	display: block;
	width: 180px;
	text-align: center;
	font-size: 1.4vw;
	font-weight: bold;
	background: #009DB6;
	border-radius: 4px;
	color: #FFF;
	border: none;
	padding: 1vw;;
	line-height: 1;
	margin: 0 auto 40px auto;
	text-decoration: none;
}
footer{
	padding:40px 0;
	background: #009DB6;
}
#ftr_logo{
	width: 200px;
	margin: 0 auto 20px auto;
}
#ftr_logo img{
	width: 100%;
	height: auto
}
#ftr_address{
	font-size: 15px;
	text-align: center;
	color: #FFF;
}

#copyright{
	font-size: 15px;
	text-align: center;
	color: #FFF;
}
.scroll{
	width: 45px;
	position: fixed;
	right: 0px;
	top: 10%;
	z-index: 100;
}

@media screen and (max-width: 768px) {

	.container{
		position: absolute;
		top:0;
		left: 0;
		z-index: 1;
		width: 100%;
		height: 200vh;
	}
	.logo{
		width: 42%;
		position: fixed;
		left: 0;
		top:0;
		z-index: 10;
	}
	.logo img{
		width: 100%;
		height: auto
	}
	.top{
		display: block;
		width: 100%;
		padding-top: 7vw;
	}
	.top img{
		width: 100%;
	}
	.mv-cnt{
		width: 100%;
		height: 90vh;
		text-align: center;
		display: flex;
		align-items: center;
		padding:0 5% 0 10% 
	}
	.cnt-1{
		padding:7% 3%;

	}
	.box1{
		flex-wrap: wrap;
	}
	.box1 .item1{
		width: 100%;
		text-align: center;
		margin: 0 auto
	}

	.box1 .item2{
		width: 100%;
		margin-top: -9vw;
	}
	.box1 h2{
		font-size: 7vw;
		margin-bottom: 3vw;
		text-align: left;
		color: #009DB6;
	}
	.box1 h3{
		margin-bottom: 0vw;
		font-size: 4vw;
		font-weight: normal;
		text-align: left;
	}
	.box1 h3 span{
		color: #009DB6;

	}
	.box1 p{
		text-align: left;
		margin-bottom: 5vw;
		line-height: 220%;
		font-size: 4.3vw;
	}
	.logo2{
		width: 35vw;
	}
	.inner{
		width: 96%;
		margin: 0 auto;
	}
	.cnt-2{

		padding: 100px 0;
		margin-bottom: 400px;
	}
.list-1{
	
}
.list-1 li{
	display: block;
	justify-content: space-between;
	margin-bottom: 5vw;
}
.list-1 .item1{
	width: 100%;
}
.list-1 .item2{
	width: 100%;
}

.list-1 .item2 img{
	width: 90%;
}
.list-1 h2{
	display: flex;
	border-bottom: 1px solid #ccc;
	margin-bottom: 2vw;
	padding-bottom: 2vw;
	font-size: 5vw;
}

.point{
	text-align: center;
	margin-right: 3vw;

}
.point span{
	color: #009DB6;
	line-height: 1;
	font-size: 1.4vw;
	margin-bottom: -0.5vw;
	display: block;
}
.point .no{
	color: #009DB6;
	line-height: 1;
	font-size: 8vw;

}
.lpw{
	margin-bottom: 2vw;
	line-height: 220%;
	font-size: 3.8vw;
}
	.h2{
		color: #FFF;
		margin-bottom: 35px;
		letter-spacing: 2px
	}

	.cnt-3{

		padding: 100px 0;
		margin-bottom: 200px;
	}

	.box2{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-bottom: 80px;
	}
	.box2 .item{
		width: 100%;
		padding-bottom: 30px
	}
	.box2 .item h4{
		color: #FFF;
		margin-bottom: 5px;
		text-align: center;
		font-size: 20px;
	}
	.box2 .item p{
		color: #FFF;
		padding-top: 5px;
	}
	.box2 .item figure{
		margin-bottom: 5px;
	}
	.box2 .item img{
		width: 100%;
		height: auto
	}
	.slist{

	}
	.slist li{
		display: flex;
		flex-wrap: wrap;
		color: #FFF;
		justify-content: space-between;
		margin-bottom: 30px;
		padding-bottom: 30px;
		border-bottom: 1px solid #ccc;
	}

	.slist li:last-child{
		border: none;
		margin-bottom: 0;
	}
	.slist li img{
		width: 100%;
		height: auto
	}
	.slist li .item1{
		width: 100%;
	}
	.slist li .item2{
		width: 100%;
	}
	.slist li .item2 h3{
		margin-bottom: 8px;
		text-align: center;
		padding-top: 8px;
	}
	.tbx{
		background: #ffff;
		padding: 20px;
		text-align: center;
		margin-bottom: 40px;
	}
	.tbx h3{
		font-size: 22px;
		margin-bottom: 10px;
	}
	.cnt-4{

		padding: 100px 0;
		margin-bottom: 200px;
	}
	.tit1{
		text-align: center;
		font-size: 28px;
		color: #333;
		margin-bottom: 50px;
		border-bottom: 3px double #333;
		padding-bottom: 15px;
	}
	.tit1.bk{
		color: #333;
		border-bottom: 3px double #333;
	}
	.tit1 div{
		font-size: 17px;
	}
	.cnt-5{
		background: #FFF;
		padding: 100px 0;
		margin-bottom: 200px;
	}
	.sns{
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding-top: 40px;
		flex-wrap: wrap;
	}
	.sns li{
		background-image: url("../img/insta.png");
		background-repeat: no-repeat;
		background-size: 50px auto;
		padding-left: 60px;
	}
	.sns li:last-child{
		border: none
	}
	.sns li a{
		color: #FFF;
		text-decoration: none;
		display: block;
		padding-right: 25px;
	}
	
	#faq_list .item{

	}
	#faq_list .q{
		display: flex;
		margin-bottom: 10px;
		padding: 20px 10px 10px 10px;
		font-weight: bold;
		border-top: 1px dashed #009DB6;
	}

	#faq_list .q div,
	#faq_list .answer .inr div{
		color: #009DB6;
		font-size: 32px;
		width: 40px;
		font-weight: bold;
		line-height: 1;
		text-align: left
	}
	#faq_list .q p,#faq_list .answer p{
		padding-top: 7px;
		padding-left: 0px;
		font-size: 20px;
		width: calc(100% - 40px - 42px);
	}
	#faq_list .answer p{
		font-size: 17px;
	}
	#faq_list .answer{
		display: none;
		margin-bottom: 20px;
	}
	#faq_list .answer .inr{
		display: flex;
		background: #F5F5F5;
		padding: 10px;

	}
	#faq_list .answer .inr div{
		color: #A12828;

	}
	#faq_list .q a{
		text-decoration: none;
		display: block;
		width: 42px;
	}
	#faq_list .q a img{
		width: 100%;
		height: auto;
	}
	.faq_close{
		display: none 
	}
	.sp{ display: block }
	.pc{ display: none }
	


.txt1{
	font-size: 4.2vw;
	line-height: 170%;
	padding-bottom: 40px;
	text-align: left;
}
.cnt-4 .txt1{
	text-align: center
	}
	
.ta1{
	width: 100%;
	margin-bottom: 40px;
}
.ta1 td,.ta1 th{
	display: block;
	width: 100%;
	font-size: 3.8vw;
}
.ta1 th{
	background: #eee;
	width: 100%;
}
.ta2{
	width: 100%;
	margin-bottom: 40px;
}
.ta2 td,.ta2 th{
	padding: 15px;
	border-bottom: 1px dashed #009DB6;
	font-size: 3.8vw;

}
.ta2 th{
	font-weight: bold;
	width: auto;
}
.scroll{
	width: 35px;
	position: fixed;
	right: 0px;
	top: 2%;
	z-index: 100;
}
#privacy{
	height: 300px;
	overflow-y: auto;
	width: 100%;
	padding: 15px;
	border: 1px solid #ccc;
	font-size: 1.3vw;
}
#privacy h3{
	padding-bottom: 5px;
	font-size:3vw;
}
#privacy h4{
	padding-bottom: 5px;
	font-size: 3vw;
}
#privacy p{
	padding-bottom: 15px;
	font-size: 3vw;
}
.btn1{
	display: block;
	width: 180px;
	text-align: center;
	font-size: 4vw;
	font-weight: bold;
	background: #009DB6;
	border-radius: 4px;
	color: #FFF;
	border: none;
	padding: 4vw;;
	line-height: 1;
	margin: 0 auto 40px auto;
	text-decoration: none;
}
}