@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 li{
    border-top: 1px #383838 solid;
  }
  .nav-footer:first-child li{
    border-right: 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 9rem 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{
		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:21rem 0 18.3rem 0;
  }
  .m-pageTitle.-prev{
    background: url("../images/shared/title-bg.jpg") center top no-repeat;
    background-size: cover;
    padding:21rem 0 18.3rem 0;
  }
  .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;
}
.m-bread__inner{
	display: flex;
	justify-content: flex-start;
	gap:0 2rem;
}
.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{
		max-width: 100rem;
		margin: 0 auto 2rem auto;
	}
	.m-bread li{
		font-size: 1.3rem;
	}
	.m-bread a{
		background-size: 1rem auto;
		padding-right: 2rem;
	}
}

/* SP */
@media screen and (max-width: 767px){	
	.m-bread{
		margin: 1rem 3rem;
	}
	.m-bread li{
		font-size: 1.3rem;
	}
	.m-bread a{
		background-size: 1rem auto;
		padding-right: 2rem;
	}
}

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

トップページ

==================================================*/
/* メイン
--------------------------------------------------*/
 .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.71;
  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;
  }
}


	
/* 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;
}
.home-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;
  }
}

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

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

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

.home-aboutBg{
  background-color:  #292B33;
  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(3.5rem,2.8vw);
  }
  .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.6rem,0.896vw);
    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 .home-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;
  }
}
/* スカウト・ヘッドハンティングとはページ */
.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;
  }
}
/* 移籍事例
--------------------------------------------------*/
.home-case{
  /* background-color:#fff; */
  position: relative;
  z-index: 5;
}
.home-case__intro{
  line-height: 1.75;
}
.home-case__image{
  position: relative;
}
.home-case__item{
  position: relative;
  box-sizing: border-box;
}
.home-case__item:before{
  content: "";
  width: 28.2rem;
  height: 28.2rem;
  position: absolute;
  top: 0;
  left: 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%);
}
.home-case__item.slick-list{
  overflow: visible;
}
.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");
}
.home-case__number{
  position: absolute;
  transform: rotate(90deg);
  color: #8C8E9A;
  font-family: "EB Garamond";
}
.home-case__texts{
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.home-case__text01{
  font-family: "Noto Serif JP";
  line-height: 1.625;
}
.home-case__text02{
  color: #56607E;
}
.home-case__text02 span{
  display: block;
}
.home-case__detail{
  display: flex;
  position: relative;
}
.home-case__detail:before{
  background: url("../images/shared/arrow01.png") center center no-repeat;
}
.home-case__detail:after{
  background: url("../images/shared/arrow02.png") center center no-repeat;
}
.home-case__detail:before,
.home-case__detail:after{
  content: "";
  background-size: 100% auto;
  position: absolute;
  display: block;
  z-index: 10;
}
.home-case__heading{
  display: flex;
  position: relative;
}
.home-case__title{
  white-space: nowrap;
  display: flex;
  flex-direction: column;
}
.home-case__title div{
  display: flex;
  align-items: center;
}
.home-case__before{
  background-color: rgba(212,214,221,0.4);
  text-align: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.home-case__after{
  background-color: rgba(255,255,255,0.4);
  text-align: center;
}
.home-case__h{
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-case__before .home-case__h{
  background-color: #8C8E9A;
}
.home-case__after .home-case__h{
  background-color: #ADA27C;
}
.home-case__text{
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-case__positionincome{
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.home-case__position,
.home-case__income{
  display: flex;
  align-items: center;
}
.home-case__before .home-case__positionincome{
  background-color: #EDEEEF;
  color: #8C8E9A;
}
.home-case__after .home-case__positionincome{
  background-color: #fff;
  color: #817754;
}
.home-case__afterIn{
  display: flex;
  justify-content: space-between;
}
.home-case__time{
  background-color: #F0EEE4;
  color: #817754;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.2rem;
}
.home-case__before .home-case__time{
  background-color: transparent;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-case{
    padding: 20rem 9rem;
  }
  .home-case .slick-list {
    padding: 0 0 0 5.6rem!important;
  }
  .home-case__items{
    margin: 0 -9rem;
  }
  .home-case__item{
    width: 61rem!important;
    margin-left: 7rem;
    padding: 7.3rem 0 0 7rem;
    grid-gap:4.8rem 5.6rem;
    box-sizing: border-box;
  }
  .home-case__intro{
    margin-bottom: 8rem;
  }
  .home-case__item:before{
    top: 0;
    left: 1.4rem;
  }
  .home-case__controls{
    text-align: right;
  }
  .slick-arrow{
    width: 8.8rem;
    height: 4rem;
    background-size: 0.85rem;
    margin: 5.6rem 0 3.2rem 0;
  }
  .slick-prev{
    margin-right: 1rem;
  }
  .home-case__number{
    top: 3.2rem;
    left: -4.5rem;
    font-size: 1.4rem;
  }
  .home-case__text01{
    font-size: 2rem;
    margin-bottom: 1.4rem;
  }
  .home-case__text02{
    font-size: 1.4rem;
  }
  .home-case__text02 span{
    font-size: 1.2rem;
  }
  .home-case__detail{
    gap:0 1.7rem;
  }
  .home-case__detail:before{
    left: 21.5rem;
  }
  .home-case__detail:after{
    left: 37.9rem;
  }
  .home-case__detail:before,
  .home-case__detail:after{
    width: 0.8rem;
    height: 0.8rem;
    bottom: 5.7rem;
    z-index: 10;
  }
  .home-case__heading{
    gap:2.1rem;
    padding-left: 1.5rem;
    margin-bottom: 3.4rem;
  }
  .home-case__texts{
    width: calc( 100% - 17.5rem );
  }
  .home-case__image{
    width: 15.4rem;
  }
  .home-case__title{
    width: 3.3rem;
    font-size: 1.4rem;
  }
  .home-case__title div:first-child{
    height: 2.6rem;
  }
  .home-case__title div:nth-child(2){
    height: 7.6rem;
  }
  .home-case__title div:nth-child(3){
    height: 2.2rem;
  }
  .home-case__title div:nth-child(4){
    height: 5.2rem;
    margin-top: 0.9rem;
  }
  .home-case__title div:nth-child(5){
    height: 5.2rem;
    margin-top: -0.7rem;
  }
  .home-case__before,
  .home-case__after{
    padding: 0 1rem 1rem 1rem;
  }
  .home-case__before{
    width: 16rem;
  }
  .home-case__after{
    width: 31.2rem;
  }
  .home-case__h{
    height: 2.6rem;
    font-size: 1.3rem;
    margin: 0 -1rem;
  }
  .home-case__text{
    height: 7.6rem;
    font-size: 1.4rem;
  }
  .home-case__positionincome{
    height: 10.4rem;
    font-size: 1.6rem;
  }
  .home-case__position{
    margin-top: 1rem;
  }
  .home-case__income{
    margin-top: 1.8rem;
  }
  .home-case__afterInIn{
    width: 14rem;
  }
  .home-case__time{
    height: 2.2rem;
    font-size: 1.2rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-case{
    padding: 5rem 3rem 8rem 3rem;
  }
  .home-case__items{
    margin: 0 -3rem 2rem -3rem;
  }
  .home-case__intro{
    margin-bottom: 4.7rem;
  }
  .home-case__item{
    width: 31.8rem!important;
    padding:3rem 0 0 5rem;
    grid-gap:2.5rem 2.5rem;
  }
  .home-case__item:before{
    top: 0;
    left: 2rem;
  }
  .home-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;
  }
  .home-case__number{
    top: 2rem;
    left: -2rem;
    font-size: 1rem;
  }
  .home-case__texts{
    width: 17.4rem;
    min-height: 9em;
  }
  .home-case__text01{
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .home-case__text02{
    font-size: 1.1rem;
  }
  .home-case__text02 span{
    font-size: 1rem;
  }
  .home-case__detail{
    gap:0 0.8rem;
    margin-left: -1rem;
  }
  .home-case__detail:before{
    left: 10.5rem;
  }
  .home-case__detail:after{
    left: 19.3rem;
  }
  .home-case__detail:before,
  .home-case__detail:after{
    width: 0.5rem;
    height: 0.4rem;
    bottom: 3.6rem;
    z-index: 10;
  }
  .home-case__heading{
    justify-content: space-between;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }
  .home-case__texts{
    width: calc( 100% - 8rem );
  }
  .home-case__image{
    width: 6.8rem;
  }
  .home-case__title{
    width: 2rem;
    font-size: 1rem;
  }
  .home-case__title div:first-child{
    height: 1.9rem;
  }
  .home-case__title div:nth-child(2){
    height: 4.6rem;
  }
  .home-case__title div:nth-child(3){
    height: 1.8rem;
  }
  .home-case__title div:nth-child(4){
    height: 3.75rem;
  }
  .home-case__title div:nth-child(5){
    height: 3.75rem;
  }
  .home-case__before,
  .home-case__after{
    padding: 0 0.5rem 0.5rem 0.5rem;
  }
  .home-case__before{
    width: 7.5rem;
  }
  .home-case__after{
    width: 16.7rem;
  }
  .home-case__h{
    height: 1.9rem;
    font-size: 1rem;
    margin: 0 -0.5rem;
  }
  .home-case__text{
    height: 4.6rem;
    font-size: 1rem;
  }
  .home-case__positionincome{
    height: 7.5rem;
    font-size: 1.2rem;
    padding: 0 0.5rem;
  }
  .home-case__position{
    height: 3.75rem;
  }
  .home-case__income{
    height: 3.75rem;
  }
  .home-case__afterIn{
    gap:0 0.7rem;
  }
  .home-case__afterInIn{
    width: 7.5rem;
  }
  .home-case__time{
    height: 1.8rem;
    font-size: 1rem;
  }
}

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

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

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

/* 導入部分
--------------------------------------------------*/
.scout-about__inner{
  position: relative;
}
.scout-about__text{
  display: flex;
  align-items: center;
  color: #fff;
  opacity: 0;
  margin: 0 auto;
}
.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: url("../images/scout/source-bg.jpg") center center no-repeat;
    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;
  }
}

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

ページ名

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

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

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

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

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

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

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

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

prev

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

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

.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){	
}

