html,body{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000;
  line-height: 1.75;
}
a{
  color: #000;
  transition: opacity 0.3s, color 0.3s;
}
a:hover{ opacity: 0.7; }
a svg path{
  transition: fill 0.3s, stroke 0.3s;
}
img,picture{
	max-width: 100%;
	display: block;
}
.overflow{ overflow: hidden; }

.en{
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 600;
}

.bl{ color: #043E97; }
.wh{ color: #fff; }

.bg-bl{
  background: #043E97;
  color: #fff;
}




body:not(.home){
  padding-top: 11.2rem;
}

.nav{
  width: 100%;
  height: 11.2rem;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;

  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: transform 0.8s;
}
.nav.off{
  transform: translateY(-100%);
}
.nav a.logo{
  display: block;
  width: 7.8rem;
  margin-left: 2.4rem;
}
.nav > .site-name{
  font-size: 2.1rem;
  font-weight: 700;
  margin-left: 1.7rem;
}
.nav > .site-name small{
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
}

.nav ul.nav-li{
  height: 100%;
  display: flex;
  gap: 4rem;
  margin-left: auto;
}
.nav ul.nav-li li{
  height: 100%;
  display: flex;
  align-items: center;
}
.nav ul.nav-li li a:not(.contact-btn){
  font-size: 1.4rem;
  font-weight: 700;
  color: #043E97;
  position: relative;
}
.nav ul.nav-li li a.current{
  pointer-events: none;
}
.nav ul.nav-li li a.current::before{
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 100%;
  background: #043E97;
  position: absolute;
  left: calc(50% - 0.35rem);
  bottom: -1em;
}
a.contact-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  background: #019EC6;
  color: #fff;
  border: 1px solid #019EC6;
  font-size: 1.4rem;
  font-weight: 700;
  opacity: 1;
  transition: color 0.3s, background 0.3s;
}
.bg-bl a.contact-btn{
  border: none;
}
a.contact-btn svg{
  width: 2.4rem;
  margin-right: 0.8rem;
}
a.contact-btn:hover{
  background: #fff;
  color: #019EC6;
}
a.contact-btn:hover svg path{
  stroke: #019EC6;
}
.nav ul.nav-li li a.contact-btn{
  flex-direction: column;
  width: 17.7rem;
  height: 100%;
}
.nav ul.nav-li li a.contact-btn svg{
  margin: 0 0 0.8rem;
}

.home .nav:not(.transform){
  background: none;
}
.home .nav:not(.transform) a.logo{
  width: 10.4rem;
  margin-top: 1.5rem;
}
.home .nav:not(.transform) > .site-name{
  display: none;
}
.home .nav:not(.transform) ul.nav-li li a:not(.contact-btn){
  color: #fff;
}


.common-header{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 100 / 32;
  max-height: 48rem;
  background: url(../images/company/header-bg.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}
.common-header::before{
  content: "";
  display: block;
  width: calc(50% + 10rem);
  height: 100%;
  background: linear-gradient(to right, transparent, #074DB9);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.common-header .ttl-1{
  margin-bottom: 0;
}
.recruit .common-header{
  background: url(../images/recruit/header-bg.jpg) center center no-repeat;
  background-size: cover;
}
.common-header .wrap{
  width: fit-content;
  margin-left: auto;
}


.pankuzu{
  padding: 1.6rem 4rem 0;
}
.pankuzu ul li{
  display: inline;
  font-size: 1.2rem;
}
.pankuzu ul li + li::before{
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1px;
  background: #000;
  margin: 0 0.8em;
  vertical-align: 0.35em;
}
.pankuzu ul li a.ico{
  display: inline-block;
  width: 0.9em;
  vertical-align: -0.15em;
}
.pankuzu ul li a.ico img{
  width: 100%;
}


.sec{
  padding: 8rem 0 20rem;
}


.content{
  position: relative;
  z-index: 1;
}


.ttl-1-en{
  font-size: 5.6rem;
  line-height: 1.3;
  letter-spacing: 0.2em;
  margin-bottom: 0.1em;
}
.ttl-1{
  font-size: 1.4rem;
  margin-bottom: 3rem;
}

.ttl-2{
  font-size: 2.4rem;
  margin-bottom: 2rem;
  position: relative;
}
.ttl-2::before{
  content: "";
  display: block;
  width: 4.2rem;
  height: 0.4rem;
  background: #FF0000;
  position: absolute;
  left: -1.2em;
  top: -0.1em;
  transform: rotate(-45deg);
}



a.h-bd{
  position: relative;
}
a.h-bd:hover{ opacity: 1; }
a.h-bd::before {
  content: "";
  width: calc(100% + 1em);
  height: 2px;
  background: #043E97;
  position: absolute;
  bottom: -0.6em;
  left: -0.5em;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.4s;
}
a.h-bd:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
a.h-bd.wh::before,
.home .nav:not(.transform) a.h-bd::before{
  background: #fff;
}


.arrow-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24rem;
  padding-bottom: 2.8rem;
  color: #043E97;
  text-align: center;
  font-weight: 700;
  position: relative;
}
.arrow-btn svg{
  width: 2.2rem;
  margin-left: 1.2rem;
  transition: transform 0.3s;
}
.arrow-btn:hover{
  opacity: 1;
}
.arrow-btn:hover svg{
  transform: translateX(30%);
}
.arrow-btn::before,
.arrow-btn::after{
  content: "";
  display: block;
  background: #043E97;
  position: absolute;
}
.arrow-btn::before{
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0.9rem;
}
.arrow-btn::after{
  width: 1px;
  height: 2.6rem;
  right: 0.9rem;
  bottom: 0;
}
.arrow-btn.wh{
  color: #fff;
}
.arrow-btn.wh::before,
.arrow-btn.wh::after{
  background: #fff;
}


footer{
  font-size: 1.4rem;
  padding: 12rem 0 4rem;
}
footer a{ color: #fff }
footer .content{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer .wrap{
  display: grid;
  grid-template-columns: 10.4rem auto;
  gap: 2rem;
}
footer .wrap p.site-name{
  font-size: 2rem;
  font-weight: 700;
}
footer .wrap p.address{
  line-height: 2;
  margin-top: 0.8em;
}

ul.f-nav{
  display: flex;
  align-items: center;
  gap: 4rem;
}
ul.f-nav li{
  display: block;
}
ul.f-nav li a{
  font-weight: 700;
}
ul.f-nav li a.contact-btn{
  width: 21rem;
  height: 6.2rem;
}
footer .copy{
  width: 100%;
  font-size: 1.2rem;
  text-align: right;
  margin-top: 15rem;
}




/* アニメーション */
.curtain{
  display: block;
  width: fit-content;
  overflow: hidden;
  position: relative;
}
.curtain.center{
  margin-left: auto;
  margin-right: auto;
}
.en .curtain,
.en.curtain{
  line-height: 1;
}
.curtain > span{
  opacity: 0;
  transition-delay: 0.5s;
  transition-property: opacity;
}
.curtain.loaded > span{ opacity: 1; }

.curtain::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #019EC6;
  position: absolute;
  z-index: 1;
  transform: translateX(-100%);
}
.curtain.loaded::before{
  animation: curtain 1s both;
}
@keyframes curtain {
  0% { transform: translateX(-101%); }
  50% { transform: translateX(0%); }
  100% { transform: translateX(101%); }
}

.curtain.delay1 > span{
  transition-delay: 1s;
}
.curtain.delay2 > span{
  transition-delay: 1.5s;
}
.curtain.delay3 > span{
  transition-delay: 2s;
}
.curtain.delay1::before{
  animation-delay: 0.5s;
}
.curtain.delay2::before{
  animation-delay: 1s;
}
.curtain.delay3::before{
  animation-delay: 1.5s;
}


/* ロード画面 */
#loading {
  width: 100%;
  height: 100%;
  background: #043E97;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading img {
  width: 21.8rem;
  animation: logo-loading 2s both;
}
@keyframes logo-loading {
  0%, 50% { opacity: 0; }
  100% { opacity: 1; }
}
#loading.loaded {
  height: 0;
  visibility: hidden;
  transition: height 1s, visibility 1s;
}
#loading.loaded img{
  animation: logo-loaded 0.4s both;
}
@keyframes logo-loaded {
  0% { opacity: 1; }
  100% { opacity: 0; }
}




/*　PC
------------------------------------------------------------------------------------------------*/
@media screen and (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 screen and (max-width: 1100px){

html{ font-size: 0.9vw; }




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




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

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

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




body:not(.home){
  padding-top: 5.6rem;
}

.nav{
  height: 5.6rem;
}
.nav.off{
  transform: translateY(-114%);
}
.nav a.logo{
  width: 4.6rem;
  margin-left: 0.5rem;
}
.nav > .site-name{
  font-size: 1.2rem;
  line-height: 1.4;
  margin-left: 0.8rem;
}

.nav ul.nav-li li a.contact-btn{
  width: 5.6rem;
}
.nav ul.nav-li li a.contact-btn svg{
  width: 1.9rem;
  margin: 0;
}


.home .nav:not(.transform) a.logo{
  width: 5.8rem;
  margin-top: 1.5rem;
}


#nav-open {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5.6rem;
  height: 5.6rem;
  background: #fff;
  cursor: pointer;
  position: relative;
  z-index: 3;
}
#nav-open span,#nav-open span:before,#nav-open span:after {
  content: "";
  display: block;
  background: #043E97;
  height: 1px;
  width: 1.8rem;
  position: absolute;
  transition: .3s ease-in-out;
}
#nav-open span{
  transition: background 0s .15s;
}
#nav-open span:before {
  bottom: 0.6rem;
  transform: rotate(0);
  transition: bottom .15s .15s, transform .15s;
}
#nav-open span:after {
  bottom: -0.6rem;
  transform: rotate(0);
  transition: bottom .15s .15s, transform .15s;
}
#nav-content {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 5.6rem 0;
  position: fixed;
  top: 0;
  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 .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(-45deg);
  transition: bottom .15s, transform .15s .15s;
}
#nav-open.active span:after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom .15s, transform .15s .15s;
}


#nav-content .content{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  text-align: center;
}
#nav-content a.logo{
  display: block;
  width: 8.5rem;
  margin-bottom: 5rem;
}
#nav-content a:not(.contact-btn){
  color: #043E97;
}
#nav-content ul.h-nav li a{
  font-weight: 700;
}
#nav-content ul.h-nav li + li{
  margin-top: 2.4rem;
}
#nav-content ul.h-nav li:has( a.contact-btn){
  margin-top: 3rem;
}
#nav-content ul.h-nav li a.contact-btn{
  width: 31.1rem;
  height: 6.2rem;
}
#nav-content p.site-name{
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 7rem;
}
#nav-content .address{
  font-size: 1.2rem;
  line-height: 2;
  margin-top: 2rem;
}


.common-header{
  align-items: flex-end;
  aspect-ratio: unset;
  height: 31rem;
  max-height: unset;
  background: url(../images/company/header-bg_sp.jpg) center top no-repeat;
  background-size: 100% auto;
  padding: 0 0 3.6rem;
}
.common-header::before{
  width: 100%;
  height: 19.5rem;
  background: linear-gradient(to bottom, transparent, #074DB9 65%);
  top: unset;
  bottom: 0;
}
.recruit .common-header{
  background: url(../images/recruit/header-bg_sp.jpg) center top no-repeat;
  background-size: 100% auto;
}
.common-header .wrap{
  width: 100%;
}


.pankuzu{
  padding: 0.8rem 1.6rem 0;
}


.sec{
  padding: 4.5rem 0 6.5rem;
}


.ttl-1-en{
  font-size: 3.2rem;
  text-align: center;
}
.ttl-1{
  font-size: 1rem;
  text-align: center;
  margin-bottom: 2rem;
}

.ttl-2{
  font-size: 1.8rem;
  margin: 0 0 1.2rem 1.8rem;
}
.ttl-2::before{
  width: 2.8rem;
  height: 0.3rem;
  left: -1.4em;
  top: 0;
  transform: rotate(-50deg);
}


footer{
  text-align: center;
  padding: 5.6rem 0 3rem;
}
footer .content{
  display: block;
}
footer .wrap{
  grid-template-columns: 100%;
}
footer .wrap a.logo{
  width: 7.8rem;
  margin: 0 auto;
}
footer .wrap p.site-name{
  font-size: 1.6rem;
}
footer .wrap p.address{
  font-size: 1.2rem;
  margin-top: 2rem;
}

ul.f-nav{
  flex-direction: column;
  gap: unset;
  margin-top: 6rem;
}
ul.f-nav li + li{
  margin-top: 2.4rem;
}
ul.f-nav li:has( a.contact-btn){
  margin-top: 3rem;
}
ul.f-nav li a.contact-btn{
  width: 31.1rem;
}
footer .copy{
  text-align: center;
  margin-top: 10rem;
}


#loading img {
  width: 10rem;
}




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



