@import "https://fonts.googleapis.com/earlyaccess/notosansjp.css";
/* common */
* {
  box-sizing: border-box;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 100%;
  font-style: normal;
  font-weight: 400;
  color: #2c2a29;
}

body {
  padding: 0;
  margin: 0;
  overflow: hidden auto;
  line-height: 1.5;
  background: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background-color: #c1c1c1;
}

html {
  scrollbar-color: #f1f1f1 #c1c1c1;
  scrollbar-width: thin;
}

ul,
ol {
  list-style: none;
}

.fix {
  position: fixed !important;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .fix {
    overflow: hidden scroll;
  }
}
@media screen and (max-width: 959px) {
  .fix {
    overflow: hidden;
  }
}

a {
  text-decoration: none;
  cursor: pointer;
}

em {
  font-style: normal;
}

br.space {
  display: block;
  width: 100%;
  height: 1.8em;
  content: "";
}

.op1 {
  visibility: inherit !important;
  opacity: 1 !important;
}

.op0 {
  visibility: hidden;
  opacity: 0 !important;
}

.fix-wrap {
  width: 100%;
}

.blue-g {
  background: linear-gradient(90deg, #10069f, #3c2eff);
}

.flex-box {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 959px) {
  .pc-only,
  .sp-none {
    display: none !important;
  }
}

@media screen and (min-width: 960px) {
  .sp-only,
  .pc-none {
    display: none !important;
  }
}

.fresh-btm,
.career-btm {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.fresh-btm,
.career-btm {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.fresh-btm span,
.career-btm span {
  position: relative;
  z-index: 3;
  display: inline-block;
}
@media screen and (min-width: 960px) {
  .fresh-btm::before,
  .career-btm::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #10069f;
    border-radius: 56px;
    transform: scale(0, 1);
    transform-origin: center right;
    transition: transform 0.3s ease;
  }
  .fresh-btm:hover,
  .career-btm:hover {
    color: #fff;
  }
  .fresh-btm:hover span,
  .career-btm:hover span {
    color: #fff;
  }
  .fresh-btm:hover::before,
  .career-btm:hover::before {
    transform: scale(1, 1);
    transform-origin: center left;
  }
}

.career-btm::after {
  position: absolute;
  top: 0;
  z-index: 3;
  display: block;
  height: 100%;
  content: "";
  background: url("../images/icon-link-w.svg") no-repeat center;
  background-size: contain;
}

.contents-wrap a.career-btm {
  max-width: 400px;
  height: 80px;
  padding: 0 40px;
  margin: 5rem auto 0;
  font-size: 1.5rem;
  border-radius: 80px;
}
.contents-wrap a.career-btm::after {
  right: 30px;
  width: 10px;
}
@media screen and (min-width: 960px) {
  .contents-wrap a.career-btm::before {
    border-radius: 80px;
  }
}
@media screen and (max-width: 959px) {
  .contents-wrap a.career-btm {
    margin-top: 3rem;
    transform: scale(0.8);
  }
  .contents-wrap a.career-btm::after {
    right: 20px;
  }
}

/* .fresh-btm {
    @include mq(pc-tablet) {
        transition: opacity .2s ease;
        &:hover {
            opacity: .8;
        }
    }
} */
/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2);
}
header .header-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1920px;
  height: 90px;
  margin: auto;
}
header h1 {
  display: flex;
  align-items: center;
  width: 20vw;
  min-width: 300px;
  height: 40px;
  padding: 0 1vw 0 40px;
  margin: auto 0;
  cursor: pointer;
  background: #fff;
}
@media screen and (min-width: 960px) {
  header h1 {
    transition: opacity 0.2s ease;
  }
  header h1:hover {
    opacity: 0.8;
  }
}
header h1 img {
  width: 8vw;
  min-width: 76px;
  max-width: 90px;
}
header h1 .header-logo-text {
  width: 140px;
  height: 30px;
  margin-left: 16px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
header a {
  align-items: center;
  justify-content: center;
  text-align: center;
}
header .headlink {
  display: flex;
  align-items: center;
  width: 40vw;
  margin: auto;
}
header .headlink a {
  position: relative;
  display: flex;
  align-items: center;
  height: 50px;
  margin: auto 0.8vw;
  font-weight: 400;
  line-height: 1.2;
  color: #2c2a29;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
header .headlink a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #10069f;
  transform: scaleX(0);
  transform-origin: center right;
  transition: transform 0.3s ease;
}
header .headlink a:nth-of-type(1) {
  margin-left: 1vw;
}
header .headlink a:last-of-type {
  margin-right: auto;
}
header .headlink a:hover {
  color: #10069f;
}
header .headlink a:hover::after {
  transform: scaleX(1);
  transform-origin: center left;
}
header .nav-btm {
  position: fixed;
  top: 0;
  right: 16px;
  display: flex;
  align-items: center;
  width: 80px;
  height: 90px;
  background: #fff;
}
@media screen and (min-width: 960px) {
  header .nav-btm:hover {
    transform: scaleX(1.1);
  }
}
header .nav-btm p {
  position: relative;
  width: 32px;
  height: 22px;
  margin: auto;
}
header .nav-btm p span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  transition: transform 0.3s;
}
header .nav-btm p span:nth-of-type(1) {
  top: 0;
}
header .nav-btm p span:nth-of-type(2) {
  top: 10px;
}
header .nav-btm p span:nth-of-type(3) {
  top: 10px;
}
header .nav-btm p span:last-of-type {
  bottom: 0;
}
header .nav-btm.active span:nth-of-type(1) {
  opacity: 0;
}
header .nav-btm.active span:nth-of-type(2) {
  transform: rotate(45deg);
}
header .nav-btm.active span:nth-of-type(3) {
  transform: rotate(-45deg);
}
header .nav-btm.active span:last-of-type {
  opacity: 0;
}
header .application-wrap {
  display: flex;
  align-items: center;
  padding-right: 96px;
  padding-left: 1vw;
  margin: auto 0 auto auto;
}
header .application-wrap a:first-of-type {
  margin-left: auto;
}
header .fresh-btm,
header .career-btm {
  display: flex;
  width: 240px;
  height: 56px;
  padding: 0 28px;
  line-height: 1;
  border-radius: 56px;
}
header .career-btm-wrap {
  overflow: hidden;
  border-radius: 56px;
}
header .career-btm {
  position: relative;
  margin: 0;
  overflow: visible;
  color: #10069f;
  background: #fff;
  border: solid 2px #10069f;
  transition: opacity 0.2s ease;
}
header .career-btm::before {
  content: "";
}
header .career-btm::after {
  position: absolute;
  top: 0;
  right: 16px;
  z-index: 3;
  display: block;
  width: 8px;
  height: 100%;
  content: "";
  background: url("../images/icon-link-blue.svg") no-repeat center;
  background-size: contain;
}
header .career-btm:hover {
  opacity: 1;
}
header .career-btm:hover span {
  color: #fff;
}
header .career-btm:hover::after {
  background: url("../images/icon-link-w.svg") no-repeat center;
}
header .fresh-btm {
  flex-flow: column wrap;
  margin-right: 16px;
  color: #fff;
}
header .fresh-btm::after {
  position: absolute;
  top: 0;
  right: 16px;
  z-index: 3;
  display: block;
  width: 8px;
  height: 100%;
  content: "";
  background: url("../images/icon-link-w.svg") no-repeat center;
  background-size: contain;
}
header .fresh-btm {
  /* span:nth-of-type(1) {
          color: #10069F;
          font-size: .875em;
          margin-bottom: 2px;
      }
      span:nth-of-type(2) {
          margin-top: 2px;
      } */
}
@media screen and (min-width: 1920px) {
  header .headlink a {
    margin-right: 1.2rem;
    margin-left: 1.2rem;
  }
  header .headlink a:nth-of-type(1) {
    margin-left: 1.2rem;
  }
}
@media screen and (max-width: 1559px) {
  header h1 {
    padding-left: 16px;
  }
  header .headlink a {
    font-size: 0.8rem;
  }
  header .application-wrap {
    padding-right: 72px;
  }
  header .nav-btm {
    right: 0;
    width: 64px;
  }
}
@media screen and (max-width: 1365px) {
  header .headlink {
    display: none;
  }
  header .application-wrap {
    width: auto;
  }
}
@media screen and (min-width: 960px) {
  header .career-btm::before {
    top: -2px;
    left: -2px;
    border: 2px solid #10069f;
  }
}
@media screen and (max-width: 959px) {
  header {
    position: relative;
  }
  header .header-wrap {
    height: 0;
  }
  header h1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 56px;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
  }
  header h1 .header-logo-text {
    width: 96px;
    margin-left: 12px;
  }
  header .application-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    visibility: hidden;
    justify-content: space-evenly;
    width: 100%;
    padding: 16px 16px 24px;
    margin: auto;
    background: url("../images/section-bg05.png");
    opacity: 0;
    transition: all 0.3s ease;
  }
  header .application-wrap a {
    width: 48%;
    max-width: 180px;
    height: 3rem;
    padding: 0 1rem;
    margin: auto;
    font-size: 0.8rem;
  }
  header .application-wrap a:first-of-type {
    margin-right: 8px;
    margin-left: 0;
  }
  header .application-wrap .career-btm-wrap {
    width: 48%;
    max-width: 180px;
  }
  header .application-wrap a.career-btm {
    width: 100%;
    margin: 0;
  }
  header .application-wrap .career-btm::after {
    right: 0.6rem;
    width: 0.4rem;
  }
  header .nav-btm {
    height: 56px;
    margin-left: auto;
    transition: all 0.2s ease;
  }
}

