@charset "UTF-8";
html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

@media screen and (max-width: 1920px) {
  html {
    font-size: 0.5208333333vw;
  }
}
@media screen and (max-width: 992px) {
  html {
    font-size: 1.2820512821vw;
  }
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  overflow-x: hidden;
  line-height: 1.45;
  color: #666;
  -webkit-font-smoothing: antialiased;
}
body.no_scroll {
  overflow: hidden;
  position: relative;
}

a {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  color: #333333;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.u-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}
/* ------- utility ------- */
sup,
sub {
  font-size: 1rem;
}

section {
  position: relative;
}

.u-center {
  text-align: center;
}

.u-right {
  text-align: right;
}

.u-note {
  font-size: 1.4rem;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.04em;
}

@media (max-width: 992px) {
  .l-main {
    overflow: hidden;
  }
  sup,
  sub {
    font-size: 0.8rem;
  }
  .u-note {
    font-size: 0.7rem;
  }
}
.btn,
a {
  transition: 0.3s ease;
}
@media (hover: hover) {
  .btn:hover,
  a:hover {
    opacity: 0.8;
  }
}

.c-desc {
  font-size: 3.2rem;
  line-height: 2;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

.c-ttl-bg {
  font-size: 4.8rem;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  text-align: center;
  font-weight: 700;
  padding: 0.8rem;
  background: linear-gradient(90deg, rgb(254, 59, 160) 0%, rgb(255, 132, 92) 100%);
  color: #fff;
  margin-bottom: 2.5rem;
}

.c-box-bg {
  background: linear-gradient(135deg, rgb(254, 59, 160) 0%, rgb(255, 132, 92) 100%);
  color: #fff;
}

.c-btn {
  background-color: #00c34d;
  border-bottom: 0.8rem solid #33a54a;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  width: 100%;
  max-width: 66rem;
  height: 8.8rem;
  margin: 2rem auto 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 60px;
}

/* ------- layout ------- */
.l-container {
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  position: relative;
  background: url("../img/bg.png") no-repeat center/cover;
  background-attachment: fixed;
  min-height: 70rem;
}

.p-bg__slider {
  width: 100%;
  position: fixed;
  bottom: 2%;
  left: 0;
  z-index: 0;
}
.p-bg__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.l-main__contents {
  width: 42.5%;
  max-width: 780px;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.l-side__left {
  width: 30%;
  padding: 0 3rem;
  position: fixed;
}
.l-side__left .logo {
  margin-bottom: max(4rem, 40px);
}
.l-side__left .c-fixed {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 100vh;
  padding-top: max(10rem, 80px);
}
.l-side__left .recruit-text {
  text-align: center;
  margin-bottom: 20px;
}
.l-side__left .recruit-text p {
  font-size: 1.6rem;
  font-size: max(1.6rem, 16px);
  color: #666666;
  font-weight: 700;
  margin-bottom: max(1rem, 10px);
  letter-spacing: 0.1em;
}
.l-side__left .recruit-text img {
  max-width: max(22.2rem, 180px);
}
.l-side__left .l-side__line {
  margin-bottom: 30px;
}
.l-side__left .page-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 16px;
}
.l-side__left .page-nav a {
  font-size: max(1.6rem, 15px);
  color: #666;
  letter-spacing: 0.1em;
  position: relative;
  font-weight: 700;
}
.l-side__left .page-nav a.is-active .active_line {
  display: block;
}
.l-side__left .page-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #666;
  bottom: -4px;
  -ms-transform: scale(0, 1);
      transform: scale(0, 1);
  -ms-transform-origin: right top;
      transform-origin: right top;
  transition: transform 0.3s;
}
.l-side__left .page-nav a.is-active::after {
  -ms-transform: scale(1, 1);
      transform: scale(1, 1);
  -ms-transform-origin: left top;
      transform-origin: left top;
}
@media (hover: hover) {
  .l-side__left .page-nav a:hover::after {
    -ms-transform: scale(1, 1);
        transform: scale(1, 1);
    -ms-transform-origin: left top;
        transform-origin: left top;
  }
}

.l-wrap {
  width: calc(100% - 11.8rem);
  margin: 0 auto;
}

@media (max-width: 992px) {
  .l-container {
    padding-right: 0;
  }
  .p-bg__slider {
    display: none;
  }
  .l-side__left {
    display: none;
  }
  .l-main__contents {
    width: 100%;
    max-width: 100%;
  }
}
/* ------- mv ------- */
.p-mv {
  position: relative;
  z-index: 100;
  position: relative;
}
.p-mv .u-sp {
  display: none;
}

.p-mv__logo {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ddd8d3;
  width: 100%;
  height: 10rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  padding: 0 3rem;
}
.p-mv__logo img {
  max-width: 33.7rem;
}

.p-mv__ttl {
  position: absolute;
  width: 83.5%;
  top: 12.4%;
  left: 8%;
}

.p-mv__text {
  position: absolute;
  bottom: 5%;
  left: 6.5%;
  width: 87.8%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 0.8rem;
}
.p-mv__text li {
  width: calc(50% - 0.4rem);
}

/* ------------ about ------------ */
.p-about {
  padding: 7.5rem 0 0;
  background-color: #f2f2f2;
}
.p-about .about-ttl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 4.8rem;
  font-weight: 700;
  color: #666;
  margin-bottom: 5rem;
  line-height: 0.8;
}
.p-about .about-ttl img {
  width: 52%;
  max-width: 337px;
}
.p-about .about-ttl span {
  display: inline-block;
  margin-left: 4px;
}
.p-about .c-desc {
  margin-bottom: 3rem;
}

