@charset 'utf-8';

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&family=Roboto+Condensed:wght@700&family=Roboto+Slab:wght@500&display=swap');

/* ---------------------------
 RESET
--------------------------- */
:root {
  --green: #2FAD72;
  --green02: #EFFBF4;
  --yellow: #FFC506;
}
/*
html5doctor.com Reset Stylesheet
v1.4
2009-07-27
Author: Richard Clark - http://richclarkdesign.com
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
}
body {
  line-height: 1;
  color: #171717;
}
article, aside, dialog, figure, footer, header, hgroup, nav, section {
  display: block;
}
nav, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
a {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  background: transparent;
}
ins {
  text-decoration: none;
  color: #000;
  background-color: #ff9;
}
mark {
  font-weight: bold;
  font-style: italic;
  color: #000;
  background-color: #ff9;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  cursor: help;
  border-bottom: 1px dotted #000;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}
input, select {
  vertical-align: middle;
}
strong {
  font-weight: 500;
}
body {
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3',
  'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, '游ゴシック体',
  YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic',
  sans-serif;
  font-size: 14px;
  padding-bottom: 181px;
  color: #333;
  border-top: 6px #00aaed solid;
}
html {
  scroll-behavior: smooth;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
.clear {
  clear: both;
}
.bg_none {
  background: none !important;
}
.ct {
  text-align: center;
}
.pc {
  display: block;
}
.sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  body {
    padding-bottom: 150px;
  }
  img {
    max-width: 100%;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/* ---------------------------
 共通 / layout
--------------------------- */
.content {
  width: calc(100% - 40px);
  max-width: 960px;
  margin: 0 auto;
}
.content.content-w1040 {
  width: calc(100% - 40px);
  max-width: 1040px;
  margin: 0 auto;
}

/* ---------------------------
 共通 / element
--------------------------- */
/* btn */
.btn-wrap {
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.btn-entry, .btn-job-entry {
  font-weight: bold;
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 558px;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  letter-spacing: .06em;
  color: var(--sub);
  border-radius: 40px;
  background: var(--main);
  -webkit-box-shadow: 0 3px 0 #c76c00;
  box-shadow: 0 3px 0 #c76c00;
}
.btn-entry span {
  font-size: 20px;
  margin-right: 10px;
  padding: 2px 15px 5px;
  border-radius: 5px;
  color: var(--main);
  background-color: #fff;
}
.btn-entry::after{
  position: absolute;
  right: 36px;
  top: 48%;
  content: '';
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 3px solid;
  border-color: #FFF #FFF transparent transparent;
  transform: rotate(45deg) translateY(-50%);
}
.btn-job-entry::after {
  position: absolute;
  right: 24px;
  top: 48%;
  content: '';
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border: 2px solid;
  border-color: #FFF #FFF transparent transparent;
  transform: rotate(45deg) translateY(-50%);
}
.btn-entry:hover, .btn-job-entry:hover {
  -webkit-transition-delay: .6s;
  -o-transition-delay: .6s;
  transition-delay: .6s;
  -webkit-transition-duration: .3s;
  -o-transition-duration: .3s;
  transition-duration: .3s;
  opacity: .7;
}
.btn-entry {
  font-size: 24px;
  line-height: 1.333;
  padding: 22px 10px;
}

.btn-job-entry {
  font-size: 18px;
  line-height: 1.5;
  padding: 13px 10px;
  -webkit-box-shadow: 0 2px 0 #c76c00;
  box-shadow: 0 2px 0 #c76c00;
}

@media only screen and (max-width: 767px) {
  .btn-entry::after {
    right: 28px;
    width: 12px;
    height: 12px;
  }
  .btn-entry, .btn-job-entry {
    font-size: 16px;
    line-height: 1.469;
  }
  .btn-entry span {
    font-size: 14px;
    margin-right: 4px;
    padding: 2px 6px;
    border-radius: 3px;
  }
  .btn-job-entry {
    padding: 18px 10px;
  }
}

/* heading */
.heading {
  display: block;
  margin-bottom: 40px;
}
.heading::before {
  display: block;
  width: 88px;
  height: 64px;
  margin: 0 auto 24px;
  content: '';
  background-repeat: no-repeat;
  background-position: center;
}
.heading.heading-01 {
    font-size: 32px;
    color: #FFF;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.5;
    font-weight: 400;
    display: block;
}
.heading.heading-02 {
  text-align: center;
  font-size: 32px;
  letter-spacing: 4px;
}
.heading .marker {
    text-align: center;
    line-height: 1.6;
    padding: 0 4px 10px;
    display: inline;
    line-height: 2;
    box-shadow: inset 0 -4px 0 #FFC506;
}
.heading.heading-01 .emphasis-txt {
    font-weight: bold;
    font-size: 36px;
}

.heading.heading-01::before {
  background-image: url('/special/img/active_hiring/heading_icon01.png');
}
.heading.heading-02::before {
  background-image: url('/special/img/active_hiring/heading_icon02.png');
}
/* .heading.heading-03::before {
  background-image: url('/special/img/active_hiring/heading_icon03.png');
}  */
.heading img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  vertical-align: bottom;
}

@media only screen and (max-width: 767px) {
  .heading {
    margin-bottom: 24px;
  }
  .heading::before {
      width: 74px;
      height: 54px;
      background-size: 74px 54px;
      margin: 0 auto 8px;
  }
  .heading .marker {
    text-align: center;
    line-height: 1.6;
    padding: 0 0 10px;
    display: inline;
    line-height: 2;
    box-shadow: inset 0 -4px 0 #ffeb3b;
  }
  .heading.heading-01 {
    display: block;
    font-size: 22px;
    letter-spacing: 2px;
  }
  .heading.heading-02 {
    font-size: 22px;
    letter-spacing: 2px;
  }
  .heading.heading-01 .emphasis-txt {
    font-weight: bold;
    font-size: 28px;
  }
}

/* lead */
.lead {
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 54px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .lead {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: left;
  }
}

/* label */
.label-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.label-wrap .label:not(:first-child) {
  margin-left: 5px;
}
.label {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  display: inline-block;
  padding: 5px 10px;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  background-color: var(--green);
}

@media only screen and (max-width: 767px) {
  .label {
    font-size: 15px;
    padding: 10px;
  }
}

/* bg */
.bg-green {
  background-color: var(--green);
}
.bg-green02 {
  background-color: var(--green02);
}

/* ---------------------------
 共通 / block
--------------------------- */
/* page-top */
#page-top {
  position: fixed;
  z-index: 10000;
  right: 10px;
  bottom: 10px;
  width: 60px;
  height: 60px;
}
#page-top a {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: hidden;
  width: 60px;
  height: 60px;
  text-decoration: none;
  text-indent: -9999px;
  border-radius: 50%;
  background: var(--yellow);
}
#page-top a:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  content: '';
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url('/special/img/active_hiring/arrow.png') no-repeat center;
  background-size: 22px 22px;
}

@media only screen and (max-width: 767px) {
  #page-top {
    bottom: 111px;
  }
}

/* floating */
.floating {
  position: fixed;
  z-index: 1000;
  bottom: 62px;
  left: 0;
  width: 100%;
  padding: 0 20px;
}
.floating .btn-wrap {
  width: 100%;
  max-width: 558px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .floating {
    bottom: 20px;
  }
  .floating .btn-wrap {
    max-width: 400px;
  }
}

/* ---------------------------
 header
--------------------------- */
.header {
  width: 100%;
  padding: 30px 0;
  background-color: #fff;
}
.header-inner {
  max-width: 960px;
  margin: 0 auto;
}
.headlogo {
  display: block;
  width: 100%;
  max-width: 235px;
  margin: 0 auto;
}
.headlogo img {
  display: block;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .header {
    padding: 4%;
  }
  .headlogo {
    width: 55%;
    margin: 0 0 0 auto;
  }
}

/* ---------------------------
 mv
--------------------------- */
.mv {
  overflow: hidden;
  width: 100%;
  padding-top: 50px;
  background-color: #fff;
  background-image: url('/special/img/active_hiring/main_mv_pc.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.mv-inner {
  height: 622px;
}
.mv-balloon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  /* width: 184px;
  height: 184px; */
  margin: 0 auto;
  text-align: center;
}
.mv-balloon img {
  width: 396px;
}
.mv-ttl {
  width: 100%;
  max-width: 550px;
  margin: 30px auto 0;
  text-align: center;
}
.mv-ttl h2 img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .mv {
    padding-top: 0;
    background-image: url('/special/img/active_hiring/main_mv_sp.png');
  }
  .mv-inner {
    height: 449px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  /* .mv-balloon {
    width: 142px;
    height: 142px;
  }
  .mv-balloon::after {
    bottom: -15px;
    border-width: 16px 9px 0 9px;
  } */
  .mv-balloon img {
    width: 226px;
  }
  .mv-ttl {
    width: 82.888%;
    margin: 16px auto 0;
  }
}

/* ---------------------------
 section / merit
--------------------------- */
.merit {
  padding: 41px 0 63px;
}
.merit .heading img {
  width: 588px;
}
.merit .lead {
  margin-bottom: 54px;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .merit {
    padding: 25px 0 40px;
  }
  .merit .heading img {
    width: 243px;
  }
  .merit .lead {
    margin-bottom: 25px;
  }
}

.card-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 960px;
}
.card-unit.card-unit-col03 .card {
  width: calc((100% - 48px) / 3);
}

@media only screen and (max-width: 767px) {
  .card-unit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .card-unit.card-unit-col03 .card {
    width: 100%;
    margin-top: 20px;
  }
  .card-unit.card-unit-col03 .card:first-child {
    margin-top: 0;
  }
}

