@charset "UTF-8";
/** ================================================
 * リセットCSS
 *  A Modern CSS Reset：
 *  https://github.com/Andy-set-studio/modern-css-reset/blob/master/dist/reset.min.css
 * ================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/** ================================================
 * 基本設定
 * ================================================ */
html {
  overflow-x: hidden;
}

body {
  color: #1a1a1a;
  background-color: #fff;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  max-width: 100%;
  min-width: 100%;
}

a,
a:visited {
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.4s;
}

@media (hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.caution {
  font-size: 0.6em;
  vertical-align: super;
  margin-inline: -0.25em;
}

.caution__text {
  font-size: 0.75em;
  margin-top: 0.75em;
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.js-slide-fade-up {
  opacity: 0;
  transform: translateY(30px) translateX(-60px);
}

.slide-fade-up {
  animation: slideFadeUp 0.6s ease-out forwards;
}
@keyframes slideFadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px) translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

.js-fade-up {
  opacity: 0;
  transform: translateY(10px);
}

.fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

html {
  font-size: 16px;
  font-family: YakuHanJPs, "Noto Sans JP", sans-serif;
  font-weight: 400;
}

body {
  line-height: 1.5;
  letter-spacing: 0.05em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

p {
  font-size: min(1.1111111111vw, 19.2px);
  text-align: justify;
  text-justify: inter-ideograph;
}
@media screen and (max-width: 1439px) {
  p {
    font-size: clamp(0.9375rem, 0.9063151042rem + 0.1041666667vw, 1rem);
  }
}

.text-small {
  font-size: 0.8em;
}

.text-strong {
  font-weight: 500;
  color: #8a248c;
}

/** ================================================
 * ヘッダー
 * ================================================ */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 4%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: padding-top 0.3s ease, opacity 0.4s ease;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  max-height: 100%;
  border-bottom: 1px solid #cccccc;
  z-index: 9999;
}
@media screen and (max-width: 1023px) {
  .header__inner {
    height: 56px;
  }
}
.header__title {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__title a {
  display: flex;
  align-items: center;
  padding: 8px;
  gap: 24px;
}
.header__title__logo {
  height: 24px;
  aspect-ratio: 150/24;
  position: relative;
}
@media screen and (max-width: 599px) {
  .header__title__logo {
    height: clamp(1rem, 0.1629464286rem + 3.5714285714vw, 1.5rem);
  }
}
.header__title__logo--normal, .header__title__logo--white {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.header__title__logo--white {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.header__title__text {
  font-size: 1.125rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  color: #3f223f;
  margin-bottom: -0.4em;
  transition: color 0.6s ease-in-out;
}
@media screen and (max-width: 599px) {
  .header__title__text {
    font-size: clamp(0.75rem, 0.1222098214rem + 2.6785714286vw, 1.125rem);
  }
}
.header.is-scrolled {
  padding-top: 0;
  opacity: 0;
  pointer-events: none;
}
.header.is-fixed {
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: auto;
}
.header.is-fixed .header__title a {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .header.is-fixed .header__title a:hover {
    opacity: 1;
  }
}

.header.is-drawer-open .header__title__text {
  color: #fff;
  transition: color 0.3s ease-in-out;
}
.header.is-drawer-open .header__title__logo--white {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.about-main .header .header__title__text,
.interview-main .header .header__title__text {
  color: #fff;
}
.about-main .header .header__title__logo--white,
.interview-main .header .header__title__logo--white {
  opacity: 1;
}
.about-main .header.is-scrolled:not(.is-drawer-open) .header__title__text,
.interview-main .header.is-scrolled:not(.is-drawer-open) .header__title__text {
  color: #3f223f;
}
.about-main .header.is-scrolled:not(.is-drawer-open) .header__title__logo--white,
.interview-main .header.is-scrolled:not(.is-drawer-open) .header__title__logo--white {
  opacity: 0;
}

/** ================================================
 * 下層ページ用ヘッダーエリア
 * ================================================ */
.page-header {
  width: 100%;
  height: 44.4444444444vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .page-header {
    height: 62.5vw;
  }
}
@media screen and (max-width: 767px) {
  .page-header {
    height: 72.9166666667vw;
  }
}
@media screen and (max-width: 599px) {
  .page-header {
    height: 80.1335559265vw;
  }
}
@media screen and (max-width: 479px) {
  .page-header {
    height: 96vw;
  }
}
.page-header__inner {
  width: 80%;
  max-width: 1384px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  padding-bottom: min(13.8888888889vw, 240px);
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1439px) {
  .page-header__inner {
    width: 100%;
    max-width: 1160px;
  }
}
@media screen and (max-width: 1439px) {
  .page-header__inner {
    padding-bottom: clamp(7.5rem, 5.0052083333rem + 8.3333333333vw, 12.5rem);
    padding-inline: 40px;
  }
}
@media screen and (max-width: 479px) {
  .page-header__inner {
    padding-inline: 16px;
  }
}
.page-header__title {
  font-size: min(6.9444444444vw, 120px);
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  margin-block: 0.6em;
}
@media screen and (max-width: 1439px) {
  .page-header__title {
    font-size: clamp(3.5rem, 2.1278645833rem + 4.5833333333vw, 6.25rem);
  }
}
.page-header__image {
  position: absolute;
  inset: 0;
}
.page-header__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #eeeeee 0%, #7e7c7e 100%);
  opacity: 0.5;
}
.page-header__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/** ================================================
 * セクション
 * ================================================ */
.section {
  width: 100%;
  padding-block: min(4.1666666667vw, 72px);
}
@media screen and (max-width: 1023px) {
  .section {
    padding-block: 80px;
  }
}
@media screen and (max-width: 767px) {
  .section {
    padding-block: 56px;
  }
}
.section__inner {
  padding-inline: 20px;
  width: 80%;
  max-width: 1384px;
  margin: 0 auto;
}
@media screen and (max-width: 1439px) {
  .section__inner {
    width: 100%;
    max-width: 1160px;
  }
}
@media screen and (max-width: 479px) {
  .section__inner {
    padding-inline: 16px;
  }
}

/** ================================================
 * 採用エントリーセクション
 * ================================================ */
.entry {
  background-color: #fff;
  padding-block: min(3.8888888889vw, 67.2px) min(4.4444444444vw, 76.8px);
}
@media screen and (max-width: 1439px) {
  .entry {
    padding-block: 3.5rem 4rem;
  }
}
.entry__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 960px;
  padding-inline: 40px;
}
@media screen and (max-width: 1439px) {
  .entry__inner {
    max-width: 880px;
  }
}
@media screen and (max-width: 1023px) {
  .entry__inner {
    justify-content: space-around;
  }
}
@media screen and (max-width: 767px) {
  .entry__inner {
    flex-direction: column;
    padding-inline: 24px;
  }
}
@media screen and (max-width: 599px) {
  .entry__inner {
    padding-inline: 16px;
  }
}
.entry__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .entry__header {
    align-items: center;
  }
}
.entry__title {
  height: min(2.7777777778vw, 48px);
}
@media screen and (max-width: 1439px) {
  .entry__title {
    height: clamp(2rem, 1.7505208333rem + 0.8333333333vw, 2.5rem);
  }
}
.entry__title img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.entry__lead {
  font-size: min(1.25vw, 21.6px);
  line-height: 1.8;
}
@media screen and (max-width: 1439px) {
  .entry__lead {
    font-size: clamp(1rem, 0.9376302083rem + 0.2083333333vw, 1.125rem);
  }
}
@media screen and (max-width: 479px) {
  .entry__lead {
    text-align: center;
  }
}
.entry__lead .sp-only {
  display: none;
}
@media screen and (max-width: 479px) {
  .entry__lead .sp-only {
    display: block;
  }
}
.entry__body {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  max-width: 260px;
}
@media screen and (max-width: 767px) {
  .entry__body {
    max-width: 100%;
    justify-content: center;
  }
}

.about-main .entry {
  background-color: #f4f2f4;
}

/** ================================================
 * フッター
 * ================================================ */
.footer__top__inner, .footer__bottom__inner {
  padding-inline: 20px;
  width: 80%;
  max-width: 1384px;
  margin: 0 auto;
}
@media screen and (max-width: 1439px) {
  .footer__top__inner, .footer__bottom__inner {
    width: 100%;
    max-width: 1160px;
  }
}
@media screen and (max-width: 1439px) {
  .footer__top__inner, .footer__bottom__inner {
    padding-inline: clamp(2.5rem, -1.1887019231rem + 5.7692307692vw, 4rem);
  }
}
@media screen and (max-width: 1023px) {
  .footer__top__inner, .footer__bottom__inner {
    padding-inline: 40px;
    gap: 40px;
  }
}
.footer__top {
  background-color: #3c353c;
}
.footer__top__inner {
  display: flex;
  justify-content: right;
  align-items: stretch;
  padding-block: min(4.4444444444vw, 76.8px);
}
@media screen and (max-width: 1439px) {
  .footer__top__inner {
    padding-block: 64px;
  }
}
@media screen and (max-width: 1023px) {
  .footer__top__inner {
    flex-direction: column;
    padding-block: 56px;
  }
}
@media screen and (max-width: 767px) {
  .footer__top__inner {
    padding-inline: 40px;
    padding-bottom: 48px;
  }
}
@media screen and (max-width: 599px) {
  .footer__top__inner {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 479px) {
  .footer__top__inner {
    padding-inline: 16px;
  }
}
.footer__top .footer__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  margin-right: auto;
}
@media screen and (max-width: 1023px) {
  .footer__top .footer__info {
    margin-inline: auto;
    gap: 24px;
  }
}
.footer__top .footer__info .footer__logo {
  height: min(4.1666666667vw, 72px);
}
@media screen and (max-width: 1439px) {
  .footer__top .footer__info .footer__logo {
    height: clamp(2.5rem, 1.8763020833rem + 2.0833333333vw, 3.75rem);
  }
}
@media screen and (max-width: 1023px) {
  .footer__top .footer__info .footer__logo {
    height: clamp(3rem, 2.1194852941rem + 2.9411764706vw, 4rem);
  }
}
.footer__top .footer__info .footer__logo img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__top .footer__info .footer__corporate-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}
.footer__top .footer__info .footer__corporate-info .footer__corporate-name,
.footer__top .footer__info .footer__corporate-info .footer__address {
  font-size: min(1.1111111111vw, 19.2px);
  color: #fff;
  font-style: normal;
  line-height: 1.5;
}
@media screen and (max-width: 1439px) {
  .footer__top .footer__info .footer__corporate-info .footer__corporate-name,
  .footer__top .footer__info .footer__corporate-info .footer__address {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1023px) {
  .footer__top .footer__info .footer__corporate-info .footer__corporate-name,
  .footer__top .footer__info .footer__corporate-info .footer__address {
    font-size: clamp(0.875rem, 0.7099034926rem + 0.5514705882vw, 1.0625rem);
  }
}
.footer__top .footer__info .footer__corporate-info .footer__corporate-name {
  font-size: min(1.25vw, 21.6px);
}
@media screen and (max-width: 1439px) {
  .footer__top .footer__info .footer__corporate-info .footer__corporate-name {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 1023px) {
  .footer__top .footer__info .footer__corporate-info .footer__corporate-name {
    font-size: clamp(1rem, 0.7798713235rem + 0.7352941176vw, 1.25rem);
    margin-top: 8px;
    padding-block: 8px;
  }
}
.footer__top .footer__nav {
  display: flex;
  gap: min(5.5555555556vw, 96px);
}
@media screen and (max-width: 1439px) {
  .footer__top .footer__nav {
    gap: clamp(1.25rem, -3.0301339286rem + 8.9285714286vw, 5rem);
  }
}
@media screen and (max-width: 1023px) {
  .footer__top .footer__nav {
    flex-direction: column;
    width: 80%;
    max-width: 560px;
    margin-inline: auto;
    gap: 32px;
  }
}
@media screen and (max-width: 479px) {
  .footer__top .footer__nav {
    width: 100%;
  }
}
.footer__top .footer__nav__group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  min-width: 240px;
}
@media screen and (max-width: 1023px) {
  .footer__top .footer__nav__group {
    min-width: 200px;
  }
}
.footer__top .footer__nav__title {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  display: flex;
  justify-content: left;
  align-items: center;
  padding-block: 0.5em;
}
.footer__top .footer__nav__title .footer__nav__link {
  font-size: min(1.25vw, 21.6px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1439px) {
  .footer__top .footer__nav__title .footer__nav__link {
    font-size: clamp(1.0625rem, 0.9088040865rem + 0.2403846154vw, 1.125rem);
  }
}
@media screen and (max-width: 1023px) {
  .footer__top .footer__nav__title .footer__nav__link {
    font-size: 1rem;
  }
}
.footer__top .footer__nav__list {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 16px;
  margin-right: 24px;
}
@media screen and (max-width: 1023px) {
  .footer__top .footer__nav__list {
    width: 100%;
  }
}
.footer__top .footer__nav__item {
  display: flex;
  justify-content: left;
  align-items: center;
}
.footer__top .footer__nav__link {
  font-size: min(1.1111111111vw, 19.2px);
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  justify-content: left;
  padding: 4px;
}
@media screen and (max-width: 1439px) {
  .footer__top .footer__nav__link {
    font-size: clamp(0.9375rem, 0.7838040865rem + 0.2403846154vw, 1rem);
  }
}
@media screen and (max-width: 1023px) {
  .footer__top .footer__nav__link {
    font-size: clamp(0.9375rem, 0.9013310185rem + 0.1543209877vw, 1rem);
  }
}
.footer__top .footer__nav__group--about .footer__nav__list {
  grid-template-columns: repeat(1, 1fr);
}
.footer__bottom {
  padding-block: 20px;
  background-color: #312b31;
}
.footer__bottom__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__bottom__inner {
    flex-direction: column;
    gap: 16px;
    padding-inline: 40px;
  }
}
@media screen and (max-width: 599px) {
  .footer__bottom__inner {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 479px) {
  .footer__bottom__inner {
    padding-inline: 16px;
  }
}
.footer__bottom .footer__external-links {
  display: flex;
  gap: 40px;
}
.footer__bottom .footer__external-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: min(1.1111111111vw, 19.2px);
  color: #fff;
}
@media screen and (max-width: 1439px) {
  .footer__bottom .footer__external-links a {
    font-size: clamp(0.875rem, 0.8126302083rem + 0.2083333333vw, 1rem);
  }
}
@media screen and (max-width: 1023px) {
  .footer__bottom .footer__external-links a {
    font-size: clamp(0.875rem, 0.802662037rem + 0.3086419753vw, 1rem);
  }
}
.footer__bottom .footer__external-links a svg {
  width: 12px;
  height: 12px;
  margin-bottom: -0.1em;
  fill: #fff;
}
.footer__bottom .footer__copyright {
  font-size: min(0.9722222222vw, 16.8px);
  color: #fff;
  letter-spacing: 0.1em;
  padding-block: 4px;
}
@media screen and (max-width: 1439px) {
  .footer__bottom .footer__copyright {
    font-size: clamp(0.8125rem, 0.7813151042rem + 0.1041666667vw, 0.875rem);
  }
}
@media screen and (max-width: 767px) {
  .footer__bottom .footer__copyright {
    margin-left: auto;
  }
}

/** ================================================
 * パンくずリスト
 * ================================================ */
.breadcrumb {
  background-color: #fff;
  border-radius: 100vmax;
}
.breadcrumb__list {
  display: flex;
  padding: 10px 16px;
}
.breadcrumb__item {
  font-size: min(1.0416666667vw, 18px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  padding-inline: 12px;
}
@media screen and (max-width: 1439px) {
  .breadcrumb__item {
    font-size: clamp(0.75rem, 0.6564453125rem + 0.3125vw, 0.9375rem);
  }
}
.breadcrumb__item:not(:last-child), .breadcrumb__item:not(:last-child) {
  border-right: 1px solid #888888;
}
.breadcrumb__item a,
.breadcrumb__item span {
  padding: 4px;
  color: #555555;
  text-decoration: underline;
}
.breadcrumb__item:last-child a,
.breadcrumb__item:last-child span {
  color: #888888;
  text-decoration: none;
}

.breadcrumb-footer {
  background-color: #f4f2f4;
}
.breadcrumb-footer__inner {
  width: 80%;
  max-width: 1120px;
  margin-inline: auto;
  padding-block: 8px;
}
@media screen and (max-width: 1439px) {
  .breadcrumb-footer__inner {
    width: 100%;
  }
}
.breadcrumb-footer__inner .breadcrumb__list {
  padding-inline: 0;
}

/** ================================================
 * ヘッダーメニューボタン
 * ================================================ */
.header__menu-button {
  width: 80px;
  height: 40px;
  border-radius: 100vmax;
  background-color: #3f223f;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .header__menu-button {
    width: clamp(3.5rem, 0.9888392857rem + 10.7142857143vw, 5rem);
    height: clamp(1.75rem, 0.4944196429rem + 5.3571428571vw, 2.5rem);
  }
}
.header__menu-button_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 16px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .header__menu-button_inner {
    width: clamp(1rem, 0.1629464286rem + 3.5714285714vw, 1.5rem);
    height: clamp(0.75rem, 0.3314732143rem + 1.7857142857vw, 1rem);
  }
}
.header__menu-button_inner span {
  position: absolute;
  right: 0;
  width: 24px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  transition: all 0.4s;
}
@media screen and (max-width: 1023px) {
  .header__menu-button_inner span {
    border-radius: 0.75px;
  }
}
@media screen and (max-width: 767px) {
  .header__menu-button_inner span {
    border-radius: 0.625px;
  }
}
@media screen and (max-width: 479px) {
  .header__menu-button_inner span {
    border-radius: 0.5px;
  }
}
@media screen and (max-width: 599px) {
  .header__menu-button_inner span {
    width: clamp(1.125rem, 0.4972098214rem + 2.6785714286vw, 1.5rem);
  }
}
.header__menu-button_inner span:nth-child(1) {
  top: 0;
}
.header__menu-button_inner span:nth-child(2) {
  top: 7px;
}
@media screen and (max-width: 599px) {
  .header__menu-button_inner span:nth-child(2) {
    top: clamp(0.3125rem, 0.1032366071rem + 0.8928571429vw, 0.4375rem);
  }
}
.header__menu-button_inner span:nth-child(3) {
  bottom: 0;
  width: 16px;
}
@media screen and (max-width: 599px) {
  .header__menu-button_inner span:nth-child(3) {
    width: clamp(0.75rem, 0.3314732143rem + 1.7857142857vw, 1rem);
  }
}
@media (hover: hover) {
  .header__menu-button:hover {
    background-color: #8a248c;
  }
  .header__menu-button:hover .header__menu-button_inner span:nth-child(3) {
    width: 24px;
  }
}
.header__menu-button.is-active {
  background-color: #8a248c;
  border: 1px solid #fff;
}
.header__menu-button.is-active .header__menu-button_inner span:nth-child(1) {
  background-color: #fff;
  transform-origin: center center;
  transform: translateY(7px) rotate(150deg);
}
@media screen and (max-width: 599px) {
  .header__menu-button.is-active .header__menu-button_inner span:nth-child(1) {
    transform: translateY(clamp(0.3125rem, 0.1032366071rem + 0.8928571429vw, 0.4375rem)) rotate(150deg);
  }
}
.header__menu-button.is-active .header__menu-button_inner span:nth-child(2) {
  opacity: 0;
}
.header__menu-button.is-active .header__menu-button_inner span:nth-child(3) {
  background-color: #fff;
  width: 24px;
  transform-origin: center center;
  transform: translateY(-7px) rotate(-150deg);
}
@media screen and (max-width: 599px) {
  .header__menu-button.is-active .header__menu-button_inner span:nth-child(3) {
    width: clamp(1.125rem, 0.4972098214rem + 2.6785714286vw, 1.5rem);
    transform: translateY(clamp(-0.3125rem, -0.1032366071rem + -0.8928571429vw, -0.4375rem)) rotate(-150deg);
  }
}

/** ================================================
 * ページリンクボタン
 * ================================================ */
.link-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: max(260px, 26%);
  padding: 6px;
  border-radius: 100vmax;
  border: 1px solid #8a248c;
}
.link-button__text {
  display: block;
  margin-inline: auto;
  padding-left: 0.5em;
  font-size: min(1.25vw, 21.6px);
  font-weight: 500;
  color: #8a248c;
}
@media screen and (max-width: 1439px) {
  .link-button__text {
    font-size: clamp(1rem, 0.9376302083rem + 0.2083333333vw, 1.125rem);
  }
}
.link-button__icon {
  width: 64px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3f223f;
  padding: 8px;
  border-radius: 100vmax;
  transition: all 0.4s ease;
}
@media screen and (max-width: 599px) {
  .link-button__icon {
    width: clamp(3.75rem, 3.3314732143rem + 1.7857142857vw, 4rem);
    height: clamp(2rem, 1.5814732143rem + 1.7857142857vw, 2.25rem);
  }
}
.link-button__icon svg {
  width: 6px;
  height: auto;
  fill: #fff;
}
@media (hover: hover) {
  .link-button:hover .link-button__text {
    opacity: 0.8;
  }
  .link-button:hover .link-button__icon {
    background-color: #8a248c;
    transform: translateX(4px);
  }
}

