@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("../font/ZenKakuGothicNew-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("../font/ZenKakuGothicNew-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("../font/ZenKakuGothicNew-Bold.ttf") format("truetype");
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("https://recruit.a-l-c.jp/wp-content/themes/alc/font/Roboto-Italic-VariableFont_wdth\,wght.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../font/Outfit-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
}

html {
  position: relative;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-feature-settings: "palt";
  font-weight: 400;
  z-index: 1;
  overflow-x: hidden;
}

@media screen and (min-width:1920px) {
  html {
    font-size: 0.5208vw;
  }
}

@media screen and (min-width:1440px) and (max-width:1919px) {
  html {
    font-size: 10px;
  }
}

@media screen and (min-width:768px) and (max-width:1439px) {
  html {
    font-size: 0.6944vw;
  }
}

@media screen and (max-width:767px) {
  html {
    font-size: 1.333vw;
  }
}

main {
  position: relative;
  padding-top: 10rem;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.sp_only {
  display: none !important;
}

@media screen and (max-width:767px) {
  .pc_only {
    display: none !important;
  }

  .sp_only {
    display: block !important;
  }
}

h2 {
  transform: scale(0.9769, 1);
}

p {
  font-size: 2.0rem;
}

@media screen and (max-width:767px) {
  p {
    font-size: 2.4rem;
  }
}

.outfit-italic {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: italic;
  transform: scale(0.976, 1);
}

.yugo-nomal {
  font-family: "游ゴシック", "Yu Gothic", sans-serif;
}

.overflow--hidden {
  overflow: hidden;
}



/* ========== header ========== */
header {
  position: fixed;
  top: 0;
  background-color: #fff;
  border-bottom: #42a0d9 solid 1px;
  width: 100%;
  z-index: 999;
}

.header__inner {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin: auto;
  padding: 0 0 2.6rem;
  height: 10rem;
  max-width: 108rem;
}

.header__inner .header__logo {
  margin-right: auto;
  width: 14.6rem;
}

.header__inner .header__nav--pc {
  margin-left: 5rem;
  width: 60rem;
}

.header__inner .header__nav--pc ul {
  display: flex;
  justify-content: space-between;
}

.header__inner .header__nav--pc a {
  position: relative;
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
}

.header__inner .header__nav--pc a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 0.2rem;
  background: #42a0d9;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.2s;
}

.header__inner .header__nav--pc a:hover::after {
  transform: scale(1, 1);
}

.header__inner .header__nav--pc a.current__url::after {
  transform: scale(1, 1);
}

.header__nav__entry {
  font-size: 3.8rem;
  color: #fff;
  background-color: #42a0d9;
  border-radius: 10rem;
  padding: .3rem 4rem;
  margin-left: 2rem;
  transition: .2s;
}
.header__nav__entry:hover {
  background-color: #0086d9;
}

@media screen and (max-width:767px) {
  .header__inner {
    padding: 0 2rem 2.5rem;
  }

  .header__inner .header__logo {
    width: 15.03rem;
  }

  .header__inner .header__nav--pc {
    display: none;
  }

  .header__inner .header__nav--sp {
    display: block;
  }

  .header__nav__btn{
    position: relative;
    cursor: pointer;
    margin: 1rem;
    margin-left: 2rem;
    width: 4.5rem;
    height: 3.2rem;
    z-index: 11;
  }
  .header__nav__btn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
    height: 0.2rem;
    background: #666666;
    width: 100%;
  }
  .header__nav__btn.active span{
    background: #fff;
  }
  .header__nav__btn span:nth-of-type(1) {
    top: 0;
  }
  .header__nav__btn span:nth-of-type(2) {
    top: 46%;
  }
  .header__nav__btn span:nth-of-type(3) {
    bottom: 0;
  }
  .header__nav__btn.active span:nth-of-type(1) {
    top: .5rem;
    left: 1rem;
    transform: translateY(0.8rem) rotate(-45deg);
    width: 80%;
  }
  .header__nav__btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .header__nav__btn.active span:nth-of-type(3){
    top: 2.1rem;
    left: 1rem;
    transform: translateY(-0.8rem) rotate(45deg);
    width: 80%;
  }

  .header__nav__entry {
    margin-left: auto;
  }

  .header__nav__open {
    display: none;
  }

  /* header__nav__open */
  .header__nav__open {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: linear-gradient(0deg, #42a0d9 0%, #a8d8d8 100%);
    padding: 5.2rem;
    overflow-y: auto;
  }
  .header__nav__open .header__logo--sp {
    display: block;
    width: 15rem;
    margin-top: -2.5rem;
    margin-left: -2rem;
  }
  .header__nav__open__content {
    padding-top: 6rem;
    width: 100%;
  }
  .header__nav__open__content ul li {
    border-bottom: #fff solid 0.2rem;
    font-size: 3.3rem;
    color: #fff;
    padding: 2.6rem 3rem 2.2rem;
  }
  .header__nav__open__content ul li .header__nav__open__nav--en {
    font-family: 'Roboto', sans-serif;
    font-size: 7.4rem;
    font-weight: 300;
    font-style: italic;
  }
  .header__nav__open__content ul li .header__nav__open__nav--en span {
    font-weight: 500;
  }
  .header__nav__open__content ul li .header__nav__open__nav--ja {
    font-size: 2.1rem;
  }
  .header__nav__open .header__nav__entry--sp {
    display: block;
    font-size: 6.8rem;
    color: #42a0d9;
    background-color: #fff;
    border-radius: 10rem;
    padding: 2rem 4rem;
    margin: 5.6rem auto 2rem;
    width: 43.9rem;
    text-align: center;
  }
  /* / header__nav__open */
}
/* ========== / header ========== */



/* ========== footer ========== */
.common__footer__inner {
  padding: 4rem 7rem;
  max-width: 108rem;
  margin: auto;
}

.common__footer__sitemap__wrap {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}

.common__footer__logo {
  width: 14.2rem;
}

.common__footer__sitemap {
  display: flex;
  gap: 6rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6em;
}

.common__footer__sitemap li a {
  display: block;
  position: relative;
}

.common__footer__sitemap li a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 0.2rem;
  background: #42a0d9;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.2s;
}

