@charset "UTF-8";

:root {
  --site-width: 1280px;
  --red: #E70012;
}

@font-face {
  font-family: "Noto Sans JP";
  font-weight: 400;
  src: url(/recruit/career/lp/static/font/NotoSansJP-Regular_ss.ttf) format("truetype")
}

@font-face {
  font-family: "Noto Sans JP";
  font-weight: 700;
  src: url(/recruit/career/lp/static/font/NotoSansJP-Bold_ss.ttf) format("truetype")
}

@font-face {
  font-family: "Noto Sans JP";
  font-weight: 900;
  src: url(/recruit/career/lp/static/font/NotoSansJP-Black_ss.ttf) format("truetype")
}



/* --------------------------------------------------------------------------------
init
---------------------------------------------------------------------------------*/
body, main, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  color: #000;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  vertical-align: baseline;
  letter-spacing: 0;
  line-height: 1.8;
  box-sizing: border-box;
  @media screen and (max-width: 736px) {
    font-size: clamp(1.4rem, min(var(--vw, 1vw), var(--svh, 1vh)) * 16/768 * 100, 1.6rem);
    line-height: 1.7;
    letter-spacing: 0;
    -webkit-text-size-adjust: 100%;
  }
}

html{
  font-size: 62.5%;
  scroll-behavior: smooth;
  @media screen and (max-width: 736px) {
    font-size: 55%;
  }
}

*:target {
  /*scroll-margin-top: 120px;*/
  @media screen and (max-width: 736px) {
    scroll-margin-top: min(120 / 768* 100vw, 120* 1px);
  }
}

input, textarea {
  margin: 0;
  padding: 0;
  &:focus {
    background-color: #fff;
  }
  &:-webkit-autofill {
    /* ここで指定しているbackground-colorは黄色い背景色のことです */
    -webkit-transition: background-color 9999s;
    transition: background-color 9999s;
  }
}

table{
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

li {
  list-style-type: none;
}

picture {
  display: block;
}

img {
  vertical-align: bottom;
}

a {
  text-decoration: none;
  word-wrap: break-word;
  transition: .2s ease-in;
  @media screen and (max-width: 736px) {
    transition: none;
  }
  &:visited {
  }
  &:focus:not(:focus-visible) {
    outline: none;
  }
  &:hover {
    opacity: 0.8;
    @media screen and (max-width: 736px) {
      opacity: 1;
    }
  }
}

.clearfix {
  min-height: 1px;
  &:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
  }
}

* html .clearfix {
  height: 1px;
  /*¥*//*/
  height: auto;
  overflow: hidden;
  /**/
}

.pc {
  display: block;
  @media screen and (max-width: 736px) {
    display: none;
  }
}

.sp {
  display: none;
  @media screen and (max-width: 736px) {
    display: block;
  }
}

body {
  /*overflow-x: hidden;*/
}

.en {
  font-family: Arial, sans-serif;
}



/*------------------------------------------------------------------------
.header
------------------------------------------------------------------------*/
.header {
  position: fixed;
  top: 16px;
  left: 32px;
  right: 32px;
  width: 966px;
  height: 56px;
  margin: auto;
  z-index: 100;
  /*
  @media screen and (min-width: 1200px) {
    max-width: 1104px;
  }
  */
  @media screen and (max-width: 736px) {
    width: auto;
    top: 8px;
    left: 8px;
    right: 8px;
  }
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 17px;
  border-radius: 8px;
  box-shadow: 0 0 16px rgba(0,0,0,0.4);
  background-color: #fff;
  @media screen and (min-width: 737px) {
  }
}

.header__h1 {
  display: flex;
  line-height: 1;
  @media screen and (max-width: 736px) {
    flex-direction: column;
  }
}

.header__span {
  display: block;
  white-space: nowrap;
  font-size: 1.4rem;
  margin-left: 12px;
  @media screen and (max-width: 736px) {
    margin-left: 0;
  }
}

.header__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  @media screen and (min-width: 737px) {
    width: 100%;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  @media screen and (max-width: 736px) {
    gap: 8px;
  }
}

.header__entry {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 117px;
  height: 40px;
  border-radius: 4px;
  color: #fff;
  border: 4px solid #fff;
  font-size: 2.4rem;
  font-weight: bold;
  background-color: var(--red);
  &:hover {
    color: var(--red);
    background-color: #fff;
    border: 4px solid var(--red);
    border-radius: 10px;
  }
}

.header__nav {
  @media screen and (min-width: 737px) {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-left: 50px;
  }
}

/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}