.card {
  position: relative;
  padding: 52px 22px 31px;
  border-radius: 10px;
  background-color: #fff;
}
.card-head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.card-head::before {
  content: none;
}
.card-point {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: -52px;
  left: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  border-radius: 50%;
  background-color: var(--green);
}
.card-point span {
  font-size: 30px;
  display: block;
}
.card-ttl {
  font-family: var(--p-fonts);
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
.card-img img {
  display: block;
  width: 100%;
  border-radius: 10px;
}
.card-body {
  font-size: 14px;
  line-height: 1.9;
  margin-top: 22px;
}
.is-pc.card-body {
  display: block !important;
}
.card-txt {
  font-size: 14px;
  line-height: 1.929;
  margin-top: 20px;
}
.card-txt span {
  font-weight: bold;
  border-bottom: 3px solid var(--yellow);
}

@media only screen and (max-width: 767px) {
  .card {
    position: static;
    padding: 15px;
  }
  .card-ttl {
    font-size: 15px;
    text-align: left;
  }
  .card-head {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-right: 28px;
    cursor: pointer;
  }
  .card-head::before {
    position: absolute;
    top: 50%;
    right: 0;
    width: 11px;
    height: 11px;
    content: '';
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transform: rotate(135deg) translateY(50%);
    -ms-transform: rotate(135deg) translateY(50%);
    transform: rotate(135deg) translateY(50%);
    border-top: 2px solid var(--green);
    border-right: 2px solid var(--green);
  }
  .active.card-head::before {
    -webkit-transform: rotate(-45deg) translateY(-50%);
    -ms-transform: rotate(-45deg) translateY(-50%);
    transform: rotate(-45deg) translateY(-50%);
  }
  .card-point {
    font-size: 11px;
    position: static;
    width: 60px;
    height: 60px;
    margin-right: 17px;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .card-point span {
    font-size: 22px;
  }
  .card-img img {
    border-radius: 5px;
  }
  .card-body {
    display: none;
    margin-top: 13px;
    padding-bottom: 10px;
  }
  .active.card-body {
    display: block;
  }
  .card-txt {
    line-height: 1.714;
  }
}

/* ---------------------------
 cta
--------------------------- */
.cta {
  padding: 40px 0 50px;
  background-color: var(--green02);
}
.cta .lead {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.778;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .cta {
    padding: 40px 0;
  }
  .cta .lead {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: center;
  }
}

/* ---------------------------
 section / joboffer
--------------------------- */
.joboffer {
  padding: 40px 0 60px;
  background-color: #fff;
}
.joboffer .heading img {
  width: 672px;
}
.joboffer-slider .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.joboffer-slider .swiper-slide {
  width: calc((100% - 60px) / 3);
  margin: 30px 0 0 30px;
}
.joboffer-slider .swiper-slide:nth-child(-n+3) {
  margin-top: 0;
}
.joboffer-slider .swiper-slide:nth-child(3n+1) {
  margin-left: 0;
}

.pc_wrap_hosoku{
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 20px 6% 0;
  font-size: 12px;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .joboffer {
    padding: 40px 0 39px;
  }
  .joboffer .heading img {
    width: 266px;
  }
  .joboffer-slider {
    margin-right: -20px;
  }
  .joboffer-slider .swiper-wrapper {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .joboffer-slider .swiper-slide {
    width: 100%;
    margin: 0 0 1px 0;
  }
}

.card02 {
  padding: 20px 20px 25px;
  border-radius: 10px;
  background-color: var(--green02);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .16);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .16);
}
.card02-ttl {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
.card02-img {
  margin-top: 12px;
}
.card02-img img {
  display: block;
  width: 100%;
  border-radius: 10px;
}
.card02-body {
  margin-top: 15px;
}
.card02-salary {
  font-family: 'Roboto Slab', 'Noto Sans JP', serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.45;
  position: relative;
  margin-top: 15px;
  padding-left: 29px;
}
.card02-salary::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 24px;
  height: 24px;
  content: '';
  background: url('data:image/svg+xml,%0A%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'53.687\' height=\'53.687\' viewBox=\'0 0 53.687 53.687\'%3E%3Cpath d=\'M26.843,0A26.843,26.843,0,1,0,53.687,26.843,26.817,26.817,0,0,0,26.843,0Zm0,49.228A22.384,22.384,0,1,1,49.228,26.843,22.417,22.417,0,0,1,26.843,49.228Z\' fill=\'%2301bbc0\'/%3E%3Cpath d=\'M183.185,151.963a1.917,1.917,0,1,0,0-3.835h-2.312l4.218-6.552a1.918,1.918,0,1,0-3.221-2.082L177.039,147l-4.832-7.494a1.918,1.918,0,1,0-3.221,2.082l4.218,6.552h-2.323a1.917,1.917,0,0,0,0,3.835h4.229v1.874h-4.229a1.917,1.917,0,1,0,0,3.835h4.229v2.345a1.917,1.917,0,1,0,3.835,0v-2.345h4.229a1.917,1.917,0,1,0,0-3.835h-4.229v-1.874h4.24Z\' transform=\'translate(-150.195 -123.433)\' fill=\'%2301bbc0\'/%3E%3C/svg%3E') no-repeat center;
  background-size: 24px 24px;
}
.card02-txt {
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  margin-top: 6px;
  padding-left: 29px;
}
.card02-txt::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 23px;
  height: 23px;
  content: '';
  background: url('data:image/svg+xml,%0A%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'53.353\' height=\'51\' viewBox=\'0 0 53.353 51\'%3E%3Cpath d=\'M49.371,56.55a1.856,1.856,0,0,0,.258-.017A1.893,1.893,0,0,0,51.247,54.4l-1.225-8.886a8.514,8.514,0,0,0,6.83-8.363V14.086A8.559,8.559,0,0,0,48.317,5.55H12.036A8.559,8.559,0,0,0,3.5,14.086V37.149a8.559,8.559,0,0,0,8.535,8.536H36.668L48.1,56.059A1.885,1.885,0,0,0,49.371,56.55ZM48.315,9.336a4.764,4.764,0,0,1,4.751,4.751V37.149a4.764,4.764,0,0,1-4.751,4.75h-.441a1.862,1.862,0,0,0-.253.017A1.893,1.893,0,0,0,46,44.049l.785,5.7L38.672,42.39A1.888,1.888,0,0,0,37.4,41.9H12.036a4.763,4.763,0,0,1-4.75-4.751V14.086a4.764,4.764,0,0,1,4.751-4.75H48.315ZM41.383,34.969a1.893,1.893,0,0,0,0-3.786H18.972a1.893,1.893,0,0,0,0,3.786Zm0-7.458a1.893,1.893,0,0,0,0-3.786H18.972a1.893,1.893,0,0,0,0,3.786Zm0-7.458a1.893,1.893,0,0,0,0-3.786H18.972a1.893,1.893,0,0,0,0,3.786Z\' transform=\'translate(-3.5 -5.55)\' fill=\'%2301bbc0\'/%3E%3C/svg%3E') no-repeat center;
  background-size: 23px 23px;
}
.card02 .btn-wrap {
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .card02 {
    padding: 25px 20px;
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .16);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .16);
  }
  .card02-ttl {
    font-size: 15px;
    line-height: 1.467;
  }
  .card02-img {
    margin-top: 25px;
  }
  .card02-salary {
    font-size: 18px;
    margin-top: 14px;
    padding-left: 38px;
  }
  .card02-salary::before {
    width: 27px;
    height: 27px;
    background-size: 27px 27px;
  }
  .card02-txt {
    margin-top: 9px;
    padding-left: 38px;
  }
  .card02-txt::before {
    width: 27px;
    height: 26px;
    background-size: 27px 26px;
  }
}