.common__footer__sitemap li a:hover::after {
  transform: scale(1, 1);
}

.common__footer__links__wrap {
  border-top: #b3b3b3 solid 1px;
}

.common__footer__links {
  display: flex;
  margin: 0 0 0.5em;
  font-size: 1.6rem;
}

.common__footer__links li::after {
  content: "";
  display: inline-block;
  background-color: #000;
  margin: 0 1.0rem;
  height: 1.2rem;
  width: .1rem;
}
.common__footer__links li:last-of-type:after {
  width: 0;
}

.common__footer__copyright {
  margin-top: 1rem;
  font-size: 1.4rem;
}

@media screen and (max-width:767px) {
  .common__footer__inner {
    padding: 2.4rem 3.2rem;
    padding-right: 1rem;
  }

  .common__footer__sitemap__wrap {
    padding-top: 8.5rem;
  }

  .common__footer__logo {
    width: 18.78rem;
  }

  .common__footer__links{
    font-size: 2.1rem;
  }

  .common__footer__links li::after {
    height: 1.5rem;
  }

  .common__footer__copyright {
    font-size: 2rem;
  }

}
/* ========== / footer ========== */


/* ========== footer (ALC recruit) ========== */
.common__recruit .common__recruit__h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 10.821rem;
  font-style: italic;
  font-weight: bold;
  padding-top: .5em;
  text-align: center;
  margin-bottom: 0;
  line-height: .7em;
}
.common__recruit .common__recruit__h2 span {
  font-size: 11.355rem;
  font-weight: 300;
  padding-right: 2rem;
}
.common__recruit__inner {
  background: linear-gradient(0deg, #42a0d9 0%, #a8d8d8 100%);
  color: #fff;
  text-align: center;
  padding: 4.7rem 0 3.7rem;
}

.common__recruit__heading {
  position: relative;
  font-size: 2.64rem;
  font-weight: 600;
  margin: 0 auto 5rem;
  z-index: 2;
}

.common__recruit__heading:after {
  animation: recruitArrow 1.8s ease infinite;
  background: url(../img/common/common__recruit__arrow.svg) no-repeat center top / 100% auto;
  content: '';
  height: 8.868rem;
  left: 50%;
  position: absolute;
  top: 1.5em;
  transform: translateX(-50%);
  width: 1.355rem;
}
@keyframes recruitArrow {
  0% {
    background-position: center top -13.8rem;
  }
  35%,65% {
    background-position: center top 0;
  }
  100% {
    background-position: center bottom -13.8rem;
  }
}

.common__recruit__entry--wrap {
  position: relative;
  margin: 0 auto 4rem;
  height: 28rem;
  width: 28rem;
}

.common__recruit__entry {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 50%;
  font-size: 6.368rem;
  font-weight: 800;
  color: #627d8c;
  height: 100%;
  width: 100%;
  transition: .2s;
  overflow: hidden;
}

.common__recruit__entry:hover {
  transform: translate(-50%, -50%) scale(1.1,1.1);
}

.common__recruit__description {
  font-size: 1.4rem;
  line-height: 2.5rem;
}

@media screen and (max-width:767px) {
  .common__recruit__heading {
    font-size: 3.4rem;
  }
  .common__recruit__description {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}


/* ========== / footer (ALC recruit) ========== */



/* ========== 共通パーツ ========== */

.flex_wrap {
  display: flex;
}

.flex_col {
  width: 48%;
}

@media screen and (max-width:767px) {
  .flex_wrap {
    flex-direction: column;
  }

  .flex_col {
    width: 100%;
  }
}

.common__inner {
  max-width: 108rem;
  margin: auto;
}

.common__btn__gray {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #627d8c;
  border-radius: 10rem;
  color: #fff;
  font-size: 2.04rem;
  margin: auto;
  padding: 2rem;
  width: 27.94rem;
  letter-spacing: 0.05em;
}

.common__btn__gray::after {
  content: "";
  background-image: url(../img/common/common__btn__arrow.svg);
  background-size: 98%;
  background-repeat: no-repeat;
  margin-left: .5rem;
  height: 3.9rem;
  width: 3.9rem;
  transition: 0.4s;
}

.common__btn__gray:hover::after {
  transform: translateX(.6rem);
}

@media screen and (max-width:767px) {
  .common__btn__gray {
    width: 40.23rem;
    font-size: 2.938rem;
    margin-top: 1rem;
    padding: 3rem 0;
  }

  .common__btn__gray::after {
    margin-left: 2rem;
    height: 5.67rem;
    width: 5.67rem;
  }
}

.common__text--bg_blue {
  display: inline-block;
  background-color: #42a0d9;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition-duration: 1s;
}

.common__text--bg_blue.active {
  webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.common__line {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #cbe8e8 0%, #8ec6e8 100%);
  height: 28rem;
  width: 0;
  transition: 0.7s;
  transform-origin: left;
  transform: skewY(45deg);
  z-index: -1;
}

.common__line.active {
  width: 100vw;
}

@media screen and (max-width:767px) {
  .common__line {
    height: 35rem;
  }
}