/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: none;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上にする */
  cursor: pointer;
  border-radius: 4px;
  background-color: var(--red);
  @media screen and (max-width: 736px) {
    display: flex;
  }
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #fff;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 0%;
  position: absolute;
  top: 50px;
  left: 0; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #fff;
  transition: .5s;
  box-shadow: 0 20px 12px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  @media screen and (min-width: 737px) {
    width: auto;
    position: static;
    box-shadow: none;
    border-radius: 0;
  }
}

/* メニュー黒ポチを消す */
.nav_list {
  width: 240px;
  margin: auto;
  @media screen and (min-width: 737px) {
    width: 100%;
    display: flex;
    gap: 24px;
  }
}

.nav_link {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  font-size: 1.6rem;
  @media screen and (min-width: 737px) {
    margin-bottom: 0;
  }
  &::after {
    content: "";
    width: 0;
    height: 0;
    margin-left: 6px;
    border-style: solid;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-top: 12px solid #000000;
    border-bottom: 0;
    @media screen and (min-width: 737px) {
      margin-top: 4px;
      border-right: 5px solid transparent;
      border-left: 5px solid transparent;
      border-top: 8px solid #000000;
    }
  }
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  height: 140px;
  padding-top: 16px;
  @media screen and (max-width: 736px) {
    height: 120px;
  }
}



/*------------------------------------------------------------------------
.kv
------------------------------------------------------------------------*/
.kv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  @media screen and (max-width: 736px) {
    height: auto;
    aspect-ratio: 780 / 1280;
  }
  picture {
    @media screen and (max-width: 736px) {
    }
  }
}

.kv-swiper {
  position: relative;
  z-index: -1;
}

.kv__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
}

.swiper-slide-active .kv__img,
.swiper-slide-duplicate-active .kv__img,
.swiper-slide-prev .kv__img {
  animation: zoomanime 8s linear 0s normal both;
}

@keyframes zoomanime {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.kv__txt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  width: 100%;
  max-width: 2200px;
  height: 100%;
  object-fit: fill;
  /*object-position: center top;*/
}



/*------------------------------------------------------------------------
.bg-circle
------------------------------------------------------------------------*/
.bg-circle {
  width: 54vh;
  height: 54vh;
  border-radius: 50%;
  position: fixed;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  transform: matrix(0, 0, 0, 0, 0, 0);
  @media screen and (max-height: 740px) {
    width: 34vw;
    height: 34vw;
  }
  @media screen and (max-width: 736px) {
    display: none;
  }
  &.kv__circle {
    border: 56px solid var(--red);
    background-color: var(--red);
  }
}



/*------------------------------------------------------------------------
.contents-head__en
------------------------------------------------------------------------*/
.contents-head__en {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  line-height: 1;
  @media screen and (max-width: 736px) {
    top: -10pxa;
  }
}

.contents-head__en .swiper-wrapper {
  transition-timing-function: linear;
}

.contents-head__en .swiper-slide {
  width: auto;
}



/*------------------------------------------------------------------------
.contents1
------------------------------------------------------------------------*/
.contents1 {
  position: relative;
  min-width: var(--site-width);
  min-height: 100vh;
  padding: 160px 0 160px;
  overflow: hidden;
  background-color: #fff;
  @media screen and (max-width: 736px) {
    min-width: 100%;
    padding-top: min(min(var(--vw, 1vw), var(--svh, 1vh)) * 700/778 * 100, 700px);
    padding-bottom: min(130%, 430px);
  }
  .contents1-circle1__block2,
  .contents1-circle2__block3,
  .contents1-circle3__block3,
  .contents1-circle5__block3 {
    transform: scale(0);
    transition-duration: 1s;
    @media screen and (max-width: 736px) {
      transform: scale(1);
    }
    &.active {
      transform: scale(1);
    }
  }
}

.contents1__inner {
  position: relative;
  width: var(--site-width);
  margin: 0 auto;
  @media screen and (max-width: 736px) {
    width: 100%;
  }
}

.contents1__txt {
  display: flex;
  flex-direction: column;
  gap: 32px;
  @media screen and (max-width: 736px) {
    gap: 24px;
  }
}

