html,body{
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans" , Meiryo, YuGothic, YuGothicM, sans-serif;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 2;
  letter-spacing: 0.1em;
}

.headline{
  font-family: "Nunito", sans-serif;
  font-weight: 700;
}

header,footer,div,section,article,nav,a,p,span,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,img,dl,dt,dd,form,input,textarea{ box-sizing: border-box; }
::selection { background: #ddd; }
::-moz-selection { background: #ddd; }
a{
  color: #fff;
  transition: opacity 0.4s, color 0.4s, border 0.4s, background 0.4s;
  text-decoration: none;
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer */
  -khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */
  -webkit-user-select: none; /* Chrome, Safari, and Opera */
  -webkit-touch-callout: none; /* Disable Android and iOS callouts*/
}
a:hover{ cursor: pointer; }
path{ transition: stroke 0.4s; }
img,picture{
	max-width: 100%;
	display: block;
}
.clear{ clear: both; }
.overflow{ overflow: hidden; }

body{
  background: #00326C;
  color: #FFF;
}

body.home{
  background: #111111;
}

body{ padding-top: 30rem; }

.anchor{
  padding-top: 18rem;
  margin-top: -18rem;
}

nav a.logo{
  display: flex;
  align-items: center;
  width: 24.4rem;
  /* height: 4rem; */

  position: fixed;
  top: 7rem;
  left: 5rem;
  z-index: 999;
}
nav a.logo:hover{
  opacity: 0.6;
}

nav ul.language{
  display: flex;
  align-items: center;
  height: 3.8rem;
  border-radius: 2rem;
  border: 1px solid;
  font-size: 1.6rem;
  padding: 0 1.2em;

  position: fixed;
  top: 7rem;
  left: 19rem;
  z-index: 999;
  transition: color 0.3s;
}
nav ul.language.active,
nav ul.language.active a{
  color: #fff;
}
nav ul.language li{
  line-height: 1.4;
}
nav ul.language li + li{
  margin-left: 0.7em;
  padding-left: 0.7em;
  border-left: 1px solid;
}
nav ul.language li a{ opacity: 0.2; }
nav ul.language li a:hover{ opacity: 1; }

header,nav{
  background:#111111;
}

#nav-open {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 8rem;
  cursor: pointer;

  position: fixed;
  top: 5rem;
  right: 5rem;
  z-index: 999;
}
#nav-open span,#nav-open span:before,#nav-open span:after {
  content: "";
  display: block;
  background: #FFF;
  height: 0.2rem;
  width: 8rem;
  position: absolute;
  transition: .3s ease-in-out;
}
#nav-open span{
  background: transparent;
}
#nav-open span:before {
  bottom: 0.9rem;
  transform: rotate(0);
  transition: bottom .15s .15s, transform .15s, background 0.3s;
}
#nav-open span:after {
  bottom: -0.9rem;
  transform: rotate(0);
  transition: bottom .15s .15s, transform .15s, background 0.3s;
}
#nav-open.active span:before {
  background: #fff;
  bottom: 0;
  transform: rotate(-28deg);
  transition: bottom .15s, transform .15s .15s, background 0.3s;
}
#nav-open.active span:after {
  background: #fff;
  bottom: 0;
  transform: rotate(28deg);
  transition: bottom .15s, transform .15s .15s, background 0.3s;
}

#nav-content{
  display: block;
  width: 100%;
  height: 100%;
  background: #00326C;
  color: #fff;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;

  overflow-y: scroll;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;

  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
#nav-content::after{
  content: "";
  display: block;
  width: 1px;
  height: calc(100% + 1px);
  position: absolute;
  left: 0;
  top: 0;
}
#nav-content.active{
  opacity: 1;
  pointer-events: inherit;
}
#nav-content .bg{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.2s;
}
#nav-content .bg.on{
  opacity: 1;
}
#nav-content .bg.company{
  background: url(../images/common/nav-company-bg.jpg) center center no-repeat;
  background-size: cover;
  opacity: 1;
  z-index: 0;
}
#nav-content .bg.business{
  background: url(../images/common/nav-business-bg.jpg) center center no-repeat;
  background-size: cover;
}
#nav-content .bg.nev{
  background: url(../images/common/nav-nev-bg.jpg) center center no-repeat;
  background-size: cover;
}
#nav-content .bg.news{
  background: url(../images/common/nav-news-bg.jpg) center center no-repeat;
  background-size: cover;
}
#nav-content .bg.recruit{
  background: url(../images/common/nav-recruit-bg.jpg) center center no-repeat;
  background-size: cover;
}
#nav-content .bg.contact{
  background: url(../images/common/nav-contact-bg.jpg) center center no-repeat;
  background-size: cover;
}

