html,body{
  font-family: 'Montserrat', 'Noto Sans JP', 'Hiragino Sans' , 'ヒラギノ角ゴ ProN', Hiragino Kaku Gothic ProN, 'メイリオ', Meiryo, '游ゴシック Medium', YuGothic, YuGothicM, sans-serif;
  font-weight: 500;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #0D2139;
	line-height: 1.7;
  letter-spacing: 0.04em;
}
a{
  color: #0D2139;
  transition: opacity 0.3s, color 0.3s;
}
a:hover{ opacity: 0.7; }
img,picture{
	max-width: 100%;
	display: block;
}
.overflow{ overflow: hidden; }

.or{ color: #FFA602; }




#wrapper{
  padding-top: 11.6rem;
}

.nav{
  width: 100%;
  height: 11.6rem;
  background: #fff;
  box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.16);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;

  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.nav a.logo{
  display: block;
  width: 19.7rem;
  margin: 0 auto 0 5rem;
}
.nav ul.nav-li{
  display: flex;
  margin-right: 5rem;
  font-size: 1.8rem;
  font-weight: 700;
}
.nav ul.nav-li li + li{
  margin-left: 5rem;
}
.nav > a.nav-contact{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 24.8rem;
  height: 5.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  border: 1px solid #1B325B;
  margin-right: 5rem;
}
.nav > a.nav-contact::before{
  content: "";
  display: block;
  width: 2.2rem;
  height: 1.8rem;
  background: url(../images/common/ico-mail.svg) center center no-repeat;
  background-size: contain;
}


.pera{
  display: flex;
  justify-content: center;
}
.pera img{
  width: 100%;
  min-width: 168rem;
}
@media (max-width: 768px){
.pera img{
  min-width: 100%;
}
}


.fv{
  background: url(../images/home/fv-bg.jpg) center center no-repeat;
  background-size: cover;
  height: 66rem;
  padding: 23rem 0 0;
}
.fv .content{
  max-width: 132rem;
  padding: 0 3rem;
  height: 100%;
  position: relative;
}
.fv h1{
  width: fit-content;
}
.fv h1 span{
  display: block;
  text-align: right;
  font-size: 2.8rem;
  margin: 0 3.7rem 0.5em;
}
.fv h1 img{
  width: 62.7rem;
}
.fv img.fv-img{
  width: 49.7rem;
  max-width: 39vw;
  position: absolute;
  right: 3rem;
  bottom: -3.4rem;
}


.cta{
  padding: 7rem 0;
  background: #F2F2F2;
}
.cta .content{
  display: flex;
}
.cta .content > div + div{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 4rem;
  margin-left: 4rem;
  border-left: 1px solid #707070;
}
.cta .content .wrap-1 .h2-en{
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.1em;
}
.cta .content .wrap-1 h2{
  font-size: 3.2rem;
  margin-bottom: 3rem;
}
.cta .content .wrap-2{
  align-items: center;
  font-size: 1.8rem;
}
.cta .content .wrap-2 a.tel{
  display: flex;
  align-items: center;
  gap: 0.3em;
  font-size: 2.8rem;
  margin: 0.4em 0 0.2em;
}
.cta .content .wrap-2 a.tel::before{
  content: "";
  display: block;
  width: 0.89em;
  height: 1.18em;
  background: url(../images/common/ico-tel.svg) center center no-repeat;
  background-size: contain;
}
.cta .content .wrap-2 small{
  display: block;
  font-size: 1.4rem;
}
.cta .content .wrap-3 a.btn{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 29rem;
  line-height: 5.2rem;
  background: #0D2139;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin: 0 auto;
}


footer{
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  background: #0D2139;
  color: #fff;
  padding: 6rem 5rem 10rem;
}
footer a{ color: #fff; }
footer a.logo{
  display: block;
  width: 24.8rem;
}
footer ul.footer-nav{
  display: flex;
  gap: 4.8rem;
}
footer ul.footer-nav li{
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}
footer .copy{
  font-weight: 700;
  margin-top: 2rem;
}




/* スクロールアニメ */
.fade-b,
.fade-b-ct > *{
  opacity: 0;
  transition: opacity 1s, transform 1s;
}

.fade-b,
.fade-b-ct > * { transform: translateY(3rem); }

.fade-b.load,
.fade-b-ct.load > *{
  opacity: 1;
  transform: translate(0);
}

.fade-b-ct.load > :nth-child(2) { transition-delay: 0.2s; }
.fade-b-ct.load > :nth-child(3) { transition-delay: 0.4s; }

.fade-b-ct.load > :nth-child(2),
.fade-b-ct.load > :nth-child(3) {
  transition-property: opacity, transform;
}


/* ロード画面 */
#loading { display: none; }
.home #loading {
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home #loading img {
  width: 24rem;
}
.home #loading.loaded {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s, visibility 1s;
}


/* ページトップ */
#pagetop {
  display: none;
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 997;
}
#pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  width: 4rem;
  height: 4rem;
  background-color: #FFA602;
}
#pagetop a img {
  width: 1.6rem;
  margin-top: -0.2rem;
}