.contents1__txt-p {
  font-size: 1.8rem;
  text-align: center;
  line-height: 2.4;
  @media screen and (max-width: 736px) {
    margin: 0 24px;
    line-height: 2;
  }
}

  @keyframes load {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(-360deg);
      transform: rotate(-360deg);
    }
  }

  .contents-circle {
    position: absolute;
    @media screen and (max-width: 736px) {
    }
  }

  .contents-circle__inner {
    position: relative;
  }

  .contents-circle__block {
    position: absolute;
  }


  .contents1-circle1 {
    top: -10px;
    @media screen and (max-width: 736px) {
      top: min(min(var(--vw, 1vw), var(--svh, 1vh)) * 200/778 * 100 * -1, -200px);
      left: min(min(var(--vw, 1vw), var(--svh, 1vh)) * 50/778 * 100 * -1, -50px);
    }
  }

  .contents1-circle1__block1 {
    left: 180px;
    @media screen and (max-width: 736px) {
      left: 120px;
    }
  }

  .contents1-circle1__circle1 {
    @media screen and (max-width: 736px) {
      width: 70px;
    }
  }

  .contents1-circle1__block2 {
    top: 50px;
    left: 40px;
    @media screen and (max-width: 736px) {
      top: 30px;
      left: 40px;
    }
  }

  .contents1-circle1__circle2 {
    @media screen and (max-width: 736px) {
      width: 136px;
    }
  }


  .contents1-circle2 {
    right: 350px;
    top: -50px;
    @media screen and (max-width: 736px) {
      top: min(min(var(--vw, 1vw), var(--svh, 1vh)) * 330/778 * 100 * -1, -330px);
      right: 57%;
    }
  }

  .contents1-circle2__block1 {
    top: 0;
    left: 0;
  }

  .contents1-circle2__circle1 {
    animation: 50s linear infinite load;
    @media screen and (max-width: 736px) {
      width: 309px;
    }
  }

  .contents1-circle2__block2 {
    top: 28px;
    left: 28px;
    @media screen and (max-width: 736px) {
      top: 20px;
      left: 17px;
    }
  }

  .contents1-circle2__circle2 {
    @media screen and (max-width: 736px) {
      width: 272px;
    }
  }

  .contents1-circle2__block3 {
    left: 87px;
    top: 87px;
    transition-delay: .2s;
    @media screen and (max-width: 736px) {
      left: 55px;
      top: 58px;
    }
  }

  .contents1-circle2__circle3 {
    @media screen and (max-width: 736px) {
      width: 196px;
    }
  }


  .contents1-circle3 {
    left: -210px;
    top: 320px;
    @media screen and (max-width: 736px) {
      top: auto;
      left: min(min(var(--vw, 1vw), var(--svh, 1vh)) * 100/778 * 100 * -1, -100px);
      bottom: min(min(var(--vw, 1vw), var(--svh, 1vh)) * 50/778 * 100 * -1, -50px);
    }
  }

  .contents1-circle3__block1 {
    top: 0;
    left: 0;
    @media screen and (max-width: 736px) {
    }
  }

  .contents1-circle3__circle1 {
    animation: 50s linear infinite load;
    animation-direction: reverse;
    @media screen and (max-width: 736px) {
      width: 349px;
    }
  }

  .contents1-circle3__block2 {
    top: 28px;
    left: 28px;
    @media screen and (max-width: 736px) {
      top: 18px;
      left: 22px;
    }
  }

  .contents1-circle3__circle2 {
    @media screen and (max-width: 736px) {
      width: 310px;
    }
  }

  .contents1-circle3__block3 {
    left: 125px;
    top: 125px;
    transition-delay: .4s;
    @media screen and (max-width: 736px) {
      left: 87px;
      top: 89px;
    }
  }

  .contents1-circle3__circle3 {
    @media screen and (max-width: 736px) {
      width: 174px;
    }
  }


  .contents1-circle4 {
    right: 400px;
    top: 820px;
    @media screen and (max-width: 736px) {
      right: auto;
      top: min(min(var(--vw, 1vw), var(--svh, 1vh)) * 300/778 * 100 * -1, -300px);
      left: min(min(var(--vw, 1vw), var(--svh, 1vh)) * 40/778 * 100, 40px);
    }
  }

  .contents1-circle4__block1 {
    top: 0;
    left: 0;
    @media screen and (max-width: 736px) {
    }
  }

  .contents1-circle4__circle1 {
    @media screen and (max-width: 736px) {
      width: 56px;
    }
  }

  .contents1-circle5 {
    right: 320px;
    top: 530px;
    @media screen and (max-width: 736px) {
      top: auto;
      right: min(min(var(--vw, 1vw), var(--svh, 1vh)) * 300/778 * 100, 300px);
      bottom: 0;
    }
  }

  .contents1-circle5__block1 {
    top: 0;
    left: 0;
    @media screen and (max-width: 736px) {
    }
  }

  .contents1-circle5__circle1 {
    animation: 50s linear infinite load;
    @media screen and (max-width: 736px) {
      width: 187px;
    }
  }

  .contents1-circle5__block2 {
    top: 22px;
    left: 22px;
    @media screen and (max-width: 736px) {
      top: 16px;
      left: 16px;
    }
  }

  .contents1-circle5__circle2 {
    @media screen and (max-width: 736px) {
      width: 155px;
    }
  }

  .contents1-circle5__block3 {
    left: 95px;
    top: 122px;
    transition-delay: .3s;
    @media screen and (max-width: 736px) {
      left: 75px;
      top: 80px;
    }
  }

  .contents1-circle5__circle3 {
    @media screen and (max-width: 736px) {
      width: 147px;
    }
  }



