@charset "UTF-8";

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

* {
  color: #333;
  letter-spacing: 0;
  letter-spacing: 0.025em;
}

/* 基本 */

/* destyle.cssで無効化されたフォームデザインを復活させる */

/* https://jobtech.jp/html_css/11056/ */

button,
input,
select,
textarea {
  -webkit-appearance: auto;
  -moz-appearance: auto;
       appearance: auto;
  border-width: 1px;
}

/* 選択系パーツ */

input[type=radio],
input[type=checkbox] {
  vertical-align: initial;
}

/* ボタン */

input[type=submit],
input[type=reset],
input[type=button] {
  background-color: #f0f0f0;
  font-size: 0.9em;
  padding: 0.2em 0.4em;
  border: solid 1px #666;
  border-radius: 3px;
}

input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover {
  background-color: #ddd;
  cursor: pointer;
}

.entry {
  width: 400px;
  height: 120px;
  line-height: 120px;
  background-color: #f4f4f4;
  font-size: 24px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #333;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: relative;
  left: -12px;
  top: 12px;
}

.entry-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: inline-block;
  width: 400px;
  height: 120px;
  line-height: 120px;
  background-color: #F45F5F;
  color: #f4f4f4;
  border: 1px solid #333;
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translate(12px, -12px);
          transform: translate(12px, -12px);
  position: relative;
  -webkit-filter: none;
          filter: none;
}

.entry-btn::after {
  content: "";
  background: url(../img/img-arrow.webp) no-repeat center center/contain;
  display: inline-block;
  width: 20px;
  height: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  margin-left: 22px;
}

.entry-btn:hover {
  -webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
}

.header {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header .entry {
  border-width: 0;
  background-color: inherit;
}

.header .entry-btn {
  border-width: 0;
  padding-left: 40px;
  letter-spacing: 0.2rem;
  overflow: hidden;
}

.header .entry :hover {
  -webkit-transform: translate(12px, -12px);
          transform: translate(12px, -12px);
}

.header__nav {
  display: none;
  width: 100%;
  height: 104vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #F45F5F;
}

.header__nav.is-active {
  opacity: 1;
  visibility: visible;
}

.header__nav.is-active .header__nav-list a {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header__nav__lists {
  width: 100%;
  max-width: 91.7333333333vw;
  margin: 0 auto;
  padding-top: 20px;
}

.header__nav-list {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fcfcfc;
  margin-top: 15px;
  overflow: hidden;
  position: relative;
}

.header__nav-list ::before {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fcfcfc;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transition: background 1.5s;
  transition: background 1.5s;
}

.header__nav-list ::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fcfcfc;
  position: absolute;
  bottom: 0;
  left: 0;
}

.header__nav-list a {
  display: block;
  width: 100%;
  line-height: 3.125rem;
  padding-left: 15px;
  letter-spacing: 0.15rem;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

.header__nav__btn {
  width: 107px;
  height: 107px;
  position: fixed;
  right: 22px;
  bottom: 25px;
}

.header__nav__btn img {
  width: 100%;
  height: auto;
}

.header__nav__btn ::before,
.header__nav__btn ::after {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fcfcfc;
}

body.is-active {
  height: 100%;
  overflow: hidden;
}

.wrap {
  overflow: hidden;
}

.container {
  margin: 0 10px;
}

/* fv */

.fv {
  width: 100%;
}

.fv__wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.fv__copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 15px;
}

.fv__copyright__wrapper {
  position: relative;
  top: 512px;
  left: -135px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: 1000;
  width: 300px;
  margin-left: 3.2942898975vw;
}

.fv__copyright-copy {
  font-size: 13px;
  margin-left: -15px;
}

.fv__copyright-title {
  font-size: 13px;
  display: inline-block;
  white-space: nowrap;
}

.fv__scroll {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: 3.2942898975vw;
  position: relative;
  z-index: 1;
}

.fv__scroll img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

.fv__scroll::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #F45F5F;
  position: absolute;
  z-index: -2;
  -webkit-animation: wave 3s ease 0s infinite;
          animation: wave 3s ease 0s infinite;
}

.fv .slider {
  position: relative;
  margin-top: -20px;
  height: 648px;
  padding-left: 12.4450951684vw;
}

.fv__catch {
  font-size: 129px;
  line-height: 129px;
  color: #F45F5F;
  font-weight: 700;
  letter-spacing: 1rem;
}

.fv .text {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
}

.fv .text:nth-of-type(1) {
  top: 97px;
  width: 120px;
}

.fv .text:nth-of-type(1)::before {
  display: block;
  content: "";
  background: url(../img/img-logo.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 130px;
  height: 124px;
  position: absolute;
  z-index: 1000;
  top: -92px;
  left: -5;
  -webkit-transform: rotateZ(-11deg);
          transform: rotateZ(-11deg);
}

.fv .text:nth-of-type(2) {
  top: 500px;
  width: 300px;
}

.fv .text:nth-of-type(3) {
  top: 500px;
  left: 275px;
  width: 900px;
  height: 145px;
  letter-spacing: 0.1rem;
}

@-webkit-keyframes wave {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }

  50% {
    opacity: 0.5;
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
  }
}

@keyframes wave {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }

  50% {
    opacity: 0.5;
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
  }
}

.swiper {
  width: 100%;
  max-width: 87.5549048316vw;
  height: 100%;
  max-height: 645px;
  margin-right: 0;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination {
  position: static;
  display: inline;
  width: 100px;
}

.swiper-pagination-bullet-active {
  background-color: #F45F5F;
}

.swiper-pagination-bullet {
  background-color: #F45F5F;
  width: 13px;
  height: 13px;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0 0 20px;
}

/* message */

.message {
  width: 100%;
  max-width: 1055px;
  margin: 0 auto;
  padding: 135px 0 155px;
  /* SP対応 */
}

.message__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.message__inner.title {
  width: auto;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  padding-right: 23px;
  position: relative;
}

.message__inner.title::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #F45F5F;
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-65%);
          transform: translateY(-65%);
}

.message__inner.en {
  display: inline-block;
  color: #F45F5F;
  width: auto;
  font-size: 100px;
  font-weight: 700;
  line-height: 120px;
  letter-spacing: 13px;
  background-color: #F45F5F;
  padding-left: 18px;
  margin-left: 273px;
  margin-top: 10px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  z-index: 100;
}

.message__inner.en::first-letter {
  color: #fcfcfc;
}

.message__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: -68px;
}

.message__content__img {
  width: auto;
  margin-left: 15px;
  position: relative;
}

.message__content__img img {
  width: 100%;
  height: auto;
}

.message__content__img::before {
  display: block;
  content: "";
  width: 713px;
  width: 100%;
  max-width: 713px;
  height: 100%;
  max-height: 445px;
  background-color: #cecdcd;
  border-top-right-radius: 100px;
  position: absolute;
  z-index: -1;
  -webkit-transform: rotateZ(-4deg) translateX(-15px);
          transform: rotateZ(-4deg) translateX(-15px);
}

.message__content.text {
  width: 275px;
  min-width: 275px;
  margin-left: 3%;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  -webkit-transform: translateY(76px);
          transform: translateY(76px);
}

/* business */

.business {
  width: 100%;
  background-image: url("../img/bg-line-right.svg"), url("../img/bg-line-left.svg");
  background-repeat: no-repeat, no-repeat;
  background-size: 100%, 100%;
  background-position: center 155px, center 1000px;
  padding: 130px 0 195px;
  position: relative;
  /* SP対応 */
  /* SP対応ここまで */
}

.business::before {
  display: block;
  content: "";
  width: 100%;
  height: 98%;
  background-color: #f4f4f4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.business__wrapper {
  max-width: 1027px;
  margin: 0 auto 0;
  width: 100%;
}

.business__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.business__inner.title {
  width: auto;
  font-size: 23px;
  font-weight: 700;
  line-height: 24px;
  margin-left: 545px;
  position: relative;
  margin-bottom: 14px;
}

.business__inner.title::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #F45F5F;
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-65%);
          transform: translateY(-65%);
}

