@charset "UTF-8";

/* --------------------------------------------------
		layout - header
-------------------------------------------------- */
.header__wrapper {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  background-color: hsla(0, 0%, 100%, 0.9)
}
.header__inner {
  display: flex;
  flex-wrap: no-wrap;
  overflow-x: hidden;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  margin: 0 auto;
  overflow: hidden;
}
.header__logo {
  display: block;
  flex-shrink: 0;
  margin-left: 10px;
}
@media(hover: hover) {
  .header__logo:hover,
  .header__logo:active {
    opacity: .9;
  }
}
@media(hover: none) {
  .header__logo:active {
    opacity: .9;
  }
}
.header__logo--img {
  width: 234px;
  height: /*60px*/auto;
}
/*header__nav
---------------------------*/
.header__nav {
  display: block;
  flex-shrink: 0;
}
.header__nav--ul {
  display: flex;
}
.header__nav--li {
  display: flex;
  align-items: center;
}
.header__nav--anchor {
  position: relative;
  margin-right: 25px;
  padding: 10px 18px 10px 10px;
  color: #29acdd;
  font-size: 18px;
  line-height: 22px;
  font-weight: bold;
}
.header__nav--anchor::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  transform: rotate(45deg);
  width: 9px;
  height: 9px;
  margin: auto;
  border: 0;
  border-bottom: solid 2px #29acdd;
  border-right: solid 2px #29acdd;
}
.header__nav--anchor:hover,
.header__nav--anchor:active {
  color: #005bab;
}
.header__nav--anchor:hover::after,
.header__nav--anchor:active::after {
  border-color: #005bab;
}
.header__nav--menu {
  position: relative;
  z-index: 151;
  width: 56px;
  height: 50px;
  margin: 15px 15px 0;
  overflow: hidden;
  cursor: pointer;
  caret-color: rgba(0, 0, 0, 0);
}
.header__nav--menu-border {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 44px;
  height: 3px;
  background-color: #29acdd;
  transform-origin: 0 50%;
  transition-property: all;
  transition-duration: 0.25s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.is-active .header__nav--menu-border {
  left: 30%;
  caret-color: rgba(0, 163, 224, .95);
}
.is-active .header__nav--menu-border-1 {
  top: 2px;
  transform: translate(4px, 0) rotate(45deg);
  width: 75%;
  background-color: #fff;
}
.header__nav--menu-border-2 {
  top: 15px;
}
.is-active .header__nav--menu-border-2 {
  opacity: 0;
}
.header__nav--menu-border-3 {
  top: 30px;
}
.is-active .header__nav--menu-border-3 {
  top: 31px;
  transform: translate(4px, 0) rotate(-45deg);
  width: 75%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .header__inner {
    max-width: none;
  }
  .header__logo {
    width: 50%;
  }
  .header__nav--pc {
    display: none;
  }
  .header__nav--menu {
    width: 4.4307692308rem;
    height: 4.4307692308rem;
    margin: 1.6rem 2.2153846154rem 0 0.9846153846rem
  }
  .header__nav--menu-border {
    width: 3.0769230769rem;
    height: 0.2461538462rem;
    left: 0;
    margin: auto;
  }
  .is-active .header__nav--menu-border-1 {
    top: 0.2461538462rem;
    transform: translate(0.2461538462rem, 0) rotate(45deg);
  }
  .header__nav--menu-border-2 {
    top: 1.2307692308rem;
  }
  .header__nav--menu-border-3 {
    top: 2.4615384615rem;
  }
  .is-active .header__nav--menu-border-3 {
    top: 2.5846153846rem;
    transform: translate(0.2461538462rem, 0) rotate(-45deg);
  }
}
@media screen and (max-width: 480px) {
  .header__logo--img {
    width: 160px;
  }
}
 /* l-nav
 ---------------------------*/
.l-nav {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 0;
  height: 100vh;
  color: #fff;
  overflow: hidden;
  background-color: rgba(0, 163, 224, .95);
  transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translate3d(0, 0, 101px);
}
.l-nav.is-active {
  width: 320px;
}
.l-nav__inner {
  position: relative;
  width: 320px;
  height: 100vh;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-nav__inner::-webkit-scrollbar {
  display: none;
}
.l-nav__body {
  position: relative;
  padding: 40px 0 60px;
  /*height: 100vh;*/
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  margin: auto 0;
}
.l-nav-close__button {
  position: absolute;
  top: 26px;
  right: 26px;
}
.l-nav-close__button-a {
  position: relative;
  font-size: 0;
  width: 26px;
  height: 26px;
  display: block;
}
.l-nav-close__button-a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: rotate(45deg);
}
.l-nav-close__button-a:after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: rotate(-45deg);
}
.l-nav-menu__list {
  border-bottom: 1px solid #00baff;
}
.l-nav-menu__list-top {
  display: flex;
  margin-left: 12px;
}
.l-nav-menu__list-top-li {
  width: 35%;
}
.l-nav-menu__list-top-a {
  position: relative;
  display: block;
  padding: 28px 0 13px;
  text-align: center;
  color: #fff;
  text-decoration: none;
}
.l-nav-menu__list-top-a:hover {
  opacity: .8;
  color: #fff;
  text-decoration: none;
}
.l-nav-menu__list-top-a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}
.l-nav-menu__list-top-login::before {
  background-image: url('/assets2/img/icon_menu_login.svg');
}
.l-nav-menu__list-top-mypage::before {
  background-image: url('/assets2/img/icon_menu_mypage_regist.svg');
}
.l-nav-menu__list-li {
  border-top: 1px solid #00baff;
}
.l-nav-menu__list-li--sub {
  position: relative;
}
.l-nav-menu__list-li--sub::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: 40px;
}
.l-nav-menu__list-li--sub a {
  padding-block: 10px !important;
  padding-left: 60px !important;
}
.l-nav-menu__list-li a {
  position: relative;
  display: block;
  padding: 15px 40px;
  background-image: url('/assets2/img/icon_arrow_r_white.svg');
  background-repeat: no-repeat;
  background-position: right 32px center;
  background-size: 14px auto;
  color: #fff;
}
.l-nav-menu__list-li a[target=_blank] {
  background-image: url('/assets2/img/icon_outside_white.svg')
}
.l-nav-lp__list {
  padding: 0 70px;
  margin: 20px 0;
}
.l-nav-lp__list-li+.l-nav-lp__list-li {
  margin-top: 10px;
}
.l-nav-lp__list-banner {
  max-width: 100%;
}
.l-nav-recruit__button a {
  position: relative;
  display: block;
  padding: 15px 40px;
  background-image: url('/assets2/img/icon_outside_white.svg');
  background-repeat: no-repeat;
  background-position: right 32px center;
  background-size: 14px auto;
  background-color: #005bab
}
@media screen and (max-width: 767px) {
    .l-nav.is-active,
    .l-nav__inner {
      width: 40.32rem;
      width: min(100vw, 36.16rem);
    }
        .l-nav__body {
        padding: 11.7340286832% 0 15.6453715776%;
        font-size: 1.625rem;
    }
}
@media screen and (min-width: 1263px) {
  .header__inner { 
    max-width: 1246px;
  }
  .l-nav {
    right: calc((100vw - 1263px)*.5);
  }
}
/*ヘッダー終了しました表示
---------------------------*/
.header__nav--apply {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 240px;
  margin: 0 auto;
  padding: 16px 64px;
  font-size: 1.7rem;
  font-weight: bold;
  color: #FFFFFF;
  background: linear-gradient(270deg, #877a8b 0%, #827f8a 25%, #7b8091 51%, #b6c0c3 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  transition: all 0.2s ease-out;
  text-decoration: none;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .header__nav--apply {
    /*width: 100%;*/
    width: 8em;
    height: auto;
    padding: 12px 0 !important;
    /*font-size: 1.6rem;*/
    font-size: min(4vw, 1.6rem);
  }
}
@media screen and (max-width: 480px) {
  .header__nav--apply {
    width: 7em;
  }
}
/* --------------------------------------------------
		layout - footer
-------------------------------------------------- */
/*hack*/
.l-footer__terms {
  font-size: 13px !important;
}
.l-footer__address {
  font-size: 15px !important;
}
.l-footer__copyright p {
  font-size: 10px !important;
}
.l-footer {
  display: block;
  padding: 0;
  max-width: none;
}
/*common.sass共通ここから*/
.l-footer {
  line-height: 1.8;
  background-color: #fff;
}
.l-footer .l-cts {
  color: #202020;
  padding: 100px 0 34px;
  letter-spacing: 0;
}
.l-footer-cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
}
.l-footer__logo {
  width: 248px;
  margin-right: 4%;
}
.l-footer-logo__button img {
  width: 248px;
  height: 48px;
}
.l-footer__address {
  font-weight: 500;
}
.l-footer__address span {
  display: block;
  font-size: 120%;
}
.l-footer__terms {
  font-size: 1.3rem;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 100px;
}
.l-footer__terms li {
  margin-top: 15px;
}
.l-footer__terms li a {
  margin-right: 1em;
  padding-right: 1em;
  border-right: 1px solid #202020;
  text-decoration: none;
  color: inherit;
}
.l-footer__bnr {
  width: 303px;
}
.l-footer-bnr__button img {
  width: 303px;
  height: 74px;
}
.l-footer__copyright {
  text-align: center;
}
.l-footer__copyright p {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  margin: 0 7px;
}
@media screen and (min-width: 768px) {
  .l-footer .u-sp {
    display: none;
  }
  .l-footer {
    padding: 0 5%;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .l-cts {
    padding: 20.8604954368% 0 15.6453715776%;
  }
  .l-footer-cols {
    display: block;
    margin: 0 0 8.8657105606%;
  }
  .l-footer__logo {
    width: 71.884057971%;
    margin: 0 auto 14.6023468057%;
  }
  .l-footer-logo__button img {
    width: 100%;
    height: 19.3548387097%;
  }
  .l-footer__address {
    text-align: center;
  }
  .l-footer__terms {
    text-align: center;
    font-size: 1.625rem;
    margin: 0 auto 13.037809648%;
    display: block;
  }
  .l-footer__terms li {
    margin-top: 2.0860495437%;
  }
  .l-footer__terms li a {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
  }
  .l-footer__bnr {
    width: 87.8260869565%;
    margin: 0 auto;
  }
  .l-footer-bnr__button img {
    width: 100%;
    height: 24.4224422442%;
  }
  .l-footer__copyright p {
    display: block;
    font-size: 1.25rem;
  }
}
/* --------------------------------------------------
		chatbot
-------------------------------------------------- */
#c-chatbot {
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 99999;
}
#c-chatbot__link {
  display: flex;
  align-items: center;
  background-color: #207fef;
  border-radius: 30px;
  padding-block: 4px;
  padding-inline: 4px 20px;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.3));
  transition: all 0.15s ease-out;
}
#c-chatbot__icon {
  display: grid;
  place-content: center;
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 10px;
}
#c-chatbot__glyph {
  width: 22px;
  height: 22px;
  fill: #207fef;
  transition: all 0.15s ease-out;
}
#c-chatbot__text {
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.2px;
  color: #fff;
}
@media (hover: hover) {
  #c-chatbot__link:hover {
    background-color: #0f66cd;
  }
  #c-chatbot__link:hover #c-chatbot__glyph {
    scale: 1.2;
    fill: #0f66cd;
  }
}
@media (hover: none) {
  #c-chatbot__link:active {
    background-color: #0f66cd;
  }
  #c-chatbot__link:active #c-chatbot__glyph {
    scale: 1.2;
    fill: #0f66cd;
  }
}
@media screen and (max-width: 767px) {
  #c-chatbot {
    right: 10px;
  }
  #c-chatbot__icon {
    width: 30px;
    height: 30px;
  }
  #c-chatbot__glyph {
    width: 20px;
    height: 20px;
  }
  #c-chatbot__text {
    font-size: 13px;
  }
}