/* ---------------------------
 section / reason
--------------------------- */
.reason {
  padding: 40px 0 60px;
}
.reason .heading img {
  width: 416px;
}
.reason .card-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 960px;
  margin-top: 182px;
}
.reason .card-unit .card03 {
  margin-top: 0;
}
.reason .card-unit.card-unit-col03 .card03 {
  width: calc((100% - 60px) / 3);
}

@media only screen and (max-width: 767px) {
  .reason {
    padding: 40px 0;
  }
  .reason .heading img {
    width: 286px;
  }
  .reason .card-unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 151px;
  }
  .reason .card-unit .card03 {
    margin-top: 151px;
  }
  .reason .card-unit .card03:first-child {
    margin-top: 0;
  }
  .reason .card-unit.card-unit-col03 .card03 {
    width: 100%;
  }
}

.card03 {
  font-weight: 500;
  position: relative;
  width: 100%;
  padding: 39px 21px 50px;
  border-radius: 10px;
  background-color: var(--green);
}
.card03.card03-01 .card03-no {
  left: 10px;
}
.card03.card03-02 .card03-no {
  left: 32px;
}
.card03.card03-03 .card03-no {
  left: 10px;
}
.card03.card03-01 .card03-img {
  right: 32px;
  width: 38.2089552%;
  max-width: 128px;
  margin-bottom: -44px;
}
.card03.card03-02 .card03-img {
  right: 34px;
  width: 31.9402985%;
  max-width: 107px;
}
.card03.card03-03 .card03-img {
  right: 16px;
  width: 56.7164179%;
  max-width: 190px;
  margin-bottom: -11px;
}
.card03-no {
  font-size: 100px;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: -6px;
  letter-spacing: -.01em;
  color: var(--green);
}
.card03-img {
  position: absolute;
  right: 0;
  bottom: 100%;
}
.card03-img img {
  width: 100%;
  vertical-align: bottom;
}
.card03-ttl {
  font-size: 20px;
  line-height: 1.426;
  letter-spacing: .12em;
  color: var(--yellow);
}
.card03-txt {
  font-size: 15px;
  line-height: 1.5;
  margin-top: 21px;
  color: #fff;
}
.card03-txt span {
  color: var(--yellow);
}