.business__inner.en {
  display: inline-block;
  color: #F45F5F;
  width: auto;
  font-size: 100px;
  font-weight: 700;
  line-height: 126px;
  letter-spacing: 13px;
  background-color: #F45F5F;
  padding-left: 33px;
  margin-left: 0px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  z-index: 100;
}

.business__inner.en::first-letter {
  color: #fcfcfc;
}

.business__content {
  width: 100%;
  max-width: 1026px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 80px;
}

.business__content__img {
  padding: 0 1%;
}

.business__content__inner {
  width: 50%;
  padding: 0 1%;
}

.business__content__inner.title {
  width: auto;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  margin-left: 20px;
  position: relative;
}

.business__content__inner.title::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #F45F5F;
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-65%);
          transform: translateY(-65%);
}

.business__content__inner.text {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  margin-top: 40px;
}

.business__content:nth-of-type(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/* pickup */

.pickup {
  width: 100%;
  padding: 20px 0;
  max-width: 1226px;
  margin: 45px auto 0;
  position: relative;
  /* SP対応 */
  /* ここまでSP対応 */
}

.pickup__wrapper {
  width: 100%;
  max-width: 1026px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 80px;
  margin: 0 auto;
}

.pickup__line {
  display: inline-block;
  width: 200px;
  height: 1px;
  background-color: #F45F5F;
  position: absolute;
  top: 0;
  right: 0;
}

.pickup__line::after {
  display: inline-block;
  content: "";
  width: 300px;
  height: 1px;
  background-color: #F45F5F;
  position: absolute;
  top: 20px;
  right: 0;
}

.pickup__line:nth-of-type(2) {
  top: unset;
  right: unset;
  bottom: 10px;
  left: 0;
}

.pickup__line:nth-of-type(2)::after {
  top: unset;
  right: unset;
  bottom: 20px;
  left: 0;
}

.pickup__inner {
  height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-top: 10px;
}

.pickup__inner.title {
  width: auto;
  height: auto;
  font-size: 16px;
  font-weight: 700;
  line-height: 15px;
  margin-left: 20px;
  margin-top: -60px;
  margin-right: 1.625rem;
  letter-spacing: 0.5rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -ms-flex-item-align: end;
      align-self: end;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  position: relative;
}

.pickup__inner.title::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #F45F5F;
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.pickup__inner.en {
  display: inline-block;
  color: #F45F5F;
  width: auto;
  font-size: 100px;
  font-weight: 700;
  line-height: 120px;
  letter-spacing: 13px;
  background-color: #F45F5F;
  padding-left: 45px;
  margin-left: 0px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  white-space: nowrap;
  padding-top: 10px;
  z-index: 100;
  margin-left: 5px;
}

.pickup__inner.en::first-letter {
  color: #fcfcfc;
}

.pickup__content {
  width: 800px;
}

.pickup__content.movie {
  width: 100%;
  height: auto;
  aspect-ratio: 800/494;
}

.pickup__content::before {
  display: block;
  content: "";
  background: url(../img/img-logo.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 175px;
  height: 150px;
  position: absolute;
  z-index: 1000;
  bottom: 167px;
  right: 15px;
  -webkit-transform: rotateZ(-33deg);
          transform: rotateZ(-33deg);
}

.pickup .entry {
  margin: 67px auto 100px;
}

/* color */

.color {
  width: 100%;
  clear: both;
  margin-bottom: 165px;
  /* SP対応 */
  /* SP対応ここまで */
}

.color__inner {
  width: 100%;
  max-width: 1027px;
  margin: 0 auto;
  padding: 66px 0 0;
}

.color__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.color__inner.title {
  width: auto;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  margin: 25px 0 0 20px;
  padding: 0;
  position: relative;
}

.color__inner.title::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #F45F5F;
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-65%);
          transform: translateY(-65%);
}

.color__inner.en {
  display: inline-block;
  color: #F45F5F;
  width: auto;
  font-size: 100px;
  font-weight: 700;
  line-height: 130px;
  letter-spacing: 12px;
  border: 1px solid #F45F5F;
  padding: 0 0 0 45px;
  margin: 0px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  z-index: 100;
}

.color__content {
  max-width: 1027px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto 0;
  gap: 20px 80px;
  padding-top: 30px;
  height: 1790px;
  position: relative;
}

.color__content::before {
  display: block;
  content: "";
  background-color: #F45F5F;
  width: 1px;
  height: 1716px;
  position: absolute;
  top: 0;
  left: 50%;
}

.color__content__item {
  width: 100%;
}

.color__content__item:nth-of-type(1) {
  grid-row: 1/span 2;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.color__content__item:nth-of-type(2) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.color__content__item:nth-of-type(3) {
  grid-row: 3/span 3;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  -webkit-transform: translateY(-360px);
          transform: translateY(-360px);
}

.color__content__item:nth-of-type(4) {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
  margin-top: -10px;
}

.color__content__item:nth-of-type(5) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-top: -12px;
}

.color__content__item:nth-of-type(6) {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
  margin-top: -130px;
}

.color__content__item__img {
  width: 100%;
  display: block;
}

.color__content__item__img img {
  width: 100%;
  height: auto;
}

.color__content__item-title {
  width: auto;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  margin-left: 20px;
  position: relative;
  margin-bottom: 40px;
  margin-top: 60px;
}

.color__content__item-title::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #F45F5F;
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-65%);
          transform: translateY(-65%);
}

.color__content__item-text {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  margin-top: 40px;
  padding-bottom: 3.75rem;
  position: relative;
}

.color__content__item-text::before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #F45F5F;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.color__content__item-small {
  font-size: 16px;
  font-weight: 700;
}

.color .clear::before {
  display: none;
}

.color .entry {
  margin: 0 auto;
}

/* jobinfo */

.jobinfo {
  width: 100%;
  background-image: url("../img/bg-line-right.svg"), url("../img/bg-line-left.svg");
  background-repeat: no-repeat, no-repeat;
  background-size: 100%, 100%;
  background-position: center 150px, center 1280px;
  margin: 0px auto 0px;
  padding: 175px 0 360px;
  position: relative;
  /* SP対応 */
  /* SP対応ここまで */
}

.jobinfo::before {
  display: block;
  content: "";
  width: 60%;
  height: 1075px;
  background-color: #f4f4f4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.jobinfo__wrapper {
  width: 100%;
  max-width: 1026px;
  margin: 0 auto;
}

.jobinfo__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.jobinfo__inner.title {
  width: auto;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  width: 36%;
  display: block;
  position: relative;
}

.jobinfo__inner.title::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #F45F5F;
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-65%);
          transform: translateY(-65%);
}

.jobinfo__inner.en {
  display: inline-block;
  color: #F45F5F;
  width: auto;
  font-size: 100px;
  font-weight: 700;
  line-height: 120px;
  letter-spacing: 13px;
  background-color: #F45F5F;
  padding-left: 27px;
  margin-left: 0px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  white-space: nowrap;
  z-index: 100;
  position: relative;
}

.jobinfo__inner.en::first-letter {
  color: #fcfcfc;
}

.jobinfo__inner.en::before {
  display: block;
  content: "o";
  color: #fcfcfc;
  position: absolute;
  left: 91px;
}

