@charset "UTF-8";
/* destyle.css*/
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
html {
  line-height: 1.15;
  /* Correct the line height */
  -webkit-text-size-adjust: 100%;
  /* Prevent font size adjustment */
  -webkit-tap-highlight-color: transparent;
  /* Remove gray overlay on links */
}

/* Sections */
body {
  margin: 0;
  /* Remove margin */
}

main {
  display: block;
  /* Render `main` consistently */
}

/* Vertical rhythm */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

/* Text-level semantics */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  appearance: none;
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

/* Interactive */
details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

/* Tables */
table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/********** base **********/
/* ========================================
    初期設定
    ======================================== */
body {
  font-family: "Noto Sans JP", "serif";
  color: #151515;
  font-weight: 400;
  line-height: 1.5;
  font-size: 15px;
}

.section-ttl {
  font-size: clamp(20px, 2.5vw, 32px);
}

.section-ttl span {
  font-family: "Inter", "serif";
  font-size: clamp(12px, 2.5vw, 16px);
}

/* ========================================
    コンテナ幅
    ======================================== */
.contents {
  padding: 80px 0 0 0;
}
@media (max-width: 600px) {
  .contents {
    padding: 120px 0 0 0;
  }
}

.container-sm {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(800px + 32px);
}

.container-md {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(940px + 32px);
}

.container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(1080px + 32px);
}

.container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(1200px + 32px);
}

.container-xl {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(1200px + 32px);
}

/* ========================================
    共通
    ======================================== */
.m-section-ttl {
  text-align: center;
  font-size: 30px;
  font-family: "Inter", "serif";
  color: #403ADE;
  margin-bottom: 10px;
  display: flex;
  line-height: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 20px;
  font-style: italic;
  font-weight: 300;
}
.m-section-ttl::before {
  content: "";
  display: block;
  width: 40px;
  height: 5px;
  background: #A27C00;
}

.m-section-head {
  font-size: 36px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .m-section-head {
    font-size: 30px;
  }
}

.m-section__block-text {
  margin-top: 75px;
  line-height: 2;
}
@media (max-width: 768px) {
  .m-section__block-text {
    margin-top: 24px;
  }
}

.m-more-btn a {
  display: flex;
  margin-top: 60px;
  color: #fff;
  font-weight: bold;
  align-items: center;
  width: 100%;
  max-width: 400px;
  gap: 30px;
  height: 100px;
  background: linear-gradient(-90deg, rgb(99, 141, 255), rgba(93, 67, 255, 0.8));
  justify-content: center;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .m-more-btn a {
    margin-top: 40px;
  }
}

.m-more-btn-txt {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Inter", "serif";
}

.m-more-btn-arrow {
  display: block;
  width: 40px;
  height: 8px;
  line-height: 1;
  transform: translateY(-100%);
  transition: transform 0.33s ease-in-out;
}

.m-more-btn a:hover .m-more-btn-arrow {
  transform: translateY(-100%) translateX(5px);
}

.m-more-btn-door {
  position: relative;
  width: 28px;
  height: 32px;
  perspective: 200px;
}

.m-more-btn-door-panel {
  position: absolute;
  height: 100%;
}

.m-more-btn-door-panel--right {
  left: 0;
  width: 100%;
  z-index: 1;
  background: #fff;
}

.m-more-btn-door-panel--left {
  left: 0;
  width: 100%;
  transform-origin: right center;
  z-index: 2;
  transform: rotateY(30deg);
  transition: transform 0.25s ease-in-out 0s, transform 0.25s ease-in-out 0.12s;
  background: #403ADE;
}

.m-more-btn a:hover .m-more-btn-door-panel--left {
  transform: rotateY(90deg);
}

.m-more-btn a:not(:hover) .m-more-btn-door-panel--left {
  transform: rotateY(30deg);
}

.u-pc {
  display: block;
}
@media (max-width: 576px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media (max-width: 576px) {
  .u-sp {
    display: block;
  }
}

.m-page-body {
  background: #E5ECFF;
}

.m-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .m-grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .m-grid-3col {
    grid-template-columns: repeat(1, 1fr);
  }
}
.m-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}

@media (max-width: 576px) {
  .m-grid-2col {
    grid-template-columns: repeat(1, 1fr);
  }
}
.m-flex-2col {
  display: flex;
  gap: 80px;
}

@media (max-width: 576px) {
  .m-flex-2col {
    flex-direction: column;
  }
}
.m-page-head {
  padding-top: 208px;
  position: relative;
}

@media (max-width: 576px) {
  .m-page-head {
    padding-top: 160px;
  }
}
.m-page-body .m-page-head {
  border-bottom: 1px solid #E0E0E0;
}

.m-page-body .m-page-head--02 {
  border-bottom: none;
}

.m-page-head__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 100px;
}
@media (max-width: 576px) {
  .m-page-head__inner {
    padding-bottom: 50px;
  }
}

.m-page-head__accent {
  width: clamp(80px, 18vw, 260px);
}

.m-page-head__img {
  position: absolute;
  width: clamp(30px, 12vw, 140px);
  z-index: -1;
}

.m-page-head__img-01 {
  top: 50%;
  left: 0%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .m-page-head__img-01 {
    left: 0%;
    top: 2%;
    transform: translateX(0);
  }
}

.m-page-head__img-02 {
  top: 100%;
  left: 5%;
  transform: translateY(60%);
  width: 60px;
}
@media (max-width: 600px) {
  .m-page-head__img-02 {
    display: none;
  }
}

.m-page-head__img-03 {
  top: 25%;
  right: 0;
  transform: translateX(50%);
}

.m-page-head__img-04 {
  top: 100%;
  right: 4%;
  width: clamp(20px, 8vw, 80px);
  width: 40px;
}

.m-page-head__img-05 {
  top: 90%;
  left: 30%;
  transform: translate(-50%, 100%);
  width: clamp(20px, 8vw, 90px);
}

.m-page-head__img-06 {
  top: -100%;
  left: 70%;
  transform: translate(-50%, 100%);
  width: clamp(20px, 4vw, 50px);
}

.m-page-head__inner-container {
  width: 90%;
  margin: 0 auto;
}

.m-page-head__title {
  display: flex;
  flex-direction: column;
}

.m-page-head__title span:first-child {
  font-style: italic;
  font-weight: 500 !important;
}

.m-page-sub-head {
  padding-top: 150px;
  position: relative;
}

@media (max-width: 576px) {
  .m-page-sub-head {
    padding-top: 80px;
  }
}
.m-page-sub-head-contents {
  gap: 0 !important;
}

.m-page-sub-head-title {
  width: 50%;
  font-size: 32px;
  color: #403ADE;
  font-weight: 500;
}

@media (max-width: 1080px) {
  .m-page-sub-head-title {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .m-page-sub-head-title {
    width: 100%;
    font-size: 22px;
  }
}
.m-page-sub-head-text {
  width: 50%;
  line-height: 2;
}

@media (max-width: 576px) {
  .m-page-sub-head-text {
    width: 100%;
    margin-top: 32px;
    font-size: 14px;
  }
}
.m-page-head__title span:first-child {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  font-family: "Inter", "serif", "serif";
}

@media (max-width: 576px) {
  .m-page-head__title span:first-child {
    font-size: 16px;
  }
}
.m-page-head__title span:last-child {
  font-size: 52px;
  line-height: 1.5;
  color: #403ADE;
}

@media (max-width: 1080px) {
  .m-page-head__title span:last-child {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .m-page-head__title span:last-child {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .m-page-head__title span:last-child {
    font-size: 28px;
  }
}
.m-page-head__sub-title {
  display: inline-block;
  margin-top: 30px;
  font-size: 18px;
  line-height: 1;
}

/* ========================================
    ヘッダー
    ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 12px;
}
@media (max-width: 600px) {
  .header {
    padding: 8px;
    background-color: #fff;
  }
}

/* インタビューページ用のエントリーボタン色 */
.header--interview-01 .header__cta-entry {
  background-color: #FF5F5F !important;
}

.header--interview-02 .header__cta-entry {
  background-color: #DBDB00 !important;
}

.header--interview-03 .header__cta-entry {
  background-color: #FF7300 !important;
}

.header--interview-04 .header__cta-entry {
  background-color: #7ADB76 !important;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo a {
  display: flex;
  align-items: center;
  gap: 20px;
  line-height: 1;
  height: 70px;
  background: #fff;
  padding: 0 20px;
  border-radius: 35px;
}
@media (max-width: 600px) {
  .header__logo a {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    height: 50px;
    padding: 0 12px;
    border-radius: 25px;
    border-radius: 0;
  }
}

.header__logo span {
  font-size: 13px;
  font-weight: 500;
  color: #8B8B8B;
}
@media (max-width: 600px) {
  .header__logo span {
    font-size: 8px;
  }
}

.header__logo-img {
  width: clamp(130px, 18vw, 260px);
  transform: translateY(-10%);
  flex-shrink: 0;
}

.header__cta-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 600px) {
  .header__cta-inner {
    gap: 10px;
  }
}

/* ハンバーガーメニューボタン */
.header__cta-ham {
  width: 110px;
  height: 48px;
  border-radius: 40px;
  background-color: #301DC3;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .header__cta-ham {
    width: 66px;
    height: 24px;
    border-radius: 20px;
  }
}

.header__cta-ham-inner {
  width: 75px;
  height: 18px;
  position: relative;
}
@media (max-width: 600px) {
  .header__cta-ham-inner {
    width: 24px;
    height: 10px;
  }
}

.header__cta-ham-inner span {
  position: absolute;
  width: 75px;
  height: 2px;
  background-color: #fff;
  left: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 600px) {
  .header__cta-ham-inner span {
    width: 24px;
    height: 1px;
  }
}

.header__cta-ham-inner span:nth-child(1) {
  top: 0;
}

.header__cta-ham-inner span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.header__cta-ham-inner span:nth-child(3) {
  bottom: 0;
}

.header__cta-ham.is-active .header__cta-ham-inner span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(20deg);
}

.header__cta-ham.is-active .header__cta-ham-inner span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.header__cta-ham.is-active .header__cta-ham-inner span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-20deg);
}

/* エントリーボタン */
.header__cta-entry {
  width: 200px;
  height: 46px;
  border-radius: 35px;
  background-color: #FF5F5F;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.5s ease-in-out;
}
@media (max-width: 600px) {
  .header__cta-entry {
    width: 80px;
    padding: 0 18px;
    height: 24px;
    border-radius: 20px;
  }
}

.header__cta-entry-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-family: "Inter", "serif";
}

.header__cta-entry-link span {
  font-weight: bold;
  color: #fff;
}
@media (max-width: 600px) {
  .header__cta-entry-link span {
    font-size: 12px;
  }
}

/* ========================================
    フッター
    ======================================== */
.footer {
  background: #EAE6D8;
  padding-top: 64px;
  position: relative;
  z-index: 10;
  color: #403ADE;
}

.footer__logo {
  background: #fff;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 68px 68px 0;
  min-width: 320px;
}
@media (max-width: 768px) {
  .footer__logo {
    justify-content: flex-start;
  }
}

.footer__logo a {
  display: flex;
  flex-direction: column;
  padding: 20px 60px;
  padding-left: 8vw;
}
@media (max-width: 768px) {
  .footer__logo a {
    padding-left: 30px;
  }
}
.footer__logo a span {
  font-size: 13px;
  font-weight: 500;
  color: #8B8B8B;
  margin-top: 20px;
}
@media (max-width: 600px) {
  .footer__logo a span {
    font-size: 9px;
    margin-top: 10px;
  }
}

.footer__logo-img {
  width: clamp(220px, 18vw, 260px);
}

.footer__left-list {
  margin-left: 8vw;
  margin-top: 54px;
}

.footer__left-list-item {
  margin-top: 26px;
}

.footer__left-list-item a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__left-list-item a:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #403ADE;
  border-radius: 50%;
  line-height: 1;
}

.footer__left-list-item-last a {
  display: flex;
  align-items: center;
  margin-top: 50px;
}
.footer__left-list-item-last a:before {
  content: "";
  display: none;
}

.footer__left-list-item-last span {
  display: block;
  width: 15px;
  line-height: 1;
}

.footer__inner {
  display: flex;
  gap: 8%;
}
@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
  }
}

.footer__left-list-item {
  font-size: 15px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .footer__nav-list {
    margin-left: 8vw;
  }
}

.footer__nav-list-item {
  font-size: 18px;
  margin-top: 28px;
  font-weight: 600;
}

.footer__nav-list-item-sub-list {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .footer__nav-list-item-sub-list {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer__nav-list-item-sub {
  font-size: 14px;
  font-weight: 500;
  color: #7874FF;
}

.footer__nav-list-item a {
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.footer__nav-list-item a:hover {
  border-bottom: 1px solid #403ADE;
}

/* ----------------------------------------
    フッターボトム
    ---------------------------------------- */
.footer__bottom {
  margin-top: 80px;
  padding: 40px 0;
  padding-right: 8vw;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .footer__bottom {
    margin-top: 50px;
  }
}

.footer__bottom-inner {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer__bottom-inner {
    justify-content: center;
    transform: translateX(30px);
  }
}

.footer__bottom-text {
  font-size: 12px;
  color: #403ADE;
  font-family: "Inter", "serif";
}

.footer__bottom-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__bottom-icon-door {
  position: relative;
  width: 40px;
  height: 80px;
  perspective: 200px;
}
@media (max-width: 768px) {
  .footer__bottom-icon-door {
    width: 30px;
    height: 60px;
  }
}

.footer__bottom-icon-door-panel {
  position: absolute;
  height: 100%;
}

.footer__bottom-icon-door-panel--right {
  left: 0;
  width: 100%;
  z-index: 1;
  background: #fff;
}

.footer__bottom-icon-door-panel--left {
  left: 0;
  width: 100%;
  transform-origin: right center;
  z-index: 2;
  animation: doorOpenReverse 3s ease-in-out infinite;
  background: #403ADE;
}

@keyframes doorOpenReverse {
  0% {
    transform: rotateY(0deg);
  }
  25% {
    transform: rotateY(90deg);
  }
  75% {
    transform: rotateY(90deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
/* ========================================
    メインビジュアル
    ======================================== */
html,
body {
  overflow-x: hidden;
  touch-action: pan-y;
}

.top-wrapper {
  background: linear-gradient(to bottom, #EAE6D8 0%, #EAE6D8 calc(100% - 120px), rgba(234, 230, 216, 0) 100%);
  padding-bottom: 120px;
}

.top-section-wrapper {
  position: relative;
  padding-bottom: 120px;
}

.top-section {
  pointer-events: none;
  width: 100%;
  background: #EAE6D8;
  min-height: 100vh;
  padding-block: clamp(80px, 14vh, 140px);
}

.top-section__body {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
  z-index: 1;
  pointer-events: none;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  --tile-scale: .6;
  --tile-buffer: 3;
  --tile-width: 320px;
  --tile-height: 320px;
}
@media (max-width: 600px) {
  .top-section__body {
    --tile-buffer: 1;
  }
}

.top-section__pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  overflow: hidden;
}
.top-section__pattern.is-ready {
  opacity: 1;
  visibility: visible;
}
.top-section__pattern.is-faded {
  opacity: 0.3;
}

.top-section__pattern-img {
  position: absolute;
  object-fit: contain;
  display: block;
  pointer-events: none;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}
@media (max-width: 600px) {
  .top-section__pattern-img[src*=splide-img04], .top-section__pattern-img[src*=splide-img05] {
    display: none !important;
  }
}

.top-section__accent-01 {
  width: 13vw;
  height: auto;
  position: absolute;
  top: 55%;
  right: 80px;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 600px) {
  .top-section__accent-01 {
    transform: translateX(0);
    right: 25%;
    top: 30%;
  }
}

.top-section__accent-02 {
  position: absolute;
  top: 50%;
  left: 30%;
  z-index: 1;
  width: 10vw;
  height: auto;
  pointer-events: none;
}

.top-section__accent-03 {
  position: absolute;
  top: 100%;
  left: 20%;
  z-index: 1;
  width: 10vw;
  height: auto;
  pointer-events: none;
}
@media (max-width: 600px) {
  .top-section__accent-03 {
    width: 20vw;
    left: 0;
    top: 90%;
  }
}

.top-section__accent-04 {
  position: absolute;
  top: 120%;
  right: 20%;
  z-index: 1;
  width: 8vw;
  height: auto;
  pointer-events: none;
}
@media (max-width: 600px) {
  .top-section__accent-04 {
    width: 16vw;
    right: 10%;
    top: 105%;
    opacity: 0.5;
  }
}

.top-section__accent-05 {
  position: absolute;
  top: 140%;
  left: 0;
  z-index: 1;
  width: 10vw;
  height: auto;
  pointer-events: none;
}
@media (max-width: 600px) {
  .top-section__accent-05 {
    transform: translateX(0);
    width: 20vw;
    opacity: 0.2;
    left: 5%;
    top: 142%;
  }
}

.top-section__accent-01 img,
.top-section__accent-02 img,
.top-section__accent-03 img,
.top-section__accent-04 img,
.top-section__accent-05 img {
  transform-origin: center;
  rotate: 0deg;
  animation: spin 10s linear infinite;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  min-width: 40px;
}

@keyframes spin {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
.top-section__accent-06 {
  position: absolute;
  top: 30%;
  left: 20%;
  z-index: 1;
  min-width: 40px;
  width: 4vw;
  height: auto;
  pointer-events: none;
}

.top-section__accent-07 {
  position: absolute;
  top: 140%;
  right: 0%;
  z-index: 1;
  min-width: 40px;
  width: 4vw;
  height: auto;
  pointer-events: none;
}

.top-section__accent-08 {
  position: absolute;
  top: 5%;
  left: 44%;
  z-index: 1;
  width: 5vw;
  height: auto;
  pointer-events: none;
  min-width: 40px;
}

.top-section__accent-09 {
  position: absolute;
  top: 20%;
  left: 40%;
  z-index: 1;
  width: 2vw;
  height: auto;
  pointer-events: none;
  min-width: 40px;
}

.top-section__accent-10 {
  position: absolute;
  top: 0%;
  left: 50%;
  z-index: 1;
  width: 2vw;
  height: auto;
  transform: translateY(-50%);
  pointer-events: none;
  min-width: 40px;
}

.top-section__accent-11 {
  position: absolute;
  top: 10%;
  left: 35%;
  z-index: 1;
  width: 3vw;
  height: auto;
  pointer-events: none;
  min-width: 20px;
}

.top-section__accent-12 {
  position: absolute;
  top: 70%;
  left: 10%;
  z-index: 1;
  width: 3vw;
  height: auto;
  pointer-events: none;
  min-width: 40px;
}

.top-section__accent-13 {
  position: absolute;
  top: 100%;
  right: 5%;
  z-index: 1;
  width: 3vw;
  height: auto;
  pointer-events: none;
  min-width: 20px;
}

.top-section__accent-14 {
  position: absolute;
  top: 80%;
  left: 20%;
  z-index: 1;
  width: 3vw;
  height: auto;
  pointer-events: none;
  min-width: 40px;
}

.top-section__accent-15 {
  position: absolute;
  top: 55%;
  right: 10%;
  z-index: 1;
  width: 3vw;
  height: auto;
  pointer-events: none;
  min-width: 40px;
}

.top-section__content-copy {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  width: fit-content;
  height: auto;
  z-index: 1;
  display: flex;
  align-items: start;
  gap: 15px;
  z-index: 20;
}
@media (max-width: 600px) {
  .top-section__content-copy {
    left: 15px;
    top: 120px;
    transform: translate(0%, 0%);
    width: fit-content;
    max-width: calc(100vw - 30px);
  }
}

.top-section__content-copy-01,
.top-section__content-copy-02 {
  width: 72px;
  background: #fff;
  padding: 10px 4px;
  position: relative;
}
@media (max-width: 600px) {
  .top-section__content-copy-01,
  .top-section__content-copy-02 {
    width: 50px;
    padding: 6px 4px;
  }
}

.top-section__content-copy-02 {
  margin-top: 60px;
}

.top-section__content-copy-img-item {
  opacity: 0;
  transform: translate(-20px, -20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  pointer-events: none;
  position: absolute;
}
.top-section__content-copy-img-item.active {
  opacity: 1;
  transform: translate(0, 0);
  pointer-events: auto;
  position: relative;
}

.top-section__content-hum-inner {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%);
  z-index: 1;
  isolation: isolate;
  overflow-y: visible;
  pointer-events: none;
}
@media (max-width: 600px) {
  .top-section__content-hum-inner {
    overflow-y: visible;
    top: 40%;
    left: 0;
    transform: translate(-30%, 0%) scale(1.5);
    max-height: 100dvh;
  }
}

.top-section__content-hum-item {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
  pointer-events: none;
}
@media (max-width: 600px) {
  .top-section__content-hum-item {
    overflow: visible;
  }
}

.top-section__content-hum-item-base {
  overflow: hidden;
}
@media (max-width: 600px) {
  .top-section__content-hum-item-base {
    overflow-x: hidden;
  }
}

.top-section__content-hum-img {
  position: absolute;
  transform: scale(1.2);
  transform-origin: bottom right;
  bottom: -3.5%;
  right: 3%;
}
@media (max-width: 600px) {
  .top-section__content-hum-img {
    bottom: -2.5%;
    right: 10px;
    left: auto;
    padding-right: 0px;
    max-width: calc(100vw - 40px);
  }
}

.top-section__content-hum-base-img {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}
.top-section__content-hum-base-img.active {
  opacity: 1;
  pointer-events: auto;
}

.top-section__content-hum-main-img {
  opacity: 0;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  pointer-events: none;
}
.top-section__content-hum-main-img[data-index="0"] {
  transform: scale(1.2);
}
.top-section__content-hum-main-img[data-index="0"].active {
  transform: scale(1.2);
}
.top-section__content-hum-main-img[data-index="1"] {
  transform: scale(1.2);
}
.top-section__content-hum-main-img[data-index="1"].active {
  transform: scale(1.2);
}
.top-section__content-hum-main-img[data-index="2"] {
  transform: scale(1.2);
}
.top-section__content-hum-main-img[data-index="2"].active {
  transform: scale(1.2);
}
.top-section__content-hum-main-img[data-index="3"] {
  transform: scale(1.2);
}
.top-section__content-hum-main-img[data-index="3"].active {
  transform: scale(1.2);
}
.top-section__content-hum-main-img.active {
  opacity: 1;
  pointer-events: auto;
}

.top-section__content-hum-item-base02 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}

.top-section__content-hum-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  overflow: visible;
  pointer-events: none;
}
@media (max-width: 600px) {
  .top-section__content-hum-main {
    overflow: visible;
  }
}

/* ========================================
    扉アニメーション
    ======================================== */
.top-section__door {
  position: absolute;
  width: 40px;
  height: 80px;
  perspective: 200px;
  z-index: 1;
}

.top-section__door-01 {
  left: 25%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .top-section__door-01 {
    left: 10%;
    top: 85%;
    width: 30px;
    height: 60px;
  }
}

.top-section__door-02 {
  right: 5%;
  top: 15%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .top-section__door-02 {
    right: 5%;
    top: 22%;
    width: 30px;
    height: 60px;
  }
}

.top-section__door-03 {
  left: 15%;
  top: 100%;
  transform: translate(-50%, 50%);
}
@media (max-width: 768px) {
  .top-section__door-03 {
    left: 80%;
    top: 90%;
    width: 20px;
    height: 40px;
  }
}

.top-section__door-04 {
  right: 20%;
  top: 150%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .top-section__door-04 {
    right: 2%;
    top: 150%;
    width: 30px;
    height: 60px;
  }
}
@media (max-width: 600px) {
  .top-section__door-04 {
    display: none;
  }
}

.top-section__door-panel {
  position: absolute;
  height: 100%;
}

.top-section__door-panel--right {
  left: 0;
  width: 100%;
  z-index: 1;
  transition: background-color 0.5s ease-in-out;
  background: #F97316;
}

.top-section__door-panel--left {
  left: 0;
  width: 100%;
  transform-origin: left center;
  z-index: 2;
  animation: doorOpen 3s ease-in-out infinite;
  transition: background-color 0.5s ease-in-out;
  background: #403ADE;
}

.top-section__door-02 .top-section__door-panel--left,
.top-section__door-03 .top-section__door-panel--left {
  transform-origin: right center;
  animation: doorOpenReverse 3s ease-in-out infinite;
}

.top-section__door.door-color-0 .top-section__door-panel--right {
  background: #FF5F5F;
}
.top-section__door.door-color-0 .top-section__door-panel--left {
  background: #403ADE;
}

.top-section__door.door-color-1 .top-section__door-panel--right {
  background: #DBDB00;
}
.top-section__door.door-color-1 .top-section__door-panel--left {
  background: #403ADE;
}

.top-section__door.door-color-2 .top-section__door-panel--right {
  background: #FF7300;
}
.top-section__door.door-color-2 .top-section__door-panel--left {
  background: #403ADE;
}

.top-section__door.door-color-3 .top-section__door-panel--right {
  background: #7ADB76;
}
.top-section__door.door-color-3 .top-section__door-panel--left {
  background: #403ADE;
}

@keyframes doorOpen {
  0% {
    transform: rotateY(0deg);
  }
  25% {
    transform: rotateY(-90deg);
  }
  75% {
    transform: rotateY(-90deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes doorOpenReverse {
  0% {
    transform: rotateY(0deg);
  }
  25% {
    transform: rotateY(90deg);
  }
  75% {
    transform: rotateY(90deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
/* ========================================
    ナビゲーションドロワー
    ======================================== */
.nav-drawer {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #EAE6D8;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .nav-drawer {
    justify-content: flex-start;
    padding-bottom: 80px;
  }
}
.nav-drawer.is-active {
  opacity: 1;
  visibility: visible;
}

.nav-drawer__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20vw;
  z-index: -1;
}
@media (max-width: 768px) {
  .nav-drawer__accent {
    display: none;
  }
}

.nav-drawer__inner {
  display: flex;
  align-items: flex-start;
  gap: 8%;
  padding: 120px 8vw 80px;
}
@media (max-width: 768px) {
  .nav-drawer__inner {
    flex-direction: column;
    padding: 100px 8vw 60px;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-drawer__center {
    order: 1;
  }
}

@media (max-width: 768px) {
  .nav-drawer__right {
    order: 2;
  }
}

.nav-drawer__left {
  flex: 0.4;
}
@media (max-width: 768px) {
  .nav-drawer__left {
    order: 3;
  }
}

.nav-drawer__left-list {
  margin-top: 64px;
}

.nav-drawer__left-list-item {
  margin-top: 26px;
  font-size: 18px;
  font-weight: 500;
  color: #403ADE;
}
@media (max-width: 600px) {
  .nav-drawer__left-list-item {
    font-size: 16px;
    margin-top: 20px;
  }
}

.nav-drawer__left-list-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #403ADE;
  text-decoration: none;
  transition: opacity 0.3s ease-in-out;
}
.nav-drawer__left-list-item a:hover {
  opacity: 0.7;
}
.nav-drawer__left-list-item a:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #403ADE;
  border-radius: 50%;
  line-height: 1;
  flex-shrink: 0;
}

.nav-drawer__left-list-item-last {
  margin-top: 50px;
  font-size: 14px;
}
@media (max-width: 600px) {
  .nav-drawer__left-list-item-last {
    font-size: 12px;
    margin-top: 40px;
  }
}
.nav-drawer__left-list-item-last a:before {
  display: none;
}

.nav-drawer__left-list-item-img {
  display: block;
  width: 15px;
  line-height: 1;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .nav-drawer__nav-list {
    margin-left: 0;
  }
}

.nav-drawer__nav-list-item {
  margin-top: 28px;
  color: #403ADE;
}
@media (max-width: 600px) {
  .nav-drawer__nav-list-item {
    margin-top: 24px;
  }
}

.nav-drawer__nav-list-item-en {
  font-family: "Inter", "serif";
  font-size: 15px;
  font-weight: 400;
  color: #403ADE;
  display: block;
  font-style: italic;
  margin-bottom: 8px;
}
@media (max-width: 600px) {
  .nav-drawer__nav-list-item-en {
    font-size: 13px;
    margin-bottom: 6px;
  }
}

.nav-drawer__nav-list-item a {
  font-size: 24px;
  font-weight: 500;
  color: #403ADE;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
@media (max-width: 600px) {
  .nav-drawer__nav-list-item a {
    font-size: 20px;
  }
}
.nav-drawer__nav-list-item a:hover {
  border-bottom: 1px solid #403ADE;
}

.nav-drawer__nav-list-item-text {
  font-size: 24px;
  font-weight: 500;
  color: #403ADE;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
@media (max-width: 600px) {
  .nav-drawer__nav-list-item-text {
    font-size: 20px;
  }
}

.nav-drawer__nav-list-item-sub-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-top: 8px;
}
@media (max-width: 600px) {
  .nav-drawer__nav-list-item-sub-list {
    margin-top: 6px;
  }
}

.nav-drawer__nav-list-item-sub {
  font-size: 14px;
  font-weight: 400;
  color: #7874FF;
  margin-top: 8px;
}
@media (max-width: 600px) {
  .nav-drawer__nav-list-item-sub {
    font-size: 12px;
    margin-top: 6px;
  }
}

.nav-drawer__nav-list-item-sub a {
  font-size: 14px;
  font-weight: 400;
  color: #7874FF;
  text-decoration: none;
  border-bottom: none;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid transparent;
}
@media (max-width: 600px) {
  .nav-drawer__nav-list-item-sub a {
    font-size: 12px;
  }
}
.nav-drawer__nav-list-item-sub a:hover {
  border-bottom: 1px solid #7874FF;
}

.nav-drawer__copyright {
  position: absolute;
  bottom: 40px;
  right: 8vw;
  z-index: 1;
}
@media (max-width: 768px) {
  .nav-drawer__copyright {
    position: static;
    text-align: center;
    margin-top: 40px;
    right: auto;
  }
}

.nav-drawer__copyright-text {
  font-size: 12px;
  color: #403ADE;
}

/* ========================================
    投稿一覧ページ
    ======================================== */
/* ========================================
    投稿詳細ページ
    ======================================== */
.m-post-main img {
  object-fit: contain;
  width: auto;
  height: auto;
  margin-bottom: 20px;
}
.m-post-main p {
  margin-bottom: 20px;
  line-height: 2;
}
@media (max-width: 600px) {
  .m-post-main p {
    font-size: 14px;
  }
}
.m-post-main a {
  display: inline-block;
  margin-bottom: 20px;
  color: #00AFED;
  text-decoration: underline;
}
.m-post-main h1 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .m-post-main h1 {
    font-size: 28px;
  }
}
.m-post-main h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .m-post-main h2 {
    font-size: 22px;
  }
}
.m-post-main h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .m-post-main h3 {
    font-size: 18px;
  }
}

/* ========================================
    ユーティリティ
    ======================================== */
.u-pc-only {
  display: block;
}
@media (max-width: 600px) {
  .u-pc-only {
    display: none;
  }
}

.u-sp-only {
  display: none;
}
@media (max-width: 600px) {
  .u-sp-only {
    display: block;
  }
}

/* ========================================
    トップページ
    ======================================== 
*/
/* ----------------------------------------
    メインコンテナ
    ---------------------------------------- */
.top-main {
  position: relative;
  z-index: 1;
}

/* ----------------------------------------
    メッセージセクション
    ---------------------------------------- */
.top-message {
  position: relative;
  padding-bottom: 120px;
}
.top-message:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #EAE6D8 0%, #EAE6D8 calc(100% - 120px), rgba(234, 230, 216, 0) 100%);
}

.top-message__inner {
  position: relative;
  z-index: 30;
}

.top-message__title {
  position: relative;
  z-index: 30;
  font-size: 50px;
  font-family: "Inter", "serif";
  color: #403ADE;
  text-align: center;
  margin-bottom: 50px;
  font-style: italic;
  font-weight: 300;
}

.top-message__text {
  text-align: center;
  line-height: 1.75;
  margin-top: 2em;
}
@media (max-width: 600px) {
  .top-message__text {
    font-size: 14px;
  }
}

/* ----------------------------------------
    ダイアグラムセクション
    ---------------------------------------- */
.top-diagram {
  margin-top: 100px;
}
@media (max-width: 600px) {
  .top-diagram {
    margin-top: 50px;
  }
}

.top-diagram__container {
  width: 80vw;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .top-diagram__container {
    width: 100vw;
  }
}

.top-diagram__inner {
  display: flex;
  gap: 100px;
}
@media (max-width: 768px) {
  .top-diagram__inner {
    gap: 50px;
    flex-direction: column;
  }
}

.top-diagram__left {
  display: flex;
  width: 50%;
  position: relative;
  flex-shrink: 0;
  background: linear-gradient(0deg, rgba(99, 141, 255, 0.18), rgba(93, 64, 255, 0.18));
}
@media (max-width: 768px) {
  .top-diagram__left {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .top-diagram__right {
    padding: 0 20px;
  }
}

.top-diagram__left-img {
  width: clamp(100px, 14vw, 200px);
}

.top-diagram__left .top-diagram__left-img:nth-child(odd) {
  transform: translateY(-25%);
  position: relative;
  z-index: 1;
}

.top-diagram__left .top-diagram__left-img:nth-child(even) {
  transform: translateY(25%);
  position: relative;
  margin-left: -20px;
  z-index: 0;
}

.top-diagram__right-more-btn {
  margin-top: 40px;
}

/* ----------------------------------------
    インタビューセクション
    ---------------------------------------- */
.top-interview-wrap {
  position: relative;
}

.top-interview-wrap__img {
  position: absolute;
  z-index: -1;
  width: 44%;
  max-width: 460px;
}

.top-interview-wrap__img-01 {
  right: 0;
  top: -40%;
}
@media (max-width: 600px) {
  .top-interview-wrap__img-01 {
    top: 5%;
  }
}

.top-interview-wrap__img-02 {
  left: -10%;
  top: -10%;
}
@media (max-width: 600px) {
  .top-interview-wrap__img-02 {
    left: -30%;
    top: 10%;
  }
}

.top-interview-wrap__img-03 {
  right: 10%;
  bottom: 0;
  transform: translate(0%, 30%);
}
@media (max-width: 600px) {
  .top-interview-wrap__img-03 {
    transform: translate(30%, 50%);
  }
}

.top-interview {
  margin-top: 180px;
}
@media (max-width: 768px) {
  .top-interview {
    margin-top: 150px;
  }
}

.top-interview__inner {
  margin-top: 30px;
}

.top-interview__item {
  position: relative;
  border: 8px solid transparent;
}
.top-interview__item.active {
  border: 8px solid #403ADE;
}
.top-interview__item.active:hover .top-interview__item-img-item {
  transform: scale(1.08);
}

.top-interview__item-img {
  overflow: hidden;
}
@media (max-width: 768px) {
  .top-interview__item-img img {
    min-height: 70vh;
  }
}

.top-interview__item-img-item {
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-interview__label {
  position: absolute;
  top: 0;
  left: 0;
  width: 10%;
  z-index: 1;
}

.top-interview__item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  min-height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: linear-gradient(0deg, rgba(64, 58, 222, 0.8), rgba(139, 136, 214, 0));
  padding: 30px;
}
@media (max-width: 768px) {
  .top-interview__item-content {
    padding: 20px 10px;
  }
}

.top-interview__item-content-head {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
  padding-bottom: 18px;
}
@media (max-width: 768px) {
  .top-interview__item-content-head {
    gap: 20px;
    padding-bottom: 10px;
  }
}

.top-interview__item-content-head-name {
  font-size: clamp(30px, 3.5vw, 50px);
  font-family: "Inter", "serif";
  font-weight: 600;
  display: flex;
  line-height: 1;
  align-items: flex-end;
  transform: translateY(8px);
}
.top-interview__item-content-head-name span {
  transform: translateY(-8px);
  font-size: 16px;
  font-weight: 500;
  margin-left: 10px;
  font-family: "Noto Sans JP", "serif";
}
@media (max-width: 768px) {
  .top-interview__item-content-head-name span {
    font-size: 9px;
  }
}

.top-interview__item-content-head-job {
  line-height: 1;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 768px) {
  .top-interview__item-content-head-job {
    font-size: 9px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}

.top-interview__item-content-text p {
  font-size: clamp(18px, 2.4vw, 40px);
  letter-spacing: 0em;
  font-weight: bold;
  margin-top: 18px;
}

/* ----------------------------------------
    キャリアセクション
    ---------------------------------------- */
.top-career {
  margin-top: 250px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .top-career {
    margin-top: 180px;
  }
}

.top-career__accent {
  width: clamp(70px, 13vw, 200px);
  position: absolute;
  z-index: -1;
}

.top-career__accent-01 {
  right: 0;
  top: 0;
  transform: translate(50%, 100%);
}

.top-career__accent-02 {
  left: 20px;
  top: 0;
  opacity: 0.5;
}

.top-career__accent-03 {
  left: 40%;
  width: clamp(40px, 10vw, 110px);
  bottom: 0;
  opacity: 1;
}
@media (max-width: 600px) {
  .top-career__accent-03 {
    display: none;
  }
}

.top-career__content {
  display: flex;
  gap: 64px;
  margin-top: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .top-career__content {
    gap: 80px;
    flex-direction: column;
  }
}

.top-career__left {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 768px) {
  .top-career__left {
    width: 100%;
    gap: 30px;
  }
}

.top-career__left-img {
  max-width: 520px;
}
@media (max-width: 768px) {
  .top-career__left-img {
    max-width: 90%;
  }
}
.top-career__left-img img {
  aspect-ratio: 1/0.6;
}

@media (max-width: 768px) {
  .top-career__left-img-01 {
    margin: 0 0 0 auto;
  }
}

.top-career__left-img-02 {
  transform: translateX(-20%);
}
@media (max-width: 768px) {
  .top-career__left-img-02 {
    transform: translateX(0);
  }
}

/* ----------------------------------------
    カルチャーセクション
    ---------------------------------------- */
.top-culture {
  position: relative;
  margin-top: 180px;
}
@media (max-width: 768px) {
  .top-culture {
    margin-top: 120px;
  }
}

.top-culture__accent {
  position: absolute;
  width: clamp(40px, 10vw, 140px);
  z-index: -1;
}

.top-culture__accent-01 {
  right: 5%;
  top: 0;
}

.top-culture__accent-02 {
  left: 10%;
  top: 10%;
}

.top-culture__accent-03 {
  left: 13%;
  bottom: 20%;
}

.top-culture__accent-04 {
  left: 0%;
  top: 40%;
  transform: translateX(-50%);
}

.top-culture__accent-05 {
  top: 25%;
  right: 0;
  transform: translateX(50%);
}

.top-culture__accent-06 {
  left: 0%;
  top: 80%;
  width: clamp(20px, 6vw, 80px);
}

.top-culture__accent-07 {
  left: 70%;
  top: 5%;
  width: clamp(20px, 6vw, 80px);
}

.top-culture__inner {
  margin-top: 180px;
}
@media (max-width: 768px) {
  .top-culture__inner {
    margin-top: 80px;
    padding: 0 20px;
  }
}

.top-culture__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .top-culture__list {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.top-culture__item {
  border: 8px solid #A27C00;
  border-radius: 16px;
  padding-right: 40px;
  padding-top: 40px;
  box-sizing: border-box;
  background: #fff;
  transition: background 0.3s ease;
}
.top-culture__item:hover {
  background: #A27C00;
}
.top-culture__item:hover .top-culture__item-content-label {
  color: #fff;
}
.top-culture__item:hover .top-culture__item-content-text-title {
  color: #fff;
}
.top-culture__item:hover .top-culture__item-content-img-item:nth-child(1) {
  opacity: 0;
}
.top-culture__item:hover .top-culture__item-content-img-item:nth-child(2) {
  opacity: 1;
}
.top-culture__item:hover .top-culture__item-content-arrow-img:nth-child(1) {
  opacity: 0;
}
.top-culture__item:hover .top-culture__item-content-arrow-img:nth-child(2) {
  opacity: 1;
}

.top-culture__item-02 {
  transform: translateY(-45px);
}
@media (max-width: 768px) {
  .top-culture__item-02 {
    transform: translateY(0);
  }
}

.top-culture__item-03 {
  transform: translateY(-90px);
}
@media (max-width: 768px) {
  .top-culture__item-03 {
    transform: translateY(0);
  }
}

.top-culture__item-content {
  display: flex;
}

.top-culture__item-content-label {
  writing-mode: vertical-rl;
  width: 40px;
  text-align: end;
  flex-shrink: 0;
  color: #403ADE;
  font-style: italic;
  font-family: "Inter", "serif";
  padding-bottom: 40px;
  transition: color 0.3s ease;
}

.top-culture__item-content-img {
  position: relative;
}

.top-culture__item-content-img-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.top-culture__item-content-img-item:nth-child(1) {
  display: block;
  opacity: 1;
}
.top-culture__item-content-img-item:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.top-culture__item-content-text {
  text-align: end;
  margin-top: 100px;
}

.top-culture__item-content-text-title {
  font-size: 32px;
  font-weight: bold;
  color: #403ADE;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .top-culture__item-content-text-title {
    font-size: 24px;
  }
}

.top-culture__item-content-arrow {
  width: 43px;
  height: 8px;
  margin: 0 0 0 auto;
  margin-bottom: 42px;
  margin-top: 20px;
  position: relative;
}

.top-culture__item-content-arrow-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.top-culture__item-content-arrow-img:nth-child(1) {
  display: block;
  opacity: 1;
}
.top-culture__item-content-arrow-img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/* ----------------------------------------
    CTAセクション
    ---------------------------------------- */
.top-cta {
  margin-top: 180px;
}
@media (max-width: 768px) {
  .top-cta {
    margin-top: 120px;
  }
}

.top-cta__inner {
  display: flex;
  gap: 2px;
  background: #fff;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .top-cta__inner {
    flex-direction: column;
  }
}

.top-cta__content-item {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 50px;
  text-decoration: none;
  color: inherit;
  background: #BACDFF;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .top-cta__content-item {
    width: 100%;
    padding: 30px 20px;
  }
}
.top-cta__content-item:hover {
  background: #403ADE;
}
.top-cta__content-item:hover .top-cta__content-item-inner h3 {
  color: #fff;
}
.top-cta__content-item:hover .top-cta__content-btn {
  background: linear-gradient(135deg, #5D40FF, #6493FF);
}
.top-cta__content-item:hover .top-cta__content-btn-door-panel--left {
  transform: rotateY(90deg);
}
.top-cta__content-item:not(:hover) .top-cta__content-btn-door-panel--left {
  transform: rotateY(30deg);
}

.top-cta__content-item-inner {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .top-cta__content-item-inner {
    flex-direction: column;
    width: 90%;
    align-items: baseline;
  }
}

.top-cta__content-item-inner-span {
  font-family: "Inter", "serif";
  font-style: italic;
  font-weight: 400;
}

.top-cta__content-item-inner h3 {
  font-size: 32px;
  font-weight: bold;
  color: #403ADE;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  transition: color 0.3s ease;
}
.top-cta__content-item-inner h3 span {
  font-size: 18px;
}

.top-cta__content-btn-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  gap: 20px;
}
@media (max-width: 768px) {
  .top-cta__content-btn-wrapper {
    margin: 0 0 0 auto;
    gap: 15px;
  }
}

.top-cta__content-arrow {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  z-index: 10;
}

.top-cta__content-arrow-img {
  position: absolute;
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.top-cta__content-arrow-img--blue {
  opacity: 1;
}

.top-cta__content-arrow-img--white {
  opacity: 0;
}

.top-cta__content-item:hover .top-cta__content-arrow {
  transform: translateX(40px);
}

.top-cta__content-item:hover .top-cta__content-arrow-img--blue {
  opacity: 0;
}

.top-cta__content-item:hover .top-cta__content-arrow-img--white {
  opacity: 1;
}

.top-cta__content-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #403ADE;
}
@media (max-width: 768px) {
  .top-cta__content-btn {
    margin: 0;
    width: 100px;
    height: 100px;
  }
}

.top-cta__content-item-01 .top-cta__content-btn {
  background: #BACDFF;
  transition: background 0.3s ease;
}

.top-cta__content-item-02 .top-cta__content-btn {
  background: #BACDFF;
  transition: background 0.3s ease;
}

.top-cta__content-btn-door {
  position: relative;
  width: 28px;
  height: 32px;
  perspective: 200px;
}

.top-cta__content-btn-door-panel {
  position: absolute;
  height: 100%;
}

.top-cta__content-btn-door-panel--right {
  left: 0;
  width: 100%;
  z-index: 1;
  background: #fff;
}

.top-cta__content-btn-door-panel--left {
  left: 0;
  width: 100%;
  transform-origin: right center;
  z-index: 2;
  transform: rotateY(30deg);
  transition: transform 0.25s ease-in-out 0s, transform 0.25s ease-in-out 0.12s;
  background: #403ADE;
}

.works-style__list {
  gap: 40px 30px;
}

.works-style__list-contents {
  padding-top: 180px;
  padding-bottom: 160px;
}

@media (max-width: 576px) {
  .works-style__list-contents {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.works-style__list-item {
  background: #fff;
  padding: 50px 40px 58px 40px;
}

@media (max-width: 1080px) {
  .works-style__list-item {
    padding: 30px;
  }
}
.works-style__list-img {
  display: flex;
  align-items: end;
  width: 90%;
  max-width: 180px;
  min-height: 140px;
  margin: 0 auto;
}

.works-style__list-text {
  margin-top: 34px;
}

.works-style__list-title {
  color: #403ADE;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

@media (max-width: 1080px) {
  .works-style__list-title {
    font-size: 18px;
  }
}
.works-style__list-title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #A27C00;
  border-radius: 50%;
  flex-shrink: 0;
  transform: translateY(-25%);
}

.works-style__list-text-body {
  line-height: 2;
  margin-top: 24px;
}

.welfare__top-contents {
  background: #fff;
  border-radius: 50px;
  margin-top: 140px;
  padding-top: 150px;
}

@media (max-width: 576px) {
  .welfare__top-contents {
    margin-top: 100px;
    padding-top: 100px;
    border-radius: 20px;
  }
}
.welfare__top-contents-body {
  margin-top: 50px;
}

.welfare__top-contents-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  color: #403ADE;
}

@media (max-width: 576px) {
  .welfare__top-contents-title {
    font-size: 24px;
  }
}
.welfare__top-contents-title::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background: #A27C00;
  border-radius: 50%;
  transform: translateY(3px);
}

.welfare__top-contents-text {
  margin-top: 38px;
  line-height: 2;
  color: #000;
}

.welfare__top-contents-body-img {
  margin-top: 60px;
}

.welfare__top-contents-body-title {
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #403ADE;
}

@media (max-width: 576px) {
  .welfare__top-contents-body-title {
    font-size: 20px;
  }
}
.welfare__top-contents-body-title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 32px;
  background: #A27C00;
}

.welfare__top-contents-body-title span {
  font-size: 14px;
  color: #000;
}

.welfare__top-contents-list {
  margin-top: 100px;
  text-align: center;
}

@media (max-width: 768px) {
  .welfare__top-contents-list {
    gap: 20px;
  }
}
.welfare__top-contents-item {
  background: #F4F8FA;
}

.welfare__top-contents-item-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 282px;
}

.welfare__top-contents-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #403ADE;
  padding: 20px;
  border-radius: 20px 20px 0 0;
}

.welfare__top-contents-head-img {
  max-width: 135px;
  position: absolute;
  height: auto;
  top: 0;
  left: 40px;
  transform: translateY(-50%);
}

@media (max-width: 1080px) {
  .welfare__top-contents-head-img {
    max-width: 110px;
    left: 30px;
    transform: translateY(-35%);
  }
}
@media (max-width: 768px) {
  .welfare__top-contents-head-img {
    max-width: 100px;
    left: 20px;
    transform: translateY(-30%);
  }
}
.welfare__top-contents-head-img img {
  object-fit: contain;
}

.welfare__top-contents-item-title {
  color: #fff;
  font-size: 20px;
  text-align: left;
  width: 50%;
  margin: 0 0 0 auto;
  font-weight: 500;
}

@media (max-width: 1080px) {
  .welfare__top-contents-item-title {
    font-size: 17px;
    width: 55%;
  }
}
@media (max-width: 576px) {
  .welfare__top-contents-item-title {
    font-size: 16px;
    width: 60%;
  }
}
.welfare__top-contents-item-text-point {
  font-size: 43px;
  color: #A27C00;
  font-family: "Inter", "serif";
}

@media (max-width: 576px) {
  .welfare__top-contents-item-text-point {
    font-size: 32px;
  }
}
.welfare__top-contents-item-text-point span {
  font-size: 16px;
  color: #000;
  font-family: "Noto Sans JP", "serif";
}

.plus-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 24px;
}

.welfare-plan {
  padding-top: 34px;
  padding-bottom: 120px;
}

.welfare-plan__head {
  display: flex;
  background-color: #403ADE;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  border-radius: 20px 20px 0 0;
}

@media (max-width: 576px) {
  .welfare-plan__head {
    font-size: 16px;
  }
}
.welfare-plan__head-title {
  padding: 20px 10px;
  text-align: center;
}

.welfare-plan__head-title:first-child {
  width: 35%;
}

.welfare-plan__head-title:last-child {
  width: 65%;
}

@media (max-width: 576px) {
  .welfare-plan__head-title:last-child {
    width: 100%;
  }
}
.welfare-plan__list {
  margin: 0;
}

.welfare-plan__item {
  display: flex;
  border-top: 1px solid #E0E0E0;
}

.welfare-plan__item dt {
  width: 35%;
  color: #403ADE;
  padding: 30px;
  background: #F4F8FA;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.welfare-plan__item dd {
  width: 65%;
  padding: 30px;
  margin: 0;
  line-height: 2;
}

.welfare-plan__item dd ul {
  list-style: none;
  padding-left: 0;
}

.welfare-plan__item dd ul li {
  position: relative;
  padding-left: 1.2em;
}

.welfare-plan__item dd ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.welfare-plan__item dd ul li + li {
  margin-top: 1em;
}

@media (max-width: 576px) {
  .welfare-plan__item {
    flex-direction: column;
  }
  .welfare-plan__item dt,
  .welfare-plan__item dd {
    width: 100%;
    padding: 20px;
  }
  .welfare-plan__item dt {
    border-right: none;
    border-bottom: 1px solid #E0E0E0;
    font-size: 16px;
  }
  .welfare-plan__item dd {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .welfare-plan__item--radius dt {
    border-radius: 0;
  }
}
.welfare__main-contents {
  padding-top: 160px;
  padding-bottom: 160px;
}

@media (max-width: 576px) {
  .welfare__main-contents {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 576px) {
  .welfare__main-contents .container-lg {
    padding: 0 10px;
  }
}
.welfare__main-contents-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.welfare__main-contents-item {
  width: 20%;
  border-radius: 20px;
  padding: 30px;
}

@media (max-width: 768px) {
  .welfare__main-contents-item {
    width: 33.3333333333%;
  }
}
@media (max-width: 576px) {
  .welfare__main-contents-item {
    width: 50%;
  }
}
.welfare__main-contents-item-img {
  height: 100px;
  width: auto;
}

.welfare__main-contents-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.welfare__main-contents-item-text {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}

.welfare__main-contents-item-text span {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../img/page/arrow-btm.webp") center center/contain no-repeat;
}

.welfare__main-contents-item-title {
  text-align: center;
  color: #403ADE;
  font-weight: bold;
}

.welfare__main-contents-body {
  background: #fff;
  padding: 60px 0 0px 0;
  margin-top: 80px;
  scroll-margin-top: 100px;
}

@media (max-width: 576px) {
  .welfare__main-contents-body {
    padding: 40px 0 60px 0;
  }
}
.welfare__main-contents-body-title {
  font-size: 32px;
  margin-bottom: 35px;
  color: #403ADE;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 576px) {
  .welfare__main-contents-body-title {
    font-size: 28px;
    gap: 0;
  }
}
.welfare__main-contents-body-title::before {
  content: "";
  display: block;
  height: 1px;
  width: 70px;
  background: #403ADE;
  display: inline-block;
  margin-right: 10px;
}

@media (max-width: 1080px) {
  .welfare__main-contents-body-title::before {
    width: 26px;
  }
}
.welfare__main-contents-body-head {
  width: 90%;
  max-width: 1000px;
  margin-bottom: 44px;
  grid-template-columns: 1fr 0.5fr;
  gap: 10px;
}

@media (max-width: 576px) {
  .welfare__main-contents-body-head {
    width: 100%;
    gap: 0;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .welfare__main-contents-body-head-left {
    order: 2;
    margin-bottom: 20px;
  }
}
.welfare__main-contents-body-head-left p {
  line-height: 2;
}

@media (max-width: 576px) {
  .welfare__main-contents-body-head-left p {
    font-size: 14px;
  }
}
.welfare__main-contents-body-head-left-text {
  margin-left: 70px;
}

@media (max-width: 1080px) {
  .welfare__main-contents-body-head-left-text {
    padding: 0 20px;
    margin-left: 0;
  }
}
.welfare__main-contents-body-head-right {
  width: 50%;
  max-width: 280px;
  min-width: 120px;
  margin: 0 0 0 auto;
}

@media (max-width: 576px) {
  .welfare__main-contents-body-head-right {
    order: 2;
    margin: 0 auto;
  }
}
.welfare__main-contents-body-head-right img {
  object-fit: contain;
}

.welfare__main-contents-body-head-right--center {
  transform: translateY(50%);
}

@media (max-width: 768px) {
  .welfare__main-contents-body-head-right--center {
    transform: translateY(0);
  }
}
.welfare__main-contents-body-list {
  gap: 0;
}

.welfare__main-contents-body-item {
  padding: 35px;
  padding-top: 0;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .welfare__main-contents-body-item {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .welfare__main-contents-body-item {
    margin-bottom: 0;
    padding: 40px 0;
  }
}
@media (max-width: 576px) {
  .welfare__main-contents-body-item p {
    font-size: 14px;
  }
}
.welfare__main-contents-body-item-sm {
  font-size: 13px;
}

.welfare__main-contents-body-item-link {
  display: inline-block;
  color: #A27C00;
  text-decoration: underline;
  font-weight: 500;
  font-size: 14px;
  margin-top: 20px;
}

.welfare__main-contents-body-head-left-btn {
  padding-bottom: 80px;
  color: #403ADE;
}

@media (max-width: 576px) {
  .welfare__main-contents-body-head-left-btn {
    padding-bottom: 0px;
  }
}
.welfare__main-contents-body-head-left-btn a {
  margin-top: 72px;
  display: block;
  border-radius: 56px;
  border: 1px solid #707070;
  font-weight: bold;
  font-size: 18px;
  width: fit-content;
  padding: 40px 90px;
}

@media (max-width: 576px) {
  .welfare__main-contents-body-head-left-btn a {
    font-size: 14px;
    padding: 20px;
    font-size: 16px;
    margin: 0 auto;
    margin-top: 40px;
  }
}
@media (max-width: 420px) {
  .welfare__main-contents-body-head-left-btn a {
    font-size: 13px;
    padding: 16px;
  }
}
.welfare__main-contents-body-item h4 {
  color: #403ADE;
  font-size: 20px;
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-weight: bold;
}

@media (max-width: 576px) {
  .welfare__main-contents-body-item h4 {
    font-size: 16px;
  }
}
.welfare__main-contents-body-item p {
  line-height: 2;
}

.welfare__main-contents-body-item:nth-child(1),
.welfare__main-contents-body-item:nth-child(2),
.welfare__main-contents-body-item:nth-child(4),
.welfare__main-contents-body-item:nth-child(5),
.welfare__main-contents-body-item:nth-child(7),
.welfare__main-contents-body-item:nth-child(8),
.welfare__main-contents-body-item:nth-child(10) {
  border-right: 1px solid #E0E0E0;
}

@media (max-width: 576px) {
  .welfare__main-contents-body-item:nth-child(1),
  .welfare__main-contents-body-item:nth-child(2),
  .welfare__main-contents-body-item:nth-child(4),
  .welfare__main-contents-body-item:nth-child(5),
  .welfare__main-contents-body-item:nth-child(7),
  .welfare__main-contents-body-item:nth-child(8),
  .welfare__main-contents-body-item:nth-child(10) {
    border-right: none;
  }
}
@media (max-width: 768px) {
  .welfare__main-contents-body-item:nth-child(1),
  .welfare__main-contents-body-item:nth-child(2),
  .welfare__main-contents-body-item:nth-child(4),
  .welfare__main-contents-body-item:nth-child(5),
  .welfare__main-contents-body-item:nth-child(7),
  .welfare__main-contents-body-item:nth-child(8),
  .welfare__main-contents-body-item:nth-child(10) {
    border-right: none;
  }
}
.welfare__main-contents-body-item:nth-child(1),
.welfare__main-contents-body-item:nth-child(4),
.welfare__main-contents-body-item:nth-child(7),
.welfare__main-contents-body-item:nth-child(10),
.welfare__main-contents-body-item:nth-child(13) {
  padding-left: 0;
}

@media (max-width: 768px) {
  .welfare__main-contents-body-item:nth-child(odd) {
    padding-left: 0px;
    border-right: 1px solid #E0E0E0;
  }
}
@media (max-width: 576px) {
  .welfare__main-contents-body-item:nth-child(odd) {
    border-right: none;
  }
}
@media (max-width: 768px) {
  .welfare__main-contents-body-item:nth-child(even) {
    padding-left: 35px;
  }
}
@media (max-width: 576px) {
  .welfare__main-contents-body-item:nth-child(even) {
    border-right: none;
    padding-left: 0;
  }
}
@media (max-width: 576px) {
  .welfare__main-contents-body-item {
    border-bottom: 1px solid #E0E0E0;
  }
}
.welfare__main-contents-body-item h4::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #A27C00;
  border-radius: 50%;
  flex-shrink: 0;
  transform: translateY(-25%);
  display: inline-block;
}

.kurumin {
  margin-top: 140px;
}

@media (max-width: 576px) {
  .kurumin {
    margin-top: 100px;
  }
}
.kurumin__inner {
  display: flex;
  align-items: center;
  gap: 50px;
  background: #fff;
  border-radius: 40px;
  padding: 40px 80px;
}

@media (max-width: 1080px) {
  .kurumin__inner {
    padding: 30px 50px;
  }
}
@media (max-width: 576px) {
  .kurumin__inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px;
  }
}
.kurumin__img {
  max-width: 140px;
}

@media (max-width: 576px) {
  .kurumin__img {
    max-width: 100px;
  }
}
.kurumin__contents {
  color: #403ADE;
}

.kurumin__title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 25px;
}

@media (max-width: 1080px) {
  .kurumin__title {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .kurumin__title {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.kurumin__text {
  line-height: 2;
  color: #000;
}

.childcare-support__top-contents {
  margin-top: 130px;
  padding-bottom: 164px;
}

@media (max-width: 576px) {
  .childcare-support__top-contents {
    margin-top: 100px;
    padding-bottom: 100px;
  }
}
.childcare-support__title {
  font-size: 32px;
  font-weight: bold;
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 52px;
  color: #403ADE;
}

@media (max-width: 576px) {
  .childcare-support__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.childcare-support__title::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background: #A27C00;
  border-radius: 50%;
  transform: translateY(-25%);
}

.childcare-support__contents:not(:first-of-type) {
  margin-top: 100px;
}

.childcare-support__contents h3 {
  background: #403ADE;
  border-radius: 8px;
  color: #fff;
  font-size: 24px;
  padding: 10px 20px;
  font-weight: 500;
}

.childcare-support__list {
  gap: 30px 40px;
  margin-top: 30px;
}

.childcare-support__list li {
  background: #fff;
  padding: 50px 40px;
}

@media (max-width: 768px) {
  .childcare-support__list li {
    padding: 30px;
  }
}
.childcare-support__list h4 {
  font-size: 20px;
  color: #403ADE;
  margin-bottom: 24px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

@media (max-width: 768px) {
  .childcare-support__list h4 {
    font-size: 18px;
  }
}
.childcare-support__list h4::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #A27C00;
  border-radius: 50%;
  flex-shrink: 0;
  transform: translateY(-25%);
}

.childcare-support__list p {
  line-height: 2;
}

@media (max-width: 576px) {
  .childcare-support__list p {
    font-size: 15px;
  }
}
.childcare-support__list-text-sm {
  margin-top: 30px;
  font-size: 13px;
  color: #666666;
}

.childcare-support__voice {
  background: #fff;
  border-radius: 40px 40px 0 0;
  padding: 140px 0;
}

@media (max-width: 576px) {
  .childcare-support__voice {
    border-radius: 20px 20px 0 0;
    padding: 100px 0;
  }
}
.childcare-support__voice-head {
  margin-top: 40px;
  grid-template-columns: 1fr 0.6fr;
}

@media (max-width: 1080px) {
  .childcare-support__voice-head {
    grid-template-columns: 1fr 0.8fr;
  }
}
@media (max-width: 768px) {
  .childcare-support__voice-head {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.childcare-support__voice-head-left h3 {
  font-size: 28px;
  font-weight: bold;
  color: #403ADE;
}

@media (max-width: 1080px) {
  .childcare-support__voice-head-left h3 {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .childcare-support__voice-head-left h3 {
    font-size: 20px;
  }
}
.childcare-support__voice-head-left .childcare-support__voice-head-name {
  font-size: 20px;
  font-weight: bold;
  margin-top: 26px;
  color: #403ADE;
}

.childcare-support__voice-head-left .childcare-support__voice-head-name span {
  font-size: 14px;
  font-weight: 400;
  margin-left: 8px;
  color: #000;
}

.childcare-support__voice-head-left .childcare-support__voice-head-position {
  font-size: 14px;
  color: #000;
  margin-top: 24px;
  line-height: 1.75;
}

.childcare-support__voice-head-right {
  max-width: 400px;
  margin: 0 0 0 auto;
}

@media (max-width: 576px) {
  .childcare-support__voice-head-right {
    max-width: 100%;
    margin: 0;
  }
}
.childcare-support__voice-head-right-content {
  border: 1px solid #A27C00;
  border-radius: 8px;
  box-sizing: border-box;
}

.childcare-support__voice-head-right-content h4 {
  background: #A27C00;
  color: #fff;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px 6px 0 0;
  box-sizing: border-box;
}

.childcare-support__voice-head-right-content ul {
  padding: 20px 30px;
}

.childcare-support__voice-head-right-content li {
  color: #A27C00;
  line-height: 1.75;
}

@media (max-width: 576px) {
  .childcare-support__voice-head-right-content li {
    font-size: 14px;
  }
}
.childcare-support__voice-text {
  margin-top: 60px;
  line-height: 2;
  color: #000;
}

@media (max-width: 576px) {
  .childcare-support__voice-text {
    font-size: 15px;
  }
}
.childcare-support__voice-other {
  margin-top: 72px;
}

.childcare-support__voice-other-contents-list {
  gap: 40px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .childcare-support__voice-other-contents-list {
    grid-template-columns: 1fr;
  }
}
.childcare-support__voice-other-head {
  font-size: 20px;
  font-weight: bold;
  color: #403ADE;
  display: flex;
  align-items: center;
  gap: 20px;
}

.childcare-support__voice-other-head h5 {
  flex-shrink: 0;
}

.childcare-support__voice-other span {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #A27C00;
}

.childcare-support__voice-other-contents li {
  background: #EFF3FF;
  border-radius: 8px;
  padding: 30px;
  line-height: 2;
  font-size: 15px;
}

.childcare-support__voice-other-contents-inner-name {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 0 auto;
  margin-top: 28px;
  color: #403ADE;
  font-weight: 500;
}

.childcare-support__voice-other-contents-inner p {
  color: #000;
  font-size: 15px;
}

@media (max-width: 576px) {
  .childcare-support__voice-other-contents-inner p {
    font-size: 14px;
  }
}
.childcare-support__voice-other-contents-inner-name-img {
  width: 52px;
  height: 52px;
}

.childcare-support__voice-other-contents-inner-name-img img {
  border-radius: 50%;
}

.childcare-support__voice-content:nth-of-type(2) {
  margin-top: 160px;
}

.faq-content {
  padding-bottom: 160px;
}
@media (max-width: 600px) {
  .faq-content {
    padding-bottom: 100px;
  }
}

.faq-content__item-wrapper {
  background: #fff;
  padding: 60px;
}
@media (max-width: 600px) {
  .faq-content__item-wrapper {
    padding: 40px 20px;
  }
}

.faq-content__inner .faq-content__item-wrapper:not(:first-of-type) {
  margin-top: 40px;
}
@media (max-width: 600px) {
  .faq-content__inner .faq-content__item-wrapper:not(:first-of-type) {
    margin-top: 30px;
  }
}

.faq-content__title {
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: bold;
  color: #403ADE;
  padding-bottom: 15px;
  border-bottom: 1px solid #707070;
}

.faq-content__item-wrapper .faq-content__item:not(:first-of-type) {
  border-top: 1px solid #E0E0E0;
  padding-top: 40px;
}

.faq-content__item {
  margin-top: 46px;
}

.faq-content__q,
.faq-content__a {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 600px) {
  .faq-content__q,
  .faq-content__a {
    gap: 15px;
  }
}

.faq-content__q {
  align-items: center;
  margin-bottom: 40px;
}

.faq-content__icon {
  width: 55px;
  line-height: 1;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .faq-content__icon {
    width: 38px;
  }
}

.faq-content__q-inner h3 {
  font-size: clamp(15px, 1.6vw, 24px);
  font-weight: bold;
  color: #403ADE;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.faq-content__a-inner p {
  line-height: 2;
}
@media (max-width: 600px) {
  .faq-content__a-inner p {
    font-size: 13px;
  }
}

.faq-content__more {
  margin-top: 24px;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .faq-content__more {
    margin-top: 40px;
  }
}
.faq-content__more a {
  display: flex;
  color: #fff;
  font-weight: bold;
  align-items: center;
  width: 100%;
  max-width: 226px;
  gap: 30px;
  height: 55px;
  background: linear-gradient(-90deg, rgb(99, 141, 255), rgba(93, 67, 255, 0.8));
  justify-content: center;
  border-radius: 50px;
}
@media (max-width: 600px) {
  .faq-content__more a {
    max-width: 180px;
    height: 45px;
    gap: 20px;
    font-size: 14px;
  }
}

.faq-content__more-txt {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Inter", "serif";
}

.faq-content__more-door {
  position: relative;
  width: 15px;
  height: 18px;
  perspective: 110px;
}
@media (max-width: 600px) {
  .faq-content__more-door {
    width: 12px;
    height: 14px;
    perspective: 90px;
  }
}

.faq-content__more-door-panel {
  position: absolute;
  height: 100%;
}

.faq-content__more-door-panel--right {
  left: 0;
  width: 100%;
  z-index: 1;
  background: #fff;
}

.faq-content__more-door-panel--left {
  left: 0;
  width: 100%;
  transform-origin: right center;
  z-index: 2;
  transform: rotateY(30deg);
  transition: transform 0.25s ease-in-out 0s, transform 0.25s ease-in-out 0.12s;
  background: #403ADE;
}

.faq-content__more a:hover .faq-content__more-door-panel--left {
  transform: rotateY(90deg);
}

.faq-content__more a:not(:hover) .faq-content__more-door-panel--left {
  transform: rotateY(30deg);
}

/* トップページ以外のページでエントリーボタンの色を変更 */
body:not(:has(.top-main)) .header__cta-entry {
  background-color: #A27C00;
}

.diagram {
  padding-top: 260px;
  color: #275A5B;
}

@media (max-width: 576px) {
  .diagram {
    padding-top: 80px;
  }
}
.diagram__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 20px;
}

@media (max-width: 576px) {
  .diagram__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.diagram__content {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 10px 20px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 576px) {
  .diagram__content {
    font-size: 14px;
    padding: 10px 10px;
    height: 50px;
  }
}
.diagram__content-img {
  margin-top: 40px;
}

.diagram__head {
  font-size: 32px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 40px;
  font-weight: 500;
  color: #403ADE;
}

@media (max-width: 576px) {
  .diagram__head {
    font-size: 20px;
  }
}
.diagram__head::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background: #A27C00;
  border-radius: 50%;
  flex-shrink: 0;
  transform: translateY(calc(-50% + 2px));
}

@media (max-width: 576px) {
  .diagram__head::before {
    width: 10px;
    height: 10px;
  }
}
.diagram__head-desc {
  margin-top: 40px;
  line-height: 2;
  margin-bottom: 70px;
  color: #000;
}

@media (max-width: 576px) {
  .diagram__head-desc {
    font-size: 15px;
    margin-bottom: 40px;
  }
}
.diagram__content-list {
  margin-top: 90px;
  gap: 46px;
}

@media (max-width: 576px) {
  .diagram__content-list {
    margin-top: 60px;
    gap: 30px;
  }
}
.diagram__content-list-title {
  background: #278178;
  width: fit-content;
  padding: 18px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .diagram__content-list-title {
    font-size: 14px;
    padding: 10px 16px;
    margin-bottom: 10px;
  }
}
.diagram__content-list-text {
  line-height: 2;
  color: #000;
}

@media (max-width: 576px) {
  .diagram__content-list-text {
    font-size: 14px;
  }
}
.diagram-contents {
  border-radius: 50px 50px 0 0;
  background: #fff;
  padding: 150px 0;
  margin-top: 140px;
}

@media (max-width: 576px) {
  .diagram-contents {
    margin-top: 100px;
    padding: 100px 0;
    border-radius: 30px 30px 0 0;
  }
}
.diagram-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 0;
  border-bottom: 1px solid #E0E0E0;
}

@media (max-width: 576px) {
  .diagram-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0;
  }
}
.diagram-contents .diagram-content:last-child {
  border-bottom: none;
}

@media (max-width: 576px) {
  .diagram-content__right {
    order: -1;
  }
}
.diagram-content__title {
  font-size: 28px;
  font-weight: 500;
  color: #403ADE;
}

@media (max-width: 576px) {
  .diagram-content__title {
    font-size: 20px;
  }
}
.diagram-content__text {
  margin-top: 35px;
  line-height: 2;
}

@media (max-width: 576px) {
  .diagram-content__text {
    font-size: 14px;
    margin-top: 20px;
  }
}
.diagram-content__link {
  width: fit-content;
  margin-top: 38px;
  display: flex;
  line-height: 1;
  align-items: center;
  gap: 10px;
  background: #00A0A5;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  padding: 18px 24px;
  border-radius: 28px;
}

.dialog-contents {
  padding-top: 160px;
}

@media (max-width: 576px) {
  .dialog-contents {
    padding-top: 100px;
  }
}
.dialog-contents__inner {
  background: #fff;
  border-radius: 60px;
  padding: 70px 30px;
  margin-bottom: 160px;
  padding-bottom: 140px;
}

@media (max-width: 576px) {
  .dialog-contents__inner {
    margin-bottom: 100px;
    padding-bottom: 100px;
    padding: 70px 22px;
    border-radius: 30px;
  }
}
.dialog-contents__title {
  margin-bottom: 100px;
  font-family: "Poppins", "serif";
  padding: 10px 28px;
  color: #999999;
  background: #F4F4F4;
  width: fit-content;
  border-radius: 60px;
  font-weight: 500;
}

@media (max-width: 576px) {
  .dialog-contents__title {
    margin-bottom: 40px;
  }
}
.dialog-contents__item {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-top: 65px;
}

@media (max-width: 576px) {
  .dialog-contents__item {
    gap: 10px;
  }
}
.dialog-contents__item--second {
  margin-top: 10px;
}

.dialog-contents__item-text {
  padding: 30px;
  line-height: 2;
}

@media (max-width: 576px) {
  .dialog-contents__item-text {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .dialog-contents__item-text p {
    font-size: 13px;
  }
}
.dialog-contents__item-text--green {
  background: #00A0A5;
  color: #fff;
  border-radius: 0 30px 30px 30px;
}

@media (max-width: 576px) {
  .dialog-contents__item-text--green {
    border-radius: 0 15px 15px 15px;
  }
}
.dialog-contents__item-text--gray {
  background: #F5F8F8;
  color: #275A5B;
  border-radius: 30px 0px 30px 30px;
}

@media (max-width: 576px) {
  .dialog-contents__item-text--gray {
    border-radius: 15px 0px 15px 15px;
  }
}
.dialog-contents__item-img {
  width: 80px;
  position: absolute;
}

@media (max-width: 1080px) {
  .dialog-contents__item-img {
    position: relative;
    flex-shrink: 0;
    width: 60px;
  }
}
.dialog-contents__item-img--01 {
  top: 0;
  left: -30px;
  transform: translate(-100%, -50%);
}

@media (max-width: 1080px) {
  .dialog-contents__item-img--01 {
    transform: none;
    left: 0;
  }
}
.dialog-contents__item-img--02 {
  top: 0;
  right: -30px;
  transform: translate(100%, -50%);
}

@media (max-width: 1080px) {
  .dialog-contents__item-img--02 {
    transform: none;
    right: 0;
  }
}
.dialog-contents__note {
  max-width: 700px;
  margin: 0 auto;
  margin-top: 14px;
  font-size: 13px;
  color: #275A5B;
  text-align: right;
}

.dialog-contents__more-btn {
  max-width: 700px;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 20px;
}

.dialog-contents__more-btn a {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  border: 1px solid #00A0A5;
  width: fit-content;
  padding: 10px 24px;
  color: #00A0A5;
  font-weight: 500;
  margin: 0 0 0 auto;
  gap: 10px;
}

.dialog-contents__more-btn a::after {
  content: "";
  display: block;
  width: 7px;
  height: 10px;
  transform: translateY(1px);
  background: url(../img/common/arrow-right03.webp) no-repeat center center/contain;
}

.career-path {
  padding-top: 160px;
  padding-bottom: 160px;
  position: relative;
}

@media (max-width: 576px) {
  .career-path {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.career-path__title {
  font-size: 32px;
  font-weight: bold;
  color: #403ADE;
  text-align: center;
  margin-bottom: 80px;
}

@media (max-width: 576px) {
  .career-path__title {
    font-size: 22px;
    text-align: left;
    margin-bottom: 50px;
  }
}
.career-path__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
}

@media (max-width: 768px) {
  .career-path__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.career-path__item {
  background: #fff;
  padding: 60px;
}
@media (max-width: 768px) {
  .career-path__item {
    padding: 30px 20px;
  }
}

.career-path__item-img {
  width: 100%;
}

.career-path__item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.career-path__item-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.career-path__item-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .career-path__item-title {
    font-size: 18px;
    text-align: left;
  }
}
.career-path__item-text {
  line-height: 2;
  color: #000;
}

@media (max-width: 576px) {
  .career-path__item-text {
    font-size: 13px;
  }
}
.career-path__item-point {
  margin-top: 30px;
}

.career-path__item-point-title {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

@media (max-width: 576px) {
  .career-path__item-point-title {
    font-size: 14px;
  }
}
.career-path__item-point-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  margin-top: 10px;
}

.career-path__item-point-list {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.career-path__item-point-list li {
  line-height: 2;
  color: #000;
  position: relative;
  padding-left: 1.2em;
}

.career-path__item-point-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

@media (max-width: 576px) {
  .career-path__item-point-list li {
    font-size: 13px;
  }
}
.career-path__item-note {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

@media (max-width: 576px) {
  .career-path__item-note {
    font-size: 13px;
  }
}
.career-path__accent {
  width: clamp(70px, 13vw, 200px);
  position: absolute;
  z-index: -1;
}

.career-path__accent-01 {
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
}

.career-path__accent-02 {
  left: 20px;
  top: 20%;
  opacity: 0.5;
}

.career-path__accent-03 {
  left: 40%;
  width: clamp(40px, 10vw, 110px);
  top: 50%;
  opacity: 0.7;
}

.career-path__accent-04 {
  right: 10%;
  bottom: 20%;
  opacity: 0.6;
}

.career-path__accent-05 {
  left: 0;
  bottom: 0;
  transform: translate(-30%, 30%);
  opacity: 0.4;
}

.career-path-flow {
  padding-top: 160px;
  padding-bottom: 160px;
  background: #EBEAE7;
  border-radius: 20px 20px 0 0;
}

@media (max-width: 576px) {
  .career-path-flow {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.career-path-flow__header {
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .career-path-flow__header {
    margin-bottom: 50px;
  }
}
.career-path-flow__header-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.career-path-flow__title-ja {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
}

@media (max-width: 1080px) {
  .career-path-flow__title-ja {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .career-path-flow__title-ja {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.career-path-flow__description {
  font-size: 16px;
  line-height: 2;
  color: #333;
}

@media (max-width: 576px) {
  .career-path-flow__description {
    font-size: 14px;
  }
}
.career-path-flow img {
  width: 100%;
  height: auto;
  display: block;
}

.flow-content {
  padding-bottom: 160px;
}

@media (max-width: 576px) {
  .flow-content {
    padding-top: 6px;
    padding-bottom: 100px;
  }
}
.flow-content__application-btn {
  margin-top: 80px;
}

@media (max-width: 576px) {
  .flow-content__application-btn {
    margin-top: 50px;
  }
}
.flow-content__application-btn-arrow-icon {
  line-height: 1;
}

.flow-content__application-btn-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background: linear-gradient(-90deg, rgb(99, 141, 255), rgba(93, 67, 255, 0.8));
  border-radius: 100px;
  padding: 30px 100px;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
}
.flow-content__application-btn-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgb(64, 58, 222), rgb(64, 58, 222));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: 100px;
}
.flow-content__application-btn-link:hover::before {
  opacity: 1;
}

@media (max-width: 576px) {
  .flow-content__application-btn-link {
    padding: 20px 30px;
    border-radius: 50px;
  }
}
.flow-content__application-btn-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 576px) {
  .flow-content__application-btn-left {
    gap: 15px;
  }
}
.flow-content__application-btn-text {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-weight: bold;
}

.flow-content__application-btn-text span:first-child {
  font-size: 34px;
}

@media (max-width: 576px) {
  .flow-content__application-btn-text span:first-child {
    font-size: 18px;
  }
}
.flow-content__application-btn-sub {
  font-size: 26px;
  font-weight: 400;
  margin-top: 5px;
}

@media (max-width: 576px) {
  .flow-content__application-btn-sub {
    font-size: 12px;
  }
}
.flow-content__application-btn-icon-up {
  position: relative;
  width: 110px;
  height: 110px;
}

@media (max-width: 576px) {
  .flow-content__application-btn-icon-up {
    width: 50px;
    height: 50px;
  }
}
.flow-content__application-btn-icon-default,
.flow-content__application-btn-icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.flow-content__application-btn-icon-hover {
  opacity: 0;
}

.flow-content__application-btn-link:hover .flow-content__application-btn-icon-default {
  opacity: 0;
}

.flow-content__application-btn-link:hover .flow-content__application-btn-icon-hover {
  opacity: 1;
}

.flow-content__application-btn-right {
  display: flex;
  align-items: center;
  gap: 50px;
}

@media (max-width: 576px) {
  .flow-content__application-btn-right {
    gap: 10px;
  }
}
.flow-content__application-btn-arrow {
  width: 40px;
  height: auto;
  transition: transform 0.3s ease;
}

@media (max-width: 576px) {
  .flow-content__application-btn-arrow {
    width: 24px;
  }
}
.flow-content__application-btn-link:hover .flow-content__application-btn-arrow {
  transform: translateX(10px);
}

@media (max-width: 576px) {
  .flow-content__divider {
    margin: 50px auto;
  }
}
.flow-content__selection {
  margin-top: 210px;
}

@media (max-width: 576px) {
  .flow-content__selection {
    margin-top: 60px;
  }
}
.flow-content__selection-title {
  font-size: 24px;
  font-weight: bold;
  color: #403ADE;
  margin-bottom: 60px;
  text-align: center;
}

@media (max-width: 576px) {
  .flow-content__selection-title {
    font-size: 20px;
    margin-bottom: 40px;
    text-align: left;
  }
}
.flow-content__selection-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 576px) {
  .flow-content__selection-steps {
    gap: 30px;
  }
}
.flow-content__selection-step {
  display: flex;
  align-items: center;
  padding: 0 10%;
  gap: 30px;
  border-top: 1px solid #707070;
  padding-top: 20px;
}
@media (max-width: 600px) {
  .flow-content__selection-step {
    padding: 0 5%;
    padding-top: 20px;
  }
}

.flow-content__selection-step:last-child {
  border-bottom: 1px solid #707070;
  padding-bottom: 20px;
}

@media (max-width: 576px) {
  .flow-content__selection-step {
    gap: 20px;
  }
}
.flow-content__selection-step-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-style: italic;
  width: 100px;
  height: 100px;
  background: linear-gradient(-90deg, rgb(99, 141, 255), rgba(93, 67, 255, 0.8));
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
  font-family: "Inter", "serif";
}

@media (max-width: 576px) {
  .flow-content__selection-step-circle {
    width: 80px;
    height: 80px;
  }
}
.flow-content__selection-step-label {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

@media (max-width: 576px) {
  .flow-content__selection-step-label {
    font-size: 10px;
  }
}
.flow-content__selection-step-number {
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  margin-top: 5px;
}

@media (max-width: 576px) {
  .flow-content__selection-step-number {
    font-size: 24px;
  }
}
.flow-content__selection-step-text {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  color: #403ADE;
}

@media (max-width: 576px) {
  .flow-content__selection-step-text {
    font-size: 16px;
  }
}
.flow-content__privacy {
  margin-top: 30px;
}

@media (max-width: 576px) {
  .flow-content__privacy {
    margin-top: 60px;
    padding-top: 40px;
  }
}
.flow-content__privacy-note {
  font-size: 13px;
  color: #000;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .flow-content__privacy-note {
    font-size: 12px;
  }
}
.flow-content__privacy-detail {
  font-size: 13px;
  color: #000;
  line-height: 2;
  max-width: 600px;
}

@media (max-width: 576px) {
  .flow-content__privacy-detail {
    font-size: 12px;
  }
}
.flow-content__privacy-detail-title {
  display: inline;
}

.flow-content__privacy-detail-text {
  margin-bottom: 15px;
  line-height: 2;
}

.flow-content__privacy-detail-text:last-child {
  margin-bottom: 0;
}

.interview-main {
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.interview-fv {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .interview-fv {
    height: 100vh;
  }
}

.interview-fv__data {
  padding: 28px 0;
}
@media (max-width: 768px) {
  .interview-fv__data {
    padding: 20px 0;
  }
}

.interview-fv__head-label {
  font-family: "Inter", "serif";
  font-style: italic;
  font-weight: 400;
}

/* 01用のグラデーションカラー */
.interview-fv--01 {
  background: url("../img/interview/fv01.webp") center center/cover no-repeat;
}
@media (max-width: 600px) {
  .interview-fv--01 {
    background: url("../img/interview/fv01-sp.png") center center/cover no-repeat;
  }
}

.interview-fv--01 .interview-fv__head-label span {
  background: linear-gradient(to right, #FF5F5F, #6493FF);
}

.interview-fv--01 .interview-fv__data {
  background: linear-gradient(to right, #FF5F5F, #6493FF);
}

/* 02用のグラデーションカラー */
.interview-fv--02 {
  background: url("../img/interview/fv02.webp") center center/cover no-repeat;
}
@media (max-width: 600px) {
  .interview-fv--02 {
    background: url("../img/interview/fv02-sp.png") center center/cover no-repeat;
  }
}

.interview-fv--02 .interview-fv__head-label span {
  background: linear-gradient(to right, #DBDB00, #6493FF);
}

.interview-fv--02 .interview-fv__data {
  background: linear-gradient(to right, #DBDB00, #6493FF);
}

/* 03用のグラデーションカラー */
.interview-fv--03 {
  background: url("../img/interview/fv03.webp") center center/cover no-repeat;
}
@media (max-width: 600px) {
  .interview-fv--03 {
    background: url("../img/interview/fv03-sp.png") center center/cover no-repeat;
  }
}

.interview-fv--03 .interview-fv__head-label span {
  background: linear-gradient(to right, #FF7300, #6493FF);
}

.interview-fv--03 .interview-fv__data {
  background: linear-gradient(to right, #FF7300, #6493FF);
}

/* 04用のグラデーションカラー */
.interview-fv--04 {
  background: url("../img/interview/fv04.webp") center center/cover no-repeat;
}
@media (max-width: 600px) {
  .interview-fv--04 {
    background: url("../img/interview/fv04-sp.png") center center/cover no-repeat;
  }
}

.interview-fv--04 .interview-fv__head-label span {
  background: linear-gradient(to right, #7ADB76, #6493FF);
}

.interview-fv--04 .interview-fv__data {
  background: linear-gradient(to right, #7ADB76, #6493FF);
}

.interview-fv__inner {
  position: absolute;
  bottom: 60px;
  left: 0;
}
@media (max-width: 768px) {
  .interview-fv__inner {
    bottom: 30px;
  }
}

.interview-fv__inner-container {
  height: 70vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}
@media (max-width: 768px) {
  .interview-fv__inner-container {
    height: auto;
    gap: 30px;
  }
}
@media (max-width: 600px) {
  .interview-fv__inner-container {
    height: 80vh;
  }
}

.interview-fv__head {
  position: relative;
  z-index: 2;
}

.interview-fv__head-label p {
  font-size: clamp(18px, 2.4vw, 35px);
  padding-left: 8vw;
}
@media (max-width: 768px) {
  .interview-fv__head-label p {
    padding-left: 20px;
    font-size: 16px;
  }
}

.interview-fv__head-label span {
  display: block;
  width: 35vw;
  height: 8px;
}
@media (max-width: 768px) {
  .interview-fv__head-label span {
    width: 60vw;
    height: 4px;
  }
}

.interview-fv__head-title h1 {
  font-size: clamp(20px, 2.7vw, 40px);
  padding-left: 8vw;
  font-weight: bold;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .interview-fv__head-title h1 {
    padding-left: 20px;
    margin-top: 15px;
    font-size: 20px;
    line-height: 1.6;
  }
}
@media (max-width: 600px) {
  .interview-fv__head-title h1 {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
}

.interview-fv__data {
  width: 35vw;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .interview-fv__data {
    width: 100%;
  }
}

.interview-fv__data-inner {
  padding-left: 8vw;
}
@media (max-width: 768px) {
  .interview-fv__data-inner {
    padding-left: 20px;
  }
}

.interview-fv__data-ttl {
  font-size: clamp(30px, 3.4vw, 50px);
  font-family: "Inter", "serif";
}
.interview-fv__data-ttl span {
  font-family: "Noto Sans JP", "serif";
  font-size: clamp(14px, 1.2vw, 18px);
  padding-left: 10px;
}
@media (max-width: 768px) {
  .interview-fv__data-ttl span {
    font-size: 13px;
    padding-left: 5px;
  }
}

.interview-fv__data-text {
  line-height: 2;
}
@media (max-width: 768px) {
  .interview-fv__data-text {
    font-size: 14px;
    line-height: 1.6;
  }
}

.interview-article {
  padding-bottom: 104px;
}
@media (max-width: 768px) {
  .interview-article {
    padding-bottom: 80px;
  }
}

.interview-article__inner {
  padding: 80px 0;
  position: relative;
}
@media (max-width: 768px) {
  .interview-article__inner {
    padding: 60px 20px;
  }
}

.interview-article__profile {
  border: 10px solid transparent;
  padding: 40px 80px;
  margin: 60px auto 100px;
  max-width: 870px;
  margin-top: 0;
  position: relative;
}
@media (max-width: 768px) {
  .interview-article__profile {
    padding: 30px 20px;
    margin: 40px auto 60px;
    border-width: 6px;
  }
}

.interview-article__profile--01 {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #FF5F5F, #8B88D6, #6493FF) border-box;
}

.interview-article__profile--02 {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #DBDB00, #6493FF) border-box;
}

.interview-article__profile--03 {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #FF7300, #6493FF) border-box;
}

.interview-article__profile--04 {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #7ADB76, #6493FF) border-box;
}

.interview-article__profile-title {
  color: #403ADE;
  font-family: "Inter", "serif";
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 20px;
  letter-spacing: 0.05em;
  position: relative;
  font-style: italic;
  font-weight: 400;
}
@media (max-width: 768px) {
  .interview-article__profile-title {
    font-size: 22px;
    margin: 0 0 15px;
  }
}
.interview-article__profile-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #D0D0D0;
  margin: 20px 0 0;
}
@media (max-width: 768px) {
  .interview-article__profile-title::after {
    margin: 15px 0 0;
  }
}

.interview-article__profile-text {
  color: #151515;
  font-family: "Noto Sans JP", "serif";
  font-size: 16px;
  line-height: 1.8;
  margin: 25px 0 0;
  text-align: left;
}
@media (max-width: 768px) {
  .interview-article__profile-text {
    font-size: 14px;
    line-height: 1.7;
    margin: 20px 0 0;
  }
}

.interview-article__section {
  margin-bottom: 170px;
  position: relative;
}
@media (max-width: 768px) {
  .interview-article__section {
    margin-bottom: 60px;
  }
}

.interview-article__section-inner {
  display: flex;
}
@media (max-width: 768px) {
  .interview-article__section-inner {
    flex-direction: column;
  }
}

.interview-article__section-left {
  width: 40vw;
  flex-shrink: 0;
  transform: translateY(5%);
  z-index: 1;
}
@media (max-width: 768px) {
  .interview-article__section-left {
    width: 100%;
    transform: none;
    margin-bottom: 20px;
  }
}

.interview-article__section-left-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 768px) {
  .interview-article__section-left-img {
    width: 100%;
  }
}

.interview-article__section-right {
  background: #fff;
  margin-left: -5%;
  padding-left: 10%;
  padding-right: 5%;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .interview-article__section-right {
    margin-left: 0;
    padding: 30px 20px;
  }
}

.interview-article__section-right:nth-child(even) {
  margin-right: -5%;
  padding-right: 10%;
}
@media (max-width: 600px) {
  .interview-article__section-right:nth-child(even) {
    margin-right: 0;
    padding-right: 16px;
  }
}

.interview-article__section-right-q {
  color: #403ADE;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .interview-article__section-right-q {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.interview-article__section-right-q span {
  font-family: "Inter", "serif";
  font-style: italic;
  margin-right: 6px;
}

.interview-article__section-right-a {
  font-size: clamp(20px, 2.5vw, 36px);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 72px;
}
@media (max-width: 768px) {
  .interview-article__section-right-a {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.4;
  }
}

.interview-article__section-right-a-text {
  line-height: 2;
}
@media (max-width: 768px) {
  .interview-article__section-right-a-text {
    font-size: 14px;
    line-height: 1.8;
  }
}

.interview-article__inner .interview-article__section:nth-child(odd) .interview-article__section-inner {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .interview-article__inner .interview-article__section:nth-child(odd) .interview-article__section-inner {
    flex-direction: column;
  }
}

.interview-article__section-note {
  padding-left: 5vw;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .interview-article__section-note {
    padding-left: 20px;
    margin-top: 40px;
    font-size: 12px;
  }
}

.accent-container {
  position: relative;
}

.accent {
  position: absolute;
  z-index: 0;
}

.accent--01 {
  top: -20px;
  left: 10px;
  width: 200px;
}

.accent--02 {
  width: 300px;
  top: 0;
  right: 0;
  transform: translate(10%, 100%);
  z-index: 1;
}
@media (max-width: 768px) {
  .accent--02 {
    z-index: -1;
  }
}

.accent--03 {
  width: 150px;
  top: 0;
  right: 0;
  transform: translate(10%, 50%);
  z-index: 1;
}

.accent--04 {
  width: 300px;
  top: 0;
  left: 0%;
  transform: translate(-50%, -25%);
  z-index: 1;
}

.accent--05 {
  width: 400px;
  bottom: 0;
  right: 0;
  transform: translate(10%, 100%);
  z-index: -1;
}

.accent--06 {
  width: 200px;
  top: 0;
  left: 4%;
  transform: translateY(-30%);
  z-index: 10;
}
@media (max-width: 768px) {
  .accent--06 {
    z-index: -1;
  }
}

.accent--07 {
  width: 300px;
  bottom: 0;
  right: 0;
  transform: translateY(40%);
  z-index: -1;
}
@media (max-width: 768px) {
  .accent--07 {
    z-index: -1;
  }
}

.accent--08 {
  width: 300px;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}

.accent--09 {
  width: 300px;
  bottom: -20px;
  left: 5vw;
  transform: translateY(150%);
  z-index: -1;
}

.accent--10 {
  width: 300px;
  bottom: 0;
  left: 50%;
  transform: translateY(150%);
  z-index: 10;
}/*# sourceMappingURL=main.css.map */