@charset "UTF-8";
/* reset
----------------------------------------------- */
h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, main, figure, figcaption {
  display: block;
  margin: 0;
  padding: 0;
  font-weight: normal;
  border: 0;
  outline: 0;
  line-height: 1;
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  outline: none;
}

img {
  vertical-align: top;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
  user-drag: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

::selection {
  color: #fff;
  background: #32aa50;
}

/* html
----------------------------------------------- */
html {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-print-color-adjust: exact;
}

/* body
----------------------------------------------- */
body {
  position: relative;
  margin: 0;
  padding: 0;
  color: #191919;
  font-family: "Roboto", sans-serif;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  background-color: #fff;
}

a {
  color: #32aa50;
}

/* button
----------------------------------------------- */
.button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  background: linear-gradient(90deg, #32aa50 0%, #78be46 100%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  box-sizing: border-box;
  box-shadow: 3px 3px 5px rgba(72, 165, 0, 0.3);
  cursor: pointer;
}
.button:after {
  position: absolute;
  top: 50%;
  right: 40px;
  margin: -7px 0 0;
  display: block;
  content: "";
  width: 8px;
  height: 14px;
  background-image: url(../img/button_arrow.svg);
  background-repeat: no-repeat;
  background-size: 8px auto;
  pointer-events: none;
}
.button--gray {
  height: 60px;
  font-size: 1.125rem;
  background: #999;
  box-shadow: 3px 3px 5px rgba(150, 150, 150, 0.3);
}
.button--gray:after {
  right: auto;
  left: 30px;
  transform: scale(-1, 1);
}

/* marker
----------------------------------------------- */
.marker {
  background: linear-gradient(transparent 70%, rgba(50, 170, 80, 0.3) 70%);
}

/* underline
----------------------------------------------- */
.underline {
  padding: 0 0 2px;
  border-bottom: 1px solid #fff;
}

/* kv
----------------------------------------------- */
.kv {
  visibility: hidden;
}

/* js-kv-ready */
.js-kv-ready.kv {
  visibility: visible;
  overflow: hidden;
}
.js-kv-ready.kv:before {
  transform: scale(1.2);
  transition-property: transform;
  transition-duration: 1.2s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  visibility: hidden;
}
.js-kv-ready.kv:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #a4bab9;
  z-index: 3;
  transition-property: opacity;
  transition-duration: 0.3s;
  pointer-events: none;
}
.js-kv-ready.kv .kv__title, .js-kv-ready.kv .kv__lead, .js-kv-ready.kv .kv__summary, .js-kv-ready.kv .kv__button {
  visibility: hidden;
  opacity: 0;
  transform: translateX(80px);
  transition-property: opacity, transform;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}
.js-kv-ready.kv .kv__title {
  transition-delay: 0s;
}
.js-kv-ready.kv .kv__lead {
  transition-delay: 0.1s;
}
.js-kv-ready.kv .kv__summary {
  transition-delay: 0.2s;
}
.js-kv-ready.kv .kv__button {
  transition-delay: 0.3s;
}

/* js-kv-start */
.js-kv-start.kv:before {
  visibility: visible;
  transform: scale(1);
}
.js-kv-start.kv:after {
  opacity: 0;
}
.js-kv-start.kv .kv__title, .js-kv-start.kv .kv__lead, .js-kv-start.kv .kv__summary, .js-kv-start.kv .kv__button {
  visibility: visible;
}

/* js-kv-complete */
.js-kv-complete.kv {
  overflow: visible;
}
.js-kv-complete.kv:after {
  display: none;
}

/* intro
----------------------------------------------- */
.intro {
  margin: 0 0 -6px;
}
.intro__inner {
  margin: auto;
  padding: 60px 0 0;
  width: 960px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.intro__title {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 2.3;
  letter-spacing: 0.2em;
}
.intro__summary {
  margin: 0 0 0 50px;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 2.1;
  letter-spacing: 0.08em;
}
.intro__summary strong {
  color: #32aa50;
  font-size: 1.375rem;
}
.intro__image {
  margin: 35px auto 0;
  width: 688px;
}
.intro__image img {
  width: 100%;
  height: auto;
}

/* marker */
.intro .marker {
  background: linear-gradient(transparent 65%, rgba(50, 170, 80, 0.3) 65%);
}

/* section
----------------------------------------------- */
.section {
  position: relative;
}
.section__inner {
  margin: auto;
  padding: 120px 0;
  width: 960px;
  box-sizing: border-box;
}
.section__lead {
  margin: 30px 0 0;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
.section__lead strong {
  font-size: 1.625rem;
}
.section__summary {
  margin: 15px 0 0;
  font-size: 0.9375rem;
  line-height: 2;
}

/* title
----------------------------------------------- */
.title span {
  display: block;
}
.title__label {
  padding: 0 0 5px;
  color: #32aa50;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}
.title__text {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.title__text strong {
  color: #32aa50;
}
.title__text em {
  font-size: 4.375rem;
  font-style: normal;
  letter-spacing: 0em;
}
.title--sub .title__text {
  font-size: 1.875rem;
}
.title--sub {
  text-align: center;
}

/* table
----------------------------------------------- */
.table table {
  width: 100%;
  table-layout: fixed;
}
.table th,
.table td {
  position: relative;
  padding: 20px 15px;
  text-align: left;
  font-size: 0.9375rem;
  vertical-align: top;
  border-bottom: 1px solid #e5e5e5;
  box-sizing: border-box;
}
.table tr:nth-of-type(1) th,
.table tr:nth-of-type(1) td {
  border-top: 1px solid #e5e5e5;
}
.table th {
  padding: 37px 15px;
  width: 270px;
}
.table td *:first-child {
  margin-top: 0;
}
.table__label {
  margin: 20px 0 10px;
  display: flex;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.4;
}
.table__label:before {
  margin: 3px 10px 3px 0;
  display: block;
  content: "";
  width: 4px;
  background-color: #32aa50;
}
.table__text {
  font-size: 0.9375rem;
  line-height: 1.8;
}
.table__lists li {
  padding: 0 0 0 1em;
  font-size: 0.9375rem;
  line-height: 1.8;
  text-indent: -1em;
}
.table__notes {
  margin: 5px 0 0;
}
.table__notes li {
  padding: 0 0 0 1em;
  font-size: 0.75rem;
  line-height: 1.8;
  text-indent: -1em;
}

.table--requirements tr:nth-of-type(1) th {
  border-top-color: #32aa50;
}
.table--requirements th,
.table--requirements td {
  padding: 20px 15px;
}
.table--requirements th {
  width: 230px;
  line-height: 1.8;
  border-bottom-color: #32aa50;
}

/* about
----------------------------------------------- */
.about {
  color: #fff;
  background: linear-gradient(90deg, #32aa50 0%, #78be46 100%);
}
.about:before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  content: "";
  width: 500px;
  height: 107px;
  background-image: url(../img/about_en.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: auto 107px;
}
.about__contents {
  width: 530px;
}
.about__image {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -185px 0 0 95px;
  width: 370px;
}
.about__image img {
  width: 100%;
  height: auto;
}

/* title */
.about .title__label {
  color: #fff;
}

/* challenge
----------------------------------------------- */
.challenge:before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  content: "";
  width: 500px;
  height: 107px;
  background-image: url(../img/challenge_en.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: auto 107px;
}
.challenge__columns {
  display: flex;
  justify-content: space-between;
}
.challenge__column {
  width: 580px;
}
.challenge__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px 100px 0 0;
  width: 240px;
  height: 300px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* section */
.challenge .section__summary strong {
  font-size: 1.25rem;
}

/* voice
----------------------------------------------- */
.voice {
  margin: 100px auto 0;
  width: 860px;
}
.voice__item {
  margin: 50px 0 0;
  padding: 20px 30px 30px;
  background-color: #fff;
  background-image: url(../img/voice_image.png);
  background-repeat: no-repeat;
  background-position: right 30px top 30px;
  background-size: 142px auto;
  border-radius: 6px;
  box-sizing: border-box;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.voice__career {
  display: flex;
  height: 40px;
}
.voice__before {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 0 0 -30px;
  padding: 0 20px;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  background-color: #32aa50;
  z-index: 1;
}
.voice__before:before {
  margin: 0 10px 0 0;
  content: "転職前";
  font-size: 0.9375rem;
}
.voice__before:after {
  position: absolute;
  top: 0;
  right: -14px;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 14px;
  border-color: transparent transparent transparent #32aa50;
  z-index: 1;
}
.voice__after {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 0 0 -20px;
  padding: 0 20px 0 50px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  background-color: #333;
  border-radius: 0 40px 40px 0;
}
.voice__name {
  display: flex;
  align-items: center;
  display: flex;
  margin: 0 0 0 -20px;
  padding: 0 20px 0 35px;
  font-weight: 700;
  font-size: 0.75rem;
  background-color: #ebebeb;
  border-radius: 0 40px 40px 0;
}
.voice__title {
  margin: 20px 0;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
.voice__title strong {
  color: #32aa50;
}
.voice__faq {
  margin: 15px 0 0;
  background-color: #f2f2f2;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  box-sizing: border-box;
}
.voice__faq dt {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 20px 15px 0;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.8;
  cursor: pointer;
}
.voice__faq dt:after {
  position: absolute;
  top: 50%;
  right: 19px;
  margin: -12px 0 0;
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background-color: #fff;
  background-image: url(../img/icon_arrow_green.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px auto;
  border-radius: 50%;
}
.voice__faq dd {
  padding: 14px 19px;
  font-size: 0.9375rem;
  line-height: 2;
  border-top: 1px solid #e5e5e5;
  display: none;
}
.voice__label {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin: 0 15px 0 0;
  width: 110px;
  height: 30px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  background-color: #32aa50;
  border-radius: 0 30px 30px 0;
}

/* is-open */
.voice__faq.is-open {
  background-color: #fff;
  border-color: #32aa50;
}
.voice__faq.is-open dt:after {
  background-color: #32aa50;
  background-image: url(../img/icon_arrow.svg);
  transform: scale(-1, -1);
}

/* point
----------------------------------------------- */
.point {
  background-color: #32aa50;
}
.point:before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  content: "";
  width: 500px;
  height: 107px;
  background-image: url(../img/point_en.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: auto 107px;
}
.point__items {
  margin: 5px -15px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.point__item {
  margin: 30px 15px 0;
  width: 300px;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 6px;
  box-sizing: border-box;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: auto 54px;
}
.point__item:nth-of-type(1) {
  background-image: url(../img/point_number01.png);
}
.point__item:nth-of-type(2) {
  background-image: url(../img/point_number02.png);
}
.point__item:nth-of-type(3) {
  background-image: url(../img/point_number03.png);
}
.point__item:nth-of-type(4) {
  background-image: url(../img/point_number04.png);
}
.point__item:nth-of-type(5) {
  background-image: url(../img/point_number05.png);
}
.point__image {
  margin: auto;
  width: 70px;
}
.point__image img {
  width: 100%;
  height: auto;
}
.point__title {
  margin: 15px 0 0;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.4;
  text-align: center;
}
.point__title strong {
  color: #32aa50;
  font-size: 1.25rem;
}
.point__summary {
  margin: 15px 0 0;
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* title */
.point .title__label,
.point .title__text {
  color: #fff;
  text-align: center;
}

/* schedule
----------------------------------------------- */
.schedule:before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  content: "";
  width: 500px;
  height: 107px;
  background-image: url(../img/schedule_en.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: auto 107px;
}
.schedule__timeline {
  position: relative;
  margin: 45px auto 0;
  width: 860px;
}
.schedule__timeline:before {
  position: absolute;
  top: 0;
  left: 34px;
  bottom: 0;
  display: block;
  content: "";
  width: 2px;
  background-color: #32aa50;
}
.schedule__lists {
  padding: 0 0 0 100px;
}
.schedule__list {
  position: relative;
  display: flex;
  align-items: center;
  margin: 15px 0 0;
  padding: 20px;
  background-color: #f2f2f2;
  border-radius: 6px;
}
.schedule__list:before {
  position: absolute;
  top: 25px;
  left: -20px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 20px 7px 0;
  border-color: transparent #f2f2f2 transparent transparent;
}
.schedule__list:first-child {
  margin: 0;
}
.schedule__label {
  margin: 0 20px 0 0;
  padding: 13px 0;
  flex-shrink: 0;
  width: 170px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.4;
  text-align: center;
  background: linear-gradient(90deg, #32aa50 0%, #78be46 100%);
  border-radius: 6px;
}
.schedule__label sup {
  font-size: 60%;
}
.schedule__summary {
  font-size: 0.9375rem;
  line-height: 1.8;
}
.schedule__note {
  margin: 25px 0 0;
  font-size: 0.75rem;
  line-height: 1.8;
  text-align: center;
}

/* tag */
.schedule__list--tag {
  position: relative;
}
.schedule__list--tag .schedule__label:before, .schedule__list--tag .schedule__label:after {
  position: absolute;
  content: "";
}
.schedule__list--tag .schedule__label:before {
  top: 64px;
  left: -85px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 0.8125rem;
  background: linear-gradient(90deg, #32aa50 0%, #78be46 100%);
  border-radius: 50%;
}
.schedule__list--tag .schedule__label:after {
  top: 0;
  left: -100px;
  display: block;
  width: 70px;
  height: 70px;
  background-repeat: no-repeat;
  background-size: 70px;
}
.schedule__list--tag-morning .schedule__label:before {
  content: "朝";
}
.schedule__list--tag-morning .schedule__label:after {
  background-image: url(../img/schedule_morning.png);
}
.schedule__list--tag-noon .schedule__label:before {
  content: "昼";
}
.schedule__list--tag-noon .schedule__label:after {
  background-image: url(../img/schedule_noon.png);
}
.schedule__list--tag-evening .schedule__label:before {
  top: auto;
  bottom: 0;
  content: "夕方";
}
.schedule__list--tag-evening .schedule__label:after {
  top: auto;
  bottom: 34px;
  background-image: url(../img/schedule_evening.png);
}

/* requirements
----------------------------------------------- */
.requirements__header {
  position: relative;
  height: 350px;
  background-image: url(../img/requirements_image.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100%;
  overflow: hidden;
}
.requirements__header:before, .requirements__header:after {
  position: absolute;
  bottom: 0;
  display: block;
  content: "";
  width: 50%;
  height: 330px;
}
.requirements__header:before {
  margin: 0 470px 0 0;
  right: 50%;
  background-color: #32aa50;
}
.requirements__header:after {
  margin: 0 0 0 470px;
  left: 50%;
  background-color: #78be46;
}
.requirements__headerinner:before, .requirements__headerinner:after {
  position: absolute;
  bottom: 0;
  display: block;
  content: "";
  width: 250px;
  height: 330px;
  background-repeat: no-repeat;
  background-size: auto 100%;
  z-index: 1;
}
.requirements__headerinner:before {
  margin: 0 330px 0 0;
  right: 50%;
  background-image: url(../img/requirements_parts01.png);
}
.requirements__headerinner:after {
  margin: 0 0 0 330px;
  left: 50%;
  background-image: url(../img/requirements_parts02.png);
}
.requirements__message {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -75px 0 0 -335px;
  width: 474px;
}
.requirements__message img {
  width: 100%;
  height: auto;
}
.requirements__contents {
  position: relative;
  margin: -60px auto 0;
  padding: 100px 80px 0;
  width: 960px;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 10px 10px 0 0;
  z-index: 1;
}
.requirements__table {
  margin: 45px 0 0;
}
.requirements__button {
  margin: 50px auto 0;
  width: 500px;
}

/* lower */
.requirements--lower .entry {
  position: relative;
  margin: -60px auto 0;
  padding: 0;
  z-index: 1;
}

/* entry
----------------------------------------------- */
.entry {
  margin: 50px 0 0;
  padding: 50px 0 0;
}
.entry__inner {
  margin: auto;
  padding: 78px 48px;
  width: 960px;
  background-color: #fff;
  border: 2px solid #e5e5e5;
  box-sizing: border-box;
  border-radius: 10px;
}
.entry__summary {
  margin: 40px 0 0;
  font-size: 0.9375rem;
  line-height: 1.8;
  text-align: center;
}
.entry__button {
  margin: 50px auto 0;
  width: 500px;
}

/* form
----------------------------------------------- */
.form {
  margin: 45px 0 0;
}
.form__title {
  margin: 47px 0 17px;
  display: flex;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
}
.form__title:before {
  margin: 3px 10px 3px 0;
  display: block;
  content: "";
  width: 4px;
  background-color: #32aa50;
}
.form__icon {
  position: absolute;
  top: 37px;
  right: 15px;
  display: inline-block;
  padding: 3px 0;
  width: 40px;
  color: #fff;
  font-weight: 700;
  font-size: 0.625rem;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.2em;
  background-color: #32aa50;
  border-radius: 20px;
}
.form__icon--any {
  background-color: #808080;
}
.form__type {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  font-size: 0.9375rem;
  background-color: #f2f2f2;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  box-sizing: border-box;
  outline: none;
  -webkit-appearance: none;
  transition-property: background-color, border-color;
  transition-duration: 0.25s;
}
.form__type--mini {
  width: 100px;
}
.form__type--textarea {
  padding: 18px 20px;
  height: 200px;
  line-height: 1.5;
}
.form__type:focus {
  background-color: #fff;
  border-color: #32aa50;
}
.form__select {
  position: relative;
  width: 280px;
}
.form__select select {
  color: #191919;
  cursor: pointer;
}
.form__select select::-ms-expand {
  display: none;
}
.form__select:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  margin: -3px 0 0;
  width: 10px;
  height: 6px;
  background-image: url(../img/icon_arrow_green.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px auto;
  pointer-events: none;
  z-index: 1;
}
.form__radios li {
  display: inline-block;
  margin: 0 25px 0 0;
  padding: 16px 0;
}
.form__radios li small {
  font-size: 0.75rem;
}
.form__radios li.form__radios-note {
  margin: 0;
}
.form__radio {
  display: none;
}
.form__radio + label {
  display: inline-block;
  position: relative;
  padding: 0 0 0 34px;
  font-size: 0.9375rem;
  z-index: 1;
  cursor: pointer;
}
.form__radio + label:before, .form__radio + label:after {
  display: block;
  content: "";
  position: absolute;
  border-radius: 50%;
}
.form__radio + label:before {
  top: -5px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #e5e5e5;
  background-color: #f2f2f2;
  box-sizing: border-box;
  z-index: 1;
}
.form__radio + label:after {
  top: 0px;
  left: 5px;
  width: 14px;
  height: 14px;
  background-color: #32aa50;
  z-index: 1;
  transform: rotate(0.09deg) scale(0);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}
.form__radio:checked + label:after {
  transform: rotate(0deg) scale(1);
}
.form__checkboxs {
  padding: 0 0 10px;
  display: flex;
  flex-wrap: wrap;
}
.form__checkboxs li {
  position: relative;
  padding: 16px 0;
  width: calc(100% / 3);
}
.form__checkbox {
  position: absolute;
  top: 11px;
  left: 8px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form__checkbox + label {
  display: inline-block;
  position: relative;
  padding: 0 0 0 34px;
  font-size: 0.9375rem;
  z-index: 1;
  cursor: pointer;
}
.form__checkbox + label:before, .form__checkbox + label:after {
  display: block;
  content: "";
  position: absolute;
}
.form__checkbox + label:before {
  top: -5px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #e5e5e5;
  background-color: #f2f2f2;
  border-radius: 4px;
  box-sizing: border-box;
  z-index: 1;
  transition-property: background-color, border-color;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}
.form__checkbox + label:after {
  top: -3px;
  left: 8px;
  width: 7px;
  height: 13px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  z-index: 1;
  transform: rotate(45deg) scale(0);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}
.form__checkbox:checked + label:before {
  background-color: #32aa50;
  border-color: #32aa50;
}
.form__checkbox:checked + label:after {
  transform: rotate(45deg) scale(1);
}
.form__files {
  padding: 14px 0;
}
.form__file, .form__clear {
  color: #191919;
  font-size: 0.8125rem;
}
.form__cautions {
  margin: 18px 0 0;
}
.form__cautions li {
  padding: 0 0 0 1em;
  font-size: 0.75rem;
  line-height: 1.8;
  text-indent: -1em;
}
.form__mailing {
  margin: 18px 0 0;
  padding: 16px 29px;
  display: flex;
  border: 1px dotted #e5e5e5;
}
.form__mailing dt,
.form__mailing dd {
  font-size: 0.75rem;
  line-height: 1.8;
}
.form__mailing dt {
  margin: 0 20px 0 0;
  font-weight: 700;
  white-space: nowrap;
}

/* error */
.form__error {
  display: block;
  margin: 6px 0 -6px;
  color: #c80000;
  font-weight: 700;
  font-size: 0.8125rem;
}
.form .is-error {
  border-color: #c80000;
  background-color: #fff5f5;
}

/* check */
.form__value {
  padding: 13px 0;
  line-height: 1.6;
}

/* button */
.form__submit {
  margin: 50px auto 0;
  width: 500px;
}
.form__back {
  margin: 40px auto 0;
  width: 250px;
}

/* privacypolicy
----------------------------------------------- */
.privacypolicy {
  margin: 50px -48px 0;
  padding: 35px 48px 40px;
  background-color: #f2f2f2;
}
.privacypolicy__summary {
  font-size: 0.9375rem;
  line-height: 1.8;
  text-align: center;
}
.privacypolicy__box {
  margin: 25px 0 0;
  padding: 0 29px 29px;
  height: 200px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
  border-radius: 6px;
  overflow: auto;
}
.privacypolicy__title {
  margin: 35px 0 0;
  display: flex;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.4;
}
.privacypolicy__title:before {
  margin: 3px 10px 3px 0;
  display: block;
  content: "";
  width: 4px;
  background-color: #32aa50;
}
.privacypolicy__subtitle {
  margin: 20px 0 0;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.4;
}
.privacypolicy__text p {
  margin: 15px 0 0;
  font-size: 0.75rem;
  line-height: 1.8;
  text-align: left;
  word-break: break-word;
}
.privacypolicy__text p a {
  font-weight: 700;
}
.privacypolicy__list {
  margin: 15px 0 0;
}
.privacypolicy__list li {
  margin: 0 0 0 2.5em;
  display: list-item;
  font-size: 0.75rem;
  list-style: disc;
  line-height: 1.8;
  word-break: break-word;
}
.privacypolicy__list li a {
  font-weight: 700;
}
.privacypolicy__list--decimal li {
  list-style-type: decimal;
}
.privacypolicy__checkbox {
  position: relative;
  display: block;
  margin: 0 10px 0 0;
  width: 24px;
  height: 24px;
  border: 1px solid #e5e5e5;
  background-color: #f2f2f2;
  border-radius: 4px;
  box-sizing: border-box;
  z-index: 1;
  transition-property: background-color, border-color;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}
.privacypolicy__checkbox:after {
  display: block;
  content: "";
  position: absolute;
  top: 1px;
  left: 7px;
  width: 7px;
  height: 13px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  z-index: 1;
  transform: rotate(45deg) scale(0);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}
.privacypolicy__checkbox:checked + label:before {
  background-color: #32aa50;
  border-color: #32aa50;
}
.privacypolicy__checkbox:checked + label:after {
  transform: rotate(45deg) scale(1);
}

/* form */
.privacypolicy__agreement {
  position: relative;
  margin: 30px auto 0;
  width: 260px;
}
.privacypolicy__agreement .form__icon {
  position: static;
  margin: 0 0 0 10px;
}
.privacypolicy__agreement .form__checkbox + label {
  padding: 0;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
  border-radius: 50px;
  transition-property: background-color;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}
.privacypolicy__agreement .form__checkbox + label:before, .privacypolicy__agreement .form__checkbox + label:after {
  display: none;
}
.privacypolicy__agreement .form__checkbox:checked + label {
  background-color: #adddb9;
}
.privacypolicy__agreement .form__checkbox:checked + label .privacypolicy__checkbox {
  background-color: #32aa50;
  border-color: #32aa50;
}
.privacypolicy__agreement .form__checkbox:checked + label .privacypolicy__checkbox:after {
  transform: rotate(45deg) scale(1);
}
.privacypolicy__agreement .form__checkbox.is-error + label {
  border-color: #c80000;
  background-color: #fff5f5;
}
.privacypolicy__agreement .form__error {
  text-align: center;
}

/* access
----------------------------------------------- */
.access {
  margin: 120px 0 0;
  background-color: #f2f2f2;
}
.access__inner {
  margin: auto;
  padding: 60px 0;
  width: 900px;
  text-align: center;
}
.access__address {
  margin: 20px 0 0;
  font-size: 0.8125rem;
}
.access__items {
  margin: 50px 0 0;
  display: flex;
  justify-content: center;
}
.access__item {
  width: calc(220px + 40px);
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  border-left: 1px solid #d9d9d9;
  box-sizing: border-box;
}
.access__item:first-child {
  border: none;
}
.access__label {
  margin: 0 0 auto;
  width: 100%;
  padding: 7px 0;
  font-weight: 700;
  font-size: 0.625rem;
  background-color: #fff;
  border-radius: 4px;
}
.access__content {
  width: 100%;
  padding: 15px 0 0;
}
.access__text {
  font-weight: 700;
  font-size: 0.8125rem;
}
.access__text--tel, .access__text--en {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
}
.access__text--tel small, .access__text--en small {
  font-size: 0.8125rem;
}
.access__text a {
  color: #8b0033;
  text-decoration: none;
}
.access__text a[target=_blank] {
  position: relative;
  padding: 0 15px 0 0;
}
.access__text a[target=_blank]:after {
  position: absolute;
  top: 50%;
  right: 0;
  margin: -5px 0 0;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  background-image: url(../img/icon_blank_red.svg);
  background-repeat: no-repeat;
  background-size: 10px;
}
.access__note {
  margin: 5px 0 0;
  color: #808080;
  font-size: 0.5625rem;
}

/* site
----------------------------------------------- */
.site {
  background: linear-gradient(90deg, #32aa50 0%, #78be46 100%);
}
.site__inner {
  margin: auto;
  padding: 18px 0;
  width: 900px;
  display: flex;
  align-items: center;
}
.site__title {
  padding: 11px 0;
  width: 240px;
  color: #fff;
  font-weight: 700;
  font-size: 0.8125rem;
  flex-shrink: 0;
}
.site__links {
  display: flex;
  flex-wrap: wrap;
}
.site__link {
  margin: 11px 0;
}
.site__link:after {
  margin: 0 8px 0 5px;
  display: inline;
  content: "｜";
  color: #fff;
  opacity: 0.4;
}
.site__link a {
  color: #fff;
  font-size: 0.8125rem;
  text-decoration: none;
}

/* footer
----------------------------------------------- */
.footer {
  position: relative;
  background-color: #333;
}
.footer__inner {
  margin: auto;
  padding: 50px 0;
  width: 900px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
.footer__links {
  display: flex;
}
.footer__link {
  margin: 0 0 0 30px;
}
.footer__link a {
  color: #ccc;
  font-size: 0.75rem;
  text-decoration: none;
}
.footer__link a[target=_blank] {
  position: relative;
  padding: 0 15px 0 0;
}
.footer__link a[target=_blank]:after {
  position: absolute;
  top: 50%;
  right: 0;
  margin: -5px 0 0;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  background-image: url(../img/icon_blank.svg);
  background-repeat: no-repeat;
  background-size: 10px;
}
.footer__copyright {
  color: #808080;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 0.625rem;
}

/* pageup
----------------------------------------------- */
.pageup {
  position: fixed;
  right: 20px;
  bottom: 22px;
  width: 60px;
  z-index: 3;
}
.pageup__button {
  cursor: pointer;
}
.pageup__button img {
  position: relative;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: scale(0);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* is-active */
.pageup.is-active .pageup__button img {
  opacity: 1;
  transform: scale(1);
}

/* pc
----------------------------------------------- */
@media print, screen and (min-width:1000px) {
  /* body
  ----------------------------------------------- */
  .sp {
    display: none;
  }

  /* button
  ----------------------------------------------- */
  .button {
    overflow: hidden;
    transition-property: transform;
    transition-duration: 0.3s;
  }
  .button:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    background: #82c850;
    border-radius: 100px;
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.3s;
  }
  .button span {
    transform: rotate(0.03deg);
    z-index: 2;
  }
  .button--gray:before {
    background: #4c4c4c;
  }

  /* hover */
  .button:hover {
    transform: translateY(-3px);
  }
  .button:hover:before {
    opacity: 1;
  }

  /* header
  ----------------------------------------------- */
  .header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 5;
  }
  .header__inner {
    position: relative;
    margin: auto;
    max-width: 1500px;
  }
  .header__logo {
    position: absolute;
    top: 0;
    left: 0;
  }
  .header__logo a {
    width: 348px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 0 0 6px 0;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  }
  .header__contact {
    position: absolute;
    top: 0;
    right: 0;
    padding: 15px 20px 0 0;
    display: flex;
    align-items: center;
    color: #fff;
  }
  .header__tel {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 1.875rem;
  }
  .header__tel small {
    font-size: 1.125rem;
  }
  .header__note {
    margin: 0 0 0 10px;
    font-size: 0.625rem;
    line-height: 1.4;
    transform: rotate(0.03deg);
  }

  /* lower */
  .header--lower {
    position: relative;
    height: 40px;
    padding: 10px 0;
  }
  .header--lower .header__logo a {
    border-radius: 0;
    box-shadow: none;
  }
  .header--lower .header__contact {
    color: inherit;
  }

  /* menu
  ----------------------------------------------- */
  .menu {
    display: none;
  }

  /* nav
  ----------------------------------------------- */
  .nav {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
  }
  .nav__inner {
    margin: auto;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nav__lists {
    display: flex;
    align-items: center;
  }
  .nav__list {
    margin: 0 30px 0 0;
  }
  .nav__list a {
    display: inline-block;
    color: inherit;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    transform: rotate(0.03deg);
    transition-property: color;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .nav__button {
    width: 200px;
  }
  .nav__contact {
    display: none;
  }

  /* hover */
  .nav__list a:hover {
    color: #32aa50;
  }

  /* button */
  .nav__button .button {
    height: 50px;
  }
  .nav__button .button:after {
    display: none;
  }
  .nav__button .button span {
    font-size: 0.9375rem;
  }

  /* fixed */
  .js-nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    bottom: auto;
    right: 0;
    z-index: 5;
  }

  /* kv
  ----------------------------------------------- */
  .kv {
    position: relative;
    display: flex;
    padding: 0 0 30px;
    height: 95vh;
    min-height: 650px;
    max-height: 780px;
    background-color: #f2f2f2;
    box-sizing: border-box;
  }
  .kv:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(../img/kv_pc.jpg), url(../img/kv_base.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 1500px auto, 100% auto;
  }
  .kv__inner {
    margin: auto;
    width: 960px;
    display: flex;
    align-items: center;
  }
  .kv__lead {
    margin: 20px 0 0;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    transform: rotate(0.03deg);
  }
  .kv__lead span {
    display: inline-block;
    margin: 5px 0 0;
    padding: 8px 10px;
    background: linear-gradient(90deg, #32aa50 0%, #78be46 100%);
  }
  .kv__summary {
    margin: 12px 0 0;
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.01em;
    transform: rotate(0.03deg);
  }
  .kv__button {
    margin: 15px 0 0;
    width: 380px;
  }

  /* button */
  .kv__button .button {
    height: 70px;
  }

  /* js-kv-ready */
  .js-kv-ready.kv .nav {
    visibility: hidden;
    opacity: 0;
    transition-property: opacity;
    transition-delay: 0.2s;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  }

  /* js-kv-end */
  .js-kv-end.kv .kv__title {
    opacity: 1;
    transform: translateX(0px);
  }
  .js-kv-end.kv .kv__lead, .js-kv-end.kv .kv__summary, .js-kv-end.kv .kv__button {
    opacity: 1;
    transform: translateX(0px) rotate(0.03deg);
  }

  /* js-kv-complete */
  .js-kv-complete.kv .nav {
    visibility: visible;
    opacity: 1;
  }

  /* intro
  ----------------------------------------------- */
  .intro__summary {
    transform: rotate(0.03deg);
  }

  /* challenge
  ----------------------------------------------- */
  .challenge {
    background-image: url(../img/challenge_bg_pc.png);
    background-repeat: repeat-y;
    background-position: center top;
  }

  /* section
  ----------------------------------------------- */
  .section__lead {
    transform: rotate(0.03deg);
  }
  .section__summary {
    transform: rotate(0.03deg);
  }

  /* table
  ----------------------------------------------- */
  .table th,
.table td {
    transform: rotate(0.03deg);
  }

  /* voice
  ----------------------------------------------- */
  .voice__career {
    transform: rotate(0.03deg);
  }
  .voice__title {
    transform: rotate(0.03deg);
  }
  .voice__faq dt,
.voice__faq dd {
    transform: rotate(0.03deg);
  }

  .voice__faq {
    transition-property: background-color, border-color;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .voice__faq dt:after {
    transition-property: background-color;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  /* hover */
  .voice__faq:hover {
    background-color: #fff;
    border-color: #32aa50;
  }
  .voice__faq:hover dt:after {
    background-color: #32aa50;
    background-image: url(../img/icon_arrow.svg);
  }

  /* point
  ----------------------------------------------- */
  .point {
    background-image: url(../img/point_bg_pc.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
  }
  .point__title {
    transform: rotate(0.03deg);
  }
  .point__summary {
    transform: rotate(0.03deg);
  }

  /* schedule
  ----------------------------------------------- */
  .schedule__list {
    transform: rotate(0.03deg);
  }
  .schedule__note {
    transform: rotate(0.03deg);
  }

  /* form
  ----------------------------------------------- */
  .form__title {
    transform: rotate(0.03deg);
  }
  .form__cautions li {
    transform: rotate(0.03deg);
  }
  .form__mailing dt,
.form__mailing dd {
    transform: rotate(0.03deg);
  }

  /* privacypolicy
  ----------------------------------------------- */
  .privacypolicy__summary {
    transform: rotate(0.03deg);
  }
  .privacypolicy__title {
    transform: rotate(0.03deg);
  }
  .privacypolicy__subtitle {
    transform: rotate(0.03deg);
  }
  .privacypolicy__text p {
    transform: rotate(0.03deg);
  }
  .privacypolicy__list li {
    transform: rotate(0.03deg);
  }

  /* access
  ----------------------------------------------- */
  .access__address {
    transform: rotate(0.03deg);
  }
  .access__label {
    transform: rotate(0.03deg);
  }
  .access__text {
    transform: rotate(0.03deg);
  }
  .access__text a[href^="tel:"] {
    color: inherit;
    pointer-events: none;
  }
  .access__note {
    transform: rotate(0.03deg);
  }

  /* hover */
  .access__text a:hover {
    opacity: 0.7;
  }

  /* site
  ----------------------------------------------- */
  .site__title {
    transform: rotate(0.03deg);
  }
  .site__link a {
    transform: rotate(0.03deg);
  }

  /* hover */
  .site__link a:hover {
    opacity: 0.7;
  }

  /* footer
  ----------------------------------------------- */
  /* hover */
  .footer__link a:hover {
    opacity: 0.7;
  }

  /* pageup
  ----------------------------------------------- */
  .pageup__button {
    transition-property: opacity;
    transition-duration: 0.3s;
  }

  /* hover */
  .pageup__button:hover {
    opacity: 0.6;
  }

  /* is-fixed */
  .pageup.is-fixed {
    position: absolute;
    top: 0;
    bottom: auto;
    transform: translateY(calc((-100%) - 22px));
  }
}
/* sp
----------------------------------------------- */
@media only screen and (max-width:999px) {
  /* body
  ----------------------------------------------- */
  .pc {
    display: none;
  }

  /* underline
  ----------------------------------------------- */
  .underline {
    padding: 0;
  }

  /* button
  ----------------------------------------------- */
  .button {
    height: 60px;
    font-size: 1rem;
  }
  .button:after {
    right: 25px;
    margin: -5px 0 0;
    width: 6px;
    height: 10px;
    background-size: 6px auto;
  }
  .button--gray {
    height: 50px;
    font-size: 0.875rem;
  }

  /* header
  ----------------------------------------------- */
  .header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    z-index: 5;
  }
  .header__inner {
    height: 50px;
    display: flex;
    align-items: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  }
  .header__logo {
    margin: 0 0 0 15px;
    width: auto;
    height: 15px;
  }
  .header__logo a img {
    width: auto;
    height: 100%;
  }
  .header__contact {
    display: none;
  }

  /* lower */
  .header--lower {
    position: relative;
    background-color: transparent;
  }
  .header--lower .header__inner {
    margin: 0 0 -10px;
    box-shadow: none;
  }

  /* nav
  ----------------------------------------------- */
  .nav {
    position: fixed;
    top: 50px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    background: transparent;
  }
  .nav__outer {
    position: relative;
    margin: 0;
    background-color: #fff;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 2;
  }
  .nav__inner {
    display: block;
    max-width: initial;
    height: auto;
  }
  .nav__mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(25, 25, 25, 0.8);
    z-index: 1;
  }
  .nav__lists {
    padding: 10px 0 0;
  }
  .nav__list {
    margin: 20px 0;
    text-align: center;
  }
  .nav__list a {
    display: inline-block;
    padding: 10px 0;
    color: inherit;
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    text-decoration: none;
  }
  .nav__button {
    margin: 30px auto 0;
    padding: 0 25px;
    max-width: 650px;
    box-sizing: border-box;
  }
  .nav__contact {
    margin: 40px 0 0;
    padding: 20px 0;
    background-color: #f2f2f2;
  }
  .nav__tel {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 1.5625rem;
    text-align: center;
  }
  .nav__tel a {
    color: #8b0033;
    text-decoration: none;
  }
  .nav__tel small {
    font-size: 0.9375rem;
  }
  .nav__note {
    margin: 10px 0 0;
    color: #808080;
    font-size: 0.625rem;
    text-align: center;
  }

  /* initial */
  .nav {
    pointer-events: none;
    visibility: hidden;
  }
  .nav__outer {
    transform: translateY(-100%);
  }
  .nav__mask {
    opacity: 0;
  }

  /* ready */
  .js-nav-ready {
    transition-property: visibility;
    transition-duration: 0s;
    transition-delay: 0.5s;
  }

  .js-nav-ready .nav__outer {
    transition-property: transform;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
  }

  .js-nav-ready .nav__mask {
    transition-property: opacity;
    transition-duration: 0.5s;
  }

  /* open */
  .js-nav-open {
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }

  .js-nav-open .nav__outer {
    transform: translateY(0);
  }

  .js-nav-open .nav__mask {
    opacity: 1;
  }

  /* button */
  .nav__button .button {
    height: 60px;
  }
  .nav__button .button span {
    font-size: 0.9375rem;
  }

  /* menu
  ----------------------------------------------- */
  .menu {
    position: fixed;
    top: 0;
    right: 0;
    background: linear-gradient(90deg, #32aa50 0%, #78be46 100%);
    width: 60px;
    height: 60px;
    border-radius: 0 0 0 10px;
    box-shadow: 3px 3px 5px rgba(72, 165, 0, 0.3);
    cursor: pointer;
  }
  .menu span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -12px;
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 6px;
  }
  .menu span:nth-of-type(1) {
    margin-top: -11px;
  }
  .menu span:nth-of-type(2) {
    margin-top: -1px;
  }
  .menu span:nth-of-type(3) {
    margin-top: 9px;
  }

  /* ready */
  .js-menu-ready span {
    transition-property: opacity, transform;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  /* open */
  .js-menu-open span:nth-of-type(1) {
    margin-top: -1px;
    transform: rotate(45deg);
  }
  .js-menu-open span:nth-of-type(2) {
    opacity: 0;
  }
  .js-menu-open span:nth-of-type(3) {
    margin-top: -1px;
    transform: rotate(-45deg);
  }

  /* kv
  ----------------------------------------------- */
  .kv {
    position: relative;
    display: flex;
    padding: 50px 0 0;
    height: 410px;
    background-color: #f2f2f2;
    box-sizing: border-box;
  }
  .kv:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(../img/kv_sp.jpg), url(../img/kv_base.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: auto 410px, 100% auto;
  }
  .kv__inner {
    margin: auto;
    padding: 0 15px;
    max-width: 375px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }
  .kv__title {
    width: 220px;
  }
  .kv__title img {
    width: 100%;
    height: auto;
  }
  .kv__lead {
    margin: 12px 0 0;
    color: #fff;
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
  }
  .kv__lead span {
    display: inline-block;
    margin: 5px 0 0;
    padding: 5px 7px;
    background: linear-gradient(90deg, #32aa50 0%, #78be46 100%);
  }
  .kv__summary {
    margin: 8px 130px 0 0;
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 2;
    letter-spacing: 0.01em;
  }

  /* js-kv-ready */
  .js-kv-ready.kv .kv__title, .js-kv-ready.kv .kv__lead, .js-kv-ready.kv .kv__summary, .js-kv-ready.kv .kv__button {
    transform: translateX(25px);
  }

  /* js-kv-end */
  .js-kv-end.kv .kv__title, .js-kv-end.kv .kv__lead, .js-kv-end.kv .kv__summary, .js-kv-end.kv .kv__button {
    opacity: 1;
    transform: translateX(0px);
  }

  /* conversion
  ----------------------------------------------- */
  .conversion {
    padding: 20px 25px;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  }
  .conversion__button {
    margin: auto;
    max-width: 650px;
  }

  /* intro
  ----------------------------------------------- */
  .intro {
    margin: 0 0 -3px;
  }
  .intro__inner {
    padding: 40px 0 0;
    width: 100%;
    display: block;
    text-align: center;
  }
  .intro__title {
    display: inline-block;
    font-size: 1.375rem;
    line-height: 2;
  }
  .intro__summary {
    margin: 30px 0 0;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
  .intro__summary strong {
    color: #32aa50;
    font-size: 1.25rem;
  }
  .intro__image {
    margin: 35px auto 0;
    width: 344px;
  }

  /* section
  ----------------------------------------------- */
  .section__inner {
    margin: auto;
    padding: 60px 25px;
    width: 100%;
    max-width: 650px;
  }
  .section__lead {
    margin: 15px 0 0;
    font-size: 1rem;
    line-height: 1.8;
  }
  .section__lead strong {
    font-size: 1.25rem;
  }
  .section__summary {
    margin: 12px 0 0;
    font-size: 0.875rem;
  }

  /* title
  ----------------------------------------------- */
  .title__label {
    font-size: 0.75rem;
  }
  .title__text {
    font-size: 1.5625rem;
    line-height: 1.5;
  }
  .title__text em {
    font-size: 2.1875rem;
  }
  .title--sub .title__text {
    font-size: 1.25rem;
  }

  /* table
  ----------------------------------------------- */
  .table th,
.table td {
    display: block;
    font-size: 0.875rem;
  }
  .table tr:nth-of-type(1) td {
    border-top: none;
  }
  .table th {
    padding: 20px 5px;
    width: 100%;
    border-bottom: none;
  }
  .table td {
    padding: 0 5px 20px;
  }
  .table td .table__label:first-child {
    margin: 5px 0 8px;
  }
  .table__label {
    margin: 15px 0 8px;
    font-size: 0.875rem;
  }
  .table__label:before {
    margin: 3px 7px 3px 0;
    width: 3px;
  }
  .table__text {
    font-size: 0.875rem;
  }
  .table__lists li {
    font-size: 0.875rem;
  }
  .table__notes li {
    font-size: 0.6875rem;
    line-height: 1.6;
  }

  .table--requirements tr:nth-of-type(1) th {
    border-top-color: #e5e5e5;
  }
  .table--requirements th {
    position: relative;
    padding: 15px 20px 6px;
  }
  .table--requirements th:before {
    position: absolute;
    top: -1px;
    left: 0;
    content: "";
    width: 115px;
    height: 1px;
    background-color: #32aa50;
  }
  .table--requirements td {
    padding: 0 20px 15px;
  }

  /* about
  ----------------------------------------------- */
  .about:before {
    left: auto;
    right: 0;
    width: 270px;
    height: 53px;
    background-size: auto 53px;
  }
  .about__contents {
    width: 100%;
  }
  .about__image {
    position: static;
    margin: 30px auto 0;
    padding: 0 37px;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
  }

  /* title */
  .about .title__label {
    color: #fff;
  }

  /* challenge
  ----------------------------------------------- */
  .challenge {
    background-image: url(../img/challenge_bg_sp.png);
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 515px auto;
  }
  .challenge:before {
    left: auto;
    right: 0;
    width: 270px;
    height: 53px;
    background-size: auto 53px;
  }
  .challenge__columns {
    display: block;
  }
  .challenge__column {
    width: 100%;
  }
  .challenge__logo {
    margin: 25px auto 0;
    width: 160px;
    height: 200px;
  }
  .challenge__logo img {
    width: 80px;
    height: auto;
  }

  /* section */
  .challenge .section__summary strong {
    font-size: 1rem;
  }

  /* voice
  ----------------------------------------------- */
  .voice {
    margin: 50px auto 0;
    width: 100%;
    box-sizing: border-box;
  }
  .voice__item {
    margin: 30px 0 0;
    padding: 15px 15px 20px;
    background-position: right 15px top 15px;
    background-size: 71px auto;
  }
  .voice__career {
    display: flex;
    flex-wrap: wrap;
    height: auto;
  }
  .voice__before {
    margin: 0 0 0 -15px;
    padding: 0 5px 0 10px;
    height: 30px;
    font-size: 1rem;
  }
  .voice__before:before {
    margin: 0 5px 0 0;
    font-size: 0.75rem;
  }
  .voice__before:after {
    right: -10px;
    border-width: 15px 0 15px 10px;
  }
  .voice__after {
    margin: 0 0 0 -20px;
    padding: 0 10px 0 35px;
    height: 30px;
    font-size: 0.75rem;
  }
  .voice__spacer {
    width: 100%;
  }
  .voice__name {
    margin: 5px 0 0 -15px;
    padding: 7px 15px 7px 10px;
    font-size: 0.75rem;
  }
  .voice__title {
    margin: 15px 0;
    font-size: 1rem;
  }
  .voice__faq {
    margin: 10px 0 0;
  }
  .voice__faq dt {
    display: block;
    padding: 10px 37px 10px 15px;
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .voice__faq dt:after {
    right: 9px;
    margin: -9px 0 0;
    width: 18px;
    height: 18px;
    background-size: 7px auto;
  }
  .voice__faq dd {
    padding: 15px;
    font-size: 0.875rem;
  }
  .voice__label {
    margin: 0 0 6px -15px;
    width: 83px;
    height: 20px;
    font-size: 0.625rem;
  }

  /* point
  ----------------------------------------------- */
  .point {
    background-image: url(../img/point_bg_sp.png), url(../img/point_bg_repeat_sp.png);
    background-repeat: no-repeat, repeat-y;
    background-position: center top, center top;
    background-size: contain, 100% auto;
  }
  .point:before {
    left: auto;
    right: 0;
    width: 270px;
    height: 53px;
    background-size: auto 53px;
  }
  .point__items {
    margin: 0;
    display: block;
  }
  .point__item {
    margin: 30px 0 0;
    width: 100%;
    padding: 20px 20px 15px;
    background-size: auto 38px;
  }
  .point__header {
    display: flex;
    align-items: center;
  }
  .point__image {
    margin: 0 10px 0 0;
    width: 60px;
    flex-shrink: 0;
  }
  .point__title {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
    text-align: left;
  }
  .point__summary {
    margin: 12px 0 0;
    font-size: 0.875rem;
    line-height: 2;
  }

  /* schedule
  ----------------------------------------------- */
  .schedule:before {
    left: auto;
    right: 0;
    width: 270px;
    height: 53px;
    background-size: auto 53px;
  }
  .schedule__timeline {
    margin: 30px auto 0;
    width: 100%;
  }
  .schedule__lists {
    padding: 0 0 0 85px;
  }
  .schedule__list {
    display: block;
    margin: 10px 0 0;
    padding: 15px;
  }
  .schedule__list:before {
    top: 27px;
    left: -12px;
    border-width: 4px 12px 4px 0;
  }
  .schedule__label {
    margin: 0 0 5px 0;
    padding: 7px 15px;
    display: inline-block;
    width: auto;
    font-size: 0.875rem;
  }
  .schedule__summary {
    font-size: 0.875rem;
  }
  .schedule__note {
    font-size: 0.6875rem;
    line-height: 1.6;
  }

  /* tag */
  .schedule__list--tag {
    position: relative;
  }
  .schedule__list--tag .schedule__label:before {
    top: 65px;
    left: -67px;
    width: 35px;
    height: 35px;
    font-size: 0.625rem;
  }
  .schedule__list--tag .schedule__label:after {
    left: -85px;
  }
  .schedule__list--tag-evening .schedule__label:before {
    top: auto;
    bottom: 0;
  }
  .schedule__list--tag-evening .schedule__label:after {
    bottom: 30px;
  }

  /* requirements
  ----------------------------------------------- */
  .requirements__header {
    height: 175px;
    background-position: calc(50% - 20px) bottom;
  }
  .requirements__header:before, .requirements__header:after {
    height: 165px;
  }
  .requirements__header:before {
    margin: 0 210px 0 0;
  }
  .requirements__header:after {
    margin: 0 0 0 210px;
  }
  .requirements__headerinner:before, .requirements__headerinner:after {
    width: 125px;
    height: 165px;
  }
  .requirements__headerinner:before {
    margin: 0 145px 0 0;
  }
  .requirements__headerinner:after {
    margin: 0 0 0 145px;
  }
  .requirements__message {
    margin: -36px 0 0 -165px;
    width: 235px;
  }
  .requirements__contents {
    margin: -30px auto 0;
    padding: 50px 0 0;
    width: calc(100% - 50px);
    max-width: 650px;
  }
  .requirements__table {
    margin: 25px 0 0;
  }
  .requirements__button {
    margin: 30px auto 0;
    width: calc(100% - 50px);
    max-width: 650px;
  }

  /* lower */
  .requirements--lower .entry {
    position: relative;
    margin: -30px 25px 0;
    padding: 0;
  }

  /* entry
  ----------------------------------------------- */
  .entry {
    margin: 25px 0 0;
    padding: 25px 25px 0;
  }
  .entry__inner {
    margin: auto;
    padding: 38px 18px;
    width: 100%;
    max-width: 650px;
  }
  .entry__summary {
    margin: 20px 0 0;
    font-size: 0.875rem;
    line-height: 2;
  }
  .entry__button {
    margin: 30px auto 0;
    width: 100%;
  }

  /* form
  ----------------------------------------------- */
  .form {
    margin: 25px 0 0;
  }
  .form__icon {
    margin: 0 0 0 10px;
    position: static;
    vertical-align: 1px;
  }
  .form__text {
    height: 45px;
    padding: 0 14px;
    font-size: 0.875rem;
  }
  .form__type {
    height: 45px;
    padding: 0 15px;
    font-size: 0.875rem;
  }
  .form__type--textarea {
    padding: 13px 15px;
    height: 160px;
  }
  .form__select {
    width: 100%;
  }
  .form__select:after {
    right: 15px;
  }
  .form__radios li {
    display: inline-block;
    padding: 5px 0;
  }
  .form__radios li small {
    font-size: 0.6875rem;
  }
  .form__radios li.form__radios-note {
    margin: 20px 0 0;
    padding: 0;
  }
  .form__radio + label {
    padding: 0 0 0 29px;
    font-size: 0.875rem;
  }
  .form__checkboxs {
    padding: 0;
    justify-content: space-between;
  }
  .form__checkboxs li {
    padding: 5px 0 30px;
    width: calc((100% / 2) - 7px);
  }
  .form__checkbox + label {
    padding: 0 0 0 29px;
    font-size: 0.875rem;
  }
  .form__files {
    padding: 0;
  }
  .form__clear {
    margin: 20px 0 0;
  }
  .form__cautions {
    margin: 18px 0 0;
  }
  .form__cautions li {
    font-size: 0.6875rem;
    line-height: 1.6;
  }
  .form__mailing {
    margin: 15px 0 0;
    padding: 16px 19px;
    display: block;
  }
  .form__mailing dt,
.form__mailing dd {
    font-size: 0.8125rem;
    line-height: 1.5;
  }
  .form__mailing dt {
    margin: 0 0 10px;
  }
  .form__submit {
    margin: 40px auto 0;
    width: 100%;
  }

  /* check */
  .form__value {
    padding: 0;
    line-height: 1.6;
  }

  /* button */
  .form__submit {
    margin: 40px auto 0;
    width: 100%;
  }
  .form__back {
    margin: 30px auto 0;
    width: 200px;
  }

  /* privacypolicy
  ----------------------------------------------- */
  .privacypolicy {
    margin: 30px -18px 0;
    padding: 25px 18px 30px;
  }
  .privacypolicy__summary {
    font-size: 0.875rem;
    line-height: 1.7;
  }
  .privacypolicy__box {
    margin: 15px 0 0;
    padding: 0 18px 19px;
    height: 160px;
  }
  .privacypolicy__title {
    margin: 18px 0 0;
    font-size: 0.8125rem;
  }
  .privacypolicy__title:before {
    margin: 3px 7px 3px 0;
    width: 3px;
  }
  .privacypolicy__subtitle {
    margin: 18px 0 0;
  }
  .privacypolicy__text p {
    margin: 12px 0 0;
    font-size: 0.8125rem;
  }

  /* form */
  .privacypolicy__agreement {
    width: 205px;
  }

  /* access
  ----------------------------------------------- */
  .access {
    margin: 60px 0 0;
    padding: 0 25px;
  }
  .access__inner {
    margin: auto;
    padding: 50px 0;
    display: block;
    width: 100%;
    max-width: 650px;
  }
  .access__logo {
    height: 15px;
  }
  .access__logo img {
    width: auto;
    height: 100%;
  }
  .access__address {
    line-height: 1.8;
    text-align: center;
  }
  .access__items {
    margin: 10px 0 0;
    display: block;
  }
  .access__item {
    margin: 30px 0 0;
    width: 100%;
    padding: 0;
    display: block;
    border-left: none;
  }
  .access__label {
    padding: 10px 0;
    font-size: 0.75rem;
  }
  .access__content {
    padding: 20px 0 0;
  }
  .access__text {
    font-weight: 700;
    font-size: 0.9375rem;
  }
  .access__text--tel {
    font-size: 1.5625rem;
  }
  .access__text--tel small {
    font-size: 0.9375rem;
  }
  .access__text--en {
    font-size: 0.9375rem;
  }
  .access__text--en small {
    font-size: 0.9375rem;
  }
  .access__text a {
    color: #8b0033;
    text-decoration: none;
  }
  .access__text a[target=_blank] {
    padding: 0 12px 0 0;
  }
  .access__text a[target=_blank]:after {
    margin: -5px 0 0;
    width: 7px;
    height: 7px;
    background-size: 7px;
  }
  .access__note {
    margin: 10px 0 0;
    font-size: 0.625rem;
  }

  /* site
  ----------------------------------------------- */
  .site {
    padding: 0 25px;
  }
  .site__inner {
    margin: auto;
    padding: 48px 0 40px;
    display: block;
    width: 100%;
    max-width: 650px;
  }
  .site__title {
    padding: 0 0 20px;
    width: 100%;
    font-size: 0.75rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .site__links {
    display: block;
  }
  .site__link {
    margin: 28px 0 0;
    text-align: center;
  }
  .site__link:after {
    display: none;
  }
  .site__link a {
    display: inline-block;
    font-size: 0.8125rem;
  }

  /* footer
  ----------------------------------------------- */
  .footer__inner {
    padding: 35px 0 40px;
    width: 100%;
    display: block;
  }
  .footer__links {
    justify-content: center;
  }
  .footer__link {
    margin: 0 12px;
  }
  .footer__link a {
    font-size: 0.625rem;
  }
  .footer__link a[target=_blank] {
    padding: 0 12px 0 0;
  }
  .footer__link a[target=_blank]:after {
    margin: -3.5px 0 0;
    width: 7px;
    height: 7px;
    background-size: 7px;
  }
  .footer__copyright {
    margin: 40px auto 0;
    display: block;
    text-align: center;
  }

  /* pageup
  ----------------------------------------------- */
  .pageup {
    position: absolute;
    right: 25px;
    bottom: 40px;
    width: 45px;
  }
}