/*------------------------------------------------------------------------
.contents2
------------------------------------------------------------------------*/
.contents2 {
  position: relative;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 1;
  @media screen and (max-width: 736px) {
  }
  &::before {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    padding-top: 11.718%;
    background-image: url(/recruit/career/lp/static/img/contents2/bg_top.png);
    background-size: cover;
  }
  &::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    padding-top: 11.718%;
    background-image: url(/recruit/career/lp/static/img/contents2/bg_bottom.png);
    background-size: cover;
  }
  @media screen and (max-width: 736px) {
    visibility: visible;
  }
  &.active {
    visibility: visible;
  }
}

.contents2__inner {
  position: relative;
  min-width: var(--site-width);
  margin: 0 auto;
  background-color: var(--red);
  @media screen and (max-width: 736px) {
    min-width: 100%;
  }
}

  .contents2-head {
    position: relative;
    margin-bottom: 78px;
    @media screen and (max-width: 736px) {
      margin-bottom: 39px;
    }
  }

  .contents2-head__jp {
    position: relative;
    z-index: 1;
    width: var(--site-width);
    margin: 0 auto 40px;
    color: #fff;
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    z-index: 10;
    @media screen and (max-width: 736px) {
      width: 100%;
      line-height: 1.2;
    }
  }

  .contents2-head__en {
  }

  .contents2-head__en-span {
    font-size: 12.8rem;
    font-weight: bold;
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
    letter-spacing: 5px;
    line-height: 1;
  }

  .contents2-head__txt {
    width: 923px;
    margin: 0 auto;
    color: #fff;
    line-height: 2.2;
    @media screen and (max-width: 736px) {
      width: 100%;
      padding: 0 24px;
    }
  }


  .contents2-body {
    width: var(--site-width);
    margin: 0 auto;
    @media screen and (max-width: 736px) {
      width: 100%;
    }
  }

  .contents2-body__midashi {
    display: inline-block;
    font-size: 9.6rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    @media screen and (max-width: 736px) {
      display: block;
      margin-bottom: 40px;
      text-align: center;
      font-size: 6.4rem;
    }
  }

  .contents2-body__blocks {
    position: relative;
    @media screen and (max-width: 736px) {
      padding-bottom: 100px;
    }
  }

  .contents2-body__block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 498px;
    height: 498px;
    @media screen and (max-width: 736px) {
      width: 320px;
      height: auto;
      aspect-ratio: 1 / 1;
    }
    &.contents2-body__block1 {
      margin-top: -240px;
      margin-left: 880px;
      @media screen and (max-width: 736px) {
        margin: 0 auto 19px;
      }
    }
    &.contents2-body__block2 {
      margin-top: -360px;
      margin-left: 300px;
      @media screen and (max-width: 736px) {
        margin: 0 auto 19px;
      }
    }
    &.contents2-body__block3 {
      margin-top: -250px;
      margin-left: -70px;
      @media screen and (max-width: 736px) {
        margin: 0 auto 19px;
      }
    }
    &.contents2-body__block4 {
      margin-top: -500px;
      margin-left: 670px;
      @media screen and (max-width: 736px) {
        margin: 0 auto 19px;
      }
    }
  }

  .contents2-body__midashi-s {
    position: relative;
    color: #fff;
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    z-index: 5;
  }

  .contents2-body__txt {
    position: relative;
    max-width: 232px;
    color: #fff;
    font-size: 1.4rem;
    z-index: 5;
    @media screen and (max-width: 736px) {
      max-width: 70%;
    }
  }

  .contents2-body__bg {
    position: absolute;
    top: 0;
    left: 0;
    @media screen and (max-width: 736px) {
      width: 120%;
      top: -10%;
      left: -10%;
    }
  }




/*------------------------------------------------------------------------
.contents3
------------------------------------------------------------------------*/
.contents3 {
  position: relative;
  min-height: 100vh;
  margin-top: -10%;
  padding-top: 25%;
  padding-bottom: 15%;
  background-image: url(/recruit/career/lp/static/img/contents3/bg@2x.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-color: #fff;
  overflow: hidden;
  @media only screen and (-webkit-min-device-pixel-ratio: 2) {
    background-image: url(/recruit/career/lp/static/img/contents3/bg@2x.webp);
  }
  @media screen and (max-width: 736px) {
    aspect-ratio: 390 / 1466;
    display: flex;
    align-items: center;
    padding: 0;
    margin-top: -20%;
    background-image: linear-gradient(180deg,rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 1) 100%),
                      url(/recruit/career/lp/static/img/contents3/sp/bg@2x.jpg);
    background-size: cover;
    background-position: center top;
    z-index: -1;
  }
  &.active {
    visibility: visible;
  }
}

