@charset "utf-8";

/*==================================================

BASE

==================================================*/
html {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body {
	color: #0d0d0d;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
	font-size: 1.6rem;
	-webkit-font-smoothing: antialiased;
/*	font-feature-settings: "palt";*/
	letter-spacing: .04em;
	overflow-x: hidden;
  font-weight: 500;
}
body.menu-open{
	overflow: hidden;
}
html.menu-open{
	overflow: hidden;
}
img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
a {
  color: #033e92;
  text-decoration: none;
	cursor: pointer;
}

/*==================================================

全ページ共通

==================================================*/
/* PC */
@media print, screen and (min-width: 768px) {
	html {
		font-size: 10px;
	}
	.sp {
		display: none!important;
	}
	a:hover {
		text-decoration: underline;
	}
}

/* SP */
@media screen and (max-width: 767px) {
	html {
		font-size: 1.33vw;
	}
	.pc {
		display: none!important;
	}
}

/*==================================================

ヘッダー

==================================================*/

/* レイアウト 
--------------------------------------------------*/
.l-header{
	width: 100%;
	position:fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background-color: #fff;
}
.l-header a{
  color: #fff;
  font-weight: bold;
	text-decoration: none;
	display: block;
}
.l-header__logo a{
  color: #0d0d0d;
  display: flex;
  align-items: center;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
	.l-header{
    height: min(8rem,6.154vw);
	}
	.l-header__logo{
		position:absolute;
		top:min(2.2rem,1.693vw);
		left:min(10rem,8vw);
	}
	.l-header__logoText{
    font-size: min(2.2rem,1.6vw);
    font-weight: bold;
	}
	.l-header__logoImage{
		width: min(14.7rem,11vw);
    margin-right: min(1.7rem,1.3vw);
	}
}

/* SP */
@media screen and (max-width: 767px){	
	.l-header{
    height: 12rem;
	}
	.l-header__logo{
		position:absolute;
		top:2.5rem;
		left:4rem;
    display: flex;
    align-items: center;
	}
	.l-header__logoText{
    font-size: 2.8rem;
    line-height: 1.2857;
    font-weight: bold;
	}
	.l-header__logoImage{
		width: 21.8rem;
    margin-right: 3.3rem;
	}
}

/* グローバルナビ
--------------------------------------------------*/

/* PC */
@media print,only screen and (min-width: 768px){ 
	.nav-global{    
		position:absolute;
		top:0;
		right:0;
		display: flex;
		justify-content: flex-end;
    background: linear-gradient(90deg, rgba(2,74,148,1) 0%, rgba(3,54,145,1) 100%); 
	}
	.nav-global li{
/*    width: min(18.3rem,14.077vw);*/
    display: flex;
    border-left: 1px #2865b0 solid;
	}
	.nav-global li:first-child{
    border-left: none;
	}
	.nav-global li:last-child{
/*    width: min(22.4rem,17.23vw);*/
	}
	.nav-global li a{
    width: 100%;
    height: min(8rem,6.154vw);
		font-size: min(1.8rem,1.5vw);
    font-weight: bold;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
    padding: 0 3rem;
	 }
	.nav-global li a:hover{
    background-color: rgba(3,44,123,0.5);
	 }
}

@media (min-width: 768px) and (max-width: 1390px) {
	.l-header__logo{
    left: 2rem;
	}
	.nav-global li a{
    padding: 0 min(2rem,1.538vw);
	 }
}

/* SP */
@media screen and (max-width: 767px){	
	.nav-global li{
    border: 1px rgba(255,255,255,0.15) solid;
	}
	.nav-global a{
    background: url("../images/shared/arrow.svg") right 3.6rem center no-repeat;
    background-size: 3.7rem auto;
		color: #fff;
		font-size: 3.6rem;
		padding: 3.5rem 1rem 3.5rem 5rem;
    display: block;
	}
}

/* ハンバーガー
--------------------------------------------------*/

/* PC */
@media print,only screen and (min-width: 768px){ 
	.m-hamburger{
	  display:none;
	}	
}

/* SP */
@media screen and (max-width: 767px){	
	.l-header__menus{
    width: 100%;
    background: linear-gradient(90deg, rgba(2,74,148,1) 0%, rgba(3,54,145,1) 100%); 
    position: absolute;
    top: 12rem;
    padding-bottom: 3rem;
    display: none;
	}
	.m-hamburger{
    background: linear-gradient(90deg, rgba(2,74,148,1) 0%, rgba(3,54,145,1) 100%); 
		width: 12rem;
		height: 12rem;
		position: absolute;
		top: 0;
		right: 0;
		cursor: pointer;
		z-index: 100;
	}
	.m-hamburger__lines{
		height: 70%;
		width:50%;
		margin: 1% auto -10% auto;
		position: relative;
	}
	.m-hamburger__lines>div{
		background-color: #fff;
		width:100%;
		height:1px;
		transition: transform .3s ease, opacity .3s ease;
		position: absolute;
		left:0;
		top:50%;
	}
	.m-hamburger__lines>div:nth-child(2){
		width:83.333%;
	}
	.m-hamburger__lines>div:nth-child(3){
		width:66.6666%;
	}
	.m-hamburger__lines>div:first-child{
		transform: translateY(-880%);
	}
	.m-hamburger__lines>div:last-child{
		transform: translateY(880%);
	}
	.menu-open .m-hamburger__lines>div:nth-child(3){
    width: 100%;
	}
	.menu-open .m-hamburger__lines>div:first-child{
		transform: rotate(225deg);
	}
	.menu-open .m-hamburger__lines>div:nth-child(2){
		transform: translateX(-50%);
		opacity: 0;
	}
	.menu-open .m-hamburger__lines>div:last-child{
		transform: rotate(-225deg);
	}
	.m-hamburger__text{
		height: 15%;
		width:80%;
		margin: 0 auto;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
	}
	.m-hamburger__text:before{
		content: "MENU";
	}
	.menu-open .m-hamburger__text:before{
		content: "CLOSE";
	}
}

/*==================================================

フッター

==================================================*/
.l-footer01{
  background: linear-gradient(90deg, rgba(2,74,148,1) 0%, rgba(3,54,145,1) 100%); 
  color: #fff;
  text-align: center;
  position: relative;
}
.l-footer__text01{
  font-weight: bold;
}	
.l-footer__text02{
  line-height: 1.75;
}	
.l-footer__text02 a{
  color: #fff;
}	
.l-footer__copy{
  color: #595959;
	text-align:center;
}	
.l-footer__pagetop{
  position: fixed;
  z-index: 100;
}	
.l-footer__pagetop a{
  border: 1px #b7c5dc solid;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  display: block;
}	
.l-footer__pagetop a:before{
  content: "";
  background: #033a92;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}	

/* PC */
@media print,only screen and (min-width: 768px){ 
  .l-footer01{
    padding: 4.3rem 3rem 3.8rem 3rem;
  }
  .l-footer02{
    padding: 2rem 3rem 5rem 3rem;
  }	
  .l-footer__logo{
    width: 14.8rem;
    margin:0 auto 1.1rem auto;
  }	
  .l-footer__text01{
    font-size: 2rem;
    margin-bottom: 2rem;
  }	
  .l-footer__text02{
    font-size: 1.6rem;
  }	
  .l-footer__copy{
    font-size: 1.6rem;
  }	
  .l-footer__pagetop{
    right: 2.2rem;
    bottom: 7rem;
  }	
  .l-footer__pagetop a{
    width: 6rem;
    height: 6rem;
    transition: all .3s ease;
  }	
  .l-footer__pagetop a:before{
    width: 1.7rem;
    height: 1.5rem;
    top: 1.9rem;
    transition: all .3s ease;
  }	
  .l-footer__pagetop a:hover{
    background-color: #033a92;
    border: 1px #fff solid;
  }	
  .l-footer__pagetop a:hover:before{
    background: #fff;
  }	
}

/* SP */
@media screen and (max-width: 767px){
  .l-footer01{
    padding: 5rem 3rem 3.4rem 3rem;
  }
  .l-footer02{
    padding: 2.2rem 3rem 3.5rem 3rem;
  }	
  .l-footer__logo{
    width: 24.4rem;
    margin:0 auto 1rem auto;
  }	
  .l-footer__text01{
    font-size: 3.2rem;
    margin-bottom: 2.2rem;
  }	
  .l-footer__text02{
    font-size: 2.6rem;
  }	
  .l-footer__copy{
    font-size: 2.6rem;
  }	
  .l-footer__pagetop{
    right: 2.5rem;
    bottom: 5.5rem;
  }	
  .l-footer__pagetop a{
    width: 8.1rem;
    height: 8.1rem;
  }	
  .l-footer__pagetop a:before{
    width: 2.3rem;
    height: 1.9rem;
    top: 2.6rem;
  }	
}

/*==================================================

メイン

==================================================*/
.home-cover{
  position: relative;
  box-sizing: border-box;
  display: flex;
}
.home-cover:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.home-cover__title{
  width: 100%;
  text-shadow: 0 0 10px rgba(4,22,54,0.5);
  color: #fff;
  font-family: 'LINE Seed JP', sans-serif;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}
/* PC */
@media print,only screen and (min-width: 768px){ 
	.home-cover{
		height: 50rem;
    margin-top: min(8rem,6.154vw);
	}
	.home-cover:before{
    background: url("../images/home/main.jpg") center center no-repeat;
    background-size: cover;
		height: 50rem;
	}
	.home-cover__title{
    font-size: 5.5rem;
    line-height: 1.418;
    white-space: nowrap;
	}
}

/* SP */
@media screen and (max-width: 767px){	
	.home-cover{
		height: 60rem;
    margin-top: 12rem;
	}
	.home-cover:before{
    background: url("../images/home/main-sp.jpg") center center no-repeat;
    background-size: cover;
		height: 60rem;
	}
	.home-cover__title{
    width: 100%;
    font-size: 6.5rem;
    line-height: 1.3846;
	}
}

/*==================================================

セカンド共通

==================================================*/
/* レイアウト
--------------------------------------------------*/
.l-aside{
  line-height: 1.5;
}
/* PC */
@media print,only screen and (min-width: 768px){	
	.l-content{
    letter-spacing: .04em;
    line-height: 1.875;
    font-size: 1.6rem;
		padding: 0 3rem;
	}
	.l-content__inner{
		max-width: 110rem;
		font-size: 1.6rem;
		margin: 0 auto 9rem auto;		
	}
  .l-container{
		max-width: 110rem;
    display: flex;
    justify-content: space-between;
    line-height: 1.875;
    padding: 0 3rem;
    box-sizing: content-box;
		margin: -3rem auto 4rem auto;	
	}
  .l-aside{
		width: min(27rem,22vw);	
	}
  .l-main{
		width: calc( 100% - min(31.8rem,25vw) );	
	}
}

/* SP */
@media screen and (max-width: 767px){
	.l-content{
		font-size: 2.6rem;
    line-height: 1.923;
    padding: 0 3.5rem;
    margin-bottom: 6rem;
	}
  .l-container{
		font-size: 2.6rem;
    line-height: 1.923;
    padding: 0 3.5rem;
	}
}

/* サイド
--------------------------------------------------*/
.l-aside__title{
  background-color: #f2f5f9;
  position: relative;
  font-weight: bold;
  letter-spacing: .04em;
}
.l-aside__title:before,
.l-aside__title:after{
  width: 0.7rem;
  content: "";
  position: absolute;
  left: 0;
}
.l-aside__title:before{
  height: 100%;
  background-color: #91b9e4;
  top: 0;
  bottom: 0;
}
.l-aside__title:after{
  background-color: #004ea2;
  top: 50%;
  bottom: 0;
}
.l-aside__nav li{
  border-bottom: 1px #d9d9d9 dashed;
}
.l-aside__nav a{
  background: url("../images/shared/arrow02.svg") right 1.5rem center no-repeat;
  color: #033e92;
  display: block;
  text-decoration: none;
}

/* PC */
@media print,only screen and (min-width: 768px){	
  .l-aside__title{
    font-size: 2.2rem;
    padding: 0.9rem 2.3rem;
  }
  .l-aside__nav{
    margin-bottom: 6rem;
  }
  .l-aside__nav a{
    background-size: 1.6rem auto;
    font-size: 1.8rem;
    padding: 1.6rem 3rem 1.6rem 1.1rem;
  }
  .l-aside__nav a:hover{
    text-decoration: underline;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .l-aside__title{
    font-size: 3.2rem;
    padding: 1.8rem 3rem;
  }
  .l-aside__nav{
    margin-bottom: 8rem;
  }
  .l-aside__nav a{
    background-size: 3rem auto;
    font-size: 3rem;
    padding: 2.7rem 6rem 2.7rem 2rem;
  }
}

/* ページタイトル
--------------------------------------------------*/
.m-pageTitle{
  color: #fff;
  display: flex;
  position: relative;
}
.m-pageTitle:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.m-pageTitle__inner{
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
}
.m-pageTitle h1{
  font-family: 'LINE Seed JP', sans-serif;
  text-shadow: 0 0 10px rgba(4,22,54,0.5);
  line-height: 1.5;
}
/* PC */
@media print,only screen and (min-width: 768px){
  .m-pageTitle{
    height: 32rem;
    padding: 0 3rem;
    margin: min(8rem,6.154vw) 0 -2.5rem 0;
  }
  .m-pageTitle:before{
    height: 32rem;
    background: url("../images/shared/title.jpg") center center no-repeat;
    background-size: cover;
  }
  .m-pageTitle__inner{
    max-width: 110rem;
    margin: 0 auto;
  }
  .m-pageTitle{
    margin-bottom: 1.5rem;
  }
  .m-pageTitle h1{
    font-size: 4.6rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .m-pageTitle{
    height: 35rem;
    margin: 12rem 0 1.3rem 0;
  }
  .m-pageTitle__inner{
    justify-content: center;
  }
  .m-pageTitle:before{
    height: 35rem;
    background: url("../images/shared/title-sp.jpg") center center no-repeat;
    background-size: cover;
  }
  .m-pageTitle h1{
    font-size: 5.6rem;
  }
}

/* ぱんくず
--------------------------------------------------*/
.m-bread{
	display: flex;
	justify-content: flex-end;
}
.m-bread li{
  display: block;
	background: url("../images/shared/arrow-bread.svg") left center no-repeat;
}
.m-bread li a{
  color: #033e92;
  text-decoration: none;
}
.m-bread li:first-child{
	background: none;
  padding-left: 0;
  margin-left: 0;
}

/* PC */
@media print,only screen and (min-width: 768px){	
  .m-bread{
    max-width: 110rem;
    margin: 0 auto 5.5rem auto;  
    padding: 0 3rem;
    box-sizing: content-box;
  }
  .m-bread li{
    background-size: 0.7rem auto;
    padding-left: 2.5rem;
    margin-left: 2rem;
    font-size: 1.6rem;
  }
  .m-bread a:hover{
    text-decoration: underline;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .m-bread{
    margin: 0 3.5rem 6rem 0;  
  }
  .m-bread li{
    font-size: 2.2rem;
    background-size: 1.1rem auto;
    padding-left: 3.4rem;
    margin-left: 2.7rem;
  }
}

/*==================================================

トップページ

==================================================*/
	
/* イントロ
--------------------------------------------------*/
.home-intro{
  background-image: url("../images/home/intro-bg01.jpg"),url("../images/home/intro-bg02.jpg");
  background-position: 0 0, right bottom;
  background-repeat: no-repeat;
}
.home-intro__title{
  color: #033e92;
  font-weight: bold;
  text-align: center;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-intro{
    background-image: url("../images/home/intro-bg01.jpg"),url("../images/home/intro-bg02.jpg");
    background-size: 84.6rem auto,44.4rem auto;
    padding: 10rem 3rem 7rem 3rem;
    margin-top: -4.7rem;
  }
  .home-intro__inner{
    max-width: 79rem;
    margin: 0 auto;	
  }
  .home-intro__title{
    font-size: 3.6rem;
    margin-bottom: 1.8rem;
  }
  .home-intro__text{
    font-size: 1.8rem;
    line-height: 2;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-intro{
    background-image: url("../images/home/intro-bg01-sp.jpg"),url("../images/home/intro-bg02-sp.jpg");
    background-size: 100% auto,100% auto;
    padding: 22.5rem 3.6rem 14rem 3.6rem;
    margin-top: -14rem;
  }
  .home-intro__inner{
  }
  .home-intro__title{
    font-size: 4.6rem;
    margin-bottom: 1.5rem;
  }
  .home-intro__text{
    font-size: 2.8rem;
    line-height: 1.785;
  }
}
	
/* NEWS
--------------------------------------------------*/
.home-news{
  background-color: #e8eef4;
}
.home-news__inner{
  position: relative;
}
.home-news__inner:after{
  content: "";
  background-color: #b7c4d6;
  width: 1px;
  position: absolute;
  display: block;
}
.home-news__title{
  position: absolute;
  left: 0;
  font-family: 'LINE Seed JP', sans-serif;
  font-weight: bold;
}
.home-news__each{
  display:none;
}
.home-news__each.current{
  display:block;
}
.home-news__list a{
  text-decoration: none;
}
.home-news__list time{
  color: #595959;
}
.home-news__category{
  color: #fff;
  text-align: center;
  position: relative;
  line-height: 1;
}
.home-news__text{
  color: #033e92;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-news{
    padding: 4rem 3rem 6.5rem 3rem;	
  }
  .home-news__inner{
    max-width: 110rem;
    margin: 0 auto;	
    position: relative;
  }
  .home-news__inner:after{
    bottom: 2.3rem;
    top: 6.3rem;
    left: 5.8rem;
  }
  .home-news__title{
    left: -0.4rem;
    top: -0.8rem;
    font-size: 4rem;
  }
  .home-news__tab{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:0 1rem;
    margin-bottom: 3.5rem;
  }
  .home-news__tab li{
    background-color: #fff;
    width: 12rem;
    color: #033e92;
    text-align: center;
    border: 1px #b1c7dd solid; 
    border-radius: 0.5rem;
    padding: 0.7rem 0.3rem;
    box-sizing: border-box;
    cursor: pointer;
    transition: all .3s ease;
  }
  .home-news__tab li.current,
  .home-news__tab li:hover{
    background-color: #024994; 
    color: #fff;
  }
  .home-news__list{
    margin: 0 0 3.4rem 11.3rem;
  }
  .home-news__list a{
    display: flex;
    align-items: flex-start;
    gap:0 2rem;
    padding: 1.9rem 0;
  }
  .home-news__list a:hover .home-news__text{
    text-decoration: underline;
  }
  .home-news__list time{
    font-size: 1.8rem;
  }
  .home-news__category{
    width: 10rem;
    font-size: 1.3rem;
    font-weight: 500;
    border-radius: 1.5rem;
    padding: 0.6rem 0;
    top: 0.1rem;
  }
  .home-news__text{
    font-size: 1.8rem;
    flex: 1;
  }
}

@media (min-width: 768px) and (max-width: 930px) {  
  .home-news__tab{
    justify-content: flex-end;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-news{
    padding: 5rem 3.5rem 7.5rem 3.5rem;	
  }
  .home-news__inner{
  }
  .home-news__inner:after{
    bottom: 0;
    top: 11rem;
    left: 1.5rem;
  }
  .home-news__title{
    left: 0;
    top: 0;
    font-size: 6rem;
  }
  .home-news__tab{
    display: flex;
    justify-content: flex-end;
  }
  .home-news__tab select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
    background-color: ;
    width: 29rem;
    border-radius: 0.5rem;
    border: 1px #b1c7dd solid; 
    padding: 0.6rem 0.3rem;
    cursor: pointer;
    color: #033e92;
    font-size: 2.6rem;
    padding: 0.8rem 2.5rem 0.7rem 2.5rem;
    background: #fff url("../images/shared/arrow-down.png") right 2.2rem center no-repeat;
    background-size: 1.7rem auto;
    margin-left: auto;
  }
  .home-news__list{
    margin: 5rem 0 6.5rem 5.4rem;
  }
  .home-news__list li{
    margin-bottom: 3.3rem;
  }
  .home-news__list time{
    font-size: 2.6rem;
    vertical-align: middle;
  }
  .home-news__category{
    width: 16rem;
    font-size: 2rem;
    font-weight: 500;
    border-radius: 3rem;
    display: inline-block;
    vertical-align: middle;
    margin-left: 1.7rem;
    padding: 0.9rem 0;
  }
  .home-news__text{
    font-size: 2.6rem;
    line-height: 1.76;
    display: block;
    margin-top: 1.5rem;
  }
}
	
/* ボタン
--------------------------------------------------*/
.m-button{
  background: linear-gradient(90deg, rgba(2,74,148,1) 0%, rgba(3,54,145,1) 100%); 
  text-align: center;
  margin: 0 auto;
}
.m-button a{
  display: block;
  position: relative;
  border-bottom: 3px #d1dae8 solid;
  box-sizing: border-box;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
.m-button a:after{
  content: "";
  background: url("../images/shared/arrow.svg") center center no-repeat;
  background-size: 100% auto;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-button{
    width: 32rem;
  }
  .m-button a{
    width: 32rem;
    padding: 2.4rem 4.5rem;
    font-size: 2.2rem;
    transition: all .3s ease;
  }
  .m-button a:after{
    width: 2.3rem;
    height: 2.3rem;
    right: 2.1rem;
  }
  .m-button a:hover{
    background-color: rgba(3,44,123,0.5);
  }
}

/* SP */
@media screen and (max-width: 767px){
  .m-button{
    width: 50rem;
  }
  .m-button a{
    width: 50rem;
    padding: 2.4rem 4.5rem;
    font-size: 3.2rem;
  }
  .m-button a:after{
    width: 3.2rem;
    height: 3.2rem;
    right: 3rem;
  }
}

/* MORE
--------------------------------------------------*/
.home-more__list a{
  width: 100%;
  color: #fff;
  font-weight: bold;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
}
.home-more__text01{
  font-weight: bold;
  position: relative;
  width:100%;
}
.home-more__text01:after{
  content: "";
  background-color: #a6b5d3;
  height: 1px;
  position: absolute;
  bottom: 0;
  left:0;
  right:0;
  margin-left:auto;
  margin-right:auto;
  /* left: 50%;
  transform: translateX(-50%); */
  transform-origin: center;
}
.home-more__text02{
  font-weight: bold;
}
/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-more{
    height: 40rem;
    background: url("../images/home/link-bg.jpg") center center no-repeat;
    background-size: cover;
  }
  .home-more__list{
    display: flex;
  }
  .home-more__list li{
    width: calc( 100% / 3 );
    display: flex;
    border-left: 1px rgba(255,255,255,0.4) solid;
  }
  .home-more__list li:first-child{
    border-left: none;
  }
  .home-more__list a{
    height: 40rem;
    transition: all .3s ease;
  }  
  .home-more__list a:hover{
    background-color: rgba(9,24,53,0.5);
  }
  .home-more__text01{
    font-size: min(2.8rem,3.15vw);
    padding-bottom: 2.4rem;
    margin-bottom: 1.8rem;
  }
  .home-more__text01:after{
    width: min(28rem,25vw);
    transition: all .3s ease;
  }
  .home-more__list a:hover .home-more__text01:after{
    animation: homeMoreLineHover 0.3s ease;
    
  }

  @keyframes homeMoreLineHover {
   0%{
    transform: scaleX(1);
   }
   30%{
    transform: scaleX(0);
   }
   100%{
    transform: scaleX(1);
   }
  }

  .home-more__text02{
    font-size: 1.6rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .home-more{
    height: 90rem;
    background: url("../images/home/link-bg-sp.jpg") center center no-repeat;
    background-size: 100% auto;
  }
  .home-more__list{
  }
  .home-more__list li{
    border-top: 1px rgba(255,255,255,0.4) solid;
  }
  .home-more__list li:first-child{
    border-top: none;
  }
  .home-more__list a{
    height: 29.7rem;
  }
  .home-more__text01{
    font-size: 3.8rem;
    padding-bottom: 3rem;
    margin-bottom: 2.3rem;
  }
  .home-more__text01:after{
    width: 36rem;
  }
  .home-more__text02{
    font-size: 2.6rem;
  }
}

/* Links
--------------------------------------------------*/
.m-links__title{
  text-align: center;
  position: relative;
  font-family: 'LINE Seed JP', sans-serif;
  font-weight: bold;
}
.m-links__title:after{
  content: "";
  background-color: #e5e5e5;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: block;
}
.m-links__title span{
  background-color: #fff;
  position: relative;
  z-index: 3;
}
.m-links__list{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-links{
    max-width: 110rem;
    margin: 0 auto;
    box-sizing: content-box;
    padding: 7rem 3rem 6rem 3rem;
  }
  .m-links__title{
    font-size: 5rem;
    margin-bottom: 3.3rem;
  }
  .m-links__title span{
    padding: 0 2.7rem;
  }
  .m-links__list{
    gap:min(3.4rem,2.62vw);
  }
  .m-links__list li{
    width: calc( 25% - min(2.55rem,1.97vw) );
  }
  .m-links__list a{
    opacity: 1;
    transition: all .3s ease;
  }
  .m-links__list a:hover{
    opacity: 0.8;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .m-links{
    padding: 6rem 3.5rem 12rem 3.5rem;
  }
  .m-links__title{
    font-size: 7rem;
    margin-bottom: 2.6rem;
  }
  .m-links__title span{
    padding: 0 2.7rem;
  }
  .m-links__list{
    gap:3rem 3rem;
  }
  .m-links__list li{
    width: calc( 50% - 1.5rem );
  }
}

/*==================================================

NEWS

==================================================*/
.m-news{
  border-top: 1px #e5e5e5 solid;
}
.m-news li{
  border-bottom: 1px #e5e5e5 solid;
}
.m-news a{
  text-decoration: none;
}
.m-news time{
  color: #595959;
}
.m-news__category{
  color: #fff;
  line-height: 1;
  position: relative;
  text-align: center;
}
.m-news__text{
  color: #033e92;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-news{
    line-height: 1.5;
    margin: 0 0 3.8rem 0;
  }
  .m-news a{
    display: flex;
    align-items: flex-start;
    padding: 2.8rem 0;
    gap:0 2rem;
  }
  .m-news a:hover .m-news__text{
    text-decoration: underline;
  }
  .m-news time{
    font-size: 1.8rem;
  }
  .m-news__category{
    width: 10rem;
    font-size: 1.3rem;
    font-weight: 500;
    border-radius: 1.5rem;
    padding: 0.6rem 0;
    top: 0.1rem;
  }
  .m-news__text{
    font-size: 1.8rem;
    flex: 1;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .m-news{
    margin-bottom: 5.5rem;
  }
  .m-news a{
    padding: 3.8rem 0;
    display: block;
  }
  .m-news time{
    font-size: 2.6rem;
    vertical-align: middle;
  }
  .m-news__category{
    width: 16rem;
    font-size: 2rem;
    font-weight: 500;
    border-radius: 3rem;
    display: inline-block;
    vertical-align: middle;
    margin-left: 1.7rem;
    padding: 0.9rem 0;
  }
  .m-news__text{
    font-size: 2.6rem;
    line-height: 1.76;
    display: block;
    margin-top: 1.5rem;
  }
}

/* ページャー
--------------------------------------------------*/
.m-pagenavi{
	display: flex;
  justify-content: center;
  line-height: 1.5;
}
.m-pagenavi a,
.m-pagenavi span{
  color: #004ea2;
  border: 1px #b2ceec solid;
  display: flex;
  justify-content: center;
  align-items: center;
	text-decoration: none;
  transition: all .3s ease;
  box-sizing: border-box;
  padding: 0 0.5rem;
}
.m-pagenavi .current,
.m-pagenavi a:hover{
	background-color: #004ea2;
  color: #fff;
	position: relative;
}
.m-pagenavi .prev,
.m-pagenavi .next{
  position: relative;
  border: none;
  font-weight: bold;
  letter-spacing: .06em;
}
.m-pagenavi .next{
  text-align: right;
}
.m-pagenavi .prev:before,
.m-pagenavi .next:before{
  content: "";
  background-image: url("../images/shared/arrow02.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.m-pagenavi .prev:before{
  transform: translateY(-50%) rotate(180deg);
  left: 0;
}
.m-pagenavi .next:before{
  right: 0;
}
/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-pagenavi{
    gap:0 2rem;
  }
  .m-pagenavi a,
  .m-pagenavi span{
    min-width: 4rem;
    height: 4rem;
    transition: all .3s ease;
    font-size: 1.5rem;
  }
  .m-pagenavi .prev,
  .m-pagenavi .next{
    width: 10rem;
    font-size: 2.2rem;
  }
  .m-pagenavi .prev:hover,
  .m-pagenavi .next:hover{
    background-color: #fff;
    color: #004ea2;
    text-decoration: underline;
  }
  .m-pagenavi .prev{
    padding-left: 2.4rem;
  }
  .m-pagenavi .next{
    padding-right: 2.4rem;
  }
  .m-pagenavi .prev:before,
  .m-pagenavi .next:before{
    width: 2rem;
    height: 2rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .m-pagenavi{
    gap:0 2.5rem;
    margin-bottom: 10rem;
  }
  .m-pagenavi a,
  .m-pagenavi span{
    min-width: 5.2rem;
    height: 5.2rem;
    font-size: 2rem;
  }
  .m-pagenavi .prev,
  .m-pagenavi .next{
    width: 12.5rem;
    font-size: 2.8rem;
  }
  .m-pagenavi .prev{
    padding-left: 4rem;
  }
  .m-pagenavi .next{
    padding-right: 4rem;
  }
  .m-pagenavi .prev:before,
  .m-pagenavi .next:before{
    width: 2.6rem;
    height: 2.6rem;
  }
}

/* タイトル
--------------------------------------------------*/
.m-news__title{
  font-weight: bold;
  letter-spacing: .04em;
  border-bottom: 1px #e5e5e5 solid;
  line-height: 1.5;
}
.m-news__timecategory{
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  line-height: 1.5;
}
.m-news__time{
  color: #595959;
  letter-spacing: .04em;  
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-news__title{
    font-size: 2.6rem;
    padding-bottom: 1.8rem;
    margin-bottom: 1.9rem;
  }
  .m-news__timecategory{
    gap:0 1.5rem;
    margin-bottom: 3rem;
  }
  .m-news__time{
    font-size: 1.8rem; 
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .m-news__title{
    font-size: 3.2rem;
    padding-bottom: 2.2rem;
    margin-bottom: 3rem;
  }
  .m-news__timecategory{
    gap:0 0.5rem;
    margin-bottom: 4rem;
  }
  .m-news__time{
    font-size: 2.6rem; 
  }
}

/* nextprev
--------------------------------------------------*/
.m-nextprev{
	position: relative;
  border-top: 1px #e5e5e5 solid;
  line-height: 1.5;
}
.m-nextprev a{
  color: #033e92;
  font-weight: bold;
  letter-spacing: .06em;
  display: block;
  text-decoration: none;
}
.m-nextprev__prev,
.m-nextprev__next{
	width: 25%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
  box-sizing: border-box;
}
.m-nextprev__next{
	right: 3rem;
	text-align: right;
  padding-right: 3.3rem;
}
.m-nextprev__list{
	width: 30%;
	margin: 0 auto;
	text-align: center;
}
.m-nextprev__prev:before,
.m-nextprev__next:before{
  content: "";
  background-image: url("../images/shared/arrow02.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
.m-nextprev__prev:before{
  transform: translateY(-50%) rotate(180deg);
  left: 0;
}
.m-nextprev__next:before{
  right: 0;
}
/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-nextprev{
    padding: 4.1rem 0;
    margin-top: 4rem;
  }
  .m-nextprev a{
    font-size: 2.2rem;
  }
  .m-nextprev a:hover{
    text-decoration: underline;
  }
  .m-nextprev__prev{
    left: 3rem;
    padding-left: 3.3rem;
  }
  .m-nextprev__next{
    right: 3rem;
    padding-right: 3.3rem;
  }
  .m-nextprev__prev:before,
  .m-nextprev__next:before{
    width: 2rem;
    height: 2rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .m-nextprev{
    padding: 5.7rem 0;
    margin: 8rem 0 4rem 0;
  }
  .m-nextprev a{
    font-size: 2.9rem;
  }
  .m-nextprev__prev{
    left: 0;
    padding-left: 4.2rem;
  }
  .m-nextprev__next{
    right: 0;
    padding-right: 4.2rem;
  }
  .m-nextprev__prev:before,
  .m-nextprev__next:before{
    width: 2.6rem;
    height: 2.6rem;
  }
}

/*==================================================

テンプレート

==================================================*/
/* 見出し
--------------------------------------------------*/
/* .m-title02,
.m-title03,
.m-title04,
.m-title05,
.m-title06{
  font-weight: bold;
  letter-spacing: .04em;
  line-height: 1.5;
}
.m-title02{
  background-color: #004ea2;
  background: rgb(0,78,162);
  background: linear-gradient(180deg, rgba(0,78,162,1) 0%, rgba(0,78,162,1) 3px, rgba(3,126,190,1) 3px, rgba(3,126,190,1) 4px, rgba(0,78,162,1) 4px, rgba(0,78,162,1) calc( 100% - 4px ), rgba(3,126,190,1) calc( 100% - 4px ), rgba(3,126,190,1) calc( 100% - 3px ), rgba(0,78,162,1) calc( 100% - 3px ), rgba(0,78,162,1) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.m-title02:before,
.m-title02:after{
  background-color: #037ebe;
  content: "";
  position: absolute;
  transform: rotate(45deg);
}
.m-title03{
  border-top: 0.5rem #ecf0f3 solid;
  position: relative;
}
.m-title03:before{
  width: 22rem;
  height: 0.5rem;
  content: "";
  background:url("../images/shared/h3-line.gif") center center no-repeat;
  position: absolute;
  top: -0.5rem;
  left: 0;
  display: block;
}
.m-title04{
  background-color: #f2f5f9;
  position: relative;
}
.m-title04:before,
.m-title04:after{
  width: 0.7rem;
  content: "";
  position: absolute;
  left: 0;
}
.m-title04:before{
  height: 100%;
  background-color: #91b9e4;
  top: 0;
  bottom: 0;
}
.m-title04:after{
  background-color: #004ea2;
  top: 50%;
  bottom: 0;
}
.m-title05{
  color: #033e92;
} */

/* PC */
/* @media print,only screen and (min-width: 768px){ 
  .m-title02,
  .m-title03,
  .m-title04,
  .m-title05,
  .m-title06{
    margin-bottom: 6rem;
  }
  .m-title02{
    font-size: 3rem;
    padding: 1.8rem 3.7rem;
  }
  .m-title02:before,
  .m-title02:after{
    width: 9rem;
    height: 9rem;
  }
  .m-title02:before{
    top: -5rem;
    left: -6.3rem;
  }
  .m-title02:after{
    bottom: -5rem;
    right: -6.3rem;
  }
  .m-title03{
    font-size: 2.8rem;
    padding: 1.5rem 0 0 1.4rem;
  }
  .m-title04{
    font-size: 2.6rem;
    padding: 1.1rem 3rem;
  }
  .m-title05{
    font-size: 2.6rem;
  }
  .m-title06{
    font-size: 2.6rem;
  }
} */

/* SP */
/* @media screen and (max-width: 767px){	
  .m-title02,
  .m-title03,
  .m-title04,
  .m-title05,
  .m-title06{
    margin-bottom: 6rem;
  }
  .m-title02{
    font-size: 3.6rem;
    padding: 1.6rem 3.5rem;
  }
  .m-title02:before,
  .m-title02:after{
    width: 9rem;
    height: 9rem;
  }
  .m-title02:before{
    top: -5rem;
    left: -6.5rem;
  }
  .m-title02:after{
    bottom: -5rem;
    right: -6.5rem;
  }
  .m-title03{
    font-size: 3.4rem;
    padding: 1.8rem 0 0 1.5rem;
  }
  .m-title04{
    font-size: 3.2rem;
    padding: 1.5rem 3rem;
  }
  .m-title05{
    font-size: 3.2rem;
  }
  .m-title06{
    font-size: 3.2rem;
  }
} */

/* リスト
--------------------------------------------------*/
/* .m-box{
  background-color: #f9fbfd;
  border: 1px #e2eef1 solid;
  position: relative;
}
.m-box:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border:4px #f3f6fa solid;
}
.m-list01 li,
.m-list02 li,
.m-list03 li,
.m-file01 li{
  position: relative;
}
.m-list01 li:before,
.m-list02 li:before,
.m-list03 li:before,
.m-file01 li:before,
.m-file02 a:before{
  content: "";
  position: absolute;
}
.m-list01 li:before{
  background: #004ea2;
  border-radius: 50%;
}
.m-list02 li:before,
.m-file01 li:before,
.m-file02 a:before{
  background: url("../images/shared/list-icon02.png") center center no-repeat;
  background-size: 100% auto;
}
.m-list03 li:before{
  background: url("../images/shared/list-icon03.png") center center no-repeat;
  background-size: 100% auto;
}
.m-file01 img,
.m-file02 img{
  vertical-align: middle;
}
.m-file02 a{
  background-color: #f2f5f9;
  position: relative;
  display: block;
  cursor: pointer;
} */

/* PC */
/* @media print,only screen and (min-width: 768px){ 
  .m-box{
    padding: 2.2rem 3rem;
    margin-bottom: 8rem;
  }
  .m-list01,
  .m-list02,
  .m-list03,
  .m-file01,
  .m-file02{
    margin-bottom: 5rem;
  }
  .m-list01 li,
  .m-list02 li,
  .m-list03 li,
  .m-file01 li{
    margin-bottom: 2rem;
  }
  .m-list01 li{
    padding-left: 3rem;
  }
  .m-list02 li,
  .m-list03 li{
    padding-left: 2.6rem;
  }
  .m-list01 li:before{
    width: 1.4rem;
    height: 1.4rem;
    border: 0.3rem #dfe7f0 solid;
    top: 0.4em;
    left: 0.9rem;
  }
  .m-list02 li:before,
  .m-file01 li:before,
  .m-file02 a:before{
    width: 0.9rem;
    height: 0.9rem;
    top: 0.5em;
    left: 0.9rem;
  }
  .m-file02 a:before{
    top: 1.5em;
    left: 2.2rem;
  }
  .m-list03 li:before{
    width: 1.1rem;
    height: 1.1rem;
    top: 0.5em;
    left: 0.8rem;
  }
  .m-file01 li{
    padding-left: 2.6rem;
  }
  .m-file01 img,
  .m-file02 img{
    width: 1.8rem;
    margin-left: 0.8rem;
  }
  .m-file02 li{
    margin-bottom: 3rem;
  }
  .m-file02 a{
    padding: 1.5rem 2.2rem 1.5rem 4rem;
  }
} */

/* SP */
/* @media screen and (max-width: 767px){	
  .m-box{
    padding: 2.5rem 3rem;
    margin-bottom: 6rem;
  }
  .m-list01,
  .m-list02,
  .m-list03,
  .m-file01,
  .m-file02{
    margin-bottom: 4rem;
  }
  .m-list01 li,
  .m-list02 li,
  .m-list03 li,
  .m-file01 li{
    margin-bottom: 1.5rem;
  }
  .m-list01 li{
    padding-left: 3rem;
  }
  .m-list02 li,
  .m-list03 li{
    padding-left: 3.8rem;
  }
  .m-list01 li:before{
    width: 2rem;
    height: 2rem;
    border: 0.4rem #dfe7f0 solid;
    top: 0.5em;
    left: 0.4rem;
  }
  .m-list02 li:before,
  .m-file01 li:before,
  .m-file02 a:before{
    width: 1.8rem;
    height: 1.8rem;
    top: 0.5em;
    left: 0.5rem;
  }
  .m-file02 a:before{
    top: 1.1em;
    left: 2.9rem;
  }
  .m-list03 li:before{
    width: 2rem;
    height: 2rem;
    top: 0.55em;
    left: 0.5rem;
  }
  .m-file01 li{
    padding-left: 2.6rem;
  }
  .m-file01 img,
  .m-file02 img{
    width: 2.8rem;
    margin-left: 1.5rem;
  }
  .m-file02 li{
    margin-bottom: 3rem;
  }
  .m-file02 a{
    padding: 1.6rem 2rem 1.6rem 6.3rem;
  }
} */

/* ボタン
--------------------------------------------------*/
/* .m-button01,
.m-button02{
  width: 100%;
  background: linear-gradient(90deg, rgba(2,74,148,1) 0%, rgba(3,54,145,1) 100%); 
  text-align: center;
  margin-bottom: 3rem;
}
.m-button01 a,
.m-button02 a{
  display: block;
  position: relative;
  border-bottom: 3px #d1dae8 solid;
  box-sizing: border-box;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
.m-button01 a:after,
.m-button02 a:after{
  content: "";
  background: url("../images/shared/arrow.svg") center center no-repeat;
  background-size: 100% auto;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.m-button02 a:after{
  background: url("../images/shared/arrow03.svg") center center no-repeat;
  background-size: 100% auto;
} */

/* PC */
/* @media print,only screen and (min-width: 768px){ 
  .m-button01 a,
  .m-button02 a{
    padding: 1.5rem 4.5rem;
    font-size: 2.2rem;
    transition: all .3s ease;
  }
  .m-button01 a:after,
  .m-button02 a:after{
    width: 2.3rem;
    height: 2.3rem;
    right: 2.3rem;
  }
  .m-button01 a:hover,
  .m-button02 a:hover{
    background-color: rgba(3,44,123,0.5);
  }
} */

/* SP */
/* @media screen and (max-width: 767px){
  .m-button01 a,
  .m-button02 a{
    padding: 1.8rem 4.5rem;
    font-size: 3.2rem;
  }
  .m-button01 a:after,
  .m-button02 a:after{
    width: 3.2rem;
    height: 3.2rem;
    right: 3rem;
  }
} */

/* アコーディオン
--------------------------------------------------*/
/* .m-accordion__title{
  background-color: #f2f5f9;
  position: relative;
  font-weight: bold;
  cursor: pointer;
  transition: all .3s ease;
}
.m-accordion__title:before,
.m-accordion__title:after{
  width: 0.7rem;
  content: "";
  position: absolute;
  left: 0;
}
.m-accordion__title:before{
  height: 100%;
  background-color: #91b9e4;
  top: 0;
  bottom: 0;
}
.m-accordion__title:after{
  background-color: #004ea2;
  top: 50%;
  bottom: 0;
}
.m-accordion__titleIn{
  position: relative;
}
.m-accordion__titleIn:after{
  content: "";
  background:url("../images/shared/arrow04.svg") center center no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}
.-open .m-accordion__titleIn:after{
  transform: rotate(180deg);
  transition: all .3s ease;
}
.m-accordion__detail{
  display: none;
} */

/* PC */
/* @media print,only screen and (min-width: 768px){ 
  .m-accordion{
    margin-bottom: 4rem;
  }
  .m-accordion__title{
    transition: all .3s ease;
  }
  .m-accordion__titleIn{
    font-size: 2.6rem;
    padding: 0.6rem 3rem;
  }
  .m-accordion__titleIn:after{
    width: 6rem;
    height: 6rem;
    background-size: 2rem auto;
  }
  .m-accordion__title:hover{
    background-color: #e0e9f7;
  }
  .m-accordion__detail{
    padding: 2.3rem 0;
  }
} */

/* SP */
/* @media screen and (max-width: 767px){	
  .m-accordion{
    margin-bottom: 5.5rem;
  }
  .m-accordion__titleIn{
    font-size: 3.2rem;
    padding: 1rem 3rem;
  }
  .m-accordion__titleIn:after{
    width: 8rem;
    height: 8rem;
    background-size: 2.7rem auto;
  }
  .m-accordion__detail{
    padding: 3.5rem 0;
  }
} */

/* NEWS
--------------------------------------------------*/
/* .m-newsbox{
  background-color: #e8eef4;
  position: relative;
}
.home-news__list a{
  text-decoration: none;
}
.m-newsbox__list time{
  color: #595959;
}
.m-newsbox__category{
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1;
}
.m-newsbox__text{
  color: #033e92;
}
.m-newsbox .m-button01{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
} */

/* PC */
/* @media print,only screen and (min-width: 768px){ 
  .m-newsbox{
    background-color: #e8eef4;
    padding: 3.5rem 3.7rem 4.5rem 3.7rem;	
    margin-bottom: 9rem;
  }
  .m-newsbox__list li{
    margin-bottom: 3rem;
  }
  .m-newsbox__list a{
    display: flex;
  }
  .m-newsbox__list a:hover .m-newsbox__text{
    text-decoration: underline;
  }
  .m-newsbox__list time{
    width: 11.4rem;
    font-size: 1.8rem;
  }
  .m-newsbox__category{
    width: 10rem;
    height: 2.5rem;
    font-size: 1.3rem;
    font-weight: 500;
    border-radius: 1.5rem;
    top: 0.3rem;
  }
  .m-newsbox__text{
    font-size: 1.8rem;
    flex: 1;
    margin-left: 2rem;
  }
  .m-newsbox .m-button01{
    width: 32rem;
    bottom: -7rem;
  }
} */

/* SP */
/* @media screen and (max-width: 767px){
  .m-newsbox{
    padding: 4rem 4rem 7rem 4rem;	
    margin-bottom: 15rem;
  } 
  .m-newsbox__list li{
    margin-bottom: 4rem;
  }
  .m-newsbox__list time{
    font-size: 2.6rem;
    vertical-align: middle;
  }
  .m-newsbox__category{
    width: 16rem;
    height: 4rem;
    font-size: 2rem;
    font-weight: 500;
    border-radius: 3rem;
    display: inline-block;
    vertical-align: middle;
    margin-left: 1.5rem;
    padding-top: 1.1rem;
    top: -0.2rem;
  }
  .m-newsbox__text{
    font-size: 2.6rem;
    line-height: 1.76;
    display: block;
    margin-top: 1rem;
  }
  .m-newsbox .m-button01{
    width: 50rem;
    bottom: -8rem;
  }
} */

/* 区切り線
--------------------------------------------------*/
/* .m-linedot,
.m-line,
.m-lineblue{
  margin-bottom: 6rem;
}
.m-linedot{
  border-bottom: 1px #d9d9d9 dashed;
}
.m-line{
  border-bottom: 1px #d9d9d9 solid;
}
.m-lineblue{
  border-bottom: 1px #7fa6d0 solid;
} */

/* PC */
/* @media print,only screen and (min-width: 768px){ 
} */

/* SP */
/* @media screen and (max-width: 767px){	
} */

/* フレーム
--------------------------------------------------*/
/* .m-frame__item{
  border-bottom: 3px #e5e9f2 solid;
}
.m-frame__item a{
  display: block;
  text-decoration: none;
}
.m-frame__image img{
  width: 100%;
  object-fit: cover; 
}
.m-frame__text{
  background: linear-gradient(90deg, rgba(2,74,148,1) 0%, rgba(3,54,145,1) 100%); 
  color: #fff;
  font-weight: bold;
  position: relative;
}
.m-frame__text span{
  display: block;
}
.m-frame__text:after{
  content: "";
  background: url("../images/shared/arrow.svg") center center no-repeat;
  background-size: 100% auto;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
} */

/* PC */
/* @media print,only screen and (min-width: 768px){ 
  .m-frame{
    display: flex;
    flex-wrap: wrap;
    gap:4rem 4rem;
    margin-bottom: 8rem;
  }
  .m-frame__item{
    width: calc( ( 100% / 3 ) - 2.666rem );
    overflow: hidden;
  }
  .m-frame__image{
    transition: all .3s ease;
  }
  .m-frame__image img{
    aspect-ratio: 34 / 23;  
  }
  .m-frame__text{
    font-size: 1.8rem;
    transition: all .3s ease;
  }
  .m-frame__text span{
    padding: 1.9rem 4.5rem 1.9rem 2.9rem;
  }
  .m-frame__item a:hover .m-frame__image{
    transform: scale(1.1);
  }
  .m-frame__item a:hover .m-frame__text span{
    background-color: #012e7b;
  }
  .m-frame__text:after{
    width: 2.3rem;
    height: 2.3rem;
    right: 2.3rem;
  }
} */

/* SP */
/* @media screen and (max-width: 767px){	
  .m-frame{
    margin-bottom: 8rem;
  }
  .m-frame__item{
    margin-bottom: 6rem;
  }
  .m-frame__image{
  }
  .m-frame__image img{
    aspect-ratio: 34 / 23;  
  }
  .m-frame__text{
    font-size: 3.2rem;
  }
  .m-frame__text span{
    padding: 2.2rem 6.6rem 2.2rem 3rem;
  }
  .m-frame__text:after{
    width: 3.3rem;
    height: 3.3rem;
    right: 3.3rem;
  }
} */

/* 404
--------------------------------------------------*/
.m-notfound{
  text-align: center;
}
.m-notfound__text01{
  font-family: 'LINE Seed JP', sans-serif;
  font-weight: bold;
  letter-spacing: .1em;
}
.m-notfound__text01 span{
  color: #033e92;
}
.m-notfound .m-button01{
  margin: 0 auto;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-notfound{
    margin: 7rem 0;
  }
  .m-notfound__text01{
    font-size: 5.4rem;
    margin-bottom: 1.2rem;
  }
  .m-notfound__text02{
    font-size: 1.6rem;
    line-height: 1.875;
    margin-bottom: 5rem;
  }
  .m-notfound .m-button01{
    width: 34rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .m-notfound{
    margin: 8rem 0;
  }
  .m-notfound__text01{
    font-size: 5.2rem;
    margin-bottom: 2.5rem;
  }
  .m-notfound__text02{
    font-size: 2.6rem;
    line-height: 1.923;
    margin-bottom: 5.5rem;
  }
  .m-notfound .m-button01{
    width: 50rem;
  }
}


/* アコーディオン
--------------------------------------------------*/

.wp-block-accordion + *{
  display:none;
}