.p-about-block-1 .block-why {
  margin-top: 8rem;
}
.p-about-block-1 .block-why figure {
  text-align: center;
}
.p-about-block-1 .block-why .text-border {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  gap: 1rem;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-top: 3.5rem;
  font-feature-settings: "palt";
}
.p-about-block-1 .block-why .text-border .bg {
  padding: 0 0.8rem;
  display: block;
  border-bottom: 10px solid;
  -o-border-image: linear-gradient(90deg, rgb(254, 59, 160) 0%, rgb(255, 132, 92) 100%) 1;
     border-image: linear-gradient(90deg, rgb(254, 59, 160) 0%, rgb(255, 132, 92) 100%) 1;
}
.p-about-block-1 .block-why .text-border .num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 5rem;
  font-weight: 600;
  line-height: 0.8;
}
.p-about-block-1 .p-about-example {
  margin-top: 10rem;
}
.p-about-block-1 .p-about-example .ttl {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 5rem;
}

.p-about-block-2 {
  margin-top: 6rem;
  padding: 6rem 0 8rem;
}
.p-about-block-2 figure {
  text-align: center;
}
.p-about-block-2 .c-desc {
  margin-bottom: 4rem;
}
.p-about-block-2 .c-desc span {
  background-color: #fff;
  color: #fe39a2;
  display: inline-block;
  padding: 0;
  line-height: 1.3;
  padding: 0 5px;
}

.p-about-block-3 {
  padding: 3.5rem 0 8rem;
  background-color: #fff;
}
.p-about-block-3 .c-desc {
  margin-bottom: 0;
}
.p-about-block-3 .c-desc .sm {
  font-size: 2.4rem;
}
.p-about-block-3 figure {
  margin: 0.5rem 0 1.5rem;
}

/* ------------ player ------------ */
.p-player {
  background-color: #f2f2f2;
  padding: 5rem 0 13rem;
}
.p-player .c-ttl-bg {
  margin-bottom: 1rem;
}
.p-player .c-ttl-bg .sm {
  font-size: 3.4rem;
}
.p-player .player-ttl {
  width: 94%;
  max-width: 622px;
  margin: 6rem auto 0;
}
.p-player .c-desc {
  font-size: 2.8rem;
  line-height: 1.93;
}

.p-step__block {
  margin-top: 7.5rem;
}
.p-step__block:first-of-type {
  margin-top: 6.8rem;
}
.p-step__block:nth-of-type(2) figure {
  margin-top: 1.6rem;
}
.p-step__block .step-num {
  max-width: 17.5rem;
  margin-bottom: 1.6rem;
}
.p-step__block figure {
  margin-top: 3.6rem;
}
.p-step__block .c-btn {
  margin-top: 2.4rem;
}
.p-step__block .notice {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  margin-top: 1rem;
}

/* ------------ service ------------ */
.p-service {
  position: relative;
  padding: 7rem 0 9rem;
}
.p-service .service-ttl {
  width: 90%;
  max-width: 480px;
  margin: 0 auto 4rem;
}
.p-service .c-desc {
  font-size: 2.8rem;
}