.contents3__inner {
  display: flex;
  justify-content: space-between;
  width: 1104px;
  margin: 0 auto;
  @media screen and (max-width: 736px) {
    width: 100%;
    display: block;
    margin-top: 6%;
  }
}

.contents3__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 310px;
  @media screen and (max-width: 736px) {
    width: 100%;
    display: block;
    margin-bottom: 48px;
    padding: 0 24px;
  }
}

.contents3__center {
  flex: 0 0 446px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 446px;
  border-radius: 50%;
  border: 46px solid var(--red);
  @media screen and (max-width: 736px) {
    width: calc( 100% - 16px );
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 8px 24px;
  }
}

.contents3__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 310px;
  @media screen and (max-width: 736px) {
    width: 100%;
    display: block;
    padding: 0 24px;
  }
}

.contents3__title-en {
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
  @media screen and (max-width: 736px) {
    text-align: center;
  }
}

.contents3__title-jp {
  margin-bottom: 24px;
  color: #fff;
  font-size: 2rem;
  @media screen and (max-width: 736px) {
    text-align: center;
  }
}

.contents3__txt {
  width: 85%;
  color: #fff;
  line-height: 2;
  @media screen and (max-width: 736px) {
    width: 100%;
  }
}

.contents3__midashi {
  color: var(--red);
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  @media screen and (max-width: 736px) {
    font-size: 3.2rem;
  }
}



/*------------------------------------------------------------------------
.contents4
------------------------------------------------------------------------*/
.contents4 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 10px;
  padding-bottom: 120px;
  background-color: #fff;
  @media screen and (max-width: 736px) {
    padding-top: 0;
    min-height: auto;
  }
}

.contents4__inner {
  width: 756px;
  margin: 0 auto;
  @media screen and (max-width: 736px) {
    width: 100%;
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}

.contents4__midashi {
  margin-bottom: 28px;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
}

  .slideshow {
    width: 756px;
    margin: 0 auto;
    overflow: hidden;
    @media screen and (max-width: 736px) {
      width: 100%;
    }
  }

  .slideshow__slide {}

  .slideshow__bg {
    width: 100%;
  }

  .slideshow__link1 {
    position: absolute;
    top: 83px;
    left: 164px;
    @media screen and (max-width: 736px) {
      top: calc(var(--vw) * 11);
      left: calc(var(--vw) * 22);
    }
  }

  .slideshow__link2 {
    position: absolute;
    top: 83px;
    left: 370px;
    @media screen and (max-width: 736px) {
      top: calc(var(--vw) * 11);
      left: calc(var(--vw) * 49);
    }
  }

  .slideshow__anchor1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    color: var(--red);
    font-size: 1.2rem;
    letter-spacing: -1px;
    line-height: 1.4;

    /*
    background-color: blue;
    opacity: .6;
    */

    @media screen and (max-width: 736px) {
      width: calc(var(--vw) * 29);
      height: calc(var(--vw) * 29);
      font-size: 1rem;
    }
    strong {
      color: var(--red);
      letter-spacing: -1px;
      line-height: 1.4;
      font-size: 1.2rem;
      @media screen and (max-width: 736px) {
        font-size: 1rem;
      }
    }
  }

  .slideshow__anchor2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: -1px;
    line-height: 1.4;

    /*
    background-color: green;
    opacity: .6;
    */

    @media screen and (max-width: 736px) {
      width: calc(var(--vw) * 29);
      height: calc(var(--vw) * 29);
      font-size: 1rem;
    }
    strong {
      color: #fff;
      letter-spacing: -1px;
      line-height: 1.4;
      font-size: 1.2rem;
      @media screen and (max-width: 736px) {
        font-size: 1rem;
      }
    }
  }

  .slideshow__controller {
    position: relative;
    padding: 24px 0;
    @media screen and (max-width: 736px) {
    }
  }

  .slideshow__download {
    width: 280px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 32px;
    color: #fff;
    background-color: var(--red);
    @media screen and (max-width: 736px) {
      width: 140px;
      height: 32px;
    }
  }

  .slideshow__prev {
    left: 110px;
    color: #000;
    @media screen and (max-width: 736px) {
      width: 30px;
      top: 39px;
      left: 15%;
      text-indent: -9999px;
    }
    &::before {
      position: absolute;
      right: -40px;
      content: "";
      width: 0;
      height: 0;
      border-style: solid;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-right: 20px solid #000000;
      border-left: 0;
      @media screen and (max-width: 736px) {
        right: 0;
        left: 0;
        margin: auto;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-right: 16px solid #000000;
      }
    }
    &::after {
      display: none;
    }
    span {
      @media screen and (max-width: 736px) {
        display: none;
      }
    }
  }

  .slideshow__next {
    right: 110px;
    color: #000;
    @media screen and (max-width: 736px) {
      width: 30px;
      top: 39px;
      right: 15%;
      text-indent: -9999px;
    }
    &::before {
      position: absolute;
      left: -40px;
      content: "";
      width: 0;
      height: 0;
      border-style: solid;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-left: 20px solid #000000;
      border-right: 0;
      @media screen and (max-width: 736px) {
        right: 0;
        left: 0;
        margin: auto;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 16px solid #000000;
      }
    }
    &::after {
      display: none;
    }
    span {
      @media screen and (max-width: 736px) {
        display: none;
      }
    }
  }

  .swiper-pagination-bullet-active {
    background-color: #000;
  }

  .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px;
}



