@charset "UTF-8";
html {
  --color-primary: #040c3b;
  --color-primary-light: #454c72;
  --color-primary-dark: #E4E4F2;
  --color-primary-bg: #F6F6FA;
  --color-secondary: #f0cb00;
  --color-secondary-light: #ffd900;
  --color-text: #040c3b;
  --color-white: #ffffff;
  --color-list-dot: #E5E6EB;
  --color-grey: #eaeaea
  height: 100%;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.5;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
  padding: 0;
  background-color: var(--color-white);
  font-size: 1.6rem;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}

/*-------------------------
共通
-------------------------*/
img {
  width: 100%;
}

p {
  line-height: 1.5;
}

br.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  br.pc {
    display: none;
  }
}
br.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  br.sp {
    display: block;
  }
}

.highlight {
  font-weight: bold;
}
.highlight.padding {
  padding: 0.02em 1.6rem;
}
@media screen and (max-width: 768px) {
  .highlight.padding {
    padding: 0.02em 0.8rem;
  }
}
.highlight.blue {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.highlight.yellow {
  background-color: var(--color-secondary);
}
.highlight.white {
  background-color: var(--color-white);
  color: var(--color-primary-light);
  font-weight: 500;
}
.highlight.half {
  background-color: inherit;
  position: relative;
  z-index: 1;
}
.highlight.half::before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0;
  width: 100%;
  height: 35%;
  z-index: -1;
}
.highlight.half.blue::before {
  background-color: var(--color-primary);
}
.highlight.half.yellow::before {
  background-color: var(--color-secondary);
}

a.external-link {
  transition: opacity 0.3s ease;
}
a.external-link:hover {
  opacity: 0.8;
}
a.external-link button {
  background-color: var(--color-primary);
  border-radius: 0.8rem;
  padding: 2.15rem 2.25rem 2.05rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4.2rem;
}
a.external-link button .button__label {
  display: flex;
  flex-direction: column;
  row-gap: 0.6rem;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  font-weight: bold;
}
a.external-link button .button__label .button__trial-message {
  color: var(--color-secondary);
}
a.external-link button .button__label .button__label-text {
  color: var(--color-white);
}
a.external-link button .icon {
  width: 1.649rem;
  height: 1.75rem;
}

p.title-en {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 2.2rem;
  color: var(--color-secondary);
}
@media screen and (max-width: 768px) {
  p.title-en {
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
  }
}

h2 {
  text-align: center;
  font-size: 4.4rem;
  line-height: 1.2;
  font-weight: bold;
  color: var(--color-primary);
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 2.4rem;
  }
}

/*-------------------------
  メニュー
-------------------------*/
aside {
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 9;
  width: 100vw;
  background-color: var(--color-white);
  padding-bottom: 7.3rem;
  transition: top 0.3s ease;
}
@media screen and (max-width: 768px) {
  aside.active {
    top: 0;
  }
}
aside .aside__header {
  padding: 2.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "MFW-UDShinGoPro-Bold", sans-serif;
  font-size: 1.6rem;
}
aside .aside__header .aside__close .aside__title {
  font-weight: 600;
  font-size: 1.6rem;
}
aside .aside__header .aside__close .header__nav__close {
  width: 3.2rem;
  height: 0.1rem;
  transform: rotate(30deg);
  background-color: var(--color-primary-light);
  margin-bottom: 0.4rem;
  position: relative;
}
aside .aside__header .aside__close .header__nav__close::before {
  content: "";
  position: absolute;
  transform: rotate(-60deg);
  width: 3.2rem;
  height: 0.1rem;
  background-color: var(--color-primary-light);
}
aside .aside__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.8rem;
  margin-top: 5.8rem;
  margin-bottom: 4.8rem;
}
aside .aside__list li a {
  font-weight: 600;
  font-size: 1.6rem;
  transition: opacity 0.3s ease;
}
aside .aside__list li a:hover {
  opacity: 0.8;
}
aside .external-link {
  display: flex;
  justify-content: center;
}
aside .external-link button {
  background: url("../images/button-bg.png") no-repeat center center/cover;
}
aside .external-link button .button__label .button__label-text {
  color: var(--color-secondary);
}

/*-------------------------
ヘッダー
-------------------------*/
header {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
}
header .header__container {
  padding: 3.8rem 5.5% 3.8rem 3%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 1.2rem;
}
@media screen and (max-width: 768px) {
  header .header__container {
    padding: 2.2rem 2rem;
    flex-wrap: nowrap;
  }
}
header .header__container h1 {
  font-family: "MFW-UDShinGoPro-Bold", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  header .header__container h1 {
    font-size: 1.6rem;
    flex-shrink: 0;
  }
}
header .header__container h1 a {
  transition: opacity 0.3s ease;
}
header .header__container h1 a:hover {
  opacity: 0.8;
}
header .header__container nav {
  width: min(100%, 759px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem 4.8rem;
}
@media screen and (max-width: 768px) {
  header .header__container nav {
    width: inherit;
  }
}
header .header__container nav .header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem 3.9rem;
}
@media screen and (max-width: 768px) {
  header .header__container nav .header__nav {
    display: none;
  }
}
header .header__container nav .header__nav-link {
  font-weight: bold;
  transition: all 0.3s ease;
}
header .header__container nav .header__nav-link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  header .header__container nav .header__nav-link {
    display: none;
  }
}
header .header__container nav .header__nav-link button {
  padding: 1.85rem 2.25rem 1.75rem 3.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.9rem;
  background: url("../images/button-bg.png") center center/cover no-repeat;
  border-radius: 0.8rem;
}
header .header__container nav .header__nav-link button .button__label {
  font-size: 1.8rem;
  color: #f0cb00;
}
header .header__container nav .header__nav-link button .button__icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header__container nav .header__nav__humberger {
  display: none;
}
@media screen and (max-width: 768px) {
  header .header__container nav .header__nav__humberger {
    display: block;
  }
}
header .header__container nav .header__nav__humberger .header__nav__humberger__line {
  width: 3.2rem;
  height: 0.1rem;
  background-color: var(--color-primary-light);
  margin-bottom: 0.4rem;
  position: relative;
}
header .header__container nav .header__nav__humberger .header__nav__humberger__line::before, header .header__container nav .header__nav__humberger .header__nav__humberger__line::after {
  content: "";
  position: absolute;
  width: 3.2rem;
  height: 0.1rem;
  background-color: var(--color-primary-light);
}
header .header__container nav .header__nav__humberger .header__nav__humberger__line::before {
  top: -0.5rem;
}
header .header__container nav .header__nav__humberger .header__nav__humberger__line::after {
  bottom: -0.5rem;
}