@media only screen and (max-width: 767px) {
  .card03.card03-01 .card03-no {
    left: 2.98507463%;
  }
  .card03.card03-02 .card03-no {
    right: 2.98507463%;
    left: auto;
  }
  .card03.card03-03 .card03-no {
    left: 2.98507463%;
  }
  .card03.card03-01 .card03-img {
    right: 9.55223881%;
  }
  .card03.card03-02 .card03-img {
    right: auto;
    left: 10.1492537%;
  }
  .card03.card03-03 .card03-img {
    right: 4.7761194%;
  }
}

/* ---------------------------
 section / uservoice
--------------------------- */
.uservoice {
  padding: 40px 0 60px;
}
.uservoice .heading img {
  width: 608px;
}
.uservoice-slider {
  position: relative;
  width: 100%;
}
.uservoice .swiper-container {
  max-width: 960px;
  margin: 0 auto;
  padding-top: 17px;
}
.uservoice .swiper-slide {
  height: auto;
}
.uservoice .swiper-button-prev, .uservoice .swiper-button-next {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #3dccc7;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 14px;
}
.uservoice .swiper-button-prev {
  left: 0;
  opacity: 1;
  background-image: url('data:image/svg+xml,%0A%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'16.55\' height=\'13.512\' viewBox=\'0 0 16.55 13.512\'%3E%3Cg transform=\'translate(-419.581 -4837.174)\'%3E%3Cpath d=\'M426.357,4837.84l-5.436,6.09,5.436,6.09\' fill=\'none\' stroke=\'%23fff\' stroke-width=\'2\'/%3E%3Cpath d=\'M420.921,4843.83h15.21\' fill=\'none\' stroke=\'%23fff\' stroke-width=\'2\'/%3E%3C/g%3E%3C/svg%3E');
}
.uservoice .swiper-button-next {
  right: 0;
  background-image: url('data:image/svg+xml,%0A%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'16.55\' height=\'13.512\' viewBox=\'0 0 16.55 13.512\'%3E%3Cg transform=\'translate(-20.049 -20.868)\'%3E%3Cpath d=\'M420.921,4837.84l5.436,6.09-5.436,6.09\' transform=\'translate(-391.098 -4816.306)\' fill=\'none\' stroke=\'%23fff\' stroke-width=\'2\'/%3E%3Cpath d=\'M436.131,4843.83h-15.21\' transform=\'translate(-400.872 -4816.306)\' fill=\'none\' stroke=\'%23fff\' stroke-width=\'2\'/%3E%3C/g%3E%3C/svg%3E');
}

@media only screen and (max-width: 767px) {
  .uservoice .heading img {
    width: 242px;
  }
}
@media only screen and (max-width: 959px) {
  .uservoice .swiper-container {
    margin: 0 -20px;
  }
}
@media only screen and (max-width: 1060px) {
  .uservoice .heading {
    margin-bottom: 33px;
  }
  .uservoice .swiper-button-prev, .uservoice .swiper-button-next {
    display: none;
  }
}

.card04 {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 22px 29px;
  border-radius: 10px;
  background-color: var(--green02);
  border: solid 2px var(--color01);
}
.card04-head {
  text-align: center;
}
.card04-img {
  position: relative;
  top: -17px;
  margin-bottom: -17px;
}
.card04-img img {
  display: block;
  margin: 0 auto;
}
.card04-ttl {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 8px;
  padding-bottom: 5px;
  color: #01bbc0;
  border-bottom: 1px solid currentColor;
}
.card04-tag {
  font-size: 13px;
  line-height: 1.5;
  display: inline-block;
  margin-top: 5px;
}
.card04-body {
  margin-top: 13px;
}
.card04-txt {
  font-size: 14px;
  line-height: 1.5;
}
.card04-txt span {
  font-weight: bold;
  color: #01bbc0;
}

/* ---------------------------
 section / flow
--------------------------- */
.flow {
  padding: 40px 0 60px;
}
.flow .heading img {
  width: 384px;
}

@media only screen and (max-width: 767px) {
  .flow {
    padding: 40px 0;
  }
  .flow .heading img {
    width: 264px;
  }
}