/*------------------------------------------------------------------------
.contents5
------------------------------------------------------------------------*/
.contents5 {
  position: relative;
  padding-top: 100px;
  padding-bottom: 64px;
  background-color: #f5f5f5;
  background-image: url(/recruit/career/lp/static/img/contents5/band.png);
  background-position: left top;
  background-repeat: no-repeat;
  overflow: hidden;
  @media only screen and (-webkit-min-device-pixel-ratio: 2) {
    background-image: url(/recruit/career/lp/static/img/contents5/band@2x.png);
  }
  @media screen and (max-width: 736px) {
    background-size: 230px;
  }
}

.contents5__inner {
  @media screen and (max-width: 736px) {
    padding: 0 24px;
  }
}

  .contents5-head {
    position: relative;
    margin-bottom: 78px;
  }

  .contents5-head__jp {
    position: relative;
    z-index: 1;
    width: var(--site-width);
    margin: 0 auto 40px;
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    z-index: 10;
    @media screen and (max-width: 736px) {
      width: 100%;
    }
  }

  .contents5-head__en {
  }

  .contents5-head__en-span {
    display: block;
    font-size: 12.8rem;
    font-weight: bold;
    color: rgba(0,0,0,0.05);
    white-space: nowrap;
    letter-spacing: 1px;
    line-height: 1;
  }

  .contents5-body {
    width: 1104px;
    margin: 0 auto;
    padding: 56px 72px;
    border-radius: 24px;
    background-color: #fff;
    @media screen and (max-width: 736px) {
      width: 100%;
      padding: 40px 24px;
    }
  }

  .contents5-body__txt1 {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    line-height: 2.4;
  }

  .contents5-body__txt2 {
    margin: 24px 0 24px;
    font-size: 3.2rem;
    font-weight: bold;
    color: var(--red);
    text-align: center;
    line-height: 2;
    @media screen and (max-width: 736px) {
      line-height: 1.6;
    }
  }

  .contents5-body__txt3 {
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    line-height: 2.2;
  }



/*------------------------------------------------------------------------
.contents6
------------------------------------------------------------------------*/
.contents6 {
  position: relative;
  padding-top: 36px;
  padding-bottom: 126px;
  background-color: #f5f5f5;
}

.contents6__inner {
  width: 1104px;
  margin: 0 auto;
  @media screen and (max-width: 736px) {
    width: 100%;
    padding: 0 24px;
  }
}

.contents6__midashi {
  margin-bottom: 32px;
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
}