#nav-content a{
  display: block;
  color: #fff;
}
#nav-content a:hover{ color: rgba(255,255,255,0.24); }
#nav-content a:hover svg path{ stroke: rgba(255,255,255,0.24); }

#nav-content .content{
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 18rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 2;
}
#nav-content .wrap{
  width: 100%;
  max-width: 150rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 10rem;
}
#nav-content .wrap > div{
  display: flex;
  flex-direction: column;
}
#nav-content .wrap > div > div:not(:last-child) {
  margin-bottom: 9rem;
}
#nav-content .wrap > div > .nav-footer{
  margin-top: auto;
}

#nav-content .ttl{
  font-size: 5.9rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.03em;
}
#nav-content .ttl span{
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 0.6em;
}
[lang=en] #nav-content .ttl span{
  display: none;
}
#nav-content ul.child li a{
  color: #767676;
  padding-bottom: 0.5rem;
}
#nav-content ul.child li:first-child a{
  padding-top: 2.5rem;
}
#nav-content ul.child li a:hover{
  color: #42B8CA;
}
#nav-content ul.lower{
  font-size: 1.6rem;
  margin-top: 4rem;
}
#nav-content ul.lower li + li{
  margin-left: 1.5em;
}
#nav-content .copy{
  font-size: 1.4rem;
  color: rgba(255,255,255,0.24);
  margin-top: 6rem;
  letter-spacing: 0.03em;
}


h1.h1-1{
  font-size: 11.4rem;
  line-height: 1.1;
  letter-spacing: 0;
}
.h1-1-btm{
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.7em;
  margin-bottom: 12rem;
}
[lang=en] h1.h1-1{
  margin-bottom: 12rem;
}
[lang=en] .h1-1-btm{
  display: none;
}
.common-header .header-img{
  width: calc(50% + 55rem);
  height: 76rem;
  object-fit: cover;
  border-radius: 1rem 0 0 1rem;
  margin: 0 0 24rem auto;
}
.common-header .header-img.business-header{
  margin-bottom: 6rem;
}
.common-header .header-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.common-header .header-img video{
  display: block;
  width: 102%;
  height: 100%;
  transform: translateX(-1%);
  object-fit: cover;
}
@media (max-width: 1860px){
.common-header .header-img{
  height: 40.86vw;
}
}


section,
article,
footer{
  background: #00326C;
  position: relative;
  z-index: 1;
}
.flexbox {
  display: flex;
  flex-wrap: wrap;
}
.flexbox .flexcell {
}

.common-sec{
  padding: 0 0 6rem;
}