/*-------------------------
メインコンテンツ
-------------------------*/
main {
  padding-top: 25.6rem;
  background: url("../images/hero-bg.png") repeat-x -113px -35.7px;
}
@media screen and (max-width: 768px) {
  main {
    background: none;
    padding-top: 8.8rem;
  }
}

.main__container {
  margin: 0 auto;
}

.local__link {
  position: fixed;
  z-index: 10;
  right: 3rem;
  bottom: 2rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .local__link {
    right: 1rem;
    bottom: 1rem;
  }
}
.local__link:hover {
  filter: brightness(0.8);
}
.local__link .trial__button {
  width: 20.3rem;
  height: 20.3rem;
  border-radius: 50%;
  background: url("../images/icon-bg.png") 0 0/cover no-repeat;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 1.71rem;
}
@media screen and (max-width: 768px) {
  .local__link .trial__button {
    width: 10.7rem;
    height: 10.7rem;
    gap: 0.85rem;
  }
}
.local__link .trial__button .trial__button__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .local__link .trial__button .trial__button__text {
    font-size: 1.2rem;
  }
}
.local__link .trial__button .trial__button__text .yellow {
  color: var(--color-secondary);
}
.local__link .trial__button .icon {
  width: 2.8rem;
  height: 2.8rem;
}
@media screen and (max-width: 768px) {
  .local__link .trial__button .icon {
    width: 1.6rem;
    height: 1.6rem;
  }
}