.contents6__blocks1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 304px);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  margin-bottom: 35px;
  @media screen and (max-width: 736px) {
    display: block;
  }
}

  .contents6-block {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    @media screen and (max-width: 736px) {
      margin-bottom: 24px;
    }
  }

  .contents6-block__head {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    color: #fff;
    line-height: 1.2;
    background: linear-gradient(135deg,rgba(101, 206, 241, 1) 0%, rgba(36, 131, 255, 1) 100%);
  }

  .contents6-block__head1 {
    font-size: 1.8rem;
  }

  .contents6-block__head2 {
    font-size: 1.6rem;
  }

  .contents6-block__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
  }

  .contents6-block__body1 {
    height: 100%;
    @media screen and (max-width: 736px) {
      height: auto;
      padding: 24px;
    }
    picture {
      @media screen and (max-width: 736px) {
      }
    }
  }

  .contents6-block__img-wrapper {
    height: 126px;
    display: flex;
    align-items: center;
  }

  .contents6-block__body2 {
    height: 103px;
    picture {
      height: 50px;
    }
  }

  .contents6-block__img {
    &.contents6-block__img1 {
      width: 102px;
      @media screen and (max-width: 736px) {
        width: 100%;
        max-width: 102px;
      }
    }
    &.contents6-block__img2 {
      width: 96px;
      @media screen and (max-width: 736px) {
        width: 100%;
        max-width: 96px;
      }
    }
    &.contents6-block__img3 {
      width: 161px;
      @media screen and (max-width: 736px) {
        width: 100%;
        max-width: 161px;
      }
    }
    &.contents6-block__img4 {
      width: 130px;
      @media screen and (max-width: 736px) {
        width: 100%;
        max-width: 130px;
      }
    }
    &.contents6-block__img5 {
      width: 149px;
      @media screen and (max-width: 736px) {
        width: 100%;
        max-width: 149px;
      }
    }
    &.contents6-block__img6 {
      width: 86px;
      @media screen and (max-width: 736px) {
        width: 100%;
        max-width: 86px;
      }
    }
    &.contents6-block__img7 {
      width: 196px;
      @media screen and (max-width: 736px) {
        width: 100%;
        max-width: 196px;
      }
    }
    &.contents6-block__img8 {
      width: 178px;
      @media screen and (max-width: 736px) {
        width: 100%;
        max-width: 178px;
      }
    }
    &.contents6-block__img9 {
      width: 230px;
      @media screen and (max-width: 736px) {
        width: 100%;
        max-width: 230px;
      }
    }
  }

  .contents6-block__txt {
    min-height: 64px;
    display: flex;
    align-items: flex-end;
    line-height: 1;
    text-align: center;
    &.flex-column {
      flex-direction: column;
      align-items: center;
    }
  }

  .contents6-block__txt-l {
    color: #65CEF1;
    font-size: 6.4rem;
    font-weight: bold;
    line-height: 1;
  }

  .contents6-block__txt-m {
    color: #65CEF1;
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1;
  }

  .contents6-block__txt-s {
    color: #65CEF1;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1;
  }

  .contents6-block__txt-ss {
    color: #65CEF1;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 2.4;
  }



/*------------------------------------------------------------------------
.contents7
------------------------------------------------------------------------*/
.contents7 {
  position: relative;
  padding-top: 95px;
  overflow: hidden;
  background-color: #fff;
}