/** ================================================
 * エントリーボタン
 * ================================================ */
.entry-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: max(260px, 26%);
  padding: 12px;
  border-radius: 100vmax;
  background-color: #3f223f;
  color: #fff;
  line-height: 1.25;
  font-size: min(1.25vw, 21.6px);
  font-weight: 500;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 1439px) {
  .entry-button {
    font-size: clamp(1rem, 0.9376302083rem + 0.2083333333vw, 1.125rem);
  }
}
@media (hover: hover) {
  .entry-button:hover {
    background-color: #8a248c;
  }
}
.entry-button:visited {
  color: #fff;
}
.entry-button svg {
  width: 14px;
  height: 14px;
  fill: #fff;
  margin-left: 8px;
}

/** ================================================
 * Google Maps ボタン
 * ================================================ */
.map-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 6px 16px;
  border-radius: 100vmax;
  background-color: #3f223f;
  margin-top: 12px;
  transition: background-color 0.3s ease;
}
.map-button__text {
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
.map-button svg {
  width: 14px;
  height: 14px;
  fill: #fff;
  margin-left: 8px;
}
@media (hover: hover) {
  .map-button:hover {
    background-color: #8a248c;
  }
}

/** ================================================
 * ドロワーメニュー
 * ================================================ */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #8a248c;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}
.drawer.is-open {
  opacity: 1;
  visibility: visible;
}
.drawer__inner {
  width: 75%;
  max-width: 1496px;
  margin-inline: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .drawer__inner {
    width: 88%;
  }
}
@media screen and (max-width: 479px) {
  .drawer__inner {
    width: 100%;
  }
}
.drawer__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.drawer__group__title {
  font-size: clamp(1rem, 0.9376302083rem + 0.2083333333vw, 1.125rem);
  font-weight: 500;
  color: #fff !important;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding-block: 1em;
  border-bottom: 1px solid #fff;
}
.drawer__nav {
  padding: 100px 4% 16px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .drawer__nav {
    padding-top: 64px;
  }
}
.drawer__list {
  display: flex;
  flex-wrap: wrap;
}
.drawer__item {
  margin-top: 1.2em;
}
.drawer__link {
  font-size: clamp(0.9375rem, 0.9063151042rem + 0.1041666667vw, 1rem);
  font-weight: 500;
  color: #3c353c;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: left;
  gap: 12px;
  padding: 4px 8px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .drawer__link {
    gap: 8px;
  }
}
@media screen and (max-width: 479px) {
  .drawer__link {
    gap: 4px;
  }
}
.drawer__link-icon {
  width: clamp(1.5rem, 1.2899122807rem + 0.701754386vw, 2rem);
  height: clamp(1.125rem, 0.9674342105rem + 0.5263157895vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100vmax;
  border: 1px solid #fff;
  margin-right: clamp(0.5rem, 0.3949561404rem + 0.350877193vw, 0.75rem);
  transition: transform 0.3s ease;
}
.drawer__link-icon svg {
  width: clamp(0.25rem, 0.1974780702rem + 0.1754385965vw, 0.375rem);
  height: clamp(0.5rem, 0.3949561404rem + 0.350877193vw, 0.75rem);
  fill: #fff;
}
.drawer__link-text {
  max-width: calc(100% - 36px);
  text-wrap: nowrap;
  color: #fff;
}
@media (hover: hover) {
  .drawer__link:hover {
    opacity: 0.8;
  }
  .drawer__link:hover .drawer__link-icon {
    transform: translateX(6px);
  }
}

.drawer__group--top .drawer__item {
  width: 50%;
}

.drawer__group--about .drawer__group__title {
  margin-top: 8px;
}
.drawer__group--about .drawer__item {
  width: 100%;
}

.drawer__footer {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  gap: 32px;
  padding-block: 24px;
}
.drawer__footer .drawer__external-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  margin-inline: auto;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .drawer__footer .drawer__external-link {
    gap: 8px;
  }
}
@media screen and (max-width: 479px) {
  .drawer__footer .drawer__external-link {
    gap: 4px;
  }
}
.drawer__footer .drawer__external-link__text {
  font-size: clamp(0.75rem, 0.6449561404rem + 0.350877193vw, 1rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
}
.drawer__footer .drawer__external-link__icon {
  width: clamp(0.75rem, 0.6449561404rem + 0.350877193vw, 1rem);
  height: clamp(0.75rem, 0.6449561404rem + 0.350877193vw, 1rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer__footer .drawer__external-link__icon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}
.drawer__footer .drawer__entry-button {
  width: max(260px, 26%);
  padding: 12px;
  border-radius: 100vmax;
  border: 1px solid #fff;
  color: #fff;
  line-height: 1.25;
  font-size: min(1.25vw, 21.6px);
  font-weight: 500;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 1439px) {
  .drawer__footer .drawer__entry-button {
    font-size: clamp(1rem, 0.9376302083rem + 0.2083333333vw, 1.125rem);
  }
}
.drawer__footer .drawer__entry-button:visited {
  color: #fff;
}
.drawer__footer .drawer__entry-button__text {
  font-size: clamp(0.9375rem, 0.9063151042rem + 0.1041666667vw, 1rem);
}

/** ================================================
 * エントリー追従バナー
 * ================================================ */
.entry-banner {
  position: fixed;
  bottom: 20px;
  right: 2%;
  width: 30%;
  max-width: 520px;
  height: auto;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: all 0.6s ease;
}
@media screen and (max-width: 1023px) {
  .entry-banner {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .entry-banner {
    width: 50%;
  }
}
@media screen and (max-width: 599px) {
  .entry-banner {
    width: 60%;
  }
}
.entry-banner__image {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: filter 0.3s ease;
}
@media (hover: hover) {
  .entry-banner__image:hover {
    opacity: 1;
    filter: brightness(1.1);
  }
}
.entry-banner__close {
  position: absolute;
  top: -4%;
  right: -2%;
  width: max(10%, 40px);
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: filter 0.3s ease;
}
@media (hover: hover) {
  .entry-banner__close:hover {
    filter: brightness(1.5);
  }
}
@media screen and (max-width: 599px) {
  .entry-banner__close {
    top: -4%;
    right: -2%;
    width: 32px;
  }
}

.entry-banner.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/** ================================================
 * セクション見出し（大）
 * ================================================ */
.section-title--lg {
  padding-block: min(2.7777777778vw, 48px);
}
.section-title--lg h2 {
  display: inline-flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 1023px) {
  .section-title--lg h2 {
    gap: 24px;
  }
}
.section-title--lg h2 .section-title__en {
  font-size: 6.25rem;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  color: #8a248c;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (max-width: 1439px) {
  .section-title--lg h2 .section-title__en {
    font-size: clamp(5rem, 4.3763020833rem + 2.0833333333vw, 6.25rem);
  }
}
.section-title--lg h2 .section-title__en .text-small {
  margin-inline: -0.2em;
}
.section-title--lg h2 .section-title__jp {
  font-size: 1.5rem;
  line-height: 1;
  color: #3c353c;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1439px) {
  .section-title--lg h2 .section-title__jp {
    font-size: clamp(1.25rem, 1.1252604167rem + 0.4166666667vw, 1.5rem);
  }
}

.section-title--left {
  align-items: flex-start;
  justify-content: left;
}

.section-title--right {
  display: flex;
  justify-content: right;
}
.section-title--right h2 {
  align-items: flex-end;
}
.section-title--right .section-title__jp {
  padding-right: 0.5em;
}

/** ================================================
 * セクション見出し（中）
 * ================================================ */
.section-title--md {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #3c353c;
  letter-spacing: 0.1em;
}
.section-title--md .section-title__tag {
  display: inline-block;
  font-size: min(1.25vw, 21.6px);
  line-height: 1;
  color: #fff;
  letter-spacing: 0.1em;
  background-color: #8a248c;
  padding: 0.5em 1.2em;
}
@media screen and (max-width: 1023px) {
  .section-title--md .section-title__tag {
    font-size: clamp(1rem, 0.8899356618rem + 0.3676470588vw, 1.125rem);
  }
}
.section-title--md .section-title__main {
  font-size: min(2.2222222222vw, 38.4px);
  margin-top: 0.75em;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .section-title--md .section-title__main {
    font-size: clamp(1.5rem, 1.0597426471rem + 1.4705882353vw, 2rem);
  }
}

/** ================================================
 * セクション見出し（小）
 * ================================================ */
.section-title--sm {
  font-size: min(1.25vw, 21.6px);
  letter-spacing: 0.1em;
  padding-block: 1em;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .section-title--sm {
    font-size: clamp(1.125rem, 1.0626302083rem + 0.2083333333vw, 1.25rem);
  }
}
.section-title--sm::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2em;
  height: 2px;
  transform: translateX(-50%);
  background-color: #8a248c;
}
.section-title--sm--left::before {
  left: 0;
  transform: translateX(0);
}

/** ================================================
 * オビ見出し
 * ================================================ */
.section-title--label {
  display: inline-block;
  font-size: min(1.25vw, 21.6px);
  line-height: 1;
  color: #fff;
  letter-spacing: 0.1em;
  background-color: #8a248c;
  padding: 0.5em 1.2em;
}
@media screen and (max-width: 1439px) {
  .section-title--label {
    font-size: clamp(1rem, 0.9376302083rem + 0.2083333333vw, 1.125rem);
  }
}

/** ================================================
 * インタビューカード
 * ================================================ */
.interview-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  aspect-ratio: 400/520;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
}
.interview-card__body {
  position: absolute;
  inset: 2px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  z-index: 2;
}
@media screen and (max-width: 1439px) {
  .interview-card__body {
    padding: 6% 4%;
  }
}
@media screen and (max-width: 1023px) {
  .interview-card__body {
    padding: 8px;
  }
}
.interview-card__catch {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: min(2.2222222222vw, 38.4px);
}
.interview-card__catch img {
  width: 90%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.interview-card__box {
  width: 100%;
  display: flex;
  justify-content: left;
  background: rgba(255, 255, 255, 0.85);
  padding: 16px 8px;
  border-radius: 16px;
}
@media screen and (max-width: 1023px) {
  .interview-card__box {
    border-radius: 12px;
  }
}
@media screen and (max-width: 767px) {
  .interview-card__box {
    border-radius: 10px;
  }
}
@media screen and (max-width: 479px) {
  .interview-card__box {
    border-radius: 8px;
  }
}
@media screen and (max-width: 1439px) {
  .interview-card__box {
    padding: 12px 6px;
  }
}
.interview-card__name {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-inline: 16px;
}
@media screen and (max-width: 1023px) {
  .interview-card__name {
    padding-inline: 4%;
  }
}
.interview-card__name__en {
  font-size: min(0.8333333333vw, 14.4px);
  font-weight: 500;
  color: #8a248c;
  letter-spacing: 0;
}
@media screen and (max-width: 1439px) {
  .interview-card__name__en {
    font-size: clamp(0.6875rem, 0.544828869rem + 0.2976190476vw, 0.8125rem);
  }
}
@media screen and (max-width: 599px) {
  .interview-card__name__en {
    font-size: min(3.2vw, 15px);
  }
}
.interview-card__name__ja {
  font-size: min(1.1111111111vw, 19.2px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-block: 8px;
}
@media screen and (max-width: 1439px) {
  .interview-card__name__ja {
    font-size: clamp(0.8125rem, 0.5984933036rem + 0.4464285714vw, 1rem);
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 599px) {
  .interview-card__name__ja {
    font-size: min(4vw, 20px);
  }
}
.interview-card__info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-inline: 16px;
  border-left: 1px solid #cccccc;
}
@media screen and (max-width: 1023px) {
  .interview-card__info {
    padding-inline: 4%;
  }
}
.interview-card__info p {
  font-size: min(0.9027777778vw, 15.6px);
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 1439px) {
  .interview-card__info p {
    font-size: clamp(0.6875rem, 0.544828869rem + 0.2976190476vw, 0.8125rem);
  }
}
@media screen and (max-width: 599px) {
  .interview-card__info p {
    font-size: min(3.2vw, 16px);
  }
}
.interview-card__info p:last-child {
  padding-block: 8px;
}
.interview-card__image {
  position: absolute;
  inset: 2px;
  z-index: 1;
  overflow: hidden;
  border-radius: 20px;
}
.interview-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .interview-card:hover .interview-card__image img {
    transform: scale(1.05);
  }
}

/** ================================================
 * ページトップボタン
 * ================================================ */
.page-top {
  position: fixed;
  bottom: 40px;
  right: 2%;
  mix-blend-mode: difference;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
}
.page-top__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(1.5277777778vw, 26.4px);
  padding: 4px;
}
@media screen and (max-width: 1439px) {
  .page-top__link {
    width: 1.375rem;
  }
}
.page-top__link svg {
  margin-bottom: 0.15em;
  fill: #b7f3ac;
}
.page-top.is-show {
  opacity: 1;
  visibility: visible;
}

.page-top--top {
  bottom: calc(40px + min(30vw, 520px) * 0.3711538462 + 20px);
}
@media screen and (max-width: 1439px) {
  .page-top--top {
    bottom: calc(24px + min(30vw, 520px) * 0.3711538462 + 20px);
  }
}
@media screen and (max-width: 1023px) {
  .page-top--top {
    bottom: calc(20px + 14.8461538462vw + 20px);
  }
}
@media screen and (max-width: 767px) {
  .page-top--top {
    bottom: calc(16px + 18.5576923077vw + 20px);
  }
}
@media screen and (max-width: 599px) {
  .page-top--top {
    bottom: calc(12px + 22.2692307692vw + 20px);
  }
}

.page-top--top.no-banner {
  bottom: 40px;
}

/** ================================================
 * トップページ全体
 * ================================================ */
.top-main {
  position: relative;
}
.top-main::before {
  position: absolute;
  content: "";
  top: 100px;
  right: -160px;
  left: -160px;
  bottom: 0;
  background-image: linear-gradient(0deg, transparent 159px, #eedcef 160px), linear-gradient(90deg, transparent 159px, #eedcef 160px);
  background-size: 160px 160px;
  transform: translateX(-80px);
  z-index: -2;
  pointer-events: none;
  opacity: 0.9;
}
@media screen and (max-width: 1023px) {
  .top-main::before {
    top: 76px;
  }
}

/** ================================================
 * メインビジュアル
 * ================================================ */
.mv {
  width: 100%;
  padding-block: 120px 40px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .mv {
    padding-block: 96px 32px;
  }
}
.mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 12.5vw;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.5) 20%, rgba(200, 142, 200, 0.12) 50%, rgba(235, 156, 255, 0.08) 80%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .mv::before {
    bottom: 19.53125vw;
  }
}
@media screen and (max-width: 767px) {
  .mv::before {
    bottom: 28.6458333333vw;
  }
}
@media screen and (max-width: 479px) {
  .mv::before {
    bottom: 49.2170022371vw;
  }
}
.mv::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 11.1111111111vw;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .mv::after {
    height: 17.578125vw;
  }
}
@media screen and (max-width: 767px) {
  .mv::after {
    height: 26.0416666667vw;
  }
}
@media screen and (max-width: 479px) {
  .mv::after {
    height: 44.7427293065vw;
  }
}
.mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: min(83.3333333333vw, 1500px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.75;
}
@media screen and (max-width: 1439px) {
  .mv__bg {
    height: 86.1111111111vw;
  }
}
@media screen and (max-width: 1023px) {
  .mv__bg {
    height: 105.46875vw;
  }
}
@media screen and (max-width: 767px) {
  .mv__bg {
    height: 166.6666666667vw;
    opacity: 0.85;
  }
}
@media screen and (max-width: 599px) {
  .mv__bg {
    height: 180vw;
    opacity: 0.9;
  }
}
@media screen and (max-width: 479px) {
  .mv__bg {
    height: 208.7682672234vw;
    opacity: 1;
  }
}
.mv__bg picture {
  position: absolute;
  aspect-ratio: 1/1;
  opacity: 0;
  transform: translateY(30px) translateX(-60px);
  animation: slideFadeUp 0.6s ease-out forwards;
}
.mv__bg picture:nth-child(1) {
  top: 2%;
  left: -9.2361111111vw;
  width: 27.7777777778vw;
  animation-delay: 0.2s;
}
@media screen and (max-width: 1023px) {
  .mv__bg picture:nth-child(1) {
    top: 2%;
    left: -12.98828125vw;
    width: 39.0625vw;
  }
}
@media screen and (max-width: 767px) {
  .mv__bg picture:nth-child(1) {
    top: 0;
    left: -9.2447916667vw;
    width: 73.3333333333vw;
  }
}
@media screen and (max-width: 599px) {
  .mv__bg picture:nth-child(1) {
    top: 2%;
  }
}
@media screen and (max-width: 479px) {
  .mv__bg picture:nth-child(1) {
    top: 5%;
  }
}
.mv__bg picture:nth-child(2) {
  top: 2%;
  right: -0.3472222222vw;
  width: 48.6111111111vw;
  animation-delay: 0.6s;
}
@media screen and (max-width: 1023px) {
  .mv__bg picture:nth-child(2) {
    right: -0.48828125vw;
    width: 68.359375vw;
  }
}
@media screen and (max-width: 767px) {
  .mv__bg picture:nth-child(2) {
    top: -2.6041666667vw;
    right: -2.9947916667vw;
    width: 60vw;
  }
}
@media screen and (max-width: 599px) {
  .mv__bg picture:nth-child(2) {
    top: 2%;
  }
}
@media screen and (max-width: 479px) {
  .mv__bg picture:nth-child(2) {
    top: 5%;
  }
}
.mv__bg picture:nth-child(3) {
  bottom: 0;
  right: -4.6527777778vw;
  width: 29.1666666667vw;
  animation-delay: 1s;
}
@media screen and (max-width: 1023px) {
  .mv__bg picture:nth-child(3) {
    width: 41.015625vw;
    right: -9.765625vw;
  }
}
@media screen and (max-width: 767px) {
  .mv__bg picture:nth-child(3) {
    bottom: 18.8802083333vw;
    right: -2.9947916667vw;
    width: 70vw;
  }
}
.mv__bg picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.mv__inner {
  width: 100%;
}
.mv__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: calc(min(1.1111111111vw, 19.2px) + 40px);
  margin-top: min(1.3888888889vw, 24px);
  padding-block: min(1.5277777778vw, 26.4px) min(2.5vw, 43.2px);
  padding-inline: 20px;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 1023px) {
  .mv__content {
    gap: 5.46875vw;
    padding-block: 24px 32px;
  }
}
@media screen and (max-width: 767px) {
  .mv__content {
    gap: 9.375vw;
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .mv__content {
    padding-inline: 16px;
  }
}
@media screen and (max-width: 479px) {
  .mv__content {
    gap: 8.9485458613vw;
    padding-block: 16px 24px;
  }
}
.mv__content .catch-copy {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  margin-left: -1vw;
  max-width: 1080px;
  height: min(7.9861111111vw, 160px);
  animation: fadeUp 0.6s ease-in-out forwards;
}
@media screen and (max-width: 1023px) {
  .mv__content .catch-copy {
    height: 8.984375vw;
  }
}
@media screen and (max-width: 767px) {
  .mv__content .catch-copy {
    height: 24.7592847318vw;
  }
}
@media screen and (max-width: 479px) {
  .mv__content .catch-copy {
    height: 35.7941834452vw;
  }
}
.mv__content .catch-copy__sub {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding-left: 1vw;
  width: auto;
  max-width: 528px;
  height: 2.2916666667vw;
}
@media screen and (max-width: 1023px) {
  .mv__content .catch-copy__sub {
    height: 30%;
  }
}
@media screen and (max-width: 767px) {
  .mv__content .catch-copy__sub {
    height: 20%;
    max-width: 70%;
  }
}
@media screen and (max-width: 479px) {
  .mv__content .catch-copy__sub {
    height: 25%;
  }
}
.mv__content .catch-copy__sub img {
  width: auto;
  height: 100%;
}
.mv__content .catch-copy__main {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 16px;
  width: 100%;
  max-width: 1080px;
  height: 4.0277777778vw;
}
@media screen and (max-width: 1023px) {
  .mv__content .catch-copy__main {
    height: 50%;
  }
}
@media screen and (max-width: 767px) {
  .mv__content .catch-copy__main {
    height: 66%;
  }
}
@media screen and (max-width: 479px) {
  .mv__content .catch-copy__main {
    height: 75%;
  }
}
.mv__content .catch-copy__main picture,
.mv__content .catch-copy__main img {
  width: auto;
  height: 100%;
}
.mv__content .page-index {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .mv__content .page-index {
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .mv__content .page-index {
    width: 100%;
  }
}
.mv__content .page-index__container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mv__content .page-index__title {
  position: absolute;
  top: 50%;
  left: max(-6.9444444444vw, -120px);
  transform: translateY(-50%);
  font-size: min(1.6666666667vw, 28.8px);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
  color: #8a248c;
}
@media screen and (max-width: 1439px) {
  .mv__content .page-index__title {
    font-size: clamp(1.25rem, 0.6352163462rem + 0.9615384615vw, 1.5rem);
  }
}
@media screen and (max-width: 1023px) {
  .mv__content .page-index__title {
    left: max(-9.765625vw, -120px);
    font-size: clamp(1.125rem, 0.2028245192rem + 1.4423076923vw, 1.5rem);
  }
}
@media screen and (max-width: 767px) {
  .mv__content .page-index__title {
    width: 100%;
    top: 0;
    left: 0;
  }
  .mv__content .page-index__title::after {
    position: absolute;
    content: "";
    top: 66%;
    left: 4em;
    right: 0;
    height: 1px;
    background-color: #8a248c;
  }
}
.mv__content .page-index__list {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-left: 2px solid #8a248c;
}
@media screen and (max-width: 1023px) {
  .mv__content .page-index__list {
    flex-wrap: wrap;
    row-gap: 1em;
  }
}
@media screen and (max-width: 767px) {
  .mv__content .page-index__list {
    border-left: none;
    padding-top: 2em;
  }
}
@media screen and (max-width: 479px) {
  .mv__content .page-index__list {
    padding-top: 1.5em;
  }
}
.mv__content .page-index__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 1.3888888889vw;
}
@media screen and (max-width: 1439px) {
  .mv__content .page-index__item {
    padding-inline: 1.1111111111vw;
  }
}
@media screen and (max-width: 1023px) {
  .mv__content .page-index__item {
    width: 33%;
  }
  .mv__content .page-index__item:not(:first-child):nth-child(4) {
    border-left: none;
  }
}
@media screen and (max-width: 479px) {
  .mv__content .page-index__item {
    width: 50%;
    border-left: none !important;
  }
}
.mv__content .page-index__item:not(:first-child) {
  border-left: 1px solid #aaaaaa;
}
.mv__content .page-index__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(0.5555555556vw, 9.6px);
  padding: 4px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .mv__content .page-index__link {
    gap: 8%;
    padding-inline: 1vw;
  }
}
@media screen and (max-width: 767px) {
  .mv__content .page-index__link {
    padding-inline: 0;
    gap: 6%;
  }
}
.mv__content .page-index__link__text {
  font-size: min(1.0416666667vw, 18px);
  font-weight: 500;
  color: #3c353c;
  letter-spacing: 0;
  line-height: 1;
  transition: color 0.3s ease;
}
@media screen and (max-width: 1439px) {
  .mv__content .page-index__link__text {
    font-size: clamp(0.84375rem, 0.6132061298rem + 0.3605769231vw, 0.9375rem);
  }
}
@media screen and (max-width: 1023px) {
  .mv__content .page-index__link__text {
    font-size: clamp(0.84375rem, 0.7501220703rem + 0.1953125vw, 0.875rem);
  }
}
@media screen and (max-width: 767px) {
  .mv__content .page-index__link__text {
    font-size: clamp(0.8125rem, 0.6046006944rem + 0.6944444444vw, 0.9375rem);
  }
}
@media screen and (max-width: 479px) {
  .mv__content .page-index__link__text {
    font-size: clamp(0.875rem, 0.6496394231rem + 0.9615384615vw, 0.9375rem);
  }
}
.mv__content .page-index__link__icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mv__content .page-index__link__icon svg {
  width: 13px;
  height: 8px;
  transition: fill 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .mv__content .page-index__link__icon svg {
    width: 10px;
    height: 10px;
  }
}
@media (hover: hover) {
  .mv__content .page-index__link:hover .page-index__link {
    opacity: 1;
  }
  .mv__content .page-index__link:hover .page-index__link__text {
    color: #8a248c;
  }
  .mv__content .page-index__link:hover .page-index__link__icon svg {
    fill: #8a248c;
  }
}
.mv__content .main-copy {
  width: 54%;
  padding-block: 8px;
}
.mv__image {
  width: 88%;
  aspect-ratio: 1920/840;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1023px) {
  .mv__image {
    width: 94%;
    aspect-ratio: 1920/960;
  }
}
@media screen and (max-width: 767px) {
  .mv__image {
    width: calc(100% - 20px);
    aspect-ratio: 1920/1080;
    margin-top: 8px;
  }
}
@media screen and (max-width: 479px) {
  .mv__image {
    width: calc(100% - 16px);
    aspect-ratio: 1920/1280;
    margin-top: 10px;
  }
}
.mv__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 0 20px 20px 0;
}
.mv__message {
  height: min(8.3333333333vw, 144px);
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  position: relative;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 1439px) {
  .mv__message {
    height: clamp(4.5rem, 3.4426691729rem + 4.5112781955vw, 7.5rem);
  }
}
.mv__message img {
  height: 100%;
  width: auto;
  max-width: none;
}
.mv__message img:nth-child(1) {
  animation: scrollLeft1 60s -30s infinite linear;
}
.mv__message img:nth-child(2) {
  animation: scrollLeft2 60s infinite linear;
}
@keyframes scrollLeft1 {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes scrollLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

/** ================================================
 * C4Cの強み
 * ================================================ */
.strength {
  background: linear-gradient(to bottom, #ffffff 0%, #fbf5fb 100%);
}
@media screen and (max-width: 1439px) {
  .strength {
    margin-top: -32px;
  }
}
.strength .strength__body {
  margin-top: min(1.3888888889vw, 24px);
  padding-top: 40px;
}
@media screen and (max-width: 1023px) {
  .strength .strength__body {
    max-width: 880px;
    margin-inline: auto;
    padding-top: 32px;
  }
}
.strength .strength__item {
  padding-block: min(4.1666666667vw, 72px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1023px) {
  .strength .strength__item {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 767px) {
  .strength .strength__item {
    flex-direction: column;
    gap: 28px;
    max-width: 520px;
    margin-inline: auto;
    padding-block: 40px;
    padding-inline: 20px;
  }
}
@media screen and (max-width: 479px) {
  .strength .strength__item {
    padding-inline: 0;
  }
}
.strength .strength__item__content {
  margin-inline: auto;
  padding-inline: 20px;
  margin-top: min(-1.3888888889vw, -24px);
}
@media screen and (max-width: 1023px) {
  .strength .strength__item__content {
    margin-inline: 0;
    padding-right: 8%;
    padding-left: 0;
  }
}
@media screen and (max-width: 479px) {
  .strength .strength__item__content {
    padding-inline: 0;
  }
}
.strength .strength__item__content .section-title--bubble {
  left: 20px;
  height: min(4.1666666667vw, 72px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
@media screen and (max-width: 1023px) {
  .strength .strength__item__content .section-title--bubble {
    height: 3rem;
  }
}
.strength .strength__item__content .section-title--bubble img {
  width: auto;
  height: 100%;
}
.strength .strength__item:not(:first-child) {
  margin-top: 16px;
}
.strength .strength__item__title {
  font-size: min(1.9444444444vw, 33.6px);
  margin-top: 8px;
  padding-block: 0.75em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1023px) {
  .strength .strength__item__title {
    font-size: clamp(1.25rem, 1.0298713235rem + 0.7352941176vw, 1.5rem);
    padding-block: 0.5em;
  }
}
.strength .strength__item__text {
  padding-block: 16px;
}
@media screen and (max-width: 1023px) {
  .strength .strength__item__text {
    padding-block: 12px;
  }
}
@media screen and (max-width: 479px) {
  .strength .strength__item__text p {
    font-size: clamp(0.875rem, 0.6496394231rem + 0.9615384615vw, 0.9375rem);
  }
}
.strength .strength__item__text p:not(:first-child) {
  margin-top: 0.75em;
}
.strength .strength__item__image {
  width: 43.1654676259%;
  aspect-ratio: 480/320;
}
@media screen and (max-width: 767px) {
  .strength .strength__item__image {
    width: 100%;
    margin-right: auto;
  }
}
.strength .strength__item__image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 1023px) {
  .strength .strength__item__image img {
    border-radius: 12px;
  }
}
@media screen and (max-width: 767px) {
  .strength .strength__item__image img {
    border-radius: 10px;
  }
}
@media screen and (max-width: 479px) {
  .strength .strength__item__image img {
    border-radius: 8px;
  }
}
.strength .strength__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .strength .strength__item:nth-child(even) {
    flex-direction: column;
  }
}
@media screen and (max-width: 1023px) {
  .strength .strength__item:nth-child(even) .strength__item__content {
    padding-left: 8%;
    padding-right: 0;
    margin-inline: 0;
  }
}
@media screen and (max-width: 767px) {
  .strength .strength__item:nth-child(even) .strength__item__content {
    margin-left: auto;
  }
}
@media screen and (max-width: 479px) {
  .strength .strength__item:nth-child(even) .strength__item__content {
    padding-inline: 0;
  }
}
@media screen and (max-width: 767px) {
  .strength .strength__item:nth-child(even) .section-title--bubble {
    align-items: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .strength .strength__item:nth-child(even) .strength__item__title {
    text-align: right;
    padding-right: 0.25em;
  }
}
@media screen and (max-width: 767px) {
  .strength .strength__item:nth-child(even) .strength__item__text p {
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .strength .strength__item:nth-child(even) .strength__item__image {
    margin-right: 0;
    margin-left: auto;
  }
}
.strength .strength__footer {
  padding-block: min(2.7777777778vw, 48px);
  width: 100%;
}
.strength .strength__footer__text {
  line-height: 1.8;
  text-align: center;
  font-size: min(1.1111111111vw, 19.2px);
}
@media screen and (max-width: 1439px) {
  .strength .strength__footer__text {
    font-size: clamp(0.9375rem, 0.9154722744rem + 0.0939849624vw, 1rem);
  }
}
@media screen and (max-width: 767px) {
  .strength .strength__footer__text {
    padding-block: 16px 24px;
  }
}
.strength .strength__footer__text .sp-only {
  display: none;
}
@media screen and (max-width: 599px) {
  .strength .strength__footer__text .sp-only {
    display: block;
  }
}
.strength .strength__footer__button {
  display: flex;
  justify-content: center;
  margin-top: min(2.7777777778vw, 48px);
  padding-block: min(1.3888888889vw, 24px);
}

/** ================================================
 * 数字で見るC4C
 * ================================================ */
.data {
  background-color: #fff;
  position: relative;
}
.data__bg {
  position: absolute;
  top: -6.9444444444vw;
  left: -2.7777777778vw;
  width: 37.5vw;
  aspect-ratio: 1/1;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transform: translateY(30px) translateX(-60px);
}
@media screen and (max-width: 1023px) {
  .data__bg {
    top: -9.7751710655vw;
    width: 46.9208211144vw;
  }
}
@media screen and (max-width: 767px) {
  .data__bg {
    top: -10.4166666667vw;
    width: 62.5vw;
  }
}
.data__bg img {
  width: 100%;
  height: 100%;
}
.data__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 3.3333333333vw;
  margin-top: min(5.5555555556vw, 96px);
  padding-inline: min(3.4722222222vw, 66px);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .data__grid {
    display: flex;
    flex-direction: column;
    gap: 5.2151238592vw;
    margin-top: 48px;
    max-width: 520px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 479px) {
  .data__grid {
    gap: 24px;
    padding-inline: 0;
  }
}
.data .data-card {
  position: relative;
  background-color: #f4f2f4;
  border-radius: 16px;
  border: 1px solid #8a248c;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1023px) {
  .data .data-card {
    border-radius: 12px;
  }
}
@media screen and (max-width: 767px) {
  .data .data-card {
    border-radius: 10px;
  }
}
@media screen and (max-width: 479px) {
  .data .data-card {
    border-radius: 8px;
  }
}
.data .data-card:nth-child(1) {
  grid-area: 1/1/2/3;
  aspect-ratio: 1010/480;
}
@media screen and (max-width: 767px) {
  .data .data-card:nth-child(1) {
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 767px) {
  .data .data-card:nth-child(1) .data-card__graph {
    display: none;
  }
}
.data .data-card:nth-child(2) {
  grid-area: 2/1/3/2;
  aspect-ratio: 1/1;
}
.data .data-card:nth-child(3) {
  grid-area: 2/2/3/3;
  aspect-ratio: 1/1;
}
.data .data-card:nth-child(4) {
  grid-area: 3/1/4/2;
  aspect-ratio: 1/1;
}
.data .data-card:nth-child(5) {
  grid-area: 4/1/5/2;
  aspect-ratio: 1/1;
}
.data .data-card:nth-child(6) {
  grid-area: 3/2/5/3;
  aspect-ratio: 480/1010;
}
@media screen and (max-width: 767px) {
  .data .data-card:nth-child(6) {
    aspect-ratio: 1/1;
  }
}
.data .data-card__figure {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.data .data-card__figure img {
  position: relative;
  z-index: 1;
}
.data .data-card__graph {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.data .data-card__graph__box {
  fill: none;
}
.data .data-card__graph .line-grow {
  stroke-width: 32px;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.5s ease-in-out;
}
.data .data-card__graph .line-grow.is-animated {
  stroke-dashoffset: 0;
}
.data .data-card__graph .line-grow-1 {
  stroke: #c491c5;
}
.data .data-card__graph .line-grow-2 {
  stroke: #b97cba;
}
.data .data-card__graph .line-grow-3 {
  stroke: #ad66af;
}
.data .data-card__graph .line-grow-4 {
  stroke: #a150a3;
}
.data .data-card__graph .line-grow-5 {
  stroke: #963a98;
}
.data .data-card__graph .line-grow-6 {
  stroke: #8a248c;
}
.data .data-card__graph .line-grow-7, .data .data-card__graph .line-grow-7-sp {
  stroke: #963a98;
  fill: none;
  transition: stroke-dashoffset 2s ease-in-out;
}
.data .data-card__graph .line-grow-7 {
  stroke-width: 56px;
}
@media screen and (max-width: 767px) {
  .data .data-card__graph .line-grow-7 {
    display: none;
  }
}
.data .data-card__graph .line-grow-7-sp {
  stroke-width: 28px;
  display: none;
}
@media screen and (max-width: 767px) {
  .data .data-card__graph .line-grow-7-sp {
    display: block;
  }
}
.data .data-card__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.data .data-card__text__main {
  display: flex;
  flex-direction: column;
}
.data .data-card__text__title {
  font-size: min(2.3529411765vw, 42px);
  font-weight: 500;
  color: #3f223f;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (max-width: 1023px) {
  .data .data-card__text__title {
    font-size: clamp(1.5rem, 0.7509765625rem + 1.5625vw, 1.75rem);
  }
}
@media screen and (max-width: 767px) {
  .data .data-card__text__title {
    font-size: clamp(1.75rem, 1.3342013889rem + 1.3888888889vw, 2rem);
  }
}
@media screen and (max-width: 479px) {
  .data .data-card__text__title {
    font-size: 6.2639821029vw;
  }
}
.data .data-card__text__number {
  font-weight: 500;
  color: #8a248c;
  letter-spacing: 0;
  display: block;
  border-bottom: 1px solid #cccccc;
}
.data .data-card__text .data-number {
  font-family: "Poppins", sans-serif;
  margin-right: 0.05em;
  line-height: 1;
  letter-spacing: 0;
}
.data .data-card__text__sub {
  padding-top: 1.25em;
}
.data .data-card__text__sub p,
.data .data-card__text__sub li {
  font-size: min(1.2745098039vw, 22px);
  line-height: 1.8;
  letter-spacing: 0;
}
@media screen and (max-width: 1439px) {
  .data .data-card__text__sub p,
  .data .data-card__text__sub li {
    font-size: clamp(1.0625rem, 0.9088040865rem + 0.2403846154vw, 1.125rem);
  }
}
@media screen and (max-width: 1023px) {
  .data .data-card__text__sub p,
  .data .data-card__text__sub li {
    font-size: clamp(0.875rem, 0.3132324219rem + 1.171875vw, 1.0625rem);
  }
}
@media screen and (max-width: 767px) {
  .data .data-card__text__sub p,
  .data .data-card__text__sub li {
    font-size: clamp(0.90625rem, 0.6983506944rem + 0.6944444444vw, 1.03125rem);
    line-height: 1.6;
  }
}
@media screen and (max-width: 479px) {
  .data .data-card__text__sub p,
  .data .data-card__text__sub li {
    font-size: 3.2438478747vw;
  }
}
.data .data-card__text--01 {
  position: absolute;
  top: 0;
  right: 0;
  width: 32%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .data .data-card__text--01 {
    width: 56%;
    padding-bottom: 20%;
  }
}
.data .data-card__text--01 .data-card__text__number {
  font-size: min(2.3529411765vw, 42px);
  margin-right: 18%;
  padding-block: min(1.1764705882vw, 22px);
}
@media screen and (max-width: 767px) {
  .data .data-card__text--01 .data-card__text__number {
    font-size: clamp(1.5rem, 1.2608418367rem + 1.0204081633vw, 1.75rem);
  }
}
@media screen and (max-width: 479px) {
  .data .data-card__text--01 .data-card__text__number {
    font-size: 5.3691275168vw;
  }
}
.data .data-card__text--01 .data-number {
  font-size: min(9.8039215686vw, 180px);
}
@media screen and (max-width: 767px) {
  .data .data-card__text--01 .data-number {
    font-size: clamp(6.25rem, 4.1710069444rem + 6.9444444444vw, 7.5rem);
  }
}
@media screen and (max-width: 479px) {
  .data .data-card__text--01 .data-number {
    font-size: 22.3713646532vw;
  }
}
.data .data-card__text--02 {
  position: absolute;
  top: 0;
  right: min(2%, 11px);
  width: 46%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .data .data-card__text--02 {
    width: 43%;
    padding-bottom: 10%;
  }
}
.data .data-card__text--02 .data-card__text__number {
  font-size: min(1.9607843137vw, 36px);
  margin-right: 16%;
  padding-block: min(1.568627451vw, 30px);
}
@media screen and (max-width: 767px) {
  .data .data-card__text--02 .data-card__text__number {
    font-size: clamp(1.25rem, 1.0108418367rem + 1.0204081633vw, 1.5rem);
  }
}
@media screen and (max-width: 479px) {
  .data .data-card__text--02 .data-card__text__number {
    font-size: 4.4742729306vw;
  }
}
.data .data-card__text--02 .data-number {
  font-size: min(7.0588235294vw, 128px);
}
@media screen and (max-width: 767px) {
  .data .data-card__text--02 .data-number {
    font-size: clamp(5.5rem, 4.6684027778rem + 2.7777777778vw, 6rem);
  }
}
.data .data-card__text--03 {
  position: absolute;
  top: 0;
  left: min(10%, 57px);
  width: 38%;
  height: 100%;
  padding-top: 2.1568627451vw;
}
@media screen and (max-width: 1023px) {
  .data .data-card__text--03 {
    width: 40%;
    padding-bottom: 10%;
  }
}
@media screen and (max-width: 767px) {
  .data .data-card__text--03 {
    width: 35%;
  }
}
.data .data-card__text--03 .data-card__text__number {
  font-size: min(1.9607843137vw, 36px);
  padding-block: min(1.568627451vw, 30px);
}
@media screen and (max-width: 767px) {
  .data .data-card__text--03 .data-card__text__number {
    font-size: clamp(1.25rem, 1.0108418367rem + 1.0204081633vw, 1.5rem);
  }
}
@media screen and (max-width: 479px) {
  .data .data-card__text--03 .data-card__text__number {
    font-size: 4.4742729306vw;
  }
}
.data .data-card__text--03 .data-number {
  font-size: min(7.0588235294vw, 128px);
}
@media screen and (max-width: 767px) {
  .data .data-card__text--03 .data-number {
    font-size: clamp(5.5rem, 4.6684027778rem + 2.7777777778vw, 6rem);
  }
}
@media screen and (max-width: 479px) {
  .data .data-card__text--03 .data-number {
    font-size: 19.6868008949vw;
  }
}
.data .data-card__text--04 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 28%;
}
.data .data-card__text--04 .data-card__text__main {
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.data .data-card__text--04 .data-card__text__number {
  font-size: min(1.568627451vw, 28px);
  padding-block: min(0.7843137255vw, 15px);
  border-bottom: none;
  width: 50%;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .data .data-card__text--04 .data-card__text__number {
    font-size: clamp(1.25rem, 1.0108418367rem + 1.0204081633vw, 1.5rem);
  }
}
@media screen and (max-width: 479px) {
  .data .data-card__text--04 .data-card__text__number {
    font-size: 4.4742729306vw;
  }
}
.data .data-card__text--04 .data-number {
  font-size: min(8.6274509804vw, 156px);
  letter-spacing: -0.1em;
}
@media screen and (max-width: 767px) {
  .data .data-card__text--04 .data-number {
    font-size: clamp(6.25rem, 5.2105034722rem + 3.4722222222vw, 6.875rem);
  }
}
@media screen and (max-width: 479px) {
  .data .data-card__text--04 .data-number {
    font-size: 22.3713646532vw;
  }
}
.data .data-card__text--04 .data-card__text__sub {
  margin-inline: 10%;
  border-top: 1px solid #cccccc;
}
@media screen and (max-width: 1023px) {
  .data .data-card__text--04 .data-card__text__sub {
    margin-inline: 8%;
  }
}
@media screen and (max-width: 767px) {
  .data .data-card__text--04 .data-card__text__sub {
    margin-inline: 11%;
  }
}
.data .data-card__text--05 {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.data .data-card__text--05 .data-card__text__main {
  border-bottom: 1px solid #cccccc;
  margin-inline: 10%;
}
.data .data-card__text--05 .data-card__text__number {
  font-size: min(1.9607843137vw, 36px);
  padding-block: min(1.9607843137vw, 36px);
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .data .data-card__text--05 .data-card__text__number {
    font-size: clamp(1.25rem, 1.0108418367rem + 1.0204081633vw, 1.5rem);
  }
}
@media screen and (max-width: 479px) {
  .data .data-card__text--05 .data-card__text__number {
    font-size: 4.4742729306vw;
  }
}
.data .data-card__text--05 .data-number {
  font-size: min(7.8431372549vw, 145px);
}
@media screen and (max-width: 767px) {
  .data .data-card__text--05 .data-number {
    font-size: clamp(5.5rem, 4.6684027778rem + 2.7777777778vw, 6rem);
  }
}
@media screen and (max-width: 479px) {
  .data .data-card__text--05 .data-number {
    font-size: 19.6868008949vw;
  }
}
.data .data-card__text--05 .data-card__text__sub {
  margin-inline: 10%;
}
@media screen and (max-width: 1023px) {
  .data .data-card__text--05 .data-card__text__sub {
    margin-inline: 8%;
  }
}
@media screen and (max-width: 767px) {
  .data .data-card__text--05 .data-card__text__sub {
    margin-inline: 10%;
  }
}
.data .data-card__text--06 {
  position: absolute;
  top: 0;
  left: min(10%, 57px);
  width: 80%;
  height: 100%;
  justify-content: space-between;
  padding-block: 18% 12%;
}
@media screen and (max-width: 1023px) {
  .data .data-card__text--06 {
    left: 6%;
    width: 88%;
  }
}
@media screen and (max-width: 767px) {
  .data .data-card__text--06 {
    left: 4%;
    width: 92%;
    padding-block: 8%;
  }
}
@media screen and (max-width: 767px) {
  .data .data-card__text--06 .data-card__text__title {
    padding-left: 3%;
  }
}
.data .data-card__text--06 .data-card__text__number {
  position: absolute;
  top: min(37.25%, 440px);
  left: 47%;
  width: 80%;
  transform: translate(-50%, -50%);
  border-bottom: none;
  z-index: 2;
  text-align: center;
  font-size: min(2.3529411765vw, 42px);
}
@media screen and (max-width: 767px) {
  .data .data-card__text--06 .data-card__text__number {
    font-size: clamp(1.5rem, 1.2608418367rem + 1.0204081633vw, 1.75rem);
    top: 42%;
    left: 64%;
  }
}
@media screen and (max-width: 479px) {
  .data .data-card__text--06 .data-card__text__number {
    font-size: 5.3691275168vw;
  }
}
.data .data-card__text--06 .data-number {
  font-size: min(7.8431372549vw, 145px);
  padding-left: 1.568627451vw;
  margin-right: -0.05em;
}
@media screen and (max-width: 767px) {
  .data .data-card__text--06 .data-number {
    font-size: clamp(5rem, 3.7526041667rem + 4.1666666667vw, 5.75rem);
  }
}
@media screen and (max-width: 479px) {
  .data .data-card__text--06 .data-number {
    font-size: 17.8970917226vw;
  }
}
.data .data-card__text--06 .data-card__text__sub {
  border-top: 1px solid #cccccc;
}
.data .data-card__text--06 .data-card__text__sub ul {
  padding-left: 1.5em;
}
@media screen and (max-width: 479px) {
  .data .data-card__text--06 .data-card__text__sub ul {
    padding-left: 1em;
  }
}
.data .data-card__text--06 .data-card__text__sub ul li {
  position: relative;
  margin-top: 0.5em;
}
.data .data-card__text--06 .data-card__text__sub ul li::before {
  content: "-";
  position: absolute;
  top: 0;
  left: -1em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .data .data-card__text--06 .data-card__text__sub ul li::before {
    line-height: 1.6;
  }
}
@media screen and (max-width: 479px) {
  .data .data-card__text--06 .data-card__text__sub ul li::before {
    left: -0.75em;
  }
}

/** ================================================
 * 社内インタビュー
 * ================================================ */
.interview {
  background-color: #fff;
  padding-bottom: 0;
  overflow-x: hidden;
}
.interview__body {
  margin-top: 32px;
  margin-inline: calc(50% - 50vw);
  padding-left: 27.7777777778vw;
  padding-right: 0;
  padding-block: min(8.3333333333vw, 144px) min(11.1111111111vw, 192px);
  background-color: #f2e9f2;
  position: relative;
  border-radius: 100px 100px 0 0;
}
@media screen and (max-width: 1023px) {
  .interview__body {
    border-radius: 75px 75px 0 0;
    padding-left: 19.550342131vw;
    margin-top: 48px;
    padding-block: 80px 100px;
  }
}
@media screen and (max-width: 767px) {
  .interview__body {
    border-radius: 62.5px 62.5px 0 0;
    padding-left: 40px;
  }
}
@media screen and (max-width: 599px) {
  .interview__body {
    padding-left: 20px;
  }
}
@media screen and (max-width: 479px) {
  .interview__body {
    border-radius: 50px 50px 0 0;
    padding-left: 16px;
  }
}
.interview__bg {
  position: absolute;
  top: min(8.3333333333vw, 144px);
  left: 6.9444444444vw;
  width: 13.8888888889vw;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .interview__bg {
    left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .interview__bg {
    display: none;
  }
}
.interview__bg img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .interview__tag__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 40px;
  }
}
@media screen and (max-width: 599px) {
  .interview__tag__wrapper {
    padding-right: 20px;
  }
}
@media screen and (max-width: 479px) {
  .interview__tag__wrapper {
    padding-right: 16px;
  }
}
.interview__text {
  margin-top: clamp(0.5rem, -5.4958333333rem + 6.6666666667vw, 1.25rem);
  padding-block: 20px;
}
@media screen and (max-width: 767px) {
  .interview__text {
    padding-right: 40px;
  }
}
@media screen and (max-width: 599px) {
  .interview__text {
    padding-right: 20px;
  }
}
@media screen and (max-width: 479px) {
  .interview__text {
    padding-right: 16px;
  }
}
.interview__text p {
  line-height: 1.8;
  font-size: min(1.1111111111vw, 19.2px);
}
@media screen and (max-width: 1439px) {
  .interview__text p {
    font-size: clamp(0.9375rem, 0.9154722744rem + 0.0939849624vw, 1rem);
  }
}
@media screen and (max-width: 767px) {
  .interview__text p {
    text-align: center;
  }
}
@media screen and (max-width: 479px) {
  .interview__text p {
    letter-spacing: 0;
  }
}
.interview__text p:not(:first-child) {
  margin-top: 0.75em;
}
.interview .interview__slider {
  overflow: hidden;
}
.interview .interview__slider .swiper-wrapper {
  display: flex;
  margin-block: min(4.1666666667vw, 72px);
}
.interview .interview__slider .swiper-slide {
  flex-shrink: 0;
  padding-right: 5.5555555556vw;
}
@media screen and (max-width: 1439px) {
  .interview .interview__slider .swiper-slide {
    padding-right: 4.1666666667vw;
  }
}
@media screen and (max-width: 1023px) {
  .interview .interview__slider .swiper-slide {
    padding-right: 2.7777777778vw;
  }
}
.interview .interview__slider .swiper__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3.3333333333vw;
  padding-right: calc(50vw - 50% - 20px);
  padding-block: 8px;
}
@media screen and (max-width: 1023px) {
  .interview .interview__slider .swiper__controls {
    margin-top: 64px;
  }
}
@media screen and (max-width: 767px) {
  .interview .interview__slider .swiper__controls {
    padding-right: 40px;
    margin-top: 48px;
  }
}
@media screen and (max-width: 599px) {
  .interview .interview__slider .swiper__controls {
    gap: 48px;
  }
}
@media screen and (max-width: 479px) {
  .interview .interview__slider .swiper__controls {
    gap: 40px;
    margin-top: 32px;
  }
}
.interview .interview__slider .swiper__button {
  width: 80px;
  height: 40px;
  border-radius: 100vmax;
  background-color: #3f223f;
  transition: background-color 0.3s ease;
}
.interview .interview__slider .swiper__button svg {
  width: 8px;
  height: 12px;
  fill: #fff;
}
.interview .interview__slider .swiper__button--prev svg {
  transform: rotate(180deg);
}
@media (hover: hover) {
  .interview .interview__slider .swiper__button:hover {
    background-color: #8a248c;
  }
}
.interview .interview__slider .progressbar-wrapper {
  display: flex;
  justify-content: right;
  align-items: center;
  margin-top: 32px;
  padding-right: calc(50vw - 50% - 20px);
  height: 16px;
}
@media screen and (max-width: 767px) {
  .interview .interview__slider .progressbar-wrapper {
    padding-right: 40px;
  }
}
.interview .interview__slider .progressbar-wrapper .progressbar {
  position: relative;
  width: 33.3333333333vw;
  height: 2px;
  background: #bbc8e0;
}
@media screen and (max-width: 1023px) {
  .interview .interview__slider .progressbar-wrapper .progressbar {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .interview .interview__slider .progressbar-wrapper .progressbar {
    width: 90%;
  }
}
.interview .interview__slider .progressbar-wrapper .progressbar__current {
  position: absolute;
  top: -2px;
  left: 0;
  width: 0;
  height: 6px;
  background: #8a248c;
  border-radius: 100vmax;
  transition: width 0.4s ease-in-out;
}

/** ================================================
 * 報酬体系・福利厚生
 * ================================================ */
.salary-benefits .salary,
.salary-benefits .benefits {
  padding-block: min(4.1666666667vw, 72px);
}
@media screen and (max-width: 1023px) {
  .salary-benefits .salary,
  .salary-benefits .benefits {
    padding-block: 64px;
  }
}
.salary-benefits .salary__header__text,
.salary-benefits .benefits__header__text {
  margin-top: min(2.2222222222vw, 38.4px);
  padding-block: 24px;
}
.salary-benefits .salary__header__text p,
.salary-benefits .benefits__header__text p {
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .salary-benefits .salary__header__text p,
  .salary-benefits .benefits__header__text p {
    text-align: left;
  }
}
.salary-benefits .salary__header__text p:not(:first-child),
.salary-benefits .benefits__header__text p:not(:first-child) {
  margin-top: 0.75em;
}
.salary-benefits .salary__header__text p .sp-inline,
.salary-benefits .benefits__header__text p .sp-inline {
  display: block;
}
@media screen and (max-width: 479px) {
  .salary-benefits .salary__header__text p .sp-inline,
  .salary-benefits .benefits__header__text p .sp-inline {
    display: none;
  }
}
.salary-benefits .salary__body,
.salary-benefits .benefits__body {
  padding-block: 20px;
}
.salary-benefits .salary {
  padding-inline: 100px;
}
@media screen and (max-width: 1023px) {
  .salary-benefits .salary {
    padding-inline: 64px;
  }
}
@media screen and (max-width: 767px) {
  .salary-benefits .salary {
    padding-inline: 0;
  }
}
.salary-benefits .salary .salary__item__wrapper {
  display: flex;
  justify-content: space-between;
  padding-block: min(1.6666666667vw, 28.8px);
}
@media screen and (max-width: 767px) {
  .salary-benefits .salary .salary__item__wrapper {
    flex-direction: column;
    gap: 64px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 599px) {
  .salary-benefits .salary .salary__item__wrapper {
    gap: 48px;
  }
}
@media screen and (max-width: 479px) {
  .salary-benefits .salary .salary__item__wrapper {
    margin-top: 8px;
  }
}
.salary-benefits .salary .salary__item__wrapper .salary__item {
  width: 48%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: #f9f9f9;
  position: relative;
  border-radius: 12px;
}
@media screen and (max-width: 1023px) {
  .salary-benefits .salary .salary__item__wrapper .salary__item {
    border-radius: 9px;
  }
}
@media screen and (max-width: 767px) {
  .salary-benefits .salary .salary__item__wrapper .salary__item {
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 479px) {
  .salary-benefits .salary .salary__item__wrapper .salary__item {
    border-radius: 6px;
  }
}
@media screen and (max-width: 767px) {
  .salary-benefits .salary .salary__item__wrapper .salary__item {
    width: 80%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 599px) {
  .salary-benefits .salary .salary__item__wrapper .salary__item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .salary-benefits .salary .salary__item__wrapper .salary__item:nth-child(odd) {
    padding-left: 24%;
    padding-right: 8%;
  }
}
@media screen and (max-width: 479px) {
  .salary-benefits .salary .salary__item__wrapper .salary__item:nth-child(odd) {
    padding-left: 15%;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .salary-benefits .salary .salary__item__wrapper .salary__item:nth-child(even) {
    padding-right: 24%;
    padding-left: 8%;
  }
}
@media screen and (max-width: 479px) {
  .salary-benefits .salary .salary__item__wrapper .salary__item:nth-child(even) {
    padding-right: 15%;
    padding-left: 20px;
  }
}
.salary-benefits .salary .salary__item__wrapper .salary__item__text {
  margin-top: 0.75em;
  padding: 16px;
}
.salary-benefits .salary .salary__item__wrapper .salary__item__catch {
  position: absolute;
  width: min(6.1111111111vw, 105.6px);
  height: min(19.4444444444vw, 336px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  top: min(-5.5555555556vw, -96px);
}
@media screen and (max-width: 1439px) {
  .salary-benefits .salary .salary__item__wrapper .salary__item__catch {
    width: clamp(4.5rem, 3.3586309524rem + 2.380952381vw, 5.5rem);
    height: clamp(14rem, 10.0052083333rem + 8.3333333333vw, 17.5rem);
    top: clamp(-4.5rem, -3.9293154762rem + -1.1904761905vw, -5rem);
  }
}
@media screen and (max-width: 767px) {
  .salary-benefits .salary .salary__item__wrapper .salary__item__catch {
    width: 80px;
    height: auto;
    top: -64px;
  }
}
@media screen and (max-width: 479px) {
  .salary-benefits .salary .salary__item__wrapper .salary__item__catch {
    top: -48px;
  }
}
.salary-benefits .salary .salary__item__wrapper .salary__item__catch--left {
  left: min(-6.9444444444vw, -120px);
}
@media screen and (max-width: 1439px) {
  .salary-benefits .salary .salary__item__wrapper .salary__item__catch--left {
    left: clamp(-5rem, -3.5732886905rem + -2.9761904762vw, -6.25rem);
  }
}
@media screen and (max-width: 767px) {
  .salary-benefits .salary .salary__item__wrapper .salary__item__catch--left {
    left: 32px;
  }
}
@media screen and (max-width: 479px) {
  .salary-benefits .salary .salary__item__wrapper .salary__item__catch--left {
    left: -16px;
  }
}
.salary-benefits .salary .salary__item__wrapper .salary__item__catch--right {
  right: min(-6.9444444444vw, -120px);
}
@media screen and (max-width: 1439px) {
  .salary-benefits .salary .salary__item__wrapper .salary__item__catch--right {
    right: clamp(-5rem, -3.5732886905rem + -2.9761904762vw, -6.25rem);
  }
}
@media screen and (max-width: 767px) {
  .salary-benefits .salary .salary__item__wrapper .salary__item__catch--right {
    right: 32px;
  }
}
@media screen and (max-width: 479px) {
  .salary-benefits .salary .salary__item__wrapper .salary__item__catch--right {
    right: -16px;
  }
}
.salary-benefits .salary .salary__item__wrapper .salary__item__catch img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.salary-benefits .salary .salary__tabs {
  margin-top: min(2.7777777778vw, 48px);
  width: 92%;
  max-width: min(61.1111111111vw, 1056px);
  padding-inline: min(2.7777777778vw, 48px);
  padding-block: min(2.7777777778vw, 48px) min(3.3333333333vw, 57.6px);
  border: 1px solid #8a248c;
  border-radius: 16px;
  margin-inline: auto;
  background-color: #fff;
}
@media screen and (max-width: 1023px) {
  .salary-benefits .salary .salary__tabs {
    border-radius: 12px;
  }
}
@media screen and (max-width: 767px) {
  .salary-benefits .salary .salary__tabs {
    border-radius: 10px;
  }
}
@media screen and (max-width: 479px) {
  .salary-benefits .salary .salary__tabs {
    border-radius: 8px;
  }
}
@media screen and (max-width: 1439px) {
  .salary-benefits .salary .salary__tabs {
    max-width: 100%;
    padding-inline: clamp(1.5rem, 0.3586309524rem + 2.380952381vw, 2.5rem);
    padding-block: 32px 40px;
  }
}
@media screen and (max-width: 1023px) {
  .salary-benefits .salary .salary__tabs {
    width: 100%;
    margin-top: 32px;
  }
}
@media screen and (max-width: 767px) {
  .salary-benefits .salary .salary__tabs {
    padding-inline: 24px;
    padding-block: 32px 40px;
    margin-top: 40px;
    max-width: 600px;
  }
}
@media screen and (max-width: 599px) {
  .salary-benefits .salary .salary__tabs {
    padding-inline: 16px;
    padding-block: 24px 32px;
  }
}
@media screen and (max-width: 479px) {
  .salary-benefits .salary .salary__tabs {
    padding-inline: 8px;
  }
}
.salary-benefits .salary .salary__tab-list {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f4f2f4;
  border-radius: 100vmax;
}
.salary-benefits .salary .salary__tab-list .salary__tab {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(1.3888888889vw, 24px);
  font-weight: 500;
  color: #aaaaaa;
  letter-spacing: 0;
  height: min(3.3333333333vw, 57.6px);
  border-radius: 100vmax;
  position: relative;
  transition: color 0.3s ease;
}
@media screen and (max-width: 1439px) {
  .salary-benefits .salary .salary__tab-list .salary__tab {
    height: clamp(2.5rem, 1.9293154762rem + 1.1904761905vw, 3rem);
    font-size: clamp(0.9375rem, 0.5808221726rem + 0.744047619vw, 1.25rem);
  }
}
@media screen and (max-width: 599px) {
  .salary-benefits .salary .salary__tab-list .salary__tab {
    height: clamp(3.5rem, 3.143452381rem + 0.9523809524vw, 4rem);
    font-size: clamp(0.875rem, 0.8304315476rem + 0.119047619vw, 0.9375rem);
    padding-bottom: 0.5em;
  }
}
.salary-benefits .salary .salary__tab-list .salary__tab::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background-color: transparent;
}
.salary-benefits .salary .salary__tab-list .salary__tab.is-active {
  color: #fff;
  background-color: #3f223f;
}
.salary-benefits .salary .salary__tab-list .salary__tab.is-active::before {
  background-color: #3f223f;
}
.salary-benefits .salary .salary__tab-list .salary__tab .sp-none {
  display: block;
  margin-inline: 0.5em;
}
@media screen and (max-width: 599px) {
  .salary-benefits .salary .salary__tab-list .salary__tab .sp-none {
    display: none;
  }
}
.salary-benefits .salary .salary__tab-list .salary__tab .sp-only {
  display: none;
}
@media screen and (max-width: 599px) {
  .salary-benefits .salary .salary__tab-list .salary__tab .sp-only {
    display: block;
  }
}
@media (hover: hover) {
  .salary-benefits .salary .salary__tab-list .salary__tab:hover:not(.is-active) {
    color: #8a248c;
  }
}
.salary-benefits .salary .salary__tab-panels {
  margin-top: min(2.7777777778vw, 48px);
}
.salary-benefits .salary .salary__tab-panels .salary__tab-panel {
  display: none;
}
.salary-benefits .salary .salary__tab-panels .salary__tab-panel.is-active {
  display: block;
}
.salary-benefits .salary .salary__tab-panels .salary__details {
  padding-inline: 4%;
}
.salary-benefits .salary .salary__tab-panels .salary__details__list {
  display: flex;
  flex-direction: column;
  gap: min(1.6666666667vw, 28.8px);
}
.salary-benefits .salary .salary__tab-panels .salary__details__item {
  display: flex;
  flex-direction: column;
  gap: min(0.8333333333vw, 14.4px);
}
.salary-benefits .salary .salary__tab-panels .salary__details__title h5 {
  font-size: min(1.25vw, 21.6px);
  margin: 0;
  padding-block: 0.5em;
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 1439px) {
  .salary-benefits .salary .salary__tab-panels .salary__details__title h5 {
    font-size: clamp(1rem, 0.857328869rem + 0.2976190476vw, 1.125rem);
  }
}
.salary-benefits .salary .salary__tab-panels .salary__details__desc p {
  font-size: min(1.1111111111vw, 19.2px);
  text-align: justify;
  text-justify: inter-ideograph;
  margin-top: 0.75em;
}
@media screen and (max-width: 1439px) {
  .salary-benefits .salary .salary__tab-panels .salary__details__desc p {
    font-size: clamp(0.9375rem, 0.9063151042rem + 0.1041666667vw, 1rem);
  }
}
.salary-benefits .salary .salary__tab-panels .salary__details__figure {
  margin-top: min(2.7777777778vw, 48px);
}
@media screen and (max-width: 1439px) {
  .salary-benefits .salary .salary__tab-panels .salary__details__figure {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .salary-benefits .salary .salary__tab-panels .salary__details__figure {
    width: 90%;
    max-width: 400px;
    margin-inline: auto;
  }
}
.salary-benefits .salary .salary__tab-panels .salary__details__figure img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 1023px) {
  .salary-benefits .benefits {
    padding-top: 48px;
  }
}
@media screen and (max-width: 767px) {
  .salary-benefits .benefits {
    padding-top: 36px;
  }
}
@media screen and (max-width: 599px) {
  .salary-benefits .benefits {
    padding-top: 24px;
  }
}
@media screen and (max-width: 479px) {
  .salary-benefits .benefits {
    padding-top: 16px;
  }
}
.salary-benefits .benefits__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: min(1.9444444444vw, 33.6px);
  padding-inline: 3.4722222222vw;
}
@media screen and (max-width: 1439px) {
  .salary-benefits .benefits__list {
    margin-top: 28px;
  }
}
@media screen and (max-width: 919px) {
  .salary-benefits .benefits__list {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    max-width: 520px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .salary-benefits .benefits__list {
    gap: 40px;
  }
}
@media screen and (max-width: 599px) {
  .salary-benefits .benefits__list {
    gap: 32px;
    max-width: 480px;
  }
}
@media screen and (max-width: 479px) {
  .salary-benefits .benefits__list {
    max-width: 400px;
    gap: 24px;
  }
}
.salary-benefits .benefits__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  background-color: #f9f9f9;
  border-radius: 16px;
  border: 1px solid #8a248c;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1023px) {
  .salary-benefits .benefits__item {
    border-radius: 12px;
  }
}
@media screen and (max-width: 767px) {
  .salary-benefits .benefits__item {
    border-radius: 10px;
  }
}
@media screen and (max-width: 479px) {
  .salary-benefits .benefits__item {
    border-radius: 8px;
  }
}
@media screen and (max-width: 919px) {
  .salary-benefits .benefits__item {
    width: 100%;
  }
}
.salary-benefits .benefits__item__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(1rem, -2.9972222222rem + 4.4444444444vw, 1.5rem);
}
@media screen and (max-width: 479px) {
  .salary-benefits .benefits__item__inner {
    gap: 8px;
  }
}
.salary-benefits .benefits__item__title {
  font-size: min(1.3888888889vw, 24px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.25;
  height: min(6.1111111111vw, 105.6px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .salary-benefits .benefits__item__title {
    font-size: 1.375rem;
    height: 5.5rem;
  }
}
@media screen and (max-width: 919px) {
  .salary-benefits .benefits__item__title {
    font-size: clamp(1.125rem, 0.7092013889rem + 1.3888888889vw, 1.375rem);
    height: clamp(4.5rem, 2.8368055556rem + 5.5555555556vw, 5.5rem);
  }
}
.salary-benefits .benefits__item__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #8a248c;
}
.salary-benefits .benefits__item__icon {
  width: min(11.1111111111vw, 192px);
  aspect-ratio: 1/1;
  margin-top: 16px;
}
@media screen and (max-width: 919px) {
  .salary-benefits .benefits__item__icon {
    width: clamp(6.25rem, 2.0920138889rem + 13.8888888889vw, 8.75rem);
  }
}
.salary-benefits .benefits__item__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.salary-benefits .benefits__item__text {
  padding-block: 16px;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 1023px) {
  .salary-benefits .benefits__item__text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 919px) {
  .salary-benefits .benefits__item__text {
    font-size: clamp(0.875rem, 0.4592013889rem + 1.3888888889vw, 1.125rem);
  }
}
@media screen and (max-width: 479px) {
  .salary-benefits .benefits__item__text {
    letter-spacing: 0;
  }
}

/** ================================================
 * 選考フロー
 * ================================================ */
.flow {
  margin-top: min(-5.5555555556vw, -96px);
}
@media screen and (max-width: 1439px) {
  .flow {
    margin-top: -80px;
  }
}
@media screen and (max-width: 1023px) {
  .flow {
    margin-top: -120px;
  }
}
@media screen and (max-width: 479px) {
  .flow {
    margin-top: -100px;
  }
}
.flow__body {
  display: flex;
  gap: 40px;
  margin-top: min(2.2222222222vw, 38.4px);
  padding-inline: min(2.7777777778vw, 48px);
}
@media screen and (max-width: 1439px) {
  .flow__body {
    gap: 4%;
    padding-inline: 4%;
    margin-top: 32px;
  }
}
@media screen and (max-width: 767px) {
  .flow__body {
    gap: 16px;
    padding-inline: 8px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 599px) {
  .flow__body {
    gap: 12px;
    padding-inline: 0;
  }
}
.flow__lead {
  width: min(4.1666666667vw, 72px);
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: min(1.6666666667vw, 28.8px);
  font-weight: 500;
  letter-spacing: 0.5em;
  line-height: 1;
  text-align: center;
  background-color: #8a248c;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-inline: 40px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 50% 100%, 0 calc(100% - 40px));
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 50% 100%, 0 calc(100% - 40px));
}
@media screen and (max-width: 1439px) {
  .flow__lead {
    font-size: clamp(1.25rem, 1.1252604167rem + 0.4166666667vw, 1.5rem);
    width: clamp(3rem, 2.62578125rem + 1.25vw, 3.75rem);
  }
}
.flow__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 1023px) {
  .flow__list {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .flow__list {
    gap: 16px;
  }
}
.flow__item {
  display: flex;
}
.flow__item__step {
  width: min(8.3333333333vw, 144px);
  height: 100%;
  background-color: #8a248c;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(2.2222222222vw, 38.4px);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  border-radius: 8px 0 0 8px;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .flow__item__step {
    width: 120px;
    font-size: clamp(1.75rem, 1.6252604167rem + 0.4166666667vw, 2rem);
  }
}
@media screen and (max-width: 767px) {
  .flow__item__step {
    width: clamp(5rem, 0.8420138889rem + 13.8888888889vw, 7.5rem);
  }
}
.flow__item__step::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 28px;
  height: 28px;
}
@media screen and (max-width: 1023px) {
  .flow__item__step::before {
    bottom: -10px;
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .flow__item__step::before {
    bottom: -8px;
    width: 20px;
    height: 20px;
  }
}
.flow__item__step--1 {
  background-color: #c491c5;
}
.flow__item__step--1::before {
  background-color: #c491c5;
}
.flow__item__step--2 {
  background-color: #b97cba;
}
.flow__item__step--2::before {
  background-color: #b97cba;
}
.flow__item__step--3 {
  background-color: #ad66af;
}
.flow__item__step--3::before {
  background-color: #ad66af;
}
.flow__item__step--4 {
  background-color: #a150a3;
}
.flow__item__step--4::before {
  display: none;
}
.flow__item__body {
  width: 100%;
  padding-inline: 7%;
  padding-block: min(1.6666666667vw, 28.8px) min(1.9444444444vw, 33.6px);
  background-color: #f4f2f4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(0.5rem, -3.4972222222rem + 4.4444444444vw, 1rem);
  border-radius: 0 8px 8px 0;
}
@media screen and (max-width: 1439px) {
  .flow__item__body {
    padding-block: 3% 4%;
  }
}
@media screen and (max-width: 599px) {
  .flow__item__body {
    padding-block: 16px 20px;
  }
}
.flow__item__title {
  font-size: min(1.6666666667vw, 28.8px);
  font-weight: 500;
  color: #8a248c;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1439px) {
  .flow__item__title {
    font-size: clamp(1rem, 0.7505208333rem + 0.8333333333vw, 1.5rem);
  }
}
.flow__item__title .sp-only {
  display: none;
}
@media screen and (max-width: 479px) {
  .flow__item__title .sp-only {
    display: block;
  }
}

/** ================================================
 * よくあるご質問
 * ================================================ */
.qa {
  margin-top: min(-1.3888888889vw, -24px);
  padding-bottom: 0;
}
@media screen and (max-width: 1439px) {
  .qa {
    margin-top: -20px;
  }
}
.qa__body {
  margin-top: 32px;
  margin-inline: calc(50% - 50vw);
  padding-block: min(6.9444444444vw, 120px) min(8.3333333333vw, 144px);
  background-color: #f4f2f4;
}
@media screen and (max-width: 1439px) {
  .qa__body {
    padding-block: 80px 100px;
  }
}
@media screen and (max-width: 1023px) {
  .qa__body {
    padding-block: 64px 72px;
  }
}
@media screen and (max-width: 767px) {
  .qa__body {
    padding-block: 60px 80px;
  }
}
@media screen and (max-width: 479px) {
  .qa__body {
    padding-block: 40px 60px;
  }
}
.qa__list {
  margin-inline: auto;
  max-width: min(63.8888888889vw, 1104px);
  display: flex;
  flex-direction: column;
  gap: min(1.6666666667vw, 28.8px);
}
@media screen and (max-width: 1439px) {
  .qa__list {
    max-width: 920px;
    gap: 24px;
  }
}
@media screen and (max-width: 1023px) {
  .qa__list {
    padding-inline: 4%;
    gap: 20px;
  }
}
@media screen and (max-width: 479px) {
  .qa__list {
    gap: 16px;
  }
}
.qa__item {
  background-color: #fff;
  border-radius: 16px;
}
@media screen and (max-width: 1023px) {
  .qa__item {
    border-radius: 12px;
  }
}
@media screen and (max-width: 767px) {
  .qa__item {
    border-radius: 10px;
  }
}
@media screen and (max-width: 479px) {
  .qa__item {
    border-radius: 8px;
  }
}
.qa__item__button {
  width: 100%;
  display: flex;
  justify-content: left;
  align-items: center;
  padding: min(1.1111111111vw, 19.2px) min(1.6666666667vw, 28.8px);
  position: relative;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .qa__item__button {
    padding: 12px 28px;
  }
}
@media screen and (max-width: 767px) {
  .qa__item__button {
    padding: 12px 24px;
  }
}
@media screen and (max-width: 479px) {
  .qa__item__button {
    padding: 12px 16px;
  }
}
.qa__item__q-text {
  flex: 1;
  padding-inline: 32px;
  font-size: min(1.25vw, 21.6px);
  font-weight: 500;
  color: #3c353c;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-ideograph;
  transition: color 0.3s ease;
}
@media screen and (max-width: 1439px) {
  .qa__item__q-text {
    font-size: clamp(1rem, 0.9376302083rem + 0.2083333333vw, 1.125rem);
  }
}
@media screen and (max-width: 1023px) {
  .qa__item__q-text {
    padding-inline: 28px;
  }
}
@media screen and (max-width: 767px) {
  .qa__item__q-text {
    padding-inline: 24px;
  }
}
@media screen and (max-width: 479px) {
  .qa__item__q-text {
    padding-inline: 16px 20px;
  }
}
.qa__item__plus {
  position: relative;
  width: min(2.2222222222vw, 38.4px);
  height: min(2.2222222222vw, 38.4px);
  background-color: #3f223f;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1439px) {
  .qa__item__plus {
    width: clamp(1.625rem, 1.437890625rem + 0.625vw, 2rem);
    height: clamp(1.625rem, 1.437890625rem + 0.625vw, 2rem);
  }
}
.qa__item__plus::before, .qa__item__plus::after {
  content: "";
  position: absolute;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.qa__item__plus::before {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.qa__item__plus::after {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.qa__item.is-open .qa__item__plus {
  background-color: transparent;
  border: 1px solid #3f223f;
}
.qa__item.is-open .qa__item__plus::before, .qa__item.is-open .qa__item__plus::after {
  background-color: #8a248c;
}
.qa__item.is-open .qa__item__plus::before {
  transform: translate(-50%, -50%) rotate(270deg);
}
.qa__item.is-open .qa__item__plus::after {
  transform: translate(-50%, -50%) rotate(270deg);
  opacity: 0;
}
.qa__item__q-mark, .qa__item__a-mark {
  width: min(2.9166666667vw, 50.4px);
  font-size: min(1.9444444444vw, 33.6px);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
@media screen and (max-width: 1439px) {
  .qa__item__q-mark, .qa__item__a-mark {
    width: clamp(2.25rem, 2.062890625rem + 0.625vw, 2.625rem);
    font-size: clamp(1.625rem, 1.5626302083rem + 0.2083333333vw, 1.75rem);
  }
}
.qa__item__q-mark {
  color: #3f223f;
}
.qa__item__a-mark {
  color: #8a248c;
}
.qa__item__answer {
  color: #3c353c;
  letter-spacing: 0.1em;
  overflow: hidden;
  max-height: 0;
}
.qa__item__answer__inner {
  display: flex;
  padding: min(1.1111111111vw, 19.2px) min(1.6666666667vw, 28.8px) 28px;
}
@media screen and (max-width: 1023px) {
  .qa__item__answer__inner {
    padding: 12px 28px 28px;
  }
}
@media screen and (max-width: 767px) {
  .qa__item__answer__inner {
    padding: 12px 24px 26px;
  }
}
@media screen and (max-width: 479px) {
  .qa__item__answer__inner {
    display: flex;
    flex-direction: column;
    padding: 12px 16px 24px;
  }
}
.qa__item__a-text {
  padding-inline: 32px 64px;
  flex: 1;
}
@media screen and (max-width: 1439px) {
  .qa__item__a-text {
    font-size: clamp(1rem, 0.9376302083rem + 0.2083333333vw, 1.125rem);
  }
}
@media screen and (max-width: 1023px) {
  .qa__item__a-text {
    padding-inline: 28px 60px;
  }
}
@media screen and (max-width: 767px) {
  .qa__item__a-text {
    padding-inline: 24px 56px;
  }
}
@media screen and (max-width: 479px) {
  .qa__item__a-text {
    padding-inline: 16px;
  }
}
.qa__item__a-text p:not(:first-child) {
  margin-top: 0.75em;
}
.qa__item__a-text ul {
  margin: 16px 0;
  padding-left: 20px;
}
.qa__item__a-text li {
  margin-bottom: 8px;
  list-style-type: disc;
}

@media (hover: hover) {
  .qa__item__button[aria-expanded=false]:hover {
    opacity: 0.8;
  }
  .qa__item__button[aria-expanded=false]:hover .qa__item__plus {
    background-color: #8a248c;
  }
}
/** ================================================
 * ABOUT US ページ
 * ================================================ */
/** ================================================
 * About - 上部スライダー
 * ================================================ */
.about-slider__wrapper {
  margin-top: min(-5.5555555556vw, -96px);
  height: 22.2222222222vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1439px) {
  .about-slider__wrapper {
    margin-top: -80px;
    height: clamp(12.5rem, 8.7578125rem + 12.5vw, 20rem);
  }
}
@media screen and (max-width: 1023px) {
  .about-slider__wrapper {
    margin-top: -64px;
  }
}
@media screen and (max-width: 767px) {
  .about-slider__wrapper {
    margin-top: -56px;
  }
}
@media screen and (max-width: 479px) {
  .about-slider__wrapper {
    margin-top: -48px;
  }
}
.about-slider__wrapper .about-slider {
  height: 100%;
  overflow: hidden;
}
.about-slider__wrapper .about-slider .swiper-wrapper {
  display: flex;
  height: 100%;
  transition-timing-function: linear;
}
.about-slider__wrapper .about-slider .swiper-slide {
  flex-shrink: 0;
  height: 100%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: 1.3888888889vw;
}
.about-slider__wrapper .about-slider .swiper-slide img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  border-radius: 12px;
  position: relative;
  border: 4px solid #fff;
}
@media screen and (max-width: 1023px) {
  .about-slider__wrapper .about-slider .swiper-slide img {
    border-radius: 9px;
  }
}
@media screen and (max-width: 767px) {
  .about-slider__wrapper .about-slider .swiper-slide img {
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 479px) {
  .about-slider__wrapper .about-slider .swiper-slide img {
    border-radius: 6px;
  }
}

/** ================================================
 * About - 会社メッセージ
 * ================================================ */
.concept {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .concept {
    padding-block: 40px 24px;
  }
}
.concept__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
  opacity: 0.1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.concept__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.concept__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: min(2.7777777778vw, 48px);
}
.concept__title {
  font-size: min(2.2222222222vw, 38.4px);
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  line-height: 1.75;
  margin-top: min(1.3888888889vw, 24px);
  padding-block: 0.5em;
}
@media screen and (max-width: 1439px) {
  .concept__title {
    font-size: clamp(1.3125rem, 1.0701950188rem + 1.0338345865vw, 2rem);
  }
}
.concept__text p {
  font-size: min(1.25vw, 21.6px);
  line-height: 2;
  text-align: center;
}
.concept__text p:not(:first-child) {
  margin-top: 1.25em;
}
@media screen and (max-width: 1439px) {
  .concept__text p {
    font-size: clamp(1rem, 0.9376302083rem + 0.2083333333vw, 1.125rem);
  }
}
@media screen and (max-width: 767px) {
  .concept__text p {
    text-align: left;
  }
}
.concept__text p .sp-none {
  display: block;
}
@media screen and (max-width: 599px) {
  .concept__text p .sp-none {
    display: none;
  }
}

/** ================================================
 * About - 事業内容のご紹介
 * ================================================ */
.service {
  padding-bottom: 0;
  position: relative;
}
.service__bg {
  position: absolute;
  top: -2.7777777778vw;
  left: -2.7777777778vw;
  width: 30.5555555556vw;
  aspect-ratio: 1/1;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transform: translateY(30px) translateX(-60px);
}
@media screen and (max-width: 1023px) {
  .service__bg {
    top: 1.9550342131vw;
    width: 46.9208211144vw;
  }
}
@media screen and (max-width: 767px) {
  .service__bg {
    top: 2%;
  }
}
@media screen and (max-width: 599px) {
  .service__bg {
    top: 3%;
  }
}
.service__bg img {
  width: 100%;
  height: 100%;
}
.service__body {
  margin-top: 32px;
  margin-inline: calc(50% - 50vw);
  padding-block: min(11.1111111111vw, 192px);
  background-color: #f2e9f2;
  border-radius: 100px 100px 0 0;
}
@media screen and (max-width: 1023px) {
  .service__body {
    border-radius: 75px 75px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .service__body {
    padding-block: 80px 100px;
    border-radius: 62.5px 62.5px 0 0;
  }
}
@media screen and (max-width: 479px) {
  .service__body {
    border-radius: 50px 50px 0 0;
  }
}
.service__list {
  width: 80%;
  max-width: 1384px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: min(6.9444444444vw, 120px);
}
@media screen and (max-width: 1439px) {
  .service__list {
    width: 100%;
    max-width: 1160px;
  }
}
@media screen and (max-width: 1439px) {
  .service__list {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 1023px) {
  .service__list {
    padding-inline: 40px;
    gap: clamp(2.5rem, 0.2987132353rem + 7.3529411765vw, 5rem);
  }
}
@media screen and (max-width: 599px) {
  .service__list {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 479px) {
  .service__list {
    padding-inline: 16px;
  }
}
.service__item {
  position: relative;
  padding: 40px 4%;
  background-color: #fff;
  border-radius: 20px;
  width: 90%;
  margin-right: auto;
  z-index: 2;
}
@media screen and (max-width: 1023px) {
  .service__item {
    border-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  .service__item {
    border-radius: 12.5px;
  }
}
@media screen and (max-width: 479px) {
  .service__item {
    border-radius: 10px;
  }
}
@media screen and (max-width: 1439px) {
  .service__item {
    width: 92%;
  }
}
@media screen and (max-width: 1023px) {
  .service__item {
    width: 80%;
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .service__item {
    width: 100%;
    margin-top: 40px;
  }
}
@media screen and (max-width: 599px) {
  .service__item {
    margin-top: 24px;
    padding-inline: 0;
  }
}
@media screen and (max-width: 479px) {
  .service__item {
    margin-top: 16px;
  }
}
.service__item:nth-child(odd) {
  margin-right: 0;
  margin-left: auto;
}
.service__item__number {
  position: absolute;
  top: -56px;
  left: -72px;
  width: auto;
  height: 100px;
}
@media screen and (max-width: 1439px) {
  .service__item__number {
    left: calc(40px - 4vw);
  }
}
@media screen and (max-width: 599px) {
  .service__item__number {
    top: -40px;
    height: clamp(4.5rem, 1.5703125rem + 12.5vw, 6.25rem);
  }
}
.service__item__number img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.service__item:nth-child(even) .service__item__number {
  left: auto;
  right: -72px;
}
@media screen and (max-width: 1439px) {
  .service__item:nth-child(even) .service__item__number {
    right: calc(40px - 4vw);
  }
}
.service__item__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .service__item__inner {
    flex-direction: column-reverse;
  }
}
.service__item:nth-child(even) .service__item__inner {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1023px) {
  .service__item:nth-child(even) .service__item__inner {
    flex-direction: column-reverse;
  }
}
.service__item__figure {
  width: 36%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .service__item__figure {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .service__item__figure {
    width: 64%;
  }
}
@media screen and (max-width: 599px) {
  .service__item__figure {
    width: 70%;
  }
}
.service__item__figure img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-top: 8%;
}
.service__item__content {
  width: 60%;
  padding-inline: 16px;
}
@media screen and (max-width: 1023px) {
  .service__item__content {
    width: 90%;
    padding-inline: 0;
  }
}
.service__item__title {
  font-size: min(1.9444444444vw, 33.6px);
  letter-spacing: 0;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .service__item__title {
    font-size: clamp(1.1875rem, 0.9692057292rem + 0.7291666667vw, 1.625rem);
  }
}
.service__item__title .sp-only {
  display: none;
}
@media screen and (max-width: 479px) {
  .service__item__title .sp-only {
    display: block;
  }
}
.service__item__text {
  margin-top: 1.2em;
  padding: 24px;
}
@media screen and (max-width: 1023px) {
  .service__item__text {
    margin-top: 1em;
  }
}
.service__item__text p {
  line-height: 1.8;
}
.service__item__text p:not(:first-child) {
  margin-top: 0.75em;
}

/** ================================================
 * About - 職場環境のご紹介
 * ================================================ */
.office {
  position: relative;
}
.office__bg {
  position: absolute;
  top: -13.8888888889vw;
  right: -5.5555555556vw;
  width: 30.5555555556vw;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px) translateX(-60px);
}
@media screen and (max-width: 1023px) {
  .office__bg {
    top: -15.6402737048vw;
    right: -11.7302052786vw;
    width: 43.0107526882vw;
  }
}
@media screen and (max-width: 767px) {
  .office__bg {
    top: -26.0416666667vw;
    right: -20.8333333333vw;
    width: 57.2916666667vw;
  }
}
@media screen and (max-width: 479px) {
  .office__bg {
    top: -33.4029227557vw;
  }
}
.office__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 4.1666666667vw;
  padding-bottom: min(2.7777777778vw, 48px);
}
@media screen and (max-width: 1439px) {
  .office__body {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .office__body {
    flex-direction: column;
    padding-inline: 8%;
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 599px) {
  .office__body {
    padding-inline: 0;
    padding-bottom: 16px;
  }
}
.office__content {
  width: 100%;
  padding-right: 24px;
}
@media screen and (max-width: 1023px) {
  .office__content {
    margin-top: 48px;
  }
}
.office__content__text {
  padding-block: 48px;
}
@media screen and (max-width: 1023px) {
  .office__content__text {
    padding-block: 32px 16px;
  }
}
.office__content__info {
  padding-block: 20px;
  margin-bottom: 120px;
  display: grid;
  grid-template-columns: 100px 1fr;
  row-gap: 32px;
}
@media screen and (max-width: 1023px) {
  .office__content__info {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 479px) {
  .office__content__info {
    grid-template-columns: 25% 1fr;
  }
}
.office__content__info dt {
  font-weight: 500;
}
.office__content__access:not(:first-child) {
  margin-top: 0.5em;
}
.office__image {
  width: 41.6666666667vw;
  max-width: 700px;
}
@media screen and (max-width: 1023px) {
  .office__image {
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .office__image {
    width: 100%;
  }
}
.office .swiper-wrapper {
  display: flex;
}
.office__slider {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 12px;
}
@media screen and (max-width: 1023px) {
  .office__slider {
    border-radius: 9px;
  }
}
@media screen and (max-width: 767px) {
  .office__slider {
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 479px) {
  .office__slider {
    border-radius: 6px;
  }
}
.office__slider .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .office__slider .swiper-slide {
    border-radius: 9px;
  }
}
@media screen and (max-width: 767px) {
  .office__slider .swiper-slide {
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 479px) {
  .office__slider .swiper-slide {
    border-radius: 6px;
  }
}
.office__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.office__slider--sub .swiper-slide {
  width: calc((100% - 20px) / 2);
  margin-left: 20px;
  transform: translateX(-20px);
}
.office .swiper__controls {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding-block: 16px;
}
.office .swiper__button {
  width: 80px;
  height: 40px;
  border-radius: 100vmax;
  background-color: #3f223f;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}
.office .swiper__button svg {
  width: 12px;
  height: 12px;
  fill: #fff;
}
.office .swiper__button--prev svg {
  transform: rotate(180deg);
}
@media (hover: hover) {
  .office .swiper__button:hover {
    background-color: #8a248c;
  }
}
.office .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.office .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #eee;
  border-radius: 50%;
  opacity: 1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media (hover: hover) {
  .office .swiper-pagination-bullet:hover {
    background-color: #c491c5;
  }
}
.office .swiper-pagination-bullet-active {
  background-color: #8a248c;
}

/** ================================================
 * INTERVIEW ページ
 * ================================================ */
/** ================================================
 * Interview - 基本情報
 * ================================================ */
.interview-info {
  padding-top: 0;
  padding-bottom: calc(min(3.3333333333vw, 57.6px) + 100px);
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, #ffffff 0%, #fbf5fb 100%);
}
.interview-info__main {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding-inline: 0;
}
@media screen and (max-width: 1439px) {
  .interview-info__main {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 767px) {
  .interview-info__main {
    flex-direction: column;
    padding-inline: 8%;
  }
}
.interview-info__card {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: max(-5.5555555556vw, -104px);
  width: 35.7142857143%;
  aspect-ratio: 600/800;
}
@media screen and (max-width: 1023px) {
  .interview-info__card {
    margin-top: clamp(-3rem, -1.6792279412rem + -4.4117647059vw, -4.5rem);
  }
}
@media screen and (max-width: 767px) {
  .interview-info__card {
    width: 50%;
    margin-left: auto;
  }
}
.interview-info__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
  box-shadow: 32px 32px 0px 0px #eedcef;
}
@media screen and (max-width: 1023px) {
  .interview-info__card img {
    border-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  .interview-info__card img {
    border-radius: 12.5px;
  }
}
@media screen and (max-width: 479px) {
  .interview-info__card img {
    border-radius: 10px;
  }
}
@media screen and (max-width: 1023px) {
  .interview-info__card img {
    box-shadow: 24px 24px 0px 0px #eedcef;
  }
}
@media screen and (max-width: 767px) {
  .interview-info__card img {
    box-shadow: 16px 16px 0px 0px #eedcef;
  }
}
.interview-info__content {
  width: 80%;
  max-width: min(41.6666666667vw, 720px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 24px;
  padding-left: 20px;
}
@media screen and (max-width: 1439px) {
  .interview-info__content {
    width: 55%;
    max-width: 620px;
  }
}
@media screen and (max-width: 767px) {
  .interview-info__content {
    width: 100%;
    flex-direction: column-reverse;
    padding-left: 0;
  }
}
.interview-info__content__message {
  padding-block: 24px;
  margin-block: auto;
}
@media screen and (max-width: 767px) {
  .interview-info__content__message {
    margin-top: 32px;
  }
}
@media screen and (max-width: 599px) {
  .interview-info__content__message {
    margin-top: 24px;
  }
}
@media screen and (max-width: 479px) {
  .interview-info__content__message {
    margin-top: 16px;
  }
}
.interview-info__content__message img {
  width: 70%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 767px) {
  .interview-info__content__message img {
    width: 80%;
    max-width: 440px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 479px) {
  .interview-info__content__message img {
    width: 90%;
  }
}
.interview-info__content__about {
  padding-top: min(1.6666666667vw, 28.8px);
  padding-left: 32px;
  width: 66%;
  margin-left: auto;
  border-left: 2px solid #8a248c;
}
@media screen and (max-width: 1023px) {
  .interview-info__content__about {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .interview-info__content__about {
    width: 100%;
    padding-left: 24px;
  }
}
.interview-info__content__name {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-block: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 1439px) {
  .interview-info__content__name {
    font-size: clamp(1.125rem, 1.0626302083rem + 0.2083333333vw, 1.25rem);
  }
}
@media screen and (max-width: 767px) {
  .interview-info__content__name {
    font-size: clamp(1.125rem, 0.7662627551rem + 1.5306122449vw, 1.5rem);
  }
}
.interview-info__content__name__en {
  font-size: 0.7em;
  letter-spacing: 0;
  margin-bottom: -0.25em;
  color: #555555;
}
.interview-info__content__join, .interview-info__content__department {
  margin-top: 8px;
}
@media screen and (max-width: 1023px) {
  .interview-info__content__join, .interview-info__content__department {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .interview-info__content__join, .interview-info__content__department {
    font-size: clamp(0.9375rem, 0.8179209184rem + 0.5102040816vw, 1.0625rem);
    margin-top: 0.25em;
  }
}
.interview-info__opening {
  margin-top: min(3.3333333333vw, 57.6px);
  padding-block: 48px;
  padding-inline: 40px;
}
@media screen and (max-width: 767px) {
  .interview-info__opening {
    margin-top: 0;
    padding-block: 32px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 599px) {
  .interview-info__opening {
    padding-block: 32px;
  }
}
@media screen and (max-width: 479px) {
  .interview-info__opening {
    padding: 24px 16px;
  }
}
.interview-info__opening p {
  font-size: 1.125rem;
  line-height: 1.8;
}
@media screen and (max-width: 1439px) {
  .interview-info__opening p {
    font-size: clamp(1rem, 0.9376302083rem + 0.2083333333vw, 1.125rem);
  }
}
.interview-info__opening .caution__text {
  font-size: 0.85em;
  margin-top: 1.5em;
}

/** ================================================
 * Interview - インタビュー内容
 * ================================================ */
.interview-content {
  padding-top: 0;
  background: linear-gradient(to bottom, #fbf5fb 0%, #f2e9f2 100%);
}
@media screen and (max-width: 1023px) {
  .interview-content {
    padding-bottom: 40px;
  }
}
.interview-content__body {
  max-width: 92%;
  background: #fff;
  margin-top: -100px;
  padding-block: min(2.7777777778vw, 48px) min(4.4444444444vw, 76.8px);
  padding-inline: 40px;
  border-radius: 80px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1023px) {
  .interview-content__body {
    border-radius: 60px;
  }
}
@media screen and (max-width: 767px) {
  .interview-content__body {
    border-radius: 50px;
  }
}
@media screen and (max-width: 479px) {
  .interview-content__body {
    border-radius: 40px;
  }
}
@media screen and (max-width: 1023px) {
  .interview-content__body {
    padding-block: 32px 64px;
  }
}
@media screen and (max-width: 767px) {
  .interview-content__body {
    padding-bottom: 56px;
    padding-inline: 24px;
  }
}
@media screen and (max-width: 599px) {
  .interview-content__body {
    padding-bottom: 48px;
    padding-inline: 16px;
  }
}
.interview-content__section {
  padding-block: min(2.2222222222vw, 38.4px);
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
}
@media screen and (max-width: 1023px) {
  .interview-content__section {
    padding-block: 24px;
  }
}
.interview-content__section h3 {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 1439px) {
  .interview-content__section h3 {
    font-size: clamp(1.125rem, 0.9047227444rem + 0.9398496241vw, 1.75rem);
  }
}
@media screen and (max-width: 599px) {
  .interview-content__section h3 {
    text-align: left;
  }
  .interview-content__section h3::before {
    left: 20px;
  }
}
.interview-content__section p {
  line-height: 2;
  margin-top: 1.5em;
  color: #3c353c;
}
.interview-content__section img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 16px;
  margin-top: min(3.8888888889vw, 67.2px);
}
@media screen and (max-width: 1023px) {
  .interview-content__section img {
    border-radius: 12px;
  }
}
@media screen and (max-width: 767px) {
  .interview-content__section img {
    border-radius: 10px;
  }
}
@media screen and (max-width: 479px) {
  .interview-content__section img {
    border-radius: 8px;
  }
}
@media screen and (max-width: 1439px) {
  .interview-content__section img {
    margin-top: clamp(2.5rem, 2.0010416667rem + 1.6666666667vw, 3.5rem);
  }
}

/** ================================================
 * Interview - 他のインタビューを見る
 * ================================================ */
.other-interview {
  padding-block: min(3.3333333333vw, 57.6px);
  background-color: #f2e9f2;
  position: relative;
}
.other-interview__inner {
  padding-left: 10.7142857143%;
  position: relative;
  z-index: 2;
  padding-bottom: min(11.1111111111vw, 192px);
}
@media screen and (max-width: 1023px) {
  .other-interview__inner {
    padding-inline: 40px;
  }
}
.other-interview__title {
  font-size: min(2.2222222222vw, 38.4px);
}
@media screen and (max-width: 1439px) {
  .other-interview__title {
    font-size: clamp(1.5rem, 1.2505208333rem + 0.8333333333vw, 2rem);
  }
}
@media screen and (max-width: 767px) {
  .other-interview__title {
    text-align: center;
  }
}
.other-interview__title::before {
  content: "";
  left: 0;
  transform: translateX(0);
  width: 3em;
}
@media screen and (max-width: 767px) {
  .other-interview__title::before {
    left: 50%;
    transform: translateX(-50%);
  }
}
.other-interview__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5714285714%;
  margin-top: min(6.9444444444vw, 120px);
}
@media screen and (max-width: 1023px) {
  .other-interview__list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .other-interview__list {
    grid-template-columns: repeat(1, 1fr);
    max-width: 400px;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .other-interview__item:not(:first-child) {
    margin-top: 40px;
  }
}
.other-interview__item .interview-card__body {
  padding: 8px;
}
.other-interview__item .interview-card__catch {
  margin-bottom: 16px;
}
.other-interview__item .interview-card__name {
  padding-inline: 8px;
}
.other-interview__item .interview-card__name__en {
  font-size: 0.6875rem;
}
.other-interview__item .interview-card__name__ja {
  font-size: 0.9375rem;
}
.other-interview__bg {
  position: absolute;
  top: max(-4.1666666667vw, -78px);
  left: 4%;
  width: min(13.8888888889vw, 240px);
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .other-interview__bg {
    display: none;
  }
}
.other-interview__bg img {
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=main.css.map */