@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;
}
a{
	text-decoration: none;
	color: #333;
	transition: .4s;
}
ul,ol{
	list-style: none;
	padding: 0;
}
table{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
section {
	padding: 8vh 0 ;
	position: relative;
}

.wrapper{
	width: 100%;
	height: 100%;
	overflow: hidden;
}

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

a.anchor{
	display: block;
	padding-top: 60px;
	margin-top: -60px;
}

/*幅・高さ調整-------*/
.inner{
	width: 96%;
	max-width: 1200px;
	margin: 0 auto;
}
.inner.wide{
	max-width: 1400px;
}
.inner.max{
	max-width: none;
}
/*高さ*/
.mg50{
	margin-bottom: 50px !important;
}
.mg40{
	margin-bottom: 40px !important;
}
.mg30{
	margin-bottom: 30px !important;
}
.h30{
	height: 30px;
}

.pmg p{
	margin-bottom: 10px;
}
.pmg15 p{
	margin-bottom: 15px;
}

.pmg p:last-child,
.pmg15 p:last-child{
	margin-bottom: 0;
}
.pd0{
	padding: 0;
}
.t_center,.pc_center{
	text-align: center;
}
/*画像*/
img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/*flex*/
.flex{
	display: flex;
	flex-wrap: wrap;
}
.flex_n{
	display: flex;
}
.f_jb{
	justify-content: space-between;
}

/*text*/
.mtitle{
	margin-bottom: 40px;
}
.mtitle img{
	width: 70%;
	max-height: 80px;
	object-position: left;
}
.mtitle._b img{
	width: 90%;
}
.mtitle span{
	display: block;
	position: relative;
	padding-left: 30px;
}
.mtitle span::before{
	position: absolute;
	content: '';
	width: 20px;
	height: 2px;
	background: #3577CA;
	top:50%;
	left: 0;
	transform: translateY(-50%);
}
@media(max-width:600px){
	.mtitle img{
		width: 100%;
		max-height: 100%;
		object-position: left;
	}
}

.stitle {
	position: relative;
	border-bottom: 1px solid #3577CA;
	padding: 0 0 0 35px;
	margin-bottom: 20px;
	font-weight: 400;
}
.stitle:before,
.stitle:after {
  position: absolute;
  content: '';
  width: 17px;
  height: 17px;
  top: 30%;
  transform: rotate(45deg);
}
.stitle:before {/*左のひし形*/
  border: 2px solid #3577CA;
  left: 3px;
}
.stitle:after {/*右のひし形*/
  left: 10px;
  background: #55B8FF;
}


/*btn*/
.btn_e{
	text-align: end;
	
}
.btn01{
	position: relative;
	display: inline-block;
	padding: 0 20px;
    color: #3577CA;
    text-decoration: none;
    outline: none;
	margin-top: 20px;
	min-width: 200px;
}
.btn01::before{
    content: '';
	position: absolute;
    bottom:-8px;
    left:15%;  
    width: 85%;
    height: 1px;
	background:#3577CA;
    transition: all .3s;
}
.btn01::after{
    content: '';
	position: absolute;
    bottom:-3px;
    right:0;
    width: 15px;
    height:1px;
	background:#3577CA;
    transform: rotate(35deg);
    transition: all .3s;
}

/*hoverした際の移動*/
.btn01:hover::before{
    width: 95%;
}

.btn01:hover::after{
    right:-10%;
}

.btn02{
	display: block;
	color: #111;
	text-align: center;
	transition: .6s;
	font-size: 1.2rem;
	font-weight: 500;
	padding: 8px 5px;
	margin: 0 auto;
	width: 300px;
	background: #2061C0;
	border: 1px solid #2061C0;
	border-radius: 25px;
	color: #fff;
}
.btn02:hover{
	background: #fff;
	color: #2061C0;
}
.btn02::before{
	font-family: "Font Awesome 6 Free";
	content:'\f1d8';
	font-weight: 700;
	margin-right: 10px;
}







.inner.bg_white {
    background-color: #fff;
    padding: 40px;
}


/*チェックリスト*/
ul.check_list li{
	letter-spacing: 0.08em;
	margin-bottom: 5px;
}
ul.check_list li::before{
	font-family: "Font Awesome 6 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #2061C0;
	margin-right: .5em;
	font-size: .9em;
}
ul.check_list li:last-child{
	margin-bottom: 0;
}
ul.check_list.row{
	display: flex;
	flex-wrap: wrap;
}
ul.check_list.row li{
	margin-right: 40px;
	margin-bottom: 10px;
}
@media (max-width: 750px){
	ul.check_list.row{
		display: block;
	}
	ul.check_list.row li{
		margin-right: 0;
	}
}