@charset "UTF-8";
/*レスポンシブ*/ /*カラー*/
/*単位除去*/
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333333;
  font-weight: 400;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: #FCFCFC;
}

/*背景固定(今回はハンバーガーメニュー開いたときに使用)*/
body.is-scrollLock {
  overflow: hidden;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: #333333;
  text-decoration: none;
  cursor: pointer;
}

img {
  vertical-align: bottom;
}

picture img {
  width: 100%;
  height: 100%;
}

ul {
  list-style: none;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

*:focus,
*:hover,
*:active {
  outline: none;
}

/* ===========================================
共通
=========================================== */
.container {
  width: 100%;
  max-width: 1058px;
  margin: 0 auto;
  padding: 0 16px;
}

/*タイトル*/
.section-title {
  color: #F45F5F;
  font-weight: 700;
  font-size: 100px;
  letter-spacing: 0.1em;
  vertical-align: middle;
  white-space: nowrap;
}
.section-title span.white {
  z-index: 1;
  position: relative;
  color: #FCFCFC;
}
.section-title span.white::after {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 130px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #F45F5F;
  content: "";
}
.section-title span.ja {
  position: relative;
  color: #333333;
  font-size: 24px;
  letter-spacing: initial;
  vertical-align: middle;
}
.section-title span.ja::before {
  position: absolute;
  top: 50%;
  left: -23px;
  width: 13px;
  height: 13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background-color: #F45F5F;
  content: "";
}

.content-title {
  position: relative;
  padding-left: 23px;
  color: #333333;
  font-weight: 700;
  font-size: 24px;
}
.content-title::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 13px;
  height: 13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background-color: #F45F5F;
  content: "";
}

/*ボタン
------------------------------------------- */
.btn-wrapper {
  text-align: center;
}
.btn-wrapper--right {
  text-align: right;
}

.btn-shadow {
  display: inline-block;
  position: relative;
  width: 400px;
  height: 120px;
  border: solid 1px #333333;
  background-color: #F4F4F4;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -12px;
  right: -12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  width: 100%;
  height: 100%;
  padding-left: 69px;
  border: solid 1px #333333;
  background-color: #F45F5F;
  color: #FCFCFC;
  font-weight: 700;
  font-size: 24px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn:hover {
  top: 0;
  right: 0;
}
.btn.white {
  background-color: #FCFCFC;
  color: #F45F5F;
}
.btn-arrow {
  position: relative;
}
.btn-arrow::after {
  position: absolute;
  top: 50%;
  right: 30.5px;
  width: 20px;
  height: 17px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(img/arrow-white.webp);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.no-webp .btn-arrow::after {
  background-image: url(img/arrow-white.png);
}
.btn-arrow.white::after {
  background-image: url(img/arrow-red.webp);
}
.no-webp .btn-arrow.white::after {
  background-image: url(img/arrow-red.png);
}

/* スライダー共通
------------------------------------------- */
.swiper {
  width: 100%;
}
.swiper-wrapper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  width: 100%;
  height: 100%;
}
.swiper-slide img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* アンカーリンクの遷移先（スムーススクロール）調整
------------------------------------------- */
#message {
  scroll-margin-top: 100px;
}

#business {
  scroll-margin-top: 20px;
}

#pickup {
  scroll-margin-top: 20px;
}

#color {
  scroll-margin-top: 100px;
}

#job {
  scroll-margin-top: 100px;
}

#voice {
  scroll-margin-top: 160px;
}

#flow {
  scroll-margin-top: 120px;
}

#faq {
  scroll-margin-top: 40px;
}

#entry {
  scroll-margin-top: -250px;
}