.p-service__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 1rem;
  gap: 5.8rem;
  margin-top: 5.5rem;
}
.p-service__list li {
  width: calc(50% - 2.9rem);
}
.p-service__list li figcaption {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-top: 1.4rem;
}

/* ------------ entry ------------ */
.p-entry {
  position: relative;
}
.p-entry .c-btn {
  position: absolute;
  bottom: 10%;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}

/* ------- faq ------- */
.p-faq {
  background-color: #f2f2f2;
  padding: 7rem 0 6rem;
}
.p-faq .faq-ttl {
  text-align: center;
  width: 80%;
  max-width: 370px;
  margin: 0 auto 6rem;
}
.p-faq .c-desc {
  font-size: 2.8rem;
  margin-top: 2.4rem;
}

.p-faq__block .tab-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.p-faq__block .tab {
  text-align: center;
  width: calc(50% - 0.5rem);
  cursor: pointer;
  font-size: 2.7rem;
  text-align: center;
  color: #fff;
  font-weight: 700;
  padding: 10px;
  letter-spacing: 0.05em;
}
.p-faq__block .tab.entry {
  background-color: #fe39a2;
  border-radius: 1.2rem 0 0 0;
}
.p-faq__block .tab.reward {
  background-color: #ff865b;
  border-radius: 0 1.2rem 0 0;
}
.p-faq__block .content_area {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px 20px;
}
.p-faq__block .content {
  display: none;
}
.p-faq__block .content.show {
  display: block;
}

.p-acc {
  width: 100%;
  margin: 1rem auto 0;
  border: 2px solid #d9d9d9;
  border-radius: 10px;
  background-color: #fff;
}

.p-acc .question-ttl {
  font-size: 2.4rem;
  font-size: max(2.4rem, 16px);
  font-weight: 500;
  position: relative;
  padding: 1.8rem 5.5rem 1.8rem 2rem;
  transition: 0.3s ease all;
  line-height: 1.7;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.p-acc .question-ttl:after {
  content: "+";
  font-size: 3rem;
  line-height: 1;
  margin-right: 10px;
  position: absolute;
  top: 2rem;
  right: 1.8rem;
}

.p-acc .question-ttl.is-open:after {
  content: "−";
}

.p-acc .asnwer-block {
  display: none;
}

.p-acc .asnwer-block p {
  margin: 0;
  padding: 0;
  position: relative;
  font-weight: 500;
  padding: 1.8rem 5rem 1.8rem 2rem;
  line-height: 1.7;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-size: max(2rem, 14px);
}

@media (max-width: 767px) {
  .p-acc .question-ttl {
    font-size: max(2rem, 14px);
    padding-right: 8rem;
  }
  .p-acc .asnwer-block p {
    font-size: max(1.8rem, 13px);
  }
}
/* ------- foot ------- */
.p-foot {
  padding: 2rem 0;
  background-color: #666666;
}

.p-copyright {
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-foot {
    padding: 2rem 0 13rem;
  }
}
/* ------- fixed ------- */
.l-fixed-cta {
  display: none;
}

@media screen and (max-width: 767px) {
  .l-fixed-cta {
    width: calc(100% - 20px);
    position: fixed;
    bottom: 5px;
    left: 50%;
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    z-index: 99;
  }
  .l-fixed-cta .c-btn {
    border-radius: 8px;
    width: 100%;
    max-width: 100%;
    height: 9rem;
  }
}
/* -------------------------------
 company 
------------------------------- */
.p-company-page {
  height: 100svh;
  min-height: 600px;
}

.p-company {
  background-color: #f2f2f2;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.p-company .l-wrap {
  padding: 7rem 0;
}
.p-company .company-ttl {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.p-company dl {
  font-weight: 600;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  border-bottom: 1px solid #666666;
}
.p-company dl:first-of-type {
  border-top: 1px solid #666666;
}
.p-company dl dt {
  font-size: 2.4rem;
  width: 140px;
  padding: 2rem 1.5rem;
}
.p-company dl dd {
  font-size: 2.4rem;
  width: calc(100% - 140px);
  padding: 2rem 1.5rem;
}
.p-company .p-foot {
  margin-top: auto;
}

.p-logo {
  background-color: #fff;
  width: 100%;
  height: 10rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  padding: 0 3rem;
}
.p-logo img {
  max-width: 33.7rem;
}

@media screen and (max-width: 767px) {
  .p-company-page {
    min-height: 520px;
  }
  .p-company-page .l-fixed-cta {
    display: block !important;
  }
}