.contents7__inner {
  width: 1104px;
  margin: 0 auto;
  @media screen and (max-width: 736px) {
    width: 100%;
  }
}

  .contents7-head {
    position: relative;
    margin-bottom: 78px;
  }

  .contents7-head__jp {
    position: relative;
    z-index: 1;
    margin: 0 auto 40px;
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
  }

  .contents7-head__en {
  }

  .contents7-head__en-span {
    display: block;
    font-size: 12.8rem;
    font-weight: bold;
    color: rgba(0,0,0,0.05);
    white-space: nowrap;
    letter-spacing: 1px;
    line-height: 1;
  }

  .contents7-body {}

  .contents7-body__midashi {
    flex: 0 0 120px;
    font-size: 2.4rem;
    font-weight: bold;
    @media screen and (max-width: 736px) {
      margin-bottom: 24px;
      text-align: center;
    }
  }

  .contents7-body__block {
    @media screen and (max-width: 736px) {
      padding: 0 24px;
    }
  }

    .contents7-requirements {
      display: flex;
      gap: 56px;
      margin-bottom: 104px;
      @media screen and (max-width: 736px) {
        display: block;
      }
    }

    .contents7-requirements__block {
      display: flex;
      gap: 40px;
      margin-bottom: 16px;
      padding: 36px 72px;
      background-color: #f5f5f5;
      @media screen and (max-width: 736px) {
        display: block;
        padding: 32px 24px;
      }
    }

    .contents7-requirements__block-txt1 {
      flex: 0 0 300px;
      font-size: 2.4rem;
      font-weight: bold;
      white-space: nowrap;
      @media screen and (max-width: 736px) {
        margin-bottom: 12px;
      }
    }

    .contents7-requirements__block-txt2 {
      font-weight: bold;
    }

    .contents7-requirements__table {
      margin-top: 40px;
      margin-bottom: 24px;
    }

    .contents7-requirements__tr {
      @media screen and (max-width: 736px) {
        display: flex;
        flex-direction: column;
      }
      &:last-child {
        .contents7-requirements__th, .contents7-requirements__td {
          border-bottom: 1px solid #b2b2b2;
          @media screen and (max-width: 736px) {
            border-bottom: none;
          }
        }
        .contents7-requirements__td {
          @media screen and (max-width: 736px) {
            border-bottom: 1px solid #b2b2b2;
          }
        }
      }
    }

    .contents7-requirements__th {
      padding: 25px 100px 25px 0;
      font-size: 1.8rem;
      font-weight: bold;
      white-space: nowrap;
      border-top: 1px solid #b2b2b2;
      @media screen and (max-width: 736px) {
        padding: 24px 24px 12px;
        text-align: center;
      }
    }

    .contents7-requirements__td {
      font-weight: bold;
      font-size: 1.4rem;
      border-top: 1px solid #b2b2b2;
      vertical-align: middle;
      @media screen and (max-width: 736px) {
        padding: 12px 6px 24px;
        border-top: none;
      }
    }

    .contents7-requirements__min-txt {
      font-size: 1.2rem;
    }


    .contents7-flow {
      display: flex;
      gap: 56px;
      margin-bottom: 96px;
      @media screen and (max-width: 736px) {
        display: block;
      }
    }

    .contents7-flow__block {
      display: flex;
      gap: 37px;
      padding-bottom: 48px;
      @media screen and (max-width: 736px) {
        display: block;
        padding-bottom: 0;
        overflow: hidden;
      }
      &:last-child {
        .contents7-flow__block-left {
          &::after {
            display: none;
          }
        }
      }
    }

    .contents7-flow__block-left {
      position: relative;
      flex: 0 0 144px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 50px;
      white-space: nowrap;
      color: #fff;
      background: linear-gradient(180deg,rgba(255, 190, 0, 1) 0%, rgba(255, 74, 77, 1) 100%);
      &::after {
        position: absolute;
        top: 100%;
        left: 50%;
        content: "";
        display: block;
        width: 1px;
        height: 48px;
        background-color: #FF4A4D;
        @media screen and (max-width: 736px) {
          left: 24px;
          min-height: 200px;
        }
      }
    }

    .contents7-flow__block-right {
      display: flex;
      align-items: center;
      font-weight: bold;
      line-height: 1.5;
      @media screen and (max-width: 736px) {
        padding: 16px 16px 16px 50px;
      }
    }


    .contents7-entry {
      display: flex;
      justify-content: center;
      margin: 0 auto 88px;
      @media screen and (min-width: 737px) {
        width: 860px;
        position: relative;
        aspect-ratio: 860 / 446;
      }
      @media screen and (max-width: 736px) {
        display: block;
        padding: 0 24px 60px;
      }
      &.active {
        .contents7-entry__left {
          @media screen and (min-width: 737px) {
            left: 0;
          }
        }
        .contents7-entry__right {
          animation-name: H-beat1;
          animation-duration: 1.2s;
          animation-timing-function: ease;
          animation-delay: .7s;
          animation-direction: normal;
          animation-fill-mode: both;
          @media screen and (min-width: 737px) {
            left: 430px;
          }
        }
      }
    }

    @keyframes H-beat1{
      0%{transform:scale(1, 1);}
      10%{transform:scale(0.9, 0.9);}
      20%{transform:scale(1.1, 1.1);}
      30%{transform:scale(1.05, 1.05); }
      42%{transform:scale(1, 1);}
    }

    .contents7-entry__left {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 446px;
      height: 446px;
      border-radius: 50%;
      border: 46px solid var(--red);
      font-size: 4rem;
      color: var(--red);
      font-weight: bold;
      transition: .7s;
      @media screen and (min-width: 737px) {
        position: absolute;
        left: 321px;
        top: 0;
      }
      @media screen and (max-width: 736px) {
        width: auto;
        height: auto;
        aspect-ratio: 1 / 1;
        text-align: center;
        font-size: clamp(2.2rem, min(var(--vw, 1vw), var(--svh, 1vh)) * 34/768 * 100, 3.4rem);
      }
    }

    .contents7-entry__right {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 446px;
      height: 446px;
      margin-left: -16px;
      border-radius: 50%;
      transition: .7s;
      @media screen and (min-width: 737px) {
        position: absolute;
        left: 321px;
        top: 0;
      }
      @media screen and (max-width: 736px) {
        width: auto;
        height: auto;
        aspect-ratio: 1 / 1;
        margin-top: -24px;
        margin-left: 0;
      }
    }

    .contents7-entry__right-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      color: #fff;
      font-size: 4rem;
      background-color: var(--red);
      &:hover {
        color: var(--red);
        border: 46px solid var(--red);
        background-color: #fff;
        opacity: 1;
      }
    }




/*------------------------------------------------------------------------
.footer
------------------------------------------------------------------------*/
.footer {
  position: relative;
}

.footer__inner {
  background-color: #fff;
}

.footer__top {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  @media screen and (max-width: 736px) {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin-bottom: 16px;
  }
}

.footer__bottom {
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  @media screen and (max-width: 736px) {
    height: auto;
    padding: 24px;
  }
}

.footer__left {
  font-size: 1.2rem;
  @media screen and (max-width: 736px) {
    text-align: center;
  }
}

.footer__right {
  display: flex;
  gap: 24px;
  @media screen and (max-width: 736px) {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }
}

.footer__link {
  font-size: 1.2rem;
  @media screen and (max-width: 736px) {
    font-weight: bold;
    text-align: center;
  }
}