#g-top header .headlink a:nth-of-type(1) {
  border-bottom-color: #2c2a29;
}
#g-top header .headlink a:nth-of-type(1)::after {
  display: none;
}
#g-top header .headlink a:nth-of-type(1):hover {
  color: #2c2a29;
}

#top-message .headlink a:nth-of-type(2) {
  border-bottom-color: #2c2a29;
}
#top-message .headlink a:nth-of-type(2)::after {
  display: none;
}
#top-message .headlink a:nth-of-type(2):hover {
  color: #2c2a29;
}

#history .headlink a:nth-of-type(3) {
  border-bottom-color: #2c2a29;
}
#history .headlink a:nth-of-type(3)::after {
  display: none;
}
#history .headlink a:nth-of-type(3):hover {
  color: #2c2a29;
}

/* gnav */
nav.gnav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  display: none;
  width: 100%;
  height: 100vh;
  padding-top: 90px;
  background: rgba(0, 0, 0, 0.25);
}
nav.gnav .nav-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  padding: 56px 40px;
  background: #fff;
}
nav.gnav .nav-wrap > div {
  width: 33%;
  max-width: 533.3333333333px;
  padding: 0 1.5vw;
  margin: 0 0 1rem;
  border-left: #ededed 1px solid;
}
nav.gnav .nav-wrap > div h2 {
  width: 100%;
  margin-bottom: 40px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
nav.gnav .nav-wrap > div a {
  position: relative;
  float: left;
  display: block;
  width: 44%;
  min-width: 170px;
  padding: 0 8px 0 9px;
  margin: 0 0 1.5rem;
  line-height: 1.5;
  color: #2c2a29;
}
nav.gnav .nav-wrap > div a span {
  position: relative;
  display: inline-block;
}
nav.gnav .nav-wrap > div a::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 4px;
  height: 0.75rem;
  content: "";
  border-bottom: #2c2a29 1px solid;
}
nav.gnav .nav-wrap > div::after {
  clear: both;
  height: 0;
  content: "";
}
@media screen and (min-width: 960px) {
  nav.gnav .nav-wrap > div a span::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 1px;
    content: "";
    background-color: #10069f;
    transform: scaleX(0);
    transform-origin: center right;
    transition: transform 0.3s ease;
  }
  nav.gnav .nav-wrap > div a span:hover {
    color: #10069f;
  }
  nav.gnav .nav-wrap > div a span:hover::after {
    transform: scaleX(1);
    transform-origin: center left;
  }
}
nav.gnav .nav-wrap > div:nth-of-type(1) {
  padding-right: 3vw;
  padding-left: 0;
  margin-left: auto;
  border-left: none;
}
nav.gnav .nav-wrap > div:nth-of-type(2) {
  padding-left: 3vw;
}
nav.gnav .nav-wrap > div:nth-of-type(3) {
  padding-right: 0;
  padding-left: 3vw;
  margin-right: auto;
}
@media screen and (max-width: 1559px) {
  nav.gnav .nav-wrap {
    padding: 56px 4.2vw;
  }
}
@media screen and (max-width: 1365px) {
  nav.gnav .nav-wrap > div:nth-of-type(1) {
    padding-right: 1vw;
  }
  nav.gnav .nav-wrap > div:nth-of-type(2) {
    padding-right: 0;
    padding-left: 1vw;
  }
  nav.gnav .nav-wrap > div:last-of-type {
    padding-left: 1vw;
  }
}
@media screen and (max-width: 959px) {
  nav.gnav {
    padding-top: 55px;
  }
  nav.gnav .nav-wrap {
    width: calc(100vw + 3px);
    padding-top: 32px;
    padding-right: 19px;
    box-shadow: -2px 2px 2px 0 rgba(0, 0, 0, 0.8) inset;
  }
  nav.gnav .nav-wrap > div {
    border-left: none;
  }
  nav.gnav .nav-wrap > div h2 {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  nav.gnav .nav-wrap > div a {
    width: 100%;
    min-width: auto;
    margin-bottom: 0.5em;
  }
}
@media screen and (max-width: 959px) and (orientation: portrait) {
  nav.gnav .nav-wrap > div {
    width: 50%;
  }
  nav.gnav .nav-wrap > div:nth-of-type(2) {
    padding-left: 0.5rem;
  }
  nav.gnav .nav-wrap > div:last-of-type {
    padding-left: 0;
  }
}
@media screen and (max-width: 479px) {
  nav.gnav .nav-wrap > div a {
    width: 100%;
    min-width: auto;
  }
}

/* footer */
footer {
  position: relative;
  width: 100%;
  padding: 64px 0;
  background: #f2f2f2;
}
footer section {
  display: flex;
  align-content: center;
  max-width: 1920px;
  padding: 0 8.3333vw;
  margin: auto;
}
footer section > ul {
  margin: 0 1vw auto 0;
}
footer section > ul a {
  line-height: 1;
  color: #2c2a29;
}
@media screen and (min-width: 960px) {
  footer section > ul a {
    position: relative;
    display: inline-block;
    transition: all 0.2s ease;
  }
  footer section > ul a::before {
    position: absolute;
    bottom: -4px;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    content: "";
    background-color: #10069f;
    transform: scale(0, 1);
    transform-origin: center right;
    transition: transform 0.2s ease;
  }
  footer section > ul a:hover {
    color: #10069f;
  }
  footer section > ul a:hover::before {
    transform: scale(1, 1);
    transform-origin: center left;
  }
}
footer section > ul li > span {
  position: relative;
  display: inline-block;
  width: 1.5em;
  height: 1em;
  margin: 0 0.5em;
}
footer section > ul li > span::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #bbb;
  transform: rotate(-45deg);
}
footer section > ul li:first-of-type {
  margin-bottom: 32px;
  font-size: 1.125rem;
}
footer section > ul li:last-of-type {
  font-size: 0.875rem;
}
footer section > div {
  display: flex;
  align-items: center;
  height: 80px;
  margin: 0 0 0 auto;
}
footer section a.share-link {
  width: 32px;
  height: 32px;
  margin: auto 0 auto 24px;
}
footer section a.share-link img {
  width: 100%;
}
@media screen and (min-width: 960px) {
  footer section a.share-link {
    transition: opacity 0.2s ease;
  }
  footer section a.share-link:hover {
    opacity: 0.6;
  }
}
footer section a.share-link:first-of-type {
  margin-left: auto;
}
footer figure {
  width: 100%;
  margin: 64px auto auto;
  text-align: center;
}
footer figure img {
  width: 144px;
}
footer small {
  display: block;
  width: 100%;
  margin: 32px auto 0;
  font-size: 0.625rem;
  text-align: center;
  letter-spacing: 1px;
}
@media screen and (max-width: 959px) {
  footer {
    padding: 32px 0 96px;
  }
  footer section {
    padding: 0 4.2vw;
  }
  footer section > ul {
    margin: 0 0 2rem;
  }
  footer section > ul a {
    display: block;
    margin-bottom: 1.3rem;
    line-height: 1.2;
  }
  footer section > ul li > span {
    display: none;
  }
  footer section > ul li:first-of-type {
    margin-bottom: 0;
    font-size: 1rem;
  }
  footer section > ul li:last-of-type {
    font-size: 1rem;
  }
  footer section > ul li:last-of-type a:last-of-type {
    margin-bottom: 0;
  }
  footer section a.share-link {
    width: 40px;
    height: 40px;
    margin-left: 2rem;
  }
  footer figure {
    margin-top: 32px;
  }
  footer small {
    margin-top: 16px;
  }
}
@media screen and (min-width: 1920px) {
  footer section {
    width: 1920px;
    padding-right: 160px;
    padding-left: 160px;
  }
}
@media screen and (max-width: 479px) {
  footer section {
    flex-wrap: wrap;
  }
  footer section > ul {
    width: 100%;
  }
  footer section a.share-link:last-of-type {
    margin-right: auto;
  }
}

