@charset "utf-8";

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

BASE

==================================================*/
html {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body {
	color: #222;
	font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
	font-size: 1.6rem;
	-webkit-font-smoothing: antialiased;
/*	font-feature-settings: "palt";*/
	letter-spacing: 0;
}
body.menu-open{
	overflow: hidden;
}
html.menu-open{
	overflow: hidden;
}

img {
  max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
a {
	color: #222;
	text-decoration: none;
	cursor: pointer;
}

.js-charSlideUp span{
  display: inline-block;
}

.js-charSlideUp span{
  opacity: 0;
}

.js-charSlideUp .word{
  margin-right:0.35em;
  opacity: 1;
}


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

全ページ共通

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

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

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

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

ヘッダー

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

/* レイアウト 
--------------------------------------------------*/
.l-header{
	width: 100%;
	position:static;
	top: 0;
	left: 0;
	z-index: 100;
}
.l-header__logo{
  z-index: 10;
}
.l-header__logo a{
  padding: 1rem;
  display: block;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
	.l-header{
    height: 0;
		padding: 0 2.4rem;
	}
	.l-header__logo{
		width: 17.1rem;
		position:fixed;
		top:1.6rem;
		left:1.4rem;
	}
}

/* SP */
@media screen and (max-width: 767px){	 
	.l-header{
    height: 0;
	}
	.l-header a{
    color: #fff;
	}
	.l-header__logo{
		width: 11.6rem;
		position:fixed;
		top:0.5rem;
		left:1rem;
    font-size: 0;
	}
}

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

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

	.nav-global{
		position:fixed;
		top:2.1rem;
    right: 16.6rem;
		display: flex;
		justify-content: flex-end;
    z-index:10;
    mix-blend-mode: difference;
    color: #fff;
	}
	.nav-global>li>a,
	.nav-global>li>span{
		font-size: 1.4rem;
    font-weight: 500;
		padding: 1rem 1.2rem;
    display: block;
    color:inherit;
    opacity: 1;
    transition: all .3s ease;
	 }
	.nav-global>li>a:hover{
    text-decoration: none;
    opacity: 0.5;
	 }
	.nav-globalIn{
    background-color: rgba(000,000,000,0.95);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    padding-top: 8.6rem;
    display: none;
    z-index: 9;
	 }
	.nav-globalInIn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:0 4.4rem;
    /* border-top: 1px #707070 solid; */
    border-top: 1px #2B2B2B solid;
	 }
	.nav-globalIn a{
    color: #fff;
    font-size: 1.3rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:0 6rem;
    padding: 2.2rem 3rem;
	 }
	.nav-globalIn a:hover{
    text-decoration: none;
	 }
	.nav-globalIn__text{
    transition: all .3s ease;
    opacity: 1;
	 }
	a:hover .nav-globalIn__text{
    opacity: 0.5;
	 }
	.nav-globalIn__icon{
    width: 8.3rem;
    height: 8.3rem;
    overflow: hidden;
	 }
	.nav-globalIn li:first-child .nav-globalIn__icon:after{
    background-image: url("../images/shared/nav-picture01.jpg");
	 }
	.nav-globalIn li:nth-child(2) .nav-globalIn__icon:after{
    background-image: url("../images/shared/nav-picture02.jpg");
	 }
	.nav-globalIn li:nth-child(3) .nav-globalIn__icon:after{
    background-image: url("../images/shared/nav-picture03.jpg");
	 }
	.nav-globalIn .nav-globalIn__icon:after{
    width: 8.3rem;
    height: 8.3rem;
    content: "";
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    display: block;
    transform: scale(1);
    transition: all .3s ease;
	 }
	.nav-globalIn a:hover .nav-globalIn__icon:after{
    transform: scale(1.1);
    opacity: 1;
	 }
}
@media (min-width: 768px) and (max-width: 1038px) {
	.nav-globalInIn{
    gap:0 5vw;
	 }
	.nav-globalIn a{
    gap:0 2vw;
    padding: 2.2rem 0.5rem;
	 }
}

/* SP */
@media screen and (max-width: 767px){		
	.nav-global li,
  .nav-global>li>span{
    border-bottom: 1px #383838 solid;
	}
	.nav-global a,
  .nav-global>li>span{
    color: #fff;
    min-height: 6rem;
		font-size: 1.3rem;
    line-height: 1.692;
		padding: 1rem 3rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    cursor: pointer;
	}
	.nav-global>li>ul>li>a{
    position: relative;
    padding-left: 4.3rem;
	}
	.nav-global>li>ul>li>a:before{
    content: "-";
    position: absolute;
    top: 1.8rem;
    left: 3rem;
	}
	.nav-global>li>ul>li:first-child>a:before{
    top: 0.9rem;
	}
	.nav-global>li>ul>li:last-child{
    border-bottom: none;
	}
}

/* ヘッダーナビ
--------------------------------------------------*/

/* PC */
@media print,only screen and (min-width: 768px){ 
	.nav-contact{
		position:fixed;
		top:2.4rem;
		right:2.4rem;
    z-index:10;
	}
	.nav-contact a{
    background-color: #817754;
		color: #fff;
		font-size: 1.4rem;
    font-weight: 500;
    padding: 0.8rem 1.6rem;
    display: block;
    transition: all .3s ease;
    border-radius: 0.3rem;
	}
	.nav-contact a:hover{
    background-color: #414353;
    text-decoration: none;
	}
}

