@charset "UTF-8";

body.no-scroll{
  overflow: hidden;
}
/* BANNER ====================*/
.bnr__bottom {
  position: fixed;
  z-index: 100;
  right: 16px;
  bottom: 16px;
  width: 320px; 
  transition: opacity 0.3s ease;
}

.bnr__bottom.is-stopped {
  position: absolute;
}

.bnr__bottom a {
  display: block;
}

.bnr__bottom img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .bnr__bottom {
    width: 92vw; 
    right: 0;
    left: 0;
    margin: 0 auto;   
  }
}



/* HEADER ====================*/
/* =====================
   HEADER BASE
===================== */
header.header{
  box-sizing:border-box;
  position:fixed;
  z-index:100;
  top:0;left:0;width:100%;
  height:87px;
  padding:0 60px;
  background:#fff;
  transition:transform 0.5s ease;
  overflow:visible;
}

header.header .inner{
  position:relative;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

/* =====================
   TITLE
===================== */
header.header .header__title{
  flex-shrink:0;
  line-height:1;
}
header.header .header__title a{
  display:block;
  text-decoration:none;
  color:#000;
  line-height:1;
}
header.header .header__title a span.sub{
  display:block;
  font-size:clamp(1.1rem, 1.2vw, 1.4rem);
  font-weight:500;
  transform:rotateZ(0.03deg);
}
header.header .header__title a span.main{
  display:block;
  margin-top:6px;
  font-size:clamp(1.6rem, 1.85vw, 2.1rem);
  font-weight:900;
  transform:rotateZ(0.03deg);
  white-space:nowrap;
}
header.header .header__title a span.main span{font-weight:500;}

/* =====================
   RIGHT SIDE WRAPPER
===================== */
.header__right{
  display:flex;
  align-items:center;
  gap:16px;

  margin-left:auto;
  flex-shrink:0;
}

/* =====================
   NAV LINKS
===================== */
header.header ul.header__link{
  display:flex;
  list-style:none;
  align-items:center;
  gap:0;
}

header.header ul.header__link > li{
  position:static;
}

header.header ul.header__link > li > a{
  display:block;
  position:relative;
  padding:0 clamp(8px,1vw,16px) 8px;
  text-decoration:none;
  font-size:clamp(1.2rem, 1.3vw, 1.5rem);
  font-weight:700;
  color:#000;
  line-height:1;
  white-space:nowrap;
  transform:rotateZ(0.03deg);
  transition:all 0.3s ease;
}

header.header ul.header__link > li > a::before{
  content:"";
  display:block;
  position:absolute;
  left:clamp(8px,1vw,14px);
  bottom:0;
  width:calc(100% - clamp(16px,2vw,28px));
  height:3px;
  background:linear-gradient(to right,#00fcff,#fff600);
  transition:transform 0.3s ease;
  transform:scaleX(0);
  transform-origin:right bottom;
}
header.header ul.header__link > li.career-workshop > a::before{display:none;}

header.header ul.header__link > li:hover > a::before,
header.header ul.header__link > li.is-active > a::before{
  transform:scaleX(1);
  transform-origin:left bottom;
}

header.header ul.header__link > li.career-workshop > a{
  font-size:clamp(0.9rem,1vw,1rem);
  text-align:center;
  /* background:#009de6; */
  background: linear-gradient(to right, #4db2ff, #dba8ff);
  color:#fff;
  padding:8px clamp(8px,1vw,12px);
  font-weight:400;
  line-height:1.2;
  border-radius:50vh;
  top: -5px;
}

/* =====================
   LOGO
===================== */
header.header .header__logo--corporate{
  width:38px;height:44px;
  /* background:url("../images/logo_corporate_b.png") center center no-repeat;
  flex-shrink:0; */
}
header.header .header__logo--corporate a{
  display:block;width:100%;height:100%;
}
/* ③ PC版ロゴ：通常表示、SP版ロゴ：非表示 */
header.header .header__logo--corporate-pc{ display:block; }
header.header .header__logo--corporate-sp{ display:none; }

/* =====================
   MEGA MENU

===================== */
.mega-menu{
  visibility:hidden;
  opacity:0;
  pointer-events:none;
  /* transform:translateY(-4px); */

  position:absolute;
  top:100%;
  left:-60px;
  width:calc(100% + 120px);
  /* background: #fff; */
  /* border-top:2px solid #00bfb3; */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  border-bottom:1px solid #e0e0e0;
  z-index:300;
  box-shadow:0 8px 20px rgba(0,0,0,0.07);
  box-sizing: border-box;
  border-top: none;
  position: absolute;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}
.mega-menu::before{
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00bfb3;
}

header.header ul.header__link > li.is-active .mega-menu{
  visibility:visible;
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
  transition: opacity 0.35s ease, visibility 0s linear 0s;
}

.mega-menu__inner{
  max-width:1000px;
  margin:0 auto;
  padding:40px;
  display:block;
}

.mega-menu__col-title{
  display:none;
}

.mega-menu__col ul{list-style:none;}

.mega-menu__col ul li{
  border-bottom:1px solid #e3e3e3;
}
.mega-menu__col ul li:last-child{
  border-bottom:none;
}

.mega-menu__col ul li a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px;
  font-size:1.8rem;
  color:#222;
  text-decoration:none;
  white-space:nowrap;
  transition:color 0.15s;
  border-radius:4px;
  font-weight: 600;
}
.mega-menu__col ul li a::after{
  content:"›";
  color:#00bfb3;
  font-size:2rem;
  line-height:1;
  flex-shrink:0;
  margin-left:12px;
  transition:transform 0.2s ease;
  font-weight: 600;
}
.mega-menu__col ul li a:hover{
  color:#00bfb3;
}
.mega-menu__col ul li a:hover::after{
  transform:translateX(5px);
}

/* =====================
   ③ 1200px以下でレスポンシブ調整
===================== */
@media (min-width:769px) and (max-width:1360px){
  header.header{
    height:87px;
    padding:0 32px;
  }
  header.header .inner{
    flex-direction:row;
    align-items:center;
    flex-wrap:nowrap;
    gap:12px;
  }
  .header__right{
    gap:8px;
  }
  header.header ul.header__link > li > a{
    padding:0 clamp(5px,0.7vw,10px) 8px;
    font-size:clamp(1.4rem, 1.3vw, 1.5rem);
  }
  header.header ul.header__link > li > a::before{
    left:clamp(5px,0.7vw,10px);
    width:calc(100% - clamp(10px,1.4vw,20px));
  }
  header.header ul.header__link > li.career-workshop > a{
    padding:7px clamp(6px,0.8vw,10px);
    font-size:clamp(0.9rem,0.95vw,1.1rem);
  }
  header.header .header__title a span.sub{
    font-size:clamp(1rem,1.05vw,1.2rem);
  }
  header.header .header__title a span.main{
    font-size:clamp(1.3rem,1.5vw,1.9rem);
    margin-top:5px;
  }
  .mega-menu{
    left:-32px;
    width:calc(100% + 64px);
  }
  .mega-menu__inner{
    padding:40px;
  }
}

/* =====================
   SP
===================== */
header.header .header__menu{display:none;}

@media screen and (max-width:768px){
  body{padding-top:16vw;}

  header.header{
    height:16vw;
    padding:0 4vw;
    border-bottom:1px solid #e0e0e0;
  }
  header.header .inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:100%;
    flex-wrap:nowrap;
    gap:0;
  }
  header.header .header__title{
    flex:1;min-width:0;
  }
  header.header .header__title a span.sub{
    font-size:2.8vw;
  }
  header.header .header__title a span.main{
    font-size:3.8vw;
    margin-top:1.5vw;
    white-space:normal;
  }

  /* ハンバーガー */
  header.header .header__menu{
    display:flex;
    flex-direction:column;
    justify-content:center;
    flex-shrink:0;
    width:8vw;height:8vw;
    gap:1.6vw;
    cursor:pointer;
    position:relative;z-index:110;
    margin-left:2vw;
  }
  header.header .header__menu span{
    display:block;width:100%;height:0.6vw;
    background:#000;border-radius:1px;
    transition:all 0.25s;
  }
  header.header .header__menu.open span:nth-child(1){transform:translateY(2.2vw) rotate(30deg);}
  header.header .header__menu.open span:nth-child(2){opacity:0;}
  header.header .header__menu.open span:nth-child(3){transform:translateY(-2.2vw) rotate(-30deg);}
  header.header .header__menu.open span{background:#fff;}

  header.header .header__logo--corporate-pc{ display:none !important; }
  header.header .header__logo--corporate-sp{
    display:block;
    width:7.73vw;
    height:8.8vw;
    background-size:cover;
    flex-shrink:0;
    margin-left:auto;
  }

  header.header .header__logo--corporate{
    width:7.73vw;height:8.8vw;
    background-size:cover;
    flex-shrink:0;
    margin-left:2vw;
  }

  /* SP nav overlay */
  .header__right{
    display:block;
    position:fixed;top:0;left:0;
    width:100%;height:100%;
    background:rgba(0,191,179,0.97);
    z-index:105;
    overflow-y:auto;
    padding:16vw 4.26vw 8vw;
    transform:translateX(100%);
    transition:transform 0.3s ease;
  }
  .header__right.active{transform:translateX(0);}

  header.header ul.header__link{
    flex-direction:column;
    align-items:stretch;
    border-top:1px solid rgba(255,255,255,0.5);
  }
  header.header ul.header__link > li{
    border-bottom:1px solid rgba(255,255,255,0.5);
  }
  header.header ul.header__link > li:not(.career-workshop)::before{
    display:none;
  }
  header.header ul.header__link > li > a{
    padding:5.33vw 0;
    font-size:4.26vw;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-left:0;
  }
  header.header ul.header__link > li > a::before{display:none;}
  header.header ul.header__link > li > a::after{
    content:"▼";
    font-size:2.5vw;
    color:rgba(255,255,255,0.8);
    transition:transform 0.2s;
    flex-shrink:0;
    margin-left:8px;
  }
  header.header ul.header__link > li.career-workshop > a::after{display:none;}
  header.header ul.header__link > li.is-open > a::after{transform:rotate(180deg);}

  header.header ul.header__link > li.career-workshop{
    padding:10vw 0;
    border-bottom:none;
  }
  header.header ul.header__link > li.career-workshop > a{
    /* background:#fff;color:#009de6; */
    background: linear-gradient(to right, #4db2ff, #dba8ff);
    border: 2px solid #fff;
    padding:3vw 4vw;border-radius:50vh;
    width:90%;margin:auto;
    justify-content:center;
    font-size:4vw;
  }

  /* SP mega menu */
  .mega-menu{
    visibility:visible;opacity:1;
    pointer-events:auto;
    position:static;
    width:100%;
    border:none;
    border-radius:0;
    box-shadow:none;
    background:transparent;
    transform:none;
    display:none;
    transition:none;
  }
  header.header ul.header__link > li.is-open .mega-menu{
    display:block;
  }
  .mega-menu__inner{
    display:block;
    padding:0 0 2vw 2vw;
    max-width:none;
  }
  .mega-menu__col{ margin:0; }
  .mega-menu__col-title{
    display:none;
  }
  .mega-menu__col ul li a{
    color:rgba(255,255,255,0.9);
    font-size:4vw;
    background:transparent;
    padding:3.5vw 0 3.5vw 2vw;
    border-bottom:1px solid rgba(255,255,255,0.25);
  }
  .mega-menu__col ul li:last-child a{ border-bottom:none; }
  .mega-menu__col ul li a::before{ color:rgba(255,255,255,0.7); }
  .mega-menu__col ul li a:hover{
    color:#fff;
    background:rgba(255,255,255,0.08);
    padding-left:2vw;
  }
}

header.header.none{transform:translateY(-100%);}


/* FOOTER ====================*/
.footer {
  position: relative;
  background: #00bfb3;
}

.footer .footer__block:first-child {
  padding: 110px 60px 90px;
  background: url("../images/footer_bg.jpg") center center no-repeat;
  background-size: cover;
}

.footer .footer__block:last-child {
  padding: 60px 40px;
}

.footer .btn__contact {
  max-width: 580px;
  height: 80px;
  margin: 0 auto;
}

.footer .btn__contact a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  background: #00bfb3;
  border-radius: 40px;
  border: 2px solid #fff;
}

.footer .group {
  display: flex;
  flex-wrap: wrap;
  max-width: 1120px;
  margin: 60px auto 0;
  padding: 22px 30px 35px;
  background: #fff;
  border-radius: 6px;
}

.footer p.title {
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  color: #00bfb3;
  line-height: 1;
  border-bottom: 1px solid #00bfb3;
}

.footer ul.footer__list {
  width: 47.768%;
}

.footer ul.footer__list li {
  position: relative;
  padding-left: 1.25em;
  font-size: 1.4rem;
  color: #000;
  line-height: 1.2;
  transform: rotateZ(0.03deg);
}

.footer ul.footer__list li span {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
}

.footer ul.footer__list li.position::after {
  content: "（　　　）";
}

.footer ul.footer__list li+li {
  margin-top: 12px;
}

.footer ul+ul {
  margin-left: 4.464%;
}

.footer p.footer__title a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  text-decoration: none;
  color: #fff;
  line-height: 1;
}

.footer p.footer__title a span.sub {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  transform: rotateZ(0.03deg);
}

.footer p.footer__title a span.main {
  display: block;
  margin-top: 9px;
  font-size: 2.6rem;
  font-weight: 900;
}

.footer p.footer__title a span.main span {
  font-weight: 500;
}

.footer ul.footer__link {
  /* display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px; */
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 200px)); 
  gap: 0 24px;
  justify-content: center;
  margin-top: 20px;
}