/*header
------------------------------------------- */
.header {
  /*ハンバーガーメニュー*/
  /*トグルボタン*/
  /*ハンバーガーメニューが開いたときの挙動*/
}
.header__logo {
  display: none;
}
.header__logo--entry {
  display: block;
  width: 92px;
  margin: 0 0 0 auto;
}
.header-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  width: 400px;
  height: 120px;
  margin: 0 0 0 auto;
  padding-left: 69px;
  background-color: #F45F5F;
  color: #FCFCFC;
  font-weight: 700;
  font-size: 24px;
}
.header__inner {
  width: 100%;
  height: 100%;
}
.header__bg {
  visibility: hidden;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
}
.header__nav {
  z-index: 20;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  padding: 44px 16px 50px;
  overflow-y: auto;
  -webkit-transform: translateX(120%);
          transform: translateX(120%);
  background-color: #F45F5F;
  /*ヘッダーナビ右にずらしておく*/
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.header__nav.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.header__lists {
  opacity: 0;
}
.header__item {
  position: relative;
  margin-bottom: 20px;
}
.header__item::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FCFCFC;
  content: "";
  opacity: 0;
}
.header__item a {
  display: block;
  position: relative;
  padding: 0 0 10px 16px;
  color: #FCFCFC;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.1em;
}
.header__item a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background-color: #FCFCFC;
  content: "";
}
.header__toggle {
  display: none;
  z-index: 50;
  position: fixed;
  top: 29px;
  right: 16px;
  width: 58px;
  height: 23px;
  cursor: pointer;
}
.header__toggle .dot {
  position: absolute;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #F45F5F;
}
.header__toggle .dot.dot1 {
  top: 0;
}
.header__toggle .dot.dot2 {
  bottom: 0;
}
.header__toggle .line {
  position: absolute;
  right: 0;
  width: 42px;
  height: 4px;
  background-color: #F45F5F;
}
.header__toggle .line.line1 {
  top: 2px;
}
.header__toggle .line.line2 {
  bottom: 2px;
}
.header.is-active .header__bg {
  visibility: visible;
  opacity: 1;
}
.header.is-active .header__toggle {
  width: 40px;
  height: 40px;
  -webkit-transform: translateX(-16px) rotate(90deg);
          transform: translateX(-16px) rotate(90deg);
  -webkit-transition: width 0.5s 0.5s, height 0.5s 0.5s, -webkit-transform 0.5s;
  transition: width 0.5s 0.5s, height 0.5s 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, width 0.5s 0.5s, height 0.5s 0.5s;
  transition: transform 0.5s, width 0.5s 0.5s, height 0.5s 0.5s, -webkit-transform 0.5s;
}
.header.is-active .header__toggle .dot {
  background-color: #FCFCFC;
}
.header.is-active .header__toggle .dot.dot1 {
  top: 3px;
  -webkit-transition: top 0.5s 0.6s;
  transition: top 0.5s 0.6s;
}
.header.is-active .header__toggle .dot.dot2 {
  bottom: 3px;
  -webkit-transition: bottom 0.5s 0.6s;
  transition: bottom 0.5s 0.6s;
}
.header.is-active .header__toggle .line {
  background-color: #FCFCFC;
}
.header.is-active .header__toggle .line.line1 {
  top: 50%;
  -webkit-transform: translate(10px, -50%) rotate(-66deg);
          transform: translate(10px, -50%) rotate(-66deg);
  -webkit-transition: top 0.5s 0.5s, -webkit-transform 0.5s 0.5s;
  transition: top 0.5s 0.5s, -webkit-transform 0.5s 0.5s;
  transition: transform 0.5s 0.5s, top 0.5s 0.5s;
  transition: transform 0.5s 0.5s, top 0.5s 0.5s, -webkit-transform 0.5s 0.5s;
}
.header.is-active .header__toggle .line.line2 {
  bottom: 50%;
  -webkit-transform: translate(10px, 50%) rotate(66deg);
          transform: translate(10px, 50%) rotate(66deg);
  -webkit-transition: bottom 0.5s 0.5s, -webkit-transform 0.5s 0.5s;
  transition: bottom 0.5s 0.5s, -webkit-transform 0.5s 0.5s;
  transition: transform 0.5s 0.5s, bottom 0.5s 0.5s;
  transition: transform 0.5s 0.5s, bottom 0.5s 0.5s, -webkit-transform 0.5s 0.5s;
}
.header.is-active .header__lists {
  -webkit-animation: fadeUpAnime 0.5s linear 0.5s forwards;
          animation: fadeUpAnime 0.5s linear 0.5s forwards;
}
.header.is-active .header__item::after {
  -webkit-animation: fadeUpAnime 0.5s linear 1s forwards;
          animation: fadeUpAnime 0.5s linear 1s forwards;
}
@-webkit-keyframes fadeUpAnime {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeUpAnime {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

/*footer
------------------------------------------- */
.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: auto;
  min-height: 364px;
}
.footer::after {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(img/img-footer-back-PC.webp);
  background-size: cover;
  content: "";
}
.no-webp .footer::after {
  background-image: url(img/img-footer-back-PC.png);
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.footer__bg--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 37%;
  height: 364px;
}
.footer__bg--text::before {
  z-index: -2;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #CECDCD;
  content: "";
}
.footer__bg--text::after {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.footer__bg--btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 63%;
  height: 364px;
}
.footer__bg--btn::before {
  z-index: -2;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F45F5F;
  content: "";
}
.footer__bg--btn::after {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.footer__title {
  margin-bottom: 78px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3620833333;
}
.footer__address {
  margin-bottom: 14px;
}
.footer__address, .footer__tel {
  font-size: 13px;
  line-height: 1.75;
}
.footer .btn-wrapper {
  margin-left: 100px;
}
.footer .page-top {
  visibility: hidden;
  z-index: 100;
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: opacity 0.2s, visibility 0.2s;
  transition: opacity 0.2s, visibility 0.2s;
}
.footer .page-top img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
.footer .page-top.is-visible {
  visibility: visible;
  opacity: 1;
}

/*-------------------------------------------
top
------------------------------------------- */
/*ファーストビュー
------------------------------------------- */
.fv {
  position: relative;
  width: 87.5549048316vw;
  height: 645px;
  margin: 0 0 150px auto;
}
.fv .fv-logo {
  z-index: 1;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 120px;
}
.fv-title {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #F45F5F;
  font-weight: 700;
  font-size: 120px;
  letter-spacing: 0.1em;
}
.fv-title span {
  z-index: 1;
  position: absolute;
}
.fv-title span.pc-title1 {
  bottom: 140px;
  left: 0;
  line-height: 1.1333333333;
  white-space: nowrap;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.fv-title span.pc-title2 {
  bottom: 0px;
  left: 10px;
  line-height: 1.3583333333;
}
.fv-title span.pc-title3 {
  bottom: 0px;
  left: 260px;
  line-height: 1.3583333333;
}

/*スライダー*/
.slide01 {
  position: relative;
  /*ページネーション*/
}
.slide01 .swiper01 {
  height: 645px;
}
.slide01 .swiper01-wrapper {
  height: 645px;
}
.slide01 .swiper__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  position: absolute;
  bottom: -30px;
  left: -120px;
  -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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*ボタンアニメーション*/
}
.slide01 .swiper__nav span {
  margin-bottom: 126px;
  font-size: 13px;
  line-height: 1.3615384615;
  text-orientation: sideways;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.slide01 .swiper__nav .arrow-container {
  position: relative;
  width: 30px;
  height: 30px;
}
.slide01 .swiper__nav .arrow-container img {
  width: 100%;
  height: 100%;
}
.slide01 .swiper__nav .arrow-container .arrow-1 {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F45F5F;
  opacity: 0.5;
}
.slide01 .swiper__nav .arrow-container .zoomIn {
  -webkit-animation: zoomIn 2s infinite;
          animation: zoomIn 2s infinite;
}
.slide01 .swiper-pagination--custom {
  z-index: 5;
  position: absolute;
  bottom: 0;
  left: -112px;
}
.slide01 .swiper-pagination--custom.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: 13px;
}
.slide01 .swiper-pagination--custom .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  margin: 8px 0;
  border-radius: 50%;
  background-color: #F45F5F;
  opacity: 0.6;
}
.slide01 .swiper-pagination--custom .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale3d(0.4, 0.4, 0.4);
            transform: scale3d(0.4, 0.4, 0.4);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}

