@charset "utf-8";

html {
  font-size: 100%;
}

/* ==========================
    カスタムプロパティ
========================== */
:root {
  --main: #b5e6a8;
  --sub: #ffeb55;
  --text: #d9d9d9;
  --b: #535353;
  --gray: #d9d9d9;
  --buck: #eeffe5;
  --dark_green: #65bc45;
  --orange: #ffd689;
  --blue: #acdcff;
  --pink: #ffc7ce;
  --dark_orange: #ff8d3c;
  --dark_blue: #41a8fb;
  --dark_pink: #ff7291;
  --point: #4b8435;
  --yellow: #fff7b9;
}

body {
  width: 100%;
  min-width: 1300px;
  font-family: 'Noto Sans JP', '游ゴシック', 'Yu Gothic', YuGothic, 'BIZ UDPGothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ ゴシック',
    sans-serif;
  color: var(--b);
}

button:hover,
a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.en {
  font-family: 'Changa', sans-serif;
  font-weight: 500;
}

@media all and (min-width: 768px) {
  [href^='tel'] {
    pointer-events: none;
  }
}

/* up */
.js_up {
  transform: translateY(50px);
  opacity: 0;
  transition: all 1s ease var(--delay) !important;
}

.js_up.is-inview {
  transform: translateY(0);
  opacity: 1;
}

.fade {
  opacity: 0;
  transition: all 0.7s ease-in-out var(--delay) !important;
}

.fade.is-inview {
  opacity: 1;
}

/* ---------------------header-------------------- */

.header {
  height: 0;
  padding: 0 20px 0;
  position: sticky;
  top: 20px;
  z-index: 1000;
}

.header nav {
  display: flex;
  height: 75px;
  padding-left: 30px;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  border-radius: 5px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}

.header .logos {
  display: flex;
  align-items: center;
  column-gap: 16px;
}

.header .logo {
  width: 406px;
}

.header .pc_header {
  display: flex;
  column-gap: 40px;
  align-items: center;
}

.pc_header ul {
  display: flex;
  column-gap: 40px;
  align-items: center;
}

.pc_header li {
  font-weight: 600;
  line-height: 40px;
}

.pc_header li:nth-child(1) {
  color: var(--dark_orange);
}

.pc_header li:nth-child(2) {
  color: var(--dark_blue);
}

.pc_header li:nth-child(3) {
  color: var(--dark_pink);
}

.pc_header li:nth-child(4) {
  color: var(--dark_green);
}

.pc_header .entry_btn {
  display: block;
  width: 118px;
  height: 75px;
  background-color: var(--dark_green);
  text-align: center;
  line-height: 75px;
  text-transform: uppercase;
  color: white;
  font-size: 20px;
  border-radius: 5px;
}

.pc_header .entry_btn:hover {
  background-color: var(--sub);
  color: var(--dark_green);
  opacity: 1;
}

/* ---------------------main-------------------- */
h2 .en {
  display: block;
  margin-bottom: 10px;
  padding-left: 32px;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 19px;
  position: relative;
}