.steplist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 900px;
}
.steplist li {
  width: calc((100% - 60px) / 3);
  margin: 30px 0 0 30px;
  background-color: #fff;
}
.steplist li:nth-child(-n+3) {
  margin-top: 0;
}
.steplist li:nth-child(3n+1) {
  margin-left: 0;
}
.steplist-item {
  position: relative;
  width: 100%;
}
.steplist-item-inner {
  padding: 17px 14px;
  text-align: center;
}
.steplist-item-label {
  font-size: 25px;
  font-weight: bold;
  position: absolute;
  top: -13px;
  left: -13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  text-indent: -9999px;
  color: #fff;
  border: 7px solid currentColor;
  background-color: var(--green);
  background-repeat: no-repeat;
  background-position: center;
}
.steplist-item-01 .steplist-item-label {
  background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'13.152\' height=\'22.69\' viewBox=\'0 0 13.152 22.69\'%3E%3Cpath d=\'M454.111,5451.79a35.462,35.462,0,0,1-8.32,2.56v1.28c2.3,0,3.552.1,4.384.52.384.19.512.83.512,1.69v11.91c0,3.04-.448,3.32-5.024,3.36v1.37h13.152v-1.37c-2.336-.04-3.264-.13-3.936-.52-.7-.38-.768-.67-.768-2.94Z\' transform=\'translate(-445.663 -5451.79)\' fill=\'%23fff\'/%3E%3C/svg%3E');
}
.steplist-item-02 .steplist-item-label {
  background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'15.136\' height=\'22.4\' viewBox=\'0 0 15.136 22.4\'%3E%3Cpath d=\'M752.153,5474.48h13.568l1.568-6.88-1.152-.32c-1.152,3.23-1.792,3.71-4.672,3.71h-6.272a26.429,26.429,0,0,1,5.568-4.76c4.8-3.43,6.272-5.35,6.272-8.29,0-3.49-2.848-5.86-7.04-5.86-3.9,0-7.072,2.47-7.072,5.6a2.318,2.318,0,0,0,2.112,2.43,2.039,2.039,0,0,0,1.92-2.08,3,3,0,0,0-.256-1.08,3.171,3.171,0,0,1-.224-1.12c0-1.35,1.312-2.34,3.072-2.34,2.24,0,3.584,1.47,3.584,3.87,0,2.85-1.152,4.77-5.568,9.12a34.1,34.1,0,0,0-5.408,6.27Z\' transform=\'translate(-752.153 -5452.08)\' fill=\'%23fff\'/%3E%3C/svg%3E');
}
.steplist-item-03 .steplist-item-label {
  background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'15.17\' height=\'22.91\' viewBox=\'0 0 15.17 22.91\'%3E%3Cpath d=\'M1065.24,5455.31c0-.92.83-1.88,2.62-1.88,2.24,0,3.55,1.44,3.55,4.03,0,2.85-1.63,4.64-4.16,4.64a3.233,3.233,0,0,1-.54-.03,7.258,7.258,0,0,0-.87-.04.77.77,0,0,0-.86.84.759.759,0,0,0,.86.8,3.545,3.545,0,0,0,.64-.04c.45-.03.87-.06,1.25-.06,2.53,0,4.23,1.95,4.23,4.99,0,3.17-1.7,5.09-4.39,5.09-2.4,0-2.94-1.06-2.94-2.02a3.824,3.824,0,0,1,.03-.6c.03-.26.06-.48.06-.61a2.182,2.182,0,0,0-2.08-2.08,2.062,2.062,0,0,0-2.01,2.17c0,2.66,2.91,4.48,7.04,4.48,4.83,0,8.13-2.59,8.13-6.36,0-2.92-2.28-5.67-6.44-5.83,3.46-.54,5.76-2.69,5.76-5.44,0-3.07-2.88-5.28-6.78-5.28-3.71,0-6.91,2.02-6.91,4.42a2.071,2.071,0,0,0,1.95,2.17,2.038,2.038,0,0,0,1.92-2.2,4.381,4.381,0,0,0-.03-.58A4.459,4.459,0,0,1,1065.24,5455.31Z\' transform=\'translate(-1060.63 -5452.08)\' fill=\'%23fff\'/%3E%3C/svg%3E');
}
.steplist-item-04 .steplist-item-label {
  background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'15.968\' height=\'22.31\' viewBox=\'0 0 15.968 22.31\'%3E%3Cpath d=\'M455.839,5763.15h-1.984l-10.176,15.62v1.38h8.768v1.31c0,2.21-.416,2.53-2.4,2.65l-.48.04v1.31H458.4v-1.31l-.384-.04c-2.016-.16-2.176-.25-2.176-2.65v-1.31h3.808v-1.54h-3.808Zm-3.392,4.52v10.94h-7.168Z\' transform=\'translate(-443.679 -5763.15)\' fill=\'%23fff\'/%3E%3C/svg%3E');
}
.steplist-item-05 .steplist-item-label {
  background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'14.816\' height=\'22.4\' viewBox=\'0 0 14.816 22.4\'%3E%3Cpath d=\'M754.745,5775.7c1.664-1.83,2.88-2.47,4.832-2.47,2.592,0,4.032,1.96,4.032,5.51,0,3.84-1.536,5.89-4.384,5.89-1.568,0-2.688-.77-2.688-1.96a1.693,1.693,0,0,1,.032-.38,3.552,3.552,0,0,0,.1-.74,2.128,2.128,0,0,0-1.984-2.2,2.065,2.065,0,0,0-2.016,2.11c0,2.59,2.816,4.51,6.528,4.51,4.832,0,8.288-3.2,8.288-7.58a6.815,6.815,0,0,0-7.04-6.98,6.963,6.963,0,0,0-5.248,2.24c.288-3.39.416-4.8.512-6.72h9.92l.672-3.36H754.489c-.192,5.12-.416,8.26-.8,11.65Z\' transform=\'translate(-752.665 -5763.57)\' fill=\'%23fff\'/%3E%3C/svg%3E');
}
.steplist-item-06 .steplist-item-label {
  background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'15.26\' height=\'22.94\' viewBox=\'0 0 15.26 22.94\'%3E%3Cpath d=\'M1064.63,5774.51c0-5.88,2.01-10.04,4.83-10.04.86,0,1.44.48,1.73,1.63.51,2.05,1.37,2.3,2.17,2.3a2,2,0,0,0,1.92-2.14c0-1.83-2.04-3.23-4.76-3.23a7.5,7.5,0,0,0-5.7,2.62,13.566,13.566,0,0,0-4,10.02c0,6.08,3.2,10.3,7.9,10.3a7.469,7.469,0,0,0,7.36-7.74c0-3.84-2.49-6.69-5.95-6.69C1068.08,5771.54,1066.45,5772.47,1064.63,5774.51Zm-.03,2.05a6.042,6.042,0,0,1,1.4-1.76,4.25,4.25,0,0,1,2.88-1.25c2.28,0,3.36,1.7,3.36,5.25,0,3.87-1.28,5.89-3.68,5.89a3.042,3.042,0,0,1-2.14-.8c-1.09-1.06-1.86-4-1.86-6.4A7.487,7.487,0,0,1,1064.6,5776.56Z\' transform=\'translate(-1060.82 -5763.03)\' fill=\'%23fff\'/%3E%3C/svg%3E');
}
.steplist-item-head {
  position: relative;
  margin-bottom: 15px;
}
.steplist-item-ttl {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
  padding-left: 0;
}
.steplist-item-03 .steplist-item-ttl {
  padding-left: 35px;
}
.steplist-item-cont {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.steplist-item-img {
  margin-left: 0;
}
.steplist-item-img img {
  display: block;
  width: 240px;
  max-width: 100%;
  margin: 0 auto;
}
.steplist-item-body {
  margin-top: 15px;
}
.steplist-item-txt {
  font-size: 14px;
  line-height: 1.4;
  position: relative;
  text-align: center;
}
.steplist-item-txt .blue {
  font-weight: bold;
  color: var(--green);
}
.steplist-item-txt .small {
  font-size: 11px;
  display: block;
  margin-top: 4px;
}

@media only screen and (max-width: 767px) {
  .steplist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
  }
  .steplist li {
    width: 95%;
    margin: 30px 0 0 0;
  }
  .steplist li:first-child {
    margin-top: 0 !important;
  }
  .steplist li:nth-child(-n+3) {
    margin-top: 30px;
  }
  .steplist li:nth-child(even) {
    margin-left: auto;
  }
  .steplist-item-cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .steplist-item-img {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 10px;
  }
  .steplist-item-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 0;
  }
  .steplist-item-ttl {
    font-size: 14px;
    padding-left: 40px;
    text-align: left;
  }
  .steplist-item-03 .steplist-item-ttl {
    padding-left: 40px;
  }
  .steplist-item-txt {
    font-size: 12px;
    line-height: 1.5;
    text-align: left;
  }
  .steplist-item-txt .small {
    line-height: 1.5;
  }
}