.footer ul.footer__link li {
  margin: 15px 0 0;
  /* transform: rotateZ(0.03deg); */
}

.footer ul.footer__link li a {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.footer ul.footer__link li.has-child > span {
  /* display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
  cursor: default; */
  display: block;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
  cursor: default;
  box-sizing: border-box;
}

.footer ul.footer__sublink {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
  padding-left: 1em;
  list-style: none;
}

.footer ul.footer__sublink li {
  margin: 0;
}

.footer ul.footer__sublink li a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
}

.footer ul.footer__sublink li a:hover {
  opacity: 1;
}

.footer .footer__corporate{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px auto 0;
}
.footer .career-workshop {
  /* background: #009de6; */
  background: linear-gradient(to right, #4db2ff, #dba8ff);
  border: 2px solid #fff;
  margin: 30px auto 0;
  max-width: 200px;
  border-radius: 50vh;
}

.footer .career-workshop a{
display: block;
padding: 8px;
text-decoration: none;
color: #fff;
font-weight: 600;
line-height: 1.2;
font-size: 1.2rem;
text-align: center;
}

.footer p.footer__logo--corporate {
  /* width: 186px; */
  height: 33px;
  margin: 60px auto 0;
  background: url("../images/logo_corporate_w.svg") center center no-repeat;
  background-size:100% 100%;
}

.footer p.footer__logo--corporate a {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.footer p.footer__txt a {
  text-decoration: none;  
  color: #fff;
  display: block; 
}
.footer p.footer__txt{
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
}

.footer p.footer__copyright {
  margin-top: 40px;
  text-align: center;
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  transform: rotateZ(0.03deg);
}

.footer .pagetop {
  position: absolute;
  right: 60px;
  bottom: 0;
  width: 38px;
  height: 106px;
  background: url("../images/pagetop.svg") center top no-repeat;
  background-size: contain;
  z-index: 99;
}

.footer .pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  /* footer ====================*/
  .footer {
    position: relative;
    background: #00bfb3;
  }

  .footer .footer__block:first-child {
    padding: 16vw 4.26vw;
    background: url("../images/footer_bg_sp.jpg") center center no-repeat;
    background-size: cover;
  }

  .footer .footer__block:last-child {
    padding: 13.33vw 4.26vw;
  }

  .footer .btn__contact {
    height: 18.66vw;
    margin: 0 auto;
  }

  .footer .btn__contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    text-decoration: none;
    font-size: 4.26vw;
    font-weight: 900;
    color: #fff;
    background: #00bfb3;
    border-radius: 9.33vw;
    border: 2px solid #fff;
  }

  .footer .group {
    margin: 8vw auto 0;
    padding: 6vw 4vw;
    background: #fff;
    border-radius: 1.6vw;
  }

  .footer p.title {
    margin-bottom: 6vw;
    padding-bottom: 4vw;
    text-align: center;
    font-size: 4.26vw;
    font-weight: 700;
    color: #00bfb3;
    line-height: 1.6;
    border-bottom: 1px solid #00bfb3;
  }

  .footer ul.footer__list li {
    position: relative;
    padding-left: 1.25em;
    font-size: 3.73vw;
    color: #000;
    transform: rotateZ(0.03deg);
  }

  .footer ul.footer__list li span {
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 700;
  }

  .footer ul.footer__list li.position::after {
    content: "（ ）";
  }

  .footer ul.footer__list li+li {
    margin-top: 2vw;
  }

  .footer ul+ul {
    margin-top: 2vw;
  }

  .footer p.footer__title a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    text-decoration: none;
    color: #fff;
    line-height: 1;
  }

  .footer p.footer__title a span.sub {
    display: block;
    font-size: 3.2vw;
    font-weight: 500;
    transform: rotateZ(0.03deg);
  }

  .footer p.footer__title a span.main {
    display: block;
    margin-top: 2vw;
    font-size: 5.06vw;
    font-weight: 900;
  }

  .footer p.footer__title a span.main span {
    font-weight: 500;
  }

  .footer ul.footer__link {
    /* grid-template-columns: repeat(2, 1fr);  */
    grid-template-columns: 1fr;
    gap: 0;
    /* padding: 0 4vw; */
    margin-top: 9.33vw;
  }

  /* .footer ul.footer__link li {
    border-bottom: 1px solid #fff;
  } */

  .footer ul.footer__link li a {
    display: block;
    padding: 4vw 0;
    text-decoration: none;
    font-size: 4.26vw;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    transform: rotateZ(0.03deg);
  }

  .footer ul.footer__link li.has-child > span {
    display: block;
    padding: 4vw 0 2vw;
    font-size: 4.26vw;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    cursor: default;
  }

  .footer ul.footer__sublink {
    padding: 2vw 0 2vw 3vw;
    gap: 4px;
    margin-top: 0;
  }

 .footer ul.footer__sublink li {
    border-bottom: none;
  }

  .footer ul.footer__sublink li a {
    display: block;
    padding: 1.5vw 0;
    font-size: 3.73vw;
    font-weight: 500;
    opacity: 0.85;
  }


  .footer .career-workshop {
    background: linear-gradient(to right, #4db2ff, #dba8ff);
    border: 2px solid #fff;
    margin: 30px auto 0;
    max-width: 300px;
    border-radius: 50vh;
}

.footer .career-workshop a{
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  font-size: 4.26vw;
  text-align: center;
}

  .footer .footer__corporate{
    display: block;
  }

  .footer p.footer__logo--corporate {
    /* width: 49.6vw; */
    height: 8.8vw;
    margin: 13.33vw auto 0;
    background: url("../images/logo_corporate_w.svg") center center no-repeat;
    background-size:100% 100%;
  }

  .footer p.footer__logo--corporate a {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
  }

  .footer p.footer__txt a {
    text-decoration: none;  
    color: #fff;
    display: block; 
  }

  .footer p.footer__txt{
    color: #fff;
    font-size: 4.26vw;
    font-weight: 700;
    margin-top: 4vw;
    text-align: center;
  }

  .footer p.footer__copyright {
    margin-top: 10vw;
    text-align: center;
    font-size: 3.2vw;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #fff;
    line-height: 1;
    transform: rotateZ(0.03deg);
  }

  .footer .pagetop {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: auto 0;
    width: 9.86vw;
    height: 28vw;
    background: url("../images/pagetop.svg") center center no-repeat;
    background-size: contain;
    z-index: 99;
  }

  .footer .pagetop a {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}