/* main */
main section {
  position: relative;
  background-color: #fff;
}
main section .contents-wrap {
  position: relative;
  width: 100%;
  max-width: 1920px;
  padding: 4rem 8.3333vw 7.5rem;
  margin: 0 auto;
}
main #title-section {
  margin-top: 90px;
}
main #title-section h1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: 300px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
  background: no-repeat center;
  background-size: cover;
}
main #title-section h1 em {
  width: 100%;
  margin: auto auto 0;
  font-size: 1.2rem;
}
main #title-section h1 span {
  width: 100%;
  margin: 0 auto auto;
  font-size: 5rem;
}
main #title-section .breadcrumb-wrap {
  display: flex;
  align-items: center;
  max-width: 1920px;
  height: 60px;
  padding: 0 8.3333vw;
  margin: auto;
  overflow: auto hidden;
  font-size: 0.8rem;
}
main #title-section .breadcrumb-wrap a {
  position: relative;
  padding-right: 2em;
  margin-right: 1.5em;
  color: #2c2a29;
}
main #title-section .breadcrumb-wrap a::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 0.45em;
  height: 100%;
  content: "";
  background: url("../images/icon-link-b.svg") no-repeat center;
  background-size: contain;
}
@media screen and (min-width: 960px) {
  main #title-section .breadcrumb-wrap a span {
    position: relative;
    display: inline-block;
  }
  main #title-section .breadcrumb-wrap a span::before {
    position: absolute;
    bottom: -1px;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    content: "";
    background: #10069f;
    transform: scale(0, 1);
    transform-origin: bottom right;
    transition: transform 0.2s ease;
  }
  main #title-section .breadcrumb-wrap a:hover {
    color: #10069f;
  }
  main #title-section .breadcrumb-wrap a:hover span::before {
    transform: scale(1, 1);
    transform-origin: bottom left;
  }
}
main #title-section .breadcrumb-wrap > span {
  color: #697180;
}
main #lead-section .contents-wrap {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
}
main #lead-section h2 {
  margin: auto auto 0;
  font-size: 3.375rem;
  font-weight: 700;
  line-height: 1.5;
  color: transparent;
  text-align: center;
  background: linear-gradient(90deg, #10069f, #3c2eff);
  background-clip: text;
}
@media screen and (min-width: 1920px) {
  main section .contents-wrap,
  main #title-section .breadcrumb-wrap {
    width: 1920px;
    padding-right: 160px;
    padding-left: 160px;
  }
}
@media screen and (max-width: 959px) {
  main section .contents-wrap {
    padding: 3rem 4.2vw;
  }
  main #title-section {
    margin-top: 56px;
  }
  main #title-section h1 {
    height: 160px;
  }
  main #title-section h1 em {
    font-size: 1rem;
  }
  main #title-section h1 span {
    font-size: 3rem;
  }
  main #title-section .breadcrumb-wrap {
    padding-right: 4.2vw;
    padding-left: 4.2vw;
  }
  main #lead-section h2 {
    font-size: 2rem;
  }
}