a svg.ext{
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  margin-left: 0.1em;
}
a.ext::after{
  content: "";
  display: inline-block;
  width: 0.83em;
  height: 0.83em;
  background: url(../img/arrow-ext1.svg) center center no-repeat;
  background-size: contain;
  margin-left: 0.3em;
}
a.insideLin,
a.outerLink {
  background-color: #fff;
  border-color: #1C1E1F;
  color: #1C1E1F;
}
a.insideLin.wh,
a.outerLink.wh {
  background-color: #1C1E1F;
  border-color: #FFF;
  color: #FFF;
}
a:hover.insideLin,
a:hover.outerLink {
  background-color: #1C1E1F;
  border-color: #FFF;
  color: #FFF;
}
a:hover.insideLin.wh,
a:hover.outerLink.wh {
  background-color: #FFF;
  border-color: #1C1E1F;
  color: #1C1E1F;
}
a.insideLink::after,
a.outerLink::after {
  content: "";
  display: block;
  position: absolute;
  right: 2em;
  width: 0.83em;
  height: 0.83em;
  background-size: contain;
  margin-left: 0.3em;
}
a.outerLink::after {
  background: url(../img/ico-viewmore-outer.svg) center center no-repeat;
}
a.insideLink::after {
  background: url(../img/ico-viewmore-inside.svg) center center no-repeat;
}
a.outerLink.wh::after {
  background: url(../img/ico-viewmore-outer-wh.svg) center center no-repeat;
}
a.insideLink.wh::after {
  background: url(../img/ico-viewmore-inside-wh.svg) center center no-repeat;
}
a:hover.outerLink::after {
  background: url(../img/ico-viewmore-outer-wh.svg) center center no-repeat;
}
a:hover.insideLink::after {
  background: url(../img/ico-viewmore-inside-wh.svg) center center no-repeat;
}
a:hover.outerLink.wh::after {
  background: url(../img/ico-viewmore-outer.svg) center center no-repeat;
}
a:hover.insideLink.wh::after {
  background: url(../img/ico-viewmore-inside.svg) center center no-repeat;
}
.view-btn{
  display: flex;
  align-items: center;
  width: 24rem;
  height: 6.2rem;
  border-radius: 3.2rem;
  padding: 0 4rem;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  border: 1px solid;
  margin-top: 8rem;
  position: relative;
}
.view-btn svg{
  width: 1.7rem;
  stroke: #FFF;
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
}
.view-btn svg.ext-svg{
  width: 1.5rem;
}
.view-btn.wh{ color: #fff; }
.view-btn.wh svg{ stroke: #fff; }

.view-btn:hover,
.view-btn.wh:hover{
  border: 1px solid #fff;
  background: #fff;
  color: #111;
}
.view-btn:hover svg,
.view-btn.wh:hover svg{
  stroke: #111;
}

.mt1em {
  margin-top: 1em;
}

.h-1{
  font-size: 3.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.h-2{
  font-size: 4rem;
  line-height: 1.6;
  margin-bottom: 1em;
}
p.h-2-btm{
  max-width: 143rem;
}


footer{
  padding: 16rem 0;
  background-color: #111;
}
footer a:hover{
  opacity: 0.4;
}
footer .content{
  display: flex;
  justify-content: space-between;
}
footer .left,
footer .right{
  display: flex;
  flex-direction: column;
}
footer .right{
  justify-content: space-between;
  align-items: flex-end;
}
footer a.logo{
  display: block;
  width: 10.4rem;
}
footer ul.sns{
  margin: auto 0 4rem 0;
}
footer .copy{
  margin-top: 1.6rem;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.24);
  letter-spacing: 0.03em;
}
footer ul.footer-nav,
footer ul.lower{
  display: flex;
}
footer ul.footer-nav > li,
footer ul.lower > li{
  display: block;
}
footer ul.footer-nav > li + li{
  margin-left: 5.5rem;
}
html[lang=en] footer ul.footer-nav > li + li{
  margin-left: 3rem;
}
footer ul.footer-nav li ul.child{
  margin-top: 1rem;
}
footer ul.footer-nav li ul.child li{
  display: block;
}
footer ul.footer-nav li ul.child li a{
  font-size: 1.4rem;
  font-weight: 700;
  color: #3F8B98;
}
footer ul.footer-nav li ul.child li a:hover{
  color: #111;
  opacity: 1;
}
footer ul.lower{
  margin-top: 4rem;
}
footer ul.lower li{
  font-size: 1.6rem;
}
footer ul.lower li + li{
  margin-left: 1.5em;
}


.mask{
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.mask.center{ align-items: center; }

.mask > span{
  clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
  transition: clip-path 1.2s;
}
.mask.load > span{
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.mask > span:nth-child(2) { transition-delay: 0.2s; }
.mask > span:nth-child(3) { transition-delay: 0.4s; }
.mask > span:nth-child(4) { transition-delay: 0.6s; }
.mask > span:nth-child(5) { transition-delay: 0.8s; }

.delay200 > span{ transition-delay: 0.2s; }

.mask > span:nth-child(2),
.mask > span:nth-child(3),
.mask > span:nth-child(4),
.mask > span:nth-child(5),
.mask > span,
.mask.delay200 > span{
  transition-property: clip-path;
}


.mask-img{
  overflow: hidden;
  position: relative;
}
.mask-img::before{
  content: "";
  display: block;
  width: 100%;
  height: auto;
  background: #111;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  position: absolute;
  left: 0;
  top: 0;
  transition: clip-path 1.2s;
  z-index: 1;
}
.mask-img.load::before{
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}



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

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

.content{
  width: 100%;
	max-width: 186rem;
  padding: 0 5rem;
	margin: 0 auto;
}
.entry-content .common-sec .content{
  max-width: 130rem;
}




/*
------------------------------------------------------------------------------------------------*/
@media (max-width: 1500px){

html{ font-size: 0.666vw; }




}
}




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

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

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


body{ padding-top: 15rem; }

.anchor{
  padding-top: 15rem;
  margin-top: -15rem;
}

nav a.logo{
  width: 13.7rem;

  top: 3.1rem;
  left: 2.4rem;
}

nav ul.language{
  height: 2.4rem;
  border-radius: 1.3rem;
  font-size: 1.4rem;
  padding: 0 0.8em;

  top: 6.2rem;
  left: 10.7rem;
}
nav ul.language li{
  line-height: 0.9;
}
nav ul.language li + li{
  margin-left: 0.4em;
  padding-left: 0.4em;
}

#nav-content .content{
  flex-direction: column;
  justify-content: center;
  padding-top: 15rem;
  padding-bottom: 3rem;
}

#nav-open {
  width: 6.4rem;
  height: 6.4rem;

  top: 1.6rem;
  right: 2.4rem;
}
#nav-open span,#nav-open span:before,#nav-open span:after {
  height: 1px;
  width: 6.3rem;
}
#nav-open span:before {
  bottom: 0.6rem;
}
#nav-open span:after {
  bottom: -0.6rem;
}