/* SP */
@media screen and (max-width: 767px){	
	.nav-contact{
    border-bottom: 1px #383838 solid;
	}
  .nav-contact a{
    min-height: 6rem;
		font-size: 1.3rem;
    line-height: 1.692;
		padding: 1rem 3rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
}

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

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

/* SP */
@media screen and (max-width: 767px){	
	.l-header__menus{
    background-color: #222;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
    width: 17.7rem;
		height: 100vh;
    padding: 8rem 0 4rem 0;
    position: fixed;
    right: 0;
    bottom: 0;
    top: 0;
    z-index:99;
    transition: transform .3s ease, opacity .3s ease;
    transform: translateX(100%);
    opacity: 0;
	}

  .menu-open .l-header__menus{
      transform: translateX(0);
      opacity: 1;
  }

	.m-hamburger{
		width: 7rem;
		height: 4.1rem;
		position: fixed;
		top: 0;
		right: 0;
		cursor: pointer;
		z-index: 100;
    mix-blend-mode: difference;
    color: #fff;
	}
	.m-hamburger__lines{
		height: 80%;
		width:52%;
		margin: 4% auto 0 auto;
		position: relative;
	}
	.m-hamburger__lines>div{
		/* background-color: #222; */
    background-color: #fff;
		width:100%;
		height:4%;
		transition: transform .3s ease, opacity .3s ease;
		position: absolute;
		left:0;
		top:50%;
	}
	.m-hamburger__lines>div:first-child{
		transform: translateY(-240%);
	}
	.m-hamburger__lines>div:last-child{
		transform: translateY(240%);
	}
	.menu-open .m-hamburger{
		top: 0.5rem;
	}
	.menu-open .m-hamburger__lines>div{
		background-color: #fff;
	}
	.menu-open .m-hamburger__lines>div:first-child{
		transform: rotate(225deg);
	}
	.menu-open .m-hamburger__lines>div:last-child{
		transform: rotate(-225deg);
	}
}

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

フッター

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

footer{
  position: relative;
  z-index:3;
}

/* フッター1
--------------------------------------------------*/
.nav-bottom{
  display: flex;
  justify-content: space-between;
  transform-origin: center bottom;
}
.nav-bottom li{
  width: 50%;
}
.nav-bottom a{
  color: #D4D6DD;
  display: block;
  position: relative;
}
.nav-bottom li:last-child a{
  background: none;
  background-color: rgba(0,0,0,0.8);
}
.nav-bottom__icon{
  position: absolute;
}
.nav-bottom__icon:before,
.nav-bottom__icon:after{
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.nav-bottom__icon:before{
  background-color: rgba(255,255,255,0.1);
}
.nav-bottom__icon:after{
  background-color: rgba(255,255,255,1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.nav-bottom__english{
  font-family: "EB Garamond";
  letter-spacing: .04em;
  display: block;
}
.nav-bottom__japanese{
  display: block;
}


footer{
  position: relative;
  z-index:5;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .nav-bottom a{
    padding: 7.2rem 8rem;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 2;
  }
  .nav-bottom li:first-child a:before{
    content: "";
    background: url("../images/shared/footer-bg01.png") center center no-repeat;
    background-size: cover;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: all .3s ease;
    transform: scale(1);
    z-index: -1;
  }
  .nav-bottom__icon{
    width: 6.4rem;
    height: 6.4rem;
    right: 5.6rem;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
  .nav-bottom__icon:before,
  .nav-bottom__icon:after{
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto auto;
    transition: all .3s ease;
    aspect-ratio: 1 / 1;
  }
  .nav-bottom__icon:before{
    width: 4rem;
    height: 4rem;
  }
  .nav-bottom__icon:after{
    width: 0.6rem;
    height: 0.6rem;
  }
  .nav-bottom__english{
    font-size: 2.8rem;
  }
  .nav-bottom__japanese{
    font-size: 1.2rem;
    line-height: 1.2;
  }
  .nav-bottom a:hover{
    text-decoration: none;
  }
  .nav-bottom li:first-child a:hover:before{
    transform: scale(1.1);
  }
  .nav-bottom a:hover .nav-bottom__icon:before{
    width: 6.4rem;
    height: 6.4rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .nav-bottom a{
    text-align: center;
    padding: 3.6rem 1rem 5.8rem 1rem;
  }
  .nav-bottom li:first-child a{
    background: url("../images/shared/footer-bg01-sp.png") center center no-repeat;
    background-size: cover;
  }
  .nav-bottom__icon{
    width: 2.4rem;
    height: 2.4rem;
    right: 0;
    left: 0;
    bottom: 1.6rem;
    margin: 0 auto;
  }
  .nav-bottom__icon:before,
  .nav-bottom__icon:after{
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
  .nav-bottom__icon:before{
    width: 2.4rem;
    height: 2.4rem;
  }
  .nav-bottom__icon:after{
    width: 0.4rem;
    height: 0.4rem;
    right: 0.9rem;
  }
  .nav-bottom__english{
    font-size: 2.2rem;
  }
  .nav-bottom__japanese{
    font-size: 1rem;
    line-height: 1.2;
  }
}

/* フッター2
--------------------------------------------------*/
.l-footer02{
  background-color: #222;
}
.nav-footer a,
.nav-footer span{
  color: #8C8E9A;
  font-size: 1.3rem;
  display: block;
}
.l-footer__address{
  color: #8C8E9A;
  font-size: 1.3rem;
  line-height: 1.692;
}
.l-footer__logo a{
  padding: 1rem 1rem 1rem 0;
  display: block;
}
.nav-footerIn li a{
  position: relative;
}
.nav-footerIn li a:before{
  content: "-";
  position: absolute;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .l-footer02{
    padding:27rem 8rem 8.3rem 8rem;
    display: flex;
    justify-content: space-between;
  }
  .l-footer__detail{
    width: 30%;
    margin-top: -1rem;
  }
  .l-footer__navs{
    width: 68%;
    margin-top: 2rem;
  }
  .l-footer__navsIn{
    width: fit-contet;
    display: flex;
    justify-content: flex-end;
  }
  .nav-footer{
    width: fit-contet;
    padding: 0 8.8rem;
    padding: 0 min(8.8rem,5.6vw);
    border-left: 1px #383838 solid;
    border-right: 1px #383838 solid;
  }
  .nav-footer:first-child{
    border-right: none;
  }
  .nav-footer a,
  .nav-footer span{
    padding: 0.8rem 0;
    transition: all .3s ease;
    opacity: 1;
  }
  .nav-footerIn li a{
    padding-left: 1em;
  }
  .nav-footerIn li a:before{
    top: 0.4em;
    left: 0;
  }
  .nav-footer a:hover{
    opacity: 0.5;
    text-decoration: none;
  }
  .l-footer__logo{
    width: 16.1rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1195px) {
}

/* SP */
@media screen and (max-width: 767px){
  .l-footer02{
    padding:3.7rem 3rem 0 3rem;
  }
  .l-footer__detail{
    margin-bottom: 4rem;
  }
  .l-footer__navs{
    margin: 0 -3rem;
  }
  .l-footer__navsIn{
    display: flex;
    justify-content: space-between;
  }
  .nav-footer{
    width: 50%;
    border-bottom: 1px #383838 solid;
  }
  .nav-footer:first-child li:last-child{
    border-bottom: 1px #383838 solid;
  }
  .nav-footer:last-child li:last-child{
  }
  .nav-footer li{
    border-top: 1px #383838 solid;
  }
  .nav-footer:last-child{
    border-left: 1px #383838 solid;
  }
  .nav-footer a,
  .nav-footer span{
    height: 6.3rem;
    box-sizing: border-box;
    padding: 2.3rem 3rem;
    display: flex;
    align-items: center;
  }
  .nav-footerIn li a{
    padding-left: 4rem;
  }
  .nav-footerIn li a:before{
    top: 2rem;
    left: 3rem;
  }
  .nav-footerIn li:first-child a:before{
    top: 1.1rem;
  }
  .l-footer__logo{
    width: 16.1rem;
    margin-bottom: 1rem;
  }
}

/* フッター3
--------------------------------------------------*/
.l-footer03{
  background-color: #222;
  color: #8C8E9A;
  border-top: 1px #383838 solid;
  display: flex;
  justify-content: space-between;
}	
.l-footer__copy{
  font-family: "EB Garamond";
}
.l-footer__link a{
  color: #8C8E9A;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .l-footer03{
    padding: 2.4rem 8rem;
  }	
  .l-footer__copy{
    font-size: 1.4rem;
  }
  .l-footer__link{
    font-size: 1.2rem;  
  }
  .l-footer__link a{
    text-decoration: none;
    opacity: 1;
    transition: all .3s ease;
  }
  .l-footer__link a:hover{
    opacity: 0.5;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .l-footer03{
    padding: 1.7rem 3rem;
    font-size: 1rem;
  }	
}

/* ページトップ
--------------------------------------------------*/
.l-footer__pagetop{
  /* color: #191919; */
  color: #fff;
  mix-blend-mode: difference;
  font-size: 1.2rem;
  font-family: "EB Garamond";
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  position: fixed;
  right: 0;
  bottom: 2.3rem;
  z-index: 98;
  cursor: pointer;
  padding: 3.8rem 1rem 0 1rem;
}
.l-footer__pagetop:before{
  /* background-color: #8a8a8a; */
  background-color: #fff;
  content: "";
  height: 3.2rem;
  width: 1px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
}
    
/* PC */
@media print,only screen and (min-width: 768px){ 
}

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

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

セカンド共通

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

/* レイアウト
--------------------------------------------------*/
.l-content{
	line-height: 1.7;
}

/* PC */
@media print,only screen and (min-width: 768px){	
	.l-content{
		max-width: 100rem;
		font-size: 1.6rem;
		padding: 0 3rem;
		margin: 0 auto 20rem auto;		
    box-sizing: content-box;
	}
	.l-container{
		max-width: 100rem;
		font-size: 1.6rem;
		display: flex;
		justify-content: space-between;
		padding: 0 3rem;	
		margin: 0 auto 9rem auto;		
    box-sizing: content-box;
	}
	.l-container .l-sidebar{
		width: 27rem;		
	}
	.l-container .l-main{
		width: 78rem;
	}	
}

/* SP */
@media screen and (max-width: 767px){
	.l-content{
    padding: 0 2rem 6.5rem 2rem;
		font-size: 1.6rem;
	}
	.l-container{
		font-size: 1.6rem;
	}
}

/* ページタイトル
--------------------------------------------------*/
.m-pageTitle{
  text-align: center;
}
.m-pageTitle__english{
  color: #8C8E9A;
  font-family: "EB Garamond";
  letter-spacing: 0.04em;
  display: block;
}
.m-pageTitle__japanese{
  font-family: "Noto Serif JP";
  display: block;
}

.m-pageTitle__english span:not(.word),
.m-pageTitle__japanese span:not(.word){
  opacity:0;
}

/* .m-pageTitle__japanese{
  opacity:0;
  transform: translateY(30%);
  transition: transform .6s ease-out, opacity .6s ease-out;
}
.initial .m-pageTitle__japanese{
  opacity:1;
  transform: translateY(0%);
}

.m-pageTitle__english{
  opacity:0;
  transform: translateY(30%);
  transition: transform .6s ease-out, opacity .6s ease-out;
}

.initial .m-pageTitle__english{
  opacity:1;
  transform: translateY(0%);
} */

/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-pageTitle{
    padding:25rem 0 16.5rem 0;
  }
  .m-pageTitle.-prev{
    background: url("../images/shared/title-bg.jpg") center top no-repeat;
    background-size: cover;
  }
  .m-pageTitle__english{
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
  }
  .m-pageTitle__japanese{
    font-size: 4.2rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .m-pageTitle{
    padding:16.1rem 3rem;
  }
  .m-pageTitle.-prev{
    background: url("../images/shared/title-bg-sp.jpg") center top no-repeat;
    background-size: cover;
    padding:16.1rem 3rem 8rem 3rem;
  }
  .m-pageTitle h1{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .m-pageTitle__english{
    font-size: 1.4rem;
    margin-top: 1.4rem;
    order: 2;
  }
  .m-pageTitle__japanese{
    font-size: 2.4rem;
    line-height: 1.583;
    order: 1;
  }
}



/* 見出し1
--------------------------------------------------*/
.m-heading{
	font-size: 2rem;
	font-weight: bold;	
}
/* PC */
@media print,only screen and (min-width: 768px){ 
}

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

/* ぱんくず
--------------------------------------------------*/
.m-bread{
	padding: 0 3rem;
  margin-top: 5rem;
  position: absolute;
}
.m-bread ol{
	display: flex;
	justify-content: flex-start;
}
.m-bread a{
    display: block;
	background: url("../images/shared/arrow-bread.svg") right center no-repeat;
}

/* PC */
@media print,only screen and (min-width: 768px){	
	.m-bread{
    top: 5rem;
    left: 5rem; 
	}
	.m-bread li{
		font-size: 1.3rem;
	}
	.m-bread a{
		background-size: 0.3rem auto;
		padding-right: 1.5rem;
    margin-right: 1rem;
	}
}
@media (min-width: 768px) and (max-width: 1200px) {	
	.m-bread{
    left: 0; 
	}
}

/* SP */
@media screen and (max-width: 767px){	
	.m-bread{
    top: 0;
    left: -1rem; 
    display: none;
	}
	.m-bread li{
		font-size: 1.2rem;
	}
	.m-bread a{
		background-size: 0.3rem auto;
		padding-right: 1.5rem;
    margin-right: 1rem;
	}
}

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

トップページ

==================================================*/
/* メイン
--------------------------------------------------*/
 .home-cover{
  /* position: fixed;
  inset: 0;
  margin: auto; */
  text-align: center;
  /* transform: rotateY(30deg); */
  /* z-index:1; */
  /* height:1000px;
  width:1000px; */

  /* height: 100vh;
  width: 100vw;
  pointer-events: none; */
  /* opacity: 0; */
}
.home-cover__bg{
  transform: perspective(800px);
  position: fixed;
  inset: 0;
  margin: auto;
  z-index: 4;
  pointer-events: none;
}

.m-bgLines{
  z-index:-1;
  position: fixed;
  inset: 0;
  margin: auto;
}

.m-bgLines__lines{
  opacity:0;
  transition: opacity 5s ease;
}

.m-bgLines.showLines .m-bgLines__lines{
  opacity:1;
}

.home-cover__pic{
  position: absolute;
  inset: 0;
  margin: auto;
  z-index:1;
  opacity:0;
  pointer-events: none;
}

.home-cover__pic img{
  object-fit: cover;
  height:100%;
  width:100%;
}


.home-cover__pic:after{
  position: absolute;
  inset: 0;
  margin: 0;
  content: '';
  display: block;
  background-color:#000;
  opacity: 0.3;
  mix-blend-mode: multiply;
}


.home-cover__texts{
  height: fit-content;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto;
  z-index: 200;
}

.loaded-animation-end .home-cover__texts{
  z-index: 5;
}



.home-cover__texts path{
  transition: fill .3s ease;
}

.home-cover__texts{
  transition: color .3s ease;
}

body:not(.loaded) .home-cover__texts path{
  fill:#fff;
}

body:not(.loaded) .home-cover__texts{
  color:#fff;
}



.home-cover__text01{
  margin: 0 auto 4.5rem auto;
  opacity:0;
  transform: translateY(30%);
  transition: transform .6s ease-out, opacity .6s ease-out;
}
.initial .home-cover__text01{
  opacity:1;
  transform: translateY(0%);
}

.home-cover__text02{
  opacity:0;
  transform: translateY(30%);
  transition: transform .6s ease-out, opacity .6s ease-out;
}
.initial .home-cover__text02{
  opacity:1;
  transform: translateY(0%);
}

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

		/* height: 76.8rem; */
	}
  .home-cover__bg,
  .m-bgLines{
    background: #fff url("../images/home/main.png") 0 0 no-repeat;
    background-size: cover;
  }

  .home-cover__texts{
    max-width: 81.5rem;
    top: 5.6rem;
  }
  .home-cover__text01{
    margin: 0 auto 4.5rem auto;
  }
  .home-cover__text02{
    font-size: 1.8rem;
    letter-spacing: .08em;
  }
}

/* SP */
@media screen and (max-width: 767px){	
	.home-cover {
    /* background: #fff url("../images/home/main-sp.png") 0 0 no-repeat;
    background-size: cover; */
    /* height: 66.7rem; */
	}
  .home-cover__bg,
  .m-bgLines{
    background: #fff url("../images/home/main-sp.png") 0 0 no-repeat;
    background-size: cover;
  }
  .home-cover__texts{
    top: 3rem;
  }
  .home-cover__text01{
    margin: 0 auto 1.5rem auto;
  }
  .home-cover__text01 svg{
    width: 32rem;
  }
  .home-cover__text02{
    font-size: 1rem;
    letter-spacing: .08em;
  }
}

/* FV
--------------------------------------------------*/
.home-fv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 199;
  perspective: 1000px;
  /* background: black; */
  /* perspective:1px; */
    perspective:800px;
    pointer-events: none;
}

.home-fv__in {
  width: 100%;
  height: 100%;
}

.home-fv__in:after {
  position: absolute;
  left:0;
  top:0;
  right:0;
  bottom:0;
  content: '';
  background-color: #000;
  mix-blend-mode: darken;
  opacity: 0.92;
  /* background: black; */

}

.home-fv__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



/* Exit animation class */
body.loaded .home-fv .home-fv__in{
  animation: rotateOut 0.5s ease-in forwards;

}

@keyframes rotateOut {
  0% {
    transform: none;
    /* opacity: 1; */
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: rotateZ(-120deg) rotateX(90deg) rotateY(75deg) scale(0.5) translateY(0%) translateX(0%);
    opacity: 0;
  }
}
	
/* 見出し
--------------------------------------------------*/
.m-title02{
  font-family: "Noto Serif JP";
  position: relative;
  line-height: 1.5;
}
.m-title02:before{
  content: "";
  background-color: #BCAB63;
  width: 0.2rem;
  display: block;
  position: absolute;
  left: 0;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-title02{
    font-size: 2.6rem;
    padding-left: 1.8rem;
    margin-bottom: 1.4rem;
  }
  .m-title02:before{
    top: 1.1rem;
    bottom: 0.7rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .m-title02{
    font-size: 2rem;
    padding-left: 1.3rem;
    margin-bottom: 1rem;
  }
  .m-title02:before{
    top: 0.8rem;
    bottom: 0.5rem;
  }
}

/* HOME見出し
--------------------------------------------------*/
.m-title{
  margin-bottom: 4rem;
}
.home-about .m-title{
  margin-bottom: 0;
}
.m-title__english{
  color: #8C8E9A;
  font-family: "EB Garamond";
  letter-spacing: .04em;
  display: block;
}
.m-title__japanese{
  color: #fff;
  font-family: "Noto Serif JP";
  display: block;
}
.section-case .m-title__japanese{
  color: #222;
}
.scout-source{
  text-align: center;
  overflow: hidden;
}
.scout-clients .m-title__english,
.scout-source .m-title__english{
  color: #BCAB63;
}
.scout-source .m-title{
  margin-bottom: 3.6rem;
}
.scout-clients .m-title__japanese{
  color: #222;
}
.scout-link .m-title__english{  
  color: #A3A396;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-title__english{
    font-size: 1.6rem;
  }
  .m-title__japanese{
    font-size: 2.8rem;
  }
  .scout-clients__list li{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0 5rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .m-title__english{
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }
  .m-title__japanese{
    font-size: 2.2rem;
  }
  .scout-clients__list span{
    display: block;
  }
}

/* リンク
--------------------------------------------------*/
.m-link{
  text-align: right;
}
.m-link a{
  color: #222;
  font-family: "Noto Serif JP";
  position: relative;
  display: inline-block;
}
.m-link.-white a{
  color: #fff;
}
.m-link a:before{
  content: "";
  height: 1px;
  background-color: #D4D6DD;
  position: absolute;
  display: block;  
}
.m-link__icon{
  position: absolute;
  right: -1rem;
}
.m-link__icon:before,
.m-link__icon:after{
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto;
}
.m-link__icon:before{
  background-color: rgba(255,255,255,0.1);
  z-index: 1;
}
.m-link__icon:after{
  background-color: #fff;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto;
  z-index: 2;
}
.section-case .m-link a:before{
  background-color: #ced0d8;
}
.section-case .m-link__icon:before{
  background-color: #e1e1e1;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-link a{
    font-size: 1.6rem;
    padding:0.7rem 10rem 0.7rem 0;
  }  
  .m-link a:hover{
    text-decoration: none;
  }
  .m-link a:before{
    width: 6.4rem;
    right: 2rem;
    top: 1.8rem;
  }
  .m-link__icon{
    width: 6.4rem;
    height: 6.4rem;
    top: -1.5rem;
  }
  .m-link__icon:before{
    width: 4rem;
    height: 4rem;
  }
  .m-link__icon:after{
    width: 0.6rem;
    height: 0.6rem;
  }
  .m-link__icon:before,
  .m-link__icon:after{
    transition: all .3s ease;
  }
  .m-link a:hover .m-link__icon:before{
    width: 6.4rem;
    height: 6.4rem;
  }
  .m-link a:hover .m-link__icon:after{
    background-color: #56607E;
  }
  .home-trackrecord .m-link a:hover .m-link__icon:after{
    background-color: #fff;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .m-link a{
    font-size: 1.4rem;
    line-height: 1.571;
    padding:0.2rem 9rem 0.2rem 0;
  }
  .m-link a:before{
    width: 6.4rem;
    right: 0.4rem;
    top: 1.2rem;
  }
  .m-link__icon{
    width: 2.4rem;
    height: 2.4rem;
    top: 0.1rem;
  }
  .m-link__icon:before{
    width: 2.4rem;
    height: 2.4rem;
  }
  .m-link__icon:after{
    width: 0.4rem;
    height: 0.4rem;
  }
}
	
/* ABOUT US
--------------------------------------------------*/

.home-aboutBg{
  background-color: #1E2A3B;
  position: fixed;
  inset: 0;
  margin: auto;
  z-index:-1;
}

.home-aboutBg__image,
.scout-source__bg{
  position: absolute;
  bottom: 0;
  background:url("../images/home/trackrecord-bg.jpg") left bottom repeat-x;
  background-size: 50% auto;
  mix-blend-mode: multiply;
  display: block;
  animation: aboutBgMove 100s linear infinite;
}

@keyframes aboutBgMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.home-about{
  /* background-color: #292B33; */
  position:relative;
  z-index:5;
}
.home-about__inner{
  color: #fff;
}
.home-about__texts{
  position: relative;
  z-index: 3;
}
.home-about__text01{
  font-family: "Noto Serif JP";
}
.home-about__text02{
  line-height: 2.5;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-aboutBg__image,
  .scout-source__bg{
    height: 50rem;
    width: 621.6rem;
  }
  .home-aboutArea{
    padding-top:100vh;
    padding-bottom:30rem;
  }

  .home-about{
    padding: 0 8rem;
  }
  .home-about__inner{
    max-width: 120rem;
    /* height: 78rem; */
    margin: 0 auto;	
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: start;
    /* overflow: hidden; */
  }
  .home-about__texts{
    font-size: 3.6rem;
    line-height: 2.027;

    /* margin-top: 20.5rem; */
  }
  .home-about__text01{
    font-size: 3.6rem;
    line-height: 2.027;

  }
  .home-about__text02{
    width: 40.8rem;
    font-size: 1.6rem;
    /* position: absolute; */
    /* top: 56.8rem; */
    right: 0;
    /* margin-top:50rem; */
    margin-top:10rem;
    /* margin-bottom: 50rem; */
    
  }
  .home-about__image img{
    width: 58.8rem;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto auto;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-aboutBg__image,
  .scout-source__bg{
    height: 50rem;
    width: 382.8rem;
  }
  .home-aboutArea{
    padding-top:150vh;
    /* padding-bottom:30rem; */
    /* position:relative;
    z-index:2; */
  }

  .home-about{
    padding: 8.6rem 3rem;
  }
  .home-about__inner{
  }
  .home-about__texts{
    margin:7.2rem 0 4rem 0;
  }
  .home-about__text01{
    font-size: 2rem;
    line-height: 1.8;
    margin-bottom: 4rem;
  }
  .home-about__text02{
    font-size: 1.6rem;
  }
  .home-about__image{
    width: 19.4rem;
    margin: 0 auto;
  }
}
	
/* スカウトの実績
--------------------------------------------------*/
.home-trackrecord{
  position:relative;
  z-index:2;
  /* background: #292B33 url("../images/home/trackrecord-bg.png") left bottom repeat-x; */
  color: #fff;
  margin-top:30rem;
}
.home-trackrecord__itemsIn{
  background: url("../images/home/trackrecord-scr.png") 0 0 no-repeat;
  background-size: 100% auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
  aspect-ratio: 1 / 1;
}
.home-trakrecord__item{
  text-align: center;
  position: relative;
}
.home-trakrecord__item:nth-child(2){
  position: relative;
}
.home-trakrecord__item:nth-child(2):after{
  content: "";
  width: 1px;
  background-color: #56607E;
  display: block;
  position: absolute;
}
.home-trakrecord__item:first-child{
  width: 100%;
  border-bottom: 1px #56607E solid;
}
.home-trackrecord__text{
  line-height: 2;
}
.home-trakrecord__text01{
  font-family: "Noto Serif JP";
  line-height: 1.722;
}
.home-trakrecord__text02{
  line-height: 1.1;
  font-family: "EB Garamond";
}
.home-trakrecord__stext{
  font-family: "Noto Serif JP";
}
.home-trakrecord__text03{
  color: #8C8E9A;
  line-height: 1.67;
}
.home-trakrecord__logo{
  position: absolute;
}
.home-trakrecord__note{
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #8C8E9A;
  text-align: center;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-trackrecord{
    background-size: 136rem auto;
    /* padding: 11.2rem 3rem 3.7rem 3rem; */
    padding: 0 3rem;
    /* padding-top:50vh; */
  }
  .home-trackrecord__inner{
    max-width: 122rem;
    margin: 0 auto;	
    margin-top: 15rem;
    box-sizing: content-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .home-trackrecord__texts{
    width: min(38.6rem,30.88vw);
    order: 2;
  }
  .home-trackrecord__text{
    font-size: 1.6rem;
    margin-bottom: min(13.3rem,10.7198vw);
  }
  .home-trackrecord__items{
    width: min(69rem,55.614vw);
    order: 1;
  }
  .home-trackrecord__itemsIn{
    padding: min(6rem,4.836vw) min(4rem,3.224vw) min(2rem,1.6vw) min(4rem,3.224vw);
  }
  .home-trakrecord__item{
    height: min(29.5rem,23.77vw);
  }
  .home-trakrecord__item:first-child{
    padding-top: min(8.5rem,6.8vw);
    padding: min(8.5rem,6.8vw) 0 0 min(18.7rem,14.96vw);
  }
  .home-trakrecord__item:nth-child(2){
    width: calc( 50% - 1rem );
    padding-top: min(5rem,4vw);
  }
  .home-trakrecord__item:nth-child(2):after{
    height: min(17rem,13.6vw);
    top: min(4.1rem,3.28vw);
    right: min(-0.5rem,-0.4vw);
  }
  .home-trakrecord__item:last-child{
    width: calc( 50% - 1px );
    padding-top: min(5rem,4vw);
  }
  .home-trakrecord__logo{
    width: min(16.6rem,13.28vw);
    top: min(6.6rem,5.28vw);
    left: min(8.8rem,7.04vw);
  }
  .home-trakrecord__text01{
    font-size: min(1.8rem,1.45vw);
  }
  .home-trakrecord__text02{
    font-size: min(7rem,5.15vw);
    margin-bottom: min(0.8rem,0.6448vw);
  }
  .home-trakrecord__stext{
    font-size: min(1.8rem,1.45vw);
    margin: 0 min(0.2rem,0.1612vw);
  }
  .home-trakrecord__item:last-child .home-trakrecord__text02{
    margin-bottom: min(2.2rem,1.7732vw);
  }
  .home-trakrecord__text03{
    font-size: min(1.2rem,0.672vw);
  }
  .home-trakrecord__note{
    font-size: min(1.2rem,0.672vw);
    bottom: 1.5rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-trackrecord{
    background-size: 100% auto;
    padding: 3.9rem 3rem 15rem 3rem;
    position: relative;
  }
  .home-trackrecord .m-link{
    position: absolute;
    bottom: 6rem;
    left: 3rem;
    right: 3rem;
  }
  .home-trackrecord__inner{
  }
  .home-trackrecord__texts{
    margin-bottom: 4rem;
  }
  .home-trackrecord__text{
    font-size: 1.6rem;
  }
  .home-trackrecord__items{
    width: 100%;
  }
  .home-trackrecord__itemsIn{
    padding: 3.7rem 3.5rem 1rem 3.5rem;
  }
  .home-trakrecord__item{
    width: calc( 50% - 1px );
    height: 12.8rem;
  }
  .home-trakrecord__item:first-child{
    width: 100%;
    padding-left: 7.5rem;
    padding-top: 1.5rem;
  }
  .home-trakrecord__item:nth-child(2){
    padding: 2.8rem 0 0 0.5rem;
  }
  .home-trakrecord__item:nth-child(2):after{
    height: 8.4rem;
    top: 1.4rem;
    right:-0.3rem;
  }
  .home-trakrecord__item:last-child{
    width: calc( 50% - 1px );
    padding-top: 1.3rem;
  }
  .home-trakrecord__logo{
    width: 9.5rem;
    top: 0.45rem;
    left: 0.55rem;
  }
  .home-trakrecord__text01{
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }
  .home-trakrecord__text02{
    font-size: 2.9rem;
  }
  .home-trakrecord__stext{
    font-size: 0.7rem;
    margin: 0 0.2rem;
  }
  .home-trakrecord__item:last-child .home-trakrecord__text02{
    margin-bottom: 0.9rem;
  }
  .home-trakrecord__text03{
    font-size: 0.8rem;
  }
  .home-trakrecord__note{
    font-size: 0.8rem;
    line-height: 1.2;
    bottom: 0.5rem;
    white-space: nowrap;
  }
}
/* スカウト・ヘッドハンティングとはページ */
.home-trackrecord.-scout{
  background-color: #1E2A3B;
  margin-top: 0;
  padding-top: 5rem;
  padding-bottom: 7rem;
}
/* PC */
@media print,only screen and (min-width: 768px){
  .home-trackrecord.-scout{
    padding-top: 20rem;
    /* padding-bottom: 7rem; */
    padding-bottom: 20rem;
  }
  .home-trackrecord.-scout .home-trackrecord__inner{
    margin-top: 0;
  }
  .home-trackrecord.-scout .home-trackrecord__text{
    margin-bottom: 0;
  }
}
/* 移籍事例
--------------------------------------------------*/
.section-case{
  position: relative;
  z-index: 5;
}
.m-case__intro{
  line-height: 1.75;
}
.m-case__image{
  position: relative;
}
.section-case{
  position: relative;
  box-sizing: border-box;
}
.m-case{
  position: relative;
}
.m-case:before{
  content: "";
  width: 28.2rem;
  height: 28.2rem;
  position: absolute;
  top: 0;
  display: block;
  background: linear-gradient(135deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
}
.case-items .m-case:before{
  content: none; 
}
.slick-arrow{
  background: none;
  border: none;
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  text-indent: -9999px;
  cursor: pointer;
  background-color: rgba(255,255,255,0.8);
  border-radius: 10rem;
}
.slick-prev{
  background-image:url("../images/shared/prev.svg");
  margin-right: 1rem;
}
.slick-next{
  background-image:url("../images/shared/next.svg");
}
.m-case__number{
  position: absolute;
  transform: rotate(90deg);
  color: #8C8E9A;
  font-family: "EB Garamond";
}
.m-case__texts{
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.m-case__text{
  line-height: 1.2;
}
.m-case__text01{
  font-family: "Noto Serif JP";
  line-height: 1.5;
  position: relative;
}
.case-items .m-case__text01{
  line-height: 1.65;
}
.case-items .m-case a{
  position: relative;
}
.m-case a:hover{
  text-decoration: none;
}
.case-items .m-case a:before{
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 calc( var(--base) * 16 ) calc( var(--base) * 16 );
  border-color: transparent transparent #BCAB63 transparent; 
}
.m-case__text02{
  color: #56607E;
  position: relative;
}
.m-case__text02 span{
  margin-left: 1em;
}
.m-case__detail{
  display: flex;
  position: relative;
  font-weight: 600;
}
.m-case__detail:before{
  background: url("../images/shared/arrow01.svg") center center no-repeat;
}
.m-case__detail:after{
  background: url("../images/shared/arrow02.svg") center center no-repeat;
}
.m-case__detail:before,
.m-case__detail:after{
  content: "";
  background-size: 100% auto;
  position: absolute;
  display: block;
  z-index: 10;
}
.m-case__heading{
  display: flex;
  position: relative;
}
/*
.m-case__title{
  white-space: nowrap;
  display: flex;
  flex-direction: column;
}
*/
.m-case__title div{
  display: flex;
  align-items: center;
}
.m-case__before{
  background-color: #DCE0E8;
  text-align: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.m-case__after{
  background-color: #E3E3D8;
  text-align: center;
}
.m-case__h{
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-case__before .m-case__h{
  background-color: #8C8E9A;
}
.m-case__after .m-case__h{
  background-color: #ADA27C;
}
.m-case__text{
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-case__before .m-case__text{
  color: #7E8191;
}
.m-case__after .m-case__text{
  color: #817754;
}
.m-case__positionincome{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #EEEFF1;
}
/*
.m-case__positionincome span{
  font-weight: 600;
}
*/
.m-case__position,
.m-case__income{
  display: flex;
  align-items: center;
  line-height: 1.1;
}
.m-case__before .m-case__positionincome{
  background-color: #EDEEEF;
  color: #8C8E9A;
}
.m-case__after .m-case__positionincome{
  background-color: #fff;
  color: #817754;
}
.m-case__afterIn{
  display: flex;
  justify-content: space-between;
}
.m-case__time,
.case-header .m-case__time{
  color: #817754;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.m-case__time span,
.case-header .m-case__time span{
  background-color: #E3E3D8;
  padding: 0 0.8rem;
  position: relative;
}
.case-items .m-case__time span{
  padding: 0 calc( var(--base) * 8 );
}
.m-case__time:before{
  content: "";
  background-color: #D0CEC6;
  height: 1px;
  position: absolute;
  inset:0;
  margin: auto 0;
}
.m-case__before .m-case__time:before{
  content: none;
}
.m-case__before .m-case__time{
  background-color: transparent;
}
.m-case__more{
  text-align: right;
}
.-detail .case-item{
  width: 100%;
  background-color: transparent;
}
.case-items .m-case,  
.case-items .m-case a{
  margin-left: 0;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .section-case{
    padding: 20rem 9rem 16.4rem 9rem;
  }
  .section-case .slick-list {
    padding: 0 0 0 3.5rem!important;
  }
  .m-caseSlide{
  --base:0.1rem;
    margin: 0 calc( var(--base) * -90 );
  }
  .m-case{
    width: calc( var(--base) * 680 )!important;
    grid-gap:calc( var(--base) * 48 )　calc( var(--base) * 56 );
    box-sizing: border-box;
  }
  .m-case a{
    width: 100%;
    opacity: 1;
    transition: all .3s ease;
    padding: calc( var(--base) * 66 ) calc( var(--base) * 98 ) calc( var(--base) * 66 ) calc( var(--base) * 63 );
    margin-left: calc( var(--base) * 14 );
    display: block;
  }
  .case-item a{
    margin-left: 0;
  }
/*
  .case-item a:hover,
  .m-case a:hover{
    opacity: 0.8;
  }
*/
  .case-items .m-case a:hover{
    opacity: 0.8;
  }
  .m-case__intro{
    margin-bottom: calc( var(--base) * 80 );
  }
  .m-case:before{
    left: calc( var(--base) * 14 );
  }
  .case-controls{
    text-align: right;
    margin-top: -4rem;
  }
  .slick-arrow{
    width: 8.8rem;
    height: 4rem;
    background-size: 0.85rem;
    margin: 5.6rem 0 3.2rem 0;
  }
  .slick-prev{
    margin-right: 1rem;
  }
  .m-case__number{
    top: 3.2rem;
    left: -5.5rem;
    font-size: 1.4rem;
  }
  .m-case__text01{
    font-size: calc( var(--base) * 20 );
    margin:0 calc( var(--base) * 18 ) calc( var(--base) * 11 ) 0;
  }
  .case-items .m-case__text01{
    font-size: calc( var(--base) * 20 );
  }
  .m-case__text02,
  .case-header .m-case__text02{
    font-size: calc( var(--base) * 14 );
    margin-bottom: calc( var(--base) * 36 );
  }
  .m-case__text02 span{
    font-size: calc( var(--base) * 12 );
  }
  .case-header .m-case__text01{
    font-size: calc( var(--base) * 36 );
    line-height: 1.722;
  }
  .case-header .m-case__text02{
    font-size: calc( var(--base) * 16 );
    margin-bottom: calc( var(--base) * 46 );
  }
  .m-case__num{
    font-size: calc( var(--base) * 12 );
    position: relative;
    top: calc( var(--base) * -4 );
    margin: 0 calc( var(--base) * 2 );
  }
  .case-items .m-case__num{
    font-size: calc( var(--base) * 22 );
  }
  .m-case__detail{
    gap:0 calc( var(--base) * 18 );
  }
  .case-items .m-case__detail{
    width:calc( var(--base) * 492 );
  }
  .m-case__detail:before{
    left: calc( var(--base) * 168 );
  }
  .m-case__detail:after{
    left: calc( var(--base) * 347 );
  }
  .m-case__detail:before,
  .m-case__detail:after{
    width: calc( var(--base) * 8 );
    height: calc( var(--base) * 8 );
    bottom: calc( var(--base) * 41 );
    z-index: 10;
  }
  .case-items .m-case__detail{
    gap:0 calc( var(--base) * 18 );
  }
  .case-items .m-case__detail:before{
    left: calc( var(--base) * 160 );
  }
  .case-items .m-case__detail:after{
    left: calc( var(--base) * 329 );
  }
  .m-case__heading{
    gap:calc( var(--base) * 21 );
    margin:0 0 calc( var(--base) * 34 ) 0;
  }
  .case-items .m-case__heading{
    padding-left: calc( var(--base) * 15 );
    margin:0 calc( var(--base) * 18 ) calc( var(--base) * 34 ) 0;
  }
  .m-case__texts{
    width: calc( 100% - 16rem );
  }
  .m-case__image{
    width: calc( var(--base) * 154 );
  }
  .m-case__before,
  .m-case__after{
    padding: 0 calc( var(--base) * 10 ) calc( var(--base) * 10 ) calc( var(--base) * 10 );
  }
  .m-case__before{
    width: calc( var(--base) * 163 );
  }
  .m-case__after{
    width: calc( var(--base) * 338 );
  }
  .m-case__h{
    height: calc( var(--base) * 26 );
    font-size: calc( var(--base) * 13 );
    margin: 0 calc( var(--base) * -10 );
  }
  .m-case__text{
    height: calc( var(--base) * 37 );
    font-size: calc( var(--base) * 18 );
    line-height: 1.05;
  }
  .case-box .m-case__text,
  .case-box .m-case__position{
    font-size: calc( var(--base) * 20 );
  }
  .case-items .m-case__text{
    height: calc( var(--base) * 46 );
    font-size: calc( var(--base) * 18 );
  }
  .m-case__positionincome{
    height: calc( var(--base) * 72 );
    font-size: calc( var(--base) * 14 );
  }  
  .case-header .m-case__positionincome{
    height: calc( var(--base) * 88 );
    font-size: calc( var(--base) * 16 );
  }
  .m-case__position{
    margin:calc( var(--base) * 4 ) 0 calc( var(--base) * 7 ) 0;
    font-size: calc( var(--base) * 18 );
  }
  .case-items .m-case__positionincome{
    height: calc( var(--base) * 84 );
  }
  .m-case__income{
    font-size: calc( var(--base) * 14 );
  }
  .m-case__income span{
    font-size: calc( var(--base) * 22 );
  }
  .m-case__afterInIn{
    width: calc( var(--base) * 152 );
  }
  .case-items .m-case__afterInIn{
    width: calc( 50% - calc( var(--base) * 6 ) );
  }
  .m-case__time{
    height: calc( var(--base) * 22 );
    font-size: calc( var(--base) * 14 );
  }
  .m-case__more{
    font-size: calc( var(--base) * 14 );
    margin: calc( var(--base) * 22 ) calc( var(--base) * -20 ) 0 0;
  }
  .case-header .m-case__detail{
    justify-content: space-between;
  }
  .case-header .m-case__before{
    width: 31.3%
  }
  .case-header .m-case__after{
    width: 64.76%
  }
  .case-header .m-case__detail:before,
  .case-header .m-case__detail:after{
    width: calc( var(--base) * 12 );
    height: calc( var(--base) * 12 );
    bottom: calc( var(--base) * 45 );
  }
  .case-header .m-case__detail:before{
    left: 32.5%;
  }
  .case-header .m-case__detail:after{
    left: 67%;
  }
  .case-header .m-case__h{
    height: calc( var(--base) * 32 );
  }
  .case-header .m-case__afterInIn{
    width: calc( 50% - 1rem );
  }
}

/* SP */
@media screen and (max-width: 767px){
  .section-case{
    padding: 5rem 3rem 7rem 3rem;
  }
  .m-caseSlide{
    margin: 0 -3rem 0 -3rem;
  }
  .m-case__intro{
    margin-bottom: 4.7rem;
  }
  .m-case{
    width: 33.5rem!important;
    grid-gap:2.5rem 2.5rem;
  }
  .m-case a{
    width: 100%;
    padding:3rem 2rem 3rem 2rem;
    display: block;
    margin-left: 2rem;
  }
  .m-case:before{
    left: 2rem;
  }
  .case-controls{
    text-align: center;
  }
  .slick-arrow{
    width: 8.8rem;
    height: 4rem;
    background-size: 0.81rem auto;
    margin: 3rem 0 2.7rem 0;
  }
  .slick-prev{
    margin-right: 4.8rem;
  }
  .m-case__number{
    top: 2rem;
    left: -2rem;
    font-size: 1rem;
  }
  .m-case__texts{
    width: 17.4rem;
    min-height: 9em;
  }
  .m-case__text01{
    font-size: 1.4rem;
    line-height: 1.642;
    margin-bottom: 1rem;
  }
  .case-items .m-case__text01{
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .m-case__text02{
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .m-case__text02 span{
  }
  .case-items .m-case__text02{
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  .case-items .m-case__text02 span{
    font-size: 1.2rem;
  }
  .m-case__detail{
    justify-content: space-between;
  }
  .m-case__detail:before{
    left: 10.4rem;
  }
  .m-case__detail:after{
    left: 20.05rem;
  }
  .m-case__detail:before,
  .m-case__detail:after{
    width: 0.5rem;
    height: 0.4rem;
    bottom: 3rem;
    z-index: 10;
  }
  .case-items .m-case__detail:before{
    left: 35%;
  }
  .case-items .m-case__detail:after{
    left: 68%;
  }
  .m-case__heading{
    justify-content: space-between;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }
  .m-case__texts{
    width: calc( 100% - 8rem );
  }
  .m-case__image{
    width: 6.8rem;
  }
  .m-case__title{
    width: 2rem;
    font-size: 1rem;
  }
  .m-case__title div:first-child{
    height: 1.9rem;
  }
  .m-case__title div:nth-child(2){
    height: 4.6rem;
  }
  .m-case__title div:nth-child(3){
    height: 1.8rem;
  }
  .m-case__title div:nth-child(4){
    height: 3.75rem;
  }
  .m-case__title div:nth-child(5){
    height: 3.75rem;
  }
  .m-case__before,
  .m-case__after{
    padding: 0 0.5rem 0.5rem 0.5rem;
  }
  .m-case__before{
    width: 34.4%;
  }
  .m-case__after{
    width: 62.6%;
  }
  .m-case__h{
    height: 1.9rem;
    font-size: 1.4rem;
    margin: 0 -0.5rem;
  }
  .m-case__text{
    height: 4.6rem;
    font-size: 1.2rem;
  }
  .m-case__positionincome{
    height: 5.5rem;
    font-size: 1.2rem;
    padding: 0.5rem;
  }
  .m-case__position{
    height: 3rem;
  }
  .m-case__income{
    height: 3rem;
    font-size: 0.8rem;
  }
  .m-case__income span{
    font-size: 1.4rem;
    margin: 0 0.1rem;
    position: relative;
    top: -0.2rem;
  }
  .m-case__afterIn{
    gap:0 0.7rem;
  }
  .m-case__afterInIn{
    width: calc( 50% - 0.35rem );
  }
  .m-case__time{
    height: 1.8rem;
    font-size: 1.2rem;
  }
  .case-header .m-case__detail:before,
  .case-header .m-case__detail:after{
    bottom: 3.5rem;
  }
  .case-header .m-case__detail:before{
    left: 10.4rem;
  }
  .case-header .m-case__detail:after{
    left: 20rem;
  }
  .m-case__more{
    font-size: 1.3rem;
    margin: 1rem -0.5rem 0 0;
  }
  

  .case-content .m-case__detail{
    display: block;
  }
  .case-content .m-case__before,
  .case-content .m-case__after{
    padding: 0 1rem 1rem 1rem;
  }
  .case-content .m-case__before{
    width: 100%;
    margin-bottom: 2.8rem;
    position: relative;
  }
  .case-content .m-case__after{
    width: 100%;
  }
  .case-content .m-case__h{
    height: 2.6rem;
    font-size: 1.4rem;
    margin: 0 -1rem;
  }
  .case-content .m-case__text{
    height: auto;
    font-size: 2rem;
    margin: 1rem 0;
  }
  .case-content .m-case__text01{
    font-size: 1.8rem;
    line-height: 1.555;
    margin-bottom: 0.8rem;
  }
  .case-content .m-case__text02{
    font-size: 1.4rem;
    margin-bottom: 2.4rem;
  }
  .case-content .m-case__text02 span{
    font-size: 1.2rem;
  }
  .case-content .m-case__positionincome{
    height: 7.4rem;
    font-size: 1.2rem;
  }
  .case-content .m-case__income{
    display: block;
    height: auto;
    font-size: 1.4rem;
  }
  .case-content .m-case__position{
    height: auto;
    font-size: 2rem;
    margin-bottom: 0.4rem;
  }
  .case-content .m-case__income span{
    font-size: 1.8rem;
    top: 0;
  }
  .case-content .m-case__afterIn{
    display: block;
  }
  .case-content .m-case__afterInIn{
    width: 100%;
  }
  .case-content .m-case__afterInIn:first-child{
    margin-bottom: 2.4rem;
    position: relative;
  }
  .case-content .m-case__time{
    height: 2.4rem;
  }
  .case-content .m-case__before .m-case__time{
    display: none;
  }
  .case-content .m-case__detail:before,
  .case-content .m-case__detail:after{
    content: none;
  }
  .case-content .m-case__before:after{
    content: "";
    background: url("../images/shared/arrow01.svg") center center no-repeat;
    display: block;
    bottom: -1.8rem;
  }
  .case-content .m-case__afterInIn:first-child:after{
    content: "";
    background: url("../images/shared/arrow02.svg") center center no-repeat;
    display: block;
    bottom: -1.8rem;
  }
  .case-content .m-case__before:after,
  .case-content .m-case__afterInIn:first-child:after{
    background-size: 100% auto;
    width: 0.9rem;
    height: 0.8rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: rotate(90deg);
    position: absolute;
  }
  .case-items .m-case a:before{
    border-width: 0 0 1.5rem 1.5rem;
  }
}

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

スカウト・ヘッドハンティングとは

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

/* 導入部分
--------------------------------------------------*/
.scout-about__inner{
  position: relative;
}
.scout-about__text{
  display: flex;
  align-items: center;
  color: #fff;
  opacity: 0;
  margin: 0 auto;
  text-shadow: 0.1rem 0.1rem 0.5rem rgba(0,0,0,0.4);
}
.scout-about__bg{
  position: absolute;
  inset:0 0 0 0;
  margin: auto auto;
  transform: scale(0.8);
}
.scout-about{
  position: relative;
}
.scout-about:before{
  content: "";
  background-color: #1E2A3B;
  position: absolute;
  display: block;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .scout-about:before{
    inset:30rem 0 0 0;
  }
  .scout-about{
    padding: 0 7.8rem;
  }
  .scout-about__inner{
    max-width: 160rem;
    margin: 0 auto;
  }
  .scout-about__text{
    min-height: 90rem;
    max-width: 63.6rem;
    font-size: 1.8rem;
    line-height: 2.77;
    padding: 5rem 0;
  }
  .scout-about__bg{
    background: url("../images/scout/main.jpg") center center no-repeat;
    background-size: cover;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .scout-about:before{
    inset:13.5rem 0 0 0;
  }
  .scout-about{
    min-height: 75rem;
    padding: 0 2rem 4rem 2rem;
  }
  .scout-about__text{
    width: calc( 100% - 6rem );
    margin: 4rem 3rem;
    padding: 4rem 0;
    font-size: 1.6rem;
    line-height: 2.125;
  }
  .scout-about__bg{
    background: url("../images/scout/main-sp.jpg") center center no-repeat;
    background-size: cover;
  }
}

/* クライアント例
--------------------------------------------------*/
.scout-clients{
  background-color: #E3E3D8;
}
.scout-clients__list li,
.scout-source__list li{
  position: relative;
  font-size: 1.6rem;
}
.scout-clients__list li:before,
.scout-source__list li:before{
  content: "●";
  position: absolute;
  color: #BCAB63;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .scout-clients{
    padding: 12.7rem 3rem;
  }
  .scout-clients__inner{
    max-width: 104.4rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap:0 4.5rem;
  }
  .scout-clients .m-title{
    width: 20rem;
    white-space: nowrap;
  }
  .scout-clients__list{
    width: fit-content;
  }
  .scout-clients__list li,
  .scout-source__list li{
    padding-left: 1.9rem;
    margin-bottom: 1.2rem;
  }
  .scout-clients__list li:before,
  .scout-source__list li:before{
    top: 1.35em;
    left: 0;
    font-size: 0.6rem;
  }
  .scout-source__list li:before{
    top: 1.9em;
  }
  .scout-source__s{
    font-size: 1.6rem;
    line-height: 1;
    display: block;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .scout-clients{
    padding: 7rem 2rem;
  }
  .scout-clients .m-title{
    text-align: center;
    margin-bottom: 3rem;
  }
  .scout-clients__list li,
  .scout-source__list li{
    padding-left: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.75;
  }
  .scout-clients__list li:before,
  .scout-source__list li:before{
    top: 1.35em;
    left: 0;
    font-size: 0.6rem;
  }
  .scout-source__list li:before{
    top: 1.55em;
    left: 0;
    font-size: 0.6rem;
  }
  .scout-source__s{
    font-size: 1.5rem;
  }
}

/* 候補者の情報源
--------------------------------------------------*/
.scout-source{
  background-color: #1E2A3B;
  position:relative;
}
.scout-source__inner{
  position:relative;
}
.scout-source__text{
  color: #fff;
}
.scout-source__marker{
  line-height: 1.35;
}
.scout-source__marker span{
  background-color: #56607E;
  color: #fff;
  padding: 0 0.5rem;
}

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

  }
  .scout-source__inner{
    padding: 19.8rem 3rem 19.5rem 3rem;
  }
  .scout-source__inin{
    max-width: 120rem;
    margin: 0 auto;
  }
  .scout-source__text{
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 6.1rem;
  }
  .scout-source__lists{
    background-color: #fff;
    background-size: cover;
    display: flex;
    justify-content: center;
    gap:0 8%;
    padding: 9rem 0;
  }
  .scout-source__list{
    width: 31%;
    text-align: left;
    font-size: 1.8rem;
  }
  .scout-source__list li{
    font-size: 1.8rem;
    line-height: 1.944;
    margin-bottom: 0.6rem;
  }
  .scout-source__marker{
    font-size: 1.4rem;
    margin: 0.5rem 0 2rem 0;
  }
}

@media (min-width: 768px) and (max-width: 1230px) {
  .scout-source__lists{
    gap:0 5%;
  }
  .scout-source__list{
    width: 42%;
  }
}

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

  }
  .scout-source__inner{
    padding: 7rem 2rem;
  }
  .scout-source__text{
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 6.4rem;
    text-align: left;
  }
  .scout-source__lists{
    background: url("../images/scout/source-bg-sp.jpg") center center no-repeat;
    background-size: cover;
    padding: 3rem 2rem;
  }
  .scout-source__list{
    font-size: 1.6rem;
    text-align: left;
  }
  .scout-source__marker{
    font-size: 1.4rem;
    margin: 1.3rem 0 1.7rem 0;
  }
}

/* サービスの流れ リンク
--------------------------------------------------*/
.scout-link a{
  position: relative;
  display: block;
  overflow: hidden;
}
.scout-link a:before,
.scout-link a:after{
  content: "";
  background-repeat: no-repeat;
  display: block;
}
.scout-link__title{
  background-color: #817754;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
}
.scout-link__title:before{
  content: "";
  border: 1px #968A5F solid;
  position: absolute;
  top: 1rem;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  display: block;
}
.scout-link__title .m-title{
  position: relative;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .scout-link a{
    height: 50rem;
  }
  .scout-link a:before{
    background-image: url("../images/scout/service-bg01.jpg");
    background-position: left center;
    left: 0;
    right: 50%;
  }
  .scout-link a:after{
    background-image: url("../images/scout/service-bg02.jpg");
    background-position: right center;
    right:0;
    left: 50%;
  }
  .scout-link a:before,
  .scout-link a:after{
    height: 50rem;
    background-size: cover;
    position: absolute;
    top: 0;
    transition: all .3s ease;
  }
  .scout-link a:hover:before,
  .scout-link a:hover:after{
    transform: scale(1.03);
  }
  .scout-link a:hover{
    text-decoration: none;
  }
  .scout-link__title{
    width: 37.8rem;
    height: 50rem;
    position: relative;
    margin: 0 auto;
  }
  .scout-link__title .m-title{
    position: relative;
    margin:3.8rem 0 0 0;
  }
  .scout-link__title .m-title:after{
    content: "";
    background-color: #BCAB63;
    height: 1px;
    width: 1.6rem;
    transition: all .3s ease;
    display: block;
    margin: 2.4rem auto 0 auto;
  }
  .scout-link a:hover .m-title:after{
    width: 19.6rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .scout-link a{
    padding: 8.6rem 8.8rem;
  }
  .scout-link a:before{
    background-image: url("../images/scout/service-bg01-sp.jpg");
    background-position: center center;
    top: 0;
  }
  .scout-link a:after{
    background-image: url("../images/scout/service-bg02-sp.jpg");
    background-position: center center;
    bottom: 0;
  }
  .scout-link a:before,
  .scout-link a:after{
    height: 16rem;
    background-size: cover;
    position: absolute;
    left: 0;
    right: 0;
  }
  .scout-link__title{
    width: 20rem;
    height: 14.5rem;
    position: relative;
    margin: 0 auto;
  }
  .scout-link__title .m-title{
    position: relative;
    margin:0;
  }
}

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

スカウト

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

/* スカウトの流れ
--------------------------------------------------*/

.scout .flow .scoutBox__rt h4 span,
.scout .flow .scoutBox__lf h4 span{
  line-height: 1;
}

/* メインコンテンツ
--------------------------------------------------*/
/* PC */
@media print,only screen and (min-width: 768px){ 
    .sub main#container {
        background: #EEEEEE;
        padding: 50px 0 100px 0!important;
    }
}

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

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

よくある質問

==================================================*/
.qa-item{
  border-bottom: 1px #D4D6DD solid;
}
.qa-item:last-child{
  border-bottom: none;
}
.qa-item__inner{
  background-color: rgba(255,255,255,0.3);
}
.qa-q{
  font-family: "Noto Serif JP";
  font-size: 2.2rem;
  line-height: 1.727;
  cursor: pointer;
  position: relative;
}
.qa-a{
  font-size: 1.6rem;
  line-height: 2;  
  position: relative;
  padding: 0 0 4.6rem 6rem;
  display: none;
}
.qa-q:before{
  background-image: url("../images/qa/q.svg");
}
.qa-a:before{
  background-image: url("../images/qa/a.svg");
}
.qa-q:before,
.qa-a:before{
  content: "";
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  left: 0;
  display: block;
}
.qa-q__button{
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 0;
}
.qa-q__button:before{
  width: 1.1rem;
  height: 0.5rem;
  content: "";
  background:url("../images/shared/arrow-up.svg") center center no-repeat;
  background-size: 100% auto;
  display: block;
  position: absolute;
  inset:0;
  margin: auto auto;
  transform: rotate(-180deg);
  transition: all .3s ease;
}
.-open .qa-q__button:before{
  transform: rotate(0);
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .qa-item{
    padding: 3.2rem 0;
  }
  .qa-q{
    font-size: 2.2rem;
    padding: 5.6rem 15rem 5.6rem 13.4rem;
  }
  .qa-a{
    padding: 0 15rem 4.6rem 13.4rem;
  }
  .qa-q:before{
    width: 2.9rem;
    height: 3rem;
    top: 2.8em;
    left: 7.2rem;
  }
  .qa-a:before{
    width: 3.3rem;
    height: 2.5rem;
    top: 1rem;
    left: 7.2rem;
  }
  .qa-q__button{
    width: 3.8rem;
    height: 3.8rem;
    right: 7.2rem;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .qa-item{
    padding: 1rem 0;
  }
  .qa-q{
    font-size: 1.6rem;
    line-height: 1.5;
    padding: 1.5rem 4rem 1.5rem 4rem;
  }
  .qa-a{
    font-size: 1.4rem;
    line-height: 1.75;
    padding: 0 4rem 3rem 4rem;
  }
  .qa-q:before{
    width: 1.6rem;
    height: 1.8rem;
    top: 1.1em;
    left: 1.5rem;
  }
  .qa-a:before{
    width: 2rem;
    height: 2rem;
    top: 0.1rem;
    left: 1.5rem;
  }
  .qa-q__button{
    width: 2.5rem;
    height: 2.5rem;
    right: 1.5rem;
    top: 0.9em;
  }
}

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

お問い合わせ

==================================================*/
.sub main#container{
  background-color: transparent!important;
  padding: 0 3rem!important;
}
.-inquiry .inquiry_txt{
  line-height: 2;
  text-align: center;
}
.-inquiry dl{
  padding: 0.6rem 0;
  border-bottom: 1px #D4D6DD solid;  
}
.-inquiry dl.-bordernone{
  border-bottom: none;  
}
.form-content.-confirm .dl.-bordernone{
  border-bottom: 1px #D4D6DD solid;  
}
.-inquiry .entry{
  box-sizing: border-box;
}
.-inquiry dl{
  position: relative;
}
.-inquiry dl:before{
  content: "";
  background-color: rgba(255,255,255,0.3);
  position: absolute;
  left: 0;
  right: 0;
}
.-inquiry dt{
  font-family: "Noto Serif JP";
  line-height: 1.5;
}
.-inquiry dt,
.-inquiry dd{
  position: relative;
  z-index: 3;
}
.-inquiry span.must{
  background-color: #707070;
  border-radius: 0.2rem;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  position: relative;
}
.form-text01{
  vertical-align: middle;
}
.form-list01,
.form-list02{
  overflow: hidden;
}
.form-list02{
  border-bottom: 1px #D4D6DD solid;
}
.form-list02:nth-child(2){
  padding-top: 0;
}
.form-list01 li{
  float: left;
  white-space: nowrap;
}
.form-list02 li{
  float: left;
  white-space: nowrap;
}
.agree_txt{
  text-align: center;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  #tenkin_onoff1 label{
    margin: 0.1rem 2.2rem 0.1rem 0;
    display: inline-block;
  }
  #tenkin_onoff1 input[type="checkbox"] {
    margin-right: 0.6rem;
  }
  .-inquiry .inquiry_txt{
    font-size: 1.6rem;
    margin-bottom: 8rem;
  }
  .-inquiry .entry{
    padding-bottom: 2rem;
  }
  .-inquiry dl:before{
    top: 0.6rem;
    bottom: 0.6rem;
  }
  .-inquiry.-kakunin .entry{
    padding-bottom: 7.6rem;
  }
  .-inquiry dl{
    min-height: 8rem;
    padding: 1.6rem 1.6rem 1.6rem 4.7rem; 
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
  }
  dl .verticalmiddle{
    vertical-align: middle;
    display: flex;
    align-items: center;
  }
  .-kakunin dl{
    align-items: center;
  }
  .form-bottom .form-item__inner{
    padding: 3.2rem 1.6rem 3.2rem 4.7rem; 
  }
  .-inquiry dt{
    width: 32rem;
    font-size: 1.8rem;  
    margin-top: 0.9rem;
  }
  .-inquiry.-kakunin dt{ 
    margin-top: 0;
  }
  .form-content.-confirm .form-item__inner{
    min-height: auto;
    align-items: center;
    padding: 2.7rem 1.6rem 2.7rem 4.7rem; 
  }
  .form-content.-confirm .form-title{
    margin-top: 0;
  }
  .-inquiry dd{
    width: calc( 100% - 32rem );
    font-size: 1.4rem;
  }
  .must{
    font-size: 1.1rem;
    padding: 0.1rem 0.5rem 0.2rem 0.5rem;
    margin-left: 1.2rem;
    top: -0.2rem;  
  }
  .form-text01{
    margin: 0 2.4rem 0 0.6rem;
  }
  .form-text02{
    margin: 0 0.8rem;
  }
  .form-content.-confirm .form-text02{
    margin: 0;
  }
  .form-text03{
    margin-left: 1.6rem;
  }
  .form-texttop{
    margin-bottom: 1.6rem;
  }
  .caution{
    margin-top: 1.6rem;
  }
  .form-list02{
    padding: 1.1rem 0;
  }
  .form-list01 li{
    width: 9.2rem;
  }
  .form-list02 li{
    width: 8.4rem;
    margin-top: 0.5rem;
  }
  .form-list01 span,
  .form-list02 span{
    margin-left: 0.6rem;
  }
  .form-list01 li:nth-child(6),
  .form-list02:nth-child(3) li:nth-child(6){
    clear: both;
  }
  .agree_txt{
    margin-top: 4rem;
  }
  .agree_txt a{
    text-decoration: underline;
  }
  .agree_txt span{
    margin-left: 0.6rem
  }
  .errorMessage{
    margin: 3rem 3rem 0 3rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .-inquiry .inquiry_txt{
    font-size: 1.5rem;
    margin-bottom: 3rem;
  }
  .-inquiry .entry{
  }
  .-inquiry dl{
    padding: 1.6rem 1.5rem;
  }
  .-inquiry dl:before{
    top: 0.4rem;
    bottom: 0.4rem;
  }
  .-inquiry dt{
    font-size: 1.7rem; 
  }
  .-inquiry dd{
    font-size: 1.4rem;
    margin-top: 0.5rem;
  }
  .-inquiry .must{
    font-size: 1rem;
    padding: 0.1rem 0.5rem 0.2rem 0.5rem;
    margin-left: 1rem;
    top: -0.25rem;  
  }
  .form-text01{
    margin: 0 1rem 0 0.4rem;
  }
  .form-text02{
    margin: 0 0.6rem;
  }
  .form-text03{
    margin-left: 1rem;
  }
  .form-texttop{
    margin-bottom: 1rem;
  }
  .caution{
    margin-top: 1rem;
  }
  .form-list02{
    padding: 0.7rem 0;
  }
  .form-list01 li{
    width: 9.2rem;
  }
  .form-list01 li:nth-child(5){
    width: 12.2rem;
  }
  .form-list02 li{
    width: 8.8rem;
  }
  .form-list01 span,
  .form-list02 span{
    margin-left: 0.6rem;
  }
  .agree_txt{
    font-size: 1.4rem;
    margin-top: 4rem;
  }
  .agree_txt a{
    text-decoration: underline;
  }
  .agree_txt span{
    margin-left: 0.3rem
  }
  .errorMessage{
    font-size: 1.2rem;
    margin: 3rem 2rem 0 2rem;
  }
}

/* 
--------------------------------------------------*/
input[type="text"],
button,
select,
textarea,
button{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  border: 1px #D4D6DD solid;
  background-color: #FAFAFA;
}
input[type="checkbox"]{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="text"],
select,
textarea {
  box-sizing: border-box;
}
select{
  background:#FAFAFA url("../images/inquiry/arrow-select.svg") right 2.4rem center no-repeat;
  background-size: 1rem auto;
}
input[type="radio"],
input[type="checkbox"]{
  border: 1px #D4D6DD solid;
  background-color: #FAFAFA;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -0.2rem;
  position: relative;
}
input[type="checkbox"]{
  border-radius: 0.2rem;
}
input[type="radio"] {
  border-radius: 50%;
  margin-right: 0.5rem;
}
input[type="checkbox"]:checked:before {
  content: "";  
  position: absolute;
  transform: rotate(50deg);
  border-right: 0.2rem solid #707070;
  border-bottom: 0.2rem solid #707070;
}

input[type="radio"]:checked:before {
  content: "";
  background-color: #707070;
  border-color: #707070;
  position: absolute;
  inset:0;
  margin: auto auto;
  display: block;
  border-radius: 50%;
}
.form-long,
textarea{
  width: 100%;
}
.input-file-btn{
  background-color: #8C8E9A;
  border-radius: 0.4rem;
  color: #fff;
  border: none;
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin-right: 3rem;
  cursor: pointer;
}
.input-file-btn input[type="file"]{
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.btns{
	margin: 0 auto;
	text-align: center;
}
.btns button,
.btns span{
	width: 48.62%;
	overflow: hidden;
	text-align: center;
	position: relative;
	background-color: #817754;
	color: #fff;
  font-weight: 500;
	cursor: pointer;
  border-radius: 10rem;
  transition: all .3s ease;
}
.btns button.submit{
	text-align: center;
	margin: 0 auto;
}
.btns .button_submit2{
	float: right
}
.btns .button_back{
	background-color: #8C8E9A;
	float: left;
}
.label_radio{
  margin-right: 2rem;
}
input[name="income"]{
  margin-right: 1.4rem;
}

/* PC */
@media print,only screen and (min-width: 768px){   
  input[type="text"],
  select,
  textarea {
    border-radius: 0.4rem;
    padding: 1.1rem 1.8rem;
    font-size: 1.4rem;
  }
  select{
    width: 27.4rem;
    background-size: 1rem auto;
    padding: 1.1rem 4.5rem 1.1rem 1.8rem;
  }
  input[type="radio"],
  input[type="checkbox"]{
    width: 2rem;
    height: 2rem;
    top: -0.2rem;
  }
  input[type="checkbox"]:checked:before {
    top: 0.3rem;
    left: 0.6rem;
    width: 0.7rem;
    height: 1rem;
  }

  input[type="radio"]:checked:before {
    width: 1.2rem;
    height: 1.2rem;
  }
  textarea{
    height: 20rem;
  }
  .form-middle{
    width: 14.6rem;
  }
  .form-tel01{
    width: 7.5rem;
    margin-right: 0.4rem;
  }
  .form-tel02{
    width: 8.4rem;
    margin: 0 0.4rem 0 0.2rem;
  }
  .input-file-btn{
    padding: 0.8rem 2.4rem;
  }
  .btns{
    width: 57.6rem;
    margin-top: 4rem;
  }
  .btns button,
  .btns span{
    padding: 1.5rem 1rem;
    font-size: 1.6rem;
  }
  .btns button:hover{
    background-color: #1f1f1f;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  input[type="text"],
  select,
  textarea {
    padding: 0.9rem 1.3rem;
    font-size: 1.4rem;
  }
  select{
    width: 100%;
    background-size: 0.8rem auto;
    padding: 0.9rem 4.2rem 0.9rem 1.3rem;
  }
  input[type="radio"],
  input[type="checkbox"]{
    width: 1.8rem;
    height: 1.8rem;
    top: -0.2rem;
  }
  input[type="checkbox"]:checked:before {
    top: 0.2rem;
    left: 0.5rem;
    width: 0.6rem;
    height: 1rem;
  }

  input[type="radio"]:checked:before {
    width: 1rem;
    height: 1rem;
  }
  textarea{
    height: 20rem;
  }
  .form-middle{
    width: 11rem;
  }
  .form-tel01{
    width: 7.5rem;
    margin-right: 0.4rem;
  }
  .form-tel02{
    width: 8.4rem;
    margin: 0 0.4rem 0 0.2rem;
  }
  .input-file-btn{
    font-size: 1.4rem;
    padding: 0.4rem 1.5rem;
  }
  .btns{
    width: calc( 100% - 3rem );
    margin: 2rem auto 0 auto;
    overflow: hidden;
  }
  .btns button,
  .btns span{
    width: 100%;
    padding: 1.2rem 0.5rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

/* thanks
--------------------------------------------------*/
.form-thanks__title{
  line-height: 1.3;
  text-align: center;
}
.form-thanks__english{
  color: #BCAB63;
  font-family: "EB Garamond";
}
.form-thanks__japanese{
  font-family: "Noto Serif JP";
}
.form-thanks__text{
  line-height: 2;
  text-align: center;
}
.form-thanks .m-link__icon:before{
  background-color: rgba(225,225,225,0.9);
  z-index: 1;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .form-thanks{
    max-width: 79.2rem;
    margin: 25rem auto 20rem auto;
  }
  .form-thanks__title{
    margin-bottom: 4.8rem;  
  }
  .form-thanks__english{
    font-size: 1.6rem;  
    margin-bottom: 0.8rem;
  }
  .form-thanks__japanese{
    font-size: 2.8rem;    
  }
  .form-thanks__text{
    font-size: 1.6rem;
    margin-bottom: 7.5rem;  
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .form-thanks{
    margin: 12rem 0;
  }
  .form-thanks__title{
    margin-bottom: 2rem;  
  }
  .form-thanks__english{
    font-size: 1.4rem;  
    margin-bottom: 0.8rem;
  }
  .form-thanks__japanese{
    font-size: 2.2rem;    
  }
  .form-thanks__text{
    font-size: 1.3rem;
    margin-bottom: 3rem;  
  }
}

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

会社概要

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

.company-content{
  position: relative;
}
.company-content:before{
  content: "";
  background: url("../images/company/bg.jpg") center bottom no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.company-content__inner{
  background-color: #fff;
  box-sizing: border-box;  
  position: relative;
}
.company-content__table th,
.company-content__table td{
  font-family: "Noto Serif JP";
  vertical-align: top;
}

/* PC */
@media print,only screen and (min-width: 768px){   
  .company-content{
    padding: 0 3rem 24.6rem 3rem;
  }
  .company-content:before{
    height: 69.2rem;
  }
  .company-content__inner{
    max-width: 77.1rem;
    margin: 0 auto;
    padding: 10.3rem 5rem;
    box-sizing: border-box; 
  }
  .company-content__table{
    max-width: 53.1rem;
    margin: 0 auto;  
  }
  .company-content__table th,
  .company-content__table td{
    padding: 1.7rem 0;
    font-size: 1.8rem;
    line-height: 1.888;
  }
  .company-content__table th{
    width: 7.5em;
    padding-right: 1rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .company-content{
    padding: 0 3rem 8rem 3rem;
  }
  .company-content:before{
    height: 45rem;
  }
  .company-content__inner{
    padding: 4rem 2.5rem;
  }
  .company-content__table{
    width: 100%;
  }
  .company-content__table th,
  .company-content__table td{
    line-height: 1.6;
    display: block;
  }
  .company-content__table th{
    padding-bottom: 0.3rem;
    font-size: 1.5rem;
    font-weight: 500;
  }
  .company-content__table td{
    padding-bottom: 2rem;
    font-size: 1.4rem;
  }
}

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

プライバシーポリシー

==================================================*/
.privacy-content{
  line-height: 2;
}
.privacy-content a{
  text-decoration: underline;
}
.privacy-content>div:last-child{
  margin-bottom: 0;
}
.privacy-title{
  font-weight: 600;
}
.privacy-list01{
  counter-reset: num;
}
.privacy-list01>li {
  counter-increment: num;
  position: relative;
  padding-left: 2.5em; 
}
.privacy-list01>li::before {
  content: "（" counter(num) "）";
  position: absolute;
  left: 0;
}
.privacy-list02 li{
  padding-left: 1em;
  position: relative;
}
.privacy-list02 li:before{
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.privacy-name{
  width: fit-content;
}
.bold{
  font-weight:bold;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .privacy-text{
    font-size: 1.6rem;
    margin-bottom: 2.7rem;
  }
  .privacy-text02{
    font-size: 1.6rem;
    margin:0 0 2.7rem 1em;
  }
  .privacy-text03{
    font-size: 1.6rem;
    margin:-1rem 0 2.7rem 1em;
  }
  .privacy-text04{
    font-size: 1.6rem;
    margin:0 0 2.7rem 1em;
  }
  .privacy-content{
    margin-bottom: 9rem;
  }
  .privacy-title{
    font-size: 1.6rem;
  }
  .privacy-list01>li {
    margin-bottom: 2rem;
  }
  .privacy-list02{
    margin-bottom: 2rem;
  }
  .privacy-list03 li{
    margin-bottom: 2rem;
  }
  .privacy-list04{
    margin-top: 0.3rem;
  }
  .privacy-list04 li{
    margin-bottom: 2rem;
  }
  .privacy-name{
    margin:2.4rem 0 0 auto;
  }  
}

/* SP */
@media screen and (max-width: 767px){	
  .privacy-text{
    margin-bottom: 1.5rem;
  }
  .privacy-text02{
    margin:-1rem 0 1.5rem 2.5em;
  }
  .privacy-text03{
    margin:-1rem 0 1.5rem 1em;
  }
  .privacy-text04{
    margin:0 0 1.5rem 1.5em;
  }
  .privacy-content{
    font-size: 1.4rem;
    margin-bottom: 9rem;
  }
  .privacy-title{
    font-size: 1.5rem;
  }
  .privacy-list01>li {
    margin-bottom: 1.5rem;
  }
  .privacy-list02{
    margin-bottom: 1.5rem;
  }
  .privacy-list03 li{
    margin-bottom: 1.5rem;
  }
  .privacy-list04{
    margin-top: 0.2rem;
  }
  .privacy-list04 li{
    margin-bottom: 1rem;
  }
  .privacy-name{
    margin:2.5rem 0 0 auto;
  }  
}


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

404

==================================================*/
.notfound{
  text-align: center;
}
.notfound-title{
  font-family: "EB Garamond";
}
.notfound-text{
  line-height: 2;
}
/* PC */
@media print,only screen and (min-width: 768px){ 
  .notfound{
    padding: 23rem 3rem 21.5rem 3rem;
  }
  .notfound-title{
    font-size: 4.8rem;
    margin-bottom: 4.8rem;
  }
  .notfound-text{
    font-size: 1.6rem;
    margin-bottom: 8rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .notfound{
    padding: 10rem 2rem 5rem 2rem;
  }
  .notfound-title{
    font-size: 3.8rem;
    margin-bottom: 3rem;
  }
  .notfound-text{
    font-size: 1.3rem;
    margin-bottom: 5rem;
  }
}

/* バナー
--------------------------------------------------*/
.m-banner a{
  width: 100%;
  display: block;
  position: relative;
}
.m-banner__inner{
  box-sizing: content-box;
  display: flex;
  align-items: stretch;
}
.m-banner__texts{
  width: fit-content;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.m-banner__texts:before{
  content: "";
  position: absolute;
  right: 0;
  background: rgba(30, 42, 59, 0.8); 
  clip-path: polygon(0 0, 78% 0, 100% 100%, 0% 100%);
}
.m-banner__english{
  color: #BCAB63;
  font-family: "EB Garamond";
  position: relative;
}
.m-banner__japanese{
  color: #fff;
  font-family: "Noto Serif JP";
  position: relative;
}
.m-banner__icon{
  position: absolute;
}
.m-banner__icon:before,
.m-banner__icon:after{
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.m-banner__icon:before{
  background-color: rgba(86,96,126,0.3);
}
.m-banner__icon:after{
  background-color: rgba(255,255,255,1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-banner{
    padding: 12rem 3rem 0 3rem;
  }
  .section-case + .m-banner {
    padding-top: 0;
  }
  .m-banner a:hover{
    text-decoration: none;
  }
  .m-banner.-notfond{
    margin-top: -12.5rem;
  }
  .m-banner__inner{
    background: url("../images/shared/banner.jpg") center center no-repeat;
    background-size: cover;
    max-width: 120rem;
    height: 20rem;
    margin: 0 auto 20rem auto;
  }
  .m-banner__texts{
    height: 20rem;
    padding: 0 19rem 0 7.5rem;
  }
  .m-banner__texts:before{
    left: 0.8rem;
    top: 1rem;
    bottom: 1rem;
  }
  .m-banner__english{
    font-size: 1.6rem;
  }
  .m-banner__japanese{
    font-size: 2.8rem;
  }
  .m-banner__icon{
    width: 6.4rem;
    height: 6.4rem;
    right: 3.2rem;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
  .m-banner__icon:before,
  .m-banner__icon:after{
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto auto;
    transition: all .3s ease;
    aspect-ratio: 1 / 1;
  }
  .m-banner__icon:before{
    width: 4rem;
    height: 4rem;
  }
  .m-banner__icon:after{
    width: 0.6rem;
    height: 0.6rem;
  }
  .m-banner a:hover .m-banner__icon:before{
    width: 6.4rem;
    height: 6.4rem;
  }
  .m-banner__texts:before{
    transition: all .3s ease;
  }
  .m-banner a:hover .m-banner__texts:before{
    background: rgba(30, 42, 59, 0.9); 
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .m-banner{
    padding: 0 2rem;
  }
  .m-banner.-notfond{
    margin-top: -3rem;
  }
  .m-banner__inner{
    background: url("../images/shared/banner-sp.jpg") center center no-repeat;
    background-size: 100% auto;
    height: 15.8rem;
    margin: 2rem auto;
  }
  .m-banner__texts{
    height: 9rem;
    padding: 1.5rem 4rem 0 2rem;
    line-height: 1.3;
  }
  .m-banner__texts:before{
    height: 8rem;
    left: 0;
    top:1.9rem;
  }
  .m-banner__english{
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }
  .m-banner__japanese{
    font-size: 2rem;
  }
  .m-banner__icon{
    width: 4rem;
    height: 4rem;
    top: 3.9rem;
    right: 2.5rem;
  }
  .m-banner__icon:before,
  .m-banner__icon:after{
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto auto;
  }
  .m-banner__icon:before{
    width: 4rem;
    height: 4rem;
  }
  .m-banner__icon:after{
    width: 0.6rem;
    height: 0.6rem;
  }
}

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

面談者の声

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

/* 青背景
--------------------------------------------------*/
.m-bluebox{
  background-color: #1E2A3B;
  position: relative;
  overflow: hidden;
}
.m-bluebox__inner{
  position: relative;
  z-index: 5;
}
.m-bluebox__bg{
  background:url("../images/home/trackrecord-bg.jpg") left bottom repeat-x;
  background-size: 50% auto;
  mix-blend-mode: multiply;
  display: block;
  animation: aboutBgMove 100s linear infinite;
  position: absolute;
  bottom: 0;
}
.m-text{
  font-family: "Noto Serif JP";
}
.m-text.-center{
  text-align: center;
}
/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-bluebox{
    padding: 24rem 3rem;
  }
  .m-bluebox__bg{
    height: 50rem;
    width: 621.6rem;
  }
  .m-bluebox__inner{
    max-width: 120rem;
    margin: 0 auto;
  }
  .m-text{
    max-width: 80rem;
    box-sizing: content-box;
    padding: 0 3rem;
    margin: 0 auto 12rem auto;
    font-size: 1.8rem;
    line-height: 1.888;
  }
  .m-text.-center{
    margin: 4rem auto 8rem auto;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .m-bluebox{
    padding: 8rem 2rem;
  }
  .m-bluebox__bg{
    height: 50rem;
    width: 382.8rem;
  }
  .m-text{
    font-size: 1.5rem;
    line-height: 1.75;
    margin:0 2rem 2rem 2rem;
  }
  .m-text.-center{
    margin: -2rem auto 4rem auto;
  }
}

/* チェック
--------------------------------------------------*/
.m-choice{
  background-color: #fff;
}
.m-choice__table th,
.m-choice__table td{
  padding: 2rem 0;
  border-bottom: 1px #D4D6DD solid;
  vertical-align: top;
}
.m-choice__table th{
  font-family: "Noto Serif JP";
  box-sizing: border-box;
}
.m-choice__list{
  display: flex;
  flex-wrap: wrap;
}
.voices-noitems,
.case-noitems{
  background-color: #fff;
  text-align: center;
}

/* PC */
@media print,only screen and (min-width: 768px){
  .m-choice{
    padding: 5.8rem 10rem;
    margin-bottom: 6.4rem;
  }
  .m-choice__table{
    width: 100%;
    margin: 0 auto;
  }
  .m-choice__table input[type="checkbox"]{
    top: -0.1rem;
  }
  .m-choice__table th,
  .m-choice__table td{
    padding: 2rem 0;
  }
  .m-choice__table th{
    width: 14.3rem;
    padding-right: 2rem;
    font-size: 1.8rem;
  }
  .m-choice__table td{
    font-size: 1.4rem;
  }
  .m-choice__list{
    gap:1.2rem 4.8rem;
  }
  .m-choice__text{
    margin-left: 0.4rem;
  } 
  .voices-noitems,
  .case-noitems{
    padding: 10rem 1.5rem;
    font-size: 1.5rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .choice-button{
    width: 26.5rem;
    background-color: #7E8191;
    border-radius: 10rem;
    margin: 0 auto 3rem auto;
    color: #E3E3D8;
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
    padding: 1rem;
    cursor: pointer;
  }
  .m-choice{
    background-color: rgba(0,0,0,0.7);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
    padding: 1rem;
    display: none;
		height: 100vh;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
  }
  .m-choice__inner{
    background-color: #fff;
    padding: 4.8rem 2rem 3rem 2rem;
  }
  .m-choice__close{
    width: 6.9rem;
    height: 6.9rem;
    position: absolute;
    top: 0;
    right: 0;
    padding: 2rem;
    cursor: pointer;
  }
  .m-choice__close img{
    width: 100%;
  }
  .m-choice__table{
    width: 100%;
    border-top: 1px #D4D6DD solid;
  }
  .m-choice__table input[type="checkbox"]{
    top: -0.1rem;
  }
  .m-choice__table th,
  .m-choice__table td{
    display: block;
  }
  .m-choice__table th{
    width: 100%;
    padding: 2rem 0 1rem 0;
    font-size: 1.8rem;
    border-bottom: none;
  }
  .m-choice__table td{
    font-size: 1.4rem;
    padding:0 0 2rem 0;
  }
  .m-choice__list{
    gap:0.6rem 2.3rem;
  }
  .m-choice__text{
    margin-left: 0.3rem;
  } 
  .m-choice__title{
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
  } 
  .m-choice__title span{
    font-size: 2.2rem;
    font-weight: 600;
  } 
  .voices-noitems,
  .case-noitems{
    padding: 6rem 1.5rem;
    font-size: 1.3rem;
  }
}

/* 
--------------------------------------------------*/
.voices-items{
  display: flex;
  flex-wrap: wrap;
}
.voices-item{
  background-color: #fff;
}
.voices-item__title{
  color: #817754;
  font-family: "Noto Serif JP";
}
.voices-item__num{
  font-family: "EB Garamond";
}
.voices-item__detail{
  background-color: #E3E3D8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.voices-item__table th,
.voices-item__table td{
  border-bottom: 1px #D0CEC6 solid;
  vertical-align: middle;
}
.voices-item__table th{
  color: #fff;
}
.voices-item__table th span{
  background-color: #ADA27C;
}
.voices-item__face{
  filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .voices-items{
    display: flex;
    flex-wrap: wrap;
    gap:6.4rem 5.6rem;
  }
  .voices-item{
    width: calc( 50% - 2.8rem );
    padding: 3rem 4rem 3.7rem 4rem;
  }
  .voices-item__title{
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
  }
  .voices-item__num{
    font-size: 3.6rem;
  }
  .voices-item__detail{
    gap:0 2.4rem;
    padding: 0.8rem 1.2rem;
    margin-bottom: 2.4rem;
  }
  .voices-item__table{
    width: calc( 100% - 9.4rem );
  }
  .voices-item__table th,
  .voices-item__table td{
    padding: 0.4rem 0;
  }
  .voices-item__table th{
    width: 4.3em;
    font-size: 1.2rem;
  }
  .voices-item__table th span{
    padding: 0.2rem 0.7rem 0.3rem 0.7rem;
  }
  .voices-item__table td{
    font-size: 1.4rem;
  }
  .voices-item__face{
    width: 7.2rem;
  }
  .voices-item__text{
    font-size: 1.6rem;
    line-height: 2;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .voices-items{
  }
  .voices-item{
    padding: 2.6rem;
    margin-bottom: 2rem;
  }
  .voices-item:last-child{
    margin-bottom: 0;
  }
  .voices-item__title{
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  .voices-item__num{
    font-size: 2.4rem;
  }
  .voices-item__detail{
    gap:0 1.5rem;
    padding: 0.8rem 1.2rem;
    margin-bottom: 1rem;
  }
  .voices-item__table{
    width: calc( 100% - 6rem );
  }
  .voices-item__table th,
  .voices-item__table td{
    padding: 0.4rem 0;
  }
  .voices-item__table th{
    width: 4em;
    font-size: 1.1rem;
  }
  .voices-item__table th span{
    padding: 0.1rem 0.5rem 0.2rem 0.5rem;
  }
  .voices-item__table td{
    font-size: 1.3rem;
  }
  .voices-item__face{
    width: 5rem;
  }
  .voices-item__text{
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

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

面談者の声

==================================================*/
.case-items .m-case a{
  background-color: #fff; 
  display: block;
  cursor: pointer;
}
.m-case a{
  position: relative;
  cursor:default;
}
.case-header .m-case:before{
  content: none;
}
/* PC */
@media print,only screen and (min-width: 768px){ 
  .case-items{
    display: flex;
    flex-wrap: wrap;
    --base:min(0.1rem,calc( ( 100vw - 6rem ) / 1200 ));
    gap:calc( var(--base) * 56 ) calc( var(--base) * 56 );
  }
  .case-header{
    --base:0.1rem;
  }
  .case-items .m-case{
    width: calc( 50% - calc( var(--base) * 28 ) )!important
  }
  .case-header .m-case{
    width: 100%!important;
  }
  .case-items a{
    padding: calc( var(--base) * 39 ) calc( var(--base) * 40 ) calc( var(--base) * 18 ) calc( var(--base) * 40 );
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .case-items .m-case{
    width: 100%!important;
    margin-bottom: 2rem;
  }
  .case-items a{
    padding: 2.4rem 2rem 1.2rem 2rem;
  }
}

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

移籍事例

==================================================*/
.case-box{
  background-color: rgba(255,255,255,0.3);
}
.case-box__in > *:last-child {
  margin-bottom: 0;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .case-content{
    padding: 0 3rem;
  }
  .case-box{
    max-width: 120rem;
    padding: 12rem 4rem;
    margin: 0 auto;
  }
  .case-box:first-child{
    margin-bottom: 20rem;
  }
  .case-box__in{
    max-width: 84rem;
    margin: 0 auto;
  }  
}

/* SP */
@media screen and (max-width: 767px){	
  .case-content{
    padding: 0 2rem;
  }
  .case-content .m-case{
    width: 100%!important;
  }
  .case-box{
    padding: 4rem 2rem;
  }
  .case-box:first-child{
    margin-bottom: 5rem;
    padding: 4rem 2rem 2rem 2rem;
  }
}

/* 企業情報
--------------------------------------------------*/
.case-info{
  position: relative;
}
.case-info__item:first-child{
  background-color: #DCE0E8;
}
.case-info__item:last-child{
  background-color: #E3E3D8;
}
.case-info__h{
  color: #fff;
  text-align: center;
  font-weight: 600;
}
.case-info__item:first-child .case-info__h{
  background-color: #7E8191;
}
.case-info__item:last-child .case-info__h{
  background-color: #ADA27C;
}
.case-info__table{
  width: 100%;
}
.case-info__table th,
.case-info__table td{
  vertical-align: middle;
  font-weight: 600;
}
.case-info__num td span{
/*  font-weight: 400;*/
}
.case-info__item:first-child th,
.case-info__item:first-child td{
  border-bottom: 1px #C9CBD3 solid;
  color: #7E8191;
}
.case-info__item:last-child th,
.case-info__item:last-child td{
  border-bottom: 1px #D0CEC6 solid;
  color: #817754;
}
.case-info__table tr:last-child th,
.case-info__table tr:last-child td{
  border-bottom: none;
}
.case-text:last-child{
  margin-bottom: 0;
}

/* PC */
@media print,only screen and (min-width: 768px){   
  .case-info{
    display: flex;
    justify-content: space-between;
    margin:2.2rem 0 11.8rem 0;
    --base:min(0.1rem,calc( (100vw - 14rem) / 840 ));
  }
  .case-info:before{
    content: "";
    background: url("../images/shared/arrow01.svg") center center no-repeat;
    background-size: 100% auto;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: block;
    width: calc( var(--base) * 12 );
    height: calc( var(--base) * 12 );
    top: calc( var(--base) * 200 );
  }
  .case-info__item{
    width: calc( 50% - calc( var(--base) * 20 ) );
    padding: 0 calc( var(--base) * 32 );
  }
  .case-info__h{
    font-size: calc( var(--base) * 16 );
    padding: calc( var(--base) * 8 ) calc( var(--base) * 10 );
    margin: 0 calc( var(--base) * -32 );
  }
  .case-info__table th,
  .case-info__table td{
    padding: calc( var(--base) * 13 ) 0;
  }
  .case-info__table th{
    width: calc( var(--base) * 103 );
    font-size: calc( var(--base) * 14 );
  }
  .case-info__table td{
    font-size: calc( var(--base) * 20 );
  }
  .case-info__table td span{
    font-size: calc( var(--base) * 16 );
  }
  .case-text{
    font-size: 1.6rem;
    line-height: 2;
    margin: 2rem 0 11.5rem 0;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .case-info{
    margin-bottom: 3rem;
  }
  .case-info__item{
    padding: 0 2rem;
    position: relative;
  }
  .case-info__item:first-child:before{
    content: "";
    background: url("../images/shared/arrow01.svg") center center no-repeat;
    background-size: 100% auto;
    position: absolute;
    display: block;
    width: 0.9rem;
    height: 0.9rem;
    left: 0;
    right: 0;
    bottom: -2.1rem;
    margin: 0 auto;
    transform: rotate(90deg);
  }
  .case-info__item:first-child{
    margin-bottom: 3.2rem;
  }
  .case-info__h{
    font-size: 1.4rem;
    padding: 0.1rem 1rem;
    margin: 0 -2rem;
  }
  .case-info__table th,
  .case-info__table td{
    padding: 1.2rem 0;
    vertical-align: middle;
  }
  .case-info__table th{
    width: 6em;
    font-size: 1.2rem;
  }
  .case-info__table td{
    font-size: 1.8rem;
  }
  .case-info__table td span{
    font-size: 1.4rem;
  }
  .case-text{
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 3rem;
  }
}

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

サービスの流れ

==================================================*/
.flow-step__item{
  background-color: #fff;
  position: relative;
}
.flow-step__item.-step02{
  z-index: 2;
}
.flow-step__item:after{
  content:"";
  background: url("../images/service-flow/arrow.svg") center center no-repeat;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.flow-step__item.-step02:after,
.flow-step__item:last-child:after{
  content:none;
}
.flow-step__number{
  color: #BCAB63;
  font-family: "EB Garamond";
  line-height: 1;
  text-align: center;
}
.flow-step__title{
  font-family: "Noto Serif JP";
  line-height: 1.55;
  position: relative;
}
.flow-step__title:before{
  content: "";
  background-color: #BCAB63;
  width: 0.2rem;
  position: absolute;
  left: 0;
  display: block;
}
.flow-step__note{
  font-size: 1.4rem;
  line-height: 1.7;
}
.flow-step__list li{
  position: relative;
  line-height: 1.625;
  padding-left: 2rem;
}
.flow-step__list li:before{
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  background-color: #BCAB63;
  border-radius: 50%;
  display: block;
}
.flow-step__guidance{
  position: relative;
}
.flow-step__guidance:before{
  content:"";
  width: 1px;
  background-color: #BCAB63;
  display: block;
  position: absolute;
}
.flow-step__guidance:after{
  content:"";
  background: url("../images/service-flow/arrow.svg") center center no-repeat;
  display: block;
  position: absolute;
}
.flow-step__text04{
  background-color: #ADA27C;
  position: relative;
  color: #fff;
  font-family: "Noto Serif JP";
  z-index: 2;
}
.flow-step__text05{
  background-color: #fff;
  box-sizing: border-box;
  position: relative;
}
.flow-step__left{
  background-color: #ADA27C;
  position: relative;
  color: #fff;
  font-family: "Noto Serif JP";
  text-align: center;
}
.flow-step__text05:before{
  content:"";
  width: 1px;
  background-color: #BCAB63;
  display: block;
  position: absolute;
}
.flow-step__text05:after{
  content:"";
  background: url("../images/service-flow/arrow.svg") center center no-repeat;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.flow-step__left:after,
.flow-step__text04:after{
  content: "";
  border: 1px #BFB698 solid;
  position: absolute;  
}

/* PC */
@media print,only screen and (min-width: 768px){   
  .flow-step__item{
    margin-bottom: 8.6rem;
    padding: 8rem;
    display: flex;
    justify-content: space-between;
    gap:0 8rem;
  }
  .flow-step__item.-step02{
    margin-bottom: 7.2rem;
  }
  .flow-step__item:after{
    width: 2.1rem;
    height: 2.2rem;
    bottom: -5.5rem;
  }
  .flow-step__number{
    width: 5.6rem;
    font-size: 6rem;
    margin-top: 0.5rem;
  }
  .flow-step__step{
    font-size: 1.6rem;
    letter-spacing: .23em;
  }
  .flow-step__texts{
    font-size: 1.6rem;
    flex: 1;
  }
  .flow-step__title{
    font-size: 2.6rem;
    padding-left: 1.8rem;
    margin-bottom: 1.9rem;
  }
  .-step02 .flow-step__title{
    margin-bottom: 1rem;
  }
  .flow-step__title:before{
    width: 0.2rem;
    top: 0.9rem;
    bottom: 0.7rem;
  }
  .flow-step__text01{
    line-height: 2;
  }
  .flow-step__text02{
    line-height: 1.82;
    margin-bottom: 1.8rem;
  }
  .flow-step__text03{
    line-height: 2;
  }
  .flow-step__note{
    margin-bottom: 2rem;
  }
  .flow-step__note{
    margin: 1.8rem 0 0 0;
  }
  .flow-step__list li{
    line-height: 1.625;
    margin-bottom: 0.3rem;
  }
  .-step01 .flow-step__image,
  .-step03 .flow-step__image,
  .-step05 .flow-step__image{
    width: 32.38%;
  }
  .-step02 .flow-step__image,
  .-step04 .flow-step__image{
    width: 19.05%;
    order: 2;
  }
  .-step02 .flow-step__texts,
  .-step04 .flow-step__texts{
    order: 3;
  }
  .flow-step__guidance{
    min-height: 28.3rem;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 7.2rem;
  }
  .flow-step__guidance:before{
    left: 24.1%;
    top: -7.5rem;
    bottom: -4.8rem;
  }
  .flow-step__guidance:after{
    width: 2.1rem;
    height: 2.2rem;
    bottom: -5.5rem;
    left: calc( 24.1% - 1.05rem );
  }
  .flow-step__right{
    width: 48.3%;
    order: 2;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap:4.4rem 0;
  }
  .flow-step__text04{
    min-height: 8.6rem;
    font-size: 2.2rem;
    line-height: 1.727;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
  }
  .flow-step__text05{
    min-height: 15.2rem;
    font-size: 1.6rem;
    line-height: 2;
    padding: 3rem 3.2rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .flow-step__left{
    width: 48.3%;
    font-size: 2.2rem;
    line-height: 1.727;
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
  }
  .flow-step__text05:before{
    left: 50%;
    top: -20.5rem;
    bottom: calc( 100% + 0.5rem );
  }
  .flow-step__text05:after{
    width: 2.1rem;
    height: 2.2rem;
    top: -2.6rem;
  }
  .flow-step__left:after,
  .flow-step__text04:after{
    inset:0.8rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	 
  .flow-step__item{
    margin-bottom: 3.7rem;
    padding: 3rem 2rem 2rem 2rem;
  }
  .flow-step__item.-step02{
    margin-bottom: 2.05rem;
  }
  .flow-step__item:after{
    width: 1.6rem;
    height: 1.7rem;
    bottom: -2.7rem;
  }
  .flow-step__number{
    font-size: 3.5rem;
    position: absolute;
    top: 3.1rem;
    left: 2rem;
    line-height: 0.9;
  }
  .flow-step__step{
    font-size: 1.2rem;
    letter-spacing: .15em;
  }
  .flow-step__texts{
    font-size: 1.6rem;
  }
  .flow-step__title{
    font-size: 1.8rem;
    padding-left: 1.5rem;
    margin:0 0 2rem 5.5rem;
  }
  .-step03 .flow-step__title,
  .-step04 .flow-step__title,
  .-step05 .flow-step__title{
    margin-top: 1.2rem;
  }
  .flow-step__title:before{
    width: 0.2rem;
    top: 0.5rem;
    bottom: 0.2rem;
  }
  .flow-step__text01{
    line-height: 1.75;
  }
  .flow-step__text02{
    line-height: 1.75;
    margin-bottom: 1.6rem;
  }
  .flow-step__text03{
    line-height: 2;
  }
  .flow-step__note{
    margin:0.5rem 0 1.6rem 0;
  }
  .flow-step__list li{
    line-height: 1.75;
  }
  .flow-step__image{
    width: 100%;
    margin-top: 1.6rem;
  }
  .flow-step__guidance{
    font-size: 1.6rem;
    line-height: 1.75;
    margin-bottom: 4.4rem;
  }
  .flow-step__guidance:before{
    left: 2.95rem;
    top: -7.5rem;
    bottom: -2.5rem;
  }
  .flow-step__guidance:after{
    width: 1.6rem;
    height: 1.7rem;
    bottom: -3.3rem;
    left: 2.2rem;
  }
  .flow-step__right{
    margin-left: 5.5rem;
  }
  .flow-step__text04{
    padding: 2rem;
    margin-bottom: 3.5rem;
    text-align: center;
  }
  .flow-step__text05{
    padding: 2rem;
    margin-bottom: 4rem;
  }
  .flow-step__left{
    padding: 2rem;
  }
  .flow-step__text05:before{
    left: 50%;
    top: -20.5rem;
    bottom: calc( 100% + 2rem );
  }
  .flow-step__text05:after{
    width: 1.6rem;
    height: 1.7rem;
    top: -2.6rem;
  }
  .flow-step__left:after,
  .flow-step__text04:after{
    inset:1rem;
  }
}