.jobinfo__content {
  width: 100%;
  max-width: 866px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr 3fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.jobinfo__content::before {
  display: block;
  content: "";
  background: url(../img/img-logo.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 175px;
  height: 145px;
  position: absolute;
  z-index: 1000;
  bottom: 303px;
  right: 67px;
}

.jobinfo__content-title,
.jobinfo__content-text {
  min-height: 80px;
  border-bottom: 2px dashed #F45F5F;
  padding-left: 40px;
  margin: 20px 0 20px;
  line-height: 28px;
  font-size: 16px;
}

.jobinfo__content-text {
  border-bottom: 2px dashed #cecdcd;
  padding-left: 20px;
}

.jobinfo__content-title:nth-of-type(2),
.jobinfo__content-text:nth-of-type(2) {
  min-height: 120px;
}

.jobinfo .entry {
  margin: 80px auto 0;
}

/* seniorvoive */

.seniorvoice {
  margin-top: -130px;
  /* ここからSP */
  /* SPここまで */
}

.seniorvoice__wrapper-slider {
  display: none;
  overflow: hidden;
}

.seniorvoice__wrapper {
  width: 100%;
  background-color: #f4f4f4;
  position: relative;
  height: 745px;
  z-index: -1;
  margin-top: -140px;
  padding-top: 140px;
}

.seniorvoice__inner {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 0;
}

.seniorvoice__inner .rotate {
  display: inline-block;
  -webkit-transform: rotateZ(-6deg);
          transform: rotateZ(-6deg);
}

.seniorvoice__inner-title {
  width: 380px;
  height: 130px;
  border: 1px solid #333;
  background-color: #fcfcfc;
  font-size: 40px;
  line-height: 140px;
  text-align: center;
  color: #F45F5F;
  font-family: "Potta One", cursive;
  position: relative;
  left: 11.25rem;
  top: -37px;
}

.seniorvoice__inner-title::before {
  content: "";
  display: block;
  width: 105px;
  height: 105px;
  background-image: url("../img/img-seniorvoice-clip.webp");
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-65px) rotateZ(6deg);
          transform: translateY(-65px) rotateZ(6deg);
}

.no-webp .seniorvoice__inner-title::before {
  background-image: url("../img/img-seniorvoice-clip.png");
}

.seniorvoice__inner-title::after {
  content: "";
  display: block;
  width: 380px;
  height: 130px;
  background-color: #F45F5F;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-11px, 13px);
          transform: translate(-11px, 13px);
  z-index: -1;
}

.seniorvoice__inner-en {
  font-size: 7.5rem;
  font-weight: 700;
  color: #fcfcfc;
  letter-spacing: 17px;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  white-space: nowrap;
  z-index: -1;
  position: absolute;
  right: 0;
  top: 0;
}

.seniorvoice__cards__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.seniorvoice__cards {
  height: 521px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  margin: 20px 0 0;
  padding-left: 30px;
}

.seniorvoice__cards.loop-left {
  -webkit-animation: slide-left 30s linear infinite;
          animation: slide-left 30s linear infinite;
}

.seniorvoice__card {
  width: 220px;
  height: 220px;
  background-color: #fcfcfc;
  border-radius: 10px;
  position: relative;
}

.seniorvoice__card:nth-of-type(2n),
.seniorvoice__card__card.circle {
  margin-top: 220px;
  margin-left: 30px;
}

.seniorvoice__card:nth-of-type(2n) .seniorvoice__card-text,
.seniorvoice__card__card.circle .seniorvoice__card-text {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  padding: 50px 25px;
  bottom: -80px;
  left: -110px;
}

.seniorvoice__card:nth-of-type(2n) .seniorvoice__card-text::before,
.seniorvoice__card__card.circle .seniorvoice__card-text::before {
  top: -5px;
  left: unset;
  right: 25px;
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
}

.seniorvoice__card-text {
  background-color: #cecdcd;
  width: 210px;
  height: 77px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 16px;
  position: absolute;
  bottom: -60px;
  left: 30px;
}

.seniorvoice__card-text::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 9px 20px 9px;
  border-color: transparent transparent #cecdcd transparent;
  position: absolute;
  top: -18px;
  left: 10px;
}

.seniorvoice__card-img {
  width: auto;
  height: auto;
}

.seniorvoice__card-img img {
  width: 100%;
  height: auto;
}

.seniorvoice .entry {
  margin: 90px auto 0;
}

@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes slide-left {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

/* flow */

.flow {
  width: 100%;
  background-image: url("../img/bg-line-right.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center 350px;
  /* SP対応 */
  /* ここまでSP対応 */
}

.flow__wrapper {
  width: 100%;
  max-width: 1095px;
  margin: 0 auto;
  padding: 200px 0 77px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}

.flow__wrapper::before {
  display: block;
  content: "";
  background-image: url("../img/img-flow-irasuto-PC.webp");
  background-size: 317px 242px;
  background-repeat: no-repeat;
  width: 317px;
  height: 241px;
  position: absolute;
  bottom: 77px;
  right: 0;
}

.no-webp .flow__wrapper::before {
  background-image: url("../img/img-flow-irasuto-PC.png");
}

.flow__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-left: 40px;
}

.flow__inner-title {
  display: inline-block;
  width: auto;
  height: auto;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-left: 15px;
  margin-top: -60px;
  letter-spacing: 0.5rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -ms-flex-item-align: end;
      align-self: end;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  position: relative;
  -webkit-transform: translateY(205px);
          transform: translateY(205px);
}

.flow__inner-title::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #F45F5F;
  position: absolute;
  top: -23px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.flow__inner-en {
  display: inline-block;
  color: #F45F5F;
  width: auto;
  font-size: 100px;
  font-weight: 700;
  line-height: 144px;
  letter-spacing: 18px;
  background-color: #F45F5F;
  padding-left: 55px;
  margin-left: 0px;
  margin-top: -5px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  white-space: nowrap;
  padding-top: 0px;
  z-index: 100;
}

.flow__inner-en::first-letter {
  color: #fcfcfc;
}

.flow__inner-en-secondletter {
  color: inherit;
}

.flow__lists {
  counter-reset: list;
  width: 620px;
  position: relative;
  margin-left: 210px;
}

.flow__lists::before {
  display: block;
  content: "";
  width: 2px;
  height: 100%;
  background-color: #F45F5F;
  position: absolute;
  top: 0;
  left: -160px;
}

.flow__list {
  position: relative;
  height: 100px;
  margin-bottom: 81px;
}

.flow__list::before {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: #F45F5F;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  border: 1px solid #F45F5F;
  background-color: #fcfcfc;
  counter-increment: list;
  content: "0" counter(list);
  position: absolute;
  top: 50%;
  left: -207px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.flow__list::after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-color: #fcfcfc;
  position: absolute;
  top: 70px;
  left: -130px;
}

.flow__list-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flow__list-title::after {
  display: block;
  content: "";
  width: 32px;
  height: 1px;
  background-color: #08253E;
  margin-left: 15px;
}

.flow__list-text {
  font-size: 16px;
  font-weight: 400;
}

/* faq */

.faq {
  background-color: #f4f4f4;
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  /* SP対応 */
  /* ここまでSP対応 */
}

.faq__wrapper {
  padding: 85px 0 160px;
  margin: 0 auto;
  width: 100%;
  max-width: 1026px;
}

.faq__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.faq__inner-title {
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  margin: 30px 0 0 20px;
  padding: 0;
  position: relative;
}

.faq__inner-title::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #F45F5F;
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-65%);
          transform: translateY(-65%);
}

.faq__inner-en {
  display: inline-block;
  color: #F45F5F;
  width: auto;
  font-size: 100px;
  font-weight: 700;
  line-height: 144px;
  letter-spacing: 10px;
  border: 1px solid #F45F5F;
  padding: 0 0 0 45px;
  margin: 0px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  z-index: 100;
}

.faq__content__wrapper {
  margin-top: 90px;
}

.faq__content-title {
  font-size: 16px;
  font-weight: 400;
  padding: 10px 10px 10px 40px;
  margin-top: 50px;
  position: relative;
  border-bottom: 2px dashed #cecdcd;
}

.faq__content-title:hover {
  cursor: pointer;
}

.faq__content-title::before {
  display: block;
  content: "Q,";
  color: #F45F5F;
  font-size: 24px;
  font-weight: 700;
  padding-right: 15px;
  position: absolute;
  top: 0px;
  left: 0px;
}

.faq__content-text {
  font-size: 16px;
  font-weight: 400;
  padding: 10px 10px 10px 40px;
  margin-left: 40px;
  margin-top: 40px;
  position: relative;
  border-bottom: 2px dashed #cecdcd;
}

.faq__content-text::before {
  display: block;
  content: "A,";
  color: #F45F5F;
  font-size: 24px;
  font-weight: 700;
  padding-right: 15px;
  position: absolute;
  top: 0px;
  left: 0px;
}

.faq__content-text a {
  text-decoration: underline;
}

.faq__content .accordion__content {
  display: none;
}

.faq__content .is-active {
  display: block;
}

/* company */