.first-view {
  margin-bottom: 7.8rem;
}
.first-view .first-view__content {
  height: 69.8rem;
  position: relative;
}
@media screen and (max-width: 1482px) {
  .first-view .first-view__content {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 9rem;
  }
}
@media screen and (max-width: 768px) {
  .first-view .first-view__content {
    background: url("../images/hero-bg__sp.png") center bottom/contain no-repeat;
    gap: 6rem;
  }
}
.first-view .first-view__content .first-view__text {
  min-width: 50%;
  max-width: 80rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 1482px) {
  .first-view .first-view__content .first-view__text {
    align-items: center;
    margin-bottom: 4.4rem;
  }
}
@media screen and (max-width: 768px) {
  .first-view .first-view__content .first-view__text {
    margin-bottom: 0rem;
  }
}
.first-view .first-view__content .first-view__text .first-view__text__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .first-view .first-view__content .first-view__text .first-view__text__container {
    max-width: 36.5rem;
  }
}
.first-view .first-view__content .first-view__text .first-view__lead:has(.first-view__lead__top) {
  font-size: 2.5rem;
  margin-bottom: 3.7rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 0.1rem;
}
@media screen and (max-width: 1358px) {
  .first-view .first-view__content .first-view__text .first-view__lead:has(.first-view__lead__top) {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .first-view .first-view__content .first-view__text .first-view__lead:has(.first-view__lead__top) {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.first-view .first-view__content .first-view__text .first-view__lead:has(.first-view__lead__top) .first-view__lead__top {
  padding: 0.6rem 0 0.6rem 1.6rem;
}
.first-view .first-view__content .first-view__text .first-view__lead:has(.first-view__lead__top) .first-view__lead__bottom {
  padding: 0.6rem 1.6rem 0.6rem 0;
}
.first-view .first-view__content .first-view__text .first-view__lead:has(.first-view__lead__top) .first-view__lead__top,
.first-view .first-view__content .first-view__text .first-view__lead:has(.first-view__lead__top) .first-view__lead__bottom {
  flex-shrink: 0;
}
@media screen and (max-width: 1358px) {
  .first-view .first-view__content .first-view__text .first-view__lead:has(.first-view__lead__top) .first-view__lead__top,
  .first-view .first-view__content .first-view__text .first-view__lead:has(.first-view__lead__top) .first-view__lead__bottom {
    padding: 0.6rem 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .first-view .first-view__content .first-view__text .first-view__lead:has(.first-view__lead__top) .first-view__lead__top,
  .first-view .first-view__content .first-view__text .first-view__lead:has(.first-view__lead__top) .first-view__lead__bottom {
    padding: 0.2rem 0.8rem;
  }
}
.first-view .first-view__content .first-view__text .first-view__subtitle {
  font-size: 2.7rem;
  margin-bottom: 2.5rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .first-view .first-view__content .first-view__text .first-view__subtitle {
    font-size: 1.6rem;
  }
}
.first-view .first-view__content .first-view__text .first-view__subtitle strong {
  font-weight: 600;
  font-size: 3.4rem;
}
@media screen and (max-width: 768px) {
  .first-view .first-view__content .first-view__text .first-view__subtitle strong {
    font-size: 1.9rem;
  }
}
.first-view .first-view__content .first-view__text .first-view__subtitle strong span {
  position: relative;
}
.first-view .first-view__content .first-view__text .first-view__subtitle strong span::after {
  content: "●";
  position: absolute;
  font-size: 1rem;
  color: #f0cb00;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
}
.first-view .first-view__content .first-view__text .first-view__title {
  font-family: "MFW-UDShinGoPro-Bold", sans-serif;
  font-size: 6.4rem;
  letter-spacing: -0.08em;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 1358px) {
  .first-view .first-view__content .first-view__text .first-view__title {
    font-size: 3.3rem;
    margin-bottom: 3rem;
  }
}
.first-view .first-view__content .first-view__text .first-view__lead {
  font-size: 2rem;
  line-height: 1.75;
  margin-bottom: 4.4rem;
}
@media screen and (max-width: 768px) {
  .first-view .first-view__content .first-view__text .first-view__lead {
    width: 89.33%;
    margin: 0 auto 3.35rem;
    text-align: left;
    font-size: 1.5rem;
  }
}
.first-view .first-view__content .first-view__text .superviser {
  max-width: 41.4rem;
  display: flex;
  align-items: center;
  gap: 1.3rem;
  margin-bottom: 4.4rem;
  position: relative;
  padding-left: 3.08rem;
}
@media screen and (max-width: 1358px) {
  .first-view .first-view__content .first-view__text .superviser {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .first-view .first-view__content .first-view__text .superviser {
    max-width: 30.6rem;
  }
}
.first-view .first-view__content .first-view__text .superviser .superviser__icon {
  position: absolute;
}
.first-view .first-view__content .first-view__text .superviser .superviser__icon:first-child {
  left: 0;
  top: 0;
}
.first-view .first-view__content .first-view__text .superviser .superviser__icon:last-child {
  right: 0;
  bottom: 0;
}
.first-view .first-view__content .first-view__text .superviser .superviser__image {
  width: 6.6rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .first-view .first-view__content .first-view__text .superviser .superviser__image {
    width: 5.256rem;
  }
}
.first-view .first-view__content .first-view__text .superviser .superviser__company {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}
@media screen and (max-width: 768px) {
  .first-view .first-view__content .first-view__text .superviser .superviser__company {
    font-size: 1rem;
  }
}
.first-view .first-view__content .first-view__text .superviser .superviser__name {
  font-size: 2rem;
}
@media screen and (max-width: 1358px) {
  .first-view .first-view__content .first-view__text .superviser .superviser__name {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .first-view .first-view__content .first-view__text .superviser .superviser__name {
    font-size: 1.5rem;
  }
}
.first-view .first-view__content .first-view__text .external-link__block {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .first-view .first-view__content .first-view__text .external-link__block .external-link {
    display: none;
  }
}
.first-view .first-view__content .first-view__image {
  position: absolute;
  top: 0;
  left: 54%;
  width: 91.2rem;
  height: 69.8rem;
}
@media screen and (max-width: 1482px) {
  .first-view .first-view__content .first-view__image {
    position: relative;
    left: 0;
    flex: 1;
    width: 100%;
    height: auto;
    padding: 0 14% 1rem;
  }
}
@media screen and (max-width: 768px) {
  .first-view .first-view__content .first-view__image {
    width: 100%;
    height: auto;
    padding: 0 7.44% 1rem;
  }
}
.first-view .first-view__content .first-view__image .first-view__bg {
  width: 100%;
  aspect-ratio: 912/698;
  background: url("../images/pc.png") no-repeat center left/cover;
}
@media screen and (max-width: 1482px) {
  .first-view .first-view__content .first-view__image .first-view__bg {
    background: url("../images/pc.png") no-repeat center center/contain;
  }
}
.first-view .first-view__content .first-view__image .first-view__baloon {
  position: absolute;
  width: 36.6rem;
  aspect-ratio: 366/212;
}
@media screen and (max-width: 1482px) {
  .first-view .first-view__content .first-view__image .first-view__baloon {
    width: 34.23%;
  }
}
@media screen and (max-width: 768px) {
  .first-view .first-view__content .first-view__image .first-view__baloon {
    width: 34.23%;
  }
}
.first-view .first-view__content .first-view__image .first-view__baloon.upper {
  top: -8.88%;
  left: 37.22%;
}
@media screen and (max-width: 1482px) {
  .first-view .first-view__content .first-view__image .first-view__baloon.upper {
    top: -8%;
    left: 59%;
  }
}
@media screen and (max-width: 768px) {
  .first-view .first-view__content .first-view__image .first-view__baloon.upper {
    left: 60%;
    transform: translateX(-50%);
  }
}
.first-view .first-view__content .first-view__image .first-view__baloon.lower {
  bottom: 38.54%;
  left: 0;
}
@media screen and (max-width: 1482px) {
  .first-view .first-view__content .first-view__image .first-view__baloon.lower {
    left: 15%;
  }
}
@media screen and (max-width: 768px) {
  .first-view .first-view__content .first-view__image .first-view__baloon.lower {
    left: 8%;
  }
}

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 9.8rem;
}
@media screen and (max-width: 768px) {
  .about {
    margin-bottom: 5.9rem;
  }
}
.about h2 {
  margin-bottom: 4.2rem;
}
@media screen and (max-width: 768px) {
  .about h2 {
    margin-bottom: 2.6rem;
  }
}
.about .about__text {
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 4.1rem;
}
@media screen and (max-width: 768px) {
  .about .about__text {
    width: 83.73%;
    font-size: 1.5rem;
    text-align: left;
    letter-spacing: 0em;
  }
}
.about .about__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5.7rem;
  margin-bottom: 9.4rem;
}
.about .about__list .about__list-item {
  z-index: 1;
  width: 38.5rem;
  position: relative;
  padding-top: 5.1rem;
}
@media screen and (max-width: 768px) {
  .about .about__list .about__list-item {
    width: 77.87%;
  }
}
.about .about__list .about__list-item .about__list-item__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: -3.65rem;
  width: 91.56%;
  height: 100%;
  background-color: var(--color-white);
  border-top: 2px solid var(--color-primary);
  border-left: 2px solid var(--color-primary);
  border-radius: 2.4rem 0 0 0;
}
.about .about__list .about__list-item .about__list-item-num {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(-25%, -50%);
  width: 4rem;
  height: 4rem;
  background-color: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
}
.about .about__list .about__list-item h3 {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 768px) {
  .about .about__list .about__list-item h3 {
    font-size: 1.8rem;
  }
}
.about .about__list .about__list-item h3 span {
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  .about .about__list .about__list-item h3 span {
    font-size: 2.4rem;
  }
}
.about .about__list .about__list-item .about__list-image {
  width: 30rem;
  margin: 0 auto;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 768px) {
  .about .about__list .about__list-item .about__list-image {
    width: 21.8rem;
  }
}
.about .about__list .about__list-item .about__list-text {
  max-width: 31.9rem;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .about .about__list .about__list-item .about__list-text {
    font-size: 1.5rem;
    letter-spacing: 0em;
  }
}
.about .about__list .about__list-item:first-child .about__list-image {
  width: 25.2rem;
}
@media screen and (max-width: 768px) {
  .about .about__list .about__list-item:first-child .about__list-image {
    width: 21.8rem;
  }
}
.about .about__hr-solutions {
  width: 90%;
  margin: 0 auto;
  background-color: var(--color-primary-light);
  border-radius: 2.4rem;
  padding: 17rem 1.6rem 10.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about .about__hr-solutions {
    padding: 9.6rem 2.4rem 2.5rem;
    width: 89.33%;
  }
}
.about .about__hr-solutions .about__hr-solutions__bg {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 45.9%;
  max-width: 66.1rem;
}
@media screen and (max-width: 768px) {
  .about .about__hr-solutions .about__hr-solutions__bg {
    width: 100%;
  }
}
.about .about__hr-solutions h3 {
  font-size: 4.4rem;
  font-weight: bold;
  color: var(--color-white);
  margin-bottom: 8.1rem;
}
@media screen and (max-width: 768px) {
  .about .about__hr-solutions h3 {
    font-size: 2.4rem;
    text-align: center;
    line-height: 2;
    position: relative;
    margin-bottom: 4.7rem;
  }
}
.about .about__hr-solutions h3 .about__hr-solutions__underline {
  color: var(--color-secondary);
  position: relative;
  border-bottom: 2px solid var(--color-white);
}
@media screen and (max-width: 768px) {
  .about .about__hr-solutions h3 .about__hr-solutions__underline {
    border-bottom: none;
  }
}
.about .about__hr-solutions h3 .about__hr-solutions__underline::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 16px 11.5px 0 11.5px;
  border-color: var(--color-white) transparent transparent;
  translate: -50% 100%;
}
@media screen and (max-width: 768px) {
  .about .about__hr-solutions h3 .about__hr-solutions__underline::before {
    display: none;
  }
}
.about .about__hr-solutions h3 .about__hr-solutions__underline::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  border-style: solid;
  border-width: 12.6px 9px 0 9px;
  border-color: var(--color-primary-light) transparent transparent;
  translate: -50% 100%;
}
@media screen and (max-width: 768px) {
  .about .about__hr-solutions h3 .about__hr-solutions__underline::after {
    display: none;
  }
}
.about .about__hr-solutions h3 .about__hr-solutions__underline .dot {
  position: relative;
}
.about .about__hr-solutions h3 .about__hr-solutions__underline .dot::after {
  content: "●";
  position: absolute;
  font-size: 0.8rem;
  color: var(--color-secondary);
  top: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
}
.about .about__hr-solutions h3 .sp--underline {
  display: none;
}
@media screen and (max-width: 768px) {
  .about .about__hr-solutions h3 .sp--underline {
    display: block;
    position: absolute;
    bottom: -1.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 35%;
    height: 1px;
    background-color: var(--color-white);
  }
  .about .about__hr-solutions h3 .sp--underline::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 7px 5.5px 0 5.5px;
    border-color: var(--color-white) transparent transparent;
    translate: -50% 100%;
  }
  .about .about__hr-solutions h3 .sp--underline::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    border-style: solid;
    border-width: 7px 5.5px 0 5.5px;
    border-color: var(--color-primary-light) transparent transparent;
    translate: -50% 100%;
  }
}
.about .about__hr-solutions .about__hr-solutions-list {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  width: 100%;
}
.about .about__hr-solutions .about__hr-solutions-list .about__hr-solutions-item {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  background-color: var(--color-primary);
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding: 2.55rem 0 2.2rem 4rem;
  color: var(--color-white);
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .about .about__hr-solutions .about__hr-solutions-list .about__hr-solutions-item {
    padding: 1.5rem 1.2rem 1.2rem;
    gap: 1.1rem;
    font-size: 1.4rem;
  }
}
.about .about__hr-solutions .about__hr-solutions-list .about__hr-solutions-item .about__hr-solutions-item__checkbox {
  flex-shrink: 0;
  width: 4.3rem;
  height: 4rem;
  border-top: 0.6rem solid var(--color-white);
  border-bottom: 0.6rem solid var(--color-white);
  border-left: 0.3rem solid var(--color-white);
  border-right: 0.3rem solid var(--color-white);
  position: relative;
}
@media screen and (max-width: 768px) {
  .about .about__hr-solutions .about__hr-solutions-list .about__hr-solutions-item .about__hr-solutions-item__checkbox {
    width: 2.5rem;
    height: 2.4rem;
    border-top: 0.36rem solid var(--color-white);
    border-bottom: 0.36rem solid var(--color-white);
    border-left: 0.17rem solid var(--color-white);
    border-right: 0.17rem solid var(--color-white);
  }
}
.about .about__hr-solutions .about__hr-solutions-list .about__hr-solutions-item .about__hr-solutions-item__checkbox .about__hr-solutions-item__icon {
  position: absolute;
  top: 15%;
  left: 75%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .about .about__hr-solutions .about__hr-solutions-list .about__hr-solutions-item .about__hr-solutions-item__checkbox .about__hr-solutions-item__icon {
    top: 15%;
  }
  .about .about__hr-solutions .about__hr-solutions-list .about__hr-solutions-item .about__hr-solutions-item__checkbox .about__hr-solutions-item__icon svg {
    width: 2rem;
    height: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .about .about__hr-solutions .about__hr-solutions-list .about__hr-solutions-item .about__hr-solutions-item-text {
    font-size: 1.6rem;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 600px) {
  .about .about__hr-solutions .about__hr-solutions-list .about__hr-solutions-item .about__hr-solutions-item-text {
    font-size: 1.4rem;
  }
}
.about .about__hr-solutions .about__hr-solutions-list .about__hr-solutions-item .about__hr-solutions-item-text strong {
  font-weight: 500;
}
.about .about__hr-solutions .about__hr-solutions-list .about__hr-solutions-item .about__hr-solutions-item-text strong.yellow {
  color: var(--color-secondary);
}
.about .about__hr-solutions .about__hr-solutions-list .about__hr-solutions-item .about__hr-solutions-item-text strong.large {
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .about .about__hr-solutions .about__hr-solutions-list .about__hr-solutions-item .about__hr-solutions-item-text strong.large {
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .about .about__hr-solutions .about__hr-solutions-list .about__hr-solutions-item .about__hr-solutions-item-text strong.large {
    font-size: 1.8rem;
  }
}

.merit {
  margin-bottom: 20.6rem;
}
@media screen and (max-width: 768px) {
  .merit {
    margin-bottom: 8.84rem;
  }
}
.merit h2 {
  margin-bottom: 9.6rem;
}
@media screen and (max-width: 768px) {
  .merit h2 {
    margin-bottom: 2rem;
  }
}
.merit h2 .padding {
  line-height: 1.8;
}
.merit .merit__list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.merit .merit__list .merit__item {
  display: flex;
  padding-left: 10rem;
}
@media screen and (max-width: 961px) {
  .merit .merit__list .merit__item {
    flex-direction: column-reverse;
    align-items: center;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .merit .merit__list .merit__item {
    max-width: 89.33%;
  }
}
.merit .merit__list .merit__item .merit__item-text {
  padding-top: 13.4rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 961px) {
  .merit .merit__list .merit__item .merit__item-text {
    padding-top: 8.4rem;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .merit .merit__list .merit__item .merit__item-text {
    padding-top: 2.97rem;
  }
}
.merit .merit__list .merit__item .merit__item-text .merit__item__caption {
  position: absolute;
  z-index: -1;
  top: 5.6rem;
  left: 0;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 6.2rem;
  font-weight: bold;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  padding-left: 2rem;
}
@media screen and (max-width: 961px) {
  .merit .merit__list .merit__item .merit__item-text .merit__item__caption {
    top: 1.1rem;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .merit .merit__list .merit__item .merit__item-text .merit__item__caption {
    font-size: 2rem;
  }
}
.merit .merit__list .merit__item .merit__item-text .merit__item__caption .merit__item-num {
  width: 11rem;
  height: 11rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-secondary-light);
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .merit .merit__list .merit__item .merit__item-text .merit__item__caption .merit__item-num {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.merit .merit__list .merit__item .merit__item-text .merit__item-text__wrapper {
  max-width: 45rem;
  border-top: 2px solid var(--color-primary);
  border-left: 2px solid var(--color-primary);
  border-radius: 2.4rem 0 0 0;
  padding: 6.4rem 2.8rem 9.6rem 3.2rem;
}
@media screen and (max-width: 961px) {
  .merit .merit__list .merit__item .merit__item-text .merit__item-text__wrapper {
    max-width: 100%;
    border: none;
    border-radius: 0 2.4rem 0 0;
    padding: 4rem 3.2rem 9.6rem;
  }
}
@media screen and (max-width: 768px) {
  .merit .merit__list .merit__item .merit__item-text .merit__item-text__wrapper {
    padding: 2.3rem 1.6rem 4.3rem;
  }
}
.merit .merit__list .merit__item .merit__item-text .merit__item-text__wrapper h3 {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .merit .merit__list .merit__item .merit__item-text .merit__item-text__wrapper h3 {
    font-size: 2rem;
  }
}
.merit .merit__list .merit__item .merit__item-text .merit__item-text__wrapper .merit__item-description {
  font-size: 1.6rem;
  line-height: 1.8;
  width: 35rem;
}
@media screen and (max-width: 768px) {
  .merit .merit__list .merit__item .merit__item-text .merit__item-text__wrapper .merit__item-description {
    text-align: left;
  }
}
.merit .merit__list .merit__item .merit__item-image {
  flex: 1;
  max-width: 64.8rem;
}
@media screen and (max-width: 961px) {
  .merit .merit__list .merit__item .merit__item-image {
    max-width: 100%;
  }
}
.merit .merit__list .merit__item.even {
  flex-direction: row-reverse;
  padding-left: 0;
  padding-right: 10rem;
}
@media screen and (max-width: 961px) {
  .merit .merit__list .merit__item.even {
    flex-direction: column-reverse;
    align-items: center;
    padding-right: 0;
  }
}
.merit .merit__list .merit__item.even .merit__item-text .merit__item__caption {
  justify-content: flex-end;
}
.merit .merit__list .merit__item.even .merit__item-text .merit__item-text__wrapper {
  border-left: none;
  border-right: 2px solid var(--color-primary);
  border-radius: 0 2.4rem 0 0;
  padding-right: 3.2rem;
}
@media screen and (max-width: 961px) {
  .merit .merit__list .merit__item.even .merit__item-text .merit__item-text__wrapper {
    border: none;
    border-radius: 0 2.4rem 0 0;
    padding-right: 0;
  }
}
.merit .merit__list .merit__item:last-child .merit__item-text .merit__item-text__wrapper {
  min-height: 33rem;
}
@media screen and (max-width: 961px) {
  .merit .merit__list .merit__item:last-child .merit__item-text .merit__item-text__wrapper {
    min-height: 0rem;
  }
}

.first-view--repeat {
  background: url("../images/bg-gradi.png") left top/cover no-repeat;
  padding-top: 14.7rem;
  overflow: hidden;
  margin-bottom: 0;
}
@media screen and (max-width: 1482px) {
  .first-view--repeat {
    background: url("../images/bg-gradi.png") center center/cover no-repeat;
  }
}
@media screen and (max-width: 768px) {
  .first-view--repeat {
    padding-top: 5.6rem;
  }
}
.first-view--repeat .first-view__content {
  height: 53.2rem;
}
@media screen and (max-width: 1482px) {
  .first-view--repeat .first-view__content {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .first-view--repeat .first-view__content {
    background: none;
    height: auto;
    gap: 6rem;
  }
}
.first-view--repeat .first-view__content p {
  color: var(--color-white);
}
.first-view--repeat .first-view__content .first-view__text {
  min-width: 50%;
  max-width: 80rem;
}
@media screen and (max-width: 1482px) {
  .first-view--repeat .first-view__content .first-view__text {
    min-width: 90%;
    max-width: 100%;
    padding-left: 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .first-view--repeat .first-view__content .first-view__text {
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .first-view--repeat .first-view__content .first-view__text .first-view__text__container {
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .first-view--repeat .first-view__content .first-view__text .first-view__text__container .superviser {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .first-view--repeat .first-view__content .first-view__text .first-view__text__container .external-link {
    display: block;
  }
}
.first-view--repeat .first-view__content .first-view__image {
  height: 53rem;
}
@media screen and (max-width: 1482px) {
  .first-view--repeat .first-view__content .first-view__image {
    height: 19.5rem;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .first-view--repeat .first-view__content .first-view__image {
    padding-bottom: 0;
    background: none;
  }
}
.first-view--repeat .first-view__content .first-view__image .first-view__bg {
  width: 100%;
  height: 100%;
  background: url("../images/pc.png") left top/cover no-repeat;
}
@media screen and (max-width: 1482px) {
  .first-view--repeat .first-view__content .first-view__image .first-view__bg {
    margin: 0 auto;
    width: 75%;
    height: 100%;
    background: url("../images/pc.png") no-repeat top center/cover;
    aspect-ratio: 375/228;
  }
}
.first-view--repeat .first-view__content .first-view__image .first-view__baloon.upper {
  left: 39.12%;
}
@media screen and (max-width: 1482px) {
  .first-view--repeat .first-view__content .first-view__image .first-view__baloon.upper {
    left: 58%;
  }
}
@media screen and (max-width: 768px) {
  .first-view--repeat .first-view__content .first-view__image .first-view__baloon.upper {
    left: 70%;
    top: -10%;
  }
}
.first-view--repeat .first-view__content .first-view__image .first-view__baloon.lower {
  bottom: 17%;
}
@media screen and (max-width: 768px) {
  .first-view--repeat .first-view__content .first-view__image .first-view__baloon.lower {
    bottom: 22%;
  }
}

.supervision {
  padding-top: 10.4rem;
  padding-bottom: 10.1rem;
  background-color: var(--color-primary-dark);
  margin-bottom: 9.5rem;
}
@media screen and (max-width: 768px) {
  .supervision {
    padding-top: 6.5rem;
    margin-bottom: 6rem;
  }
}
.supervision h2 {
  margin-bottom: 6.5rem;
}
@media screen and (max-width: 768px) {
  .supervision h2 {
    margin-bottom: 3.4rem;
  }
}
.supervision .supervision__title-text {
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 7rem;
}
@media screen and (max-width: 768px) {
  .supervision .supervision__title-text {
    font-size: 2rem;
    margin-bottom: 3.85rem;
  }
}
.supervision .supervision__detail__block {
  background-color: var(--color-white);
  width: min(90%, 109.4rem);
  margin: 0 auto;
  border-radius: 2.4rem;
  position: relative;
  padding: 5.85rem 7rem 6.1rem;
}
@media screen and (max-width: 768px) {
  .supervision .supervision__detail__block {
    width: 90%;
    padding: 3.46rem 1.1rem 4.45rem;
  }
}
.supervision .supervision__detail__block h3 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 4.61rem;
  padding-bottom: 1.29rem;
  border-bottom: 1px solid var(--color-primary);
}
@media screen and (max-width: 768px) {
  .supervision .supervision__detail__block h3 {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 2.4rem;
  }
}
.supervision .supervision__detail__block .supervision__detail__profile__block__wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .supervision .supervision__detail__block .supervision__detail__profile__block__wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block {
  flex: 1;
  max-width: 42.6rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block {
    margin-bottom: 3.2rem;
  }
}
.supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block .supervision__detail__profile {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-bottom: 3.11rem;
}
@media screen and (max-width: 768px) {
  .supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block .supervision__detail__profile {
    margin-bottom: 0rem;
  }
}
.supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block .supervision__detail__profile .supervision__detail__profile-image {
  width: 10.52rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block .supervision__detail__profile .supervision__detail__profile-image {
    width: 8.6rem;
  }
}
.supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block .supervision__detail__profile .supervision__detail__profile-text .supervision__detail__profile-company {
  font-size: 1.4rem;
}
.supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block .supervision__detail__profile .supervision__detail__profile-text .supervision__detail__profile-name {
  font-size: 2rem;
}
.supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block .supervision__detail__profile__block__item .supervision__detail__profile__block__item-caption {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block .supervision__detail__profile__block__item .supervision__detail__profile__block__item-caption .highlight {
  padding: 0.03rem;
}
.supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block .supervision__detail__profile__block__item .supervision__detail__profile__block__item-text,
.supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block .supervision__detail__profile__block__item .supervision__detail__profile__block__item-list {
  font-size: 1.3rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block .supervision__detail__profile__block__item .supervision__detail__profile__block__item-text,
  .supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block .supervision__detail__profile__block__item .supervision__detail__profile__block__item-list {
    letter-spacing: 0em;
  }
}
.supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block .supervision__detail__profile__block__item .supervision__detail__profile__block__item-list {
  padding-left: 2.5rem;
}
@media screen and (max-width: 768px) {
  .supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block .supervision__detail__profile__block__item .supervision__detail__profile__block__item-list {
    padding-left: 2rem;
  }
}
.supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block .supervision__detail__profile__block__item .supervision__detail__profile__block__item-list .supervision__detail__profile__block__item-list-item {
  position: relative;
}
.supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block .supervision__detail__profile__block__item .supervision__detail__profile__block__item-list .supervision__detail__profile__block__item-list-item::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.26rem;
  height: 1.26rem;
  border-radius: 50%;
  background-color: var(--color-list-dot);
}
@media screen and (max-width: 768px) {
  .supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block .supervision__detail__profile__block__item .supervision__detail__profile__block__item-list .supervision__detail__profile__block__item-list-item::before {
    left: -2rem;
  }
}
.supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block .supervision__detail__profile__block__item .supervision__detail__profile__block__item-list.book {
  margin-bottom: 3.2rem;
}
.supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block .supervision__detail__profile__block__item .supervision__detail__profile__block__item-list.book .supervision__detail__profile__block__item-list-item::before {
  top: 1.2rem;
  width: 1.26rem;
  height: 1.26rem;
}
.supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block .supervision__detail__profile__block__item .supervision__detail__profile__block__book-image-list {
  display: flex;
  gap: 0.9rem;
}
@media screen and (max-width: 768px) {
  .supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block .supervision__detail__profile__block__item .supervision__detail__profile__block__book-image-list {
    justify-content: center;
  }
}
.supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block .supervision__detail__profile__block__item .supervision__detail__profile__block__book-image-list .supervision__detail__profile__block__book-image-list-item {
  width: 15.3rem;
  border-radius: 0.8rem;
  border: 1px solid var(--color-grey);
}
@media screen and (max-width: 768px) {
  .supervision .supervision__detail__block .supervision__detail__profile__block__wrapper .supervision__detail__profile__block .supervision__detail__profile__block__item .supervision__detail__profile__block__book-image-list .supervision__detail__profile__block__book-image-list-item {
    width: 10.2rem;
  }
}
.supervision .supervision__detail__block .baloon-bottom {
  position: absolute;
  bottom: -2.7rem;
  right: 27.24%;
  transform: translateX(-50%);
  width: 8.35rem;
  height: 5.26rem;
}

.flow {
  padding-bottom: 16.9rem;
}
@media screen and (max-width: 768px) {
  .flow {
    padding-bottom: 6.4rem;
  }
}
.flow h2 {
  margin-bottom: 6.9rem;
}
@media screen and (max-width: 768px) {
  .flow h2 {
    margin-bottom: 3.2rem;
  }
}
.flow .flow__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.7rem;
}
@media screen and (max-width: 768px) {
  .flow .flow__list.pc {
    display: none;
  }
}
.flow .flow__list.pc .flow__list-item {
  width: 30rem;
  border: 2px solid var(--color-primary);
  border-radius: 1.6rem;
  padding: 3.3rem 2.2rem 2.7rem;
  position: relative;
}
.flow .flow__list.pc .flow__list-item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.25rem;
  transform: translate(100%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 14px solid #454c72;
  border-right: 0;
}
.flow .flow__list.pc .flow__list-item .flow__list-item__title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.flow .flow__list.pc .flow__list-item .flow__list-item__image {
  width: 16.8rem;
  margin: 0 auto 0.6rem;
}
.flow .flow__list.pc .flow__list-item .flow__list-item__text__area {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow .flow__list.pc .flow__list-item .flow__list-item__text__area .flow__list-item__text {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
}
.flow .flow__list.pc .flow__list-item:last-child {
  background: url("../images/card-bg.png") center center/cover no-repeat;
  color: var(--color-white);
  border: none;
}
.flow .flow__list.pc .flow__list-item:last-child::before {
  display: none;
}
.flow .flow__list.pc .flow__list-item:last-child .flow__list-item__title {
  color: var(--color-white);
  font-weight: bold;
}
.flow .flow__list.pc .flow__list-item:last-child .flow__list-item__title strong.yellow {
  font-weight: bold;
  color: var(--color-secondary);
}
.flow .flow__list.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .flow .flow__list.sp {
    display: flex;
    gap: 3.1rem;
    width: 89.33%;
    margin: 0 auto;
  }
}
.flow .flow__list.sp .flow__list-item {
  width: 100%;
  max-width: 35rem;
  padding: 2.05rem 0.8rem 2.6rem 0.8rem;
  border: 2px solid var(--color-primary);
  border-radius: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.flow .flow__list.sp .flow__list-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 180%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 14px solid var(--color-primary-light);
  border-bottom: 0;
}
.flow .flow__list.sp .flow__list-item .flow__list-item__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flow .flow__list.sp .flow__list-item .flow__list-item__image {
  flex-shrink: 0;
  width: 10rem;
  height: 10rem;
}
.flow .flow__list.sp .flow__list-item .flow__list-item__text__wrapper .flow__list-item__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
}
.flow .flow__list.sp .flow__list-item .flow__list-item__text__wrapper .flow__list-item__text {
  font-size: 1.3rem;
  line-height: 1.8;
}
.flow .flow__list.sp .flow__list-item:last-child {
  background: url("../images/card-bg.png") center center/cover no-repeat;
  color: var(--color-white);
  border: none;
}
.flow .flow__list.sp .flow__list-item:last-child::before {
  display: none;
}
.flow .flow__list.sp .flow__list-item:last-child .flow__list-item__title {
  color: var(--color-white);
  font-weight: bold;
}
.flow .flow__list.sp .flow__list-item:last-child .flow__list-item__title strong.yellow {
  font-weight: bold;
  color: var(--color-secondary);
}

.faq {
  padding: 11.2rem 0 11.6rem;
  background-color: var(--color-primary-dark);
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 6.5rem 0 6.8rem;
  }
}
.faq h2 {
  margin-bottom: 7.7rem;
}
@media screen and (max-width: 768px) {
  .faq h2 {
    margin-bottom: 3.4rem;
  }
}
.faq .faq__list {
  display: flex;
  flex-direction: column;
  row-gap: 3.2rem;
  width: min(95%, 109.4rem);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .faq .faq__list {
    width: 89.33%;
  }
}
.faq .faq__list .faq__list-item {
  display: flex;
  flex-direction: column;
  border-radius: 1.6rem;
  padding: 3.8rem 4.3rem 2.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .faq .faq__list .faq__list-item {
    padding: 1.7rem 1.8rem 1.9rem;
  }
}
.faq .faq__list .faq__list-item .faq__list-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .faq .faq__list .faq__list-item .faq__list-item__question {
    align-items: flex-start;
    margin-bottom: 1.2rem;
  }
}
.faq .faq__list .faq__list-item .faq__list-item__question:hover {
  opacity: 0.8;
}
.faq .faq__list .faq__list-item .faq__list-item__question .faq__list-item__question__text {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  gap: 1.75rem;
}
@media screen and (max-width: 768px) {
  .faq .faq__list .faq__list-item .faq__list-item__question .faq__list-item__question__text {
    align-items: flex-start;
  }
}
.faq .faq__list .faq__list-item .faq__list-item__question .faq__list-item__question__text .faq__list-item__q {
  font-family: "Inter", sans-serif;
  font-size: 3.9rem;
  font-weight: bold;
  color: var(--color-primary-light);
}
@media screen and (max-width: 768px) {
  .faq .faq__list .faq__list-item .faq__list-item__question .faq__list-item__question__text .faq__list-item__q {
    font-size: 2.8rem;
  }
}
.faq .faq__list .faq__list-item .faq__list-item__question .open-button {
  width: 3.2rem;
  height: 0.4rem;
  background-color: var(--color-primary-light);
  border-radius: 0.2rem;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 768px) {
  .faq .faq__list .faq__list-item .faq__list-item__question .open-button {
    flex-shrink: 0;
    margin-top: 1.8rem;
    width: 1.6rem;
  }
}
.faq .faq__list .faq__list-item .faq__list-item__question .open-button::before {
  transition: all 0.3s ease;
  opacity: 1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 3.2rem;
  height: 0.4rem;
  transform: rotate(90deg);
  background-color: var(--color-primary-light);
  border-radius: 0.2rem;
}
@media screen and (max-width: 768px) {
  .faq .faq__list .faq__list-item .faq__list-item__question .open-button::before {
    width: 1.6rem;
  }
}
.faq .faq__list .faq__list-item .faq__list-item__question .open-button.active::before {
  opacity: 0;
  transform: rotate(0deg);
}
.faq .faq__list .faq__list-item .faq__list-item__question .open-button input {
  display: none;
}
.faq .faq__list .faq__list-item .faq__list-item__answer {
  height: 0;
  padding: 0rem 3.6rem 0rem;
  background-color: var(--color-primary-bg);
  border-radius: 1.2rem;
  transition: height 0.3s ease;
}
.faq .faq__list .faq__list-item .faq__list-item__answer .faq__list-item__answer__text {
  display: none;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
.faq .faq__list .faq__list-item .faq__list-item__answer.active {
  height: auto;
  padding: 3.2rem 3.6rem 4rem;
}
@media screen and (max-width: 768px) {
  .faq .faq__list .faq__list-item .faq__list-item__answer.active {
    padding: 1.2rem;
  }
}
.faq .faq__list .faq__list-item .faq__list-item__answer.active .faq__list-item__answer__text {
  display: block;
}

.form {
  padding: 10.1rem 0;
  background: url("../images/form-bg.png") center center/cover no-repeat;
}
.form h2 {
  color: var(--color-white);
}
.form .form__conteiner {
  width: min(90%, 109.4rem);
  margin: 0 auto;
}

footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 9.3rem 0 14.3rem;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 4.7rem 0 1.8rem;
  }
}
footer .footer-content__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .footer-content__wrapper p {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  footer .footer-content__wrapper p {
    text-align: center;
    margin-bottom: 2.1rem;
  }
}
footer .footer-content__wrapper p strong.yellow {
  color: var(--color-secondary);
}
footer .footer-content__wrapper .footer__title {
  font-family: "MFW-UDShinGoPro-Bold", sans-serif;
  font-size: 4.4rem;
}
@media screen and (max-width: 768px) {
  footer .footer-content__wrapper .footer__title {
    font-size: 2.9rem;
  }
}
footer .footer-content__wrapper nav {
  margin-bottom: 5.3rem;
}
@media screen and (max-width: 768px) {
  footer .footer-content__wrapper nav {
    width: 24rem;
    margin-bottom: 3.9rem;
  }
}
footer .footer-content__wrapper nav .footer__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.4rem;
}
footer .footer-content__wrapper nav .footer__nav .footer__nav-item {
  transition: opacity 0.3s ease;
}
footer .footer-content__wrapper nav .footer__nav .footer__nav-item:hover {
  opacity: 0.8;
}
footer .footer-content__wrapper .footer__external-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5.3rem;
  margin-bottom: 4rem;
}
footer .footer-content__wrapper .footer__external-link a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
footer .footer-content__wrapper .external-link {
  margin-bottom: 5.1rem;
}
footer .footer-content__wrapper .external-link button {
  background-color: var(--color-secondary);
  gap: 0.9rem;
}
footer .footer-content__wrapper .external-link button .button__label .button__label-text {
  color: var(--color-primary);
}
footer .footer-content__wrapper small {
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--color-white);
  text-align: center;
  opacity: 0.5;
}

/*-------------------------
  アニメーション
-------------------------*/
.fadeIn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fadeIn.show {
  opacity: 1;
  transform: translateY(0);
}

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