@keyframes zoomIn {
  0% {
    -webkit-transform: scale3d(0.4, 0.4, 0.4);
            transform: scale3d(0.4, 0.4, 0.4);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}
/*message
------------------------------------------- */
.message {
  position: relative;
  margin-bottom: 220px;
}
.message .container {
  max-width: 1074px;
  padding: 0 16px 0 40px;
}
.message .section-title__message {
  text-align: right;
}
.message .section-title__message span.ja {
  margin-left: 126px;
}
.message__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -50px;
}
.message__inner picture {
  z-index: -2;
  position: relative;
  width: min(72%, 712px);
  height: auto;
}
.message__inner picture::after {
  z-index: -3;
  position: absolute;
  top: 0;
  right: 15px;
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(-4deg);
          transform: rotate(-4deg);
  border-top-right-radius: 55%;
  background-color: #CECDCD;
  content: "";
}
.message__inner .message__text {
  width: 259px;
  font-size: max(1rem, 14px);
  line-height: 1.625;
}

/*business
------------------------------------------- */
.business {
  z-index: -2;
  position: relative;
  padding: 110px 0 160px;
  background-color: #F4F4F4;
}
.business .section-title__business {
  margin-left: 3%;
}
.business .section-title__business span.white::after {
  top: 52%;
  left: 43%;
}
.business .section-title__business span.ja {
  margin-left: 132px;
}
.business::before {
  z-index: -1;
  position: absolute;
  top: 157px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/bg-border.webp);
  background-size: contain;
  content: "";
}
.no-webp .business::before {
  background-image: url(img/bg-border.png);
}
.business::after {
  z-index: -1;
  position: absolute;
  top: 157px;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  background-image: url(img/bg-border.webp);
  background-size: contain;
  content: "";
}
.no-webp .business::after {
  background-image: url(img/bg-border.png);
}
.business__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 80px;
}
.business__container:nth-of-type(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.business__container picture {
  width: 43.3723196881%;
  height: auto;
}
.business__container .business__textbox {
  width: 49.9025341131%;
}
.business__container .business__textbox .content-title__business {
  margin-bottom: 40px;
}
.business__container .business__textbox .business__text {
  font-size: max(1rem, 14px);
  line-height: 1.75;
}

/*pickup
------------------------------------------- */
.pickup {
  position: relative;
  padding: 180px 0 210px;
}
.pickup .section-title__pickup {
  line-height: 0.8;
  text-align: right;
  white-space: nowrap;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.pickup .section-title__pickup span.white::after {
  top: 25%;
  left: 55%;
}
.pickup .section-title__pickup span.ja {
  font-size: 16px;
  letter-spacing: 0.2em;
}
.pickup .section-title__pickup span.ja::before {
  top: -23px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.pickup::before {
  position: absolute;
  top: 80px;
  right: 70px;
  width: 300px;
  height: 21px;
  background-image: url(img/bg-border2.webp);
  background-size: contain;
  content: "";
}
.no-webp .pickup::before {
  background-image: url(img/bg-border2.png);
}
.pickup::after {
  position: absolute;
  bottom: 90px;
  left: 70px;
  width: 300px;
  height: 21px;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
  background-image: url(img/bg-border2.webp);
  background-size: contain;
  content: "";
}
.no-webp .pickup::after {
  background-image: url(img/bg-border2.png);
}
.pickup__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 92px;
}
.pickup__inner::after {
  position: absolute;
  right: -65px;
  bottom: -150px;
  width: 147px;
  height: 128px;
  -webkit-transform: rotate(-22deg);
          transform: rotate(-22deg);
  background-image: url(img/img-logo.webp);
  background-size: contain;
  content: "";
}
.no-webp .pickup__inner::after {
  background-image: url(img/img-logo.png);
}
.pickup__inner .youtube {
  aspect-ratio: 800/494;
  width: 77.9727095517%;
  margin-left: 15px;
}
.pickup__inner .youtube iframe {
  width: 100%;
  height: 100%;
}
.pickup__inner .pickup__textbox {
  width: 19.4931773879%;
}
.pickup .btn {
  margin: 0 auto;
}

/*color
------------------------------------------- */
.color {
  margin-bottom: 320px;
}
.color .section-title__color {
  margin-left: 22px;
  line-height: 0.8;
}
.color .section-title__color span.white {
  color: #F45F5F;
}
.color .section-title__color span.white::after {
  border: 1px solid #F45F5F;
  background-color: transparent;
}
.color .content-title__color {
  margin-bottom: 40px;
}
.color .content-title__color .small {
  font-size: 16px;
}
.color__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -20px;
  margin-bottom: 92px;
}
.color__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0 40px 0 0;
  border-right: 1px solid #F45F5F;
}
.color__container--right {
  padding: 0 0 0 40px;
  border-right: none;
}
.color__container--right .color__box:last-child {
  border-bottom: none;
}
.color__box {
  margin-top: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #F45F5F;
}
.color__box--1 {
  margin-top: 85px;
}
.color__box--3 {
  margin-top: 85px;
}
.color__box picture {
  display: block;
  width: 473px;
  height: auto;
  margin-bottom: 40px;
}
.color__text {
  font-size: max(1rem, 14px);
  line-height: 1.75;
}
.color .btn {
  margin: 0 auto;
}

/*job
------------------------------------------- */
.job {
  position: relative;
  width: 100%;
  margin: 0 auto 270px;
}
.job .section-title__job {
  margin: 0 0 40px -50px;
}
.job .section-title__job span.white::after {
  top: 55%;
  left: 30%;
}
.job .section-title__job span.red::after {
  z-index: -1;
  position: absolute;
  top: -3px;
  right: 0;
  width: 62px;
  height: 136px;
  content: "o";
  color: #F45F5F;
}
.job .section-title__job span.ja {
  margin-left: 154px;
}
.job::before {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/bg-border.webp);
  background-size: contain;
  content: "";
}
.no-webp .job::before {
  background-image: url(img/bg-border.png);
}
.job::after {
  z-index: -1;
  position: absolute;
  top: 443px;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  background-image: url(img/bg-border.webp);
  background-size: contain;
  content: "";
}
.no-webp .job::after {
  background-image: url(img/bg-border.png);
}
.job__container::before {
  z-index: -2;
  position: absolute;
  top: -150px;
  left: 0;
  width: 59.4436310395vw;
  height: 1075px;
  background-color: #F4F4F4;
  content: "";
}
.job__inner {
  position: relative;
  max-width: 863px;
}
.job__inner::after {
  position: absolute;
  right: -158px;
  bottom: -80px;
  width: 147px;
  height: 128px;
  -webkit-transform: rotate(12deg);
          transform: rotate(12deg);
  background-image: url(img/img-logo.webp);
  background-size: contain;
  content: "";
}
.no-webp .job__inner::after {
  background-image: url(img/img-logo.png);
}
.job__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.job__term {
  width: 23.1749710313%;
  padding: 40px;
  border-bottom: 2px dashed #F45F5F;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  white-space: nowrap;
}
.job__desc {
  width: 76.8250289687%;
  padding: 40px;
  border-bottom: 2px dashed #CECDCD;
  font-size: 16px;
  line-height: 1.75;
}

/*voice
------------------------------------------- */
.voice {
  position: relative;
  margin-bottom: 180px;
}
.voice::before {
  z-index: -2;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 212px;
  left: 0;
  background-color: #F4F4F4;
  content: "";
}
.voice__inner {
  position: relative;
  margin-bottom: 92px;
  padding: 160px 0 70px;
}
.voice__inner::before {
  position: absolute;
  top: -10px;
  right: -30px;
  content: "Senior Voice";
  color: #FCFCFC;
  font-weight: 700;
  font-size: 120px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.voice .voice-title {
  z-index: 2;
  position: absolute;
  top: -100px;
  left: 160px;
  width: 400px;
}
.voice .btn {
  margin: 0 auto;
}

/*無限スクロール*/
.slider02 .swiper-button-prev {
  display: none;
  z-index: 1 !important;
  left: 16px;
  width: 24px;
  height: 24px;
}
.slider02 .swiper-button-prev img {
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.slider02 .swiper-button-prev::after {
  display: none;
}
.slider02 .swiper-button-next {
  display: none;
  z-index: 1 !important;
  right: 16px;
  width: 24px;
  height: 24px;
}
.slider02 .swiper-button-next img {
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.slider02 .swiper-button-next::after {
  display: none;
}
.slider02 .swiper02 .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  /*等速*/
}
.slider02 .swiper02 .swiper-wrapper .swiper-slide {
  width: 250px;
}
.slider02 .swiper02 .swiper-wrapper .swiper-slide img {
  -o-object-fit: contain;
     object-fit: contain;
}
.slider02 .swiper02 .swiper-wrapper .swiper-slide--bottom {
  width: 328px;
  margin: 217px 0 0 -100px;
  padding-right: 10px;
}
.slider02 .swiper02 .swiper-wrapper .swiper-slide--bottom img {
  -o-object-fit: contain;
     object-fit: contain;
}

/*company
------------------------------------------- */
.company {
  position: relative;
  width: 100%;
  margin: 0 auto 160px;
}
.company .section-title__company {
  margin: 0 0 40px -50px;
}
.company .section-title__company span.white::after {
  top: 54%;
  left: 38%;
}
.company .section-title__company span.ja {
  margin-left: 90px;
}
.company::before {
  z-index: -1;
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/bg-border.webp);
  background-size: contain;
  content: "";
}
.no-webp .company::before {
  background-image: url(img/bg-border.png);
}
.company__inner {
  max-width: 863px;
}
.company__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  line-height: 1.75;
}
.company__term {
  width: 23.1749710313%;
  padding: 40px;
  border-bottom: 2px dashed #F45F5F;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}
.company__desc {
  width: 76.8250289687%;
  padding: 40px;
  border-bottom: 2px dashed #CECDCD;
  font-size: 16px;
}

/*flow
------------------------------------------- */
.flow {
  position: relative;
  margin-bottom: 80px;
}
.flow .section-title__flow {
  width: 172px;
  margin: 50px 70px 0 0;
  line-height: 0.8;
  text-align: right;
  white-space: nowrap;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.flow .section-title__flow span.white::after {
  top: 15%;
  left: 55%;
}
.flow .section-title__flow span.white-sp {
  color: #F45F5F;
}
.flow .section-title__flow span.ja {
  font-size: 16px;
  letter-spacing: 0.1em;
}
.flow .section-title__flow span.ja::before {
  top: -23px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.flow::before {
  z-index: -1;
  position: absolute;
  top: 160px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/bg-border.webp);
  background-size: contain;
  content: "";
}
.no-webp .flow::before {
  background-image: url(img/bg-border.png);
}
.flow::after {
  position: absolute;
  right: 135px;
  bottom: 0;
  width: 316px;
  height: 241px;
  background-image: url(img/img-flow-irasuto-PC.webp);
  background-size: contain;
  content: "";
}
.no-webp .flow::after {
  background-image: url(img/img-flow-irasuto-PC.png);
}
.flow__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.flow__container {
  position: relative;
  max-width: 664px;
}
.flow__container::after {
  z-index: -2;
  position: absolute;
  top: 0;
  left: 25px;
  width: 1px;
  height: 100%;
  background-color: #F45F5F;
  content: "";
}
.flow__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 664px;
  margin-bottom: 80px;
}
.flow__number {
  position: relative;
  width: 50px;
  margin-top: 20px;
  color: #F45F5F;
  font-weight: 700;
  font-size: 40px;
}
.flow__number::after {
  z-index: -1;
  position: absolute;
  top: -20px;
  left: -25px;
  width: 100px;
  height: 100px;
  background-image: url(img/circle.webp);
  background-size: contain;
  content: "";
}
.no-webp .flow__number::after {
  background-image: url(img/circle.png);
}
.flow__textbox {
  width: 454px;
  font-size: 16px;
  line-height: 1.75;
}
.flow__title {
  display: inline-block;
  position: relative;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 24px;
}
.flow__title::after {
  position: absolute;
  top: 50%;
  right: -47px;
  width: 32px;
  height: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #333333;
  content: "";
}
.flow picture.sp {
  max-width: 343px;
  margin: 0 auto;
}

/*faq
------------------------------------------- */
.faq {
  margin-bottom: 160px;
  padding: 120px 0 160px;
  border-bottom-right-radius: 10%;
  border-bottom-left-radius: 10%;
  background-color: #F4F4F4;
}
.faq .section-title__faq {
  margin-bottom: 35px;
  line-height: 0.8;
}
.faq .section-title__faq span.white {
  color: #F45F5F;
}
.faq .section-title__faq span.white::after {
  top: 48%;
  left: 38%;
  border: 1px solid #F45F5F;
  background-color: transparent;
}
.faq .accordion {
  width: 100%;
}
.faq .accordion__item {
  width: 100%;
  font-size: 16px;
}
.faq .accordion__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 0 10px;
  border-bottom: 1px dashed #CECDCD;
  cursor: pointer;
}
.faq .accordion__title span {
  display: block;
  width: 28px;
  color: #F45F5F;
  font-weight: 700;
  font-size: 24px;
  font-family: "Noto Sans", sans-serif;
}
.faq .accordion__title p {
  width: calc(100% - 43px);
}
.faq .accordion__content {
  display: none;
  margin: 0 0 20px 40px;
  padding: 40px 0 10px;
  border-bottom: 1px dashed #CECDCD;
}
.faq .accordion__content.open {
  display: block;
}
.faq .accordion__content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.faq .accordion__content span {
  display: block;
  width: 28px;
  color: #F45F5F;
  font-weight: 700;
  font-size: 24px;
  font-family: "Noto Sans", sans-serif;
}
.faq .accordion__content p {
  width: calc(100% - 43px);
}
.faq .accordion__content p a {
  text-decoration: underline;
}

/*entry
------------------------------------------- */
.entry {
  padding: 160px 0;
  background-image: url(img/entry-bg-PC.webp);
  background-size: cover;
  background-color: #F4F4F4;
}
.no-webp .entry {
  background-image: url(img/entry-bg-PC.png);
}
.entry .section-title__entry {
  margin-bottom: 75px;
  line-height: 0.8;
}
.entry .section-title__entry span.white {
  color: #F45F5F;
}
.entry .section-title__entry span.white::after {
  top: 55%;
  left: 35%;
  border: 1px solid #F45F5F;
  background-color: transparent;
}
.entry__inner {
  padding: 170px 100px 160px;
  border-top-right-radius: 120px;
  border-bottom-left-radius: 120px;
  background-color: #fff;
}
.entry .form {
  max-width: 680px;
  margin: 0 auto;
  font-size: 16px;
  /*firefoxでのずれ解消*/
  /* エラーメッセージのスタイル */
}
.entry .form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}
.entry .form__item--privacy {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 92px;
}
.entry .form__item--privacy label {
  margin-left: 10px;
}
.entry .form__item--privacy input {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.entry .form__item--address textarea {
  margin-top: 20px;
}
.entry .form__item--address label {
  margin-bottom: 200px;
}
.entry .form__label {
  width: 160px;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.75;
}
.entry .form__label .required {
  margin-left: 20px;
  color: #F45F5F;
  font-size: 13px;
}
.entry .form__content {
  width: 467px;
}
.entry .form__content input[type=text],
.entry .form__content input[type=tel],
.entry .form__content input[type=email] {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  border: solid 1px #333333;
  border-radius: 4px;
}
.entry .form__content textarea {
  width: 100%;
  height: 240px;
  margin-bottom: 25px;
  padding: 10px;
  border: solid 1px #333333;
  border-radius: 4px;
  resize: none;
}
.entry .form__content textarea#address {
  height: 120px;
  margin-bottom: 0;
}
.entry .form__content span {
  display: block;
  margin-top: 10px;
  color: #9B9B9B;
  font-size: 13px;
  line-height: 1.3076923077;
}
.entry .form__attention {
  margin-bottom: 40px;
  text-align: center;
}
.entry .form__attention span {
  text-decoration: underline;
  cursor: pointer;
}
.entry .form .submit-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -12px;
  right: -12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  width: 100%;
  height: 100%;
  padding-left: 96px;
  border: solid 1px #333333;
  background-color: #F45F5F;
  color: #FCFCFC;
  font-weight: 700;
  font-size: 24px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* inputボタン無効時（disabled属性あり）のスタイル */
}
.entry .form .submit-btn:hover {
  top: 0;
  right: 0;
}
.entry .form .submit-btn__wrapper {
  text-align: center;
}
.entry .form .submit-btn__shadow {
  display: inline-block;
  position: relative;
  width: 400px;
  height: 120px;
  border: solid 1px #333333;
  background-color: #CECDCD;
}
.entry .form .submit-btn__arrow {
  position: relative;
  /*disabledクラスが付与された時のスタイル*/
}
.entry .form .submit-btn__arrow::after {
  position: absolute;
  top: 30%;
  right: 30.5px;
  width: 20px;
  height: 17px;
  background-image: url(img/arrow-white.webp);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.no-webp .entry .form .submit-btn__arrow::after {
  background-image: url(img/arrow-white.png);
}
.entry .form .submit-btn__arrow:hover::after {
  top: calc(30% + 12px);
  right: 42.5px;
}
.entry .form .submit-btn__arrow.disabled {
  pointer-events: none;
}
.entry .form .submit-btn__arrow.disabled::after {
  background-image: url(img/arrow-red.webp);
}
.no-webp .entry .form .submit-btn__arrow.disabled::after {
  background-image: url(img/arrow-red.png);
}
.entry .form .submit-btn[disabled] {
  /* クリック不可のカーソルを表示 */
  background-color: #FCFCFC;
  color: #F45F5F;
  cursor: not-allowed;
}
@-moz-document url-prefix() {
  .entry .form .submit-btn {
    padding-left: 0;
  }
}
.entry .form .error {
  display: none;
  width: 100%;
  padding: 0;
  color: #F45F5F;
  font-size: 13px;
}

/*モーダル*/
.modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*透明にするだけなので要素（画像）を選択できてしまう*/
  visibility: hidden;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  /*要素を選択できなくする*/
  -webkit-transition: opacity 0.2s, visibility 0.2s;
  transition: opacity 0.2s, visibility 0.2s;
}
.modal__bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.modal__container {
  z-index: 1;
  position: relative;
  width: 80%;
  height: 73.9037433155%;
  padding: 40px;
  background-color: #ffffff;
}
.modal__container p {
  padding-bottom: 40px;
  line-height: 1.75;
}
.modal.is-open {
  visibility: visible;
  opacity: 1;
}

/*スクロールバーのカスタマイズ*/
.scroll__inner {
  overflow-y: scroll;
}

/*元々あったスクロールトラック（スクロールバーが走る部分）を非表示にする*/
.scroll__inner::-webkit-scrollbar {
  display: none;
}

.simplebar {
  /*スクロールトラック部分*/
  /*スクロールバー自体*/
}
.simplebar-content {
  width: 100%;
  height: 100%;
}
.simplebar-track.simplebar-vertical {
  width: 20px;
  background-color: #D9D9D9;
}
.simplebar-track.simplebar-horizontal {
  height: 0;
}
.simplebar-scrollbar.simplebar-visible::before {
  left: 0;
  width: 20px;
  border-radius: 10px;
  background-color: #F45F5F;
  opacity: 1;
}

/*-------------------------------------------
サンクスページ（thanks.html）
------------------------------------------- */
.thanks {
  position: relative;
  height: 100vh;
}
.thanks__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  padding: 80px 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
}
.thanks__inner__textbox {
  margin-bottom: 64px;
}
.thanks__inner p {
  font-size: 16px;
  line-height: 1.75;
}
.thanks__inner p + p {
  margin-top: 38px;
}
.thanks__inner a {
  display: block;
  width: 72px;
  margin: 64px auto 0;
}
@media screen and (max-width: 1366px){
  .pickup__inner::after {
    right: -20px;
    bottom: -100px;
    width: 100px;
    height: 87px;
  }
  .pickup__inner .youtube {
    width: 70%;
  }
  .job__inner::after {
    right: 24px;
    bottom: -180px;
  }
  .company .section-title__company {
    margin: 0 0 40px 22px;
  }
  .flow {
    margin-bottom: 180px;
  }
  .flow::after {
    right: 40px;
    bottom: -180px;
  }
  .faq .section-title__faq {
    margin-left: 22px;
  }
}
@media screen and (max-width: 1045px){
  html {
    font-size: 1.5311004785vw;
  }
  .section-title {
    font-size: max(6.25rem, 60px);
  }
  .section-title span.white::after {
    width: 12vw;
    height: 12vw;
  }
  .section-title span.ja {
    font-size: max(1.5rem, 18px);
  }
  .footer .btn-wrapper {
    margin-left: 0;
  }
  .slide01 .swiper__nav {
    left: -60px;
  }
  .slide01 .swiper-pagination--custom {
    left: -52px;
  }
  .message__inner picture {
    width: 60%;
  }
  .message__inner .message__text {
    width: 36%;
  }
  .business .section-title__business span.white {
    font-size: 70px;
  }
  .pickup .container {
    padding: 0 30px;
  }
  .pickup .section-title__pickup span.white {
    font-size: 70px;
  }
  .color .content-title__color--last::before {
    top: 12px;
    -webkit-transform: initial;
            transform: initial;
  }
  .color__container {
    width: 50%;
  }
  .color__box picture {
    width: 100%;
  }
  .job .section-title__job {
    margin: 0 0 0 22px;
  }
  .job::after {
    top: 150px;
  }
  .voice__inner::before {
    right: -20px;
    font-size: max(7.5rem, 50px);
  }
  .voice .voice-title {
    left: 80px;
    width: 300px;
  }
  .flow .section-title__flow {
    margin: 50px 50px 0 30px;
  }
  .flow__inner {
    width: 100%;
  }
  .flow__container {
    width: 70%;
  }
  .flow__box {
    width: 100%;
  }
  .flow__number {
    width: 20%;
  }
  .flow__textbox {
    width: 80%;
  }
  .entry__inner {
    padding: 170px 50px 160px;
  }
}
@media screen and (max-width: 768px){
  html {
    font-size: 2.0833333333vw;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .section-title {
    margin: 0 0 40px 22px;
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: 0.06em;
  }
  .section-title span.white::after {
    top: 50%;
    left: 40%;
    width: 84px;
    height: 84px;
  }
  .section-title span.ja {
    font-size: 18px;
  }
  .section-title span.ja::before {
    width: 10px;
    height: 10px;
  }
  .btn-shadow {
    width: 237px;
    height: 68px;
  }
  .btn {
    padding-left: 38px;
    font-size: 16px;
  }
  .btn-arrow::after {
    right: 22px;
    width: 15px;
    height: 13px;
  }
  #entry {
    scroll-margin-top: -50px;
  }
  .header {
    z-index: 5;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #FCFCFC;
  }
  .header__logo {
    display: block;
    z-index: 10;
    position: fixed;
    top: 8px;
    left: 16px;
    width: 75px;
  }
  .header-btn {
    display: none;
  }
  .header__toggle {
    display: block;
  }
  .footer {
    display: block;
    background: none;
  }
  .footer::after {
    background: none;
  }
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__bg--text {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    height: 100%;
  }
  .footer__bg--text::after {
    background-image: url(img/img-footer-back-01-SP.webp);
    background-size: cover;
  }
  .no-webp .footer__bg--text::after {
    background-image: url(img/img-footer-back-01-SP.png);
  }
  .footer__bg--btn {
    width: 100%;
    height: 100%;
  }
  .footer__bg--btn::after {
    background-image: url(img/img-footer-back-02-SP.webp);
    background-size: cover;
  }
  .no-webp .footer__bg--btn::after {
    background-image: url(img/img-footer-back-02-SP.png);
  }
  .footer__textbox {
    padding: 80px 16px;
  }
  .footer__title {
    margin-bottom: 40px;
  }
  .footer__address {
    margin-bottom: 20px;
  }
  .footer .btn-wrapper {
    margin: 0;
    padding: 50px 10px 40px 0;
  }
  .footer .btn-shadow {
    width: 333px;
    height: 100px;
  }
  .footer .btn {
    padding-left: 60px;
    font-size: 20px;
  }
  .footer .btn-arrow::after {
    width: 17px;
    height: 14px;
  }
  .fv {
    width: 100%;
    height: calc(100vh - 110px);
    margin: 80px 0 110px;
  }
  .fv .fv-logo {
    display: none;
  }
  .fv-title {
    font-size: 100px;
  }
  .fv-title span.pc-title1 {
    top: 10px;
    right: 10px;
    bottom: initial;
    left: initial;
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
  }
  .fv-title span.pc-title2 {
    top: 50%;
    right: 10px;
    bottom: initial;
    left: initial;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .fv-title span.pc-title3 {
    top: initial;
    right: 10px;
    bottom: 10px;
    left: initial;
  }
  .slide01 .swiper01 {
    height: calc(100vh - 110px);
  }
  .slide01 .swiper01-wrapper {
    height: calc(100vh - 110px);
  }
  .slide01 .swiper__nav {
    bottom: -12.5px;
    left: 5px;
  }
  .slide01 .swiper__nav span {
    margin-bottom: 16px;
  }
  .slide01 .swiper__nav .arrow-container {
    width: 25px;
    height: 25px;
  }
  .slide01 .swiper__nav .arrow-container .arrow-1 {
    width: 35px;
    height: 35px;
  }
  .slide01 .swiper-pagination--custom {
    bottom: -25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .slide01 .swiper-pagination--custom.swiper-pagination-bullets.swiper-pagination-horizontal {
    width: 60px;
  }
  .slide01 .swiper-pagination--custom .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
  }
  .message {
    margin-bottom: 80px;
  }
  .message .container {
    padding: 0 16px;
  }
  .message .section-title__message {
    margin-bottom: 45px;
    text-align: left;
  }
  .message .section-title__message span.ja {
    margin-left: 0;
  }
  .message__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
  }
  .message__inner picture {
    width: 96%;
    margin-bottom: 50px;
    text-align: right;
  }
  .message__inner picture::after {
    border-top-right-radius: 15%;
  }
  .message__inner .message__text {
    width: 100%;
    font-size: max(1rem, 16px);
    line-height: 1.75;
  }
  .business {
    padding: 80px 0 0;
  }
  .business .section-title__business {
    margin: 0 0 40px 22px;
  }
  .business .section-title__business span.white::after {
    top: 52%;
    left: 40%;
  }
  .business .section-title__business span.ja {
    margin-left: 0;
  }
  .business::before {
    top: 129px;
    background-image: url(img/bg-border-SP.webp);
  }
  .no-webp .business::before {
    background-image: url(img/bg-border-SP.png);
  }
  .business::after {
    top: initial;
    bottom: 505px;
    background-image: url(img/bg-border-SP.webp);
  }
  .no-webp .business::after {
    background-image: url(img/bg-border-SP.png);
  }
  .business__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
    padding-bottom: 80px;
  }
  .business__container:nth-of-type(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .business__container picture {
    width: 100%;
    margin-bottom: 40px;
  }
  .business__container .business__textbox {
    width: 100%;
  }
  .pickup {
    padding: 110px 0 180px;
  }
  .pickup .container {
    padding: 0 16px;
  }
  .pickup .section-title__pickup {
    margin-left: 22px;
    text-align: left;
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
  }
  .pickup .section-title__pickup span.white::after {
    top: 48%;
    left: 32%;
  }
  .pickup .section-title__pickup span.ja {
    font-size: 18px;
    letter-spacing: initial;
  }
  .pickup .section-title__pickup span.ja::before {
    top: 50%;
    left: -23px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .pickup::before {
    top: 40px;
    right: 0;
    width: 150px;
    height: 11px;
  }
  .pickup::before {
    background-image: url(img/bg-border2-SP.webp);
  }
  .no-webp .pickup::before {
    background-image: url(img/bg-border2-SP.png);
  }
  .pickup::after {
    bottom: 130px;
    left: 0;
    width: 150px;
    height: 11px;
  }
  .pickup::after {
    background-image: url(img/bg-border2-SP.webp);
  }
  .no-webp .pickup::after {
    background-image: url(img/bg-border2-SP.png);
  }
  .pickup__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 53px;
  }
  .pickup__inner::after {
    right: 0;
    bottom: -257px;
    width: 65px;
    height: 57px;
  }
  .pickup__inner .youtube {
    width: 100%;
    margin-left: 0;
  }
  .pickup__inner .pickup__textbox {
    width: 100%;
  }
  .color {
    margin-bottom: 165px;
  }
  .color .section-title__color {
    line-height: 1;
  }
  .color .content-title__color .small {
    font-size: 13px;
  }
  .color__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 32px;
  }
  .color__container {
    width: 100%;
    padding: 0;
    border-right: none;
  }
  .color__container--right {
    padding: 0;
  }
  .color__box--1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 0;
  }
  .color__box--2 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .color__box--3 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 0;
    padding: 60px 0;
  }
  .color__box--4 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .color__box--5 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .color__box--6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .color__text {
    font-size: 16px;
  }
  .job {
    margin: 0 auto 300px;
  }
  .job .section-title__job {
    margin: 0 0 15px 22px;
  }
  .job .section-title__job span.red::after {
    top: 14px;
    width: 38px;
    height: 82px;
    margin: 0 0 20px 20px;
  }
  .job .section-title__job span.ja {
    margin: 0;
  }
  .job__container::before {
    top: -78px;
    width: 70.4vw;
    height: 745px;
  }
  .job__list {
    font-size: 13px;
    line-height: 138.4615384615%;
  }
  .job__term {
    width: 23.3918128655%;
    padding: 20px 0;
    font-size: 13px;
    line-height: 1.3846153846;
  }
  .job__desc {
    width: 76.6081871345%;
    padding: 20px 0 20px 20px;
    font-size: 13px;
    line-height: 1.3846153846;
  }
  .voice::before {
    bottom: 160px;
  }
  .voice {
    margin-bottom: 100px;
  }
  .voice__inner {
    padding: 100px 0 80px;
  }
  .voice__inner::before {
    top: 20px;
    right: 0;
    font-size: 50px;
  }
  .voice__inner::after {
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: scale(1, -1);
            transform: scale(1, -1);
    content: "Senior Voice";
    color: #FCFCFC;
    font-weight: 700;
    font-size: 50px;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }
  .voice .voice-title {
    top: -60px;
    left: 16px;
    width: 224px;
  }
  .slider02 {
    padding: 0 44px;
  }
  .slider02 .swiper-button-prev {
    display: block;
  }
  .slider02 .swiper-button-next {
    display: block;
  }
  .slider02 .swiper02 .swiper-wrapper .swiper-slide {
    width: 100%;
  }
  .slider02 .swiper02 .swiper-wrapper .swiper-slide img {
    width: 100%;
  }
  .slider02 .swiper02 .swiper-wrapper .swiper-slide--bottom {
    width: 100%;
    margin: 0;
    padding-right: 0;
  }
  .slider02 .swiper02 .swiper-wrapper .swiper-slide--bottom img {
    width: 100%;
  }
  .company {
    margin: 0 auto 80px;
  }
  .company .section-title__company {
    margin: 0 0 10px 22px;
  }
  .company .section-title__company span.ja {
    margin: 0;
  }
  .company::before {
    top: 235px;
    background-image: url(img/bg-border-SP.webp);
  }
  .no-webp .company::before {
    background-image: url(img/bg-border-SP.png);
  }
  .company__list {
    font-size: 13px;
    line-height: 138.4615384615%;
  }
  .company__term {
    width: 23.3918128655%;
    padding: 20px 0;
    font-size: 13px;
    line-height: 1.3076923077;
  }
  .company__desc {
    width: 76.6081871345%;
    padding: 20px 0 20px 20px;
    font-size: 13px;
    line-height: 1.3076923077;
  }
  .flow {
    margin-bottom: 80px;
  }
  .flow .section-title__flow {
    margin: 0 0 30px 20px;
    line-height: 1;
    text-align: left;
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
  }
  .flow .section-title__flow span.white::after {
    top: 48%;
    left: 35%;
  }
  .flow .section-title__flow span.white-sp {
    color: #FCFCFC;
  }
  .flow .section-title__flow span.ja {
    font-size: 18px;
    letter-spacing: initial;
  }
  .flow .section-title__flow span.ja::before {
    top: 50%;
    left: -23px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .flow::before {
    background-image: url(img/bg-border-SP.webp);
  }
  .no-webp .flow::before {
    background-image: url(img/bg-border-SP.png);
  }
  .flow::after {
    display: none;
  }
  .flow__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flow__container {
    width: 100%;
    padding: 0 16px 0 25px;
  }
  .flow__container::after {
    left: 34px;
  }
  .flow__box {
    margin-bottom: 35px;
  }
  .flow__number {
    width: 23px;
    margin-top: 10px;
    font-size: 18px;
  }
  .flow__number::after {
    top: -10px;
    left: -12px;
    width: 46px;
    height: 46px;
  }
  .flow__textbox {
    width: calc(100% - 70px);
  }
  .flow__textbox {
    width: calc(100% - 60px);
  }
  .flow__title {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .faq {
    margin-bottom: 80px;
    padding: 90px 0 80px;
  }
  .faq .section-title__faq {
    margin-bottom: 0px;
    line-height: 1;
  }
  .faq .accordion__title {
    font-size: 13px;
  }
  .faq .accordion__title span {
    width: 22px;
    font-size: 18px;
  }
  .faq .accordion__content {
    margin: 0;
    padding: 20px 0 10px;
    font-size: 13px;
  }
  .faq .accordion__content span {
    width: 22px;
    font-size: 18px;
  }
  .entry {
    padding: 80px 0;
    background-image: url(img/entry-bg-SP.webp);
  }
  .no-webp .entry {
    background-image: url(img/entry-bg-SP.png);
  }
  .entry .section-title__entry {
    margin-bottom: 30px;
    line-height: 1;
  }
  .entry .section-title__entry span.white::after {
    top: 50%;
    left: 38%;
  }
  .entry__inner {
    padding: 90px 16px 70px;
    border-top-right-radius: 60px;
    border-bottom-left-radius: 60px;
  }
  .entry .form {
    font-size: 13px;
  }
  .entry .form__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 40px;
  }
  .entry .form__item--privacy {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 92px;
  }
  .entry .form__item--address label {
    margin-bottom: 20px;
  }
  .entry .form__label {
    width: 100%;
    margin-bottom: 20px;
  }
  .entry .form__label .sp {
    display: inline-block;
  }
  .entry .form__content textarea {
    margin-bottom: 0;
  }
  .entry .form__content {
    width: 100%;
  }
  .entry .form__attention {
    margin-bottom: 30px;
    text-align: left;
  }
  .entry .form .submit-btn {
    padding-left: 50px;
    font-size: 16px;
  }
  .entry .form .submit-btn__shadow {
    width: 237px;
    height: 68px;
  }
  .entry .form .submit-btn__arrow::after {
    top: 25%;
    right: 22px;
    width: 15px;
    height: 13px;
  }
  .entry .form .submit-btn__arrow:hover::after {
    top: calc(25% + 12px);
    right: 34px;
  }
  .thanks__inner {
    width: calc(100% - 32px);
    padding: 80px 16px;
  }
}
@media screen and (max-width: 375px){
  html {
    font-size: 4.2666666667vw;
  }
  .section-title {
    font-size: 3.75rem;
  }
  .footer .btn-shadow {
    width: 280px;
    height: 85px;
  }
  .footer .btn {
    padding-left: 45px;
    font-size: 1.25rem;
  }
  .fv-title {
    font-size: 6.25rem;
  }
  .job::before {
    top: 200px;
    background-image: url(img/bg-border-SP.webp);
  }
  .no-webp .job::before {
    background-image: url(img/bg-border-SP.png);
  }
  .job::after {
    top: 220px;
    background-image: url(img/bg-border-SP.webp);
  }
  .no-webp .job::after {
    background-image: url(img/bg-border-SP.png);
  }
  .voice__inner::before {
    font-size: 3.125rem;
  }
  .voice__inner::after {
    font-size: 3.125rem;
  }
}