@charset "UTF-8";
/*------------------------------------------------------------------------
// Base
  ├ reset
  └ base
------------------------------------------------------------------------*/
/*----------------------------------------
	reset
----------------------------------------*/
*,
::before,
::after {
  box-sizing: border-box;
}

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, main, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

header, footer, article, section, aside, main, nav, menu, figure, figcaption {
  display: block;
}

span, small, strong, em, b, i {
  color: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

ul,
ol {
  list-style: none;
}

img {
  border: 0;
  vertical-align: top;
}

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

caption, th {
  text-align: left;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

q::before,
q::after {
  display: none;
}

/*----------------------------------------
	base
----------------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 0.78125vw;
}
@media (max-width: 750px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1280px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  color: #000;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: underline;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

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

button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: block;
  width: 100%;
  border: 0;
  font-family: inherit;
  font-weight: inherit;
}

/*------------------------------------------------------------------------
// Layout
  ├ wrapper
  ├ header
  ├ main-contents
  ├ footer
  └ container
------------------------------------------------------------------------*/
/* wrapper
------------------------------------------------------ */
.wrapper {
  overflow-x: hidden;
  overflow-y: auto;
}

/* header
------------------------------------------------------ */
.header {
  position: fixed;
  z-index: 99;
  top: 0;
  width: 100%;
  padding-top: 1.6rem;
  padding-bottom: 1.5rem;
  background: #fff;
}
@media (max-width: 750px) {
  .header {
    padding-top: 3rem;
    padding-bottom: 3.3rem;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6rem;
}
@media (max-width: 750px) {
  .header-inner {
    padding: 0 3rem;
  }
}

.header__logo {
  width: 21rem;
  height: 5.7rem;
}

.header__btn {
  width: 29rem;
}

/* main-contents
------------------------------------------------------ */
.main-contents {
  margin-top: 8.8rem;
}
@media (max-width: 750px) {
  .main-contents {
    margin-top: 12rem;
  }
}

/* footer
------------------------------------------------------ */
.footer {
  background: #f2f2ed;
}

.footer-inner {
  max-width: 128rem;
  margin-inline: auto;
  padding-top: 2.4rem;
  padding-bottom: 1.4rem;
}
@media (max-width: 750px) {
  .footer-inner {
    padding-bottom: 2.4rem;
  }
}

.footer__logo {
  width: 9.6rem;
  height: 2.5rem;
  margin-inline: auto;
}

.footer__info {
  margin-top: 1.7rem;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  text-align: center;
}
@media (max-width: 750px) {
  .footer__info {
    margin-top: 1.6rem;
    font-size: 2rem;
    line-height: 1.6;
  }
}
.footer__info a {
  color: #1c7194;
}

.footer-bottom {
  padding-top: 2.2rem;
  padding-bottom: 2rem;
  color: #fff;
  background: #000;
}

.footer__copyright {
  font-size: 1.8rem;
  text-align: center;
}

/* container
------------------------------------------------------ */
.container {
  max-width: 96rem;
  margin-inline: auto;
}
@media (max-width: 750px) {
  .container {
    padding: 0 3rem;
  }
}
.container._narrow {
  max-width: 78rem;
}

/*------------------------------------------------------------------------
// Component
  ├ button
  └ 
------------------------------------------------------------------------*/
/* button
------------------------------------------------------ */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  padding: 1.3rem 2.3rem 1.7rem;
  border-radius: 100vmax;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(to bottom, #ff0328 50%, #f30017 50%);
}
.btn::before {
  position: absolute;
  content: "";
  top: -18rem;
  left: 0;
  width: 3rem;
  height: 100%;
  background: #fff;
  pointer-events: none;
  animation: shiny 4s ease-in-out infinite;
}
@keyframes shiny {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

.btn--lg {
  padding: 2rem 2.4rem;
  font-size: 2.4rem;
  letter-spacing: 0;
  text-indent: 0;
}
@media (max-width: 750px) {
  .btn--lg {
    padding: 2.6rem;
    font-size: 2.8rem;
  }
}

.btn .circle-arrow {
  position: absolute;
  right: 2.3rem;
  top: calc(50% - 1rem);
  display: inline-block;
  width: 2rem;
  height: 2rem;
}
.btn .circle-arrow::before {
  position: absolute;
  inset: 0;
  content: "";
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 0.1rem solid #fff;
}
.btn .circle-arrow::after {
  position: absolute;
  top: calc(50% - 0.3rem);
  left: calc(50% - 0.45rem);
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-top: 0.1rem solid #fff;
  border-right: 0.1rem solid #fff;
  rotate: 45deg;
}

.btn .arrow {
  position: absolute;
  right: 2.4rem;
  top: calc(50% - 1.2rem);
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
}
@media (max-width: 750px) {
  .btn .arrow {
    top: calc(50% - 1.3rem);
    width: 2.8rem;
    height: 2.8rem;
  }
}
.btn .arrow::after {
  position: absolute;
  top: calc(50% - 0.6rem);
  left: calc(50% - 0.9rem);
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-top: 0.3rem solid #fff;
  border-right: 0.3rem solid #fff;
  rotate: 45deg;
}
@media (max-width: 750px) {
  .btn .arrow::after {
    top: calc(50% - 0.7rem);
    left: calc(50% - 1.05rem);
    width: 1.4rem;
    height: 1.4rem;
  }
}

/*------------------------------------------------------------------------
// Contents
  ├ kv
  ├ partner
  ├ cta
  ├ problem
  ├ compete
  ├ startups
  ├ offer
  ├ about
  ├ feature
  ├ reason
  ├ iceberg
  ├ works
  ├ voice
  ├ flow
  ├ price
  ├ faq
  └ message
------------------------------------------------------------------------*/
/* kv
------------------------------------------------------ */
.kv {
  overflow: hidden;
  height: 67.3rem;
  background: #df1735;
}
@media (max-width: 750px) {
  .kv {
    overflow: visible;
    height: 105.9rem;
    background: linear-gradient(to right, #df1538 0%, #dd1136 50%, #e90c3d 100%);
  }
}

.kv-inner {
  position: relative;
  z-index: 0;
  max-width: 128rem;
  margin-inline: auto;
  height: 100%;
}

.kv__text {
  position: relative;
  z-index: 1;
  width: 128rem;
}
@media (max-width: 750px) {
  .kv__text {
    width: auto;
  }
}

.kv__img {
  position: absolute;
  z-index: -1;
  left: 43.3rem;
  bottom: 0;
  width: 133rem;
}
@media (max-width: 750px) {
  .kv__img {
    left: -17.3rem;
    bottom: 4.4rem;
  }
}

/* partner
------------------------------------------------------ */
.partner {
  position: relative;
  z-index: -1;
  background: #fff;
}
@media (max-width: 750px) {
  .partner {
    padding-top: 9.2rem;
    padding-bottom: 1rem;
  }
}

.partner__logo {
  height: 14rem;
  background-image: url("../img/partner-logo.png");
  background-size: 205rem 14rem;
  background-repeat: repeat-x;
  animation: loop 25s linear infinite;
  will-change: transform;
}
@keyframes loop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 128rem 0;
  }
}

/* cta
------------------------------------------------------ */
.cta {
  overflow: hidden;
  padding-top: 6.5rem;
  padding-bottom: 5.7rem;
  background: #f2f2ed;
}
@media (max-width: 750px) {
  .cta {
    padding-top: 7.8rem;
    padding-bottom: 7.6rem;
  }
}

.cta-inner {
  position: relative;
}

.cta-box {
  margin: -0.4rem;
  border-radius: 1.8rem;
  border: 0.4rem solid #ff000c;
  background: #fff;
}

.cta__title {
  padding: 0.8rem 0 0.9rem;
  border-top-left-radius: 1.4rem;
  border-top-right-radius: 1.4rem;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  background: #ff000c;
}

.cta-btn-layout {
  margin-top: 4.5rem;
  margin-right: -4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media (max-width: 750px) {
  .cta-btn-layout {
    margin-top: 3.8rem;
    margin-right: -1.5rem;
  }
}

.cta__btn-copy {
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  font-weight: bold;
}
@media (max-width: 750px) {
  .cta__btn-copy {
    font-size: 2.7rem;
    line-height: 1.2;
    text-align: center;
  }
}
.cta__btn-copy [data-style=emphasis] {
  font-size: 2.4rem;
  color: #ff000c;
}
@media (max-width: 750px) {
  .cta__btn-copy [data-style=emphasis] {
    font-size: 3rem;
  }
}
.cta__btn-copy::before, .cta__btn-copy::after {
  content: "";
  width: 3.5rem;
  height: 0.3rem;
  background: #000;
}
@media (max-width: 750px) {
  .cta__btn-copy::before, .cta__btn-copy::after {
    width: 8.4rem;
  }
}
.cta__btn-copy::before {
  rotate: 60deg;
}
.cta__btn-copy::after {
  rotate: 120deg;
}

.cta__btn {
  margin-top: 1.1rem;
  width: 48rem;
}
@media (max-width: 750px) {
  .cta__btn {
    margin-top: 1.5rem;
    width: 46rem;
  }
}

.cta__img {
  position: absolute;
  left: -9rem;
  bottom: -5.7rem;
  width: 33.2rem;
}
@media (max-width: 750px) {
  .cta__img {
    left: 0;
    bottom: -7.6rem;
    width: 33.4rem;
    height: 32rem;
  }
}

/* problem
------------------------------------------------------ */
.problem {
  padding-top: 6.6rem;
  padding-bottom: 3.1rem;
}
@media (max-width: 750px) {
  .problem {
    padding-top: 8.4rem;
    padding-bottom: 4.9rem;
  }
}

.problem__title {
  position: relative;
  z-index: 0;
  text-align: center;
  vertical-align: middle;
}
.problem__title [data-style=top] {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.problem__title [data-style=point] {
  position: relative;
  z-index: 0;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  margin-right: 0.5em;
}
.problem__title [data-style=point]::before, .problem__title [data-style=point]::after {
  position: absolute;
  top: calc(50% - 3.6rem);
  z-index: -1;
  content: "";
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 50%;
  background: #ff000c;
  opacity: 0.8;
}
.problem__title [data-style=point]::before {
  left: -1rem;
}
.problem__title [data-style=point]::after {
  right: -0.75rem;
}
.problem__title [data-style=bottom] {
  display: block;
  margin-top: 1.2rem;
  font-size: 4.2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.problem__title [data-style=underline] {
  position: relative;
  z-index: 0;
  font-size: 5.6rem;
}
.problem__title [data-style=underline]::before {
  position: absolute;
  z-index: -1;
  bottom: 0.6rem;
  content: "";
  width: 100%;
  height: 1.2rem;
  background: #fae600;
}
.problem__title::before {
  position: absolute;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  top: -4rem;
  content: "recruit activity";
  font-family: "Poppins", sans-serif;
  font-size: 11rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  color: #000;
  opacity: 0.1;
}
@media (max-width: 750px) {
  .problem__title::before {
    top: -2rem;
    font-size: 8.6rem;
  }
}

.problem-box {
  position: relative;
  margin-top: 3.9rem;
  height: 43.7rem;
  color: #fff;
  background: url("../img/problem-box-bg_pc.png") center/contain no-repeat;
}
@media (max-width: 750px) {
  .problem-box {
    margin-top: 5.4rem;
    height: 58.7rem;
    background-image: url("../img/problem-box-bg_sp.png");
  }
}

.problem__list {
  position: absolute;
  left: 9rem;
  top: 5.9rem;
}
@media (max-width: 750px) {
  .problem__list {
    left: 6.4rem;
  }
}
.problem__list li {
  position: relative;
  padding-left: 4.9rem;
  padding-bottom: 1.4rem;
  border-bottom: 0.2rem dashed #4b4b4b;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.problem__list li:not(:first-child) {
  margin-top: 2.5rem;
}
.problem__list li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 3.5rem;
  height: 3.6rem;
  background: url("../img/problem-list-check.png") center/contain no-repeat;
}

.problem__text {
  position: absolute;
  bottom: 8.5rem;
  transform: translateX(-50%);
  left: 50%;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 750px) {
  .problem__text {
    bottom: 17.5rem;
    left: 8.5rem;
    transform: translateX(0);
  }
}
.problem__text span {
  font-size: 4.8rem;
}

/* compete
------------------------------------------------------ */
.compete {
  position: relative;
  z-index: 1;
  padding-top: 5.4rem;
  padding-bottom: 19.9rem;
  color: #fff;
  background: url("../img/compete-bg.jpg") center/cover;
  -webkit-clip-path: polygon(0 -5.4rem, 100% -5.4rem, 100% calc(100% - 21rem), 50% 100%, 0 calc(100% - 21rem));
          clip-path: polygon(0 -5.4rem, 100% -5.4rem, 100% calc(100% - 21rem), 50% 100%, 0 calc(100% - 21rem));
}
@media (max-width: 750px) {
  .compete {
    padding-top: 7.6rem;
    padding-bottom: 30rem;
    -webkit-clip-path: polygon(0 -5.4rem, 100% -5.4rem, 100% calc(100% - 19rem), 50% 100%, 0 calc(100% - 19rem));
            clip-path: polygon(0 -5.4rem, 100% -5.4rem, 100% calc(100% - 19rem), 50% 100%, 0 calc(100% - 19rem));
  }
}

.compete__title {
  position: relative;
  padding-left: 12rem;
  font-size: 3.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 750px) {
  .compete__title {
    line-height: 4.8rem;
    letter-spacing: 0.05em;
  }
}
.compete__title [data-style=underline] {
  position: relative;
  z-index: 0;
}
.compete__title [data-style=underline]::before {
  position: absolute;
  z-index: -1;
  bottom: 0;
  content: "";
  width: 100%;
  height: 1.2rem;
  background: #fae600;
  opacity: 0.62;
}
.compete__title [data-style=emphasis] {
  font-size: 4.8rem;
}
.compete__title::before {
  position: absolute;
  left: -3.2rem;
  bottom: -1.1rem;
  content: "";
  width: 12.7rem;
  height: 15.5rem;
  background: url("../img/compete-img.png") center/contain no-repeat;
}
@media (max-width: 750px) {
  .compete__title::before {
    left: 1rem;
    bottom: 4rem;
  }
}

.compete__list {
  margin-top: 8.4rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .compete__list {
    margin-top: 5rem;
    display: block;
  }
}

.compete-item {
  position: relative;
  width: 46.5rem;
  height: 49.2rem;
  padding: 1rem 1.5rem 6.2rem 1.3rem;
  color: #000;
  background: url("../img/compete-item-bg_pc.png") center/contain no-repeat;
}
@media (max-width: 750px) {
  .compete-item {
    width: 69rem;
    height: 66.7rem;
    padding: 1.25rem 1.25rem 5.5rem;
    background-image: url("../img/compete-item-bg_sp.png");
  }
}
.compete-item--right {
  transform: scaleX(-1);
}
@media (max-width: 750px) {
  .compete-item--right {
    margin-top: 3.7rem;
  }
}
.compete-item--right > * {
  transform: scaleX(-1);
}

.compete-item__title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 8.4rem;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 3rem;
  text-align: center;
}
@media (max-width: 750px) {
  .compete-item__title {
    height: 11rem;
    font-size: 2.25rem;
    line-height: 3.75rem;
  }
}
.compete-item__title [data-style=color] {
  font-size: 2.2rem;
  color: #ff000c;
}
@media (max-width: 750px) {
  .compete-item__title [data-style=color] {
    font-size: 2.75rem;
  }
}
.compete-item__title [data-style=emphasis] {
  font-size: 2.8rem;
}
@media (max-width: 750px) {
  .compete-item__title [data-style=emphasis] {
    font-size: 3.5rem;
  }
}

.compete-item__img {
  position: absolute;
  width: 10.7rem;
  height: 9.3rem;
  filter: drop-shadow(0.5rem 0.5rem 1rem rgba(63, 63, 63, 0.4));
}
.compete-item__img--1 {
  left: -7.1rem;
  top: -0.2rem;
}
@media (max-width: 750px) {
  .compete-item__img--1 {
    left: -1.4rem;
    top: 1.8rem;
  }
}
.compete-item__img--2 {
  right: -2.3rem;
  top: -4.7rem;
}
.compete-item__img--3 {
  right: -1.6rem;
  top: -0.5rem;
}
@media (max-width: 750px) {
  .compete-item__img--3 {
    right: -1.6rem;
    top: -1.3rem;
  }
}
.compete-item__img--4 {
  left: -3.5rem;
  top: 2.9rem;
}
@media (max-width: 750px) {
  .compete-item__img--4 {
    left: -2.1rem;
    top: 5.4rem;
  }
}

.compete__point {
  position: absolute;
  bottom: 4.9rem;
  left: calc(50% - 7.8rem);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 15.6rem;
  height: 15.6rem;
  font-size: 5rem;
  letter-spacing: 0.04em;
  text-align: center;
  background: #4d4d4d;
  box-shadow: 0.5rem 0.5rem 1.3rem rgba(63, 63, 63, 0.5);
}
@media (max-width: 750px) {
  .compete__point {
    bottom: 9rem;
    left: calc(50% - 8.5rem);
    width: 17rem;
    height: 17rem;
    font-size: 5.5rem;
  }
}

/* startups
------------------------------------------------------ */
.startups {
  position: relative;
  z-index: 0;
  margin-top: -21rem;
  padding-top: 26.4rem;
  background: url("../img/grid-bg-repeat.png") left top/1.9rem 1.9rem repeat;
}
@media (max-width: 750px) {
  .startups {
    margin-top: -19rem;
    padding-top: 24.4rem;
  }
}
.startups::before {
  position: absolute;
  z-index: -1;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, #fff 100%);
}

.startups__title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.7rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
}
.startups__title [data-style=small] {
  font-size: 2.4rem;
}
.startups__title [data-style=color] {
  display: block;
  margin-top: 1.7rem;
  font-size: 4rem;
  color: #ff000c;
}
.startups__title::before, .startups__title::after {
  content: "";
  width: 7.6rem;
  height: 0.3rem;
  background: #000;
}
.startups__title::before {
  rotate: 66deg;
}
.startups__title::after {
  rotate: 114deg;
}

.startups__list {
  margin-top: 4.3rem;
  display: flex;
  justify-content: center;
  gap: 8rem;
}
@media (max-width: 750px) {
  .startups__list {
    margin-top: 4.7rem;
    gap: 3.5rem;
  }
}

.startups__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19.2rem;
  height: 19.5rem;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 3rem;
  text-align: center;
  background: url("../img/startups-item-bg.png") center/cover no-repeat;
}
@media (max-width: 750px) {
  .startups__item:nth-of-type(2) {
    margin-top: 5.6rem;
  }
}
.startups__item [data-style=small] {
  font-size: 2rem;
}

.startups__img {
  margin-top: -1rem;
}
@media (max-width: 750px) {
  .startups__img {
    margin-top: -11.3rem;
    width: 64.9rem;
    margin-inline: auto;
  }
}

.startups__text {
  position: relative;
  z-index: 1;
  width: 76.3rem;
  height: 31.2rem;
  margin-top: 2.6rem;
  margin-left: auto;
  margin-right: -5rem;
  transform: translateY(2.6rem);
  padding-top: 8.6rem;
  padding-left: 7.5rem;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 3.6rem;
  color: #fff;
  background: url("../img/startups-text-bg_pc.png") center/contain no-repeat;
}
.startups__text span {
  color: #f7e732;
}
@media (max-width: 750px) {
  .startups__text {
    margin-top: 4rem;
    margin-right: 0;
    padding-top: 7.6rem;
    padding-left: 4.7rem;
    width: 67rem;
    height: 31.6rem;
    background-image: url("../img/startups-text-bg_sp.png");
  }
}

@media (max-width: 750px) {
  .startups__bg-parts {
    display: none;
  }
}
.startups__bg-parts::before, .startups__bg-parts::after {
  position: absolute;
  z-index: -1;
  top: 32.5rem;
  content: "";
  width: 30.4rem;
  height: 44rem;
  background: url("../img/startups-bg-parts.png") center/contain no-repeat;
}
.startups__bg-parts::before {
  left: calc(50% - 43rem);
  transform: translateX(-100%);
}
.startups__bg-parts::after {
  right: calc(50% - 43rem);
  transform: translateX(100%);
}

/* offer
------------------------------------------------------ */
.offer {
  overflow: hidden;
  position: relative;
  z-index: -1;
  overflow: hidden;
  height: 60.3rem;
  background: #df1735;
}
@media (max-width: 750px) {
  .offer {
    height: 44.9rem;
  }
}

.offer__text {
  position: relative;
  z-index: 1;
}

.offer-inner {
  position: relative;
  max-width: 128rem;
  margin-inline: auto;
}

.offer__img {
  position: absolute;
  left: -29.4rem;
  top: -5.4rem;
  width: 199.3rem;
}
@media (max-width: 750px) {
  .offer__img {
    left: 0;
    top: 0;
    width: 75rem;
  }
}

/* about
------------------------------------------------------ */
.about {
  padding-bottom: 1.3rem;
  background: url("../img/about-bg-repeat.png") left top/1.6rem 1.6rem repeat;
}
@media (max-width: 750px) {
  .about {
    padding-bottom: 2.8rem;
  }
}

.about-box {
  transform: translateY(-6.5rem);
  position: relative;
  z-index: 0;
  border-radius: 1.8rem;
  padding: 3.0rem 9rem 4.2rem;
  margin: -0.3rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 4rem;
  border: 0.3rem solid #ff000c;
  background: #fff;
}
@media (max-width: 750px) {
  .about-box {
    transform: translateY(-4.8rem);
    padding: 4.1rem 3rem 4.5rem;
    gap: 3.5rem;
  }
}

.about-box__body {
  flex-grow: 1;
}

.about__title {
  padding-bottom: 1.6rem;
  border-bottom: 0.4rem dotted #5b5b5b;
  text-align: center;
}
@media (max-width: 750px) {
  .about__title {
    padding-bottom: 2.1rem;
  }
}
.about__title [data-style=top] {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .about__title [data-style=top] {
    font-size: 2.4rem;
  }
}
.about__title [data-style=top]::after {
  display: inline-block;
  content: "";
  width: 4.1rem;
  height: 4.1rem;
  margin-left: 1rem;
  background: url("../img/about-title-parts.png") center/contain no-repeat;
}
@media (max-width: 750px) {
  .about__title [data-style=top]::after {
    width: 3.3rem;
    height: 3.3rem;
  }
}
.about__title [data-style=bottom] {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 750px) {
  .about__title [data-style=bottom] {
    margin-top: 1.4rem;
  }
}
.about__title [data-style=logo] {
  width: 36rem;
  height: 9.8rem;
  margin-right: 0.7rem;
}
@media (max-width: 750px) {
  .about__title [data-style=logo] {
    width: 29rem;
    height: 7.9rem;
  }
}
.about__title [data-style=text] {
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 0.02em;
}
@media (max-width: 750px) {
  .about__title [data-style=text] {
    font-size: 2.9rem;
  }
}

.about__text {
  margin-top: 2.8rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 750px) {
  .about__text {
    font-size: 2.2rem;
    line-height: 3.6rem;
  }
  .about__text [data-style=space] {
    display: block;
    content: "";
    height: 1.3rem;
  }
}

.about__img {
  flex-shrink: 0;
  width: 19.6rem;
  height: 40.5rem;
}

.about-box__bg-parts {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
}
.about-box__bg-parts span {
  position: absolute;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: #ff000c;
}
.about-box__bg-parts span:nth-of-type(1) {
  top: 2rem;
  left: 2rem;
}
.about-box__bg-parts span:nth-of-type(2) {
  top: 2rem;
  right: 2rem;
}
.about-box__bg-parts span:nth-of-type(3) {
  bottom: 2rem;
  left: 2rem;
}
.about-box__bg-parts span:nth-of-type(4) {
  bottom: 2rem;
  right: 2rem;
}

/* modaal.js の設定 */
.modaal-video-wrap {
  max-width: 540px;
  margin: 0 auto;
}

.modaal-video-container {
  max-width: 540px;
  height: auto;
  aspect-ratio: 9/16;
}

.modaal-video .modaal-inner-wrapper {
  padding: 80px 20px;
}

.modaal-close:after,
.modaal-close:before {
  width: 2px;
  border-radius: 0;
  background: #fff;
}

.modaal-close:focus,
.modaal-close:focus,
.modaal-close:hover,
.modaal-close:hover {
  background: none;
  opacity: 0.7;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #fff;
}

/* feature
------------------------------------------------------ */
.feature {
  position: relative;
  padding-top: 3.8rem;
  padding-bottom: 8.8rem;
  background: #f2f2ed;
}
@media (max-width: 750px) {
  .feature {
    padding-top: 9.4rem;
    padding-bottom: 8.5rem;
  }
}

.feature__title {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 3.7rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  color: #ff000c;
}
.feature__title [data-style=logo] {
  width: 29.7rem;
  margin-right: 0.6rem;
}
.feature__title::before {
  position: absolute;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  top: -1rem;
  content: "what is backstage ?";
  font-family: "Poppins", sans-serif;
  font-size: 8.9rem;
  font-weight: 600;
  line-height: 6.5rem;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  color: #000;
  opacity: 0.06;
}
@media (max-width: 750px) {
  .feature__title::before {
    top: -2rem;
    font-size: 6.5rem;
  }
}
.feature__title::after {
  display: inline-block;
  content: "";
  width: 9rem;
  height: 8.6rem;
  margin-left: 1.8rem;
  background: url("../img/feature-title-img.png") center/contain no-repeat;
}

.feature__list {
  margin-top: 5.2rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .feature__list {
    margin-top: 6.6rem;
    display: block;
  }
}

.feature-item {
  position: relative;
  z-index: 0;
  width: 30rem;
  border-radius: 1.8rem;
  background: #fff;
}
@media (max-width: 750px) {
  .feature-item {
    width: 100%;
  }
  .feature-item:not(:first-child) {
    margin-top: 5rem;
  }
}
.feature-item::before {
  position: absolute;
  z-index: 1;
  left: calc(50% - 2.5rem);
  top: -2.5rem;
  content: "";
  width: 5rem;
  height: 5rem;
  background: url("../img/feature-list-check.png") center/contain no-repeat;
}

.feature-item-inner {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 4.3rem 2.5rem 1.8rem;
  border-radius: inherit;
}
@media (max-width: 750px) {
  .feature-item-inner {
    display: block;
    padding: 5rem 3rem 3rem;
  }
}
.feature-item-inner::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 0.6rem;
  background: #ff000c;
}

.feature-item__title {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 3.4rem;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 750px) {
  .feature-item__title {
    max-width: 38rem;
    margin-right: auto;
    font-size: 2.9rem;
    line-height: 4.1rem;
  }
}
.feature-item__title [data-style=color] {
  color: #ff000c;
}
.feature-item__title [data-style=num] {
  font-size: 3.4rem;
}

.feature-item__img {
  margin-top: 1.3rem;
  height: 11.4rem;
  margin-inline: auto;
}
@media (max-width: 750px) {
  .feature-item__img {
    position: absolute;
    top: 6rem;
    right: 4rem;
    margin-top: 0;
  }
}
.feature-item__img img {
  width: auto;
  height: 100%;
}

.feature-item__text {
  margin-top: 1.3rem;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .feature-item__text {
    max-width: 38rem;
    margin-top: 2rem;
    margin-right: auto;
    font-size: 2.4rem;
  }
}

/* reason
------------------------------------------------------ */
.reason-head {
  height: 15.4rem;
  color: #fff;
  background: #ff000c;
}

.reason-head-inner {
  position: relative;
  z-index: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reason__title {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
}
.reason__title span {
  font-size: 2em;
}
.reason__title::before {
  position: absolute;
  z-index: 0;
  left: 2.9rem;
  bottom: 0;
  content: "";
  width: 22.2rem;
  height: 14.4rem;
  background: url("../img/reason-title-img_left_pc.png") center/contain no-repeat;
}
@media (max-width: 750px) {
  .reason__title::before {
    left: 0;
    width: 14.9rem;
    height: 13.8rem;
    background-image: url("../img/reason-title-img_left_sp.png");
  }
}
.reason__title::after {
  position: absolute;
  z-index: 1;
  right: 11.3rem;
  bottom: 0;
  content: "";
  width: 10.8rem;
  height: 17.1rem;
  background: url("../img/reason-title-img_right.png") center/contain no-repeat;
}
@media (max-width: 750px) {
  .reason__title::after {
    right: 0;
  }
}

.reason-body {
  position: relative;
  z-index: 0;
  padding-top: 7.8rem;
  padding-bottom: 10.6rem;
  background: url("../img/grid-bg-repeat.png") left top/1.9rem 1.9rem repeat;
}
@media (max-width: 750px) {
  .reason-body {
    padding-top: 5rem;
    padding-bottom: 11.9rem;
  }
}

.reason-box {
  position: relative;
}
.reason-box + .reason-box {
  margin-top: 6.8rem;
}
@media (max-width: 750px) {
  .reason-box + .reason-box {
    margin-top: 5.2rem;
  }
}

.reason-box-content {
  position: relative;
  z-index: -1;
  width: 54.5rem;
  min-height: 42rem;
  padding: 6.8rem 9.5rem 11.5rem 4rem;
  border-radius: 1.5rem;
  background: #f2f2ed;
}
@media (max-width: 750px) {
  .reason-box-content {
    width: 100%;
    min-height: 52rem;
    padding: 8.7rem 3rem 21rem;
  }
}
.reason-box-content::before {
  position: absolute;
  z-index: 1;
  top: 2.4rem;
  right: 12rem;
  font-family: "Poppins", sans-serif;
  font-size: 14.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #000;
  opacity: 0.12;
}
@media (max-width: 750px) {
  .reason-box-content::before {
    right: 3rem;
  }
}
.reason-box-content::after {
  position: absolute;
  right: 12rem;
  bottom: 0;
  content: "";
  width: 14rem;
  height: 14rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 750px) {
  .reason-box-content::after {
    right: calc(50% - 7rem);
    bottom: 7rem;
  }
}

.reason-box__fukidashi {
  position: absolute;
  top: -1rem;
  left: 4rem;
  display: block;
  width: 15.7rem;
  height: 7.2rem;
  padding-top: 1.6rem;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-align: center;
  color: #ff000c;
  background: url("../img/reason-fukidashi-bg.png") center/contain no-repeat;
}
@media (max-width: 750px) {
  .reason-box__fukidashi {
    left: 3rem;
  }
}

.reason-box__title {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.reason-box__text {
  margin-top: 2rem;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 3rem;
}
@media (max-width: 750px) {
  .reason-box__text {
    margin-top: 4rem;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.reason-box__graph {
  position: absolute;
  z-index: 1;
  top: 3.3rem;
  width: 46rem;
  border-radius: 1.5rem;
  box-shadow: 0.4rem 0.4rem 0 rgba(102, 102, 102, 0.33);
}
@media (max-width: 750px) {
  .reason-box__graph {
    position: relative;
    top: initial;
    width: 63rem;
    margin-top: -7rem;
    margin-inline: auto;
  }
}
.reason-box__graph::after {
  position: absolute;
  content: "";
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.reason-box:nth-of-type(odd) .reason-box__graph {
  right: 4rem;
}
@media (max-width: 750px) {
  .reason-box:nth-of-type(odd) .reason-box__graph {
    right: initial;
  }
}

.reason-box:nth-of-type(even) .reason-box-content {
  padding: 6.8rem 4rem 11.5rem 9.5rem;
  margin-left: auto;
}
@media (max-width: 750px) {
  .reason-box:nth-of-type(even) .reason-box-content {
    padding: 8.7rem 3rem 21rem;
  }
}
.reason-box:nth-of-type(even) .reason-box__graph {
  left: 0;
}
@media (max-width: 750px) {
  .reason-box:nth-of-type(even) .reason-box__graph {
    left: initial;
  }
}
.reason-box:nth-of-type(even) .reason-box__fukidashi {
  left: 9.5rem;
}
@media (max-width: 750px) {
  .reason-box:nth-of-type(even) .reason-box__fukidashi {
    left: 3rem;
  }
}

.reason-box:nth-of-type(1) .reason-box-content::before {
  content: "01";
}
.reason-box:nth-of-type(1) .reason-box-content::after {
  background-image: url("../img/reason-box-img_01.png");
}
.reason-box:nth-of-type(1) .reason-box__graph::after {
  right: -3.8rem;
  top: 5.8rem;
  width: 15.3rem;
  height: 15.3rem;
  background-image: url("../img/reason-graph-point_01.png");
}
@media (max-width: 750px) {
  .reason-box:nth-of-type(1) .reason-box__graph::after {
    top: 10.3rem;
    right: 7.3rem;
    width: 18.3rem;
    height: 18.3rem;
  }
}

.reason-box:nth-of-type(2) .reason-box-content::before {
  content: "02";
  right: 6rem;
}
@media (max-width: 750px) {
  .reason-box:nth-of-type(2) .reason-box-content::before {
    right: 4.5rem;
  }
}
.reason-box:nth-of-type(2) .reason-box-content::after {
  background-image: url("../img/reason-box-img_02.png");
}
.reason-box:nth-of-type(2) .reason-box__graph::after {
  right: -3.5rem;
  top: -5.5rem;
  width: 16.1rem;
  height: 16.1rem;
  background-image: url("../img/reason-graph-point_02.png");
}
@media (max-width: 750px) {
  .reason-box:nth-of-type(2) .reason-box__graph::after {
    width: 18.2rem;
    height: 18.2rem;
    top: -5.2rem;
    right: -2.6rem;
  }
}

.reason-box:nth-of-type(3) .reason-box-content::before {
  content: "03";
}
.reason-box:nth-of-type(3) .reason-box-content::after {
  background-image: url("../img/reason-box-img_03.png");
}
.reason-box:nth-of-type(3) .reason-box__graph::after {
  right: -4.8rem;
  top: 6.1rem;
  width: 19.9rem;
  height: 19.9rem;
  background-image: url("../img/reason-graph-point_03.png");
}
@media (max-width: 750px) {
  .reason-box:nth-of-type(3) .reason-box__graph::after {
    top: 10rem;
    right: 6.6rem;
  }
}

.reason__text {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  align-items: center;
  height: 8rem;
  padding-left: 2rem;
  border-left: 0.2rem solid;
  font-size: 3.6rem;
  font-weight: bold;
}

/* iceberg
------------------------------------------------------ */
.iceberg {
  position: relative;
  z-index: 0;
  background: #bce0f7;
}
.iceberg::after {
  position: absolute;
  z-index: -1;
  bottom: 0;
  content: "";
  width: 100%;
  height: 29.1rem;
  background: #7CA9C8;
}

.iceberg-inner {
  position: relative;
  max-width: 128rem;
  margin-inline: auto;
}

.iceberg__title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 5rem;
  width: 100%;
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 5rem;
  text-align: center;
}
.iceberg__title [data-style=color] {
  font-size: 3.2rem;
  color: #ff000c;
}
.iceberg__title [data-style=emphasis] {
  position: relative;
  z-index: 0;
  font-size: 4.2rem;
  letter-spacing: 0.1em;
}
.iceberg__title [data-style=emphasis]::before {
  position: absolute;
  z-index: -1;
  bottom: 0;
  content: "";
  width: 100%;
  height: 1.4rem;
  background: #fff;
}

/* works
------------------------------------------------------ */
.works {
  position: relative;
  padding-top: 5.7rem;
  padding-bottom: 6.2rem;
  background: url("../img/about-bg-repeat.png") left top/1.6rem 1.6rem repeat;
}
@media (max-width: 750px) {
  .works {
    padding-top: 8.2rem;
  }
}
.works::before, .works::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1.3rem;
}
.works::before {
  width: 100%;
  background: #e5c3c5;
}
.works::after {
  width: 50%;
  background: #ff0328;
  -webkit-clip-path: polygon(0 0, 100% 0%, calc(100% - 2.7rem) 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, calc(100% - 2.7rem) 100%, 0% 100%);
}

.works__title {
  position: relative;
  z-index: 0;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 3.6rem;
}
@media (max-width: 750px) {
  .works__title {
    font-size: 2.4rem;
  }
}
.works__title span {
  font-size: 3.8rem;
}
.works__title::after {
  position: absolute;
  z-index: -2;
  left: 50%;
  transform: translateX(-50%);
  top: -1.9rem;
  content: "our works";
  font-family: "Poppins", sans-serif;
  font-size: 8.9rem;
  font-weight: 600;
  line-height: 6.5rem;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  text-shadow: 0.2rem 0.2rem 0 #fff, -0.2rem -0.2rem 0 #fff;
}
.works__title::before {
  position: absolute;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  top: -1.9rem;
  content: "our works";
  font-family: "Poppins", sans-serif;
  font-size: 8.9rem;
  font-weight: 600;
  line-height: 6.5rem;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  color: #000;
  opacity: 0.1;
}

/*＝＝＝＝＝＝＝＝＝＝　▼　ここから　▼　＝＝＝＝＝＝＝＝＝＝*/
.works__list {
  margin-top: 3.5rem;
  margin-inline: calc(50% - 50vw);
  display: flex;
  justify-content: center;
  gap: 4.2rem;
}

@media (min-width: 960px) {
  .works__list {
    overflow-x: scroll;
    padding: 0 3rem 3rem;
    justify-content: flex-start;
    max-width: 960px;
    margin: 0 auto; /* 中央揃え */
    margin-top: 5rem;
  }
}

@media (max-width: 960px) and (min-width: 750px) {
  .works__list {
    overflow-x: scroll;
    padding: 0 3rem 3rem;
    margin-top: 5rem;
    justify-content: flex-start;
  }
  }

@media (max-width: 750px) {
  .works__list {
    overflow-x: scroll;
    padding: 0 3rem 3rem;
    margin-top: 5rem;
    justify-content: flex-start;
  }
}
/*＝＝＝＝＝＝＝＝＝＝　▲　ここまで　▲　＝＝＝＝＝＝＝＝＝＝*/
.works-frame {
  position: relative;
  width: 209px;
  height: 426px;
  background: url("../img/works-frame.png") center/cover no-repeat;
}

.works__movie {
  position: absolute;
  top: 30px;
  left: 4.5px;
  width: calc(100% - 9px);
  aspect-ratio: 9/16;
  -o-object-fit: contain;
     object-fit: contain;
}
.works__movie iframe {
  width: 100%;
  height: 100%;
}

.works__name {
  margin-top: 2.5rem;
  font-size: 1.6rem;
  text-align: center;
  line-height: 2.6rem;/*20240918追加*/
}
@media (max-width: 750px) {
  .works__name {
    font-size: 2.4rem;
    line-height: 2.8rem;
  }
}
.works__name .company-name{
  font-weight:bold
}


/* voice
------------------------------------------------------ */
.voice {
  padding-top: 5.5rem;
  padding-bottom: 8.5rem;
  background: #f2f2ed;
}
@media (max-width: 750px) {
  .voice {
    padding-top: 9rem;
    padding-bottom: 7.4rem;
  }
}

.voice__title {
  position: relative;
  z-index: 0;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 3.6rem;
}
@media (max-width: 750px) {
  .voice__title {
    font-size: 2.4rem;
  }
}
.voice__title span {
  font-size: 3.8rem;
}
.voice__title::before {
  position: absolute;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  top: -1.7rem;
  content: "user's voice";
  font-family: "Poppins", sans-serif;
  font-size: 8.9rem;
  font-weight: 600;
  line-height: 6.5rem;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  color: #000;
  opacity: 0.1;
}

.voice-box {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
  padding: 3rem;
  border-radius: 1.8rem;
  background: #fff;
  box-shadow: 0.4rem 0.4rem 0 rgba(102, 102, 102, 0.33);
}
@media (max-width: 750px) {
  .voice-box {
    gap: 3rem;
  }
}
.voice-box + .voice-box {
  margin-top: 2.1rem;
}

.voice-box__body {
  flex-grow: 1;
}

.voice-box__title {
  padding-left: 1.6rem;
  border-left: 0.4rem solid #ff000c;
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 3.25rem;
}

.voice-box__text {
  margin-top: 1.2rem;
  padding-left: 0.8rem;
  font-size: 1.6rem;
  line-height: 2.6rem;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .voice-box__text {
    margin-top: 2.2rem;
    padding-left: 0;
    font-size: 2.2rem;
    line-height: 3.2rem;
  }
}

.voice-box__img {
  width: 16.1rem;
}
@media (max-width: 750px) {
  .voice-box__img {
    width: 13.6rem;
  }
}

.voice-box__job {
  display: block;
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 750px) {
  .voice-box__job {
    margin-top: 1.3rem;
    font-size: 2rem;
  }
}

.voice-box__scale {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  margin-inline: auto;
  width: 13.3rem;
  height: 3.4rem;
  border-radius: 100vmax;
  border: 0.2rem solid;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  color: #ff000c;
}
.voice-box__scale [data-style=num] {
  font-size: 1.5em;
}

/* flow
------------------------------------------------------ */
.flow {
  padding-top: 8.2rem;
  padding-bottom: 7.2rem;
  background: url("../img/grid-bg-repeat.png") left top/1.9rem 1.9rem repeat;
}
@media (max-width: 750px) {
  .flow {
    padding-top: 6.9rem;
    padding-bottom: 9rem;
  }
}

.flow__title {
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-align: center;
}

.flow__list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 7.7rem;
  margin-inline: -12rem;
}
@media (max-width: 750px) {
  .flow__list {
    display: block;
    margin-top: 4.2rem;
    margin-inline: auto;
  }
}

.flow-item {
  position: relative;
  width: 19.5rem;
  height: 19.5rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #f2f2ed;
}
@media (max-width: 750px) {
  .flow-item {
    width: calc(100% - 3rem);
    height: 9rem;
    margin-left: auto;
    padding: 0 5.4rem;
    border-radius: 3rem;
    flex-direction: row;
    justify-content: flex-start;
    gap: 2.2rem;
  }
  .flow-item:not(:first-child) {
    margin-top: 1.6rem;
  }
}
.flow-item:not(:last-child)::after {
  position: absolute;
  z-index: 1;
  right: -3.3rem;
  top: calc(50% - 1.75rem);
  content: "";
  width: 4rem;
  height: 3.5rem;
  background: url("../img/flow-arrow.png") center/contain no-repeat;
}
@media (max-width: 750px) {
  .flow-item:not(:last-child)::after {
    right: calc(50% - 1.75rem);
    top: initial;
    bottom: -2.5rem;
    rotate: 90deg;
  }
}

.flow-item__step {
  position: absolute;
  left: calc(50% - 3.3rem);
  top: -2.5rem;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  width: 6.6rem;
  height: 6.6rem;
  border-radius: 50%;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  background: #ff000c;
}
.flow-item__step [data-style=num] {
  font-size: 2.8rem;
  font-weight: 600;
}
@media (max-width: 750px) {
  .flow-item__step {
    left: -3rem;
    top: calc(50% - 3.3rem);
  }
}

.flow-item__img {
  display: block;
  width: 9rem;
}

.flow-item__text {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -1rem;
  min-height: 4.32rem;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  color: #f72e00;
}
@media (max-width: 750px) {
  .flow-item__text {
    margin-top: 0;
    font-size: 2.4rem;
  }
}

.flow__text-box {
  position: relative;
  margin-top: 6.9rem;
  padding: 3rem 6rem;
  border-radius: 100vmax;
  background: #f2f2ed;
}
@media (max-width: 750px) {
  .flow__text-box {
    margin-top: 4.2rem;
    padding: 3rem;
    border-radius: 4rem;
  }
}

.flow__text {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 3.3rem;
}
.flow__text + .flow__text {
  margin-top: 1rem;
}
.flow__text [data-style=top] {
  font-size: 2rem;
}
.flow__text [data-style=emphasis] {
  font-size: 2.8rem;
  line-height: 4rem;
}
.flow__text [data-style=color] {
  position: relative;
  z-index: 0;
  color: #f72e00;
}
.flow__text [data-style=color]::before {
  position: absolute;
  z-index: -1;
  bottom: 0;
  content: "";
  width: 100%;
  height: 1.4rem;
  background: #fae600;
}
.flow__text [data-style=small] {
  font-size: 1.8rem;
}
.flow__text [data-style=dot] {
  position: relative;
  color: #f72e00;
}
.flow__text [data-style=dot]::before {
  position: absolute;
  left: calc(50% - 0.2rem);
  top: 0;
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #f72e00;
}

.flow__img {
  position: absolute;
  right: 2.6rem;
  bottom: 0;
  width: 21.5rem;
}
@media (max-width: 750px) {
  .flow__img {
    right: 0;
  }
}

/* banner
------------------------------------------------------ */
.banner {
  position: relative;
  height: 25.6rem;
  background: #ff000c;
}
.banner::after {
  position: absolute;
  left: calc(50% + 12.6rem);
  top: 0;
  content: "";
  width: 67.7rem;
  height: 100%;
  background: url("../img/banner-img_pc.png") center/contain no-repeat;
}
@media (max-width: 750px) {
  .banner::after {
    left: 50%;
    width: 37.5rem;
    background-image: url("../img/banner-img_sp.png");
  }
}

.banner__text {
  width: 48rem;
}
@media (max-width: 750px) {
  .banner__text {
    width: 37.5rem;
    margin-left: -3rem;
  }
}

/* price
------------------------------------------------------ */
.price {
  padding-top: 10.1rem;
  padding-bottom: 7.6rem;
  background: url("../img/price-bg_pc.png") center/cover;
}
@media (max-width: 750px) {
  .price {
    padding-top: 8.8rem;
    padding-top: 8.3rem;
    background-image: url("../img/price-bg_sp.png");
  }
}

.price-box {
  position: relative;
  z-index: 0;
  border-radius: 1.8rem;
  padding: 5.5rem 3rem 5rem;
  margin: -0.3rem;
  border: 0.3rem solid #ff000c;
  background: #fff;
}
@media (max-width: 750px) {
  .price-box {
    padding: 5.5rem 3rem 3rem;
  }
}

.price__title {
  position: absolute;
  left: calc(50% - 15.9rem);
  top: -2.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 31.8rem;
  height: 6.7rem;
  border-radius: 100vmax;
  font-size: 3.4rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  color: #fff;
  background: #ff000c;
}
.price__title::before {
  content: "";
  width: 3.5rem;
  height: 3.7rem;
  margin-right: 1.4rem;
  background: url("../img/price-title-img.png") center/contain no-repeat;
}

.price-list__row {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 0.2rem dotted #393939;
}

.price-list__title {
  display: inline-block;
  min-width: 13rem;
  height: 4.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vmax;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #ff000c;
}

.price-list__text {
  flex-grow: 1;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.price-list__text span {
  font-size: 3.2rem;
}

.price-content {
  margin-top: 3.6rem;
  display: grid;
  grid-template-areas: "title list" "title text";
  gap: 0.8rem 1.2rem;
  grid-template-columns: auto 1fr;
}
@media (max-width: 750px) {
  .price-content {
    display: block;
  }
}

.price-content__title {
  grid-area: title;
  width: 13rem;
  height: 12.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #000;
}
@media (max-width: 750px) {
  .price-content__title {
    width: 100%;
    height: 3.8rem;
    font-size: 2rem;
  }
}

.price-content__list {
  grid-area: list;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
@media (max-width: 750px) {
  .price-content__list {
    margin-top: 0.9rem;
  }
}
.price-content__list li {
  width: calc((100% - 1.6rem) / 3);
  padding: 0.8rem;
  border-radius: 1rem;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
  color: #fff;
  background: #817c7a;
}
@media (max-width: 750px) {
  .price-content__list li {
    padding: 0.9rem;
    font-size: 2rem;
  }
}

.price-content__text {
  position: relative;
  grid-area: text;
  padding-left: 1em;
  font-size: 1.4rem;
  line-height: 1.8rem;
}
@media (max-width: 750px) {
  .price-content__text {
    margin-top: 1.4rem;
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
.price-content__text::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "※";
}

/* faq
------------------------------------------------------ */
.faq {
  padding-top: 7.5rem;
  padding-bottom: 6.4rem;
  background: #f2f2ed;
}
@media (max-width: 750px) {
  .faq {
    padding-top: 6.6rem;
    padding-bottom: 7.4rem;
  }
}

.faq__title {
  position: relative;
  z-index: 0;
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-align: center;
}
.faq__title::before {
  position: absolute;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  top: -1.7rem;
  content: "faq";
  font-family: "Poppins", sans-serif;
  font-size: 8.9rem;
  font-weight: 600;
  line-height: 6.5rem;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  color: #000;
  opacity: 0.1;
}
.faq__title span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.9rem;
}
.faq__title span::before, .faq__title span::after {
  content: "";
  display: block;
  width: 4.2rem;
  height: 0.2rem;
  background: #000;
}

.faq__list {
  margin-top: 4.2rem;
}
@media (max-width: 750px) {
  .faq__list {
    margin-top: 5.4rem;
  }
}

.faq-accordion {
  background: #fff;
  padding: 1.4rem 1.2rem;
  border-radius: 1.8rem;
  box-shadow: 0.3rem 0.3rem rgba(102, 102, 102, 0.33);
}
.faq-accordion:not(:first-child) {
  margin-top: 2.3rem;
}

.faq-accordion__inner {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
}
.faq-accordion__inner:has(.faq-accordion__text) {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  padding-bottom: 0.5rem;
  border-top: 0.2rem dotted #000;
}

.faq-accordion__q-icon {
  flex-shrink: 0;
  display: block;
  margin-top: 0.15rem;
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 50%;
  padding-top: 0.6rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: #ff0328;
}

.faq-accordion__action {
  flex-shrink: 0;
  position: relative;
  display: block;
  width: 4rem;
  height: 4rem;
  margin-left: auto;
}
.faq-accordion__action::before, .faq-accordion__action::after {
  position: absolute;
  inset: 0;
  margin: auto;
  content: "";
  display: block;
  width: 50%;
  height: 0;
  border-top: 0.4rem solid #ff0328;
}
.faq-accordion__action::after {
  rotate: 90deg;
}
.faq-accordion__toggle[aria-expanded=true] .faq-accordion__action::after {
  rotate: 0deg;
  border-top: 0;
}

.faq-accordion__toggle {
  cursor: pointer;
}

.faq-accordion__title {
  flex-grow: 1;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.8181818182;
}

.faq-accordion__panel {
  display: none;
}

.faq-accordion__a-icon {
  flex-shrink: 0;
  display: block;
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 50%;
  padding-top: 0.6rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  color: #ff0328;
  background: #fff;
  border: 0.2rem solid;
}

.faq-accordion__text {
  flex-grow: 1;
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
@media (max-width: 750px) {
  .faq-accordion__text {
    font-size: 2rem;
    line-height: 1.6;
  }
}

/* message
------------------------------------------------------ */
.message {
  padding-top: 7.5rem;
  padding-bottom: 9.4rem;
  background: url("../img/message-bg_pc.png") center/cover;
}
@media (max-width: 750px) {
  .message {
    padding-top: 7.3rem;
    padding-bottom: 8rem;
    background-image: url("../img/message-bg_sp.png");
  }
}

.message__title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  letter-spacing: 0.02em;
}
.message__title::before {
  content: "";
  width: 3.6rem;
  height: 3.8rem;
  margin-right: 1.6rem;
  background: url("../img/message-title-img.png") center/contain no-repeat;
}

.message-content {
  margin-top: 5.2rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem;
}
@media (max-width: 750px) {
  .message-content {
    flex-direction: column-reverse;
    gap: 4.6rem;
  }
}

.message-content__title {
  padding-bottom: 1.1rem;
  border-bottom: 0.2rem solid;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
@media (max-width: 750px) {
  .message-content__title {
    padding-bottom: 1.5rem;
  }
}

.message-content__text {
  margin-top: 2rem;
  font-size: 1.8rem;
  line-height: 1.2;
}
@media (max-width: 750px) {
  .message-content__text {
    margin-top: 2.4rem;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.message__img {
  flex-shrink: 0;
  width: 50rem;
}
@media (max-width: 750px) {
  .message__img {
    width: auto;
  }
}
.message__img img {
  border-radius: 1.8rem;
}

.message__name {
  margin-top: 1.8rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: right;
}
@media (max-width: 750px) {
  .message__name {
    margin-top: 3.6rem;
    font-size: 2.4rem;
  }
}

/*------------------------------------------------------------------------
// Other
  └ utilities 
------------------------------------------------------------------------*/
/* スクリーンリーダーから隠す */
.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
}

/* 表示切り替え */
.pc-hidden {
  display: none;
}
@media (max-width: 750px) {
  .pc-hidden {
    display: initial;
  }
}

.sp-hidden {
  display: initial;
}
@media (max-width: 750px) {
  .sp-hidden {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */