/* ----------------------------------------
  Setting
-------------------------------------------*/
*, *::before, *::after{ -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -o-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; }
*{ min-height: 0vw; min-height: 0; }/* clamp関数対策 */
hr{ display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
audio,canvas,img,video{ vertical-align: middle; }
fieldset{ border: 0; margin: 0; padding: 0; }
textarea{ resize: vertical; }
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video{ margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent; }
table,div,ul,ol,li,dl,dt,dd{ list-style: none; margin: 0; padding: 0; }
table{ border-collapse:collapse; border-spacing:0; }
article,aside,details,figcaption,figure, footer,header,hgroup,menu,nav,section{ display:block; }
address{ font-style: normal; }
nav ul,li{ list-style:none; }
img{ max-width: 100%; height: auto; margin: 0; padding: 0; border:0; outline: none; border-style: none; vertical-align: bottom; line-height: 0; }
img,iframe,object{ max-width:100%; }  /* モダンブラウザ用 */
img[src$=".svg"]{  width: 100%; }    /* SVG IE対策 */

a, a:visited, a:hover, a:active{
  color: #fff;
  -webkit-tap-highlight-color: transparent rgba(0,0,0,0);
  -moz-tap-highlight-color: transparent rgba(0,0,0,0);
  -ms-tap-highlight-color: transparent rgba(0,0,0,0);
  -o-tap-highlight-color: transparent rgba(0,0,0,0);
  tap-highlight-color: transparent rgba(0,0,0,0);
  text-decoration: none;
  transition: all 0.15s ease-out;
  -webkit-transform: translateZ(0);
}
a:hover{ text-decoration: none; }
a img:hover{ opacity: var(--hover); }
a img{ 
  text-decoration: none;
  outline: none;
}
a img::before,a img::after{
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
a img,a img::before,a img::after{
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
svg{ fill: currentColor; }

::selection {
  background: var(--orange);
  color: #fff;
}
::-moz-selection {
  background: var(--orange);
  color: #fff;
}
/* 上付き文字 */
sup{
  vertical-align: super;
  font-size: 0.75em;
  line-height: 0;
}
sub{
  vertical-align: sub;
  font-size: 0.75em;
  line-height: 0;
}
.pc{ display: block; }
.sp{ display: none; }

@media screen and (max-width: 650px){
  .pc{ display: none; }
  .sp{ display: block; }
}

/* ----------------------------------------
  Common
-------------------------------------------*/

:root{
  --hover: 0.5;
  --normal-font-size: clamp(13px,2.0vw,15px);
  --font-en: "Montserrat", sans-serif;
  --page-width: min(88%,1120px);
  --sec-margin: min(12%,100px);
  --black: #1a1d20;
  --black-rgb: 26,29,32;
  --bg-navy: #1c2a42;
  --bg-navy-rgb: 28,42,66;
  --bg-navy80: #4e586f;
  --bg-navy80-rgb: 78,88,111;
  --dark-navy: #121829;
  --dark-navy-rgb: 18,24,41;
  --orange: #f0a327;
  --orange-rgb: 240,163,39;
  --border-color: #4d525e;
  --blue-gra: linear-gradient(to right,#222e4b,#36558f);
  --orange-rga: linear-gradient(to right,#c09e8d,#f0a327);
}

html,body{
  height: 100% !important;
}
html{
  font-size: 16px;
  font-feature-settings: 'palt';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
body{
  position: relative;
  overflow-x: hidden;
  font-family: "Noto Sans JP","Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  word-wrap: break-word;
  font-size: var(--normal-font-size);
  letter-spacing: .075em;
  line-height: 2;
  color: #fff;
  background: var(--bg-navy);
}
body::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(20%,176px);
  height: min(80%,876px);
  background: url(../img/cmn/bg_design.svg) no-repeat left top;
  z-index: -1;
}
#wrapper{
  position: relative;
  overflow: hidden;
  width: 100%;
}
#main{
  position: relative;
  width: 100%;
  z-index: 1;  /*important*/
}

/* fade */
.fade{
  opacity: 0;
  transform: translateY(12px);/*下にズレる幅*/
  transition: opacity .6s ease-out, transform .6s ease-out;
}
.fade.active{
  opacity: 1;
  transform: translateY(0px);
}
@media (prefers-reduced-motion: reduce){
  .fade{
    transition: none;
    transform: none;
    opacity: 1;
  }
}

/* more btn */
.morebtn{
  position: relative;
  width: min(320px,100%);
  background: url(../img/cmn/ic-square.svg) no-repeat left 53% / 20px;
}
.morebtn a{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 1.25rem 2rem;
  text-align: left;
  font-weight: bold;
  white-space: nowrap;/*改行禁止*/
  font-size: clamp(12px,1.846vw,16px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  background: url(../img/cmn/ic-arrow.svg) no-repeat right 53% / 24px;
}
.morebtn a span{
  transition: transform .25s ease;
}
.morebtn a:hover span{
  transform: translateX(2px); /* テキストだけ右にスライド */
}
.morebtn a::after{
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--orange);
  
  /* 初期は縮小（左端を基準） */
  transform: scaleX(0.15);
  transform-origin: left;
  transition: transform .25s ease-out;
}
.morebtn a:hover::after{
  transform: scaleX(1); /* 左→右 に伸びる */
}

@media screen and (max-width: 650px){
  .morebtn a{
    background-size: 20px;
  }
}

/* scroll text */
.autoscroll{
  overflow: hidden;
  display: flex;
  width: 100%;
}
.autoscroll__loop{
  display: inline-flex;/* ←重要 */
  gap: 60px;
  flex-shrink: 0; /* ←Firefox対策 */
  animation: loopAnimation 60s linear infinite;
}
.autoscroll__loop li{
  flex-shrink: 0;
  width: clamp(1200px,184vw,2000px);
}
.autoscroll__loop li img{
  opacity: .3;
}
@keyframes loopAnimation{
  0%{transform: translate(0%);}
  100%{transform: translate(-50%);}
}

/* title */
.en{
  font-family: var(--font-en);
}
.sec_head{
  text-align: left;
}
.sec_head__titles{
  line-height: 1.75;
  padding-bottom: 1rem;
  white-space: nowrap;/*改行禁止*/
}
.sec_head__title_ja{
  padding-left: 20px;
  font-weight: normal;
  letter-spacing: .25em;
  background: url(../img/cmn/ic-sparkling_wh.svg) no-repeat left center / 12px auto;
}
.sec_head__title_en{
  font-weight: 600;
  letter-spacing: -.0025em;
  font-size: clamp(26px,4.0vw,45px);
  font-family: var(--font-en);
}
@media screen and (max-width: 650px){
  .sec_head__title_ja{
    letter-spacing: .175em;
  }
}


/* ----------------------------------------
  Footer
-------------------------------------------*/

.f_info{
  position: relative;
  z-index: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch; /* 高さを揃える */
  justify-content: space-between;
}
.f_contact,
.f_recruit{
  width: 50%;
  padding: 7rem 5rem 10rem 5rem;
}
.f_contact{
  background: url(../img/cmn/f_contact_bg.jpg) no-repeat center / cover;
}
.f_contact_nav{
  padding: 2rem 0;
  padding-right: 2rem;
}
.f_info .morebtn{
  width: 100%;
  background: none;
}
.f_info .morebtn a::after{
  bottom: -1px;
  height: 1px;
  background: rgba(255,255,255,.5);
}
.f_contact_nav .morebtn a{
  padding: 1.75rem 0;
  font-size: clamp(12px,1.846vw,14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.f_recruit{
  animation: bg-gradient 5s linear infinite alternate;
  background: linear-gradient(90deg, #00a0e9 0%, #00c2e9 30%, #4ee6e3 80%) 0 / 300% 100%;
}
@keyframes bg-gradient {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.f_recruit_copy{
  width: min(440px,80%);
  padding: 4rem 0 2rem;
}
.f_recruit .morebtn a{
  width: min(340px,100%);
  height: 90px;
  border-radius: 9999px;
  padding: 0 2rem;
  border: 1px solid #fff;
  background: url(../img/cmn/ic-morelink.svg) no-repeat 93% center / 15px;
}
.f_recruit .morebtn a:hover{
  background-color: #fff;
  color: var(--dark-navy);
  background-image: url(../img/cmn/ic-morelink_bk.svg);
}
.f_recruit .morebtn a:hover span,
.f_recruit .morebtn a:hover::after{
  transform: inherit;
}
.f_recruit .morebtn a::after{
  background: none;
}

@media(max-width:860px){
  
  .f_info{
    flex-flow: column;
  }
  .f_contact,
  .f_recruit{
    width: 100%;
    padding: 5rem 4rem;
  }
  .f_recruit{
    padding-bottom: 8rem;
  }
  .f_contact_nav{
    padding: 1rem 0;
  }
}
@media(max-width:650px){
  
  .f_contact,
  .f_recruit{
    padding: 3.5rem 2rem;
  }
  .f_contact br{
    display: none;
  }
  .f_contact_nav .morebtn a{
    padding: 1.25rem 0;
  }
  .f_recruit{
    padding-bottom: 6rem;
  }
  .f_recruit_copy{
    padding: 2rem 0;
  }
  .f_recruit .morebtn a{
  }
  .f_recruit .morebtn a{
    height: 70px;
    color: var(--black);
    background: url(../img/cmn/ic-morelink_bk.svg) no-repeat 93% center / 15px;
    background-color: #fff;
  }
  .f_recruit .morebtn a:hover{
    opacity: var(--hover);
  }
}

#footer{
  position: relative;
  z-index: 1;
  width: 100%;
}
.footer_in{
  width: 100%;
  text-align: left;
  color: var(--black);
  background-color: #dadada;
  border-radius: 40px 40px 0 0;
  margin-top: -40px;
}
.footer_main{
  padding: 7rem 0 2rem;
}
.footer_main__in{
  width: 88%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer_company{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column; /*垂直に並べる*/
  width: 25%;
}
.footer_company .f_logo{
  width: min(170px,100%);
  height: auto;
  padding-bottom: 1.5rem;
}
.footer_company .footer_company_name{
  font-size: clamp(12px,1.846vw,16px);
  padding-bottom: .25rem;
}
.footer_company address{
  font-size: clamp(10px,1.538vw,12px);
  line-height: 1.75;
  white-space: nowrap;/*改行禁止*/
}
.footer_nav{
  width: min(800px,65%);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  line-height: 2.75;
  padding-bottom: 5rem;
}
.footer_nav dt{
  font-weight: bold;
}
.footer_nav dd{
  font-size: clamp(10px,1.538vw,13px);
  color: rgba(var(--black-rgb),0.8);
}
.footer_nav dt + dt{
  padding-top: 1rem;
}
.footer_nav a{
  color: var(--black);
}
.footer_nav a:hover{
  opacity: var(--hover);
}
.footer_main .autoscroll__loop li img{
  opacity: 1;
}
#footer .footer_bottom{
  width: 100%;
  padding: 2rem 0;
  background-color: #fff;
}
.footer_bottom__in{
  width: 92%;
  margin: 0 auto;
  line-height: 3;
}
.footer_subnav{
  display: flex;
  justify-content: flex-start;
}
.footer_subnav p{
  position: relative;
  font-size: clamp(10px,1.538vw,12px);
}
.footer_subnav p a{
  color: var(--black);
}
.footer_subnav p + p::before{
  content: "｜";
  margin: 0 .75em;
}
.footer_subnav p a:hover{
  text-decoration: underline;
}
.footer_bottom .copyright{
  font-weight: 700;
  font-family: var(--font-en);
  font-size: clamp(9px,1.384vw,11px);
}

@media screen and (max-width: 960px) {

  .footer_company{
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .footer_nav{
    width: 100%;
    justify-content: flex-start;
    gap: 2rem 4rem;
  }
}

@media screen and (max-width: 650px){
  
  .footer_in{
    border-radius: 12px 12px 0 0;
  }
  .footer_main{
    padding: 3rem 0 2rem;
  }
  .footer_main__in,
  .footer_bottom__in{
    width: 90%;
    margin: 0 auto;
  }
  .footer_company{
    width: 100%;
  }
  .footer_nav{
    display: none;
  }
  .footer_main .autoscroll__loop{
    padding-top: 2rem;
  }
  #footer .footer_bottom{
    padding: 1rem 0;
  }
}