/* ---------------------------
 otherinfo
--------------------------- */
.otherinfo {
  padding: 10px 0;
}

@media only screen and (max-width: 767px) {
  .otherinfo {
    padding: 45px 0;
  }
}

.box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 15px 10px;
  border-radius: 5px;
  background-color: #fff;
}
.box > *:not(:first-child) {
  margin-left: 15px;
}
.box-head {
  width: 278px;
  text-align: center;
}
.box-head p {
  font-size: 15px;
  font-weight: bold;
  padding: 5px;
  color: #fff;
  border-radius: 100px;
  background-color: var(--green);
}
.box-head span {
  font-size: 12px;
  display: inline-block;
  margin-top: 5px;
  color: var(--green);
}
.box-tel {
  width: 30%;
}
.box-tel a {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 40px;
  font-weight: 600;
  display: inline-block;
  margin-top: 0;
  white-space: nowrap;
  text-decoration: none;
  color: var(--green);
}
.box-txt {
  font-size: 11px;
  line-height: 1.3;
  margin-top: 0;
  text-align: left;
  color: var(--green);
}

@media only screen and (max-width: 767px) {
  .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px 15px;
  }
  .box > *:not(:first-child) {
    margin-left: 0;
  }
  .box-head {
    width: 100%;
  }
  .box-head p {
    font-size: 15px;
  }
  .box-head span {
    font-size: 12px;
  }
  .box-tel {
    width: 100%;
    text-align: center;
  }
  .box-tel a {
    font-size: 9.5vw;
    margin-top: 10px;
  }
  .box-txt {
    font-size: 12px;
    margin-top: 10px;
    text-align: center;
  }
}