.company {
  width: 100%;
  background-image: url("../img/bg-line-right.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center 250px;
  margin: 0px auto 0px;
  padding: 160px 0 150px;
  /* SP対応 */
  /* SP対応 */
  position: relative;
}

.company__wrapper {
  width: 100%;
  max-width: 1026px;
  margin: 0 auto;
  position: relative;
}

.company__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.company__inner-title {
  width: auto;
  font-size: 23px;
  font-weight: 700;
  line-height: 24px;
  width: 34%;
  display: block;
  margin-top: 20px;
  -webkit-transform: translateX(-15px);
          transform: translateX(-15px);
  position: relative;
}

.company__inner-title::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #F45F5F;
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-65%);
          transform: translateY(-65%);
}

.company__inner-en {
  display: inline-block;
  color: #F45F5F;
  width: auto;
  font-size: 100px;
  font-weight: 700;
  line-height: 120px;
  letter-spacing: 11px;
  background-color: #F45F5F;
  padding-left: 40px;
  margin-left: 0px;
  margin-top: 10px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  white-space: nowrap;
  z-index: 100;
  background-position: 0px 10px;
  position: relative;
}

.company__inner-en::first-letter {
  color: #fcfcfc;
}

.company__content {
  width: 100%;
  max-width: 866px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr 3fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.company__content-title,
.company__content-text {
  min-height: 60px;
  border-bottom: 2px dashed #F45F5F;
  padding-left: 40px;
  margin: 23px 0;
  line-height: 28px;
  font-size: 16px;
}

.company__content-title:nth-of-type(2),
.company__content-title:nth-of-type(8),
.company__content-text:nth-of-type(2),
.company__content-text:nth-of-type(8) {
  min-height: 120px;
}

.company__content-text {
  border-bottom: 2px dashed #cecdcd;
  padding-left: 20px;
}

/* entryform */

.entryform {
  width: 100%;
  /* ドット基本 */
  background-color: #f4f4f4;
  background-image: radial-gradient(#F45F5F 2px, transparent 2px);
  background-size: 40px 40px;
  padding: 160px 0 170px;
  position: relative;
  z-index: 101;
  position: relative;
  /* SP対応 */
  /* SP対応ここまで */
}

.entryform__wrapper {
  width: 100%;
  max-width: 1026px;
  background-color: #fcfcfc;
  margin: 0 auto;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
  padding-bottom: 1px;
  z-index: 0;
}

.entryform__wrapper::before {
  display: block;
  content: "";
  background: url(../img/img-logo.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 175px;
  height: 145px;
  position: absolute;
  z-index: 0;
  bottom: 130px;
  right: 70px;
  -webkit-transform: rotateZ(0deg);
          transform: rotateZ(0deg);
}

.entryform__wrapper .entry {
  margin: 0 auto 160px;
  position: relative;
}

.entryform__wrapper .entry :disabled {
  cursor: pointer;
}

.entryform__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  padding-top: 165px;
  padding-left: 80px;
}

.entryform__inner-title {
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  margin: 20px 0 0 20px;
  padding: 0;
  position: relative;
}

.entryform__inner-title::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #F45F5F;
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-65%);
          transform: translateY(-65%);
}

.entryform__inner-en {
  display: inline-block;
  color: #F45F5F;
  width: auto;
  font-size: 100px;
  font-weight: 700;
  line-height: 120px;
  letter-spacing: 13px;
  border: 1px solid #F45F5F;
  padding: 0 0 0 40px;
  margin: 0px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  z-index: 0;
}

.entryform__form {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding-top: 80px;
}

.entryform__form__wrapper {
  margin-bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.entryform__form__wrapper-label {
  width: 200px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.entryform__form__wrapper-required {
  font-size: 13px;
  font-weight: 400;
  color: #F45F5F;
  margin-left: 20px;
}

.entryform__form__wrapper-text {
  text-align: center;
  margin-bottom: 40px;
  font-size: 16px;
}

.entryform__form__wrapper-policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
}

.entryform__form__wrapper-policy input {
  margin-top: 1px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.entryform__form__wrapper-policy label {
  padding-left: 10px;
}

.entryform__form__wrapper-privacypolicy {
  position: relative;
  cursor: pointer;
}

.entryform__form__wrapper-privacypolicy::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #333;
  position: absolute;
  bottom: -1px;
  left: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.entryform__form__wrapper-privacypolicy:hover::before {
  background-color: #F45F5F;
}

.entryform__form__wrapper:nth-of-type(7) {
  margin-bottom: 90px;
}

.entryform__form__wrapper:nth-of-type(7) .entryform__form__wrapper-label {
  -ms-flex-item-align: center;
      align-self: center;
  margin-top: 0;
}

.entryform__form__wrapper:nth-of-type(8) {
  display: block;
  margin-bottom: 90px;
}

.entryform__form__inner {
  width: 100%;
  max-width: calc(100% - 200px);
}

.entryform__form__inner-input {
  width: 100%;
  height: 40px;
  border: 1px solid #333;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 8px;
  line-height: 1.4;
  font-size: 1rem;
}

.entryform__form__inner-input.other {
  max-width: 200px;
}

.entryform__form__inner-input.textarea1 {
  height: 120px;
}

.entryform__form__inner-input.textarea2 {
  height: 240px;
  margin-bottom: 0;
}

.entryform__form__inner-example {
  font-size: 13px;
  font-weight: 400;
  color: #9b9b9b;
  margin-bottom: 20px;
}

.entryform__form__inner-note {
  font-size: 13px;
  font-weight: 400;
  color: #F45F5F;
  display: none;
}

.entryform__policy {
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: fixed;
  top: 0;
  left: 0;
}

.entryform__policy.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.entryform__policy-bg {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}

.entryform__policy__inner {
  background-color: #fcfcfc;
  padding: 40px;
  width: 100%;
  max-width: 1094px;
  height: 70vh;
  overflow: scroll;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.entryform__policy__inner-text {
  line-height: 1.4;
  font-size: 16px;
}

.entryform__policy__inner::-webkit-scrollbar {
  display: none;
}

.entryform__policy__inner .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
  background-color: #F45F5F;
  width: 20px;
  border-radius: 10px;
  margin-left: -3px;
}

.entryform__policy__inner .simplebar-track.simplebar-vertical {
  background-color: #D9D9D9;
  width: 20px;
}

.footer {
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#cecdcd), color-stop(50%, #cecdcd), color-stop(50%, #F45F5F), to(#F45F5F));
  background: linear-gradient(90deg, #cecdcd 0%, #cecdcd 50%, #F45F5F 50%, #F45F5F 100%);
  position: relative;
  z-index: 0;
  /* SP対応 */
  /* SP対応ここまで */
}

.footer__inner {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: 1366px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}

.footer__inner-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 505px;
  height: 100%;
  height: 367px;
  background-color: #cecdcd;
  background-image: url("../img/bg-footer-PC.webp");
  background-size: cover;
  background-repeat: no-repeat;
}

.no-webp .footer__inner-address {
  background-image: url("../img/bg-footer-PC.png");
}

.footer__inner-address p {
  margin-left: 10.625rem;
}

.footer__inner-address p.address-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 80px;
}

.footer__inner-address p.address-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 14px;
}

.footer__inner-address p.address-tel {
  font-size: 16px;
  font-weight: 400;
}

.footer__inner-entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 861px;
  height: 367px;
  background-color: #F45F5F;
  background-image: url("../img/bg-footer-PC.webp");
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
  padding-left: 100px;
  position: relative;
  z-index: 0;
}

.no-webp .footer__inner-entry {
  background-image: url("../img/bg-footer-PC.png");
}

.footer__inner-entry .entry {
  background-color: #cecdcd;
}

.footer__inner-entry .entry-btn {
  background-color: #fcfcfc;
  color: #F45F5F;
  padding-left: 30px;
  letter-spacing: 0.1em;
}

.footer__inner-entry .entry-btn::after {
  background-blend-mode: multiply;
  background-color: #F45F5F;
  -webkit-mask-image: url(../img/img-arrow.webp);
          mask-image: url(../img/img-arrow.webp);
  -webkit-mask-position: 0px 0px;
          mask-position: 0px 0px;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-left: 30px;
}