h2 .en::before {
  content: '';
  display: block;
  width: 22px;
  aspect-ratio: 22/19;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

h2 .ja {
  display: block;
  padding-bottom: 12px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.05em;
  position: relative;
}

h2 .ja::before {
  content: '';
  display: block;
  width: 200px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* ---------------------sub_mv-------------------- */
.sub_mv {
  width: 100%;
  height: 400px;
  background: url(/recruit/assets/img/about/sub_mv.jpg) no-repeat center/cover;
}

.sub_mv h1 {
  margin-bottom: 59px;
  padding: 200px 0 0 50px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 100;
}

.sub_mv h1::before {
  content: '';
  display: block;
  width: 463px;
  aspect-ratio: 463/400;
  background: url(/recruit/assets/img/sub_mv_deco.svg) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: -23px;
  z-index: -10;
}

.sub_mv h1 .en {
  display: block;
  margin-bottom: 30px;
  font-size: 80px;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  line-height: 50px;
}

.sub_mv h1 .ja {
  font-size: 24px;
  color: white;
  line-height: 18px;
}

.sub_mv .breadcrumbs {
  display: flex;
  width: fit-content;
  margin-left: auto;
  padding: 0 60px 0 40px;
  column-gap: 16px;
  font-size: 13px;
  font-weight: 500;
  line-height: 19px;
  color: white;
  background-color: rgba(189, 233, 134, 0.5);
}

.breadcrumbs .link {
  padding-right: 32px;
  position: relative;
}

.breadcrumbs .link:first-child {
  text-transform: uppercase;
}

.breadcrumbs .link::after {
  content: '';
  display: block;
  width: 9px;
  aspect-ratio: 1/1;
  background: url(/recruit/assets/img/polygon_line.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
}

/* ---------------------footer-------------------- */
.footer .entry_sec {
  background-color: var(--main);
  margin-bottom: 60px;
  padding: 104px 0 114px;
}

.footer .entry_sec .wrap {
  display: flex;
  column-gap: 80px;
  justify-content: center;
}

.footer .entry_sec .btn {
  width: 480px;
  aspect-ratio: 480/150;
  position: relative;
}

.footer .entry_sec .btn::before {
  content: '';
  display: block;
  width: 480px;
  aspect-ratio: 480/150;
  background-color: white;
  border-radius: 5px;
  position: absolute;
  top: 10px;
  left: 10px;
}

.footer .entry_sec a {
  display: block;
  width: 100%;
  padding: 39px 0 35px 40px;
  border-radius: 5px;
  position: relative;
  z-index: 10;
}

.footer .entry_sec a:hover {
  transform: translate(10px, 10px);
  opacity: 1;
}

.footer .entry_sec .recruit_btn {
  background: url(/recruit/assets/img/recruit_btn_bg.png) no-repeat center center/cover;
}

.footer .entry_sec .entry_btn {
  background: url(/recruit/assets/img/entry_btn_bg.png) no-repeat center/cover;
}

.footer .entry_sec .btn .en {
  display: block;
  margin-bottom: 10px;
  font-size: 48px;
  color: white;
  text-transform: uppercase;
  line-height: 30px;
}

.footer .entry_sec .btn .ja {
  padding-left: 37px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: white;
  position: relative;
}

.footer .entry_sec .btn .ja::before {
  content: '';
  display: block;
  width: 15px;
  aspect-ratio: 15/16;
  background: url(/recruit/assets/img/polygon.svg) no-repeat center/cover;
  position: absolute;
  top: 50%;
  left: 9px;
  transform: translateY(-50%);
}

.footer .flex {
  display: flex;
  margin-bottom: 122px;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.footer_nav .nav_1 {
  display: flex;
  width: 384px;
  flex-wrap: wrap;
  column-gap: 64px;
  row-gap: 40px;
}

.footer_nav .nav_1 li {
  width: fit-content;
}

.footer_nav .nav_1 li:nth-child(5) {
  margin-left: -30px;
}

.footer_nav .nav_1 a {
  display: block;
  width: fit-content;
}

.nav_1 li .ja {
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.nav_1 li:nth-child(1) .ja {
  color: var(--dark_orange);
}

.nav_1 li:nth-child(2) .ja {
  color: var(--dark_blue);
}

.nav_1 li:nth-child(3) .ja {
  color: var(--dark_pink);
}

.nav_1 li:nth-child(4) .ja {
  color: var(--dark_green);
}

.nav_1 li:nth-child(5) .ja {
  color: var(--dark_green);
}

.nav_1 .en {
  display: block;
  margin-bottom: 10px;
  padding-left: 16px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 10px;
  position: relative;
}

.nav_1 li .en::before {
  content: '';
  display: block;
  width: 11px;
  aspect-ratio: 19/18;
  background: url(/recruit/assets/img/orange_rec.svg) no-repeat center/cover;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.nav_1 li:nth-child(1) .en {
  color: var(--orange);
}

.nav_1 li:nth-child(2) .en {
  color: var(--blue);
}

.nav_1 li:nth-child(3) .en {
  color: var(--pink);
}

.nav_1 li:nth-child(4) .en {
  color: var(--main);
}

.nav_1 li:nth-child(5) .en {
  color: var(--main);
}

.nav_1 li:nth-child(1) .en::before {
  background: url(/recruit/assets/img/orange_rec.svg) no-repeat center center/cover;
}

.nav_1 li:nth-child(2) .en::before {
  background: url(/recruit/assets/img/blue_rec.svg) no-repeat center center/cover;
}

.nav_1 li:nth-child(3) .en::before {
  background: url(/recruit/assets/img/pink_rec.svg) no-repeat center center/cover;
}

.nav_1 li:nth-child(4) .en::before {
  background: url(/recruit/assets/img/main_rec.svg) no-repeat center center/cover;
}

.nav_1 li:nth-child(5) .en::before {
  background: url(/recruit/assets/img/main_rec.svg) no-repeat center center/cover;
}

.footer .logo {
  width: 406px;
  margin-bottom: 32px;
}

.footer address {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--b);
  position: relative;
}

.footer address::before {
  content: '';
  display: block;
  width: 211px;
  aspect-ratio: 211/176;
  background: url(/recruit/assets/img/pc_deco.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  right: 2px;
}

.nav_2 {
  display: flex;
  margin-bottom: 5px;
  justify-content: flex-end;
  column-gap: 30px;
  position: relative;
}

.footer .nav_2::after {
  display: none;
}

.nav_2 li {
  width: fit-content;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--b);
  line-height: 40px;
  letter-spacing: 0.03em;
  position: relative;
}

.nav_2 li::before {
  content: '';
  display: block;
  width: 11px;
  aspect-ratio: 11/10;
  background: url(/recruit/assets/img/footer_rec.svg) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.nav_2 a {
  opacity: 0.4;
}

.footer small {
  display: block;
  margin-bottom: 60px;
  font-size: 12px;
  font-weight: 400;
  line-height: 26px;
  color: var(--b);
  opacity: 0.6;
  text-align: end;
}

@media screen and (max-width: 750px) {
  body {
    font-size: calc(26 / 750 * 100vw);
    min-width: 0;
  }

  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  .pc_text {
    display: inline;
  }

  .sp_text {
    display: block;
  }

  .wrap {
    max-width: calc((100 / 750) * 670 * 1vw);
  }
  /* ---------------------header-------------------- */
  .header {
    padding: 0;
    top: 0;
  }

  .header nav {
    display: flex;
    height: calc((100 / 750) * 105 * 1vw);
    padding-left: calc((100 / 750) * 20 * 1vw);
    align-items: center;
    border-radius: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .header .logos {
    display: flex;
    align-items: center;
    column-gap: calc((100 / 750) * 20 * 1vw);
  }

  .header .logo {
    width: calc((100 / 750) * 527 * 1vw);
  }

  .header .recruit_btn {
    width: calc((100 / 750) * 111 * 1vw);
    height: calc((100 / 750) * 37 * 1vw);
    text-align: center;
    text-transform: uppercase;
    line-height: calc((100 / 750) * 37 * 1vw);
    border: calc((100 / 750) * 2 * 1vw) solid var(--dark_green);
    border-radius: calc((100 / 750) * 5 * 1vw);
  }

  .header .pc_header {
    display: none;
  }

  /* ---------------------main-------------------- */
  h2 .en {
    margin-bottom: calc((100 / 750) * 10 * 1vw);
    padding-left: calc((100 / 750) * 38 * 1vw);
    font-size: calc((100 / 750) * 36 * 1vw);
    line-height: calc((100 / 750) * 23 * 1vw);
  }

  h2 .en::before {
    width: calc((100 / 750) * 22 * 1vw);
    top: 0;
    transform: none;
  }

  h2 .ja {
    padding-bottom: calc((100 / 750) * 14 * 1vw);
    font-size: calc((100 / 750) * 40 * 1vw);
  }

  h2 .ja::before {
    width: calc((100 / 750) * 300 * 1vw);
    height: calc((100 / 750) * 4 * 1vw);
  }

  /* ---------------------sub_mv-------------------- */
  .sub_mv {
    height: calc((100 / 750) * 440 * 1vw);
    background: url(/recruit/assets/img/about/sub_mv_sp.jpg) no-repeat center/cover;
  }

  .sub_mv h1 {
    margin-bottom: calc((100 / 750) * 79 * 1vw);
    padding: calc((100 / 750) * 195 * 1vw) 0 0 calc((100 / 750) * 20 * 1vw);
    text-shadow: 0 calc((100 / 750) * 4 * 1vw) calc((100 / 750) * 4 * 1vw) rgba(0, 0, 0, 0.4);
  }

  .sub_mv h1::before {
    width: calc((100 / 750) * 334 * 1vw);
    aspect-ratio: 334/335;
    background: url(/recruit/assets/img/sub_mv_deco_sp.svg) no-repeat center/contain;
    top: calc((100 / 750) * 105 * 1vw);
    left: calc((100 / 750) * -40 * 1vw);
  }

  .sub_mv h1 .en {
    margin-bottom: calc((100 / 750) * 30 * 1vw);
    font-size: calc((100 / 750) * 96 * 1vw);
    line-height: calc((100 / 750) * 60 * 1vw);
  }

  .sub_mv h1 .ja {
    font-size: calc((100 / 750) * 36 * 1vw);
    line-height: calc((100 / 750) * 26 * 1vw);
  }

  .sub_mv .breadcrumbs {
    padding: 0 calc((100 / 750) * 20 * 1vw) 0;
    column-gap: calc((100 / 750) * 16 * 1vw);
    font-size: calc((100 / 750) * 22 * 1vw);
    line-height: calc((100 / 750) * 30 * 1vw);
  }

  .breadcrumbs .link {
    padding-right: calc((100 / 750) * 43 * 1vw);
  }

  .breadcrumbs .link::after {
    width: calc((100 / 750) * 15 * 1vw);
    background: url(/recruit/assets/img/polygon_line_sp.svg) no-repeat center center/contain;
    right: calc((100 / 750) * 4 * 1vw);
  }

  /* ---------------------footer-------------------- */
  .footer .entry_sec {
    margin-bottom: calc((100 / 750) * 128 * 1vw);
    padding: calc((100 / 750) * 128 * 1vw) 0 calc((100 / 750) * 148 * 1vw);
  }

  .footer .entry_sec .wrap {
    display: block;
  }

  .footer .entry_sec .btn {
    width: calc((100 / 750) * 650 * 1vw);
    aspect-ratio: 650/240;
    margin-bottom: calc((100 / 750) * 90 * 1vw);
  }

  .footer .entry_sec .btn:last-child {
    margin-bottom: 0;
  }

  .footer .entry_sec .btn::before {
    width: calc((100 / 750) * 650 * 1vw);
    aspect-ratio: 650/240;
    border-radius: calc((100 / 750) * 20 * 1vw);
    top: calc((100 / 750) * 20 * 1vw);
    left: calc((100 / 750) * 20 * 1vw);
  }

  .footer .entry_sec a {
    padding: calc((100 / 750) * 86 * 1vw) 0 calc((100 / 750) * 60 * 1vw) calc((100 / 750) * 40 * 1vw);
    border-radius: calc((100 / 750) * 20 * 1vw);
    position: relative;
    z-index: 10;
  }

  .footer .entry_sec a:hover {
    transform: translate(calc((100 / 750) * 20 * 1vw), calc((100 / 750) * 20 * 1vw));
  }

  .footer .entry_sec .recruit_btn {
    background: url(/recruit/assets/img/recruit_btn_bg_sp.png) no-repeat center/cover;
  }

  .footer .entry_sec .entry_btn {
    background: url(/recruit/assets/img/entry_btn_bg_sp.png) no-repeat center/cover;
  }

  .footer .entry_sec .btn .en {
    margin-bottom: calc((100 / 750) * 10 * 1vw);
    font-size: calc((100 / 750) * 54 * 1vw);
    line-height: calc((100 / 750) * 34 * 1vw);
  }

  .footer .entry_sec .btn .ja {
    padding-left: calc((100 / 750) * 44 * 1vw);
    font-size: calc((100 / 750) * 28 * 1vw);
  }

  .footer .entry_sec .btn .ja::before {
    width: calc((100 / 750) * 18 * 1vw);
    left: calc((100 / 750) * 11 * 1vw);
  }

  .footer .flex {
    display: block;
    margin-bottom: 0;
  }

  .footer_nav .nav_1 {
    width: calc((100 / 750) * 650 * 1vw);
    margin-bottom: calc((100 / 750) * 144 * 1vw);
    column-gap: 0;
  }

  .footer_nav .nav_1 li {
    width: 50%;
  }

  .footer_nav .nav_1 li:nth-child(5) {
    margin-left: 0;
  }

  .footer_nav .nav_1 .ja {
    font-size: calc((100 / 750) * 28 * 1vw);
  }

  .footer .logo {
    width: calc((100 / 750) * 623 * 1vw);
    margin-bottom: calc((100 / 750) * 37 * 1vw);
  }

  .footer address {
    margin-bottom: calc((100 / 750) * 144 * 1vw);
    font-size: calc((100 / 750) * 24 * 1vw);
  }

  .footer address::before {
    width: calc((100 / 750) * 214 * 1vw);
    aspect-ratio: 214/176;
    background: url(/recruit/assets/img/sp_deco.png) no-repeat center center/cover;
    top: calc((100 / 750) * 68 * 1vw);
    right: calc((100 / 750) * 10 * 1vw);
  }

  .footer .nav_2 {
    column-gap: calc((100 / 750) * 32 * 1vw);
    justify-content: flex-start;
  }

  .footer .nav_2::after {
    display: none;
  }

  .footer small {
    margin-bottom: calc((100 / 750) * 38 * 1vw);
    font-size: calc((100 / 750) * 22 * 1vw);
    line-height: calc((100 / 750) * 26 * 1vw);
    text-align: start;
  }
}
