@charset "utf-8";
/* CSS Document */
/*===共通部分==============
====================================================================*/
html{
	font-size: 100%;
}
body{
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-weight: 400;
	color: #333;
	font-size: clamp(16px,2vw,18px);
	background: #fff;
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.7;
}
p{
	letter-spacing: 0.1em;
}
h1,h2,h3,h4,h5,h6{
	font-weight: 600;
	line-height: 1.7;
}
a{
	text-decoration: none;
	color: #333;
	transition: .4s;
}
ul,ol{
	list-style: none;
	padding: 0;
}
main{
	width: 100%;
	height: 100%;
	overflow: hidden;
}

section {
	padding: clamp(60px,8vw,100px) 0 ;
	position: relative;
}
table{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;/*隙間なし*/
}

/*改行　-------*/
@media (min-width: 451px){
	.only450{
		display: none;
	}
}

@media (max-width: 450px){
	.not450{
		display: none;
	}
}
@media (min-width: 720px){
	br.only720{
		display: none;
	}
}


span.ib{
	display: inline-block!important;
}

span.wp{
	white-space:nowrap;
}


/*PC・SP表示-----------------------*/
.sp{
	display: none;
}
.pc{
	display: block;
}

@media (max-width: 767px) {
	.sp{
		display: block;
	}
	.pc{
		display: none;
	}
}

/*幅・高さ調整-------*/
.inner{
	width: 96%;
	max-width: 1200px;
	margin: 0 auto;
}
.inner.wide{
	max-width: 1400px;
}
.inner.max{
	max-width: none;
}
.inner.w960{
	max-width: 960px;
}
/*高さ*/

.mg100{
	margin-bottom: 100px !important;
}
.mg80{
	margin-bottom: clamp(30px, 8vw, 80px) !important;
}
.mg60{
	margin-bottom: 60px !important;
}
.mg50{
	margin-bottom: 50px !important;
}
.mg40{
	margin-bottom: 40px !important;
}
.mg30{
	margin-bottom: 30px !important;
}
.mg20{
	margin-bottom: 20px !important;
}
.mg10{
	margin-bottom: 10px !important;
}
.mg0{
	margin-bottom: 0 !important;
}

.pmg5 p{
	margin-bottom: 5px;
}
.pmg p{
	margin-bottom: 10px;
}
.pmg15 p{
	margin-bottom: 15px;
}
.pmg20 p{
	margin-bottom: 20px;
}
.pmg5 p:last-child,
.pmg p:last-child,
.pmg15 p:last-child,
.pmg20 p:last-child{
	margin-bottom: 0;
}