.footer__totop-btn {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(../img/img-scroll.svg);
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
  position: absolute;
  top: 0;
  right: 155px;
}

.thanx {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.thanx__inner {
  width: 100%;
  max-width: 1026px;
  height: 100%;
  max-height: 372px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-width: 1px 0 1px;
  border-color: #333;
  border-style: solid;
}

.thanx__inner-text {
  font-weight: 400;
  line-height: 1.75rem;
  margin-top: 80px;
}

.thanx__inner__img {
  margin: 64px auto;
}

.thanx__inner__img img {
  width: 72px;
  height: 63px;
}

@media screen and (min-width: 769px) {
  body.is-active {
    overflow: scroll;
  }
}

@media screen and (max-width: 1366px) {
  html {
    font-size: 1.1713030747vw;
  }
}

@media screen and (max-width: 1054px) {
  .flow__wrapper::before {
    background-size: 220px;
    bottom: -80px;
    right: -70px;
  }

  .flow__lists::before {
    left: -100px;
  }

  .flow__list::before {
    left: -148px;
  }

  .flow__list::after {
    left: -70px;
  }
}

@media screen and (max-width: 1024px) {
  .footer__inner-address p {
    margin-left: 3vw;
  }
}

@media screen and (max-width: 960px) {
  .message__inner.en {
    margin-left: 5vw;
    font-size: 90px;
    width: 127px;
    height: 127px;
    letter-spacing: 8px;
  }

  .business__inner.title {
    margin-left: 490px;
  }

  .jobinfo__inner.title {
    width: 20%;
  }
}

@media screen and (max-width: 891px) {
  .company__inner-title {
    width: 5em;
  }
}

@media screen and (max-width: 860px) {
  .color__content__item:nth-of-type(6) {
    margin-top: -60px;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 4.2666666667vw;
  }

  .entry {
    width: 240px;
    height: 70px;
    -webkit-transform: translate(5px, 0px);
            transform: translate(5px, 0px);
  }

  .entry-btn {
    width: 240px;
    height: 70px;
    font-size: 16px;
    line-height: 70px;
    letter-spacing: normal;
    padding-left: 20px;
  }

  .entry-btn:hover {
    -webkit-transform: translate(12px, -12px);
            transform: translate(12px, -12px);
  }

  .entry-btn::before {
    width: 240px;
    height: 70px;
  }

  .entry-btn::after {
    margin-left: 10px;
    width: 16px;
    height: 14px;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    background-color: #fcfcfc;
  }

  .header__inner {
    width: 100%;
    height: 80px;
    margin: 0 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }

  .header__inner-logo {
    display: inline-block;
    width: 89px;
    height: 75px;
    background: url("../img/img-logo.svg") no-repeat center center/cover;
    -webkit-transform: rotateZ(-12deg) translateX(-6px);
            transform: rotateZ(-12deg) translateX(-6px);
  }

  .header__inner__btn {
    z-index: 3000;
    width: 58px;
    height: 58px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    padding-left: 15px;
    position: absolute;
    top: 3px;
    right: 10px;
  }

  .header__inner__btn.is-active {
    -webkit-transform: rotateZ(90deg);
            transform: rotateZ(90deg);
  }

  .header__inner__btn.is-active .header__inner__btn-line {
    -webkit-transform: translate(8px, -15px) rotateZ(-112deg);
            transform: translate(8px, -15px) rotateZ(-112deg);
    background-color: #fcfcfc;
    -webkit-transition: background 0.5s, -webkit-transform 0.3s;
    transition: background 0.5s, -webkit-transform 0.3s;
    transition: transform 0.3s, background 0.5s;
    transition: transform 0.3s, background 0.5s, -webkit-transform 0.3s;
  }

  .header__inner__btn.is-active .header__inner__btn-line::before {
    -webkit-transform: rotateZ(45deg);
            transform: rotateZ(45deg);
    background-color: #fcfcfc;
    -webkit-transition: background 0.5s, -webkit-transform 0.3s;
    transition: background 0.5s, -webkit-transform 0.3s;
    transition: transform 0.3s, background 0.5s;
    transition: transform 0.3s, background 0.5s, -webkit-transform 0.3s;
  }

  .header__inner__btn.is-active .header__inner__btn-dot {
    -webkit-transform: translate(20px, -26px);
            transform: translate(20px, -26px);
    background-color: #fcfcfc;
    -webkit-transition: background 0.5s, -webkit-transform 0.3s;
    transition: background 0.5s, -webkit-transform 0.3s;
    transition: transform 0.3s, background 0.5s;
    transition: transform 0.3s, background 0.5s, -webkit-transform 0.3s;
  }

  .header__inner__btn.is-active .header__inner__btn-dot::before {
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
    background-color: #fcfcfc;
    -webkit-transition: background 0.5s, -webkit-transform 0.3s;
    transition: background 0.5s, -webkit-transform 0.3s;
    transition: transform 0.3s, background 0.5s;
    transition: transform 0.3s, background 0.5s, -webkit-transform 0.3s;
  }

  .header__inner__btn-dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #F45F5F;
    -webkit-transition: background 0.5s, -webkit-transform 0.3s;
    transition: background 0.5s, -webkit-transform 0.3s;
    transition: transform 0.3s, background 0.5s;
    transition: transform 0.3s, background 0.5s, -webkit-transform 0.3s;
  }

  .header__inner__btn-dot::before {
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #F45F5F;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
    -webkit-transition: background 0.5s, -webkit-transform 0.3s;
    transition: background 0.5s, -webkit-transform 0.3s;
    transition: transform 0.3s, background 0.5s;
    transition: transform 0.3s, background 0.5s, -webkit-transform 0.3s;
  }

  .header__inner__btn-line {
    display: block;
    width: 42px;
    height: 4px;
    background-color: #F45F5F;
    -webkit-transition: background 0.5s, -webkit-transform 0.3s;
    transition: background 0.5s, -webkit-transform 0.3s;
    transition: transform 0.3s, background 0.5s;
    transition: transform 0.3s, background 0.5s, -webkit-transform 0.3s;
  }

  .header__inner__btn-line::before {
    display: block;
    content: "";
    width: 42px;
    height: 4px;
    background-color: #F45F5F;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
    -webkit-transition: background 0.5s, -webkit-transform 0.3s;
    transition: background 0.5s, -webkit-transform 0.3s;
    transition: transform 0.3s, background 0.5s;
    transition: transform 0.3s, background 0.5s, -webkit-transform 0.3s;
  }

  .header .entry {
    display: none;
  }

  .header__nav {
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    overflow: scroll;
    padding-bottom: 50px;
  }

  .container {
    margin: 0;
  }

  .fv {
    margin-top: 100px;
  }

  .fv__inner {
    width: 100%;
  }

  .fv .slider {
    height: 585px;
    padding-left: 0;
  }

  .fv__copyright {
    position: absolute;
    top: 474px;
    left: -58px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .fv__copyright__wrapper {
    width: 100%;
    height: 100%;
    top: 470px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    margin-left: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  .fv__copyright__wrapper-pagination {
    position: absolute;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    left: 50%;
    bottom: -24px;
    -webkit-transform: rotate(0deg) translateX(-50%);
            transform: rotate(0deg) translateX(-50%);
  }

  .fv__scroll {
    width: 25px;
    height: 25px;
    z-index: 1;
    position: absolute;
    top: 574px;
    left: -40px;
    margin-left: 45px;
  }

  .fv__scroll::before {
    width: 25px;
    height: 25px;
  }

  .fv__catch {
    font-size: min(100px, 6.25rem);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .fv__catch .text {
    position: static;
    line-height: 150px;
  }

  .fv .text:nth-of-type(1) {
    width: auto;
  }

  .fv .text:nth-of-type(1)::before {
    display: none;
  }

  .fv .text:nth-of-type(2) {
    width: auto;
  }

  .fv .text:nth-of-type(3) {
    width: auto;
    letter-spacing: 0.17em;
  }

  .swiper {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }

  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }

  .message {
    padding: 93px 16px 15px;
  }

  .message__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .message__inner.title {
    margin-left: 20px;
    margin-top: 20px;
    font-size: 18px;
  }

  .message__inner.en {
    margin-left: 0;
    font-size: 60px;
    letter-spacing: 0.1em;
    width: 84px;
    height: 84px;
    line-height: 87px;
  }

  .message__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 120px;
  }

  .message__content .text {
    width: 100%;
    font-size: 16px;
    line-height: 29px;
    margin-top: 40px;
    letter-spacing: 0.01em;
  }

  .message__content__img img {
    max-width: 88.2666666667vw;
    height: auto;
  }

  .message__content__img::before {
    width: 88.2666666667vw;
    height: 54.6666666667vw;
    -webkit-transform: rotateZ(-4deg) translateX(-4px);
            transform: rotateZ(-4deg) translateX(-4px);
  }

  .business {
    padding: 100px 16px 37px;
    margin-top: -10px;
    background-image: url(../img/bg-line-right-SP.svg), url(../img/bg-line-left-SP.svg);
    background-position: center 120px, center 1410px;
  }

  .business__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .business__inner.title {
    margin-left: 20px;
    margin-top: 20px;
    font-size: 18px;
  }

  .business__inner.en {
    margin-left: 0;
    font-size: 65px;
    letter-spacing: 0.07em;
    width: 84px;
    height: 84px;
    line-height: 86px;
    padding-left: 23px;
  }

  .business__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    position: relative;
    margin-top: 35px;
  }

  .business__content__inner {
    width: 100%;
  }

  .business__content__inner .title {
    margin-bottom: clamp(331px, 80vw, 590px);
  }

  .business__content__img {
    position: absolute;
    top: 4.375rem;
    top: min(70px, 4.375rem);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .business__content .text {
    width: 100%;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.04em;
    margin-bottom: 56px;
  }

  .business__content__img {
    margin: 0 auto;
  }

  .business__content__img img {
    max-width: 90.9333333333vw;
    width: auto;
    height: auto;
  }

  .business::before {
    height: 100%;
  }

  .pickup {
    padding: 20px 16px 60px;
    margin-top: -60px;
  }

  .pickup__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 40px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding-bottom: 60px;
    margin-top: 80px;
  }

  .pickup__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    height: auto;
  }

  .pickup__inner.title {
    margin-left: 20px;
    margin-top: 20px;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    letter-spacing: 0em;
    font-size: 18px;
  }

  .pickup__inner.title::before {
    top: 60%;
    left: -20px;
    -webkit-transform: translateY(-65%);
            transform: translateY(-65%);
  }

  .pickup__inner.en {
    margin-left: 0;
    font-size: 63px;
    letter-spacing: 0.09em;
    width: 84px;
    height: 84px;
    line-height: 72px;
    padding-left: 28px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }

  .pickup__line {
    width: 100px;
    top: 100px;
  }

  .pickup__line::after {
    width: 150px;
    top: 10px;
  }

  .pickup__line:nth-of-type(2)::after {
    bottom: 10px;
  }

  .pickup__content {
    margin-left: 0;
    padding-top: 25px;
    width: 91.4666666667vw;
    margin: 0 auto;
    max-width: 91.4666666667vw;
    height: auto;
  }

  .pickup__content .movie {
    aspect-ratio: 343/212;
  }

  .pickup__content::before {
    width: 65px;
    height: 65px;
    background-size: contain;
    bottom: -90px;
    right: 8px;
  }

  .pickup .entry {
    margin: 0 auto;
  }

  .color {
    padding: 30px 16px 90px;
    margin-top: 30px;
    background-position: center 120px, center 1520px;
    margin-bottom: 5px;
  }

  .color__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .color__inner.title {
    margin-left: 20px;
    margin-top: 20px;
    font-size: 18px;
  }

  .color__inner.en {
    margin-left: 0;
    font-size: 60px;
    letter-spacing: 0.09em;
    padding: 0 0 0 25px;
    width: 84px;
    height: 84px;
    line-height: 87px;
  }

  .color__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    position: relative;
    grid-template-columns: 1fr;
    height: auto;
    display: block;
    margin-top: -45px;
  }

  .color__content::before {
    display: none;
  }

  .color__content__item img {
    max-width: 91.4666666667vw;
  }

  .color__content__item-title {
    margin-top: 60px;
    margin-bottom: 40px;
  }

  .color__content__item-text {
    font-size: 16px;
    padding-bottom: 72px;
    letter-spacing: 0;
  }

  .color__content__item-text::before {
    max-width: 91.4666666667vw;
  }

  .color__content__item:nth-of-type(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .color__content__item:nth-of-type(2) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .color__content__item:nth-of-type(3) {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .color__content__item:nth-of-type(4) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .color__content__item:nth-of-type(5) {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .color__content__item:nth-of-type(6) {
    margin-top: 0;
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .color__content__inner {
    width: 100%;
  }

  .color__content__inner .title {
    margin-bottom: 337px;
  }

  .color__content__img {
    position: absolute;
    top: 64px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .color__content .text {
    width: 100%;
    font-size: 20px;
    line-height: 28px;
  }

  .color__content__img {
    margin: 0 auto;
  }

  .color__content__img img {
    max-width: 88.2666666667vw;
    height: auto;
  }

  .color__content__img::before {
    width: 88.2666666667vw;
    height: 54.6666666667vw;
  }

  .color::before {
    height: 100%;
  }

  .color .entry {
    margin: 20px auto 0;
  }

  .jobinfo {
    padding: 95px 16px 140px;
    margin-top: -10px;
    background-image: url(../img/bg-line-right-SP.svg), url(../img/bg-line-left-SP.svg);
    background-position: center 280px, center 920px;
  }

  .jobinfo::before {
    width: 70.4vw;
    height: 745px;
  }

  .jobinfo__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .jobinfo__inner.title {
    margin-left: 20px;
    margin-top: 20px;
    font-size: 18px;
    width: 30%;
  }

  .jobinfo__inner.en {
    margin-left: 0;
    font-size: 60px;
    letter-spacing: 0.09em;
    width: 85px;
    height: 85px;
    line-height: 82px;
    padding-left: 22px;
  }

  .jobinfo__inner.en::before {
    left: 65px;
  }

  .jobinfo__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    position: relative;
    grid-template-columns: 21.3333333333vw 3fr;
    margin-top: 20px;
  }

  .jobinfo__content::before {
    width: 45.8666666667vw;
    height: 45.8666666667vw;
    background-size: contain;
    bottom: -114px;
    right: 0px;
  }

  .jobinfo__content__inner {
    width: 100%;
  }

  .jobinfo__content__img {
    position: absolute;
    top: 64px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .jobinfo__content-title {
    font-size: 13px;
    padding-left: 0;
  }

  .jobinfo__content-text {
    width: 100%;
    font-size: 13px;
    padding-left: 15px;
  }

  .jobinfo__content__img {
    margin: 0 auto;
  }

  .jobinfo__content__img img {
    max-width: 88.2666666667vw;
    height: auto;
  }

  .jobinfo__content__img::before {
    width: 88.2666666667vw;
    height: 54.6666666667vw;
  }

  .jobinfo__content-title,
  .jobinfo__content-text {
    min-height: 55px;
    line-height: 20px;
    margin-bottom: 5px;
  }

  .jobinfo__content-title:nth-of-type(2),
  .jobinfo__content-text:nth-of-type(2),
  .jobinfo__content-title:nth-of-type(8),
  .jobinfo__content-text:nth-of-type(8) {
    min-height: 80px;
  }

  .jobinfo .entry {
    margin-top: 60px;
  }

  .seniorvoice {
    position: relative;
    z-index: 1000;
    margin-top: -80px;
    padding-top: 135px;
  }

  .seniorvoice__wrapper {
    overflow-x: hidden;
    position: relative;
    height: 660px;
    margin-top: -75px;
    padding-top: 80px;
    overflow: hidden;
  }

  .seniorvoice__wrapper::before {
    display: block;
    content: "Senior Voice";
    font-weight: 700;
    color: #fcfcfc;
    font-size: 50px;
    white-space: nowrap;
    letter-spacing: 6px;
    position: absolute;
    bottom: 8px;
    left: 7px;
    z-index: 0;
    -webkit-transform: scaleY(-1);
            transform: scaleY(-1);
  }

  .seniorvoice__inner {
    display: block;
    position: relative;
    z-index: 1;
  }

  .seniorvoice__inner-title {
    width: 212px;
    height: 72px;
    top: -32px;
    left: 0;
    line-height: 72px;
    font-size: 22px;
    margin-left: 30px;
  }

  .seniorvoice__inner-title::before {
    width: 60px;
    height: 60px;
    -webkit-transform: translateY(-40px) rotateZ(6deg);
            transform: translateY(-40px) rotateZ(6deg);
  }

  .seniorvoice__inner-title::after {
    width: 212px;
    height: 72px;
    -webkit-transform: translate(-6px, 7px);
            transform: translate(-6px, 7px);
  }

  .seniorvoice__inner-en {
    font-size: 50px;
    white-space: nowrap;
    letter-spacing: 6px;
    position: absolute;
    top: 28px;
    right: 15px;
    z-index: -1;
  }

  .seniorvoice .entry {
    margin-top: 78px;
  }

  .flow {
    padding: 0px 16px 207px;
    background-image: none;
  }

  .flow__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 105px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding-bottom: 40px;
  }

  .flow__wrapper::before {
    bottom: -190px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-size: cover;
    background-repeat: no-repeat;
    width: min(346px, 92.2666666667vw);
    height: min(248px, 66.1333333333vw);
  }

  .flow__lists {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 70px;
    margin-top: 40px;
  }

  .flow__lists::before {
    left: -45px;
    width: 1px;
  }

  .flow__list {
    margin-bottom: 40px;
  }

  .flow__list-title {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 25px;
  }

  .flow__list::before {
    left: -68px;
    top: 0;
    width: 46px;
    height: 46px;
    line-height: 46px;
    font-size: 18px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  .flow__list::after {
    top: 30px;
    left: -30px;
  }

  .flow__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    height: auto;
    margin-left: 0;
  }

  .flow__inner-title {
    margin-left: 20px;
    margin-top: 20px;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    letter-spacing: 0em;
    font-size: 18px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  .flow__inner-title::before {
    top: 60%;
    left: -20px;
    -webkit-transform: translateY(-65%);
            transform: translateY(-65%);
  }

  .flow__inner-en {
    margin-left: 0;
    font-size: 60px;
    letter-spacing: 6px;
    width: 84px;
    height: 84px;
    line-height: 80px;
    padding-left: 23px;
    letter-spacing: 0.15em;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    position: relative;
  }

  .flow__inner-en-secondletter {
    color: #fcfcfc;
  }

  .flow__content {
    margin-left: 0;
    padding-top: 40px;
    width: 100%;
    max-width: 91.4666666667vw;
    height: 100%;
    max-height: 56.5333333333vw;
  }

  .flow__content::before {
    width: 65px;
    height: 65px;
    background-size: contain;
    bottom: -180px;
    right: 10px;
  }

  .flow .entry {
    margin: 0 auto;
  }

  .faq {
    padding: 0px 16px 35px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
  }

  .faq__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-top: 60px;
    padding-bottom: 20px;
    padding-top: 100px;
  }

  .faq__wrapper::before {
    bottom: -200px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .faq__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    height: auto;
  }

  .faq__inner-title {
    margin-left: 20px;
    margin-top: 23px;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    letter-spacing: 0em;
    font-size: 18px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  .faq__inner-title::before {
    top: 60%;
    left: -20px;
    -webkit-transform: translateY(-65%);
            transform: translateY(-65%);
  }

  .faq__inner-en {
    margin-left: 0;
    font-size: 60px;
    letter-spacing: 6px;
    width: 84px;
    height: 84px;
    line-height: 84px;
    padding-left: 30px;
    letter-spacing: 7px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    position: relative;
  }

  .faq__content {
    margin-left: 0;
    padding-top: 22px;
    width: 100%;
    max-width: 91.4666666667vw;
    height: 100%;
    max-height: 56.5333333333vw;
  }

  .faq__content__wrapper {
    margin-top: 10px;
  }

  .faq__content-title {
    margin-top: 0px;
    font-size: 13px;
    line-height: 24px;
  }

  .faq__content-title::before {
    font-size: 18px;
    top: 8px;
  }

  .faq__content-text {
    margin: 10px 0;
    font-size: 13px;
    line-height: 24px;
  }

  .faq__content-text::before {
    font-size: 18px;
    top: 8px;
  }

  .company {
    margin: 0 auto;
    margin-top: -20px;
    padding: 90px 16px 85px;
    background-image: url("../img/bg-line-right-SP.svg");
    background-position: center 310px;
  }

  .company::before {
    width: 70.4vw;
    height: 745px;
  }

  .company__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .company__inner-title {
    margin-left: 35px;
    margin-top: 20px;
    font-size: 18px;
  }

  .company__inner-en {
    margin-left: 0;
    font-size: 60px;
    letter-spacing: 0.09em;
    padding-left: 23px;
    width: 84px;
    height: 84px;
    line-height: 80px;
  }

  .company__inner-en::before {
    left: 65px;
  }

  .company__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    position: relative;
    grid-template-columns: 21.3333333333vw 3fr;
    margin-top: 20px;
  }

  .company__content::before {
    width: 147px;
    height: 128px;
    background-size: contain;
    bottom: -150px;
    right: 16px;
  }

  .company__content__inner {
    width: 100%;
  }

  .company__content__img {
    position: absolute;
    top: 64px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .company__content-title {
    font-size: 13px;
    padding-left: 0;
  }

  .company__content-text {
    width: 100%;
    font-size: 13px;
    padding-left: 15px;
  }

  .company__content__img {
    margin: 0 auto;
  }

  .company__content__img img {
    max-width: 88.2666666667vw;
    height: auto;
  }

  .company__content__img::before {
    width: 88.2666666667vw;
    height: 54.6666666667vw;
  }

  .company__content-title,
  .company__content-text {
    min-height: 40px;
    line-height: 17px;
    margin-bottom: 0;
  }

  .company__content-title:nth-of-type(2),
  .company__content-title:nth-of-type(8),
  .company__content-text:nth-of-type(2),
  .company__content-text:nth-of-type(8) {
    min-height: 70px;
  }

  .entryform {
    margin: 0 auto;
    padding: 80px 16px 86px;
    background-size: 20px 20px;
  }

  .entryform__wrapper {
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
  }

  .entryform__wrapper .entry {
    margin-bottom: 80px;
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }

  .entryform__wrapper::before {
    display: none;
  }

  .entryform__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding-top: 80px;
    padding-left: 15px;
  }

  .entryform__inner-title {
    margin-left: 20px;
    margin-top: 20px;
    font-size: 18px;
  }

  .entryform__inner-en {
    margin-left: 0;
    font-size: 60px;
    letter-spacing: 0.13em;
    padding-left: 25px;
    width: 84px;
    height: 84px;
    line-height: 78px;
  }

  .entryform__inner-en::before {
    left: 65px;
  }

  .entryform__form {
    max-width: 80.5333333333vw;
    padding-top: 45px;
  }

  .entryform__form__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }

  .entryform__form__wrapper-label {
    width: 100%;
    margin-top: 0;
    padding-bottom: 20px;
    font-size: 13px;
  }

  .entryform__form__wrapper-label br {
    display: none;
  }

  .entryform__form__wrapper:nth-of-type(7) {
    margin-bottom: 40px;
  }

  .entryform__form__wrapper:nth-of-type(7) .entryform__form__wrapper-label {
    -ms-flex-item-align: normal;
        align-self: normal;
  }

  .entryform__form__wrapper-text {
    font-size: 13px;
    -moz-text-align-last: left;
         text-align-last: left;
    margin-bottom: 30px;
    line-height: 19px;
  }

  .entryform__form__wrapper-policy {
    font-size: 13px;
    line-height: 16px;
  }

  .entryform__form__wrapper:nth-of-type(7) {
    margin-bottom: 37px;
  }

  .entryform__form__wrapper:nth-of-type(8) {
    margin-bottom: 80px;
  }

  .entryform__form__inner {
    max-width: none;
  }

  .entryform__form__inner-input {
    margin-bottom: 16px;
    font-size: 0.8125rem;
  }

  .entryform__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    position: relative;
    grid-template-columns: 21.3333333333vw 3fr;
    margin-top: 20px;
  }

  .entryform__content::before {
    width: 147px;
    height: 128px;
    background-size: contain;
    bottom: -150px;
    right: 16px;
  }

  .entryform__content__inner {
    width: 100%;
  }

  .entryform__content__img {
    position: absolute;
    top: 64px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .entryform__content-title {
    font-size: 13px;
    padding-left: 0;
  }

  .entryform__content-text {
    width: 100%;
    font-size: 13px;
    padding-left: 15px;
  }

  .entryform__policy__inner {
    height: 60vh;
  }

  .entryform .entry-btn {
    padding-left: 3px;
  }

  .entryform .entry-btn::after {
    margin-left: 30px;
  }

  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .footer__inner-address {
    width: 100%;
    height: 307px;
    background-image: url(../img/img-footer-bg1-SP.webp);
  }

  .no-webp .footer__inner-address {
    background-image: url(../img/img-footer-bg1-SP.png);
  }

  .footer__inner-address p {
    margin-left: 4.2666666667vw;
  }

  .footer__inner-address p.address-title {
    margin-bottom: 26px;
  }

  .footer__inner-address p.address-text {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .footer__inner-address p.address-tel {
    font-size: 13px;
  }

  .footer__inner-entry {
    width: 100%;
    padding-left: 0;
    height: 190px;
    background-image: url(../img/img-footer-bg2-SP.webp);
    background-size: contain;
  }

  .no-webp .footer__inner-entry {
    background-image: url(../img/img-footer-bg2-SP.png);
  }

  .footer__totop-btn {
    top: auto;
    bottom: 2px;
    right: 13px;
  }

  .footer .entry {
    width: 333px;
    width: 88.8vw;
    max-width: 333px;
    height: 100px;
    left: -5px;
    top: 5px;
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }

  .footer .entry .entry-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    font-size: 20px;
    width: 88.8vw;
    max-width: 333px;
    height: 100px;
    -webkit-transform: translate(10px, -10px);
            transform: translate(10px, -10px);
  }

  .thanx {
    padding: 0 16px;
  }
}

@media screen and (max-width: 768px) and (max-width: 375px) {
  .message__inner.en {
    letter-spacing: 1.6vw;
    margin-left: -10px;
  }

  .business__inner.en {
    letter-spacing: 0vw;
    margin-left: -10px;
  }

  .business__content__inner .title {
    margin-bottom: clamp(280px, 88.2666666667vw, 331px);
  }

  .pickup__inner.en {
    letter-spacing: 1.25vw;
    margin-left: -10px;
  }

  .color__inner.en {
    margin-left: -10px;
  }

  .jobinfo__inner.en {
    letter-spacing: 1.25vw;
    margin-left: -10px;
  }

  .seniorvoice__wrapper::before {
    letter-spacing: 0px;
  }

  .seniorvoice__inner-en {
    letter-spacing: 0px;
  }

  .flow__inner-en {
    margin-left: -10px;
  }

  .faq__inner-en {
    margin-left: -10px;
  }

  .company__inner-en {
    letter-spacing: 0vw;
    margin-left: -10px;
  }
}

@media screen and (max-width: 600px) {
  .seniorvoice {
    /* スライダー設定 */
    /* ここまでスライダー */
  }

  .seniorvoice__wrapper {
    height: 140.8vw;
  }

  .seniorvoice__cards__wrapper {
    display: none;
  }

  .seniorvoice__wrapper-slider {
    display: block;
    width: 76.5333333333vw;
    margin: 0 auto;
  }

  .seniorvoice__wrapper-slider .swiper-button-prev,
  .seniorvoice__wrapper-slider .swiper-button-next {
    width: 1.5rem;
    height: 1.5rem;
  }

  .seniorvoice__wrapper-slider .swiper-button-prev img,
  .seniorvoice__wrapper-slider .swiper-button-next img {
    width: 100%;
    height: 100%;
  }

  .seniorvoice__wrapper-slider .swiper-button-prev::after,
  .seniorvoice__wrapper-slider .swiper-button-next::after {
    display: none;
  }

  .seniorvoice__wrapper-slider .swiper-button-prev {
    top: 50%;
    -webkit-transform: translate(22%, 90%) rotateZ(90deg);
            transform: translate(22%, 90%) rotateZ(90deg);
  }

  .seniorvoice__wrapper-slider .swiper-button-next {
    top: 50%;
    -webkit-transform: translate(-22%, 90%) rotateZ(-90deg);
            transform: translate(-22%, 90%) rotateZ(-90deg);
  }

  .seniorvoice__cards__wrapper {
    overflow-x: hidden;
  }

  .seniorvoice__cards {
    padding-left: 0;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    margin: 10px 0 0;
    height: 130.6666666667vw;
    max-height: 1000px;
  }

  .seniorvoice__cards:nth-of-type(2),
  .seniorvoice__cards:nth-of-type(3) {
    display: none;
  }

  .seniorvoice__cards.loop-left {
    -webkit-animation: none;
            animation: none;
  }

  .seniorvoice__card {
    height: auto;
    background-color: inherit;
  }

  .seniorvoice__card picture {
    background-color: #fcfcfc;
    border-radius: 10px;
  }

  .seniorvoice__card {
    width: 76.5333333333vw;
  }

  .seniorvoice__card-img {
    display: inline-block;
    width: 100%;
    height: auto;
  }

  .seniorvoice__card-img img {
    width: 100%;
    height: auto;
  }

  .seniorvoice__card-swiper {
    width: 76.5333333333vw;
    height: 220px;
  }

  .seniorvoice__card-swiper-img {
    display: inline-block;
    width: 100%;
    height: auto;
    background-color: #fcfcfc;
    border-radius: 10px;
  }

  .seniorvoice__card-swiper-img img {
    width: 100%;
    height: auto;
  }

  .seniorvoice__card-swiper-text {
    background-color: #cecdcd;
    width: 100%;
    height: 3.75rem;
    border-radius: 5px;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    padding: 1rem;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .seniorvoice__card-swiper-text img {
    -o-object-fit: contain;
       object-fit: contain;
  }

  .seniorvoice__card-swiper-text::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 18px 40px 18px;
    border-color: transparent transparent #cecdcd transparent;
    position: absolute;
    z-index: -1;
    top: -20px;
    left: 90px;
  }

  .seniorvoice__card-swiper-circle .seniorvoice__card-swiper-text {
    width: 48vw;
    height: 48vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 50%;
    margin-top: -25px;
  }

  .seniorvoice__card-swiper-circle .seniorvoice__card-swiper-text::before {
    top: -1.8666666667vw;
    left: unset;
    right: 10.6666666667vw;
    -webkit-transform: rotateZ(39deg);
            transform: rotateZ(39deg);
  }

  .seniorvoice__card:nth-of-type(2n) .seniorvoice__card-circle {
    margin-top: 0px;
    margin-left: 0px;
    width: 76.5333333333vw;
  }

  .seniorvoice__card:nth-of-type(2n) .seniorvoice__card-circle.seniorvoice__card-img {
    display: inline-block;
    width: 100%;
    height: auto;
  }

  .seniorvoice__card:nth-of-type(2n) .seniorvoice__card-circle .seniorvoice__card-text {
    width: 48vw;
    height: 48vw;
    bottom: 0;
    left: 0px;
    position: relative;
    font-size: 0.8125rem;
  }

  .seniorvoice__card-text {
    width: 100%;
    height: 60px;
    position: relative;
    top: 0;
    left: 0;
  }

  .seniorvoice__card-text::before {
    left: 92px;
  }
}

@media screen and (max-width: 373px) {
  .footer__inner-entry .entry-btn {
    padding-left: 1.3333333333vw;
  }

  .footer__inner-entry .entry-btn:after {
    margin-left: 6.25vw;
  }
}
/*# sourceMappingURL=style.css.map */