.media-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
.media-list li:not(:first-child) {
  margin: 0 0 0 2%;
}
.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
.media-img {
  margin-right: 5px;
}
.media-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.media-ttl {
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}
.media-txt {
  font-size: 11px;
  line-height: 1.3;
  margin-top: 3px;
}

@media only screen and (max-width: 767px) {
  .media-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .media-list li:not(:first-child) {
    margin: 20px 0 0 0;
  }
  .media-img {
    margin-right: 10px;
  }
  .media-ttl {
    font-size: 16px;
    line-height: 1.3;
  }
  .media-txt {
    font-size: 11px;
  }
}

/* ---------------------------
 footer
--------------------------- */
.footer {
  padding: 18px 0 10px;
  color: #6c6c6c;
}
.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer-top {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 560px;
}
.footer-copy {
  font-size: 11px;
  margin-top: 2px;
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .footer {
    padding: 35px 0 31px;
    border-top: 1px dotted #999;
  }
  .footer-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer-top {
    padding-bottom: 15px;
    border-bottom: 1px dotted #999;
  }
  .footer-bottom {
    margin-left: auto;
    padding-top: 12px;
  }
  .footer-copy {
    padding-top: 4px;
    color: #666;
  }
}

.infolist li {
  font-size: 11px;
}
.infolist li:not(:first-child) {
  margin-top: 2px;
}

@media only screen and (max-width: 767px) {
  .infolist li {
    line-height: 1.2;
    color: #666;
  }
  .infolist li:not(:first-child) {
    margin-top: 4px;
  }
}

.linklist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.linklist li {
  font-size: 11px;
  text-align: right;
}
.linklist li:not(:first-child) {
  margin-left: 14px;
}
.linklist li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  text-decoration: none;
  color: #666;
}
.linklist li a::before {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 4px;
  content: '';
  background: url('/special/img/active_hiring/new_window.png') no-repeat center;
  background-size: 11px 11px;
}

/* ---------------------------
 animation
--------------------------- */
.motion-txt {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.motion-txt:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  content: '';
  -webkit-transform: translate3d(-101%, 0, 0);
  transform: translate3d(-101%, 0, 0);
  opacity: 1;
  background-color: var(--green02);
}
.js-scroll.show .motion-txt:after {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
  -o-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
  transition-timing-function: cubic-bezier(.19, 1, .22, 1);
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.js-scroll.done .motion-txt:after {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
  -o-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
  transition-timing-function: cubic-bezier(.19, 1, .22, 1);
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transform: translate3d(103%, 0, 0);
  transform: translate3d(103%, 0, 0);
}
.motion-txt .motion-inner {
  display: inline-block;
  opacity: 0;
}
.js-scroll.done .motion-txt .motion-inner {
  opacity: 1;
}




/*------------------------------------------------------
  include.css
------------------------------------------------------*/

/* ---------------------------
 テーマカラー / ThemaColor
--------------------------- */
:root {
  --color01: #2FAD72;
  --color02: #EFFBF4;
  --color03: #FFC506;

  --main: #ffa500;
  --sub: #ffffff;

  --inc_text: #FFF;

  --textcolor01: #2FAD72;
  --textcolor02: #2FAD72;
  --textcolor03: #FFC506;

  --bg-color01: #2FAD72;
  --bg-color02: #EFFBF4;
  --bg-color03: #FFF;

}

#st_img01 .st2,#st_img02 .st3,#st_img03 .st4{fill:var(--color01);}
#st_img01 .st0,#st_img02 .st0,#st_img03 .st0{fill:var(--color02);}
#st_img01 .st1,#st_img02 .st2,#st_img03 .st3{fill:#FFFA00;}
#st_img01 .st3,#st_img02 .st1,#st_img03 .st2{fill:#FFFFFF;}
#st_img03 .st1{fill:#EBEBEB;}

#uv_chara01 .st0,
#uv_chara02 .st0,
#uv_chara03 .st0{
  fill:var(--color02);
}
#uv_chara01 .st1,
#uv_chara02 .st1,
#uv_chara03 .st1, #uv_chara03 .st2{
  fill:#FFFFFF;
}
#uv_chara01 .st2,
#uv_chara02 .st2,
#uv_chara03 .st3{
  fill:#505050;
}

.card04{
  background-color: #FFF;
}
.motion-txt:after{
  background-color: var(--color03)
}
.btn_float_entry{
  background: var(--main);
}



/* ↑↑↑↑CSS特集LP固有のCSSにコピーして↑↑↑↑ */