@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(15px,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;*/
	font-weight: 400;
	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: 80px 0 ;
	position: relative
}
table{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;/*隙間なし*/
}
a.anchor{
	display: block;
	padding-top: 90px;
	margin-top: -90px;
}

@media (max-width: 820px){
	a.anchor{
		display: block;
		padding-top: 60px;
		margin-top: -60px;
	}

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

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

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

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

@media (max-width: 768px) {
	.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: 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;
}
.pdb0{
	padding-bottom: 0;
}
.h30{
	height: 30px;
}
.h50{
	height: 50px;
}


.t_center{
	text-align: center;
}
.t_left{
	text-align: left;
}
/* 画像　-------------------------- */
.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: 768px){
	.flexbox{
		flex-direction: column;
	}
	.flexbox.rever{
		flex-direction: column-reverse;
	}
	.comn2, .comn3, .comn4, .comn5 {
		width: 100%;
		margin-bottom: 30px
	}
}

/*==背景=============================================*/
.bg01{
	background: url("../img/bg.png");
}

.bg-light{
	background: #E8F4FF;
}

/*==見出し=============================================*/
.ja{/*日本語見出し*/
	 font-family: "Zen Old Mincho", serif;
}
.en{/*英語見出し*/
	font-family: "DM Serif Display", serif;
}
.num{/*数字番号*/
	 font-family: "Oswald", sans-serif;
}

.mtitle{
	width: 50%;
	min-width: 300px;
	padding: 8px 0;
	padding-right: 15%;
	padding-left: 3vw;
	text-align: end;
	background: linear-gradient(to right,#005b97 35%,rgba(0,0,0,0));
	color: #fff;
	font-weight: 400;
	font-size: clamp(1.75rem, 1.402rem + 1.46vw, 2.5rem);
	letter-spacing: 0.15rem;
	white-space: nowrap;
}
.mtitle .ja{
	font-size: clamp(0.875rem, 0.701rem + 0.73vw, 1.25rem);
	padding-left: 15px;
}

.title02{
	font-family: "Zen Old Mincho", serif;	
	text-align: center;
	font-size: clamp(1.75rem, 1.547rem + 0.85vw, 2.188rem);
	color: #005b97;
	position: relative;
	margin-bottom: 30px;
}
.title02::before{
	position: absolute;
	content: '';
	width: 80px;
	height: 2px;
	background: #2938ac;
	bottom:-10px;
	left: 50%;
	transform: translateX(-50%);
}
.title03{
	position: relative;
    font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	background-color: #fff;
	border: 2px solid #005b97;
    padding: 18px 18px;
	padding-left: 36px;
    margin-bottom: 25px;
	box-shadow: 4px 4px #999;
}
.title03::before{
	content: '';
	display: block;
	width: 4px;
	height: 25px;
	background-color: #005b97;
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
}


/*==btn=============================================*/
.brnl{
	display: block;
	width: 50%;
	min-width: 350px;
	background: linear-gradient(to left,#005b97 35%,rgba(0,0,0,0));
	color: #fff;
	font-weight: 400;
	font-size:clamp(1.25rem, 0.671rem + 2.44vw, 2.5rem);
	letter-spacing: 0.15rem;	
	margin-left: auto;
	padding: 8px 0;
	padding-right: 10%;
	text-align: end;
	white-space: nowrap;	
}
.brnl .ja{
	font-size: clamp(0.813rem, 0.61rem + 0.85vw, 1.25rem);
	padding-left: 15px;
}
.brnl:hover{
	background: linear-gradient(to left,#044977 35%,rgba(0,0,0,.1));
}

@media(max-width:450px){
	.brnl .ja{
	display: block;
}
}
.btn01{
	display: inline-block;	
	min-width: 300px;
	padding: 6px 15px;
	color: #fff;
	background: #044977;
	border: 2px solid #044977;
}
.btn01:hover{
	color:#044977;
	background:  #fff;	
}

.ib-list{
	display: flex;
	flex-wrap: wrap;
}
.ib-list li{
	display: inline-block;
	padding-right: 10px;
}