.t_center{
	text-align: center;
}
.t_left{
	text-align: left;
}
/* 画像　-------------------------- */
img{
	width: 100%;
	height: auto;
}
.obj-in{
	width: 100%;
	height: 100%;
	object-fit: contain
}
.obj-cov{
	width: 100%;
	height: 100%;
	object-fit: cover;	
}
.img_4-3{
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.img_16-9{
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

/*flexbox------------------------*/
.flexbox{
	display: flex;
	flex-wrap: wrap;
}
.f_jsb{
	justify-content: space-between;
}
.f_cent{
	justify-content: center;
}
.fac{
	align-items: center;
}

.comn2{
	width: 48%;
}
.comn3{
	width: calc( 100% / 3 - 20px);
}
.comn4{
	width: 35%;
}
.comn5{
	width: 62%;
}

.f_center{
	align-items: center;
}
@media (max-width: 767px){
	.flexbox{
		flex-direction: column;
	}
	.flexbox.rever{
		flex-direction: column-reverse;
	}
	.comn2, .comn3, .comn4, .comn5 {
		width: 100%;
		margin-bottom: 30px
	}
}

/*==背景=============================================*/
.bg01{
	width: 100%;
	height: 100%;
	background-color: #def7ff;
	background-image:
	 repeating-linear-gradient(-45deg,
	 #f8feff, #f8feff 7.5px,
	 transparent 0, transparent 15px);
}



/*==見出し=============================================*/
/*  font-family: "Noto Sans JP", sans-serif;*/

.sttl{
	position: relative;
	z-index: 1;
	color: #3fa9f5;
	padding-left: clamp(15px, 3vw, 20px);
	font-size:clamp(1.25rem, 1.018rem + 0.98vw, 1.75rem);
}
.sttl::before{
	position: absolute;
	content: '';
	width: 5px;
	height: 80%;
	left: 0;
	top: 50%;
	border-radius: 10px;
	transform: translateY(-50%);
	background: #3fa9f5;	
}

/*==btn=============================================*/

.mbtn{
	text-align: center;
	margin-top: clamp(25px,3vw,50px);
}

/* ラッパー（影担当） */
.mbtn span{
	display: inline-block;
	position: relative;
}

/* ボタン本体 */
.mbtn a{
	display: inline-block;
	position: relative;
	padding: 8px 4rem 8px clamp(20px,3vw,3rem);
	background: #1aa1cd;
	color: #fff;
	font-size: clamp(1.2rem, 0.667rem + 1.11vw, 1.5rem);
	font-weight: 600;
	border-radius: 100px;
	letter-spacing: .2rem;
	transform: translateY(0);
	transition: transform .15s;
}

/* 影（完全独立） */
.mbtn span::after{
	content: '';
	position: absolute;
	left: 0;
	top: 5px;
	width: 100%;
	height: 100%;
	border-radius: 100px;
	background: #007fa999;
	z-index: -1;
	pointer-events: none;
}

/* 押し込み */
.mbtn span:hover a{
	transform: translateY(3px);
}
.mbtn a::before{
	position: absolute;
	content: '\f061';
	font-family: "Font Awesome 6 Free";
	font-weight: 600;
	top: 50%;
	right: 2rem;
	transform: translateY(-50%);
}


/*=======================
	CTA
================================================================*/
.ctawrap{
	background:#1aa1cd;
}
.w-box{
	width: 90%;
	max-width: 960px;
	background: #fff;
	border-radius: 20px;
	padding: 2vw;
	text-align: center;
	margin: 0 auto;
	position: relative;	
}
.point{
	position: absolute;
	content: '';
	width: clamp(80px,15vw,170px);
	aspect-ratio: 1 / 1;
	background: url("../img/commn/cta.png")no-repeat center/contain;
	top: -2vw;
	left: -3%;
	
}

.ctalink{
	font-weight: 600;
	font-size: clamp(1.45rem, 0.828rem + 1.3vw, 1.8rem);
	position: relative;
}
.ctalink::after{
	position: absolute;
	content: '';
	width: 110%;
	height: 2px;
	background: #333;
	bottom:-3px;
	left: 50%;
	transform: translateX(-50%) scale(0);
	transition: .4s;
}
.ctalink:hover::after{
	transform: translateX(-50%) scale(1);
	transition: .4s;
}

.ctawrap p{
	color: #1aa1cd;
	font-size: clamp(1.1rem, 0.744rem + 0.74vw, 1.3rem);
	margin-top: 10px;
}
.ctatel{
	color: #1aa1cd;
	font-size: 1.6rem;
	font-weight: 600;
	padding-left: 3rem;
	position: relative;
	display: inline-block;
}
.ctatel::before{
	position: absolute;
	content: '';
	width: 1.8rem;
	height: 1.8rem;
	left: .5rem;
	top:50%;
	transform: translateY(-50%);
	background: url("../img/commn/icon_tel.svg")no-repeat center/contain;
	z-index: 3;
}

@media(max-width:767px){
	.point{
		top: -8vw;
	}	
	.ctawrap h3{
		font-size: clamp(1rem, 0.632rem + 1.55vw, 1.375rem)
	}
}
@media(max-width:499px){
	.point{
		top: auto;
		bottom: 99%;
	}	
}