#nav-content .wrap{
  height: 46rem;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 2rem;
}
#nav-content .wrap > div{
  width: 50%;
  padding-right: 1.5rem;
}
#nav-content .wrap > div > div,
#nav-content .wrap > div > div:not(:last-child){
  margin-bottom: 4rem;
}
#nav-content .wrap > div > .nav-footer{
  width: 100%;
}

#nav-content .ttl{
  font-size: 1.8rem;
}
#nav-content .ttl span{
  font-size: 1.3rem;
  margin-top: 0.9em;
}

#nav-content .nav-footer{
  width: 100%;
  position: relative;
  z-index: 2;
}
#nav-content ul.child li:first-child a{
  padding-top: 1.4rem;
}
html[lang=en] #nav-content ul.child li a{
  font-size: 1.15rem;
  line-height: 1.5;
  padding-bottom: 0.9em;
}
#nav-content ul.lower{
  font-size: 1.3rem;
  margin-top: 3.6rem;
}
#nav-content .copy{
  font-size: 1.2rem;
  margin-top: 4rem;
}


h1.h1-1{
  font-size: 4.8rem;
}
.h1-1-btm{
  font-size: 1.6rem;
  margin-top: 0.5em;
  margin-bottom: 4rem;
}
.common-header .header-img{
  width: calc(100% - 7.5rem);
  height: 34.5rem;
  border-radius: 0.5rem 0 0 0.5rem;
  margin: 0 0 8rem auto;
}
.common-header .header-img.business-header{
  margin-bottom: 0;
}


.common-sec{
  padding: 0 0 1rem;
}


.view-btn{
  font-size: 1.4rem;
  margin: 5.5rem auto 0;
}


.h-1{
  font-size: 2rem;
}

.h-2{
  font-size: 2.3rem;
}


/* scroll-hint */
.js-scrollable .scroll-hint-icon {
  height: 85px;
}
.js-scrollable .scroll-hint-text {
  font-weight: bold;
  letter-spacing: 0;
}
.scroll-box{
  overflow-x: scroll;
  padding-bottom: 3rem;
}

footer{
  padding: 8rem 0 4rem;
  background-color: #111;
}
footer .content{
  display: block;
}
footer .left,
footer .right{
  display: block;
}
footer a.logo{
  width: 8.9rem;
  margin-bottom: 4rem;
}
footer ul.sns{
  margin: 3rem 0 6rem;
}
footer .copy{
  font-size: 1.2rem;
}
footer ul.footer-nav,
footer ul.lower{
  display: block;
}
footer ul.footer-nav > li + li{
  margin-left: 0 !important;
}
footer ul.footer-nav > li .ttl{
  font-size: 1.6rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.24);
}
footer ul.footer-nav > li .ttl.parent{
  position: relative;
  cursor: pointer;
}
footer ul.footer-nav > li .ttl.parent::before,
footer ul.footer-nav > li .ttl.parent::after{
  content: "";
  display: block;
  width: 1.6rem;
  height: 1px;
  background: #111;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
footer ul.footer-nav > li .ttl.parent::after{
  transform: translateY(-50%) rotate(90deg);
  transition: 0.3s;
}
footer ul.footer-nav > li .ttl.parent.active::after{
  transform: translateY(-50%) translate(0);
}
footer ul.footer-nav li ul.child{
  display: none;
  margin: 1.5rem 0;
}
footer ul.footer-nav li ul.child li a{
  line-height: 2.5;
  font-weight: 500;
  color: #111;
}
footer ul.lower{
  margin-top: 6rem;
}
footer ul.lower li{
  font-size: 1.4rem;
}

}


.contact .form-group{
  margin: 1rem 0 2rem;
}
.contact .form-group label{
  display: block;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  text-align: left;
  font-weight: bold;
}
.contact .form-group input[type="text"],
.contact .form-group input[type="email"],
.contact .form-group input[type="tel"]{
  width: 100%;
  height: 4rem;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0,50,108,0.12);
}
.contact .form-group textarea{
  width: 100%;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  height: 10rem;
  background: rgba(0,50,108,0.12);
}

.contact .form-group .required{
  color: #FF0000;
  font-size: 1.2rem;
  margin-left: 0.5em;
}

.uppercase{
  text-transform: uppercase;
}