/*　PC
------------------------------------------------------------------------------------------------*/
@media (min-width: 769px){
.sp{ display: none !important; }

html{ font-size: 10px; }
body{ font-size: 1.6rem; }

.content{
  width: 100%;
	max-width: 118rem;
  padding: 0 5rem;
	margin: 0 auto;
}




/*　タブレット
------------------------------------------------------------------------------------------------*/
@media (max-width: 1180px){

html{ font-size: 0.847vw; }




}/*　タブレットここまで */
}/*　PCここまで */




/*　スマホ
------------------------------------------------------------------------------------------------*/
@media (max-width: 768px){
.pc{ display: none !important; }

html{ font-size: 2.56vw; }
body{ font-size: 1.4rem; }

.content{
	width: 100%;
	padding: 0 2.2rem;
}


#wrapper{
  padding-top: 8rem;
}

.nav{
  height: 8rem;
}
.nav a.logo{
  width: 11.5rem;
  margin: 0 auto 0 2.2rem;
}


#nav-open {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 7.6rem;
  height: 8rem;
  cursor: pointer;
  margin-left: auto;
  position: relative;
  z-index: 3;
}
#nav-open span,#nav-open span:before,#nav-open span:after {
  content: "";
  display: block;
  background: #0D2139;
  height: 2px;
  width: 3.2rem;
  position: absolute;
  transition: .3s ease-in-out;
}
#nav-open span{
  transition: background 0s .15s;
}
#nav-open span:before {
  bottom: 0.8rem;
  transform: rotate(0);
  transition: bottom .15s .15s, transform .15s;
}
#nav-open span:after {
  bottom: -0.8rem;
  transform: rotate(0);
  transition: bottom .15s .15s, transform .15s;
}

#nav-content {
  display: block;
  width: 100%;
  height: calc(100% - 8rem);
  background: #fff;
  position: fixed;
  top: 8rem;
  right: 0;
  z-index: 2;

  overflow-y: scroll;
  overscroll-behavior: contain;
  -ms-overflow-style: none; /* バー非表示 IE・Edge用 */
  scrollbar-width: none; /* バー非表示 Firefox用 */

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#nav-content::before{
  content: "";
  display: block;
  width: 1px;
  height: calc(100% + 1px);
  position: absolute;
  left: 0;
  top: 0;
}
/* バー非表示 Chrome・Safari用 */
#nav-content::-webkit-scrollbar{
  display: none;
}
#nav-content.active {
  opacity: 1;
  pointer-events: unset;
}
#nav-open.active span {
  background: transparent;
}
#nav-open.active span:before {
  bottom: 0;
  transform: rotate(-30deg);
  transition: bottom .15s, transform .15s .15s;
}
#nav-open.active span:after {
  bottom: 0;
  transform: rotate(30deg);
  transition: bottom .15s, transform .15s .15s;
}


#nav-content .content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2.2rem;
  min-height: 100%;
}
ul.hum-nav-li li{
  font-size: 2.4rem;
  font-weight: 700;
}
ul.hum-nav-li li + li{
  margin-top: 3rem;
}
#nav-content .btn-wrap{
  display: grid;
  gap: 1.6rem;
  margin-top: 6rem;
}
#nav-content .btn-wrap a{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  height: 5.2rem;
  border-radius: 2.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}
#nav-content a.nav-contact{
  background: #0D2139;
}
#nav-content a.nav-contact::before{
  content: "";
  display: block;
  width: 2.2rem;
  height: 1.8rem;
  background: url(../images/common/ico-mail_w.svg) center center no-repeat;
  background-size: contain;
}
#nav-content a.nav-apply{
  background: #FF9B00;
}
#nav-content a.nav-apply::before{
  content: "";
  display: block;
  width: 0.8rem;
  height: 100%;
  background: url(../images/common/arrow-right_w.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  right: 4.3rem;
  top: 0;
}


.fv{
  background: url(../images/home/fv-bg_sp.jpg) center bottom no-repeat;
  background-size: cover;
  height: 69.5rem;
  padding: 22rem 0 0;
}
.fv .content{
  max-width: 132rem;
  padding: 0 4.4rem;
}
.fv h1 span{
  text-align: center;
  font-size: 1.8rem;
  margin: 0 0 0.6em;
}
.fv img.fv-img{
  width: calc(100% - 4.4rem);
  max-width: unset;
  right: 2.2rem;
  bottom: -7rem;
}


.cta{
  padding: 4rem 0;
}
.cta .content{
  display: block;
}
.cta .content > div + div{
  padding: 3rem 0 0;
  margin: 3rem 0 0;
  border-left: none;
  border-top: 1px solid #707070;
}
.cta .content .wrap-1 .h2-en{
  font-size: 1.4rem;
}
.cta .content .wrap-1 h2{
  font-size: 2.4rem;
}
.cta .content .wrap-2{
  font-size: 1.6rem;
}
.cta .content .wrap-2 a.tel{
  font-size: 2.4rem;
}
.cta .content .wrap-2 small{
  font-size: 1.2rem;
}


footer{
  text-align: center;
  grid-template-columns: 1fr;
  padding: 8rem 2.2rem 2.5rem;
}
footer a.logo{
  width: 17.3rem;
  margin: 0 auto 5rem;
}
footer ul.footer-nav{
  display: grid;
  gap: 2.5rem;
}
footer .copy{
  font-size: 1.2rem;
  margin-top: 8rem;
}


.home #loading img {
  width: 16rem;
}




}/*　スマホここまで */



