@charset "UTF-8";
/*------------------------------------------------------------
	FUNCTION
------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");
@font-face {
  font-family: "LINE";
  src: url("../../assets/font/LINESeedJP_OTF_Bd.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "LINE";
  src: url("../../assets/font/LINESeedJP_OTF_Eb.woff2") format("woff2");
  font-weight: 800; /* Extra Bold */
  font-style: normal;
}
@font-face {
  font-family: "LINE";
  src: url("../../assets/font/LINESeedJP_OTF_Rg.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "LINE";
  src: url("../../assets/font/LINESeedJP_OTF_Th.woff2") format("woff2");
  font-weight: 100; /* Thin */
  font-style: normal;
}
/*rootに変数を登録*/
:root {
  --color-pink: #e5006e;
  --color-blue: #00a1e9;
  --color-lightYellow: #fff9ef;
  --color-rightBlue: #e9f8ff;
  --hover-transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  --font-lato: "Lato", sans-serif;
  --font-line: "LINE", sans-serif;
  --vw: 1vw;
}

/***********
html
***********/
html {
  font-size: clamp(33.3333%, 0.6vw, 62.5%);
  min-inline-size: 0;
}

/***********
共通
***********/
h1,
h2,
h3,
h4 {
  text-wrap: initial;
}

.pink {
  color: var(--color-pink);
}

.blue {
  color: var(--color-blue);
}

.small {
  font-size: 0.632em;
}

.thin {
  font-weight: normal;
}

.yellowLine {
  display: inline-block;
  line-height: 1;
  background: linear-gradient(transparent 50%, #fff963 50%);
}

.pinkSq {
  position: relative;
  color: #fff;
}
.pinkSq:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 110%;
  background: var(--color-pink);
  transform: translate(-50%, -50%) skewX(-25deg);
}

.attention {
  position: relative;
}
.attention::before, .attention::after {
  position: absolute;
  content: "";
  display: block;
  width: 39px;
  width: 0.65em;
  aspect-ratio: 39/40;
  background: url("../../assets/images/ttl-ico_01.svg") no-repeat;
  background-size: contain;
  top: -0.4em;
  animation: shine 1s step-end infinite;
}
.attention::before {
  left: -0.35em;
}
.attention::after {
  right: -0.35em;
  transform: scaleX(-1);
}

.secTtl {
  font-size: 5rem;
  text-align: center;
  letter-spacing: 0.1em;
  border: none;
  font-feature-settings: "palt";
  word-break: auto-phrase;
}
@media screen and (min-width: 769px) {
  .secTtl {
    font-size: 6rem;
  }
}
.secTtl.--pink {
  border-bottom: 9px solid transparent;
  border-image: linear-gradient(90deg, rgba(229, 0, 110, 0) 0%, #e5006e 50.19%, rgba(229, 0, 110, 0) 100%);
  border-image-slice: 1;
  padding-bottom: 2.8rem;
}
.secTtl.--blue {
  border-bottom: 9px solid transparent;
  border-image: linear-gradient(90deg, #fff 0%, #00a1e9 50.19%, #fff 100%);
  border-image-slice: 1;
  padding-bottom: 2.8rem;
}

@keyframes shine {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/***********
body
***********/
body {
  font-family: var(--font-line);
  line-height: 1.63;
  letter-spacing: 0.05em;
}

/***********
ヘッダー
***********/
.header .header__lgo {
  display: block;
  width: fit-content;
  padding: 2em 4em;
}
.header .header__lgo img {
  width: 31rem;
}

/***********
キービジュアル
***********/
.kv {
  opacity: 0;
  visibility: hidden;
  background: url("../../assets/images/kv-img_01_sp@2x.webp") no-repeat center center #00a1e9;
  background-size: auto 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 75/109;
}
@media screen and (min-width: 769px) {
  .kv {
    aspect-ratio: initial;
    background: url("../../assets/images/kv-img_01@2x.webp") no-repeat center center #00a1e9;
    background-size: auto 100%;
    height: clamp(200px, 33.8vw, 648px);
  }
}
.kv .kv__ttl {
  position: absolute;
  display: block flex;
  flex-flow: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  letter-spacing: -0.02em;
  gap: 0.15em;
  width: 100%;
  top: calc(50% + 1.35em);
  transform: translateY(-100%);
  font-size: clamp(5.4375rem, 7.7vw, 11.1rem);
  padding: 0.45em 0;
}
@media screen and (min-width: 769px) {
  .kv .kv__ttl {
    width: auto;
    top: auto;
    line-height: 1.33;
    padding: 1.2rem 0.5rem 1.2rem 3rem;
    font-size: clamp(3rem, 3.2vw, 6rem);
    align-items: start;
    left: calc(50% - 11.5rem);
    transform: translateX(-100%);
    bottom: 3rem;
  }
}
.kv .kv__ttl span {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .kv .kv__ttl span {
    text-align: left;
  }
}
.kv .kv__ttl img {
  height: auto;
}
@media screen and (min-width: 769px) {
  .kv .kv__ttl::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 50vw;
    height: 100%;
    transform: translateX(-100%);
    background-color: rgba(255, 255, 255, 0.7);
  }
}
.kv .kv__catch {
  position: absolute;
  width: clamp(303px, 80.8vw, 606px);
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .kv .kv__catch {
    left: auto;
    right: calc(50% - clamp(0px, 10.4vw, 200px));
    width: clamp(200px, 28.8vw, 553px);
    bottom: 30px;
    transform: translateX(100%);
  }
}
.kv .kv__catch img {
  height: auto;
}

/***********
sec1
***********/
.sec1 {
  background: url("../../assets/images/bg-sec1_02@2x.webp") no-repeat center center;
  background-attachment: fixed;
  background-size: cover;
  padding: 10rem 24px;
  overflow: hidden;
}
.sec1 .sec1__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.sec1 .sec1__inner .sec1__inner__img {
  position: absolute;
  aspect-ratio: 1/1;
  width: 35rem;
  height: auto;
  border-radius: calc(infinity * 1px);
  overflow: hidden;
  object-fit: cover;
}
.sec1 .sec1__inner .sec1__inner__img.--right {
  top: 8rem;
  right: calc(50% - 52rem);
  transform: translateX(100%);
}
.sec1 .sec1__inner .sec1__inner__img.--left {
  top: 29rem;
  left: calc(50% - 52rem);
  transform: translateX(-100%);
}
@media (max-width: 1200px) {
  .sec1 .sec1__inner .sec1__inner__img {
    display: none;
  }
}
.sec1 .sec1__headTxt {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  margin-top: 24px;
  word-break: auto-phrase;
}
.sec1 .sec1__headTxt:first-child {
  margin-top: 0;
}
.sec1 .sec1__ttl {
  font-size: 4rem;
  line-height: 1.6;
  text-align: center;
  margin-top: 6rem;
}
.sec1 .sec1__txt {
  font-size: 3rem;
  max-width: 90rem;
  margin: 4rem auto 0;
}
.sec1 .sec1__btn {
  display: block;
  width: fit-content;
  margin: 7rem auto 0;
  transition: var(--hover-transition);
}
.sec1 .sec1__btn:hover {
  filter: brightness(1.2);
}
.sec1 .sec1__btn img {
  height: auto;
}

/***********
sec2
***********/
.sec2 {
  background-color: var(--color-lightYellow);
  padding: 13.2rem 24px 7rem;
  overflow: hidden;
}
.sec2 .sec2__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.sec2 .sec2__img {
  position: relative;
}
.sec2 .sec2__img .sec2__img__01 {
  min-width: 70rem;
  margin: 0 auto;
  transform: translateX(-50%);
  left: 50%;
  position: relative;
  margin-bottom: 13rem;
}
@media screen and (min-width: 769px) {
  .sec2 .sec2__img .sec2__img__01 {
    transform: none;
    left: auto;
    max-width: 130rem;
  }
}
.sec2 .sec2__img .sec2__img__01 img {
  height: auto;
}
.sec2 .sec2__img .sec2__img__02 {
  position: absolute;
  top: 65.8rem;
  left: calc(50% - 18rem);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 8rem;
  display: none;
}
@media screen and (min-width: 769px) {
  .sec2 .sec2__img .sec2__img__02 {
    display: block;
    top: 21.6rem;
    left: calc(50% - 8rem);
    width: 6rem;
    transform-origin: right bottom;
    animation: rotate 2s ease-in-out infinite;
  }
  @keyframes rotate {
    0% {
      transform: translateX(-50%) rotate(0deg);
    }
    50% {
      transform: translateX(-50%) rotate(10deg);
    }
    100% {
      transform: translateX(-50%) rotate(0deg);
    }
  }
}
.sec2 .sec2__img .sec2__img__02 img {
  height: auto;
}
.sec2 .secTtl {
  margin-bottom: 5rem;
}
.sec2 .sec2__box {
  border: 4px solid var(--color-pink);
  background-color: #fff;
  padding: 5rem;
  margin-top: 8rem;
}
@media screen and (min-width: 769px) {
  .sec2 .sec2__box {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}
.sec2 .sec2__box .sec2__box__txt {
  font-size: 4rem;
}
.sec2 .sec2__box .sec2__box__img {
  margin: 0 auto;
}

.feature {
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 4rem;
}
.feature .feature__box .feature__box__header {
  background-color: var(--color-pink);
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 1rem 2.2rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .feature .feature__box .feature__box__header {
    grid-template-columns: max-content 1fr;
  }
}
.feature .feature__box .feature__box__header dt {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .feature .feature__box .feature__box__header dt {
    padding-right: 2rem;
    text-align: left;
  }
}
.feature .feature__box .feature__box__header dd {
  line-height: 1.5;
  border-top: 0.5rem solid #fff;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 769px) {
  .feature .feature__box .feature__box__header dd {
    border-top: none;
    border-left: 5px solid #fff;
    padding-left: 3rem;
    margin-top: 0;
    padding-top: 0;
  }
}
.feature .feature__box .feature__box__content {
  display: grid;
  grid-template-columns: 20px 1fr 20px;
  background-color: #fff;
  padding: 4rem 0 3rem;
  border: 1px solid #707070;
  border-top: none;
  justify-items: center;
}
@media screen and (min-width: 769px) {
  .feature .feature__box .feature__box__content {
    grid-template-columns: 100px 1fr 300px 30px;
  }
}
.feature .feature__box .feature__box__content .feature__box__content__img {
  grid-column: 2/3;
  grid-row: 1/2;
  margin-bottom: 20px;
  height: auto;
}
@media screen and (min-width: 769px) {
  .feature .feature__box .feature__box__content .feature__box__content__img {
    grid-column: 3/4;
    grid-row: 1/3;
    margin-bottom: 0;
  }
}
.feature .feature__box .feature__box__content .feature__box__content__txt {
  grid-column: 2/3;
  grid-row: 2/3;
  font-size: 3rem;
}
@media screen and (min-width: 769px) {
  .feature .feature__box .feature__box__content .feature__box__content__txt {
    grid-column: 2/3;
    grid-row: 1/2;
    padding-right: 30px;
  }
}
.feature .feature__box .feature__box__content .feature__box__content__txt .--note {
  display: block;
  font-size: 2.4rem;
}

/***********
sec3
***********/
.sec3 {
  background: url("../../assets/images/bg-sec2_02@2x.webp") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  background-color: var(--color-rightBlue);
  padding: 0 24px 15rem;
}
.sec3::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: calc(var(--vw) * 50) solid transparent;
  border-right: calc(var(--vw) * 50) solid transparent;
  border-top: 7rem solid var(--color-lightYellow);
  margin-left: -24px;
}
@media screen and (min-width: 769px) {
  .sec3::before {
    border-top: 20rem solid var(--color-lightYellow);
  }
}
.sec3 .sec3__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 8rem 0 0;
}
.sec3 .sec3__inner .sec3__inner__ttl {
  font-size: 4rem;
  background-color: var(--color-pink);
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  padding: 3.8rem 2.4rem;
  margin-bottom: 10rem;
  word-break: auto-phrase;
}
@media screen and (min-width: 769px) {
  .sec3 .sec3__inner .sec3__inner__ttl {
    font-size: 5rem;
  }
}

.step {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-flow: column;
  gap: 74px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.step .step__stepBox {
  border: 10px solid var(--color-pink);
  background-color: #fff;
  position: relative;
  padding: 4.2rem 2rem 4.2rem 12rem;
}
@media screen and (min-width: 769px) {
  .step .step__stepBox {
    padding: 4.2rem 2rem 4.2rem 20rem;
  }
}
.step .step__stepBox::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid var(--color-pink);
  position: absolute;
  right: 0;
  left: 0;
  bottom: -63px;
  margin: auto;
}
.step .step__stepBox:last-child::after {
  display: none;
}
.step .step__stepBox:has(.step__stepBox__img) {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem 5.6rem;
}
@media screen and (min-width: 769px) {
  .step .step__stepBox:has(.step__stepBox__img) {
    grid-template-columns: 1fr 35.7rem;
  }
}
.step .step__stepBox:has(.step__stepBox__img) .step__stepBox__subTtl {
  grid-row: 1/2;
}
@media screen and (min-width: 769px) {
  .step .step__stepBox:has(.step__stepBox__img) .step__stepBox__subTtl {
    grid-column: 1/3;
  }
}
.step .step__stepBox:has(.step__stepBox__img) .step__stepBox__txt {
  grid-row: 2/3;
}
@media screen and (min-width: 769px) {
  .step .step__stepBox:has(.step__stepBox__img) .step__stepBox__txt {
    grid-column: 1/2;
  }
}
.step .step__stepBox:has(.step__stepBox__img) .step__stepBox__img {
  height: auto;
}
@media screen and (min-width: 769px) {
  .step .step__stepBox:has(.step__stepBox__img) .step__stepBox__img {
    grid-column: 2/3;
  }
}
@media screen and (min-width: 769px) {
  .step .step__stepBox:has(.step__stepBox__img) .step__stepBox__img.absolute {
    position: absolute;
    right: -2rem;
    bottom: 0;
  }
}
.step .step__stepBox .step__stepBox__ttl {
  position: absolute;
  top: -5rem;
  left: -5rem;
  font-size: 3.2rem;
  aspect-ratio: 1/1;
  width: 14.4rem;
  background-color: var(--color-pink);
  border-radius: calc(infinity * 1px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .step .step__stepBox .step__stepBox__ttl {
    font-size: 4rem;
    width: 18rem;
  }
}
.step .step__stepBox .step__stepBox__subTtl {
  font-size: 3rem;
  line-height: 1.63;
}
.step .step__stepBox .step__stepBox__txt {
  font-size: 2.6rem;
}
.step .step__stepBox .step__stepBox__txt .--note {
  font-size: 2.4rem;
}

/***********
sec4
***********/
.sec4 .sec4__inner {
  display: grid;
  padding: 5.7rem 0;
  gap: 4rem;
  grid-template-columns: 1fr;
  justify-items: center;
}
@media screen and (min-width: 769px) {
  .sec4 .sec4__inner {
    justify-items: start;
    grid-template-columns: 1fr max-content;
    align-items: center;
  }
}
.sec4 .sec4__txt {
  color: #fff;
  font-size: 3rem;
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .sec4 .sec4__txt {
    text-align: left;
  }
}

/***********
sec5
***********/
.sec5 {
  background-color: var(--color-lightYellow);
  padding: 12rem 24px 15rem;
}
.sec5 .sec5__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.sec5 .sec5__inner .secTtl {
  margin-bottom: 6.7rem;
}

.recruitment {
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: column;
  gap: 6rem;
  overflow: hidden;
}
.recruitment .recruitment__box {
  border: 4px solid #e8e8e8;
  border-radius: clamp(11px, 1.1vw, 20px);
  font-size: 2.6rem;
  overflow: hidden;
  padding: 5.3rem 5rem 2.7rem;
  background-color: #fff;
  position: relative;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .recruitment .recruitment__box {
    padding: 5.3rem 5rem 2.7rem 10rem;
  }
}
.recruitment .recruitment__box.--new::before {
  position: absolute;
  content: "NEW";
  display: block;
  font-family: var(--font-lato);
  font-size: 3rem;
  top: 1.4rem;
  left: 1.4rem;
  font-weight: bold;
  z-index: 2;
  color: #fff;
  line-height: 1;
}
.recruitment .recruitment__box.--new::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  top: 0;
  left: 0;
  border-right: 15rem solid transparent;
  border-top: 10rem solid #e5006e;
  z-index: 1;
}
.recruitment .recruitment__box .recruitment__box__ttl {
  display: inline-block;
  margin-bottom: 4rem;
  display: block;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .recruitment .recruitment__box .recruitment__box__ttl {
    margin-bottom: 0;
    text-align: left;
  }
}
.recruitment .recruitment__box .recruitment__box__img {
  max-width: 43.8rem;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .recruitment .recruitment__box .recruitment__box__img {
    float: right;
    margin-left: 2.4rem;
  }
}
.recruitment .recruitment__box .recruitment__box__data {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 6px 1.8rem;
  margin-top: 1em;
}
.recruitment .recruitment__box .recruitment__box__data dt {
  background-color: var(--color-pink);
  color: #fff;
  font-weight: bold;
  text-align-last: justify;
  padding: 0.04em 0.3em;
  display: flex;
  align-items: center;
}
.recruitment .recruitment__box .recruitment__box__txtArea {
  margin-top: 0.5em;
}
.recruitment .recruitment__box .recruitment__box__txtArea p {
  margin-top: 0.5em;
}
.recruitment .recruitment__box .recruitment__box__txtArea p:first-child {
  margin-top: 0;
}

.recruitmentMore {
  font-family: var(--font-lato);
  font-size: 4rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  line-height: 1;
  background-color: var(--color-pink);
  color: #fff;
  border-radius: clamp(5px, 0.5vw, 10px);
  width: fit-content;
  padding: 11px 76px;
  cursor: pointer;
  transition: var(--hover-transition);
  margin: 50px auto 0;
}
.recruitmentMore:hover {
  filter: brightness(1.2);
}
.recruitmentMore::after {
  content: "+";
  display: inline-block;
  margin-left: 10px;
  font-size: 1.25em;
  transform: translateY(-0.04em);
}

/***********
user
***********/
.user {
  padding: 12rem 24px 15rem;
  background: repeating-linear-gradient(-45deg, #e9f8ff, #e9f8ff 40px, #fff 40px, #fff 80px);
}
.user .inner {
  text-align: center;
}
.user .swiper {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .user .swiper {
    max-width: 62.5vw;
    width: 100%;
  }
}
.user .swiper .swiper-slide {
  height: auto;
}
.user .swiper.-no_swiper .user_list {
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .user .swiper.-no_swiper .user_list_item {
    margin-left: 4rem;
  }
}
.user .swiper.-no_swiper .user_list_item:first-child {
  margin-left: 0;
}
.user .user_list {
  display: block;
  margin: 8vw 0 0;
  padding: 0;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .user .user_list {
    display: flex;
    align-items: stretch;
    margin: 3.125vw auto 0;
    max-width: 62.5vw;
    width: 62.5vw;
  }
}
.user .user_list_wrap {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .user .user_list_wrap {
    max-width: 62.5vw;
    width: 62.5vw;
  }
}
.user .user_list_wrap .swiper-pagination {
  bottom: -30px;
}
.user .user_list_wrap .swiper-pagination .swiper-pagination-bullet-active {
  background: #000;
}
.user .user_list_wrap .swiper-button-prev,
.user .user_list_wrap .swiper-button-next {
  color: #000;
}
.user .user_list_wrap .swiper-button-prev:after,
.user .user_list_wrap .swiper-button-next:after {
  font-size: 2em;
}
.user .user_list_wrap .swiper-button-prev {
  left: 1.3333333333vw;
  transform: translate(0%, 50%);
}
@media screen and (min-width: 769px) {
  .user .user_list_wrap .swiper-button-prev {
    left: 0;
    transform: translate(-150%, 50%);
  }
}
.user .user_list_wrap .swiper-button-next {
  right: 1.3333333333vw;
  transform: translate(0%, 50%);
}
@media screen and (min-width: 769px) {
  .user .user_list_wrap .swiper-button-next {
    right: 0;
    transform: translate(150%, 50%);
  }
}
.user .user_list_item {
  position: relative;
  margin-top: 6.6666666667vw;
  width: 100%;
  height: 100%;
  background: #fff;
  list-style: none;
  transition: all 0.5s cubic-bezier(0.21, 0.51, 0.51, 1);
}
@media screen and (min-width: 769px) {
  .user .user_list_item {
    margin-top: 0;
    width: 26.0416666667vw;
  }
}
.user .user_list_item:first-child {
  margin-left: 0;
}
.user .user_list_item:hover button {
  filter: brightness(1.2);
}
.user .user_list_item a {
  display: block;
  text-decoration: none;
  color: #000;
  height: 100%;
}
.user .user_list_item a dl {
  pointer-events: none;
}
.user .user_list_item a dl dd {
  transition: all 0.5s cubic-bezier(0.21, 0.51, 0.51, 1);
}
.user .user_list_item figure {
  pointer-events: none;
}
.user .user_list_item figure img {
  width: 100%;
}
.user .user_list_item dl {
  padding: 3.5rem 2rem;
  width: 100%;
  text-align: left;
}
.user .user_list_item dl dt {
  display: inline-block;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  line-height: 1.5;
}
.user .user_list_item dl dt span {
  font-size: 2.6rem;
  font-weight: 700;
}
.user .user_list_item dl dd {
  padding: 2rem 0 12rem;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.2rem;
}
@media screen and (min-width: 769px) {
  .user .user_list_item dl dd {
    padding: 2rem 0 7.5rem;
  }
}
.user .user_list_item dl dd button {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  font-family: var(--font-lato);
  font-size: 3rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  line-height: 1;
  background-color: var(--color-pink);
  color: #fff;
  border: none;
  border-radius: clamp(5px, 0.5vw, 10px);
  width: fit-content;
  padding: 11px 76px;
  cursor: pointer;
  transition: var(--hover-transition);
  margin: 50px auto 0;
  transform: translateX(-50%);
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .user .user_list_item dl dd button {
    bottom: 2rem;
  }
}
.user .user_list_item dl dd button:after {
  content: "+";
  display: inline-block;
  margin-left: 10px;
  font-size: 1.25em;
  transform: translateY(0.03em);
}

.modal_window {
  position: fixed;
  display: none;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
}
.modal_window_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
}
.modal_window_contents {
  position: relative;
  top: 50%;
  margin: 0 auto;
  width: 95%;
  height: 90svh;
  border: 10px solid #E3007E;
  overflow-y: scroll;
  background: #fff;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  .modal_window_contents {
    width: 65%;
  }
}
.modal_window_contents .inner {
  padding: 4vw 4vw 6.6666666667vw;
  display: none;
}
@media screen and (min-width: 769px) {
  .modal_window_contents .inner {
    padding: 1.5625vw 1.5625vw 2.6041666667vw;
  }
}
.modal_window_contents .inner.-show {
  display: block;
}
.modal_window_contents .inner .modal_header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.modal_window_contents .inner .modal_header figure {
  display: block;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .modal_window_contents .inner .modal_header figure {
    width: 50%;
  }
}
.modal_window_contents .inner .modal_header figure.-border {
  border: 2px solid #ccc;
}
.modal_window_contents .inner .modal_header figure img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .modal_window_contents .inner .modal_header > dl {
    padding-left: 1.5625vw;
    width: 50%;
  }
}
.modal_window_contents .inner .modal_header > dl > dt {
  padding: 5.3333333333vw 0 0;
  font-size: 2.6rem;
  line-height: 1.5;
  font-weight: 700;
  color: #E3007E;
}
@media screen and (min-width: 769px) {
  .modal_window_contents .inner .modal_header > dl > dt {
    padding: 0;
  }
}
.modal_window_contents .inner .modal_header > dl > dd {
  padding: 2rem 0 0;
  font-size: 2rem;
  letter-spacing: 0.2rem;
  line-height: 1.5;
}
.modal_window_contents .inner .modal_header > dl > dd .name {
  font-weight: 600;
  font-size: 2.6rem;
}
.modal_window_contents .inner .modal_body .modal_qa dt {
  position: relative;
  margin-top: 8vw;
  padding-top: 8vw;
  border-top: 1px solid #ccc;
  color: #E3007E;
  font-size: 2.6rem;
  line-height: 1.7;
  letter-spacing: 0.1rem;
  font-weight: 600;
}
@media screen and (min-width: 769px) {
  .modal_window_contents .inner .modal_body .modal_qa dt {
    margin-top: 3.125vw;
    padding-top: 3.125vw;
    font-size: 2.2rem;
  }
}
.modal_window_contents .inner .modal_body .modal_qa dd {
  position: relative;
  margin-top: 2.6666666667vw;
  font-size: 2.4rem;
  line-height: 1.7;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 769px) {
  .modal_window_contents .inner .modal_body .modal_qa dd {
    margin-top: 1.0416666667vw;
    font-size: 2rem;
  }
}
.modal_window_contents .inner .modal_body .modal_qa dd figure {
  display: block;
  padding-top: 4vw;
}
@media screen and (min-width: 769px) {
  .modal_window_contents .inner .modal_body .modal_qa dd figure {
    padding-top: 1.5625vw;
  }
}
.modal_window_contents .inner .modal_body .modal_qa dd figure.-img_v {
  width: 50%;
}
.modal_window_close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10000;
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  transition: all 0.5s cubic-bezier(0.21, 0.51, 0.51, 1);
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .modal_window_close {
    top: 6svh;
    right: 19%;
    border: none;
    width: 4.6875vw;
    height: 4.1666666667vw;
    transform: none;
  }
}
.modal_window_close:before, .modal_window_close:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.6666666667vw;
  height: 8vw;
  background: #E3007E;
  transition: all 0.5s cubic-bezier(0.21, 0.51, 0.51, 1);
}
@media screen and (min-width: 769px) {
  .modal_window_close:before, .modal_window_close:after {
    width: 0.2604166667vw;
    height: 3.125vw;
  }
}
.modal_window_close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal_window_close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
/***********
sec6
***********/
.sec6 {
  padding: 7.2rem 2.4rem 8rem;
}
.sec6 .sec6__inner .sec6__txt {
  font-size: 3rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
.sec6 .sec6__inner .sec6__txt::before, .sec6 .sec6__inner .sec6__txt::after {
  content: "";
  display: inline-block;
  aspect-ratio: 98/64;
  width: 9.8rem;
  height: auto;
  background: url("../../assets/images/apply-ico_01.svg") no-repeat;
  background-size: contain;
  transform: translateY(-1.5em);
  animation: shine 1s step-end infinite;
}
.sec6 .sec6__inner .sec6__txt::before {
  transform: scaleX(-1) translateY(-1.5em);
}
.sec6 .sec6__inner .applyBtnWrap {
  margin: 4rem auto 0;
}

/***********
apply
***********/
.apply {
  background: linear-gradient(#7bd7ff 0%, #00a1e9 100%);
  padding-left: 24px;
  padding-right: 24px;
}
.apply .apply__inner {
  max-width: 120rem;
  width: 100%;
  margin: 0 auto;
}

.applyBtnWrap {
  width: fit-content;
}
.applyBtnWrap .applyBtnWrap__pop {
  font-size: 2.6rem;
  font-weight: bold;
  color: #fff;
  background-color: var(--color-pink);
  border-radius: clamp(5px, 0.5vw, 10px);
  letter-spacing: 0;
  padding: 9px 21px;
  position: relative;
  text-align: center;
  width: fit-content;
  margin: 0 auto 28px;
  z-index: 0;
}
.applyBtnWrap .applyBtnWrap__pop::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 7.5px solid transparent;
  border-right: 7.5px solid transparent;
  border-top: 20px solid var(--color-pink);
  bottom: 1px;
  right: 0;
  left: 0;
  margin: auto;
  transform: translateY(100%);
  position: absolute;
}

.applyBtn {
  --radius-base: 20px;
  --padding: 6px;
  display: block;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  padding: var(--padding);
  border-radius: var(--radius-base);
  background-color: #fff;
  transition: var(--hover-transition);
  position: relative;
  z-index: 1;
}
.applyBtn:hover {
  filter: brightness(1.2);
}
.applyBtn .applyBtn__inner {
  border-radius: calc(var(--radius-base) - var(--padding));
  background: linear-gradient(#f999c7 0%, #e5006e 100%);
  padding: 3.1rem 3.3rem;
}
.applyBtn .applyBtn__inner .applyBtn__inner__txt {
  font-size: 3rem;
}
.applyBtn .applyBtn__inner .applyBtn__inner__txt::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 1.5rem solid transparent;
  border-bottom: 1.5rem solid transparent;
  border-left: 2rem solid #fff;
  margin-left: 1rem;
}
.applyBtn .applyBtn__inner .applyBtn__inner__txt span {
  font-size: 3.6rem;
}

/***********
フッター
***********/
.footer {
  padding: 2em 4em;
}
.footer .footer__lgo {
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.footer .footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  font-size: 1.6rem;
  margin: 1.5em auto;
  font-size: 2rem;
}
.footer .footer__nav .footer__nav__item a:hover {
  text-decoration: none;
}
.footer small {
  margin-top: 2em;
  text-align: center;
  display: block;
  font-size: 1.5rem;
}

/*# sourceMappingURL=style.css.map */
