@charset "utf-8";

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

ベース

==================================================*/
html {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
	color: #021320;
  background-color: #f7f7f7;
	font-family: var(--font-sans-serif);
	font-size: 1.6rem;
	-webkit-font-smoothing: antialiased;
/*	font-feature-settings: "palt";*/
	letter-spacing: .08em;
}
body.menu-open{
	overflow: hidden;
}
html.menu-open{
	overflow: hidden;
}
main{
}

/*========= font family変数指定 ==========*/
:root {
	--font-sans-serif: "Noto Sans JP", sans-serif;
	--font-serif: "Shippori Mincho", serif;
}
/*===================*/


img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
a {
	color: #021320;
	cursor: pointer;
}
/* フェードイン */
.js-inview {
	opacity: 0;
	transition: opacity .8s;
}
.js-inview.is-show {
	opacity: 1;
}

/* アンカー
--------------------------------------------------*/
.anchor{
  position: relative;
}
/* PC */
@media print,only screen and (min-width: 768px){
  .anchor{
    scroll-margin-top: 12.8rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
 .anchor{
    scroll-margin-top: 6.4rem;
  }
}

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

全ページ共通

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

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

/* form リセット
--------------------------------------------------*/
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
input[type="checkbox"]{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

ヘッダー

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

/* レイアウト 
--------------------------------------------------*/
.l-header img{
  width: 100%;
}
.l-header{
  width: 100%;
  position:fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.l-header__inner{
  position: relative;
  z-index: 101;
}
.l-header:after{
  content: "";
  position: absolute;
  inset:0;
  background: rgba(247, 247, 247, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: block;
}
.l-header a{
  text-decoration: none;
}
.l-header__logo{
  height: fit-content;
  position:absolute;
  top:0;
  bottom: 0;
  margin: auto 0;
}

/* PC */
@media print,only screen and (min-width: 1001px){ 
  .l-header__inner{
    height: 12.8rem;
    padding: 0 3rem;
  }
  .l-header__logo{
    width: 19.4rem;
    left:3.2rem;
  }
  .l-header__seo{
    color: #5D6970;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.75;
    position: absolute;
    left: 25rem;
    bottom: 2.6rem;    
  }
  .l-header a{
    transition: opacity .3s ease;
  }
  .l-header a:hover{
    opacity: 0.7;
  }
}

/* SP */
@media screen and (max-width: 1000px){	
  .l-header__inner{
    height: 6.4rem;
  }
  .l-header__logo{
    width: 10.1rem;
    left:1.2rem;
  }
  .l-header__seo{
    display: none;
  }
}



/* お問い合わせ 
--------------------------------------------------*/
.l-header__contact{
  position: absolute;
}
.l-header__contactIn{
  background: linear-gradient(45deg,#003883 0%, #8DC21F 100%);
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .04em;
}

/* PC */
@media print,only screen and (min-width: 1001px){ 
  .l-header__contact{
    top: 0;
    right: 0;
  }
  .l-header__contactIn{
    width: 12.8rem;
    height: 12.8rem;
    font-size: 1.4rem;
  }
}

/* SP */
@media screen and (max-width: 1000px){	
  .l-header__contact{
    top: 1.1rem;
    right: 6.4rem;
  }
  .l-header__contactIn{
    width: 13.1rem;
    height: 4.2rem;
    font-size: 1.2rem;
    border-radius: 8rem;
  }
}

/* グローバルナビ
--------------------------------------------------*/
.nav-global__itemIn{
  color: #021320;
  font-weight: 500;
  display: block;
  position: relative;
 }
.nav-global__item:has(> .nav-globalSecond) .nav-global__itemIn:after{
/*
  content: "";
  background: url("../images/shared/arrow-down.svg") center center no-repeat;
  background-size: 100% auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
*/
}
.nav-global__itemButton{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
  cursor: pointer;
}
.nav-global__itemButton:before,
.nav-global__itemButton:after{
  content: "";
  background-color: #004098;
  height: 1px;
  position: absolute;
  inset:0;
  margin: auto;
  display: block;
  transition: transform .3s ease;
}
.nav-global__itemButton:after{
  transform: rotate(90deg);
}
.-open .nav-global__itemButton:after{
  transform: rotate(0);
}

.nav-globalSecond__itemIn{
  font-weight: 500;
  flex: 1;
}
.nav-globalSecond__button{
  cursor: pointer;
}
.nav-globalThird{
  display: none;
}
.nav-globalThird__itemIn{
  display: block;
}

/* PC */
@media print,only screen and (min-width: 1001px){ 
  .nav-global{
    position:absolute;
    bottom: 3.1rem;
    right: 15.4rem;
    display: flex;
    justify-content: flex-end;
  }
  .nav-global__itemIn{
    font-size: 1.3rem;
    padding: 0.75rem 1.2rem;
   }
  .nav-global__item:has(> .nav-globalSecond) .nav-global__itemIn{
    padding-right: 3.3rem;
  }
  .nav-global__itemButton{
    width: 3.45rem;
    height: 3.45rem;
  }
  .nav-global__itemButton:before,
  .nav-global__itemButton:after{
    width: 1rem;
  }
  .nav-globalSecond{
    height: calc( 100vh - 12.8rem );
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow-y: scroll;
    height: calc( 100vh - 12.8rem );
    display: none;
    position: fixed;
    top: 12.8rem;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 5rem 5rem 5rem;
    box-sizing: border-box;
  }
  .nav-globalSecond__close{
    width: 7rem;
    height: 7rem;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 500;
    letter-spacing: .08em;
    text-align: center;
    padding-top: 4.6rem;
    margin:0 -1.5rem 2rem auto;
    position: relative;
    cursor: pointer;
  }
  .nav-globalSecond__close:before,  
  .nav-globalSecond__close:after{
    width: 3.96rem;
    height: 1px;
    content: "";
    background-color: #fff;
    display: block;    
    position: absolute;
    left: 0;
    right: 0;
    top: 2.6rem;
    margin: 0 auto;
  }
  .nav-globalSecond__close:before{
    transform: rotate(45deg);
  } 
  .nav-globalSecond__close:after{
    transform: rotate(-45deg);
  }
  .nav-globalSecond a{
    color: #fff;
  }
  .nav-globalSecond__in{
    max-width: 108rem;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: 0 auto;
    padding:3.5rem 6.4rem 4.8rem 6.4rem;
  }
  .nav-globalSecond__item{
    border-bottom: 1px rgba(255,255,255,0.5) solid;
  }
  .nav-globalSecond__item:first-child{
    border-top: 1px rgba(255,255,255,0.5) solid;
  }
  .nav-globalSecond__itemTop{
    display: flex;
    justify-content: space-between;  
    align-items: center;
  }
  .nav-globalSecond__itemIn{
    font-size: 1.6rem;
    font-weight: 500;
    padding: 3.2rem 4.2rem 3.2rem 0;
  }
  .nav-globalSecond__itemIn:after{
    width: 0.9rem;
    height: 1rem;
    content: "";
    background: url("../images/shared/arrow-green.svg") right center no-repeat;
    background-size: 100% auto;
    margin-left: 3.3rem;
    display: inline-block;
  }
  .nav-globalSecond__button{
    width: 4rem;
    height: 4rem;
    background-color: rgba(255,255,255,0.2);
    border: 1px #fff solid;
    border-radius: 50%;
    position: relative;
  }
  .nav-globalSecond__button:before,
  .nav-globalSecond__button:after{
    content: "";
    width: 1.2rem;
    height: 1px;
    background-color: #fff;
    display: block;
    position: absolute;
    inset:0;
    margin: auto;
    transition: transform .3s ease;
  }
  .nav-globalSecond__button:after{
    transform: rotate(90deg);
  }
  .nav-globalSecond__item.-open .nav-globalSecond__button:after{
    transform: rotate(0deg);
  }
  .nav-globalThird__inner{
    display: flex;
    flex-wrap: wrap;
    gap:0 4.5rem;
    margin:0 3.2rem 5.6rem 3.2rem;
  }
  .nav-globalThird__item{
    width: calc( 50% - 2.25rem );
  }
  .nav-globalThird__itemIn{
    background: url("../images/shared/arrow-white.svg") right center no-repeat;
    background-size: 0.8rem auto;
    padding: 1.8rem 1.8rem 1.8rem 0;
    font-size: 1.4rem;
  }
}

/* SP */
@media screen and (max-width: 1000px){	
  .nav-globalSecond{
    display: none;
    opacity:1!important;
  }
  .nav-globalThird{
    display: none;
  } 
  .nav-global a{
    color: #021320;
  }
  .nav-global__itemIn{
    background-color: #F0F0F0;
    font-size: 1.6rem;
    padding: 1.8rem 4.4rem 1.8rem 3.2rem;
    border-bottom: 1px #C5C4C4 solid;
   }
  .nav-global__itemButton{
    width: 6.67rem;
    height: 6.67rem;
  }
  .nav-global__itemButton:before,
  .nav-global__itemButton:after{
    width: 1.4rem;
  }
  .nav-globalSecond__button{
    position: absolute;
    width: 1.2rem;
    height: 0.97rem;
    right: 2.85rem;
    top: 2.6rem;
    background: url("../images/shared/arrow-down.svg") center center no-repeat;
    background-size: 100% auto;
    transition: transform .3s ease;
  }
  .nav-globalSecond__item.-open .nav-globalSecond__button{
    transform: rotate(180deg);
  }
  .nav-globalSecond__item{
    position:relative;
  }
  .nav-globalSecond__item:first-child{
  }
  .nav-globalSecond__itemIn{
    background-color: #E5E5E5;
    padding: 1.8rem 4.4rem 1.8rem 4rem;
    display: block;
    border-bottom: 1px #C5C4C4 solid;
  }
  .nav-globalThird__itemIn{
    background-color: #DADADA;
    padding: 1.4rem 3.2rem 1.4rem 4.8rem;;
    font-size: 1.4rem;
    display: block;
    border-bottom: 1px #C5C4C4 solid;
  }
}

/* ヘッダーナビ
--------------------------------------------------*/
.nav-header__itemIn{
  color: #021320;
  display: block;
}

/* PC */
@media print,only screen and (min-width: 1001px){ 
  .nav-header{
    position:absolute;
    top:2.9rem;
    right: 14.4rem;
    display: flex;
    justify-content: flex-end;
  }
  .nav-header__itemIn{
    font-size: 1.2rem;
    letter-spacing: .04em;
    padding: 0.75rem 2.4rem;
    position: relative;
  }
  .nav-header__itemIn:after{
    content: "";
    background-color: #ACACAC;
    width: 1px;
    position: absolute;
    right: 0;
    top: 1.2rem;
    bottom: 1.2rem;
    display: block;
   }
  .nav-header__item:last-child .nav-header__itemIn:after{
    content: none;
   }
}

/* SP */
@media screen and (max-width: 1000px){	
  .nav-header__itemIn{
    background-color: #F0F0F0;
    font-size: 1.6rem;
    padding: 1.8rem 4.4rem 1.8rem 3.2rem;
    border-bottom: 1px #C5C4C4 solid;
    font-weight: 500;
  }
}

@media (min-width: 768px) and (max-width: 1190px) {
  .l-header__seo{
    left: 23rem;
    top: 2rem;
  }
}

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

/* PC */
@media print,only screen and (min-width: 1001px){ 
	.m-hamburger{
	  display:none;
	}
  .l-header__menus{
    display:block!important;
  }
}

/* SP */
@media screen and (max-width: 1000px){	
	.l-header__menus{    
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
		height: calc( 100vh - 6.4rem );
    position: absolute;
    top: 6.4rem;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
	}
	.m-hamburger{
		width: 4.8rem;
		height: 4.8rem;
    background-color: #000;
		position: absolute;
		top: 0.8rem;
		right: 0.8rem;
		cursor: pointer;
		z-index: 100;
    display: block!important;
	}
	.m-hamburger__lines{
		height: 70%;
		width:45.8%;
		margin: 13% auto;
		position: relative;
	}
	.m-hamburger__lines>div{
		background-color: #fff;
		width:100%;
		height:2%;
		transition: transform .3s ease, opacity .3s ease;
		position: absolute;
		left:0;
		top:50%;
	}
	.m-hamburger__lines>div:first-child{
		transform: translateY(-500%);
	}
	.m-hamburger__lines>div:last-child{
		transform: translateY(500%);
	}
	.menu-open .m-hamburger__lines>div:first-child{
		transform: rotate(225deg);
	}
	.menu-open .m-hamburger__lines>div:last-child{
		transform: rotate(-225deg);
	}
}

@media (min-width: 767px) and (max-width: 1000px) {
  .l-header__logo{
    width: 19.8rem;
    top: 5.8rem;
    left: 2.4rem;
  }
  .l-header__contact{
    top: 2rem;
    right: 12rem;
  }
  .l-header__contactIn{
    width: 25.6rem;
    height: 8.2rem;
    font-size: 2.4rem;
    border-radius: 8rem;
  }
	.l-header__menus{    
    top: 12rem;
	}
	.m-hamburger{
		width: 9.3rem;
		height: 9.3rem;
		top: 1.5rem;
		right: 1.5rem;
	}
}

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

フッター

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

/* フッター1
--------------------------------------------------*/
footer{
  position: relative;
}
.l-footer{
  background-color: #F1F1F1;
  position: relative;
  overflow: hidden;
}
.l-footer:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.l-footer01 a{
  color: #021320;
  text-decoration: none;
  display: inline-block;
}
.l-footer01 img{
  width: 100%;
}
.l-footer__socialItemIn{
  background: url("../images/shared/icon-target.svg") right center no-repeat;
  background-size: 1.1rem auto;
  padding:0.1rem 1.7rem 0.1rem 0;
  color: #021320;
  text-decoration: none;
}
.l-footer__socialItemIn img{
  width: 2.4rem;
  margin-right: 0.8rem;
  vertical-align: middle;
}
.nav-footer01__itemIn,
.nav-footer02__itemIn{
  font-weight: 500;
}
.l-footer__companyTitle{
  color: #6f777d;
  position: relative;
}
.l-footer__companyTitle:after{
  content: "";
  background-color: #6f777d;
  height: 1px;
  position: absolute;
  inset:0;
  margin: auto 0;
  display: block;
}
.l-footer__companyTitleIn{
  width: fit-content;
  background-color: #F1F1F1;
  position: relative;
  z-index: 2;
}
.l-footer__companyList{
  display: flex;
  flex-wrap: wrap;
  gap:0.8rem;
}
.l-footer__companyListItem{
  width: calc( 50% - 0.4rem );
}
.l-footer__companyListItem a,
.l-footer__companyListItemIn{
  height: 100%;
  display: block;
}
.l-footer__companyListItem img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav-footer03{
  display: flex;
}
.nav-footer03__itemIn{
  color: #021320;
  letter-spacing: 0;
}

/* PC */
@media print,only screen and (min-width: 1001px){
  .l-footer{
    padding: 9rem;
  }
  .l-footer a{
    transition: opacity .3s ease;
  }
  .l-footer a:hover{
    opacity: 0.7;
  }
  .l-footer:before {
    width: 82rem;
    height: 82rem;
    bottom: -68.3rem;
    border: 2.5rem solid #fff;
    border-radius: 50%;
    filter: blur(2rem);
  }
  .l-footer01{
    max-width: 220rem;
    margin: 0 auto 9rem auto;
  }
  .l-footer01__inner{
    gap:0 1%;
    box-sizing: content-box;
    display: grid;  
    justify-content: space-between;
    grid-gap:1% 3%;
    grid-template-columns:31% 66%;
    grid-auto-rows: auto auto;
  }
  .l-footer__texts{
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    font-size: 1.2rem;
    line-height: 1.75;
    letter-spacing: .04em;
    margin-bottom: 6.4rem;
  }
  .l-footer__logo{
    max-width: 26.1rem;
    margin-bottom: 3.6rem;
  }
  .l-footer__logo img{
    width: 100%;
  }
  .l-footer__text01{
    margin-bottom: 1.6rem;
  }
  .l-footer__text02{
    margin-bottom: 3.2rem;
  }
  .footer-navs{
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    display: flex;
    justify-content: flex-end;
    gap:0 3%;
    margin-top: -1rem;
  }
  .nav-footer01{
    width: 28%;
  }
  .footer-nav__right{
    max-width: 54.3rem;
    flex: 1;
  }
  .nav-footer01__itemIn,
  .nav-footer02__itemIn{
    font-size: 1.4rem;
    padding: 1.2rem 0;
  }
  .nav-footer02Second__itemTop{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:0 1rem;
    border-bottom: 1px #C3C3C3 solid;
  }
  .nav-footer02Second__itemIn{
    padding: 1.7rem 3.3rem 1.7rem 0;
    flex: 1;
  }
  .nav-footer02Second__itemIn:after{
    width: 0.9rem;
    height: 1rem;
    content: "";
    background: url("../images/shared/arrow-gray.svg") right center no-repeat;
    background-size: 100% auto;
    margin-left: 3.3rem;
    display: inline-block;
  }
  .nav-footer02Second__button{
    width: 2.6rem;
    height: 2.6rem;
    background-color: #e3e4e6;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
  }
  .nav-footer02Second__button:before,
  .nav-footer02Second__button:after{
    content: "";
    background-color: #021320;
    width: 0.8rem;
    height: 1px;
    position: absolute;
    inset:0;
    margin: auto;
    transition: transform .3s ease;
    display: block;
  }
  .nav-footer02Second__button:after{
    transform: rotate(90deg);
  }
  .-open .nav-footer02Second__button:after{
    transform: rotate(0);
  }
  .l-footer__company{
    max-width: 26rem;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .l-footer__companyTitle{
    font-size: 1.2rem;
    margin-bottom: 1.6rem;
  }
  .l-footer__companyTitleIn{
    padding-right: 1.6rem;
  }
  .nav-footer02Third{
    display: none;
  }
  .nav-footer02Third__inner{
    display: flex;
    flex-wrap: wrap;
    gap:0 2.4rem;
    margin: 1rem 0 2.6rem 0;
  }
  .nav-footer02Third__item{
    width: calc( 50% - 1.2rem );
  }
  .nav-footer02Third__itemIn{
    font-size: 1.2rem;
    letter-spacing: .04em;
    padding: 0.6rem 0;
  }
  .nav-footer03{
    justify-content: flex-end;
    margin: 8.8rem 0 0 0;
  }
  .nav-footer03__itemIn{
    font-size: 1.1rem;
    padding: 0.5rem 2rem;
  }
}

/* SP */
@media screen and (max-width: 1000px){
  .l-footer{
    padding: 6.4rem 4rem 8rem 4rem;
  }
  .l-footer:before {
    width: 32rem;
    height: 32rem;
    bottom: -17rem;
    border: 2rem solid #fff;
    border-radius: 50%;
    filter: blur(1.6rem);
  }
  .l-footer01{
    margin-bottom: 6.4rem;
  }
  .l-footer__texts{
    font-size: 1.2rem;
    line-height: 1.75;
    letter-spacing: .04em;
    margin-bottom: 4.8rem;
  }
  .l-footer__logo{
    max-width: 19.1rem;
    margin-bottom: 3.9rem;
  }
  .l-footer__text01{
  }
  .l-footer__text02{
    margin-bottom: 1.6rem;
  }
  .l-footer__text02 br{
    display: none;
  }
  .nav-footer01{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap:0 0.5rem;
    margin-bottom: 2rem;
  }
  .nav-footer01__item{
    width: calc( 50% - 0.25rem );
  }
  .nav-footer01__itemIn{
    font-size: 1.4rem;
    padding: 1.2rem 0;
  }
  .nav-footer02{
    display: none;
  }
  .l-footer__company{
    margin-bottom: 6.4rem;
  }
  .l-footer__companyTitle{
    font-size: 1.2rem;
    margin-bottom: 1.6rem;
  }
  .l-footer__companyTitleIn{
    padding-right: 1.4rem;
  }
  .nav-footer03{
    gap:0 2.4rem;
    margin-bottom: 4.6rem;
  }
  .nav-footer03__itemIn{
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }
}

/* フッター2
--------------------------------------------------*/
.l-footer02{
  text-align: center;
  position: relative;
}
.l-footer__text{
  font-family: var(--font-serif);
  font-size: 1.6rem;
  letter-spacing: .12em;
  margin-bottom: 2rem;
}
.l-footer__text span{
  font-size: 1.8rem;
}
.l-footer__copy{
  color: #737b81;
  font-size: 1rem;
	text-align:center;
}	

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

/* SP */
@media screen and (max-width: 1000px){
	.l-footer02{
		padding: 1rem 3rem;
	}		
}


/* ページトップ
--------------------------------------------------*/
.l-footer__pagetop {
  width: 5.6rem;
  height: 5.6rem;
  background: #8FC31F;
  position: absolute;
  top: -2.8rem;
  cursor: pointer;
  z-index: 10;
}
.l-footer__pagetop:before {
  width: 1rem;
  height: 0.5rem;
  background: url("../images/shared/pagetop.svg") center center no-repeat;
  content: "";
  display: block;
  position: absolute;
  inset:0;
  margin: auto;
}

/* PC */
@media print,only screen and (min-width: 1001px){
  .l-footer__pagetop {
    right: 9rem;
    transition: opacity .3s ease;
  } 
  .l-footer__pagetop:hover {
    opacity: 0.8;
  } 
}

/* SP */
@media screen and (max-width: 1000px){	 
  .l-footer__pagetop {
    right: 1.6rem;
  } 
}

@media (min-width: 767px) and (max-width: 1000px) {		
  .nav-footer01{
    width: 60rem; 
  }
  .l-footer__companyList{
    width: 50rem;   
  }
  .l-footer__companyListItem{
    width: 18rem;   
  }
}

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

セカンド共通

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

/* レイアウト
--------------------------------------------------*/
.l-content,
.l-container{
	line-height: 2.2;
}
.l-side__heading{
  font-family: var(--font-serif);
  line-height: 1.2;
}
.l-side__item{
  background-color: #eaecef;
}
.l-side__title{
  border-bottom: 1px #c5ced8 solid;
  line-height: 1.2;
  display: flex;
  justify-content: space-between;
}
.l-side__japanese{
  letter-spacing: 0;
}
.l-side__english{
  color: #042C63;
}
.l-side__listItemIn{
  line-height: 1.2;
  letter-spacing: 0;
  display: block;
  border-bottom: 1px #c5ced8 solid;
  text-decoration: none;
  position: relative;
}
.l-side__listItemIn:after{
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background-color: #042C63;
  position: absolute;
  right: 1.4rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transition: opacity .3s ease;
  opacity: 0;
}
.-current .l-side__listItemIn:after,
.l-side__listItemIn:hover:after{
  opacity: 1;
}
.-current .l-side__listItemIn,
.l-side__listItemIn:hover{
  font-weight: bold;
}
.l-side__tag{
  display: flex;
  flex-wrap: wrap;
  gap:0.6rem;
}
.l-side__tagItem{
  line-height: 1.2;
  letter-spacing: 0;
  border: 1px #c5ced8 solid;
  cursor: pointer;
}
.l-side__tagItem a{
  text-decoration: none;
  display: block;
  transition: all .3s ease;
}
.l-side__tagItem.-current a,
.l-side__tagItem a:hover{
  background-color: #004098;
  color: #fff;
}
.l-side__item:not(.-open):not(.-expanding) .l-side__tag > .l-side__tagItem:nth-child(n+6){
  display: none;
}
.l-side__item:not(:has(.l-side__tag > .l-side__tagItem:nth-child(6))) .l-side__all{
  display: none;
}
.l-side__all{
  color: #848c92;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
}
.l-side__item .l-side__all:before{
  content:"すべて表示";
}
.l-side__item.-open .l-side__all:before{
  content:"閉じる";
}
.l-side__button{
  width: 1rem;
  height: 1rem;
  border: 1px #848c92 solid;
  border-radius: 50%;
  position: relative;
  top: 0.1rem;
  margin-left: 0.4rem;
  display: inline-block;
}
.l-side__button:before,
.l-side__button:after{
  content: "";
  width: 0.5rem;
  height: 1px;
  background-color: #848c92;
  display: block;
  position: absolute;
  inset:0;
  margin: auto;
  transition: transform .3s ease;
}
.l-side__button:after{
  transform: rotate(90deg);
}
.-open .l-side__button:after{
  transform: rotate(0);
}
.l-side__year{
  padding: 1.2rem 1.2rem 0 1.2rem;
}
.l-side__yearTitle{
  background-color: #e0e3e8;
  padding: 1.1rem 1.4rem;
  color: #525d66;
  font-size: 1.2rem;
  line-height: 1.5;
  box-sizing: border-box;
  border: 1px #c5ced8 solid;
  position: relative;
  cursor: pointer;
  transition: opacity .3s ease;
}
.l-side__yearTitle:hover{
  background-color: #dee0e4;
}
.l-side__yearTitle:after{
  content: "";
  width: 1.2rem;
  height: 0.7rem;
  background:#e0e3e8 url("../images/shared/arrow-select.svg") center center no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.4rem;
  margin: auto 0;
  transition: transform .3s ease;
}
.l-side__yearTitle.-open:after{
  transform: rotate(180deg);
}
.l-side__yearList{
  display: none;
}
.l-side__yearListItemIn{
  background-color: #e0e3e8;
  font-size: 1.2rem;
  padding: 0.5rem 1.4rem;
  border-top: 1px #c5ced8 solid;
  display: block;
  transition: all .3s ease;
  text-decoration: none;
}
.l-side__yearListItem:first-child .l-side__yearListItemIn{
  border-top: none;
}
.l-side__yearListItemIn:hover{
  background-color: #dee0e4;
}

.l-side__seminarItem:last-child{
  margin-bottom: 0;
}
.l-side__seminarItemIn{
  text-decoration: none;
}
.l-side__seminarImage img{
  width: 100%;
  object-fit: cover;
  aspect-ratio: 243 / 121;
}
.l-side__seminarText01{
  font-weight: 500;
  line-height: 1.5;
}
.l-side__seminarText02{
  line-height: 1.75;
  overflow: hidden;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.l-side__linkItem:last-child{
  margin-bottom: 0;
}
.l-side__linkItemIn{
  background: #cfd6de url("../images/shared/arrow-sidelink.svg") right 2.4rem center no-repeat;
  background-size: 0.9rem auto;
  padding: 2.4rem 4rem 2.4rem 2.4rem;
  display: block;
  text-decoration: none;
}
.l-side__linkEnglish{
  color: #042C63;
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}
.l-side__linkJapanese{
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1.5;
}

/* PC */
@media print,only screen and (min-width: 768px){		
	.l-content,
  .l-container{
    overflow-x: clip;
	}
	.l-content__inner,
	.l-container__inner{
		max-width: 108rem;
		font-size: 1.6rem;
		padding: 0 4rem;
		margin: 0 auto 9rem auto;		
    box-sizing: content-box;
	}
	.-w900 .l-content__inner{
		max-width: 90rem;
	}
  .l-content900{
		max-width: 90rem;
    margin: 0 auto;
	}
	.l-content__inner.-form{
    display: flex;
    justify-content: space-between;
	}
	.l-container__inner{
    display: flex;
    justify-content: space-between;
	}
	.l-main{
    width: 69.5%;
	}
	.l-side{
    width: 24.8%;
	}  
  .l-side__heading{
    font-size: 1.6rem;
    margin-bottom: 2.4rem;
  }
  .l-side__item{
    padding-bottom: 2.4rem;
    margin-bottom: 2.4rem;
  }
  .l-side__title{
    padding: 1.8rem 2rem;
  }
  .l-side__japanese{
    font-size: 1.3rem;
  }
  .l-side__english{
    font-size: 1rem;
  }
  .l-side__list{
    margin: 1rem 1.2rem 2.4rem 0.8rem;
  }
  .l-side__listItemIn{
    font-size: 1.2rem;
    padding: 1rem 2rem 1rem 1.2rem;
  }
  .l-side__tag{
    gap:0.6rem;
    margin: 1.2rem 1.2rem 1.6rem 0.8rem;  
  }
  .l-side__tagItem a{
    font-size: 1rem;
    padding: 0.65rem 1.2rem;
  }
  .l-side__seminarItem{
    margin-bottom: 0.8rem;
  }
  .l-side__seminarItemIn{
    padding: 1.2rem;
    display: block;
    transition: opacity .3s ease;
  }
  .l-side__seminarItemIn:hover{
    opacity: 0.7;
  }
  .l-side__seminarText01{
    font-size: 1.2rem;
    margin: 1.2rem 0.8rem 0.9rem 0.8rem;
  }
  .l-side__seminarText02{
    font-size: 1.3rem;
    margin: 0 0.8rem;
  }
  .l-side__link{
    margin-bottom: 3.2rem;
  }
  .l-side__linkItem{
    margin:3.2rem 0 1.6rem 0;
  }
  .l-side__linkItemIn{
    transition: opacity .3s ease;
  }
  .l-side__linkItemIn:hover{
    opacity: 0.7;
  }
  .l-side__linkEnglish{
    margin-bottom: 0.7rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
	.l-content,
  .l-container{
		font-size: 1.4rem;
    margin: 0 2rem;
    line-height: 1.75;
	}
  .l-main{
    margin-bottom: 6.4rem;
  }
  .l-side{
    margin-bottom: 8rem;
  }
  .l-side__heading{
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  .l-side__item{
    padding-bottom: 2.4rem;
    margin-bottom: 2.4rem;
  }
  .l-side__item:last-child{
    margin-bottom: 0;
  }
  .l-side__title{
    padding: 1.7rem 2rem;
  }
  .l-side__japanese{
    font-size: 1.2rem;
  }
  .l-side__english{
    font-size: 1rem;
  }
  .l-side__list{
    margin: 0.8rem 1.2rem 0 1.2rem;
  }
  .l-side__listItemIn{
    font-size: 1.2rem;
    padding: 1rem 2.5rem 1rem 1.2rem;
  }
  .l-side__tag{
    gap:0.6rem;
    margin: 1.2rem 1.2rem 1.6rem 1.2rem; 
  }
  .l-side__tagItem a{
    font-size: 1rem;
    padding: 0.55rem 1.2rem;
  }
  .l-side__seminarItem{
    margin:0 1.2rem;
  }
  .l-side__seminarItemIn{
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap:0 2rem;
    border-bottom: 1px #c5ced8 solid;
    padding: 1.2rem 0;
  }
  .l-side__seminarImage{
    width: 10rem;
  }
  .l-side__seminarImage img{
    width: auto;
    height: 13.3rem;
    object-fit: cover;
  }
  .l-side__seminarTexts{
    flex: 1;
  }
  .l-side__seminarText01{
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  .l-side__seminarText02{
    font-size: 1.2rem;
    -webkit-line-clamp: 4;
  }
  .l-side__link{
    margin-bottom: 3.2rem;
  }
  .l-side__linkItem{
    margin:3.2rem 0 1.6rem 0;
  }
  .l-side__linkEnglish{
    margin-bottom: 0.7rem;
  }
}

/* ページタイトル
--------------------------------------------------*/
.m-pageTitle{
  background: linear-gradient(234.93deg, #004098 8.4%, #032A60 90.62%);
  position: relative;
}
.m-pageTitle__inner{
  color: #fff;
  position: relative;
  z-index: 3;
}
.m-pageTitle__english{
  color: #8FC31F;
  display: block;
}
.m-pageTitle__sub{
  font-family: var(--font-serif);
	font-weight: 500;	
  line-height: 1.5;
  letter-spacing: .11em;
  display: block;
}
.m-pageTitle__japanese{
  font-family: var(--font-serif);
	font-weight: 500;	
  letter-spacing: .04em;
  display: block;
}
.m-pageTitle__text01{
  font-family: var(--font-serif);
}
.m-pageTitle__text02{
  line-height: 2.2;
  letter-spacing: .16em;
}
.m-pageTitle__text03{
  font-family: var(--font-serif);
  line-height: 1.75;
  letter-spacing: .04em;
}
.m-pageTitle__categoryTag{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.m-pageTitle__category{
  display: flex;
  flex-wrap: wrap;
}
.m-pageTitle__categoryIn{
  color: #fff;
  border:1px rgba(255,255,255,0.4) solid;
  line-height: 1;
  border-radius: 8rem;
}
.m-pageTitle__tag{
  display: flex;
  flex-wrap: wrap;
}
.m-pageTitle__tagIn{
  color: #8FC31F;
}
.m-pageTitle__times{
  display: flex;
  color: rgba(255,255,255,0.4);
  margin-top: 3.2rem;
}
.m-pageTitle__time{
  padding:0 1.6rem;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: .04em;
}
.m-pageTitle__time:first-child{
  padding-left: 0;
}
.m-pageTitle__time:last-child{
  padding-right: 0;
}
.m-pageTitle__time:after{
  content: "";
  width: 1px;
  background-color: rgba(255,255,255,0.4);
  position: absolute;
  top: 0.2rem;
  right: 0;
  bottom: 0.2rem;
  display: block;
}
.m-pageTitle__time:last-child:after{
  content: none;
}
.m-pageTitle__image{
  position: absolute;
  inset:0;
}
.m-pageTitle__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.m-pageTitle__image:after{
  content: "";
  background: linear-gradient(234.93deg, rgba(0, 64, 152, 0.5) 8.4%, rgba(0, 21, 50, 0.5) 90.62%);
  position: absolute;
  inset:0;
}
.m-pageTitle .m-button__item{
  border: 1px rgba(255, 255, 255, 0.4) solid;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-pageTitle{
    padding: 10.7rem 4rem 9.6rem 4rem;
    margin-top: 12.8rem;
  }
  .m-pageTitle__inner{
    max-width: 108rem;
    margin: 0 auto;
  }
  .m-pageTitle__english{
    font-size: 1.6rem;
    margin-bottom: 2.4rem;
  }
  .m-pageTitle__japanese{
    font-size: 4rem;
  }
  .m-pageTitle__sub{
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
  }
  .m-pageTitle__text01{
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
  }
  .m-pageTitle__text02{
    font-size: 1.4rem;
  }
  .m-pageTitle .m-button{
    margin-top: 4rem;
  }
  .m-pageTitle__inner:not(:has(.m-pageTitle__text01))
  .m-pageTitle__text02{
    margin-top: 3.2rem;
  }
  .m-pageTitle__timeTop{
    font-size: 1.3rem;
    margin-right: -1.6rem;
  }
  .m-pageTitle__text03{
    font-size: 3.6rem;
  }
  .m-pageTitle__categoryTag{
    gap:0.6rem 4rem;
    margin-bottom: 3.2rem;
  }
  .m-pageTitle__category{
    gap:0.5rem 0.8rem;
  }
  .m-pageTitle__categoryIn{
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem;
  }
  .m-pageTitle__tag{
    gap:0.3rem 0.8rem;
  }
  .m-pageTitle__tagIn{
    font-size: 1.2rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .m-pageTitle{
    padding: 4rem 2rem 6.4rem 2rem;
    margin-top: 6.4rem;
  }
  .m-pageTitle__english{
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }
  .m-pageTitle__japanese{
    font-size: 3.2rem;
  }
  .m-pageTitle__text01{
    font-size: 2.2rem;
    line-height: 1.75;
    margin-bottom: 1.6rem;
  }
  .m-pageTitle__text02{
    font-size: 1.6rem;
    line-height: 1.75;
    margin-top: 3.2rem;
  }
  .m-pageTitle .m-button{
    margin-top: 4rem;
  }
  .m-pageTitle__timeTop{
    font-size: 1.1rem;
  }
  .m-pageTitle__text03{
    font-size: 2.4rem;
  }
  .m-pageTitle__categoryTag{
    gap:0.6rem 1.2rem;
    margin-bottom: 3.2rem;
  }
  .m-pageTitle__category{
    gap:0.5rem 0.8rem;
  }
  .m-pageTitle__categoryIn{
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
  }
  .m-pageTitle__tag{
    gap:0.3rem 0.8rem;
  }
  .m-pageTitle__tagIn{
    font-size: 1.1rem;
  }
}

@media (min-width: 767px) and (max-width: 1000px) {	
  .m-pageTitle{
    margin-top: 12.3rem;
  }
}

/* ぱんくず
--------------------------------------------------*/
.m-bread{
  box-sizing: border-box;
  overflow-x: auto;
  z-index: 50;
  position: relative;
}
.m-bread__inner{
  width: max-content;
  display: flex;
}
.m-bread li{
  width: fit-content;
  color: #7a838b;
  font-size: 1.1rem;
  letter-spacing: .04em;
  white-space: nowrap;
}
.m-bread__inner li:not(:has(a)){
/*
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
*/
}
.m-bread a{
  color: #7a838b;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.m-bread a:after{
  content: "";
  background: url("../images/shared/arrow-bread.svg") center center no-repeat;
  background-size: 100% auto;
  display: inline-block;
  width: 0.63rem;
  height: 0.7rem;
}

/* PC */
@media print,only screen and (min-width: 768px){	
  .m-bread{
    margin: 14.4rem 0 9.6rem 0;
    padding: 0 4rem;
  }
  .m-bread a:after{
    margin: 0 1.6rem;
  }
  .m-pageTitle + .m-bread{
    margin-top: 1.6rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .m-bread{
    margin: 7rem 0 5.2rem 0;
    padding:0 2.4rem;
  }
  .m-bread a:after{
    margin: 0 1rem;
  }
  .m-pageTitle + .m-bread{
    margin-top: 1.2rem;
  }
}

/* 見出し・テキスト
--------------------------------------------------*/
.m-title02,
.m-title03,
.m-title04{
	color: #042C63;
  font-family: var(--font-serif);
	font-weight: 500;
  line-height: 1.5;
  letter-spacing: .04em;
}
.l-content > .m-title02:first-child,
.l-content > .m-title03:first-child,
.l-content > .m-title04:first-child{
  margin-top: 0;
}
.m-title02{
  border-bottom: 1px #a4b1c4 solid;
}
.m-title02.-sizeL{
  border-bottom: 1px #cfd6de solid;
}
.m-title02.-white{
  border-bottom: 1px rgba(255,255,255,0.4) solid;
  color: #fff;
}
.m-title03{
  color: #042C63;
  background-color: #eaecef;
  border-left: 2px #042C63 solid;
}
.m-text16{
  letter-spacing: .03em;
}
.m-text15{
  letter-spacing: .04em;
}
.m-text16 p:last-child,
.m-text15 p:last-child,
.m-text p:last-child{
  margin-bottom: 0;
}
strong{
  font-weight: bold;
}
em{
  font-style: italic;
}
.blue{
  color: #042C63;
}
.right{
  text-align: right;
}
.m-text16 a[target="_blank"],
.m-text15 a[target="_blank"] {
  background:url("../images/shared/icon-blank.svg") right center no-repeat;
  background-size: 1.1rem;
  padding-right: 1.5rem;
  margin-right: 0.5rem;
}
.m-image img{
  width: 100%;
}
.m-image__caption{
  color: #848c92;
  letter-spacing: .02em;
  display: block;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-title02,
  .m-title03,
  .m-title04{
    margin: 8rem 0 4rem 0;
  }
  .m-title02{
    background: url("../images/shared/title-icon.svg") 0 0.3em no-repeat;
    background-size: 2rem auto;
    font-size: 2.2rem;
    padding: 0 0 2.4rem 3.8rem;
  }
  .m-title02.-white{
    background: url("../images/shared/title-icon-white.svg") 0 0.3em no-repeat;
    background-size: 2rem auto;
  }
  .m-title02.-sizeL{
    background: url("../images/shared/title-icon.svg") 0 0.35em no-repeat;
    background-size: 2.2rem auto;
    font-size: 2.8rem;
    padding: 0 0 1.6rem 3.8rem;
  }
  .m-title02.-white.-sizeL{
    background: url("../images/shared/title-icon-white.svg") 0 0.35em no-repeat;
    background-size: 2.2rem auto;
  }
  .m-title03{
    font-size: 1.9rem;
    padding: 1.2rem 2.4rem;
  }
  .m-title04{
    background: url("../images/shared/list-icon-gray.svg") 0 0.3em no-repeat;
    background-size: 1.6rem auto;
    font-size: 1.8rem;
    padding-left: 2.8rem;
  }
  .m-text16{
    font-size: 1.6rem;
    margin-bottom: 8rem;
  }
  .m-text15{
    font-size: 1.5rem;
    margin-bottom: 8rem;
  }
  .m-text{
    margin-bottom: 8rem;
  }
  .m-text16 p,
  .m-text15 p,
  .m-text p{
    margin-bottom: 3.2rem;
  }
  .m-image{
    margin-bottom: 8rem;
  }
  .m-image__caption{
    font-size: 1.2rem;
    margin-top: 1.5rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .m-title02,
  .m-title03,
  .m-title04{
    margin: 4rem 0 2rem 0;
  }
  .m-title02{
    background: url("../images/shared/title-icon.svg") 0 0.35em no-repeat;
    background-size: 1.6rem auto;
    font-size: 1.8rem;
    padding: 0 0 1rem 2.6rem;
  }
  .m-title02.-white{
    background: url("../images/shared/title-icon-white.svg") 0 0.35em no-repeat;
    background-size: 1.6rem auto;
  }
  .m-title02.-sizeL{
    font-size: 2.2rem;
  }
  .m-title03{
    font-size: 1.7rem;
    padding: 1.2rem 2rem;
  }
  .m-title04{
    background: url("../images/shared/list-icon-gray.svg") 0 0.35em no-repeat;
    background-size: 1.4rem auto;
    font-size: 1.7rem;
    padding-left: 2.5rem;
  }
  .m-text16{
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
  .m-text15{
    font-size: 1.6rem;
    line-height: 1.75;
    margin-bottom: 4rem;
  }
  .m-text{
    margin-bottom: 4rem;
  }
  .m-text16 p,
  .m-text15 p,
  .m-text p{
    margin-bottom: 2.8rem;
  }
  .m-image{
    margin-bottom: 4rem;
  }	
  .m-image__caption{
    font-size: 1rem;
    margin-top: 1.5rem;
  }
}

/* リスト
--------------------------------------------------*/
.m-list01,
.m-list02,
.m-list03{
  font-size: 1.4rem;
  line-height: 2;
}
.m-list01__item,
.m-list02__item,
.m-list03__item{
  margin-bottom: 0.8rem;
}
.m-list01__item:last-child,
.m-list02__item:last-child,
.m-list03__item:last-child{
  margin-bottom: 0;
}
.m-list01__item{
  background: url("../images/shared/list-icon-gray.svg") 0 0.7em no-repeat;
  background-size: 1rem auto;
  padding-left: 2.2rem;
}
.m-list02__item{
  background: url("../images/shared/list-check.svg") 0 0.35em no-repeat;
  background-size: 2rem auto;
  padding-left: 3.2rem;  
}
.m-list03{
  list-style: decimal;
  margin-left: 1.2em;
}
.m-list03__item{
  padding-left: 0.6rem;
}
.m-list03__item::marker{
  color: #021320;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-list01,
  .m-list02,
  .m-list03{
    margin-bottom: 8rem;
  }
  .m-list01__item,
  .m-list02__item,
  .m-list03__item{
    margin-bottom: 0.8rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	 
  .m-list01,
  .m-list02,
  .m-list03{
    margin-bottom: 4rem;
  }
  .m-list01__item,
  .m-list02__item,
  .m-list03__item{
    margin-bottom: 0.2rem;
  }
}

/* 引用
--------------------------------------------------*/
.m-quote{
  border-top: 1px #cfd6de solid;
  border-bottom: 1px #cfd6de solid;
  letter-spacing: .04em;
}
.m-quote__note{
  line-height: 1.5;
  text-align: right;
}
.m-quote__note:before{
  content: "";
  background-color: #021320;
  width: 8rem;
  height: 1px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1.2rem;
  position: relative;
  top: -0.2rem;
}

/* PC */
@media print,only screen and (min-width: 768px){
  .m-quote{
    font-size: 1.5rem;
    padding: 4rem;
    margin-bottom: 8rem;
  }
  .m-quote__note{
    margin-top: 1.6rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .m-quote{
    font-size: 1.4rem;
    padding: 3.2rem 1.8rem;
    margin-bottom: 4rem;
  }
  .m-quote__note{
    margin-top: 1.4rem;
  }
}

/* 画像テキスト
--------------------------------------------------*/
.m-imageText__image img{
  width: 100%;
}
.m-imageText__title{
  color: #042C63;
  font-family: var(--font-serif);
  line-height: 1.75;
}
.m-imageText__text{
  line-height: 2;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-imageText{
    margin-bottom: 8rem;
  }
  .m-imageText__inner{
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
  }
  .m-imageText__image{
    width: 30%;
  }
  .m-imageText__texts{
    width: 65%;
  }
  .m-imageText__title{
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }
  .m-imageText__text{
    font-size: 1.4rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .m-imageText{
    margin-bottom: 4rem;
  }
  .m-imageText__inner{
    margin-bottom: 2rem;
  }
  .m-imageText__image{
    margin-bottom: 2.4rem;
  }
  .m-imageText__title{
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }
  .m-imageText__text{
    font-size: 1.4rem;
  }
}

/* テーブル
--------------------------------------------------*/
.m-table__inner{
  width: 100%;
  border-left: 1px #DEE0E1 solid;
  border-top: 1px #DEE0E1 solid;
}
.m-table th,
.m-table td{
  border-right: 1px #DEE0E1 solid;
  border-bottom: 1px #DEE0E1 solid;
  font-weight: 500;
  line-height: 1.75;
}
.m-table th{
  width: 25%;
  background-color: #042C63;
  color: #fff;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-table{
    margin-bottom: 8rem;
  }
  .m-table th,
  .m-table td{
    padding: 1.4rem 2rem;
    font-size: 1.4rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .m-table{
    display: block;
    overflow-x: scroll;
    margin:0 -2rem 4rem -2rem;
    padding: 0 2.4rem;
  }
  .m-table__inner{
    width: 60rem;
  	display:table;
  }
  .m-table th,
  .m-table td{
    padding: 1.2rem 1.6rem;
    font-size: 1.2rem;
  }	
}

/* 戻るリンク
--------------------------------------------------*/
.m-linkback{
  text-align: center;
}
.m-linkback__item{
  letter-spacing: .04em;
}

/* PC */
@media print,only screen and (min-width: 768px){
  .m-linkback{
    margin-top: -1.6rem;
  }
  .m-linkback__item{
    font-size: 1.3rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .m-linkback{
    margin-top: -1.6rem;
  }
  .m-linkback__item{
    font-size: 1.2rem;
  }
}

/* Case
--------------------------------------------------*/
.m-case__title,
.m-column__title{
  font-family: var(--font-serif);
  color: #042C63;
  font-size: 2.2rem;
  letter-spacing: .04em;
  margin-bottom: 2.4rem;
  line-height: 1.5;
  text-align: center;
}
.m-case .m-case__slide .slick-prev,
.m-column .m-column__slide .slick-prev{
  background-image: url("../images/shared/prev-black.svg");
  left: 0;
}
.m-case .m-case__slide .slick-next,
.m-column .m-column__slide .slick-next{
  background-image: url("../images/shared/next-black.svg");
  right: 0;
}
.m-case .m-case__slide .slick-arrow,
.m-column .m-column__slide .slick-arrow{
  background-color: #eaecef;
  text-indent: -9999px;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  cursor: pointer;
  border-radius: 0;
}
.m-case .m-case__slide .slick-dots,
.m-column .m-column__slide .slick-dots{
  width: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  text-indent: -9999px;
}
.m-case .m-case__slide .slick-dots li,
.m-column .m-column__slide .slick-dots li{
  width: 0.8rem;
  height: 0.8rem;
  background-color: #D4D8DF;
  margin: 0 0.4rem;
  border-radius: 50%;
  cursor: pointer;
}
.m-case .m-case__slide .slick-dots li.slick-active,
.m-column .m-column__slide .slick-dots li.slick-active{
  background-color: #042C63;
}
/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-case__items{
    display: flex;
    flex-wrap: wrap;
    gap:1.6rem;
    margin-bottom: 3.4rem;
  }
  .m-case__item{
    width: calc( ( 100% / 3 ) - 1.0667rem );
    box-sizing: border-box;
  }
  .m-case__itemIn{
    padding: 1.6rem 3rem 4rem 3rem;
    display: block;
  }
  .m-case .m-button{
  }
  .m-case__image{
    margin: 0 -1.4rem;
  }
  .m-case__text01{
    font-size: 1.3rem;
    margin: 2.4rem 0 0.8rem 0;
  }
  .m-case__text02{
    font-size: 1.5rem;
    line-height: 2;
    margin-bottom: 2.4rem;
    -webkit-line-clamp: 3;
  }
  .m-case__text03{
    gap:0 1.5rem;
  }
  .m-case__category{
    gap:0.5rem 0.5rem;
  }
  .m-case__categoryIn{
    font-size: 1.2rem; 
    line-height: 1.5;
    padding: 0.1rem 1.2rem 0.2rem 1.2rem;
  }
  .m-case__keyword{
    gap:0.3rem 0.8rem;
    margin-top: 0.6rem;
  }
  .m-case__keywordIn{
    font-size: 1.2rem;
  }
  .m-column__slide{
    padding-bottom: 7.5rem;
  }
  .m-case__slide .m-case__item,
  .m-column__slide .m-column__item{
    width: auto;
    margin: 0 0.8rem;
  }
  .m-case__slide .slick-arrow,
  .m-column__slide .slick-arrow{
    width: 4.8rem;
    height: 4.8rem;
    background-size: 0.9rem auto;
    bottom: -7.5rem;
  }
  .m-column__slide .slick-arrow{
    bottom:0;
  }
  .m-case__slide .slick-dots{
    bottom: -5.5rem;
  }
  .m-column__slide .slick-dots{
    bottom: 2rem;
  }
  .m-case__slide .slick-dots li,
  .m-column__slide .slick-dots li{
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 0.4rem;
  }
  
  .carbon-column{
    margin-bottom: 16rem;
  }
  .carbon-column__items{
    display: flex;
    flex-wrap: wrap;
    gap:2.4rem;
    margin-bottom: 6.4rem;
  }
  .carbon-column .m-column__item{
    width: calc( 50% - 1.2rem );
  }
  .m-case .m-case__slide .slick-arrow,
  .m-column .m-column__slide .slick-arrow{
    transition: opacity .3s ease;
  }
  .m-case .m-case__slide .slick-arrow:hover,
  .m-column .m-column__slide .slick-arrow:hover{
    opacity: 0.7;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .m-case{
    margin: 0 -2rem 8rem -2rem;
  }
  .m-case .m-button,
  .m-column .m-button{
    width: 18.2rem;
    margin: 4rem auto 0 auto;
    text-align: center;
  }
  .m-case .m-button__item:after,
  .m-column .m-button__item:after{
    content: none;
  }
  .m-case__item{
    width: 25.1rem !important;
    margin: 0 0.8rem;
    padding: 1.6rem 3.2rem 3.2rem 3.2rem;
    line-height: 1.5;
  }
  .m-case__image{
    margin: 0 -1.6rem 1.6rem -1.6rem;
  }
  .m-case__item:after{
    right: -3.2rem;
  }
  .m-case__text01{
    font-size: 1.2rem;
    margin: 1.6rem 0 0.8rem 0;
  }
  .m-case__text02{
    font-size: 1.5rem;
    line-height: 2;
    margin-bottom: 1.6rem;
    -webkit-line-clamp: 3;
  }
  .m-case__text03{
    gap:0 1.6rem;
  }
  .m-case__category{
    gap:0.5rem 0.5rem;
  }
  .m-case__categoryIn{
    font-size: 1.1rem; 
    padding: 0.1rem 1.2rem 0.2rem 1.2rem;
  }
  .m-case__keyword{
    gap:0.3rem 0.8rem;
    margin-top: 0.6rem;
  }
  .m-case__keywordIn{
    font-size: 1.1rem;
  }
  .m-case .slick-prev,
  .m-column .slick-prev{
    background: linear-gradient(300deg, #003883 -23.82%, #8DC21F 419.33%);
    left: 4rem;
  }
  .m-case .slick-next,
  .m-column .slick-next{
    background: linear-gradient(60deg, #003883 -308.15%, #8DC21F 138.93%);
    right: 4rem;
  }
  .m-case .slick-prev:before,
  .m-column .slick-prev:before{
    background-image:url("../images/shared/prev-white.svg");
  }
  .m-case .slick-next:before,
  .m-column .slick-next:before{
    background-image:url("../images/shared/next-white.svg");
  }
  .m-case .slick-arrow,
  .m-column .slick-arrow{
    width: 5.6rem;
    height: 5.6rem;
    text-indent: -9999px;
    position: absolute;
    border-radius: 50%;
    bottom: -9.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
  }
  .m-case .slick-arrow:before,
  .m-column .slick-arrow:before{
    content: "";
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 0.8rem auto;
    position: absolute;
    inset:0;
    margin: auto;
    display: block;
  } 
  .m-case .m-case__slide .slick-arrow,
  .m-column .m-column__slide .slick-arrow{
    width: 4rem;
    height: 4rem;
    background-size: 0.65rem auto;
    bottom: -5.2rem;
  }
  .m-column__slide{
    padding-bottom: 5.2rem;
  }
  .m-column .m-column__slide .slick-arrow{
    bottom: 0;
  }
  .m-case .m-case__slide .slick-prev,
  .m-column .m-column__slide .slick-prev{
    left: 4rem;
  }
  .m-case .m-case__slide .slick-next,
  .m-column .m-column__slide .slick-next{
    right: 4rem;
  }
  .m-case .m-case__slide .slick-dots{
    bottom: -3.6rem;
  }
  .m-column .m-column__slide .slick-dots{
    bottom: 1.6rem;
  }
  .m-case .m-case__slide .slick-dots li,
  .m-column .m-column__slide .slick-dots li{
    width: 0.6rem;
    height: 0.6rem;
    margin: 0 0.3rem;
  }
  .m-column .m-column__slide{
    margin: 0 -2rem;
  }
  
  .carbon-column{
    margin: 0 -0.6rem 4.5rem -0.6rem;
  }
  .carbon-column__items{
    display: flex;
    flex-wrap: wrap;
    gap:0.8rem;
    margin-bottom: 6.4rem;
  }
  .carbon-column .m-column__item{
    width: calc( 50% - 0.4rem )!important;
    margin: 0;
  }
}


/* block
--------------------------------------------------*/
.m-block{
  background-color: #eaecef;
  box-sizing: border-box;
}
.m-block__title{
  font-weight: 500;
  line-height: 1.75;
  border-bottom: 1px #cfd6de solid;
}
.m-block__text{
  line-height: 2;
  letter-spacing: .04em;
}
.m-block__note{
  color: #505c67;
  line-height: 2;
  letter-spacing: .04em;
}

/* PC */
@media print,only screen and (min-width: 768px){  
  .m-blocks{
    display: flex;
    flex-wrap: wrap;
    gap:1.6rem;
    margin-bottom: 3.2rem;
  }
  .m-block{
    padding: 3.2rem 4rem 4.8rem 4rem;
  }
  .-two .m-block{
    width: calc( 50% - 0.8rem );
  }
  .-three .m-block{
    width: calc( ( 100% / 3 ) - 1.0667rem );
  }
  .m-block__title{
    font-size: 1.6rem;
    padding-bottom: 1.2rem;
    margin-bottom: 1.4rem;
  }
  .m-block__text{
    font-size: 1.4rem;
  }
  .m-block__note{
    font-size: 1.2rem;
    margin-top: 0.8rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	  
  .m-blocks{
    margin-bottom: 3.2rem;
  }
  .m-block{
    padding: 3.2rem 3.2rem 4rem 3.2rem;
    margin-bottom: 1.2rem;
  }
  .m-block:last-child{
    margin-bottom: 0;
  }
  .m-block__title{
    font-size: 1.8rem;
    padding-bottom: 1.2rem;
    margin-bottom: 1.4rem;
  }
  .m-block__text{
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .m-block__note{
    font-size: 1.2rem;
    margin-top: 0.8rem;
  }
}


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

トップページ

==================================================*/
/* メイン
--------------------------------------------------*/
.home-cover__slide img{
  width: 100%;
}
.home-cover{
  background-color: #F7F7F7;
  position: relative;
  overflow: hidden;
}
.home-cover__slide{
  position: relative;
  z-index: 2;
}
.home-cover__top{
  position: relative;
}
.home-cover__slideItem{
  width: 100%;
  position: relative;
}
.home-cover:before{
  content: "";
  background: linear-gradient(180deg,#004098 0%,#004098 60%, #002456 100%);
  display: block;
  position: absolute;
  top: 0;
  left:0;
  z-index: 3;
  clip-path: polygon(
    0 0,
    100% 0,
    0 100%
  );

  /* transform: rotate(45deg); */
}
/* .home-cover:after{
  content: "";
  background-color: #F7F7F7;
  display: block;
  position: absolute;
  left: 10%;
  z-index: 2;
  transform: rotate(45deg);
} */
.home-cover__texts{
  position: absolute;
  z-index: 3;
  color: #fff;
}
.home-cover__text01{
  font-family: var(--font-serif);
  font-weight: 500;
}
.home-cover__navs{
  position: absolute;
  /* left:max(350px,calc(80vw - 580px)); */
  left:calc(clamp(110rem, 96vw, 220rem) - 580px);
  z-index: 3;
  display: inline-block;
  margin-left: auto;
}
.home-cover__nav01{
  width: fit-content;
}
.home-cover__nav01Item{
  text-align: right;
  letter-spacing: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  color: #414141;
  position: relative;
  display: inline-block;
  white-space: nowrap;
  transition:all .3s ease;
}
/* .home-cover__nav01Item:nth-child(4){
  margin-bottom: 0;
} */
.home-cover__nav01Item.-pos-2{
  opacity: 0.7;
}
.home-cover__nav01Item.-pos-3{
  opacity: 0.5;
}
.home-cover__nav01Item.-pos-4{
  opacity: 0.2;
} 
.home-cover__nav01Item:before{
  content: "";
  border-radius: 50%;
  background-color: #414141;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
 .home-cover__nav01Item.-pos-2:before{
  opacity: 0.7;
}
.home-cover__nav01Item.-pos-3:before{
  opacity: 0.5;
}
.home-cover__nav01Item.-pos-4:before{
  opacity: 0.2;
} 
.home-cover__nav02ItemIn{
  position: relative;
  display: block;
  text-decoration: none;
}
.home-cover__nav02{
  position: relative;
}
.home-cover__nav02:not(.slick-initialized){
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.home-cover__nav02.slick-initialized{
  opacity: 1;
  visibility: visible;
}
.home-cover__nav02Arrow{
  position: absolute;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.home-cover__nav02.slick-initialized ~ .home-cover__nav02Arrow{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.home-cover__nav02.slick-initialized:after{
  background-color: #004098;
  content: "";
  position: absolute;
  height: 1px;
  bottom: 1.8rem;
  left: 1.9rem;
  right:calc( 50% - 50vw );
  display: block;
}
.home-cover__nav02.slick-initialized:before{
  width: 3.8rem;
  height: 3.8rem;
  background: url("../images/shared/main-icon.svg") center center no-repeat;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto 0;
}
.home-cover__nav02Number{
  color: #004098;
  font-weight: 500;
}
.home-cover__nav02Text{
  color: #021320;
  font-family: var(--font-serif);
  font-weight: 600;
}
.home-cover .slick-prev{
  background-image: url("../images/shared/prev.svg");
}
.home-cover .slick-next{
  background-image: url("../images/shared/next.svg");
}
.home-cover .slick-arrow{
  width: 1.1rem;
  height: 1.6rem;
  text-indent: -9999px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  cursor: pointer;
}
.home-cover__flowing{
  color: #DBDBDB;
  font-family: var(--font-serif);
  z-index: 3;
  white-space: nowrap;
  position: absolute;
  animation:flowing 20s linear infinite;
}

@keyframes flowing{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-cover{
    margin-top: 12.8rem;
  }
  
  /* .home-cover__slide{
    clip-path: polygon(
      0 0,
      clamp(95rem, 80vw, 220rem) 0,
      0 clamp(95rem, 80vw, 220rem)
    );
  } */

  .home-cover__slide{
    clip-path: polygon(
      0 0,
      clamp(110rem, 96vw, 220rem) 0,
      0 clamp(110rem, 96vw, 220rem)
    );
  }
  .home-cover__slide img{
    width: clamp(110rem, 96vw, 220rem);
    height: clamp(110rem, 96vw, 220rem);
    object-fit: cover;
  }

  .home-cover__top{
    height: 95.3rem;
  }
  .home-cover:before{
    /* width: 400rem;
    height: 400rem;
    top: -250rem;
    right: 47.8%; */
    width: clamp(80rem, 69vw, 150rem);
    height: clamp(80rem, 69vw, 150rem);

  }
  .home-cover:after{
    width: 400rem;
    height: 400rem;
    top: 20rem;
    left: 10%;
  }
  .home-cover__texts{
    /* top: 15.8rem;
    left: 10rem; */
    top: clamp(5.5rem, 7vw, 16rem);
    left: clamp(5.5rem, 7vw, 20rem);
  }
  .home-cover__text01{
    /* font-size: 5.6rem; */
    font-size: clamp(4.5rem, 3.1vw, 6rem);
    line-height: 1.45;
    margin-bottom: 2.6rem;
  }
  .home-cover__text01 span{
    /* font-size: 7.6rem; */
    font-size:136%;
  }
  .home-cover__text02{
    font-size: 1.4rem;
    line-height: 2.4;
  }
  .home-cover__navs{
    bottom: 25.3rem;
  }
  .home-cover__nav01{
    margin:0 1.6rem 2.8rem auto;
  }
  .home-cover__nav01Item{
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    position:absolute;
    left:0;
    bottom:0;
    /* transition:all .3s ease; */
  }

  .home-cover__nav01Item.-pos-0{
    left:0;
    bottom:0;
    opacity:0;
  }

  .home-cover__nav01Item.-pos-1{
    left:12.8rem;
    bottom:9rem;
  }

  .home-cover__nav01Item.-pos-2{
    left:17.3rem;
    bottom:14rem;
  }

  .home-cover__nav01Item.-pos-3{
    left:22.1rem;
    bottom:19rem;
  }

  .home-cover__nav01Item.-pos-4{
    left:27.3rem;
    bottom:24rem;
  }
  .home-cover__nav01Item.-pos-hide{
    left:38.6rem;
    bottom:28.5rem;
    opacity:0;
  }
  .home-cover__nav01Item{
    font-size: 1.6rem;
    padding: 0.5rem 0 0.5rem 2.4rem;
  }
  .home-cover__nav01Item:before{
    width: 0.8rem;
    height: 0.8rem;
  }
  .home-cover__nav02{
    width: 49.5rem;
  }
  .home-cover__nav02ItemIn{
    padding: 0 0 3.2rem 6.3rem;
    transition: opacity .3s ease;
  }
  .home-cover__nav02ItemIn:hover{
    opacity: 0.7;
  }
  .home-cover__nav02Number{
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .home-cover__nav02Text{
    font-size: 2rem;
  }
  .home-cover__nav02Arrow{
    bottom: -3.5rem;
    right: 4rem;
    transition: opacity .3s ease;
  }
  .home-cover__nav02Arrow:hover{
    opacity: 0.7;
  }
  .home-cover .slick-next{
    margin-left: 2.2rem;
  }
  .home-cover__flowing{
    font-size: 9.6rem;
    bottom: 7.5rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	 
  .home-cover{
    margin-top: 6.4rem;
  }
  .home-cover__slide{
    clip-path: polygon(
      0 0,
      185vw 0,
      0 185vw
    );
  }
  .home-cover__top{
    height: 78rem;
    position: relative;
  }
  .home-cover:before{
    width: 140vw;
    height: 140vw;
    /* top: -40rem;
    left: -60rem; */
  }
  .home-cover:after{
    width: 90rem;
    height: 90rem;
    top: 42rem;
    right: -180rem;
  }
  .home-cover__slide img{
    width: auto;
    height: 78rem;
    object-fit: cover;
  }
  .home-cover__texts{
    top: 5.2rem;
    left: 2rem;
  }
  .home-cover__text01{
    font-size: 2.8rem;
    line-height: 1.45;
    margin-bottom: 1.6rem;
  }
  .home-cover__text01 span{
    font-size: 4rem;
  }
  .home-cover__text02{
    font-size: 1.2rem;
    line-height: 2;
  }
  .home-cover__navs{
    bottom: 12.5rem;
    left: 12.2rem;
  }
  .home-cover__nav01{
    margin:0 -9.5rem 1.7rem auto;
  }
  .home-cover__nav01Item{
    position: absolute;
  }
  .home-cover__nav01Item{
    font-size: 1.2rem;
    padding: 0.5rem 0 0.5rem 1.3rem;
  }
  .home-cover__nav01Item.-pos-0{
    left:8rem;
    bottom:6rem;
    opacity:0;
  }
  .home-cover__nav01Item.-pos-1{
    left:11rem;
    bottom:9.7rem;
  }
  .home-cover__nav01Item.-pos-2{
    left:14rem;
    bottom:12.7rem;
  }
  .home-cover__nav01Item.-pos-3{
    left:17rem;
    bottom:15.7rem;
  }
  .home-cover__nav01Item.-pos-4{
    left:20rem;
    bottom:18.7rem;
  }
  .home-cover__nav01Item.-pos-hide{
    left:23rem;
    bottom:21.7rem;
    opacity:0;
  } 
  .home-cover__nav01Item:before{
    width: 0.6rem;
    height: 0.6rem;
  }
  .home-cover__nav02{
    width: 24.5rem;
  }
  .home-cover__nav02ItemIn{
    padding: 0 0 2.3rem 6.5rem;
  }
  .home-cover__nav02Number{
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
  .home-cover__nav02Text{
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 1.45;
  }
  .home-cover__nav02Arrow{
    bottom: -2rem;
    right: 1rem;
  }
  .home-cover .slick-prev{
  }
  .home-cover .slick-next{
    margin-left: 2.4rem;
  }
  .home-cover__flowing{
    font-size: 6.4rem;
    bottom: 3.5rem;
    line-height: 1;
  }
}

@media (min-width: 767px) and (max-width: 1000px) {	
  .home-cover{
    margin-top: 12.3rem;
  }
}

/* ボタン
--------------------------------------------------*/
.m-button{
  width: 100%;
}
.m-button__item{
  background: linear-gradient(90deg,#003883 0%, #8DC21F 100%);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  border-radius: 8rem;
  text-decoration: none;
  position: relative;
  display: block;
}
.m-button__item:after{  
  content: "";
  width: 0.9rem;
  height: 1rem;
  background: url("../images/shared/arrow-white.svg") center center no-repeat;
  background-size: 100% auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.m-button.-center{
  text-align: center;
}
.m-button.-gray .m-button__item{
  background: #ebeef0;
  color: #021320;
}
.m-button.-gray .m-button__item:after{
  content: none;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-button{
    max-width: 27rem;
  }
  .m-button__item{
    transition: all .3s ease;
    padding: 1.6rem 4.3rem 1.6rem 4rem;
  }
  .m-button__item:hover{
    opacity: 0.7;
  }
  .m-button__item:after{  
    right: 2.2rem;
  }
  .m-button.-center{
    margin: 0 auto 8rem auto;
  }
  .m-button.-gray .m-button__item:hover{
    background: #dde0e1;
    opacity: 1;
  }
  .m-button.-gray span.m-button__item:hover{
    background: #ebeef0;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .m-button__item{
    padding: 1.6rem 4.3rem 1.6rem 4rem;
  }
  .m-button__item:after{  
    right: 3rem;
  }
  .m-button.-center{
    margin-bottom: 4rem;
  }
}

/* 見出し
--------------------------------------------------*/
.home-title__english{
  background: url("../images/shared/title-icon.svg") left center no-repeat;
  background-size: 1.6rem auto;
  color: #004098;
  display: block;
  padding-left: 2.6rem;
}
.home-title__japanese{
  font-family: var(--font-serif);
  font-size: 500;
  line-height: 1.6;
  display: block;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-title{
    margin-bottom: 4rem;
  }
  .home-title__english{
    font-size: 1.6rem;
    margin-bottom: 1.9rem;
  }
  .home-title__japanese{
    font-size: 3.6rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-title{
    margin-bottom: 2.2rem;
  }
  .home-title__english{
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }
  .home-title__japanese{
    font-size: 2.8rem;
  }
}
	

/* お知らせ
--------------------------------------------------*/
.home-cover__bottom{
  position: relative;
  /* z-index: 10; */
}
.home-news img{
  width: 100%;
}
.home-news{
  background-color: #fff;
  position: relative;
  z-index: 4;
}
.home-news .home-title__japanese{
  letter-spacing: .14em;
}
.m-news__itemIn{
  color: #021320;
  text-decoration: none;
  border-bottom: 1px #DADADA solid;
  transition: opacity .3s ease;
}
.m-news__itemIn:hover{
  opacity: 0.7;
}
.m-news__itemTime{
  letter-spacing: .04em;
}
.m-news__itemCategory{
  border: 1px #DADADA solid;
  border-radius: 1.5rem;
  box-sizing: border-box;
  text-align: center;
}
.m-news__itemText{
  line-height: 1.5;
  overflow: hidden;
	display: -webkit-box;
  -webkit-box-orient: vertical;
}
.m-news__panels{
  width: 100%;
}
.m-news__panel{
  display: none;
}
.m-news__panel.-current{
  display: block;
}

/* PC */
@media print,only screen and (min-width: 768px){   
  .home-cover__bottom{
    max-width: 126rem;
    padding: 0 4rem;	
    margin: 0 auto;	
    box-sizing: content-box;
  }
  .home-news{
    padding: 8rem 9rem;
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  .home-news__left{
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: -0.3rem;
  }
  .home-news__right{
    width: 66.67%;
  }
  .m-news__category{
    display: flex;
    gap:0 1.6rem;
    margin-bottom: 4.2rem;
  }
  .m-news__categoryItem{
    width: calc( 25% - 1.2rem );
    font-size: 1.3rem;
    letter-spacing: .16em;
    border-bottom: 1px #DADADA solid;
    cursor: pointer;
    padding: 0 1.2rem 1.1rem 1.2rem;
    box-sizing: border-box;
    transition: all .3s ease;
  }
  .m-news__categoryItem.-current,
  .m-news__categoryItem:hover{
    border-bottom: 1px #004098 solid;
  }
  .m-news__itemIn{
    display: flex;
    align-items: center;
    gap:0 2rem;
    padding: 2.8rem 0;
  }
  .m-news__itemTime{
    font-size: 1.3rem;
    letter-spacing: .04em;
  }
  .m-news__itemCategory{
    width: 8.1rem;
    font-size: 1.2rem;
    padding: 0.2rem 0.5rem;
  }
  .m-news__itemText{
    font-size: 1.5rem;
    line-height: 1.5;
    -webkit-line-clamp: 1;
    flex: 1;
  }
}

@media (min-width: 768px) and (max-width: 1000px) { 
  .home-news{
    display: block;
  }
  .home-news__left{
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6.4rem;
  }
  .home-news__right{
    width: 100%;
  }
  .home-news .home-title{
    margin-bottom: 0;
  }
}

/* SP */
@media screen and (max-width: 767px){ 
  .home-news{
    margin: 0 2rem;
    padding: 5.4rem 2.4rem 13.5rem 2.4rem;
    position: relative;
  }
  .home-news .m-button{
    width: 27rem;
    position: absolute;
    bottom: 5rem;
    left: 4rem;
    right: 4rem;
  }
  .m-news__category{
    width: 100%;
    background: url("../images/shared/arrow-down-gray.svg") right 1.8rem center no-repeat;
    background-size: 1.2rem auto;
    border: 1px solid #C7C7C7;
    border-radius: 8rem;
    padding: 1.2rem 4rem 1.2rem 2rem;
    font-size: 1.3rem;
    box-sizing: border-box;
  }
  .m-news__categoryItem{
  }
  .m-news__itemIn{
    padding: 1.6rem 0;
    display: block;
  }
  .m-news__itemTime{
    font-size: 1.2rem;
    letter-spacing: .04em;
  }
  .m-news__itemCategory{
    width: 8.1rem;
    font-size: 1.1rem;
    padding: 0.2rem 1.2rem;
  }
  .m-news__itemText{
    font-size: 1.6rem;
    line-height: 1.75;
    -webkit-line-clamp: 2;
    margin-top: 0.8rem;
  }
}
	
/* Message
--------------------------------------------------*/
.home-message img{
  width: 100%;
}
.home-message{
  position: relative;
  z-index: 1;
}
.home-message:before{
  content: "";
  position: absolute;
  mix-blend-mode: plus-lighter;
  display: block;
  border-radius: 50%;
  z-index: -1;
}
.home-message__text p:last-child{
  margin-bottom: 0;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-message{
    max-width: 108rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16rem auto;
  }
  .home-message .home-title__english{
    margin-bottom: 3.6rem;
  }
  .home-message .home-title__japanese{
    font-size: 4.2rem;
    letter-spacing: -.03em;
  }
  .home-message:before{
    width: 67.5rem;
    height: 67.5rem;
    left: -36rem;
    top: -34rem;
    border: 2.5rem solid #fff;
    filter: blur(1.3rem);
  }
  .home-message__texts{
    width: 42.4%;
  }
  .home-message__text{
    font-size: 1.4rem;
    line-height: 2.2;
  }
  .home-message__text p{
    margin-bottom: 1.6rem;
  }
  .home-message__image{
    width: 42.6%;
  }
}

@media (min-width: 768px) and (max-width: 1150px) {
  .home-message__texts{
    width: 50%;
  }
  .home-message__image{
    width: 42.6%;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-message{
    margin: 5.6rem 2rem 9.6rem 2rem;
  }
  .home-message .home-title__japanese{
    width: 100%;
    white-space: nowrap;
    letter-spacing: -.11em;
    font-size: 3.1rem;
  }
  .home-message:before{
    width: 44.4rem;
    height: 44.4rem;
    left: -18.2rem;
    top: -12.6rem;
    border: 2.5rem solid #fff;
    filter: blur(1.3rem);
  }
  .home-message__text{
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .home-message__text p{
    margin-bottom: 1.6rem;
  }
  .home-message__image{
    width: 100%;
    margin-top: 4.8rem;
  }
}
	
/* Service
--------------------------------------------------*/
.home-service img{
  width: 100%;
}
.home-service{
  color: #fff;
  position: relative;
  overflow: hidden;
}
.home-service__bgs{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.home-service__bgs:after{
  content: "";
  background: linear-gradient(234.93deg, rgba(0, 64, 152, 0.5) 8.4%, rgba(0, 21, 50, 0.5) 90.62%), rgba(0, 0, 0, 0.2);
  position: absolute;
  inset: 0;
  display: block;
}
.home-service__bgItem{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.home-service__bgItem picture{
  position: absolute;
  inset: 0;
  display: block;
}
.home-service__bgItem .home-service__bgImg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.home-service__bgItem.is-active{
  opacity: 1;
}
.home-service__inner{
  position: relative;
  z-index: 1;
}
.home-service .home-title__english,
.home-case .home-title__english,
.m-contact .home-title__english{
  background: url(../images/shared/title-icon-white.svg) left center no-repeat;
  background-size: 1.6rem auto;
  color: #fff;
}
.home-service a{
  color: #fff;
  text-decoration: none;
}
.nav-serviceWrapper{
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
}
.nav-service__itemIn{
  font-weight: 500;
}
.nav-serviceSecond{
  display: none;
}
.nav-serviceSecond__itemIn{
  display: block;
}
.nav-service__item{
  border-bottom: 1px rgba(255,255,255,0.5) solid;
}
.nav-service__item:first-child{
  border-top: 1px rgba(255,255,255,0.5) solid;
}
.nav-service__button{
  background-color: rgba(255,255,255,0.2);
  border: 1px #fff solid;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.nav-service__button:before,
.nav-service__button:after{
  content: "";
  height: 1px;
  background-color: #fff;
  display: block;
  position: absolute;
  inset:0;
  margin: auto;
  transition: transform .3s ease;
}
.nav-service__button:after{
  transform: rotate(90deg);
}
.-open .nav-service__button:after{
  transform: rotate(0deg);
}
.home-service .m-button__item,
.home-case .m-button__item,
.service-heading .m-button__item{
border: 1px rgba(255, 255, 255, 0.4) solid;
}
.home-heading{
  position: relative;
}

/* PC */
@media print,only screen and (min-width: 768px){
  .home-service{
    padding: 16rem 4rem;
  }
  .home-service__inner{
    max-width: 108rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .home-service .m-button{
    position: absolute;
    right: 0;
    top: 7.6rem;
  }
  .home-heading{
    width: calc( 100% - 30.2rem);
    margin-bottom: 8rem;
  }
  .home-heading__text{
    font-size: 1.4rem;
    line-height: 2.2;
    letter-spacing: .1em;
  }  
  .nav-serviceWrapper{
    height: calc( 100vh - 12.8rem );
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 12.8rem;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 5rem 5rem 5rem;
    box-sizing: border-box;
  }
  .nav-service{
    max-width: 108rem;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: 0 auto;
    padding: 4.8rem 6.4rem;
  }
  .nav-service a{
    transition: opacity .3s ease;
  }
  .nav-service a:hover{
    opacity: 0.7;
  }
  .nav-service__itemTop{
    display: flex;
    justify-content: space-between;  
    align-items: center;
  }
  .nav-service__itemIn{
    font-size: 1.6rem;
    font-weight: 500;
    padding: 3.2rem 4.2rem 3.2rem 0;
    display: block;
    flex: 1;
  }
  .nav-service__itemIn:after{
    width: 0.9rem;
    height: 1rem;
    content: "";
    background: url("../images/shared/arrow-green.svg") right center no-repeat;
    background-size: 100% auto;
    margin-left: 3.3rem;
    display: inline-block;
  }
  .nav-service__button{
    width: 4rem;
    height: 4rem;
  }
  .nav-service__button:before,
  .nav-service__button:after{
    width: 1.2rem;
  }
  .nav-serviceSecond__inner{
    display: flex;
    flex-wrap: wrap;
    gap:0 4.5rem;
    margin:0 3.2rem 5.6rem 3.2rem;
  }
  .nav-serviceSecond__item{
    width: calc( 50% - 2.25rem );
  }
  .nav-serviceSecond__itemIn{
    background: url("../images/shared/arrow-white.svg") right center no-repeat;
    background-size: 0.8rem auto;
    padding: 1.8rem 1.8rem 1.8rem 0;
    font-size: 1.4rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-service{
    padding: 9.6rem 2.4rem;
  }
  .home-service .m-button{
    width: 31rem;
    margin: 4rem auto 0 auto;
  }
  .home-heading{
    margin-bottom: 4rem;
  }
  .home-heading__text{
    font-size: 1.6rem;
    line-height: 1.75;
  }  
  .home-service .home-heading__text br,
  .home-case .home-heading__text br{
    display: none;
  }  
  .nav-serviceWrapper{
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .nav-service{
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: 0;
    padding: 4.8rem 2.4rem;
  }
  .nav-service__itemTop{
    display: flex;
    justify-content: space-between;  
    align-items: center;
  }
  .nav-service__itemIn{
    font-size: 1.4rem;
    font-weight: 500;
    padding: 1.8rem 0.5rem 1.8rem 0;
    flex: 1;
  }
  .nav-service__button{
    width: 3.2rem;
    height: 3.2rem;
  }
  .nav-service__button:before,
  .nav-service__button:after{
    width: 1rem;
  }
  .nav-serviceSecond__inner{
    margin-bottom: 3.2rem;
  }
  .nav-serviceSecond__itemIn{
    background: url("../images/shared/arrow-white.svg") right center no-repeat;
    background-size: 0.8rem auto;
    padding: 1.2rem 1.9rem 1.2rem 0;
    font-size: 1.3rem;
  }
}

/* Strength
--------------------------------------------------*/
.home-strength__title{
  color: #004098;
  font-family: var(--font-serif);
  font-weight: 500;
}
.home-strength__text01{
  font-family: var(--font-serif);
  font-weight: 500;
}
.home-strength__icon img{
  width: 100%;
}

.home-strength__title,
.home-strength__icon{
  z-index: 1;
  position: relative;
}
.home-strength__top:after{
  z-index: 0;
}

/* PC */
@media print,only screen and (min-width: 1000px){ 
  .home-strength{
    padding: 16rem 4rem;
  }
  .home-strength__inner{
    max-width: 108rem;
    margin: 0 auto;	
    position: relative;
  }
  .home-strength .m-button{
    position: absolute;
    right: 0;
    top: 8.6rem;
  }
  .home-strength__items{
    display: flex;
    gap:0 4.5rem;
  }
  .home-strength__item{
    width: calc( ( 100% / 3 ) - 3rem );
  }
  .home-strength__top{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    position: relative;
    padding-bottom: 4rem;
    box-sizing: border-box;
  }
  .home-strength__top:after{
    content: "";
    background: url("../images/home/strength-bg.png") center center no-repeat;
    background-size: 100% auto;
    position: absolute;
    inset:-4.5rem;
    display: block;
  }
  .home-strength__title{
    font-size: 2.8rem;
    order: 2;
    position: relative;
  }
  .home-strength__icon{
    width: 9.9rem;
    height: 9.9rem;
    order: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .home-strength__item:first-child .home-strength__icon img{
    width: 8rem;
  }
  .home-strength__item:nth-child(2) .home-strength__icon img{
    width: 7.5rem;
  }
  .home-strength__item:nth-child(3) .home-strength__icon img{
    width: 6rem;
  }
  .home-strength__item:first-child .home-strength__icon{
    margin-bottom: 0;
  }
  .home-strength__text01{
    font-size: 2rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: .1em;
    text-align: center;
    margin:7.7rem 0 1.6rem 0;
  }
  .home-strength__text02{
    font-size: 1.3rem;
    line-height: 2.2;
  }
  .home-strength__text02 br{
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1043px) {
  .home-strength__text01 br{
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1000px) {
  .home-strength{
    padding: 12.8rem 4rem;
  }
  .home-strength__inner{
    max-width: 82rem;
    margin: 0 auto;	
    position: relative;
  }
  .home-strength .m-button{
    position: absolute;
    right: 0;
    top: 8.6rem;
  }
  .home-strength__item{
    background-color: #E7EAED;
    margin-bottom: 1.6rem;
    padding: 3.4rem 4rem 4.8rem 4rem;
  }
  .home-strength__item:last-child{
    margin-bottom: 0;
  }
  .home-strength__top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -0.3rem;
  }
  .home-strength__title{
    font-size: 2rem;
    letter-spacing: .04em;
  }
  .home-strength__icon{
    width: 6.4rem;
  }
  .home-strength__item:first-child .home-strength__icon{
  }
  .home-strength__text01{
    font-size: 2rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: .04em;
    margin-bottom: 0.8rem;
  }
  .home-strength__text02{
    font-size: 1.3rem;
    line-height: 2;
  }
  .home-strength__text02 br{
    display: block;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-strength{
    padding: 9.6rem 2.4rem;
  }
  .home-strength .m-button{
    width: 31rem;
    margin: 4.8rem auto 0 auto;
  }
  .home-strength__item{
    background-color: #E7EAED;
    margin-bottom: 1.6rem;
    padding: 3.1rem 3rem 4.7rem 3rem;
  }
  .home-strength__item:last-child{
    margin-bottom: 0;
  }
  .home-strength__top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -0.3rem;
  }
  .home-strength__title{
    font-size: 1.8rem;
    letter-spacing: .04em;
  }
  .home-strength__icon{
    width: 6.4rem;
  }
  .home-strength__item:nth-child(3) .home-strength__icon img{
    width: 5.2rem;
  }
  .home-strength__item:nth-child(3) .home-strength__top{
    margin-bottom: 0.6rem;
  }
  .home-strength__text01{
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: .04em;
    margin-bottom: 0.8rem;
  }
  .home-strength__text02{
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .home-strength__text02 br{
    display: none;
  }
}

/* Case
--------------------------------------------------*/
.home-case img{
  width: 100%;
}
.home-case a{
  text-decoration: none;
}
.home-case .home-title__english{
  color: #fff;
}
.home-case{
  color: #fff;
  background: linear-gradient(234.93deg, #004098 8.4%, #032A60 90.62%);
}
.home-case__item{
  position: relative;
}
.home-case__item:after{
  content: "";
  background-color: rgba(255,255,255,0.3);
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
}
.home-case__text01{
  color: rgba(255,255,255,0.7);
}
.home-case__text02{
  color: #fff;
  font-weight: 500;
  overflow: hidden;
	display: -webkit-box;
  -webkit-box-orient: vertical;
}
.home-case__text03{
  display: flex;
  flex-wrap: wrap;
}
.home-case__category{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.home-case__categoryIn{
  color: #fff;
  border: 1px rgba(255,255,255,0.4) solid;
  border-radius: 1.5rem;
}
.home-case__keyword{
  display: flex;
  flex-wrap: wrap;
}
.home-case__keywordIn{
  color: #8FC31F;
  font-weight: 300;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-case{
    padding: 16rem 4rem;
  }
  .home-case__inner{
    max-width: 108rem;
    margin: 0 auto;
    position: relative;
  }
  .home-case .m-button{
    position: absolute;
    right: 0;
    top: 8.6rem;
  }
  .home-case__items{
    display: flex;
    gap:0 9rem;
  }
  .home-case__item{
    width: calc( ( 100% / 3 ) - 6rem );
    position: relative;
  }
  .home-case__item:after{
    right: -4.5rem;
  }
  .home-case__item:last-child:after{
    content: none;
  }
  .home-case__itemIn{
    transition: opacity .3s ease;
  }
  .home-case__itemIn:hover{
    opacity: 0.7;
  }
  .home-case__text01{
    font-size: 1.3rem;
    margin: 2.4rem 0 0.8rem 0;
  }
  .home-case__text02{
    font-size: 1.6rem;
    line-height: 1.75;
    margin-bottom: 2.4rem;
    -webkit-line-clamp: 2;
  }
  .home-case__text03{
    gap:0.5rem 1.6rem;
  }
  .home-case__category{
    gap:0.5rem 0.5rem;
  }
  .home-case__categoryIn{
    font-size: 1.2rem; 
    padding: 0.1rem 1.5rem 0.2rem 1.5rem;
  }
  .home-case__keyword{
    gap:0.3rem 0.8rem;
    margin-top: 0.2rem;
  }
  .home-case__keywordIn{
    font-size: 1.2rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-case{
    padding: 8.6rem 2rem;
  }
  .home-case .m-button,
  .home-column .m-button{
    width: 18.2rem;
    margin: 4rem auto 0 auto;
    text-align: center;
  }
  .home-case .m-button__item:after,
  .home-column .m-button__item:after{
    content: none;
  }
  .home-case__items{
    margin: 0 -2rem;
  }
  .home-case__item{
    margin: 0 3.2rem;
  }
  .home-case__item:after{
    right: -3.2rem;
  }
  .home-case__text01{
    font-size: 1.2rem;
    margin: 1.6rem 0 0.8rem 0;
  }
  .home-case__text02{
    font-size: 1.5rem;
    line-height: 2;
    margin-bottom: 1.6rem;
    -webkit-line-clamp: 3;
  }
  .home-case__text03{
    gap:0.5rem 1.6rem;
  }
  .home-case__category{
    gap:0.5rem 0.5rem;
  }
  .home-case__categoryIn{
    font-size: 1.1rem; 
    padding: 0.1rem 1.2rem 0.2rem 1.2rem;
  }
  .home-case__keyword{
    gap:0.3rem 0.8rem;
    margin-top: 0.2rem;
  }
  .home-case__keywordIn{
    font-size: 1.1rem;
  }
  .home-case .slick-prev,
  .home-column .slick-prev{
    background: linear-gradient(300deg, #003883 -23.82%, #8DC21F 419.33%);
    left: 4rem;
  }
  .home-case .slick-next,
  .home-column .slick-next{
    background: linear-gradient(60deg, #003883 -308.15%, #8DC21F 138.93%);
    right: 4rem;
  }
  .home-case .slick-prev:before,
  .home-column .slick-prev:before{
    background-image:url("../images/shared/prev-white.svg");
  }
  .home-case .slick-next:before,
  .home-column .slick-next:before{
    background-image:url("../images/shared/next-white.svg");
  }
  .home-case .slick-arrow,
  .home-column .slick-arrow{
    width: 5.6rem;
    height: 5.6rem;
    text-indent: -9999px;
    position: absolute;
    border-radius: 50%;
    bottom: -9.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
  }
  .home-case .slick-arrow:before,
  .home-column .slick-arrow:before{
    content: "";
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 0.8rem auto;
    position: absolute;
    inset:0;
    margin: auto;
    display: block;
  }
}

/* Seminar
--------------------------------------------------*/
.home-seminarArchiveColumn{
  position: relative;
  overflow: hidden;
}
.home-seminarArchiveColumn:before{
  content: "";
  background-color: #ededed;
  transform: skewY(-48deg);
  position: absolute;
  right: 0;
  margin: 0 auto;
  display: block;
}
.home-seminarArchiveColumn img{
  width: 100%;
}
.home-seminar{
  position: relative;
}
.home-seminar:not(.-open):not(.-none) .home-seminar__items > .home-seminar__item:nth-child(n + 3){
  display: none;
}
.home-seminar.-open .home-seminar__more{
  display: none;
}
.home-seminar__item{
  background-color: #fff;
}
.home-seminar__itemIn{
  text-decoration: none;
  display: block;
}
.home-seminar__items > .home-seminar__item:has(+ .home-seminar__more){
  margin-bottom: 0;
}
.home-seminar__image{
  position: relative;
}
.home-seminar__image img{
  width: 100%;
}
.home-seminar__icon{
  background-color: #004098;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
}
.home-seminar__icon.-closed {
	background-color: #5C646F;
}
.home-seminar__icon.-past {
	background-color: #021320;
}
.home-seminar__texts{
  position: relative;
}
.home-seminar__text01{
  color: #004098;
}
.home-seminar__text02{
  font-weight: 500;
}
.home-seminar__category{
  display: flex;
  flex-wrap: wrap;
  gap:0.5rem 0.5rem;
}
.home-seminar__categoryIn{
  border: 1px solid #DADADA;
}
.home-seminar__detail{
  color: #626262;
}
.home-seminar__link{
  background: url("../images/shared/next.svg") right center no-repeat;
  background-size: 0.9rem auto;
  color: #021320;
  text-decoration: none;
  transition: opacity .3s ease;
  text-align: right;
}
.home-seminar__type{
  color: #004098;
  font-weight: 500;
}
.home-seminar__more{
  text-align: right;
  cursor: pointer;
  color: #8a9197;
  position: relative;
}
.home-seminar__moreButton{
  width: 1.8rem;
  height: 1.8rem;
  background-color: #d5d9e0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border-radius: 50%;
}
.home-seminar__moreButton:before,
.home-seminar__moreButton:after{
  content: "";
  width: 0.8rem;
  height: 1px;
  background-color: #8a9197;
  position: absolute;
  inset:0;
  margin: auto;
  display: block;
  transition: transform .3s ease;
}
.home-seminar__moreButton:after{
  transform: rotate(90deg);
}
.-open .home-seminar__moreButton:after{
  transform: rotate(0);
}
.home-seminar__moreContent{
  display: none;
}
.home-seminar.-none .home-seminar__items{
  display: none;
}


/* PC */
@media print,only screen and (min-width: 768px){  
  .home-seminarArchiveColumn{
    padding: 12.8rem 4rem 0 4rem;
  }
  .home-seminarArchiveColumn:before{
    width:100%;
    height:1000rem;
    top:38rem;
    left:0;

    /* width: 400rem;
    height: 1000rem;
    top: -180rem;
    left: -150rem; */
  }
  .home-seminar{
    max-width: 108rem;
    margin: 0 auto 7.5rem auto;	
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  .home-seminar .home-heading{
    width: 100%;
  }
  .home-seminar__left{
    width: 25%;
  }
  .home-seminar__items{
    width: 67%;
  }
  .home-seminar__item{
    margin-bottom: 1.6rem;
  }
  .home-seminar__itemIn{
    transition: opacity .3s ease;
    display: flex;
  }
  .home-seminar__itemIn:hover{
    opacity: 0.7;
  }
  .home-seminar__image{
    width: 25%;
  }
  .home-seminar__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 221 / 295;
  }
  .home-seminar__icon{
    font-size: 1.2rem;
    padding: 1rem 1.6rem;
  }
  .home-seminar__texts{
    flex: 1;
    padding: 3.2rem 4rem 3.2rem 3.2rem;
    position: relative;
  }
  .home-seminar__text01{
    font-size: 1.3rem;
    margin-bottom: 2.4rem;
  }
  .home-seminar__text02{
    font-size: 1.8rem;
    line-height: 1.75;
    margin-bottom: 1.2rem;
  }
  .home-seminar__text03{
    margin-bottom: 1.6rem;
  }
  .home-seminar__categoryIn{
    font-size: 1.2rem;
    border-radius: 1.5rem;
    padding: 0.3rem 1.6rem;
  }
  .home-seminar__text04{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .home-seminar__detail{
    font-size: 1.1rem;
    line-height: 1.7;
  }
  .home-seminar__link{
    font-size: 1.2rem;
    padding:0.2rem 2.5rem 0.2rem 0;
  }
  .home-seminar__type{
    position: absolute;
    top: 3.2rem;
    right: 4rem;
    font-size: 1.2rem;
  }
  .home-seminar__more{
    font-size: 1.2rem;
    margin: -0.4rem 0 1rem 0;
    padding:0.5rem 2.6rem 0.5rem 0.5rem;
  }
  .home-seminar.-none{
    display: block;
  }
  .home-seminar.-none .home-seminar__left{
    width: 100%;
    display: flex;
    align-items: center;
    gap:0 2rem;
  }
  .home-seminar .home-heading__text br{
    display: none;
  }
  .home-seminar.-none .home-heading__text br{
    display: block;
  }
  .home-seminar.-none .home-heading{
    flex: 1;
  }
  .m-nopost{
    width: 100%;
    display: block;
    text-align: center;
    padding: 6.4rem 0;
    border-top: 1px #DADADA solid;
    border-bottom: 1px #DADADA solid;
  }
  .m-nopost__text{
    font-size: 1.4rem;
    line-height: 2.2;
    margin-bottom: 2.4rem;
  }
  .m-nopost .m-button{
    margin: 0 auto;
  }
}

@media (min-width: 768px) and (max-width: 1000px) {
  .home-seminar .m-button{
    position: absolute;
    top: 7.55rem;
    right: 0;
  }
  .home-seminar.-none .home-seminar__info .m-button{
    position: static;
    margin: 0 auto;
  }
  .home-seminar .home-heading__text{
    max-width: 48rem;
  }
  .home-seminar{
    display: block;
  }
  .home-seminar .home-heading{
    width: 100%;
  }
  .home-seminar__left{
    width: 100%;
  }
  .home-seminar__items{
    width: 100%;
  }
}

/* SP */
@media screen and (max-width: 767px){ 
  .home-seminarArchiveColumn{
    padding: 9rem 2rem 9rem 2rem;
  }
  .home-seminarArchiveColumn:before{
    width:100%;
    height:1000rem;
    top:15rem;
    left:0;
    
  }
  .home-seminar{
    padding-bottom: 4rem;
    position: relative;
  }
  .home-seminar .m-button{
    width: 31rem;
    position: absolute;
    bottom: 0;
  }
  .home-seminar .m-button__item{
    font-size: 1.2rem;
    padding: 1rem 4.3rem 1rem 4rem;
  }
  .home-seminar__item{
    margin-bottom: 1.6rem;
  }
  .home-seminar__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 310 / 163;
  }
  .home-seminar__icon{
    font-size: 1.2rem;
    padding: 1rem 1.6rem;
  }
  .home-seminar__texts{
    padding: 2.4rem 2.4rem 2rem 2.4rem;
  }
  .home-seminar__text01{
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
  }
  .home-seminar__text02{
    font-size: 1.5rem;
    line-height: 1.75;
    margin-bottom: 1.2rem;
  }
  .home-seminar__text03{
    margin-bottom: 1.6rem;
    display: flex;
    justify-content: space-between;
  }
  .home-seminar__categoryIn{
    font-size: 1.1rem;
    border-radius: 1.5rem;
    padding: 0.3rem 1.6rem;
  }
  .home-seminar__detail{
    font-size: 1.2rem;
    line-height: 1.7;
  }
  .home-seminar__link{
    font-size: 1.4rem;
    padding:0.2rem 2.5rem 0.2rem 0;
  }
  .home-seminar__type{
    font-size: 1.2rem;
    white-space: nowrap;
  }
  .home-seminar__more{
    font-size: 1.2rem;
    margin: -0.4rem 0 1rem 0;
    padding:0.5rem 2.6rem 0.5rem 0.5rem;
  }
  .m-nopost{
    width: 100%;
    display: block;
    padding: 2.4rem 0;
    border-top: 1px #DADADA solid;
    border-bottom: 1px #DADADA solid;
  }
  .m-nopost__text{
    font-size: 1.4rem;
    line-height: 2.2;
    margin-bottom: 2.4rem;
  }
  .m-nopost .m-button{
    position: static;
    margin: 0 auto;
  }
  .m-nopost .m-button__item{
    padding: 1.6rem 4.3rem 1.6rem 4rem;
  }
}

/* Archive Stream
--------------------------------------------------*/
.m-archive img{
  width: 100%;
}
.m-archive{
  background-color: #e4e6e8;
  position: relative;
}
.m-archive__heading{
  border-bottom: 1px #D0D0D0 solid;
}
.m-archive__titleJapanese{
  font-family: var(--font-serif);
  font-weight: 500;
}
.m-archive__titleEnglish{
  color: #042C63;
}
.m-archive__itemIn{
  display: flex;
  align-items: center;
  text-decoration: none;
}
.m-archive__image{
  position: relative;
}
.m-archive__image img{
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.m-archive__image:after{
  content: "";
  background: url("../images/home/archieve-arrow.svg") center center no-repeat;
  background-size: 100% auto;
  display: block;
  position: absolute;
  inset:0;
  margin: auto;
}
.-noplay .m-archive__image:after{
  content: none;
}
.m-archive__iconIn{
  border: 1px solid #D0D0D0;
  border-radius: 1.5rem;
  line-height: 1.45;
}
.m-archive__text{
  font-weight: 500;
  overflow: hidden;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-archive{
    max-width: 108rem;
    margin: 0 auto 9rem auto;	
    padding: 9rem 9rem 6.4rem 9rem;
    box-sizing: border-box;
  }
  .m-archive__heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2.2rem;
    margin-bottom: 5.6rem;
  }
  .m-archive__title{
    width: 50%;
    display: flex;
    align-items: center;
    gap:0 2.4rem;
  }
  .m-archive__titleJapanese{
    font-size: 3rem;
  }
  .m-archive__titleEnglish{
    font-size: 1.6rem;
  }
  .m-archive__titleText{
    flex: 1;
    text-align: right;
    font-size: 1.4rem;
    letter-spacing: .1em;
  }
  .m-archive__items{
    display: flex;
    flex-wrap: wrap;
    gap:1.6rem 4rem;
  }
  .m-archive__item{
    width: calc( 50% - 2rem );
  }
  .m-archive__itemIn{
    gap:0 2.4rem;
  }
  .m-archive__itemIn{
    transition: opacity .3s ease;
  }
  .m-archive__itemIn:hover{
    opacity: 0.7;
  }
  .m-archive__image{
    width: 12rem;
  }
  .m-archive__image:after{
    width: 2rem;
    height: 2.3rem;
  }
  .m-archive__texts{
    flex:1;
  }
  .m-archive__icon{
    display: flex;
    flex-wrap: wrap;
    gap:0.6rem;
    margin-bottom: 0.9rem;
  }
  .m-archive__iconIn{
    padding: 0.3rem 1.5rem;
    font-size: 1.2rem;
  }
  .m-archive__text{
    font-size: 1.5rem;
    line-height: 1.75;  
  }
}

@media (min-width: 768px) and (max-width: 1000px) {
  .m-archive__heading{
    display: block;
  }
  .m-archive__title{
    width: 100%;
    display: block;
  }
  .m-archive__titleText{
    text-align: left;
  }
  .m-archive__items{
    display: block;
  }
  .m-archive__item{
    width: 100%;
    margin-bottom: 2.6rem;
  }
  .m-archive__item:last-child{
    margin-bottom: 0;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .m-archive{
    margin: 0 -2rem 4.8rem -2rem;	
    padding: 5.8rem 2rem 4rem 2rem;
  }
  .m-archive__heading{
    position: relative;
    padding-bottom: 2.4rem;
    margin-bottom: 4rem;
  }
  .m-archive__titleJapanese{
    font-size: 2.4rem;
  }
  .m-archive__titleEnglish{
    font-size: 1.4rem;
    transform: rotate(90deg);
    position: absolute;
    top: 2rem;
    right: -5.5rem;
  }
  .m-archive__titleText{
    font-size: 1.6rem;
    line-height: 1.75;
    letter-spacing: .1em;
  }
  .m-archive__item{
    width: 100%;
    margin-bottom: 2.4rem;
  }
  .m-archive__itemIn{
    gap:0 2.4rem;
  }
  .m-archive__item:last-child{
    margin-bottom: 0;
  }
  .m-archive__image{
    width: 12rem;
  }
  .m-archive__image:after{
    width: 2rem;
    height: 2.3rem;
  }
  .m-archive__texts{
    flex:1;
  }
  .m-archive__icon{
    margin-bottom: 0.9rem;
  }
  .m-archive__iconIn{
    width: fit-content;
    padding: 0.1rem 1.2rem;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
  .m-archive__iconIn:last-child{
    margin-bottom: 0;
  }
  .m-archive__text{
    font-size: 1.4rem;
    line-height: 1.75;  
    overflow: hidden;
	  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}

/* Column
--------------------------------------------------*/
.home-column__image img{
  width: 100%;
  object-fit: cover;
	aspect-ratio: 3 / 2;
}
.home-column .slick-slide {
  height: auto !important;
}
.home-column__itemIn{
  height: 100%;
  background-color: #021320;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.home-column__categoryIn{
  width: fit-content;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5); 
  margin-bottom: 0.5rem;
}
.home-column__categoryIn:last-child{
  margin-bottom: 0;
}
.home-column__text{
  font-weight: 500;
  overflow: hidden;
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.home-column__tag{
  display: flex;
  flex-wrap: wrap;
}
.home-column__tagIn{
  color: #8FC31F;
}
.home-column__time{
  color: rgba(255,255,255,0.5);
  letter-spacing: .04em;
  text-align: right;
  display: block;
  margin-top: auto;
}
.home-column__items .slick-track {
  display: flex!important;
}
.home-column__items .slick-slide {
  height: auto !important;
}


/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-column{
    max-width: 108rem;
    padding: 15.4rem 4rem 12.8rem 4rem;	
    margin: 0 auto;	
    box-sizing: content-box;
    position: relative;
  }
  .home-column .m-button{
    position: absolute;
    top: 24.4rem;
    right: 4rem;
  }
  .home-column__items{
    margin: 0 -0.4rem;
  }
  .home-column__item{
    margin: 0 0.8rem;
  }
  .home-column__itemIn{
    padding: 1.6rem 3.2rem 3.2rem 3.2rem;
    transition: opacity .3s ease;
  }
  .home-column__itemIn:hover{
    opacity: 0.7;
  }
  .home-column__image{
    margin: 0 -1.6rem 1.6rem -1.6rem;
  }
  .home-column__category{
    margin:0 0 1.2rem 0;
  }
  .home-column__categoryIn{
    padding: 0.2rem 1.5rem;
    font-size: 1.2rem;
  }
  .home-column__text{
    font-size: 1.6rem;
    line-height: 1.75;
    margin-bottom: 1.2rem;
  }
  .home-column__tag{
    gap:0.3rem 0.8rem;
    margin-bottom: 3.5rem;
  }
  .home-column__tagIn{
    font-size: 1.2rem;
  }
  .home-column__time{
    font-size: 1.3rem;
  }
}

@media (min-width: 768px) and (max-width: 1040px) {
  .home-column .home-heading__text br{
    display: none;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-column .home-heading__text br{
    display: none;
  }
  .home-column{
    margin-top: 12.8rem;
  }
  .home-column .m-button{
  }
  .home-column__items{
    margin: 0 -2rem;
  }
  .home-column__item{
    width: 25.1rem!important;
    margin: 0 0.8rem;
  }
  .home-column__itemIn{
    padding: 1.6rem 3.2rem 3.2rem 3.2rem;
  }
  .home-column__image{
    margin: 0 -1.6rem 2rem -1.6rem;
  }
  .home-column__category{
    margin: 0 0 0.8rem 0;
  }
  .home-column__categoryIn{
    padding: 0.2rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: .02em;
  }
  .home-column__text{
    font-size: 1.5rem;
    line-height: 1.75;
    margin-bottom: 0.8rem;
  }
  .home-column__tag{
    gap:0.3rem 0.8rem;
    margin-bottom: 3.4rem;
  }
  .home-column__tagIn{
    font-size: 1.1rem;
  }
  .home-column__time{
    font-size: 1.2rem;
  }
}

/* リンク
--------------------------------------------------*/
.home-link__itemIn{	
  background-color: rgba(0,0,0,0.6);
  color: #fff;
  text-decoration: none;
  display: block;
  position: relative;
}
.home-link__itemIn:after{	
  content: "";
  background: url("../images/shared/arrow-link.svg") center center no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  display: block;
}
.home-link__english{
  display: block;
}
.home-link__japanese{
  font-family: var(--font-serif);
  display: block;
}

/* PC */
@media print,only screen and (min-width: 768px){   
  .home-links{
    background: url("../images/home/link-bg.jpg") center center no-repeat;
    background-size: cover;
    padding: 16.6rem 4rem;
    position: relative;
  }
  .home-links__inner{	
    margin: 0 auto;	
  }
  .home-link{	
    display: flex;
    gap:0 1.6rem;
  }
  .home-link__item{	
    width: calc( ( 100% / 3 ) - 1.067rem );
    margin: 0 auto;	
  }
  .home-link__itemIn{	
    padding: 5.4rem 6.7rem 5.4rem 5.6rem;
    transition: opacity .3s ease;
  }
  .home-link__itemIn:hover{	
    opacity: 0.82;
  }
  .home-link__itemIn:after{	
    width: 1.1rem;
    height: 1.6rem;
    right: 5.6rem;
  }
  .home-link__english{
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .home-link__japanese{
    font-size: 2.4rem;
  }
}

/* SP */
@media screen and (max-width: 767px){  
  .home-links{
    background: url("../images/home/link-bg-sp.jpg") center center no-repeat;
    background-size: cover;
    padding: 9.6rem 2.4rem;
    margin-bottom: 4rem;
  }
  .home-link__item{	
    margin-bottom: 1.6rem;
  }
  .home-link__item:last-child{	
    margin-bottom: 0;
  }
  .home-link__itemIn{	
    padding: 3rem 5.1rem 3rem 3.2rem;
  }
  .home-link__itemIn:after{	
    width: 1.1rem;
    height: 1.6rem;
    right: 4rem;
  }
  .home-link__english{
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
  .home-link__japanese{
    font-size: 2.4rem;
  }
}

/* 目次
--------------------------------------------------*/
#ez-toc-container {
  letter-spacing: .04em;
}
#ez-toc-container .ez-toc-title-container {
  background-color: #042C63;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.5;
  position: relative;
  cursor: pointer;
}
#ez-toc-container .ez-toc-title{
  color: #fff;
  font-family: var(--font-serif);
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}
#ez-toc-container .ez-toc-title-toggle{
  display: block;
}
#ez-toc-container .ez-toc-toggle{
  width: 2.4rem;
  height: 2.4rem;
  border: 1px rgba(255,255,255,0.7) solid;
  border-radius: 50%;
  position: absolute;
  right: 2.4rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  display: block;
  font-size: 0;
}
#ez-toc-container .ez-toc-toggle svg{
  display: none;
}
#ez-toc-container .ez-toc-toggle:before,
#ez-toc-container .ez-toc-toggle:after{
  content: "";
  width: 0.8rem;
  height: 1px;
  background-color: rgba(255,255,255,0.7);
  position: absolute;
  inset:0;
  margin: auto;
  transition: transform .3s ease;
}
#ez-toc-container .ez-toc-toggle:after{
  transform: rotate(0);
}
#ez-toc-container.toc_close .ez-toc-toggle:after{
  transform: rotate(90deg);
}
#ez-toc-container nav{
  background-color: #eaecef;
}
#ez-toc-container .ez-toc-list li:last-child{
  margin-bottom: 0;
}
#ez-toc-container .ez-toc-link{
  background: url("../images/shared/list-icon-gray.svg") 0 0.6em no-repeat;
  background-size: 0.6rem auto;
  line-height: 1.75;
  padding-left: 1.4rem;
  display: block;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  #ez-toc-container{
    margin-bottom: 8rem;
  }
  #ez-toc-container .ez-toc-title-container{
    font-size: 1.8rem;
    padding: 1.6rem 5.8rem 1.6rem 4rem;
  }
  #ez-toc-container nav{
    padding: 0 4rem 0 4rem;
  }
  #ez-toc-container nav ul{
    padding: 2.4rem 0 3.2rem 0;
  }
  #ez-toc-container .ez-toc-list li{
    margin-bottom: 0.8rem;
  }
  #ez-toc-container .ez-toc-link{
    font-size: 1.3rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  #ez-toc-container{
    margin-bottom: 6.4rem;
  }
  #ez-toc-container .ez-toc-title-container{
    font-size: 1.6rem;
    padding: 1.2rem 5.8rem 1.2rem 2.4rem;
  }
  #ez-toc-container nav{
    padding: 0 2.8rem 0 2.8rem;
  }
  #ez-toc-container nav ul{
    padding: 2.4rem 0 3.2rem 0;
  }
  #ez-toc-container .ez-toc-list li{
    margin-bottom: 0.6rem;
  }
  #ez-toc-container .ez-toc-link{
    font-size: 1.2rem;
    background-position: 0 0.65em;
  }
}

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

サービス

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

/* 提供サービス
--------------------------------------------------*/
.service-image img{
  width: 100%;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .service-image{
    margin-bottom: 12.8rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .service-image{
    overflow-x: scroll;
    margin: 0 -2rem;
    padding: 0 2rem 8rem 2rem;
  }
  .service-image__inner{
    width: 73.5rem;
  }
}

/* ナビ
--------------------------------------------------*/
.m-pagelink{
  background-color: #eaecef;
}
.m-pagelink__itemIn{
  background: url("../images/shared/arrow-down-gray.svg") right center no-repeat;
  background-size: 1.2rem auto;
  border-bottom: 1px #ccd4dd solid;
  color: #042C63;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-pagelink{
    margin: 0 calc( 50% - 50vw );
    padding: 5.2rem 4rem 6.4rem 4rem;
  }
  .m-pagelink.-top{
    margin-top: -12.9rem;
    padding-top: 10rem;
  }
  .m-pagelink__inner{
    max-width: 108rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap:0.4rem 2.4rem;
  }
  .-five .m-pagelink__inner,  
  .-four .m-pagelink__inner{
    gap:0.4rem 1.6rem;
  }
  .m-pagelink__item{
    display: flex;
  }
  .-five .m-pagelink__item{
    width: calc( 20% - 1.28rem );
  }
  .-four .m-pagelink__item{
    width: calc( 25% - 1.2rem );
  }
  .-three .m-pagelink__item{
    width: calc( ( 100% / 3 ) - 1.6rem );
  }
  .m-pagelink__itemIn{
    width: 100%;
    padding: 1.2rem 3.2rem 1.2rem 1.2rem;
    display: flex;
    align-items: center;
    transition: opacity .3s ease;
  }
  .m-pagelink__itemIn:hover{
    opacity: 0.7;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .m-pagelink{
    padding: 5.2rem 2.4rem;
    margin: 0 -2rem;
  }
  .m-pagelink.-top{
    margin-top: -8.1rem;
    padding-top: 8.3rem;
  }
  .m-pagelink__itemIn{
    display: block;
    padding: 1.2rem 3.2rem 1.2rem 1.2rem;
  }
  .-sptwo .m-pagelink__inner{
    display: flex;
    flex-wrap: wrap;
    gap:0.3rem 1.6rem;
  }
  .-sptwo .m-pagelink__item{
    width: calc( 50% - 0.8rem );
  }
}

/* コンテンツ
--------------------------------------------------*/
.service-heading__inner{
  position: relative;
}
.service-title{
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .04em;
}
.service-list{
  position: relative;
}
.service-list__itemIn{
  width: 100%;
  display: block;
  text-decoration: none;
  color: #021320;
}
.service-text01{
  background: url("../images/shared/list-icon-gray.svg") 0 0.45em no-repeat;
  background-size: 1.2rem auto; 
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.5;
}
.service-text02{
  color: #616c76;
  line-height: 2;
  letter-spacing: .04em;
  overflow: hidden;
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.service-heading__image:after{
  content: "";
  position: absolute;
  inset:0;
  background: linear-gradient(234.93deg, rgba(0, 64, 152, 0.5) 8.4%, rgba(0, 21, 50, 0.5) 90.62%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  display: block;
}

/* PC */
@media print,only screen and (min-width: 768px){   
  .service-content{
    margin-bottom: 8rem;
  }
  .service-heading{
    height: 36.5rem;
  }
  .service-heading__image{
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc( 50% - 50vw );
    right: calc( 50% - 50vw );
  }
  .service-heading__image:after{
    height: 36.5rem;
  }
  .service-heading__image img{
    width: 100%;
    height: 36.5rem;
    object-fit: cover;
  }
  .service-heading__inner{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .service-title{
    font-size: 2.8rem;
  }
  .service-heading .m-button{
    width: 42%;
    max-width: 45rem;
  }
  .service-list{
    display: flex;
    flex-wrap: wrap;
    gap:1.6rem;
    margin-top: -8.2rem;
  }
  .service-list__item{
    width: calc( 50% - 0.8rem );
    display: flex;
  }
  .service-list__itemIn{
    background:#cfd6de url("../images/shared/arrow-gray.svg") right 2.8rem center no-repeat;
    background-size: 1.2rem auto;
    padding: 3.2rem 7rem 3.2rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: opacity .3s ease;
  }
  .service-list__itemIn:hover{
    opacity: 0.9;
  }
  .service-text01{
    font-size: 1.8rem;
    padding-left: 2.4rem;
    margin-bottom: 1.4rem;
  }
  .service-text01:last-child{
    margin-bottom: 0;
  }
  .service-text02{
    font-size: 1.2rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	  
  .service-content{
    margin-bottom: 8rem;
  }
  .service-heading{
    padding: 12.8rem 2rem;
    margin: 0 -2rem;
    position: relative;
  }
  .service-heading__image{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .service-heading__image img{
    width: auto;
    height: 100%;
    object-fit: cover;
  }
  .service-heading__image:after{
    inset:0;
  }
  .service-title{
    font-size: 2.4rem;
  }
  .service-heading .m-button{
    margin-top: 4rem;
  }
  .service-list{
    margin-top: -7.4rem;
  }
  .service-list__item{
    margin-bottom: 1rem;
  }
  .service-list__item:last-child{
    margin-bottom: 0;
  }
  .service-list__itemIn{
    background:#cfd6de url("../images/shared/arrow-gray.svg") right 2.4rem center no-repeat;
    background-size: 1.1rem auto;
    padding: 2.4rem 5rem 2.4rem 2.4rem;
  }
  .service-text01{
    font-size: 1.6rem;
    padding-left: 2.4rem;
    margin-bottom: 0.8rem;
  }
  .service-text01:last-child{
    margin-bottom: 0;
  }
  .service-text02{
    font-size: 1.1rem;
  }
}

/* 図
--------------------------------------------------*/
.service-figure__image img{
  width: 100%;
}
.service-figure__texts{
  background-color: #eaecef;
  box-sizing: border-box;
}
.service-figure__text{
  color: #004098;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .04em;
}
.service-figure__listIn{
  background: url("../images/shared/list-icon-gray.svg") 0 0.6em no-repeat;
  background-size: 0.4rem auto;
  font-size: 1.1rem;
  line-height: 1.3;
}
.service-figure__listIn:last-child{
  margin-bottom: 0;
}

/* PC */
@media print,only screen and (min-width: 768px){  
  .service-figure{
    position: relative;
    margin-bottom: 8rem;
  }
  .service-figure__texts{
    min-width: 20rem;
    width: fit-content;
    padding: 2.4rem 2rem 2.4rem 2.5rem;
    position: absolute;
  }
  .service-figure__texts:first-child{
    top: 0;
    left: 0;
  }
  .service-figure__texts:nth-child(2){
    top: 0;
    right: 0;
  }
  .service-figure__texts:nth-child(3){
    bottom: 0;
    right: 0;
  }
  .service-figure__texts:nth-child(4){
    bottom: 0;
    left: 0;
  }
  .service-figure__text{
    margin-bottom: 1.6rem;
  }
  .service-figure__listIn{
    padding-left: 1.2rem;
    margin-bottom: 0.8rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .service-figure{
    margin-bottom: 8rem;
  }
  .service-figure__content{
    display: flex;
    flex-wrap: wrap;
    gap:1rem;
    margin-top: 3.2rem;
  }
  .service-figure__texts{
    width: calc( 50% - 0.5rem );
    padding: 2rem 2rem 2.4rem 2rem;
  }
  .service-figure__text{
    margin-bottom: 1.2rem;
  }
  .service-figure__listIn{
    padding-left: 1rem;
    margin-bottom: 0.4rem;
  }
}

/* その他の領域
--------------------------------------------------*/
.service-field{
  background-color: #021320;
  color: #fff;
}
.service-field__title{
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
}
.service-field__listItemIn{
  background: url("../images/shared/arrow-gray.svg") right 3rem center no-repeat;
  background-size: 0.9rem auto;
  background-color: rgba(255,225,225,0.1);
  border-top: 1px rgba(255,225,225,0.4) solid;
  border-bottom: 1px rgba(255,225,225,0.4) solid;
  color: #fff;
  display: block;
  box-sizing: border-box;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}
.service-field .m-button{
  margin-bottom: 0;

}

/* PC */
@media print,only screen and (min-width: 768px){
  .service-field{
    margin: 0 calc( 50% - 50vw );
    padding: 9.6rem 4rem;
    margin-bottom: -9rem;
  }
  .service-field__inner{
    max-width: 90rem;
    margin: 0 auto;
  }
  .service-field__title{
    font-size: 2rem;
    margin-bottom: 4.8rem;
    text-align: center;
  }
  .service-field__list{
    display: flex;
    flex-wrap: wrap;
    gap:1.6rem;
    margin-bottom: 4.8rem;
  }
  .service-field__listItem{
    width: calc( 50% - 0.8rem );
  }
  .service-field__listItemIn{
    font-size: 1.4rem;
    text-align: center;
    padding: 2.3rem 4rem;
    transition: opacity .3s ease;
  }
  .service-field__listItemIn:hover{
    opacity: 0.7;
  }
  .service-field .m-button{
    width:fit-content;
    min-width: 270px;
    max-width: max-content;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .service-field{
    padding: 7rem 2rem;
    margin:0 -2rem;
  }
  .service-field__inner{
  }
  .service-field__title{
    font-size: 1.8rem;
    margin-bottom: 3.2rem;
  }
  .service-field__list{
    margin-bottom: 3.2rem;
  }
  .service-field__listItem{
    margin-bottom: 1rem;
  }
  .service-field__listItem:last-child{
    margin-bottom: 0;
  }
  .service-field__listItemIn{
    background-position: right 2.5rem center;
    font-size: 1.4rem;
    font-weight: 400;
    padding: 1.9rem 3.1rem;
  }
  .service-field .m-button{
    width: 27rem;
    margin: 0 auto;
  }
}

/* 画像テキスト
--------------------------------------------------*/
.service-imageText__image img{
  width: 100%;
}
.service-imageText__text{
  letter-spacing: .03em;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .service-imageText{
    display: flex;
    justify-content: space-between;
    margin-bottom: 8rem;
  }
  .service-imageText__image{
    width: 50%;
  }
  .service-imageText__text{
    width: 45%;
    font-size: 1.4rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .service-imageText{
    margin-bottom: 4rem;
  }
  .service-imageText__image{
    margin-bottom: 2.4rem;
  }
  .service-imageText__text{
    font-size: 1.4rem;
  }	
}

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

お問い合わせ

==================================================*/
.service-contact__title,
.m-contact__heading{
  position: relative;
  text-align: center;
}
.service-contact__english,
.m-contact__english{
  color: #8FC31F;
  letter-spacing: .04em;
  display: block;
}
.service-contact__japanese,
.m-contact__japanese{
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .04em;
  display: block;
}
.m-contact__headingText,
.m-contact__headingList{
  color: #fff;
  position: relative;
}
.m-contact__headingList{
  width: fit-content;
  text-align: left;
  margin: 0 auto;
}
.m-contact__headingListItem,
.m-contact__headingListInItem{
  position: relative;
  padding-left: 1.2em;
}
.m-contact__headingListItem:before,
.m-contact__headingListInItem:before{
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.m-formText{
  border-top: 1px #a4b1c4 solid;
  border-bottom: 1px #a4b1c4 solid;
}
.m-form{
  background-color: #fff;
  box-sizing: border-box;
}
.service-contact .m-form,
.recruit-contact .m-form,
.seminar-contact .m-form{
  width: auto;
  background-color: #fff;
  padding: 7.4rem 9rem 6.4rem 9rem;
  margin: -4.3rem 0 9.6rem 0;
}
.m-form__title{
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0;
}
.m-form__must{
  background-color: #8FC31F;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .04em;
}
input[type="text"],
input[type="tel"],
input[type="email"],
.m-form select,
textarea{
  width: 100%;
  background-color: #F7F7F7;
  border: 1px #cfd6de solid;
  box-sizing: border-box;
}
.m-form select{
  background: #F7F7F7 url("../images/shared/arrow-down-gray.svg") right 2.3rem center no-repeat;
}
.m-form__privacy{
  letter-spacing: 0;
  text-align: center;
}
.m-form__note,
.m-form__note02{
  color: #5c666e;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
}
.m-form__note02{
  text-align: left;
}
.form-buttons{
	margin: 0 auto;
	text-align: center;
  overflow: hidden;
}
.form-buttons button{
	background: linear-gradient(90deg,#003883 0%, #8DC21F 100%);
  color: #fff;
  line-height: 1.5;
  border-radius: 8rem;
  text-decoration: none;
  position: relative;
  border: 1px rgba(255,255,255,0.4) solid;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  transition: opacity .3s ease;
}
.form-buttons button:hover{
  opacity: 0.7;
}
.form-buttons button:after{  
  content: "";
  background: url("../images/shared/arrow-white.svg") center center no-repeat;
  background-size: 100% auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;  
  margin: auto 0;
}
.form-buttons button.submit{
	text-align: center;
	margin: 0 auto;
}
/*
.form-buttons button.send{
	float: left;
}
.form-buttons button.back{
	float: right;
}
*/

/* Contact Form 7: .form-buttons */
.form-buttons p {
  margin: 0;
  position: relative;
}
.form-buttons input[type="submit"],
.form-buttons .wpcf7-submit {
  background: linear-gradient(90deg,#003883 0%, #8DC21F 100%);
  color: #fff;
  line-height: 1.5;
  border-radius: 8rem;
  text-decoration: none;
  position: relative;
  border: 1px rgba(255,255,255,0.4) solid;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  font: inherit;
}
.form-buttons p::after {
  content: "";
  background: url("../images/shared/arrow-white.svg") center center no-repeat;
  background-size: 100% auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  pointer-events: none;
}
.form-buttons input[type="submit"]:disabled,
.form-buttons .wpcf7-submit:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.form-buttons .wpcf7-spinner {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}

input[type="checkbox"]{
  background-color: #F7F7F7;
  border: 1px #cfd6de solid;
  vertical-align: middle;
  position: relative;
}
input[type="checkbox"]:checked:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(50deg);
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
}
.m-form__radio label{
  cursor: pointer;
  position: relative;
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1.5;
}
.m-form__radio label:before{
  content: "";
  border-radius: 50%;
  background: #f4f6f8;
  position: absolute;
  left: 0;
  flex-shrink: 0;
  display: block;
  border: 1px #cdd6e0 solid;
}
.m-form__radio label:after{
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #042C63;
  transition: .2s;
  transform: scale(0);
}
.m-form__radio label:has(input:checked):after{
  transform: scale(1);
}
.m-form__addressNote{
  border-top: 1px #cdd6e0 solid;
  border-bottom: 1px #cdd6e0 solid;
  line-height: 1.5;
  letter-spacing: .04em;
  text-align: center;
}
.form-buttons input[type="submit"]:disabled, .form-buttons .wpcf7-submit:disabled{
  opacity: 1;
}

.service-back{
  position: fixed;
  right: 2.5rem;
  bottom: 2.5rem;
  z-index: 99;
}
.service-back__texts{
  width: fit-content;
  padding: 0.4rem 2.4rem;
  background: rgba(247, 247, 247, 0.65);
  backdrop-filter: blur(4px);
  color: #021320;
  font-size: 1.2rem;
  letter-spacing: 0;
  margin-bottom: 0.8rem;
}
.service-back__title{
  padding-left: 1rem;
  margin-left: 1rem;
  position: relative;
}
.service-back__title:before{
  content: "";
  height: 1.6rem;
  width: 1px;
  background-color: #a3b0c4;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto 0;
  display: block;
}
.service-back__button{
  width: fit-content;
}
.service-back__buttonItem{
  width: fit-content;
  background-color: #042C63;
  border-radius: 8rem;
  color: #fff;
  display: block;
  text-decoration: none;
}

.service-back[data-back-trigger]{

  opacity: 0;
  visibility: hidden;

  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.service-back[data-back-trigger].is-show{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* PC */
@media print,only screen and (min-width: 768px){
  .m-contact__heading{
    background: linear-gradient(180deg, #04316E -66.32%, #004098 100%);
    clip-path: polygon(
      0 0,
      100% 0,
      100% 85%,
      50% 100%,
      0 85%
    );
    padding: 7.5rem 3rem 8rem 3rem;
    display: block;
  }
  .m-contact__english{
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }
  .m-contact__japanese{
    font-size: 2.6rem;
  }
  .m-contact__headingText{
    font-size: 1.4rem;
    line-height: 2.2;
    letter-spacing: .03em;
    margin-top: 2.4rem;
    display: block;
  }
  .m-contact__headingList{
    font-size: 1.4rem;
    line-height: 2.2;
    letter-spacing: .03em;
    margin-top: 2.4rem;
  }
  .m-formText{
    width: 23rem;
    height: fit-content;
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: .04em;
    padding: 4rem 0;
    border-top: 1px #a4b1c4 solid;
    border-bottom: 1px #a4b1c4 solid;
  }
  .m-form{
  width: calc( 100% - 27rem );
    padding: 4.8rem 5.6rem 6.4rem 5.6rem;
  }
  .m-form__title{
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  .m-form__must{
    font-size: 1.1rem;
    padding: 0.1rem 0.8rem;
    margin-left: 0.8rem;
  }
  .m-form__input{
    margin-bottom: 2.4rem;
  }
  .m-form input[type="text"],
  .m-form input[type="tel"],
  .m-form input[type="email"],
  .m-form textarea,
  .m-form select{
    padding: 0.8rem 1.6rem;
  }
  .m-form select{
    background-size: 1.7rem auto;
  }
  .m-form textarea{
    height: 15.8rem;
  }
  .m-form__privacy{
    font-size: 1.4rem;
    margin: 2rem 0 2.5rem 0;
  }
  .m-form__note{
    font-size: 1.2rem;
    margin-top: 1.6rem;
  }
  .m-form__note02{
    font-size: 1.2rem;
  }
  .form-buttons{
    max-width: 57rem;
  }
  .form-buttons button{
    width: 47.37%;
    max-width: 27rem;
    font-size: 1.4rem;
    padding: 1.6rem 4.3rem 1.6rem 4rem;
  }
  .form-buttons button:after{  
    content: "";
    width: 0.9rem;
    height: 1rem;
    right: 2.2rem;
  }
  .form-buttons input[type="submit"],
  .form-buttons .wpcf7-submit {
    width: 47.37%;
    max-width: 27rem;
    font-size: 1.4rem;
    padding: 1.6rem 4.3rem 1.6rem 4rem;
    transition: opacity .3s ease;
  }
  .form-buttons input[type="submit"]:hover {
    opacity: 0.7;
  }
  .form-buttons p::after {
    width: 0.9rem;
    height: 1rem;
    right: 2.2rem;
  }
  .m-form input[type="checkbox"]{
    width: 3.2rem;
    height: 3.2rem;
    top: -0.3rem;
    margin-right: 1.2rem;
  }
  .m-form input[type="checkbox"]:checked:before {
    bottom: 0.3rem;
    width: 0.8rem;
    height: 1.4rem;
  }
  .m-form__radio{
    display: flex;
    gap:0 3.2rem;
    margin: 1rem 0 0 0;
  }
  .m-form__radio:last-child{
    margin-bottom: 3.4rem;
  }
  .m-form__radio label{
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    padding-left: 2.3rem;
  }
  .m-form__radio label:before{
    width: 3.2rem;
    height: 3.2rem;
  }
  .m-form__radio label:after{
    width: 1.6rem;
    height: 1.6rem;
    left: 0.8rem;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
  .m-form__radio .wpcf7-list-item{
    float: left;
    display: inline-block;
    padding: 1rem 0;
  }
  wpcf7-form-control-wrap:not(.m-form__radio) .m-form__radio .wpcf7-list-item:nth-child(odd){
    clear: both;
    margin-left: 0;
  }

  .m-form__addressNote{
    padding: 3.2rem 0;
    margin: 5.8rem 0 4rem 0;
    font-size: 1.4rem;
  }
  
  .service-back{
    position: fixed;
    right: 2.5rem;
    bottom: 2.5rem;
    z-index: 99;
  }
  .service-back__button{
    width: fit-content;
    margin: 0 auto;
  }
  .service-back__buttonItem{
    width: fit-content;
    background-color: #042C63;
    color: #fff;
    font-size: 1.4rem;
    padding: 1rem 3.5rem;
    display: block;
    text-decoration: none;
    transition: opacity .3s ease;
    cursor: pointer;
  }
  .service-back__buttonItem:hover{
    opacity: 0.8;
  }
}

/* PC1620 */
@media print,only screen and (min-width: 1620px){ 
  .service-contact{
    width: 35.9rem;
    position: fixed;
    right: 0;
    bottom: 3rem;
    z-index: 100;
  }
  .service-form__content{
    display: none;
  }
  .service-contact .m-form{
    background-color: transparent;
    padding: 0;
    margin: 0;
  }
  .service-contact .m-form{
  }  
  .service-contact__english{
    display: none;
  }
  .service-form__button{
    background-color: #021320;
    color: #fff;
    font-family: var(--font-serif);
    line-height: 1.5;
    display: flex;
    margin-top: -1px;
    cursor: pointer;
  }
  .service-form__link{
    display: none;
  }
  .service-form__button div{
    position: relative;
  }
  div.service-form__buttonOpen{
    font-size: 1.6rem;
    padding: 2.4rem 6.8rem 2.4rem 4rem;
    /* display: none; */
  }
  div.service-form__buttonClose{
    width: fit-content;
    font-size: 1.2rem;
    text-align: center;
    padding: 1.2rem 6.3rem 1.2rem 4rem;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    display: none;
  }
  .service-contact.is-open div.service-form__buttonOpen{
    display: none;
  }
  .service-contact.is-open div.service-form__buttonClose{
    display: inline-flex;
  }
  .service-form__button div:after{
    content: "";
    width: 1.2rem;
    height: 0.7rem;
    background: url("../images/shared/arrow-down-white.svg") center center no-repeat;
    background-size: 100% auto;
    content: "";
    position: absolute;
    right: 4rem;
    top: 0;
    bottom: 0;
    margin: auto 0;
    transition: transform .3s ease;
  }
  .service-form__button div.service-form__buttonClose:after{
    transform: rotate(180deg);
  }
  .service-form__button{
    transition: opacity .3s ease;
  }

  .service-form__button.is-hidden-by-footer,
  .service-form__button.is-hidden-by-footer:hover{
    opacity: 0;
    pointer-events: none;
  }


  .service-form__button:hover{
    opacity: 0.7;
  }
  .service-form__content{
    padding: 2.7rem 3.9rem 2.9rem 3.9rem;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #FFF;
    box-shadow: 0px 0px 16px rgba(77, 114, 136, 0.1);
  }
  .service-contact__japanese{
    color: #042C63;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 1.8rem;
  }
  .service-contact .m-form__title{
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .service-contact .m-form__input{
  margin-bottom: 0.8rem;
  }
  .service-contact .m-form__must{
    font-size: 0.8rem;
    padding: 0.1rem 0.6rem;
    margin-left: 0.8rem;
  }
  .service-contact input[type="text"],
  .service-contact input[type="tel"],
  .service-contact input[type="email"],
  .service-contact textarea{
    padding: 0.8rem 1.6rem;
    font-size: 1.2rem;
  }
  .service-contact textarea{
    height: 7.4rem;
  }
  .service-contact .m-form__privacy{
    font-size: 1rem;
    margin: 1.4rem 0 0.5rem 0;
  }
  .service-contact .m-form__note{
    font-size: 1rem;
    margin-top: 1rem;
    text-align: left;
  }
  .service-contact .form-buttons{
    width: 100%;
  }
  .service-contact .form-buttons button{
    width: 100%;
    font-size: 1.2rem;
    padding: 1.2rem 4.3rem 1.2rem 3.2rem;
    text-align: left;
  }
  .service-contact .form-buttons button:after{  
    content: "";
    width: 0.9rem;
    height: 1rem;
    right: 2.4rem;
  }
  .service-contact .form-buttons input[type="submit"],
  .service-contact .form-buttons .wpcf7-submit {
    width: 100%;
    font-size: 1.2rem;
    padding: 1.2rem 4.3rem 1.2rem 3.2rem;
    text-align: left;
  }
  .service-contact .form-buttons p::after {
    width: 0.9rem;
    height: 1rem;
    right: 2.4rem;
  }
  .service-contact input[type="checkbox"]{
    width: 2rem;
    height: 2rem;
    margin-right: 1.2rem;
  }
  .service-contact input[type="checkbox"]:checked:before {
    bottom: 0.3rem;
    width: 0.5rem;
    height: 1rem;
  }
}


/* 1619 */
@media (min-width: 768px) and (max-width: 1619px) {   
  .service-contact .service-form__content{
    display: block!important;
  }
  .service-form__link{
    width: 100%;
    background-color: #021320;
    color: #fff;
    font-family: var(--font-serif);
    line-height: 1.5;
    bottom: 0;
    left: calc( 50% - 50vw );
    right: calc( 50% - 50vw );
    left: 0;
    right: 0;
    position: fixed;
    cursor: pointer;
    z-index: 99;
    text-align: center;
    transition: opacity .3s ease;
  }
  .service-form__link.is-hidden-by-footer{
    opacity: 0;
    pointer-events: none;
  }
  .service-form__link a{
    width: 100%;
    color: #fff;
    text-align: center;
    display: block;
    position: relative;
    text-decoration: none;
    display: block;
    padding: 2.4rem 6.8rem 2.4rem 4rem;
    transition: opacity .3s ease;
  }
  .service-form__link a:hover{
    opacity: 0.7;
  }
  .service-form__button{
    display: none;
  }
  .service-form__link>a:after{
    content: "";
    width: 1.2rem;
    height: 0.7rem;
    background: url("../images/shared/arrow-down-white.svg") center center no-repeat;
    background-size: 100% auto;
    content: "";
    display: inline-block;
    margin-left: 2.4rem;
    transition: transform .3s ease;
  }
  
  .service-contact__title{
    background: linear-gradient(180deg, #04316E -66.32%, #004098 100%);
    clip-path: polygon(
      0 0,
      100% 0,
      100% 85%,
      50% 100%,
      0 85%
    );
    padding: 7.5rem 3rem 8rem 3rem;
    display: block;
  }
  .service-contact__english{
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }
  .service-contact__japanese{
    font-size: 2.6rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	  
  .service-contact .service-form__content{
    display: block!important;
  }
  .service-form__link{
    background-color: #021320;
    color: #fff;
    font-family: var(--font-serif);
    line-height: 1.5;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    cursor: pointer;
    z-index: 99;
    text-align: center;
    transition: opacity .3s ease;
  }
  .service-form__link.is-hidden-by-footer{
    opacity: 0;
    pointer-events: none;
  } 
  .service-form__link a{
    width: 100%;
    color: #fff;
    display: block;
    position: relative;
    text-decoration: none;
    display: block;
    font-size: 1.5rem;
    text-align: left;
    padding: 1.6rem 7rem 1.6rem 3rem;
  }
  .service-form__link>a:after{
    content: "";
    width: 1.2rem;
    height: 0.7rem;
    background: url("../images/shared/arrow-down-white.svg") center center no-repeat;
    background-size: 100% auto;
    content: "";
    display: inline-block;
    margin-left: 2.4rem;
    position: absolute;
    right:3.5rem; 
  }
  .service-form__button{
    display: none;
  }
  .service-contact__title,
  .m-contact__heading{
    background: linear-gradient(180deg, #04316E -66.32%, #004098 100%);
    clip-path: polygon(
      0 0,
      100% 0,
      100% 90%,
      50% 100%,
      0 90%
    );
    padding: 4rem 2rem 5.6rem 2rem;
  }
  .service-contact__english,
  .m-contact__english{
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .service-contact__japanese,
  .m-contact__japanese{
    font-size: 2.2rem;
  }
  .m-contact__headingText{
    font-size: 1.2rem;
    line-height: 2;
    letter-spacing: .03em;
    margin-top: 2rem;
    display: block;
  }
  .m-contact__headingList{
    font-size: 1.2rem;
    line-height: 2;
    letter-spacing: .03em;
    margin-top: 2rem;
  }
  .m-formText{
    font-size: 1.3rem;
    line-height: 2;
    letter-spacing: .04em;
    padding: 2rem 0;
    margin: 0 0 2rem 0;
  }
  .m-form{
    padding: 5.6rem 3.2rem 5.6rem 3.2rem;
    margin: 0 0 8rem 0;
  }
  .service-contact .m-form,
  .recruit-contact .m-form,
  .seminar-contact .m-form{
    padding: 5.6rem 3.2rem 5.6rem 3.2rem;
    margin: -2.4rem 0 8rem 0;
  }
  .m-form__title{
    font-size: 1.4rem;
    margin-bottom: 0.85rem;
  }
  .m-form__must{
    font-size: 1rem;
    padding: 0.1rem 0.6rem;
    margin-left: 0.8rem;
  }
  .m-form input[type="text"],
  .m-form input[type="tel"],
  .m-form input[type="email"],
  .m-form textarea,
  .m-form select{
    padding: 0.3rem 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
  }
  .m-form select{
    background-position: right 1.6rem center;
    background-size: 1.2rem auto;
  }
  .m-form textarea{
    height: 15rem;
  }
  .m-form__privacy{
    font-size: 1.2rem;
    margin: 0 0 1.6rem 0;
  }
  .m-form__note{
    font-size: 1rem;
    margin-top: 1.6rem;
  }
  .m-form__note02{
    font-size: 1rem;
    margin: 0 0 3rem 0;
  }
  .form-buttons{
    width: 100%;
  }
  .form-buttons button{
    width: 100%;
    font-size: 1.4rem;
    padding: 1.6rem 4rem;
  }
  .form-buttons button:after{  
    content: "";
    width: 0.9rem;
    height: 1rem;
    right: 2.2rem;
  }
  .form-buttons input[type="submit"],
  .form-buttons .wpcf7-submit {
    width: 100%;
    font-size: 1.4rem;
    padding: 1.6rem 4rem;
  }
  .form-buttons p::after {
    width: 0.9rem;
    height: 1rem;
    right: 2.2rem;
  }
  .m-form input[type="checkbox"]{
    width: 2.4rem;
    height: 2.4rem;
    top: -0.2rem;
    margin-right: 1.2rem;
  }
  .m-form input[type="checkbox"]:checked:before {
    bottom: 0.3rem;
    width: 0.6rem;
    height: 1.2rem;
  }
  .m-form__radio:first-child{
    margin-top: 2rem;
  }
  .m-form__radioIn{
    margin-bottom: 1rem;
  }
  .m-form__radio:last-child{
    margin-bottom: 3rem;
  }
  .m-form__radio label{
    font-size: 1.2rem;
    padding-left: 2.3rem;
    display: flex;
  }
  .m-form__radio label:before{
    width: 2.2rem;
    height: 2.2rem;
  }
  .m-form__radio label:after{
    width: 1.05rem;
    height: 1.05rem;
    top: 0.6rem;
    left: 0.6rem;
  }
  .m-form__radio .wpcf7-list-item{
    display: block;
    padding: 0.5rem 0;
    margin-left: 0;
  }
  .m-form__radio .wpcf7-list-item:first-child{
    padding-top: 0;
  }
  .m-form__radio .wpcf7-list-item:last-child{
    padding-bottom: 0;
  }
  .m-form__addressNote{
    padding: 2.4rem 0;
    margin: 1rem 0 3rem 0;
    font-size: 1.2rem;
  }
  .button-spBack,
  .service-back{
    position: fixed;
    left: 1.2rem;
    bottom: 1.2rem;
    z-index: 99;
  }
  .button-spBack[data-sp-back-trigger]{

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }
  .button-spBack[data-sp-back-trigger].is-show{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .button-spBack__item,
  .service-back__buttonItem{
    width: fit-content;
    background-color: #042C63;
    border-radius: 8rem;
    color: #fff;
    font-size: 1.2rem;
    padding: 1rem 2.4rem;
    display: block;
    text-decoration: none;
  }
}


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

完了・404

==================================================*/
.finish-title{
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .04em;
  text-align: center;
}
.finish-text{
  letter-spacing: .03em;
  text-align: center;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .finish-content{
    margin: 14rem 0 16rem 0;
  }
  .finish-title{
    font-size: 4rem;
    margin-bottom: 4rem;
  }
  .finish-text{
    font-size: 1.4rem;
    margin-bottom: 4rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .finish-content{
    margin: 8rem 0 10rem 0;
  }
  .finish-title{
    font-size: 2.6rem;
    margin-bottom: 2rem;
  }
  .finish-text{
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }
}

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

企業情報

==================================================*/
/* 代表挨拶
--------------------------------------------------*/
.company-greeting__item:last-child{
  margin-bottom: 0;
}
.company-greeting__name{
  font-family: var(--font-serif);
  line-height: 1.5;
}
.company-greeting__name01{
  color: #59636b;
  letter-spacing: .04em;
}
.company-greeting__name02{
  font-weight: 500;
}
.company-greeting__name02 span{
  color: #052758;
  font-family: var(--font-sans-serif);
  letter-spacing: .04em;
  vertical-align: middle;
  position: relative;
}
.company-greeting__image img{
  width: 100%;
}
.company-greeting__text01{
  color: #59636b;
  letter-spacing: .04em;
  position: relative;
}
.company-greeting__text01:after{
  background-color: #cfd6de;
  content: "";
  height: 1px;
  position: absolute;
  inset:0;
  margin: auto 0;
}
.company-greeting__text01 span{
  background-color: #F7F7F7;
  position: relative;
  z-index: 2;
}
.company-greeting__text02{
  letter-spacing: .03em;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .company-greeting{
     margin-bottom: 11.2rem; 
  }
  .company-greeting .m-title02{
     margin-bottom: 9rem; 
  }
  .company-greeting__item{
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 9rem;
  }
  .company-greeting__name{
    position: absolute;
    left: 33.3%;
    top: 0;
  }
  .company-greeting__name01{
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
  .company-greeting__name02{
    font-size: 3.2rem;
  }
  .company-greeting__name02 span{
    font-size: 1.4rem;
    margin-left: 1.6rem;
    top: -0.4rem;
  }
  .company-greeting__image{
    width: 25%;
  }
  .company-greeting__texts{
    width: 66.7%;
    display: flex;
    justify-content: space-between;
    margin-top: 13rem;
  }
  .company-greeting__textLeft{
    width: 37.5%;
  }
  .company-greeting__textRight{
    width: 56.25%;
  }
  .company-greeting__text01{
    font-size: 1.4rem;
    margin-bottom: 2.4rem;
  }
  .company-greeting__text01 span{
    padding-right: 1rem;
  }
  .company-greeting__text02{
    font-size: 1.4rem;
    line-height: 2.2;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .company-greeting{
     margin-bottom: 8rem; 
  }
  .company-greeting .m-title02{
     margin-bottom: 4rem; 
  }
  .company-greeting__item{
    margin-bottom: 9rem;
  }
  .company-greeting__name{
    width: 100%;
    margin-top: 4rem;
  }
  .company-greeting__name01{
    font-size: 1.4rem;
    margin-bottom: 1.3rem;
  }
  .company-greeting__name02{
    font-size: 2.8rem;
    white-space: nowrap;
  }
  .company-greeting__name02 span{
    font-size: 1.2rem;
    margin-left: 1.6rem;
    top: -0.5rem;
  }
  .company-greeting__image{
    width: 18rem;
  }
  .company-greeting__texts{
    margin-top: 5.4rem;
  }
  .company-greeting__textLeft{
    margin-bottom: 4.5rem;
  }
  .company-greeting__text01{
    font-size: 1.6rem;
    line-height: ;
    margin-bottom: 2.4rem;
  }
  .company-greeting__text01 span{
    padding-right: 1.6rem;
  }
  .company-greeting__text02{
    font-size: 1.6rem;
    line-height: 1.75;
  }
}

/* 経営理念
--------------------------------------------------*/
.company-philosophy{
  background-color: #042C63;
  color: #fff;
}
.company-philosophy .m-title02{
  border-bottom: 1px #466087 solid;
}
.company-philosophy__item{
  line-height: 1.5;
}
.company-philosophy__image img{
  width: 100%;
}
.company-philosophy__text01{
  font-family: var(--font-serif);
  color: #8FC31F;
  font-weight: 500;
  letter-spacing: .04em;
  text-align: center;
}
.company-philosophy__text02{
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: .04em;
  text-align: center;
}
.company-philosophy__text03{
  line-height: 2.2;
  letter-spacing: .03em;
}

/* PC */
@media print,only screen and (min-width: 768px){   
  .company-philosophy{
    margin: 0 calc( 50% - 50vw );
    padding: 13rem 4rem 11.2rem 4rem;
    margin-bottom: 13rem;
  }
  .company-philosophy .m-title02{
    margin: 0 0 6.4rem 0;
  }
  .company-philosophy__inner{
    max-width: 108rem;
    margin: 0 auto;
  }
  .company-philosophy__items{
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  .company-philosophy__items:before{
    content: "";
    position: absolute;
    background-color: #466087;
    width: 1px;
    inset:0;
    margin: auto auto;
    display: block;
  }
  .company-philosophy__item{
    width: 44.1%;
  }
  .company-philosophy__image{
    width: 12.3rem;
    margin:2.7rem auto 5rem auto;
  }
  .company-philosophy__text01{
    font-size: 1.8rem;
    margin-bottom: 2.4rem;
  }
  .company-philosophy__text02{
    font-size: 2.4rem;
    margin-bottom: 3.2rem;
  }
  .company-philosophy__text03{
    font-size: 1.4rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	  
  .company-philosophy{
    padding: 8rem 2rem;
    margin: 0 -2rem 8rem -2rem;
  }
  .company-philosophy .m-title02{
    margin: 0 0 8rem 0;
  }
  .company-philosophy__item{
    margin-bottom: 10.4rem;
  }
  .company-philosophy__item:last-child{
    margin-bottom: 0;
  }
  .company-philosophy__image{
    width: 10.6rem;
    margin:0 auto 3.2rem auto;
  }
  .company-philosophy__text01{
    font-size: 1.8rem;
    margin-bottom: 2.4rem;
  }
  .company-philosophy__text02{
    font-size: 2.2rem;
    line-height: 1.75;
    margin-bottom: 3.2rem;
  }
  .company-philosophy__text03{
    font-size: 1.3rem;
  }
}

/* 行動指針
--------------------------------------------------*/

/* PC */
@media print,only screen and (min-width: 768px){ 
  .company-guideline .m-detailList01{
    margin-bottom: 9rem;
  }
  .company-guideline .m-title02{
    margin-bottom: 3.4rem;
  }
  .company-guideline .m-text15{
    margin-bottom: 4.4rem;
  }
  .company-guideline .m-detailList01__title{
    width: 44%;
  }
  .company-guideline .m-detailList01__text{
    width: 49%;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .company-guideline .m-detailList01{
    margin-bottom: 8rem;
  }
  .company-guideline .m-title02{
    margin-bottom: 3.2rem;
  }
  .company-guideline .m-text15{
    margin-bottom: 4.4rem;
  }
}

/* 会社概要
--------------------------------------------------*/
.company-about{
  background-color: #eaecef;
}
.company-table{
  width: 100%;
}
.company-table th{
  color: #59636b;
  font-weight: 500;
}
.company-table td div{
  margin-left: 1em;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .company-about{
    margin: 0 calc( 50% - 50vw ) 9rem calc( 50% - 50vw );
    padding: 12.6rem 4rem 11.2rem 4rem;
  }
  .company-about .m-title02{
    margin: 0 0 4rem 0;
  }
  .company-about__inner{
    max-width: 108rem;
    margin: 0 auto;
  }
  .company-table th,
  .company-table td{
    padding: 2.4rem 2.4rem 2.4rem 0;
    font-size: 1.4rem;
    line-height: 2;
    vertical-align: top;
    border-bottom: 1px #c5ced8 solid;
  }
  .company-table th{
    width: 20rem;
    box-sizing: border-box;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .company-about{
    margin: 0 -2rem 8rem -2rem;
    padding: 7rem 2rem;
  }
  .company-about .m-title02{
    margin: 0 0 3.6rem 0;
  }
  .company-table th,
  .company-table td{
    padding: 1.8rem 0;
    font-size: 1.6rem;
    display: block;
    font-size: 1.25rem;
  }
  .company-table th{
    width: 20rem;
    box-sizing: border-box;
    padding-bottom: 0;
  }
  .company-table td{
    padding-top: 0;
    border-bottom: 1px #c5ced8 solid;
  }
}

/* アクセス
--------------------------------------------------*/
.company-access__table{
  width: 100%;
}
.company-access__table th,
.company-access__table td{
  line-height: 1.75;
  vertical-align: top;
}
.company-access__table th{
  color: #59636b;
}
.company-access__map:last-child{
  margin-bottom: 0;
}
.company-access .slick-prev{
  background-image: url("../images/shared/prev-black.svg");
  left: 0;
}
.company-access .slick-next{
  background-image: url("../images/shared/next-black.svg");
  right: 0;
}
.company-access .slick-arrow{
  background-color: #eaecef;
  text-indent: -9999px;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  cursor: pointer;
}
.slick-dots{
  width: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  text-indent: -9999px;
}
.slick-dots li{
  width: 0.8rem;
  height: 0.8rem;
  background-color: #D4D8DF;
  margin: 0 0.4rem;
  border-radius: 50%;
  cursor: pointer;
}
.slick-dots li.slick-active{
  background-color: #042C63;
}
.company-access__slide img{
  width: 100%;
  object-fit: cover;
  aspect-ratio: 9 / 6;
}
.company-access__item .m-list01{
  margin-bottom: 0;
}

/* PC */
@media print,only screen and (min-width: 768px){
  .company-access .m-title02{
    margin: 0 0 6.4rem 0;
  }
  .company-access .m-title03{
    margin: 0 0 4rem 0;
  }
  .company-access__item{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 9.6rem;
  }
  .company-access__texts{
    width: 54.17%;
  }
  .company-access__slide{
    width: 41.67%;
  }  
  .company-access__table th,
  .company-access__table td{
    padding: 0.7rem 0;
    font-size: 1.4rem;
  }
  .company-access__table th{
    width: 7.5em;
  }
  .company-access .m-list01__item{
    margin-bottom: 0;
  }
  .company-access__map{
    margin-bottom: 9rem;
  }
  .company-access__map iframe{
    aspect-ratio: 27 / 10;
  }
  .company-access .slick-arrow{
    width: 4.6rem;
    height: 4.6rem;
    background-size: 0.9rem auto;
    bottom: -5.7rem;
    transition: opacity .3s ease;
  }
  .company-access .slick-arrow:hover{
    opacity: 0.7;
  }
  .company-access .slick-dots{
    bottom: -3.8rem;
  }
  .company-access .slick-dots li{
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 0.4rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .company-access{
    margin-bottom: 9.6rem;
  }
  .company-access .m-title02{
    margin: 0 0 4rem 0;
  }
  .company-access .m-title03{
    margin: 0 0 2.5rem 0;
  }
  .company-access__table{
    margin-bottom: 3.2rem;
  }
  .company-access__table th,
  .company-access__table td{
    padding: 0.6rem 0;
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .company-access__table th{
    width: 6.5em;
  }
  .company-access .m-list01{
    margin-bottom: 0;
  }
  .company-access .m-list01__item{
    font-size: 1.6rem;
    line-height: 1.75;
    margin-bottom: 0;
  }
  .company-access__map{
    margin-bottom: 6.4rem;
  }
  .company-access__map iframe{
    aspect-ratio: 31 / 24;
  }
  .company-access__slide{
    margin-bottom: 8.4rem;
  }
  .company-access .slick-arrow{
    width: 4rem;
    height: 4rem;
    background-size: 0.65rem auto;
    bottom: -5.2rem;
  }
  .company-access .slick-dots{
    bottom: -3.6rem;
  }
  .company-access .slick-dots li{
    width: 0.6rem;
    height: 0.6rem;
    margin: 0 0.3rem;
  }
}

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

私たちが選ばれる理由

==================================================*/
.strength-item:last-child{
  margin-bottom: 0;
}
.strength-item__image img{
  width: 100%;
}
.strength-item__title{
  color: #004098;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.3;
  border-bottom: 1px #cfd6de solid;
}
.strength-item__text01{
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: .04em;
}
.strength-item__text02{
  letter-spacing: .03em;
}

/* PC */
@media print,only screen and (min-width: 768px){  
  .strength-content{
    margin-bottom: 16rem;
  }
  .strength-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 9.6rem;
  }
  .strength-item__texts{
    width: 43.71%;
    order: 1;
  }
  .strength-item.-pcimageleft .strength-item__image{
    order: 1;
  }
  .strength-item.-pcimageleft .strength-item__texts{
    order: 2;
  }
  .strength-item__image{
    width: 45.84%;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 2;
  }
  .strength-item:first-child .strength-item__image img{
    max-width: 46rem;
  }
  .strength-item:nth-child(2) .strength-item__image img{
    max-width: 48rem;
  }
  .strength-item__title{
    font-size: 2.4rem;
    padding-bottom: 1.6rem;
    margin-bottom: 3.2rem;
  }
  .strength-item__text01{
    font-size: 2.4rem;
    margin-bottom: 4.8rem;
  }
  .strength-item__text02{
    font-size: 1.4rem;
    line-height: 2.2;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .strength-content{
    margin-bottom: 9.6rem;
  }
  .strength-item{
    margin-bottom: 8rem;
  }
  .strength-item:nth-child(2) .strength-item__image{
    margin-right: -1.6rem;
  }
  .strength-item__title{
    font-size: 1.8rem;
    padding-bottom: 1.6rem;
    margin-bottom: 1.6rem;
  }
  .strength-item__text01{
    font-size: 1.9rem;
    margin-bottom: 2.4rem;
  }
  .strength-item__text02{
    font-size: 1.6rem;
    line-height: 1.75;
    margin-bottom: 4rem;
  }
}

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

採用情報

==================================================*/
/* イントロ
--------------------------------------------------*/
.recruit-intro__text01{
  color: #042C63;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 2;
  letter-spacing: .04em;
}
.recruit-intro__text02{
  letter-spacing: .03em;
}
.recruit-intro__image{
  position: relative;
}
.recruit-intro__image01,
.recruit-intro__image02{
  position: absolute;
}
.recruit-intro__image01 img,
.recruit-intro__image02 img{
  width: 100%;
  object-fit: cover;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .recruit-intro{
    display: flex;
    justify-content: space-between;
    margin-bottom: 11.2rem;
  }
  .recruit-intro__texts{
    width: 45.9%;
  }
  .recruit-intro__image{
    width: 45.9%;
    aspect-ratio: 495 / 481;
  }
  .recruit-intro__image01{
    width: 55.5%;
    top: 0;
    left: 0;
  }
  .recruit-intro__image02{
    width: 55.5%;
    right: 0;
    top: min(8rem,7.4vw);
  }
  .recruit-intro__image01 img,
  .recruit-intro__image02 img{
    aspect-ratio: 267 / 401;
  }
  .recruit-intro__text01{
    font-size: 2.6rem;
    margin-bottom: 3.2rem;
  }
  .recruit-intro__text02{
    font-size: 1.4rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .recruit-intro{
    margin-bottom: 8rem;
  }
  .recruit-intro__texts{
    margin-bottom: 6.4rem;
  }
  .recruit-intro__text01{
    font-size: 1.9rem;
    margin-bottom: 3.2rem;
  }
  .recruit-intro__text02{
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .recruit-intro__image{
    aspect-ratio: 155 / 166;
  }
  .recruit-intro__image01{
    width: 55.5%;
    top: 0;
    left: 0;
  }
  .recruit-intro__image02{
    width: 55.5%;
    right: 0;
    bottom: 0;
  }
  .recruit-intro__image01 img,
  .recruit-intro__image02 img{
    aspect-ratio: 175 / 262;
  }
}

/* 私たちが大切にしていること
--------------------------------------------------*/
.recruit-our{
  background-color: #042C63;
}
.recruit-our__inner{
  color: #fff;
}
.recruit-our__number{
  color: #8FC31F;
  font-family: var(--font-serif);
  line-height: 1.75;
}
.recruit-our__text01{
  font-family: var(--font-serif);
  line-height: 1.75;
  letter-spacing: .04em;
}
.recruit-our__text02{
  color:rgba(255,255,255,0.7);
  letter-spacing: .04em;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .recruit-our{
    padding: 13rem 4rem 11.2rem 4rem;
    margin: 0 calc( 50% - 50vw ) 11.2rem calc( 50% - 50vw );
  }
  .recruit-our .m-title02{
    margin: 0 0 2.4rem 0;
  }
  .recruit-our .m-text15{
    margin-bottom: 6.4rem;
  }
  .recruit-our__inner{
    max-width: 108rem;
    margin: 0 auto;
  }
  .recruit-our__items{
    display: flex;
    justify-content: space-between;
  }
  .recruit-our__item{
    width: 30%;
  }
  .recruit-our__number{
    font-size: 2.8rem;
    margin-bottom: 1.6rem;
  }
  .recruit-our__text01{
    font-size: 2.2rem;
    margin-bottom: 3.2rem;
  }
  .recruit-our__text02{
    font-size: 1.4rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .recruit-our{
    padding: 7rem 2.4rem;
    margin: 0 -2rem 12.5rem -2rem;
  }
  .recruit-our .m-title02{
    margin: 0 0 2.4rem 0;
  }
  .recruit-our .m-text15{
    margin-bottom: 4rem;
  }
  .recruit-our__item{
    margin-bottom: 4rem;
  }
  .recruit-our__item:last-child{
    margin-bottom: 0;
  }
  .recruit-our__number{
    font-size: 2.4rem;
    margin-bottom: 0.4rem;
  }
  .recruit-our__text01{
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }
  .recruit-our__text02{
    font-size: 1.6rem;
    line-height: 1.75;
  }
}

/* キャリアパス
--------------------------------------------------*/
.recruit-career__item{
  display: flex;
  justify-content: flex-end;
  line-height: 1.75;
}
.recruit-career__item:first-child .recruit-career__textLeft{
  background-color: #a3b8d5;
}
.recruit-career__item:first-child .recruit-career__textRight{
  background-color: #afc2da;
}
.recruit-career__item:nth-child(2) .recruit-career__textLeft{
  background-color: #b0c2da;
}
.recruit-career__item:nth-child(2) .recruit-career__textRight{
  background-color: #bbcbdf;
}
.recruit-career__item:nth-child(3) .recruit-career__textLeft{
  background-color: #bfcce0;
}
.recruit-career__item:nth-child(3) .recruit-career__textRight{
  background-color: #c7d3e4;
}
.recruit-career__item:nth-child(4) .recruit-career__textLeft{
  background-color: #ccd7e6;
}
.recruit-career__item:nth-child(4) .recruit-career__textRight{
  background-color: #d3dde9;
}
.recruit-career__item:nth-child(5) .recruit-career__textLeft{
  background-color: #d9e1ea;
}
.recruit-career__item:nth-child(5) .recruit-career__textRight{
  background-color: #dfe6ee;
}
.recruit-career__item:nth-child(6) .recruit-career__textLeft{
  background-color: #e8ebf0;
}
.recruit-career__item:nth-child(6) .recruit-career__textRight{
  background-color: #ebeef2;
}
.recruit-career__textRight{
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.recruit-career__text01{
  width: fit-content;
  font-family: var(--font-serif);
  color: #042C63;
}
.recruit-career__text02{
  letter-spacing: .04em;
}
.recruit-career__text03{
  color: #505c67;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .recruit-career{
    margin-bottom: 12.5rem;  
  }
  .recruit-career .m-title02{
    margin: 0 0 2.4rem 0;
  }
  .recruit-career__items__inner{
    background: url("../images/recruit/arrow.svg") 0 2rem no-repeat;
    background-size: 11.7rem auto;
  }
  .recruit-career__item:first-child{
    margin-left: 40rem;
  }
  .recruit-career__item:nth-child(2){
    margin-left: 32rem;
  }
  .recruit-career__item:nth-child(3){
    margin-left: 24rem;
  }
  .recruit-career__item:nth-child(4){
    margin-left: 16rem;
  }
  .recruit-career__item:nth-child(5){
    margin-left: 8rem;
  }
  .recruit-career__textLeft{
    flex: 1;
    gap:0.5rem 1.6rem;
    padding: 1.5rem 3rem;
  }
  .recruit-career__textRight{
    width: 12rem;
    padding: 1.5rem 1.9rem;
    font-size: 1.1rem;
  }
  .recruit-career__text01{
    font-size: 1.6rem;
    order: 1;
  }
  .recruit-career__text02{
    font-size: 1.1rem;
    order: 3;
    width: 100%;
    letter-spacing: -.01em;
  }
  .recruit-career__text03{
    font-size: 1.1rem;
    margin:0.3rem 0 0.4rem 0;
    order: 2;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .recruit-career{
    margin-bottom: 12.5rem;  
  }
  .recruit-career .m-title02{
    margin: 0 0 2.4rem 0;
  }
  .recruit-career__items{
    margin: 0 0;
  }
  .recruit-career__items__inner{
    display: flex;
    flex-direction: column-reverse;
  }
  .recruit-career__textLeft{
    padding: 1.4rem 2.4rem;
    flex: 1;
  }
  .recruit-career__textRight{
    width: 7.9rem;
    padding: 1.4rem 1.6rem;
    font-size: 1rem;
    box-sizing: border-box;
  }
  .recruit-career__text01{
    font-size: 1.5rem;
    white-space: nowrap;
    margin-bottom: 0.4rem;
  }
  .recruit-career__text02{
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  .recruit-career__text03{
    font-size: 0.9rem;
  }
}

/* 社員インタビュー
--------------------------------------------------*/
.recruit-interview__itemIn{
  background-color: #fff;
  text-decoration: none;
}
.recruit-interview__image img{
  width: 100%;
}
.recruit-interview__text01{
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 2;
  letter-spacing: -0.1em;
}
.recruit-interview__text02-01{
  color: #004098;
  line-height: 1.5;
}
.recruit-interview__text02-02{
  line-height: 1.5;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .recruit-interview{
    margin-bottom: 13rem;  
  }
  .recruit-interview .m-title02{
    margin:0 0 2.4rem 0; 
  }
  .recruit-interview__items{
    display: flex;
    flex-wrap: wrap;
    gap:3.2rem 2.4rem;
  }
  .recruit-interview__item{
    height: 100%;
    width: calc( 50% - 1.2rem );
  }
  .recruit-interview__itemIn{
    display: flex;
    justify-content: space-between;
    transition: opacity .3s ease;
  }
  .recruit-interview__itemIn:hover{
    opacity: 0.7;
  }
  .recruit-interview__image{
    width: 50%;
  }
  .recruit-interview__image img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }
  .recruit-interview__texts{
    width: 50%;
    padding: 3.2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .recruit-interview__text01{
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .recruit-interview__text02-01{
    font-size: 1.1rem;
  }
  .recruit-interview__text02-02{
    font-size: 1.4rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .recruit-interview{
    margin-bottom: 8rem;  
  }
  .recruit-interview .m-title02{
    margin:0 0 2.4rem 0; 
  }
  .recruit-interview__item{
    margin-bottom: 1.6rem;
  }
  .recruit-interview__itemIn{
    position: relative;
    display: block;
  }
  .recruit-interview__item:last-child{
    margin-bottom: 0;
  }
  .recruit-interview__image{
    position: relative;    
  }
  .recruit-interview__image:after{
    content: "";
    position: absolute;
    inset:0;
    background: linear-gradient(180deg, rgba(4, 44, 99, 0) 55.89%, rgba(4, 44, 99, 0.6) 100%), linear-gradient(0deg, rgba(0, 64, 152, 0.1), rgba(0, 64, 152, 0.1));
  }
  .recruit-interview__image img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 310 / 207;
    vertical-align: top;
  }
  .recruit-interview__text02{
    color: #fff;
    position: absolute;
    top: 15.5rem;
    left: 2.5rem;
  }
  .recruit-interview__text01{
    font-size: 1.5rem;
    padding: 1.6rem 2.4rem 2rem 2.4rem;
  }
  .recruit-interview__text02-01{
    color: #fff;
    font-size: 1.1rem;
  }
  .recruit-interview__text02-02{
    font-size: 1.4rem;
  }	
}

/* 社内制度・福利厚生
--------------------------------------------------*/

/* PC */
@media print,only screen and (min-width: 768px){ 
  .recruit-benefits{
    margin-bottom: 13rem;  
  }
  .recruit-benefits .m-blocks{
    margin-bottom: 1.6rem;  
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .recruit-benefits{
    margin-bottom: 8rem;  
  }
  .recruit-benefits .m-blocks{
    margin-bottom: 0.8rem;  
  }
}

/* ギャラリー
--------------------------------------------------*/
.recruit-gallery__caption{
  text-align: center;
  color: #59636b;
  line-height: 2;
  letter-spacing: .04em;
}
.recruit-gallery .slick-prev{
  background-image: url("../images/shared/prev-black.svg");
}
.recruit-gallery .slick-next{
  background-image: url("../images/shared/next-black.svg");
}
.recruit-gallery .slick-arrow{
  background-color: #eaecef;
  text-indent: -9999px;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  cursor: pointer;
}

/* PC */
@media print,only screen and (min-width: 768px){   
  .recruit-gallery{
    margin: 0 calc( 50% - 50vw ) 20.8rem calc( 50% - 50vw );
  }
  .recruit-gallery .m-title02{
    margin: 0 calc(50% - 54rem) 3.2rem calc(50% - 54rem);
  }
  .recruit-gallery__slideItem{
    width: 45rem!important;
    margin: 0 1.6rem;
  }
  .recruit-gallery__caption{
    font-size: 1.3rem;
    margin-top: 0.8rem;
  }
  .recruit-gallery .slick-prev{
    left: calc(50% - 54rem);
  }
  .recruit-gallery .slick-next{
    right: calc(50% - 54rem);
  }
  .recruit-gallery .slick-arrow{
    width: 4.6rem;
    height: 4.6rem;
    background-size: 0.9rem auto;
    bottom: -8rem;
  }
  .recruit-gallery .slick-dots{
    bottom: -5.8rem;
  }
  .recruit-gallery .slick-dots li{
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 0.4rem;
  }
  .recruit-gallery__image img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 540 / 394;
  }

}

/* SP */
@media screen and (max-width: 767px){	  
  .recruit-gallery{
    margin: 0 -2rem 15.2rem -2rem;
  }
  .recruit-gallery .m-title02{
    margin: 0 4rem 3.2rem 4rem;
  }
  .recruit-gallery__slideItem{
    width: 31rem!important;
    margin: 0 0.8rem;
  }
  .recruit-gallery__caption{
    font-size: 1.1rem;
    margin-top: 0.8rem;
  }
  .recruit-gallery .slick-prev{
    left: 4rem;
  }
  .recruit-gallery .slick-next{
    right: 4rem;
  }
  .recruit-gallery .slick-arrow{
    width: 4rem;
    height: 4rem;
    background-size: 0.65rem auto;
    bottom: -7.2rem;
  }
  .recruit-gallery .slick-dots{
    bottom: -5.6rem;
  }
  .recruit-gallery .slick-dots li{
    width: 0.6rem;
    height: 0.6rem;
    margin: 0 0.3rem;
  }
  .recruit-gallery__image img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 155 / 118;
  }
}

/* 募集要項
--------------------------------------------------*/
.recruit-description__tabItem{
  background-color: #eaecef;
  box-sizing: border-box;
  line-height: 1.5;
  letter-spacing: .16em;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.recruit-description__tabItem.-current{
  background-color: #042C63;
  color: #fff;
  font-weight: 500;
  position: relative;
}
.recruit-description__tabItem.-current:after{
	background-color: #042C63;
	content: "";
	clip-path: polygon(100% 50%, 0 0, 0 100%);
	display: block;
	position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: rotate(90deg);
}
.recruit-description__detail{
  background-color: #fff;
  display: none;
}
.recruit-description__detail.-current{
  display: block;
}
.recruit-description__table{
  width: 100%;
}
.recruit-description__table th{
  box-sizing: border-box;
  color: #042C63;
  font-weight: 500;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .recruit-form{
    margin-bottom: 11.2rem;  
  }
  .recruit-description__tab{
    display: flex;
    gap:0 0.8rem;
  }
  .recruit-description__tabItem{
    width: calc( ( 100% / 3 ) - 0.534rem );
    padding: 2.4rem 3.2rem;
    box-sizing: border-box;
    font-size: 1.3rem;
  }
  .recruit-description__tabItem.-current:after{
    width: 1.2rem;
    height: 2.4rem;
    background-color: #042C63;
    content: "";
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    display: block;
    position: absolute;
    bottom: -1.8rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: rotate(90deg);
  }
  .recruit-description__detail{
    padding: 4rem 6.4rem 6.4rem 6.4rem;
  }
  .recruit-description__table th,
  .recruit-description__table td{
    padding: 2.3rem 0;
    font-size: 1.4rem;
    line-height: 2;
    vertical-align: top;
    border-bottom: 1px #d7dde6 solid;
  }
  .recruit-description__table th{
    width: 20rem;
    box-sizing: border-box;
    padding-right: 2.4rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .recruit-form{
    margin-bottom: 8rem;  
  }
  .recruit-description__tab{
    margin-bottom: 3.2rem;
  }
  .recruit-description__tabItem{
    padding: 2.4rem 3.2rem;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  .recruit-description__tabItem:last-child{
    margin-bottom: 0;
  }
  .recruit-description__detail{
    padding: 4rem 2.4rem;
    border-top: 4px #004098 solid;
  }
  .recruit-description__detail .m-title02{
    letter-spacing: 0;
    padding-bottom: 0;
    margin: 0 0 2.4rem 0;
    border-bottom: none;
  }
  .recruit-description__table th,
  .recruit-description__table td{
    font-size: 1.6rem;
    line-height: 1.75;
    display: block;
  }
  .recruit-description__table th{
    padding: 1.6rem 0 0.8rem 0;
  }
  .recruit-description__table td{
    padding-bottom: 1.6rem;
    border-bottom: 1px #d7dde6 solid;
  }
}

/* 詳細タイトル
--------------------------------------------------*/
.recruit-heading{
  background-color: #e0e3e8;
}
.recruit-heading__english{
  font-family: var(--font-serif);
  color: #97a5ba;
  display: block;
}
.recruit-heading__japanese{
  font-family: var(--font-serif);
  color: #042C63;
  line-height: 2;
  font-weight: 500;
  display: block;
}
.recruit-heading__text01{
  font-family: var(--font-serif);
  line-height: 1.5;
  border-bottom: 1px #97a5ba solid;
}
.recruit-heading__text01 span{
  color: #042C63;
  font-family: var(--font-sans-serif);
  display: block;
}
.recruit-heading__text02{
  line-height: 2;
}
.recruit-heading__image{
  position: relative;
}
.recruit-heading__image01{
  position: absolute;
  top: 0;
  left: 0;
}
.recruit-heading__image02{
  position: absolute;
  right: 0;
}
.recruit-heading__image01 img,
.recruit-heading__image02 img{
  width: 100%;
  object-fit: cover;
  aspect-ratio: 12 / 9;
}
.recruit-faq__q{
  color: #042C63;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.66;
  letter-spacing: .02em;
  position: relative;
}
.recruit-faq__q:before{
  height: 1px;
  background-color: #042C63;
  content: "";
  position: absolute;
  left: 0;
}
.recruit-faq__a{
  letter-spacing: .04em;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .recruit-heading{
    padding: 14.1rem 4rem 9.2rem 4rem;
    margin: -13rem calc( 50% - 50vw ) 9.6rem calc( 50% - 50vw );
  }
  .recruit-heading__inner{
    max-width: 108rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .recruit-heading__texts{
    width: 45.84%;
  }
  .recruit-heading__image{
    width: 45.84%;
    aspect-ratio: 99 / 100;
  }
  .recruit-heading__image01,
  .recruit-heading__image02{
    width: 72.7%;
  }
  .recruit-heading__image02{
    top: min(23rem,21.2962vw);
  }
  .recruit-heading__english{
    font-size: 2.2rem;
    margin-bottom: 1.6rem;
  }
  .recruit-heading__japanese{
    font-size: 2.8rem;
    margin-bottom: 3.6rem;
  }
  .recruit-heading__text01{
    font-size: 1.6rem;
    padding-bottom: 2.2rem;
    margin-bottom: 2.4rem;
  }
  .recruit-heading__text01 span{
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .recruit-heading__text02{
    font-size: 1.3rem;
  }
  .recruit-detail{
    max-width: 90rem;
    margin: 0 auto 12.8rem auto;
  }
  .recruit-faq{
    margin-bottom: 12.8rem;
  }
  .recruit-faq__q{
    font-size: 1.8rem;
    padding-left: 5.6rem;
    margin-bottom: 3.2rem;
  }
  .recruit-faq__q:before{
    width: 4rem;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
  .recruit-faq__a{
    font-size: 1.5rem;
    margin-bottom: 6.4rem;
  }
  .recruit-contact{
    margin-top: 11.2rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .recruit-heading{
    margin: -7.5rem 0 4rem 0;
    padding: 10rem 2.4rem 7rem 2.4rem;
  }
  .recruit-heading__texts{
    margin-bottom: 5.6rem;
  }
  .recruit-heading__english{
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }
  .recruit-heading__japanese{
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
  .recruit-heading__text01{
    font-size: 1.6rem;
    padding-bottom: 2rem;
    margin-bottom: 1.6rem;
  }
  .recruit-heading__text01 span{
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .recruit-heading__text02{
    font-size: 1.2rem;
  }
  .recruit-heading__image{
    aspect-ratio: 31 / 32;
  }
  .recruit-heading__image01,
  .recruit-heading__image02{
    width: 77.4%;
  }
  .recruit-heading__image02{
    bottom: 0;
  }
  .recruit-faq{
    margin-bottom: 5.6rem;
  }
  .recruit-faq__q{
    font-size: 1.6rem;
    padding-left: 4.4rem;
    margin-bottom: 2.4rem;
  }
  .recruit-faq__q:before{
    width: 3.2rem;
    top: 1.2rem;
  }
  .recruit-faq__a{
    font-size: 1.4rem;
    margin-bottom: 4rem;
  }
  .recruit-contact{
    margin-top: 8rem;
  }
}

/* この記事を共有する
--------------------------------------------------*/
.m-social{
  border-top: 1px #cfd6de solid;
  border-bottom: 1px #cfd6de solid;
  text-align: center;
}
.m-social__title{
  color: #1d3c69;
  font-family: var(--font-serif);
  line-height: 1.5;
  letter-spacing: .04em;
}
.m-social__list{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.m-social__listItemIn{
  background-color: #fff;
  text-decoration: none;
  letter-spacing: .04em;
  border-radius: 3rem;
  display: block;
}
.m-social__listItemIn img{
  vertical-align: middle;
  position: relative;
}
.-fb .m-social__listItemIn img{
  width: 1.6rem;
}
.-x .m-social__listItemIn img{
  width: 1.4rem;
}
.-line .m-social__listItemIn img{
  width: 1.7rem;
}
.-b .m-social__listItemIn img{
  width: 1.7rem;
}
.-copy .m-social__listItemIn img{
  width: 1.6rem;
}

/* PC */
@media print,only screen and (min-width: 768px){   
  .m-social{
    padding: 4rem 0;
    margin-bottom: 4rem;
  }
  .m-social__title{
    font-size: 1.7rem;
    margin-bottom: 2.4rem;
  }
  .m-social__list{
    gap:0.8rem;
  }
  .m-social__listItemIn{
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    transition: opacity .3s ease;
  }
  .m-social__listItemIn:hover{
    opacity: 0.7;
  }
  .m-social__listItemIn img{
    margin-right: 0.6rem;
    top: -0.1rem;
  }
  .l-entryBody{
    margin-bottom: 12.8rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	 
  .m-social{
    padding: 3.2rem 0;
    margin-bottom: 1.6rem;
  }
  .m-social__title{
    font-size: 1.4rem;
    margin-bottom: 1.6rem;
  }
  .m-social__list{
    flex-wrap: wrap;
    gap:0.4rem;
  }
  .m-social__listItemIn{
    padding: 0.3rem 1.5rem;
    font-size: 1rem;
  }
  .m-social__listItemIn img{
    margin-right: 0.6rem;
    top: -0.1rem;
  }
  .l-entryBody{
    margin-bottom: 6.4rem;
  }
}

/* ページナビ
--------------------------------------------------*/
.m-nextprev{
	position: relative;
}
.m-nextprev a{
  text-decoration: none;
  box-sizing: border-box;
  display: block;
}
.m-nextprev__next{
	text-align: right;
}
.m-nextprev__text01{
  color: #97a5ba;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
}
.m-nextprev__prev .m-nextprev__text01:before,
.m-nextprev__next .m-nextprev__text01:before{
  content: "";
  width: 0.9rem;
  height: 1rem;
  background-image: url("../images/shared/arrow-gray.svg");
  background-size: 100% auto;
  position: absolute;
  display: block;
  top: 0.4em;
}
.m-nextprev__prev .m-nextprev__text01:before{
  transform: rotate(180deg);
}
.m-nextprev__prev .m-nextprev__text01:before{
  left: 0;
}
.m-nextprev__next .m-nextprev__text01:before{
  right: 0;
}
.m-nextprev__text02{
  letter-spacing: .04em;
  overflow: hidden;
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-align: left;
}
.m-nextprev__time{
  color: #97a5ba;
  font-weight: 500;
  line-height: 1.5;
  display: block;
}
li.m-nextprev__list{
	text-align: center;
  position: relative;
}
li.m-nextprev__list a{
  width: 100%;
  color: #021320;
  letter-spacing: .04em;
  text-decoration: underline;
}

/* PC */
@media print,only screen and (min-width: 768px){  
  .m-nextprev{
    height: 10.9rem;
    margin-bottom: 12.8rem;
  }
  .m-nextprev li{
    width:37%;
  }
  .m-nextprev__prev,
  .m-nextprev__next{
    position: absolute;
    top: 0;
  }
  .m-nextprev__prev{
    left: 0;
  }
  .m-nextprev__next{
    right: 0;
  }
  .m-nextprev__item{
    transition: opacity .3s ease;
  }
  .m-nextprev__item:hover{
    opacity: 0.7;
  }
  .m-nextprev__prev .m-nextprev__item{
    padding-right: 16.5%;
  }
  .m-nextprev__next .m-nextprev__item{
    padding-left: 16.5%;
  }
  .m-nextprev__text01{
    font-size: 1.2rem;
  }
  .m-nextprev__prev .m-nextprev__text01{
    padding-left: 2.5rem;
  }
  .m-nextprev__next .m-nextprev__text01{
    padding-right: 2.5rem;
  }
  .m-nextprev__text02{
    font-size: 1.2rem;
    line-height: 2;
    margin: 1.1rem 0;
  }
  .m-nextprev__time{
    font-size: 1.2rem;
  }
  li.m-nextprev__list{
    width:26%;
    height: 10.9rem;
    text-align: center;
    position: relative;
    margin: 0 auto;
    display: flex;
    display: flex;
    align-items: stretch;
  }
  li.m-nextprev__list a{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
  }
  .m-nextprev__list:before,
  .m-nextprev__list:after{
    content: "";
    width: 1px;
    display: block;
    background-color: #cfd6de;
    position: absolute;
    top: 0;
    bottom: 0;
  }
  .m-nextprev__list:before{
    left: 0;
  }
  .m-nextprev__list:after{
    right: 0;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .m-nextprev{
    margin-bottom: 14.4rem;
    display: flex;
  }
  .m-nextprev li{
    width:50%;
  }
  .m-nextprev__prev,
  .m-nextprev__next{
  }
  .m-nextprev__prev{
    border-right: 1px #cfd6de solid;
  }
  .m-nextprev__prev .m-nextprev__item{
    padding-right: 3.2rem;
  }
  .m-nextprev__next .m-nextprev__item{
    padding-left: 3.2rem;
  }
  .m-nextprev__text01{
    font-size: 1.1rem;
  }
  .m-nextprev__prev .m-nextprev__text01{
    padding-left: 1.7rem;
  }
  .m-nextprev__next .m-nextprev__text01{
    padding-right: 1.7rem;
  }
  .m-nextprev__text02{
    font-size: 1.1rem;
    line-height: 1.75;
    margin: 0.8rem 0;
  }
  .m-nextprev__time{
    font-size: 1.1rem;
  }
  li.m-nextprev__list{
    width: 100%;
    position: absolute;
    top: calc( 100% + 1.6rem );
    left: 0;
    right: 0;
    text-align: center;
    border-top: 1px #cfd6de solid;
    border-bottom: 1px #cfd6de solid;
  }
  li.m-nextprev__list a{
    font-size: 1.1rem;
    padding: 2rem;
  }
}

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

支援事例

==================================================*/
.screen-reader-text{
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus{
  background-color: #f1f1f1;
  clip: auto !important;
  clip-path: none;
  color: #021320;
  display: block;
  font-size: 1.4rem;
  height: auto;
  left: 0.5rem;
  line-height: normal;
  padding: 1.5rem 2.3rem 1.4rem 1.4rem;
  text-decoration: none;
  top: 0.5rem;
  width: auto;
  z-index: 100000;
}
.case-category__listIn a{
  color: inherit;
  display: block;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
}
.case-archive__empty{
  color: #59636b;
  line-height: 1.75;
  text-align: center;
  width: 100%;
}
.case-archive__loading{
  color: #59636b;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 2.4rem;
  text-align: center;
  width: 100%;
}
.case-archive__sentinel{
  height: 1px;
  width: 100%;
}
.case-category__title{
  position: relative;
}
.case-category__title span{
  background-color: #f7f7f7;
  position: relative;
  z-index: 3;
}
.case-category__list{
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.case-category__listIn{
  overflow: hidden;
  border: 1px #a4b1c4 solid;
  border-radius: 1.5rem;
  line-height: 1;
  letter-spacing: 0;
  padding: 0;
}
.case-category__listIn.-current{
  background-color: #cfd6de;
}
.case-items{
  display: flex;
  flex-wrap: wrap;
}
.case-itemIn{
  position: relative;
  box-sizing: border-box;
  display: block;
  text-decoration: none;
}
.case-item__text01{
  color: #59636b;
  line-height: 1.5;
}
.case-item__text02{
  font-weight: 500;
  line-height: 1.75;
}
.case-item__categoryTag{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.case-item__category{
  display: flex;
  flex-wrap: wrap;
}
.case-item__categoryItem{
  line-height: 1;
  border-radius: 1.5rem;
  border: 1px #ccd3db solid;
}
.case-item__tag{
  display: flex;
  flex-wrap: wrap;
}
.case-item__tagItem{
  color: #004098;
  line-height: 1;
}
.case-item__image img{
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* PC */
@media print,only screen and (min-width: 768px){   
  .case-category{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:0 1.6rem;
    margin-bottom: 8rem;
  }
  .case-category__title{
    font-size: 1.3rem;
    white-space: nowrap;
    flex: 1;
  }
  .case-category__title:after{
    background-color: #a4b1c4;
    content: "";
    height: 1px;
    position: absolute;
    inset:0;
    margin: auto 0;
    display: block;
  }
  .case-category__title span{
    padding-right: 1.6rem;
  }
  .case-category__list{
    gap:0.8rem;
  }
  .case-category__listIn{
    font-size: 1.2rem;
  }
  .case-category__listIn a{
    padding: 0.5rem 1.5rem;
    transition: all .3s ease;
  }
  .case-category__listIn a:hover{
    background-color: #cfd6de;
  }
  .case-items{
    gap:8rem 9rem;
    margin-bottom: 20rem;
  }
  .case-item{
    width: calc( ( 100% / 3 ) - 6rem );
  }
  .case-itemIn{
    position: relative;
    box-sizing: border-box;
    transition: opacity .3s ease;
  }
  .case-itemIn:hover{
    opacity: 0.7;
  }
  .case-itemIn:before{
    background-color: #cfd6de;
    content: "";
    width: 1px;
    position: absolute;
    top: 0;
    bottom: 0;
    left:-4.5rem;
    display: block;
  }
  .case-item:nth-child(3n + 1) .case-itemIn:before{
    content: none;
  }
  .case-item__image{
    margin-bottom: 2.4rem;
  }
  .case-item__text01{
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  .case-item__text02{
    font-size: 1.8rem;
    margin-bottom: 2.4rem;
  }
  .case-item__categoryTag{
    gap:0.8rem 1.6rem;
  }
  .case-item__category{
    gap:0.5rem 0.8rem;
  }
  .case-item__categoryItem{
    font-size: 1.2rem;
    padding: 0.5rem 1.3rem;
  }
  .case-item__tag{
    gap:0.5rem 0.8rem;
  }
  .case-item__tagItem{
    font-size: 1.2rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	   
  .case-category{
    margin-bottom: 4rem;
  }
  .case-category__title{
    font-size: 1.2rem;
    border-bottom: 1px #a4b1c4 solid;
    padding-bottom: 0.5rem;
    margin-bottom: 1.4rem;
  }
  .case-category__list{
    gap:0.8rem;
    justify-content: flex-start;
  }
  .case-category__listIn{
    font-size: 1.2rem;
  }
  .case-category__listIn a{
    padding: 0.5rem 1.5rem;
  }
  .case-items{
    gap:3.2rem 2.4rem;
    margin:0 -1.6rem 9.6rem -1.6rem;
  }
  .case-item{
    width: calc( ( 100% / 2 ) - 1.2rem );
  }
  .case-item__image{
    margin-bottom: 1.6rem;
  }
  .case-item__text01{
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  .case-item__text02{
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 1.6rem;
  }
  .case-item__categoryTag{
    gap:0.7rem 0.8rem;
  }
  .case-item__category{
    gap:0.5rem 0.4rem;
  }
  .case-item__categoryItem{
    font-size: 1.1rem;
    letter-spacing: 0;
    padding: 0.45rem 0.8rem;
  }
  .case-item__tag{
    gap:0.5rem 0.4rem;
  }
  .case-item__tagItem{
    font-size: 1.1rem;
  }
}

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

支援事例

==================================================*/
.case-detail__main img{
  width: 100%;
}
.case-detail__text01{
  font-family: var(--font-serif);
  color: #042C63;
  letter-spacing: .03em;
  line-height: 1.75;
}
.case-detail__text02{
  letter-spacing: .03em;
  line-height: 2;
}
.case-detail__text03{
  letter-spacing: .02em;
  line-height: 2;
}
.case-detail__image{
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  aspect-ratio: 1 / 1;
}
.case-detail__image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.-person .case-detail__image{
  aspect-ratio: auto;
}
.-person .case-detail__image img{
  object-fit: cover;
}

/* PC */
@media print,only screen and (min-width: 768px){
  .case-detail__main{
    margin-bottom: 4rem;
  }
  .case-detail__item{
    display: flex;
    justify-content: space-between;
    margin-bottom: 6.4rem;
    gap:0 4rem;
  }
  .case-detail__image{
    width: 18rem;
    padding: 1rem;
    box-sizing: border-box;
  }
  .-person .case-detail__image{
    padding: 0;
  }
  .case-detail__texts{
    flex: 1;
  }
  .case-detail__text01{
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
  .case-detail__text02{
    font-size: 1.3rem;
  }
  .case-detail__text03{
    font-size: 1.4rem;
  }
  .case-detail__intro .m-title04{
    margin: 0 0 3.2rem 0;
  } 
}

/* SP */
@media screen and (max-width: 767px){	
  .case-detail__main{
    margin-bottom: 2.4rem;
  }
  .case-detail__item{
    position: relative;
    margin-bottom: 4.4rem;
    display: grid;  
    justify-content: space-between;
    grid-gap:1.6rem 0;
    grid-template-columns:12.8rem 19.8rem;
    grid-auto-rows: auto auto;
  }
  .case-detail__item.-person{
    display:block;
  }
  .case-detail__texts{
    display: contents;
  }  
  .case-detail__image{
    width: 100%;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    padding: 1rem;
  }
  .-person .case-detail__image{
    width: 18rem;
    padding: 0;
    margin-bottom: 1.6rem;
  }
  .case-detail__text01{
    font-size: 1.6rem;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    align-items: center;
    display: flex;
  }
  .case-detail__item:not(:has(.case-detail__image)) .case-detail__text01{
    grid-column: 1 / 3;
  }
  .case-detail__text02{
    font-size: 1.2rem;
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }
  .case-detail__text03{
    font-size: 1.3rem;
  }
  .case-detail__intro .m-title04{
    margin: 0 0 3.2rem 0;
  } 
}

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

支援事例

==================================================*/
/* ページャー
--------------------------------------------------*/
.m-pagenavi{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.m-pagenavi a,
.m-pagenavi span{
  background-color: #eaecef;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  position: relative;
  text-decoration: none;
  transition: all .3s ease;
}
.m-pagenavi .prev{
  background-image: url("../images/shared/prev.svg");
}
.m-pagenavi .next{
  background-image: url("../images/shared/next.svg");
}
.m-pagenavi .prev,
.m-pagenavi .next{
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #eaecef;
  display: block;
  border: none;
  position: absolute;
  top: 0;
}
.seminar-archive .m-pagenavi a{
  background-color: #fff;
}
.m-pagenavi a:hover,
.m-pagenavi .current{
	background-color:#cfd6de;
	text-decoration:none;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-pagenavi{
    margin-top: 6.4rem;
    gap:0 0.8rem;
  }
  .m-pagenavi a,
  .m-pagenavi span{
    width: 4.6rem;
    height: 4.6rem;
  }
  .m-pagenavi .prev{
    left: 0;
  }
  .m-pagenavi .next{
    right: 0;
  }
  .m-pagenavi .prev,
  .m-pagenavi .next{
    background-size: 0.7rem auto;
    width: 4.6rem;
    height: 4.6rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .m-pagenavi{
    margin-top: 4rem;
    gap:0 0.4rem;
  }
  .m-pagenavi a,
  .m-pagenavi span{
    width: 4rem;
    height: 4rem;
  }
  .m-pagenavi .prev{
    left: 2.4rem;
  }
  .m-pagenavi .next{
    right: 2.4rem;
  }
  .seminar-prev .m-pagenavi .prev{
    left: 0;
  }
  .seminar-prev .m-pagenavi .next{
    right: 0;
  }
  .m-pagenavi .prev,
  .m-pagenavi .next{
    background-size: 0.7rem auto;
    width: 4rem;
    height: 4rem;
  }
}

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

セミナー

==================================================*/
/* 記事タイトル
--------------------------------------------------*/
.archive-title{
  font-family: var(--font-serif);
  line-height: 1.5;
  letter-spacing: .04em;
}
.archieve-select{
  position: relative;
  z-index: 3;
}
.archieve-select__title{
  background-color: #F1F1F1;
  line-height: 1.5;
  letter-spacing: .04em;
  border-radius: 8rem;
  border: 1px #a4b1c4 solid;
  cursor: pointer;
  position: relative;
}
.archieve-select__title:after{
  background: url("../images/shared/arrow-select.svg") center center no-repeat;
  background-size: 100% auto;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transition: transform .3s ease;
}
.archieve-select__title.-open:after{
  transform:rotate(180deg);
}
.archieve-select__list{
  background-color: #F1F1F1;
  border-radius: 1.6rem;
  border: 1px #a4b1c4 solid;
  position: absolute;
  left: 0;
  right: 0;
  display: none;
  overflow: hidden;
}
.archieve-select__listItem{
  line-height: 1.75;
  letter-spacing: .04em;
  border-bottom: 1px #a4b1c4 solid;
  cursor: pointer;
  transition: all .3s ease;
}
.archieve-select__listItem a{
  display: block;
  text-decoration: none;
}
.archieve-select__listItem:last-child{
  border-bottom: none;
}
.archieve-select__listItem.-current,
.archieve-select__listItem:hover{
  background-color: #e4e3e3;
}
.archieve-select__button{
  appearance: none;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  display: block;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  padding: 0;
  text-align: left;
  width: 100%;
}
.m-seminar__item[hidden]{
  display: none !important;
}
.m-seminar__empty{
  line-height: 1.75;
  letter-spacing: .04em;
  padding: 2rem 0;
  text-align: center;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .archive-titleSelect{
    display: flex;
    justify-content: space-between;
  }
  .archive-title{
    background: url("../images/shared/title-icon.svg") 0 0.45em no-repeat;
    background-size: 2.4rem auto;
    font-size: 3.2rem;
    padding-left: 4rem;
    margin-bottom: 6.4rem;
  }
  .archieve-select{
    width: 27.8rem;
    position: relative;
  }
  .archieve-select__title{
    font-size: 1.3rem;
    padding: 1.2rem 4rem 1.2rem 2rem;
    transition: all .3s ease;
  }
  .archieve-select__title:hover{
    background-color: #e4e3e3;
  }
  .archieve-select__title:after{
    width: 1.2rem;
    height: 1.2rem;
    right: 1.8rem;
  }
  .archieve-select__list{
    top: 5.4rem;
  }
  .archieve-select__listItem{
    font-size: 1.2rem;
    padding: 0.95rem 2rem;
  }
}

/* SP */
@media screen and (max-width: 767px){ 
  .archive-titleSelect{
    margin-bottom: 4rem;
  }
  .archive-title{
    background: url("../images/shared/title-icon.svg") 0 0.35em no-repeat;
    background-size: 1.8rem auto;
    font-size: 2.2rem;
    padding-left: 3rem;
    margin-bottom: 2.4rem;
  }
  .archieve-select{
    position: relative;
  }
  .archieve-select__title{
    font-size: 1.2rem;
    padding: 0.9rem 4rem 0.9rem 2rem;
  }
  .archieve-select__title:after{
    width: 0.9rem;
    height: 0.9rem;
    right: 1.6rem;
  }
  .archieve-select__list{
    top: 4.4rem;
  }
  .archieve-select__listItem{
    font-size: 1.2rem;
    padding: 0.8rem 2rem;
  }	
}

/* 開催予定のセミナー
--------------------------------------------------*/
/* PC */
@media print,only screen and (min-width: 768px){
  .seminar-next{
    margin: 9rem 0 11.2rem 0;
  }
  .seminar-next .archive-title{
    margin-bottom: 4.8rem;
  }
  .seminar-next .m-seminar__texts{
    padding: 4.8rem;
  }
  .seminar-body{
    margin-bottom: 8rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .seminar-next{
    margin: 8rem 0;
  }
  .seminar-body{
    margin-bottom: 5.6rem;
  }
}

/* アーカイブ配信
--------------------------------------------------*/
.seminar-archive{
  background-color: #eaecef;
}
.seminar-archive__text{
  letter-spacing: .03em;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .seminar-archive{
    padding: 11.2rem 4rem;
    margin: 0 calc( 50% - 50vw ) 11.2rem calc( 50% - 50vw );
  }
  .seminar-archive__inner{
    max-width: 108rem;
    margin: 0 auto;
  }
  .seminar-archive .archive-title{
    margin: 0 0 2.4rem 0;
  }
  .seminar-archive__text{
    font-size: 1.4rem;
    margin-bottom: 4.8rem;
  }
  .seminar-archive .m-archive__items,
  .seminar-prev .m-archive__items{
    gap:2.4rem 4rem;
  }
  .seminar-archive .m-button{
    margin: 9rem auto 0 auto;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .seminar-archive{
    padding: 5rem 2rem;
    margin: 0 -2rem 8rem -2rem;
  }
  .seminar-archive__text{
    font-size: 1.3rem;
    margin-bottom: 4rem;
  }
  .seminar-archive .m-archive__items,
  .seminar-prev .m-archive__items{
    gap:2.4rem 4rem;
  }
  .seminar-archive .m-button{
    margin: 5.6rem auto 0 auto;
  }
}

/* 過去に開催したセミナー
--------------------------------------------------*/
/* PC */
@media print,only screen and (min-width: 768px){ 
  .seminar-prev{
    margin-bottom: 16rem;
  }
  .seminar-prev .m-button{
    margin-top: 9rem;
  }
  .seminar-prev .m-archive__items{
    margin-bottom: 6.4rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .seminar-prev{
    margin-bottom: 9.6rem;
  }
  .seminar-prev .m-button{
    margin-top: 5.6rem;
  }
  .seminar-prev .m-archive__items{
    margin-bottom: 4rem;
  }
}

/* 詳細
--------------------------------------------------*/
.seminarDetail-item{
  line-height: 1.5;
  background-color: #eaecef;
}
.seminarDetail-image{
  position: relative;
}
.seminarDetail-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seminarDetail-icon{
  background-color: #004098;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  line-height: 1.4;
}
.seminarDetail-icon.-closed {
	background-color: #5C646F;
}
.seminarDetail-icon.-past {
	background-color: #021320;
}
.seminarDetail-texts{
  position: relative;
}
.seminarDetail-text02{
  font-family: var(--font-serif);
  font-weight: 500;
}
.seminarDetail-category{
  display: flex;
  flex-wrap: wrap;
  gap:0.5rem 0.5rem;
}
.seminarDetail-categoryIn{
  color: #626262;
  border: 1px solid #DADADA;
}
.seminarDetail-type{
  font-weight: 500;
}
.seminarDetail-detail{
  color: #626262;
}

/* PC */
@media print,only screen and (min-width: 768px){  
  .seminarDetail-item{	
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 6.4rem;
  }
  .seminarDetail-image{
    width: 27rem;
  }
  .seminarDetail-image img{
    width: 100%;
  }
  .seminarDetail-icon{
    font-size: 1.2rem;
    padding: 1rem 2.2rem;
  }
  .seminarDetail-texts{
    flex: 1;
    padding: 6.4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .seminarDetail-text01{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap:0.7rem 0.4rem;
  }
  .seminarDetail-timeType{
    color: #042C63;
    display: flex;
    gap:0 3.2rem;
  }
  .seminarDetail-time{
    font-size: 1.4rem;
    position: relative;
  }
  .seminarDetail-time:after{
    content: "";
    width: 1px;
    background-color: #9dabbf;
    position: absolute;
    top: 0.2rem;
    right: -1.6rem;
    bottom: 0.2rem;
    display: block;
  }
  .seminarDetail-text02{
    font-size: 2.8rem;
    line-height: 1.75;
    margin-bottom: 1.7rem;
  }
  .seminarDetail-text01{
    margin-bottom: 2.4rem;
  }
  .seminarDetail-categoryIn{
    font-size: 1.2rem;
    line-height: 1.5;
    border-radius: 1.5rem;
    padding: 0.3rem 1.6rem;
  }
  .seminarDetail-detail{
    font-size: 1.2rem;
    line-height: 1.7;
  }
  .seminarDetail-type{
    font-size: 1.3rem;
  }
}

/* SP */
@media screen and (max-width: 767px){ 
  .seminarDetail-item{
    margin:0 0 4rem 0;
  }
  .m-seminar__item{
    margin-bottom: 1.6rem;
  }
  .seminarDetail-icon{
    font-size: 1.2rem;
    padding: 0.6rem 2.4rem;
  }
  .seminarDetail-texts{
    padding: 3.2rem 3.2rem 4.8rem 3.2rem;
  }
  .seminarDetail-time{
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0.8rem 0 1.6rem 0;
  }
  .seminarDetail-text01{
    position: relative;
    margin-bottom: 1.6rem;
  }
  .seminarDetail-text02{
    font-size: 2rem;
    line-height: 1.75;
    margin-bottom: 1.2rem;
  }
  .seminarDetail-categoryIn{
    font-size: 1.1rem;
    line-height: 1.2;
    border-radius: 1.5rem;
    padding: 0.3rem 1.2rem;
  }
  .seminarDetail-detail{
    font-size: 1.1rem;
    line-height: 1.7;
  }
  .seminarDetail-type{
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.2rem;
  }
  .seminarDetail-more{
    font-size: 1.2rem;
    margin: -0.4rem 0 1rem 0;
    padding:0.5rem 2.6rem 0.5rem 0.5rem;
  }
}

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

お知らせ

==================================================*/
.news-listItemIn{
  display: block;
  text-decoration: none;
  border-bottom: 1px #cfd6de solid;
}
.news-time{
  color: #59636b;
  line-height: 1;
  letter-spacing: .04em;
}
.news-category{
  color: #59636b;
  line-height: 1;
  border: 1px #cfd6de solid;
  border-radius: 1.5rem;
}
.news-text{
  color: #021320;
  line-height: 1.75;
  display: block;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .news-list{
    margin-bottom: 6.4rem;
  }
  .news-listItemIn{
    padding: 2.3rem 0 2.6rem 0;
    transition: opacity .3s ease;
  }
  .news-listItemIn:hover{
    opacity: 0.7;
  }
  .news-time{
    font-size: 1.3rem;
    margin-right: 1.6rem;
  }
  .news-category{
    font-size: 1.2rem;
    padding: 0.3rem 1.5rem;
  }
  .news-text{
    font-size: 1.5rem;
    margin-top: 0.7rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .news-list{
    margin-bottom: 4rem;
  }
  .news-listItemIn{
    padding: 1.6rem 0;
  }
  .news-time{
    font-size: 1.2rem;
    margin-right: 0.8rem;
  }
  .news-category{
    font-size: 1.1rem;
    padding: 0.1rem 1.2rem;
  }
  .news-text{
    font-size: 1.6rem;
    line-height: 1.75;
    margin-top: 0.8rem;
  }
}

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

用語集

==================================================*/
.glossary-list:last-child{
  margin-bottom: 0;
}
.glossary-list__itemIn{
  background: url("../images/shared/arrow-gray.svg") left 0.7em no-repeat;
  background-size: 0.85rem auto;
  padding: 0.4rem 0 0.4rem 2.5rem;
  font-size: 1.4rem;
  text-decoration: none;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .glossary-list{
    display: flex;
    flex-wrap: wrap;
    gap:2rem 1rem;
    margin-bottom: 8rem;
  }
  .glossary-list__item{
    width: calc( ( 100% / 3 ) - 0.667rem );
  }
  .glossary-list__itemIn{
    transition: opacity .3s ease;
  }
  .glossary-list__itemIn:hover{
    opacity: 0.7;
  }
  .-glossary .entry-content{
    margin-bottom: 16.2rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .glossary-list{
    margin-bottom: 4rem;
  }
  .glossary-list__item{
    margin-bottom: 1rem;
  }
  .glossary-list__item:last-child{
    margin-bottom: 0;
  }
}

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

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

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

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

/* 可変カラム（bright/flex-row）— スタイルは is-style-cols-1 / 2 / 3 */
.wp-block-bright-flex-row.bi-flex-row {
	display: grid;
	gap: 16px;
	align-items: start;
}
.wp-block-bright-flex-row.bi-flex-row.is-style-cols-1 {
	grid-template-columns: 1fr;
}
.wp-block-bright-flex-row.bi-flex-row.is-style-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.wp-block-bright-flex-row.bi-flex-row.is-style-cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.wp-block-bright-flex-column.bi-flex-column {
	min-height: 2em;
	background-color: #e8e8e8;
	padding: 16px;
}

/* コア「カラム」— スタイル「グレー背景の列」 */
.wp-block-columns.is-style-bright-gray-cells > .wp-block-column {
	box-sizing: border-box;
	background-color: #e8e8e8;
	padding: 16px;
}
/* 
.m-form__privacy .wpcf7-list-item-label {
  display: none !important;
} */