@charset "UTF-8";
/*!
 * ress.css • v1.2.2
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  box-sizing: border-box;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

*, :after, :before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

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

* {
  padding: 0;
  margin: 0;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
}

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

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden], template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active, a:hover {
  outline-width: 0;
}

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

b, strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

input {
  border-radius: 0;
}

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

[disabled] {
  cursor: default;
}

[type=number] {
  width: auto;
}

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

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

textarea {
  overflow: auto;
  resize: vertical;
}

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

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, select {
  text-transform: none;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

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

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

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
}

audio, canvas, progress, video {
  display: inline-block;
}

@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

* {
  box-sizing: border-box;
}

a img {
  border: none;
}

a:focus, *:focus {
  outline: none;
}

.c-arrow {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: left;
  word-break: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 1024px) {
  a:hover {
    opacity: 0.7;
  }
}

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.4;
}

.l-wrapper {
  overflow: hidden;
  width: 100%;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 20px 40px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.15));
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}
.c-button--primary {
  background-color: #4F359E;
  border-color: #ffffff;
  color: #ffffff;
}
.c-button--outline {
  background-color: #ffffff;
  border-color: #4F359E;
  color: #4F359E;
}
.c-button--outline:hover {
  opacity: 1;
  background-color: #F7F7FB;
  border-color: #E1DEEA;
  color: rgba(79, 53, 158, 0.7);
}
.c-button--dark {
  background-color: #333333;
  border-color: #ffffff;
  color: #ffffff;
}
.c-button--sm {
  gap: 5px;
  padding: 15px 20px;
  font-size: 16px;
}
.c-button__ext {
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.c-button--sm .c-button__ext {
  width: 14px;
  height: 14px;
}

.is-1 {
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  line-height: 1.4;
  color: #333333;
  font-size: 50px;
}
@media screen and (min-width: 1024px) {
  .is-1 {
    line-height: 1.2;
    font-size: 70px;
  }
}
.is-1__lg {
  font-size: 70px;
}
@media screen and (min-width: 1024px) {
  .is-1__lg {
    font-size: 100px;
  }
}
.is-1__accent {
  color: #4F359E;
}

.c-sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.c-sec-head__en {
  font-family: "Arial", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3.2px;
  line-height: 1.4;
  color: #4F359E;
}

.is-2 {
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  line-height: 1.4;
  color: #333333;
  font-size: 40px;
}
@media screen and (min-width: 768px) {
  .is-2 {
    font-size: 42px;
  }
}
@media screen and (min-width: 1024px) {
  .is-2 {
    font-size: 60px;
  }
}
.is-2__accent {
  color: #4F359E;
}

.c-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #4F359E;
  white-space: nowrap;
}
.c-text-link__text {
  text-decoration: underline;
  text-underline-position: from-font;
}

.l-header .l-header__social,
.l-nav .l-nav__social,
.l-footer .l-footer__social {
  display: none;
}

.c-sns {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}
.c-sns__item {
  line-height: 1;
}
.c-sns__link {
  display: block;
  transition: opacity 0.3s ease;
}
.c-sns__link:hover {
  opacity: 0.7;
}
.c-sns__link img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.p-breadcrumb {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #333333;
}
.p-breadcrumb__link {
  color: #4F359E;
}
@media screen and (min-width: 1024px) {
  .p-breadcrumb__link:hover {
    text-decoration: underline;
  }
}
.p-breadcrumb__current {
  color: #333333;
}

@keyframes mv-bg-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.js-scroll-fade [class*=-mv__bg] {
  opacity: 0;
  animation: mv-bg-in 1.2s ease both;
}

.js-scroll-fade .l-main section:not([class*=-mv]) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-scroll-fade .l-main section.is-shown {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js-scroll-fade [class*=-mv__bg] {
    opacity: 1;
    animation: none;
  }
  .js-scroll-fade .l-main section:not([class*=-mv]) {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.js-scroll-fade .post-type-archive-works .l-main section:not([class*=-mv]),
.js-scroll-fade .tax-works_cat .l-main section:not([class*=-mv]),
.js-scroll-fade .blog .l-main section:not([class*=-mv]) {
  opacity: 1;
  transform: none;
  transition: none;
}

.l-main {
  display: block;
}

.l-container {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  .l-container {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.l-contents {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-contents {
    padding-inline: 40px;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  padding: 10px 10px 10px 20px;
}
@media screen and (min-width: 1280px) {
  .l-header__inner {
    padding: 10px 30px;
  }
}
.l-header__logo {
  display: flex;
  align-items: center;
  gap: 11px;
}
.l-header__logo-img {
  width: auto;
  height: 40px;
}
.l-header__name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  color: #5C2F86;
  white-space: nowrap;
}
.l-header__end {
  display: none;
}
@media (min-width: 1400px) {
  .l-header__end {
    display: flex;
    align-items: center;
    gap: 24px;
  }
}
@media screen and (min-width: 1920px) {
  .l-header__end {
    gap: 28px;
  }
}
.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 1920px) {
  .l-header__nav-list {
    gap: 24px;
  }
}
.l-header__nav-link {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  color: #333333;
  white-space: nowrap;
}
@media screen and (min-width: 1920px) {
  .l-header__nav-link {
    font-size: 16px;
  }
}
.l-header__nav-link:hover {
  color: #4F359E;
}
.l-header__nav-link.is-current {
  color: #4F359E;
}
.l-header__nav-link.is-current::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background-color: #4F359E;
}
.l-header__actions {
  display: none;
}
@media (min-width: 1400px) {
  .l-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
.l-header__social {
  display: flex;
  align-items: center;
  line-height: 1;
}
.l-header__action {
  padding: 11px 16px;
  font-size: 14px;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.12));
}
.l-header__hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px;
  background-color: transparent;
}
@media (min-width: 1400px) {
  .l-header__hamburger {
    display: none;
  }
}
.l-header__hamburger-label {
  font-family: "Arial", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #4F359E;
}
.l-header__hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 32px;
}
.l-header__hamburger-lines span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #4F359E;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

body.is-drawer-open .l-header__hamburger-lines span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
body.is-drawer-open .l-header__hamburger-lines span:nth-child(2) {
  opacity: 0;
}
body.is-drawer-open .l-header__hamburger-lines span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.l-nav {
  position: fixed;
  inset: 0;
  z-index: 900;
  overflow-y: auto;
  padding: 80px 0 60px;
  background-color: rgba(51, 51, 51, 0.95);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.l-nav__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  min-height: 100%;
}
@media screen and (min-width: 1024px) {
  .l-nav__inner {
    max-width: 600px;
    margin-inline: auto;
  }
}
.l-nav__list {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.l-nav__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.l-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 40px;
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}
.l-nav__link.is-current {
  color: #E1DEEA;
}
.l-nav__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding-inline: 20px;
}
.l-nav__social {
  display: flex;
  justify-content: center;
  width: 100%;
  line-height: 1;
}
.l-nav__social .c-sns {
  gap: 16px;
}
.l-nav__social .c-sns__link img {
  width: 40px;
  height: 40px;
}

body.is-drawer-open {
  overflow: hidden;
}
body.is-drawer-open .l-nav {
  opacity: 1;
  visibility: visible;
}

.l-footer {
  background-color: #F7F7FB;
  padding: 80px 20px 40px;
}
@media screen and (min-width: 1024px) {
  .l-footer {
    padding: 60px 100px 40px;
  }
}
.l-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1280px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .l-footer__inner {
    gap: 30px;
  }
}
.l-footer__logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
.l-footer__logo-img {
  width: auto;
  height: 44px;
}
@media screen and (min-width: 1024px) {
  .l-footer__logo-img {
    height: 56px;
  }
}
.l-footer__name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #5C2F86;
  white-space: nowrap;
}
.l-footer__cols {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .l-footer__cols {
    flex-direction: row;
    align-items: flex-start;
    gap: 130px;
  }
}
.l-footer__address {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.875;
  color: #333333;
}
.l-footer__address p {
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .l-footer__address {
    flex-shrink: 0;
  }
}
.l-footer__menu {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: 30px;
  row-gap: 12px;
}
@media screen and (min-width: 1024px) {
  .l-footer__menu {
    column-gap: 40px;
  }
}
.l-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  white-space: nowrap;
}
.l-footer__link:hover {
  color: #4F359E;
}
.l-footer__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
}
@media screen and (min-width: 1024px) {
  .l-footer__actions {
    flex-shrink: 0;
  }
}
.l-footer__social {
  line-height: 1;
}
.l-footer__social .c-sns {
  gap: 16px;
}
.l-footer__social .c-sns__link img {
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .l-footer__social .c-sns {
    gap: 10px;
  }
  .l-footer__social .c-sns__link img {
    width: 30px;
    height: 30px;
  }
}
.l-footer__line {
  width: 100%;
  height: 0;
  border: 0;
  border-top: 1px solid #E1DEEA;
  margin: 0;
}
.l-footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.875;
  color: #333333;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .u-br-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u-br-sp-only {
    display: none;
  }
}

.u-br-pc {
  display: none;
}
@media screen and (min-width: 1024px) {
  .u-br-pc {
    display: inline;
  }
}

.tp-mv {
  position: relative;
  overflow: hidden;
}
.tp-mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.tp-mv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.tp-mv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 120px 20px 60px;
}
@media screen and (min-width: 1024px) {
  .tp-mv__inner {
    gap: 40px;
    padding: 160px 40px 100px;
  }
}
@media screen and (min-width: 1280px) {
  .tp-mv__inner {
    padding: 200px 100px 150px;
  }
}
@media (min-width: 1980px) {
  .tp-mv__inner {
    padding: 200px 350px 150px;
  }
}
.tp-mv__title {
  white-space: nowrap;
  font-size: 40px;
}
.tp-mv__title .is-1__lg {
  font-size: 50px;
}
@media screen and (min-width: 768px) {
  .tp-mv__title .u-br-sp {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .tp-mv__title {
    font-size: 70px;
  }
  .tp-mv__title .is-1__lg {
    font-size: 100px;
  }
}
.tp-mv__lead {
  max-width: 270px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .tp-mv__lead {
    max-width: 450px;
  }
}
@media screen and (min-width: 1024px) {
  .tp-mv__lead {
    max-width: 680px;
    font-size: 18px;
    line-height: 2.2;
  }
}
.tp-mv__buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 70%;
}
.tp-mv__buttons .c-button {
  padding-inline: 20px;
}
@media screen and (min-width: 1024px) {
  .tp-mv__buttons {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
  }
  .tp-mv__buttons .c-button {
    padding-inline: 50px;
  }
}
.tp-mv__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  width: 100%;
  max-width: 420px;
}
@media screen and (min-width: 1024px) {
  .tp-mv__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    max-width: none;
  }
}
.tp-mv__card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background-color: #F7F7FB;
  border-radius: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (min-width: 1024px) {
  .tp-mv__card {
    padding: 18px 20px;
    font-size: 16px;
    white-space: nowrap;
  }
}
.tp-mv__card img {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}

.tp-vision {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.tp-vision__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px 20px 0;
}
@media screen and (min-width: 1024px) {
  .tp-vision__body {
    align-items: center;
    max-width: 1280px;
    margin-inline: auto;
    padding: 100px 40px;
    text-align: center;
  }
}
.tp-vision__heading {
  white-space: nowrap;
  font-size: min(40px, 9vw);
}
@media screen and (min-width: 768px) {
  .tp-vision__heading {
    white-space: normal;
    font-size: 60px;
  }
}
.tp-vision__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
  color: #333333;
}
.tp-vision__text p + p {
  margin-top: 30px;
}
@media screen and (min-width: 1024px) {
  .tp-vision__text p + p {
    margin-top: 20px;
  }
}
.tp-vision__image {
  display: block;
  margin-top: 40px;
}
.tp-vision__image img {
  display: block;
  width: 100%;
  height: 258px;
  object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .tp-vision__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    margin-top: 0;
  }
  .tp-vision__image img {
    height: 100%;
  }
}

.tp-news {
  background-color: #F7F7FB;
}
.tp-news__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1280px;
  margin-inline: auto;
  padding: 60px 20px;
}
@media screen and (min-width: 1024px) {
  .tp-news__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
    padding: 60px 100px;
  }
}
@media screen and (min-width: 1280px) {
  .tp-news__inner {
    gap: 120px;
  }
}
.tp-news__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .tp-news__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex-shrink: 0;
    width: 200px;
  }
}
.tp-news__heading {
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .tp-news__heading {
    font-size: 36px;
  }
}
.tp-news__list {
  flex: 1;
  min-width: 0;
}
.tp-news__item {
  border-bottom: 1px solid #E1DEEA;
}
.tp-news__link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-block: 20px;
}
@media screen and (min-width: 1024px) {
  .tp-news__link {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding-block: 16px;
  }
}
.tp-news__link:hover {
  opacity: 1;
}
.tp-news__link:hover .tp-news__title {
  text-decoration: underline;
}
.tp-news__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}
.tp-news__date {
  min-width: 64px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #333333;
}
.tp-news__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  background-color: #ffffff;
  border: 1px solid #E1DEEA;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #4F359E;
  white-space: nowrap;
}
.tp-news__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
}

.tp-business {
  background-color: #ffffff;
}
.tp-business__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.tp-business__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 40px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .tp-business__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
.tp-business__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.tp-business__img {
  width: 100%;
  aspect-ratio: 62/41;
  border-radius: 10px;
  overflow: hidden;
}
.tp-business__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tp-business__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
}
@media screen and (min-width: 1024px) {
  .tp-business__title {
    font-size: 24px;
  }
}
.tp-business__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
}

.tp-advantage {
  background-color: #F7F7FB;
}
.tp-advantage__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.tp-advantage__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .tp-advantage__list {
    grid-template-columns: repeat(5, 1fr);
  }
}
.tp-advantage__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 20px 30px;
  background-color: #ffffff;
  border: 2px solid #E1DEEA;
  border-radius: 10px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .tp-advantage__card {
    gap: 19px;
    padding: 30px 20px;
  }
}
.tp-advantage__icon {
  width: 110px;
  height: 110px;
}
@media screen and (min-width: 1024px) {
  .tp-advantage__icon {
    width: 120px;
    height: 120px;
  }
}
.tp-advantage__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tp-advantage__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
}
@media screen and (min-width: 1024px) {
  .tp-advantage__text {
    font-size: 20px;
  }
}

.tp-works {
  background-color: #ffffff;
}
.tp-works__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.tp-works .c-sec-head .is-2 {
  font-size: min(40px, 8.5vw);
}
@media screen and (min-width: 768px) {
  .tp-works .c-sec-head .is-2 {
    font-size: 60px;
  }
}
.tp-works__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 40px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .tp-works__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
.tp-works__card {
  display: flex;
}
.tp-works__link {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #ffffff;
  border: 2px solid #E1DEEA;
  border-radius: 10px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .tp-works__link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.18);
  }
}
.tp-works__img {
  height: 140px;
}
@media screen and (min-width: 1024px) {
  .tp-works__img {
    height: 200px;
  }
}
.tp-works__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tp-works__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 15px;
}
@media screen and (min-width: 1024px) {
  .tp-works__text {
    padding: 20px;
  }
}
.tp-works__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
  color: #333333;
}
@media screen and (min-width: 1024px) {
  .tp-works__title {
    font-size: 20px;
  }
}
.tp-works__meta {
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #333333;
  white-space: nowrap;
}

.tp-banner {
  background-color: #F7F7FB;
}
.tp-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .tp-banner__inner {
    flex-direction: row;
    align-items: stretch;
  }
}
.tp-banner__item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 1024px) {
  .tp-banner__item {
    display: flex;
    flex: 1;
    min-width: 0;
  }
}
.tp-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tp-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tp-banner__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  min-height: 300px;
  padding: 40px 30px;
}
@media screen and (min-width: 1024px) {
  .tp-banner__body {
    padding: 40px;
  }
}
.tp-banner__heading {
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.4;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .tp-banner__heading .u-br-sp {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .tp-banner__heading {
    font-size: 32px;
  }
}
.tp-banner__text {
  width: 220px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.875;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .tp-banner__text {
    width: 400px;
  }
}
@media screen and (min-width: 1024px) {
  .tp-banner__text {
    width: 350px;
  }
}
.tp-banner__btn {
  margin-top: auto;
  width: 100%;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .tp-banner__btn {
    width: 60%;
  }
}
@media screen and (min-width: 1024px) {
  .tp-banner__btn {
    width: auto;
    padding-inline: 50px;
  }
}

.tp-contact {
  background-color: #ffffff;
}
.tp-contact__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.tp-contact .c-sec-head .is-2 {
  font-size: min(40px, 8.5vw);
}
@media screen and (min-width: 1024px) {
  .tp-contact .c-sec-head .is-2 {
    font-size: 60px;
  }
}
.tp-contact__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .tp-contact__list {
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .tp-contact__item {
    display: flex;
    flex: 1;
    min-width: 0;
  }
}
.tp-contact__card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 100px;
  padding: 20px;
  background-color: #ffffff;
  border: 2px solid #E1DEEA;
  border-radius: 10px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  color: #4F359E;
  transition: border-color 0.3s ease;
}
.tp-contact__card:not(.tp-contact__card--recruit):hover {
  border-color: #4F359E;
  opacity: 1;
}
.tp-contact__card--recruit {
  background-color: #4F359E;
  border-color: #4F359E;
  color: #ffffff;
  transition: opacity 0.3s ease;
}
.tp-contact__icon {
  flex-shrink: 0;
}
.tp-contact__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  color: currentColor;
  white-space: nowrap;
}
.tp-contact__tel {
  display: flex;
  flex-direction: column;
}
.tp-contact__hours {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  color: #333333;
  white-space: nowrap;
}
.tp-contact__num {
  font-family: "Arial", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  color: #4F359E;
  white-space: nowrap;
}

@keyframes tp-mv-fade-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes tp-mv-line-up {
  from {
    transform: translateY(120%);
  }
  to {
    transform: translateY(0);
  }
}
.tp-mv__line {
  display: block;
  overflow: hidden;
  padding-block: 0.14em;
  margin-block: -0.14em;
}

.tp-mv__line-in {
  display: block;
}

.js-scroll-fade .tp-mv__line-in {
  transform: translateY(120%);
  animation: tp-mv-line-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.js-scroll-fade .tp-mv__line:nth-of-type(1) .tp-mv__line-in {
  animation-delay: 0.35s;
}
.js-scroll-fade .tp-mv__line:nth-of-type(2) .tp-mv__line-in {
  animation-delay: 0.55s;
}
.js-scroll-fade .tp-mv__lead,
.js-scroll-fade .tp-mv__buttons,
.js-scroll-fade .tp-mv__card {
  opacity: 0;
  animation: tp-mv-fade-in 0.8s ease both;
}
.js-scroll-fade .tp-mv__lead {
  animation-delay: 0.85s;
}
.js-scroll-fade .tp-mv__buttons {
  animation-delay: 1s;
}
.js-scroll-fade .tp-mv__card:nth-child(1) {
  animation-delay: 1.15s;
}
.js-scroll-fade .tp-mv__card:nth-child(2) {
  animation-delay: 1.25s;
}
.js-scroll-fade .tp-mv__card:nth-child(3) {
  animation-delay: 1.35s;
}
.js-scroll-fade .tp-mv__card:nth-child(4) {
  animation-delay: 1.45s;
}

@media (prefers-reduced-motion: reduce) {
  .js-scroll-fade .tp-mv__line-in,
  .js-scroll-fade .tp-mv__lead,
  .js-scroll-fade .tp-mv__buttons,
  .js-scroll-fade .tp-mv__card {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.bs-mv {
  position: relative;
  overflow: hidden;
}
.bs-mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.bs-mv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bs-mv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 120px 20px 40px;
}
@media screen and (min-width: 768px) {
  .bs-mv__inner {
    padding: 120px 20px 80px;
  }
}
@media screen and (min-width: 1024px) {
  .bs-mv__inner {
    padding: 130px 40px 80px;
  }
}
@media screen and (min-width: 1280px) {
  .bs-mv__inner {
    padding: 140px 100px 100px;
  }
}
@media screen and (min-width: 1920px) {
  .bs-mv__inner {
    padding: 140px 350px 100px;
  }
}
.bs-mv__head {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.bs-mv__title {
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1;
  color: #333333;
}
@media screen and (min-width: 1024px) {
  .bs-mv__title {
    font-size: 70px;
  }
}
.bs-mv__title-accent {
  color: #4F359E;
}
.bs-mv__lead {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bs-mv__subtitle {
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.875;
  color: #333333;
  text-shadow: 0 0 10px #ffffff;
}
@media screen and (min-width: 1024px) {
  .bs-mv__subtitle {
    font-size: 36px;
  }
}
.bs-mv__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  color: #333333;
  text-shadow: 0 0 10px #ffffff;
}
@media screen and (min-width: 768px) {
  .bs-mv__desc {
    max-width: 400px;
  }
}
@media screen and (min-width: 1024px) {
  .bs-mv__desc {
    max-width: 670px;
  }
}

.bs-mv-image {
  display: block;
}
@media screen and (min-width: 1281px) {
  .bs-mv-image {
    display: none;
  }
}
.bs-mv-image img {
  display: block;
  width: 100%;
  height: auto;
}

.bs-gap {
  display: none;
}
@media screen and (min-width: 1280px) {
  .bs-gap {
    display: block;
    height: 100px;
    background-color: #F7F7FB;
  }
}

.bs-core {
  background-color: #ffffff;
}
@media screen and (min-width: 1280px) {
  .bs-core {
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
}
.bs-core__side {
  display: none;
}
@media screen and (min-width: 1280px) {
  .bs-core__side {
    position: relative;
    display: block;
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }
  .bs-core__side img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.bs-core__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 80px 20px;
}
@media screen and (min-width: 1024px) {
  .bs-core__body {
    padding: 100px 40px;
  }
}
@media screen and (min-width: 1280px) {
  .bs-core__body {
    flex: 0 0 1280px;
    width: 1280px;
    max-width: 1280px;
    padding: 200px;
  }
}
.bs-core__head {
  width: 100%;
}
.bs-core__intro {
  margin-top: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  color: #333333;
}
.bs-core__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.bs-core__card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: #F7F7FB;
  border-radius: 10px;
}
.bs-core__icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
}
@media screen and (min-width: 1024px) {
  .bs-core__icon {
    width: 120px;
    height: 120px;
  }
}
.bs-core__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bs-core__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.bs-core__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: #333333;
}
.bs-core__card-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
}

.bs-support {
  background-color: #F7F7FB;
}
.bs-support__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1280px;
  margin-inline: auto;
  padding: 80px 20px;
}
@media screen and (min-width: 1024px) {
  .bs-support__inner {
    padding: 100px 40px;
  }
}
@media screen and (min-width: 1280px) {
  .bs-support__inner {
    padding: 100px;
  }
}
.bs-support__note {
  width: 100%;
  max-width: 800px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  color: #333333;
  text-align: left;
}
.bs-support__list {
  width: 100%;
  max-width: 800px;
  padding-left: 24px;
  list-style: disc;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  color: #333333;
}
.bs-support__icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .bs-support__icons {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1280px) {
  .bs-support__icons {
    display: flex;
    gap: 20px;
  }
}
.bs-support__icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 10px;
  background-color: #ffffff;
  border-radius: 10px;
}
@media screen and (min-width: 1280px) {
  .bs-support__icon-card {
    flex: 1;
    min-width: 0;
  }
}
.bs-support__icon {
  width: 100%;
  max-width: 100px;
  aspect-ratio: 1/1;
}
.bs-support__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bs-support__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
  text-align: center;
}

.bs-eligible {
  background-color: #ffffff;
}
.bs-eligible__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1280px;
  margin-inline: auto;
  padding: 80px 20px;
}
@media screen and (min-width: 1024px) {
  .bs-eligible__inner {
    padding: 100px 40px;
  }
}
@media screen and (min-width: 1280px) {
  .bs-eligible__inner {
    padding: 100px;
  }
}
.bs-eligible__note {
  width: 100%;
  max-width: 800px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.875;
  color: #333333;
}
.bs-eligible__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .bs-eligible__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.bs-eligible__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.bs-eligible__img {
  width: 100%;
  aspect-ratio: 62/41;
  border-radius: 10px;
  overflow: hidden;
}
.bs-eligible__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bs-eligible__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .bs-eligible__title {
    font-size: 24px;
  }
}
.bs-eligible__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
}

.bs-area {
  background-color: #F7F7FB;
}
.bs-area__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1280px;
  margin-inline: auto;
  padding: 80px 20px;
}
@media screen and (min-width: 1024px) {
  .bs-area__inner {
    padding: 100px 40px;
  }
}
@media screen and (min-width: 1280px) {
  .bs-area__inner {
    padding: 100px;
  }
}
.bs-area__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 1280px) {
  .bs-area__content {
    flex-direction: row;
    align-items: stretch;
  }
}
.bs-area__map {
  position: relative;
  height: 220px;
}
@media screen and (min-width: 768px) {
  .bs-area__map {
    height: 337px;
  }
}
@media screen and (min-width: 1280px) {
  .bs-area__map {
    flex: 1;
    height: auto;
  }
}
.bs-area__map img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bs-area__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .bs-area__card {
    padding: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .bs-area__card {
    flex: 1;
  }
}
.bs-area__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.67;
  color: #333333;
  text-align: left;
}
.bs-area__text strong {
  font-weight: 700;
  color: #4F359E;
}

.bs-flow {
  background-color: #ffffff;
}
.bs-flow__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1280px;
  margin-inline: auto;
  padding: 80px 20px;
}
@media screen and (min-width: 1024px) {
  .bs-flow__inner {
    padding: 100px 40px;
  }
}
@media screen and (min-width: 1280px) {
  .bs-flow__inner {
    padding: 100px;
  }
}
.bs-flow__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 800px;
}
.bs-flow__step {
  position: relative;
  padding-left: 30px;
}
.bs-flow__num {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  border-radius: 999px;
  background-color: #4F359E;
  font-family: "Arial", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
}
.bs-flow__card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 10px 20px 40px;
  background-color: #F7F7FB;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .bs-flow__card {
    padding: 10px 40px;
  }
}
.bs-flow__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bs-flow__step-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #4F359E;
}
.bs-flow__step-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
}
.bs-flow__icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
}
.bs-flow__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ad-mv {
  position: relative;
  overflow: hidden;
}
.ad-mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.ad-mv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ad-mv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 120px 20px 80px;
}
@media screen and (min-width: 1024px) {
  .ad-mv__inner {
    padding: 130px 40px 80px;
  }
}
@media screen and (min-width: 1280px) {
  .ad-mv__inner {
    padding: 140px 100px 100px;
  }
}
@media screen and (min-width: 1920px) {
  .ad-mv__inner {
    padding: 140px 350px 100px;
  }
}
.ad-mv__head {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.ad-mv__title {
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.2;
  color: #333333;
}
@media screen and (min-width: 1024px) {
  .ad-mv__title {
    font-size: 70px;
    line-height: 1;
  }
}
.ad-mv__title-accent {
  color: #4F359E;
}
.ad-mv__lead {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .ad-mv__lead {
    max-width: 803px;
  }
}
.ad-mv__subtitle {
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.875;
  color: #333333;
  text-shadow: 0 0 10px #ffffff;
}
@media screen and (min-width: 1024px) {
  .ad-mv__subtitle {
    font-size: 36px;
  }
}
.ad-mv__desc {
  max-width: 230px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  color: #333333;
  text-shadow: 0 0 10px #ffffff;
}
@media screen and (min-width: 768px) {
  .ad-mv__desc {
    max-width: 400px;
  }
}
@media screen and (min-width: 1024px) {
  .ad-mv__desc {
    max-width: 600px;
  }
}

.ad-point {
  background-color: #F7F7FB;
  overflow: hidden;
}
@media screen and (min-width: 1280px) {
  .ad-point {
    padding-top: 100px;
  }
}
.ad-point__inner {
  background-color: #ffffff;
  max-width: 1280px;
  margin-inline: auto;
  padding: 80px 20px;
}
@media screen and (min-width: 768px) {
  .ad-point__inner {
    padding: 80px 40px;
  }
}
@media screen and (min-width: 1024px) {
  .ad-point__inner {
    padding: 100px 40px;
  }
}
@media screen and (min-width: 1280px) {
  .ad-point__inner {
    padding: 100px 90px;
    margin-bottom: 100px;
  }
}
.ad-point__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .ad-point__list {
    gap: 80px;
  }
}
@media screen and (min-width: 1280px) {
  .ad-point__list {
    gap: 100px;
  }
}
.ad-point__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .ad-point__item {
    display: grid;
    grid-template-columns: 4fr 7fr;
    column-gap: 40px;
    align-items: center;
  }
}
@media screen and (min-width: 1280px) {
  .ad-point__item {
    grid-template-columns: minmax(0, 1fr) 600px;
    column-gap: 70px;
    align-items: start;
  }
}
.ad-point__body {
  display: grid;
  grid-template-columns: 53px 1fr;
  row-gap: 20px;
}
@media screen and (min-width: 768px) {
  .ad-point__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    grid-column: 2;
    grid-row: 1;
  }
}
.ad-point__num {
  grid-column: 1;
  grid-row: 1;
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.4;
  color: #4F359E;
}
@media screen and (min-width: 768px) {
  .ad-point__num {
    font-size: 40px;
  }
}
.ad-point__title {
  grid-column: 2;
  grid-row: 1;
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.4;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .ad-point__title {
    font-size: 40px;
  }
}
.ad-point__desc {
  grid-column: 2;
  grid-row: 2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  color: #333333;
}
.ad-point__figure {
  margin-left: 53px;
  aspect-ratio: 694/440;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .ad-point__figure {
    margin-left: 0;
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 1/1;
    align-self: center;
  }
}
@media screen and (min-width: 1280px) {
  .ad-point__figure {
    justify-self: end;
    align-self: start;
  }
}
.ad-point__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .ad-point__item:nth-child(even) {
    grid-template-columns: 7fr 4fr;
  }
  .ad-point__item:nth-child(even) .ad-point__body {
    grid-column: 1;
  }
  .ad-point__item:nth-child(even) .ad-point__figure {
    grid-column: 2;
  }
}
@media screen and (min-width: 1280px) {
  .ad-point__item:nth-child(even) {
    grid-template-columns: 600px minmax(0, 1fr);
  }
  .ad-point__item:nth-child(even) .ad-point__figure {
    justify-self: start;
  }
}
@media screen and (min-width: 1280px) {
  .ad-point__item:nth-child(1) .ad-point__figure {
    width: 630px;
    aspect-ratio: 630/376;
  }
  .ad-point__item:nth-child(2) .ad-point__figure {
    width: 420px;
    aspect-ratio: 420/456;
  }
  .ad-point__item:nth-child(3) .ad-point__figure {
    width: 420px;
    aspect-ratio: 420/430;
  }
  .ad-point__item:nth-child(4) .ad-point__figure {
    width: 630px;
    aspect-ratio: 630/376;
  }
  .ad-point__item:nth-child(5) .ad-point__figure {
    width: 630px;
    aspect-ratio: 630/436;
  }
  .ad-point__item:nth-child(6) .ad-point__figure {
    width: 420px;
    aspect-ratio: 420/456;
  }
}

.ad-mission {
  background-color: #ffffff;
}
@media screen and (max-width: calc(768px - 1px)) {
  .ad-mission .c-sec-head .is-2 {
    font-size: 36px;
  }
}
.ad-mission__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1280px;
  margin-inline: auto;
  padding: 80px 20px;
}
@media screen and (min-width: 1024px) {
  .ad-mission__inner {
    padding: 100px 40px;
  }
}
@media screen and (min-width: 1280px) {
  .ad-mission__inner {
    padding: 100px;
  }
}
.ad-mission__box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 800px;
  padding: 50px 10px;
  background-color: #F7F7FB;
  text-align: center;
}
.ad-mission__corner {
  position: absolute;
  width: 51px;
  height: 51px;
  background: url(../img/advantage/corner.svg) no-repeat center/contain;
}
.ad-mission__corner--tl {
  top: 10px;
  left: 10px;
}
.ad-mission__corner--tr {
  top: 10px;
  right: 10px;
  transform: rotate(90deg);
}
.ad-mission__corner--br {
  bottom: 10px;
  right: 10px;
  transform: rotate(180deg);
}
.ad-mission__corner--bl {
  bottom: 10px;
  left: 10px;
  transform: rotate(270deg);
}
.ad-mission__phrase {
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.4;
  color: #4F359E;
}
@media screen and (min-width: 1280px) {
  .ad-mission__phrase {
    font-size: 70px;
  }
}
.ad-mission__sub {
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #333333;
}
@media screen and (max-width: calc(768px - 1px)) {
  .ad-mission__sub {
    font-size: 16px;
  }
}
.ad-mission__texts {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  color: #333333;
  text-align: center;
}

.wk-mv {
  position: relative;
  overflow: hidden;
}
.wk-mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.wk-mv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.wk-mv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 120px 20px 60px;
}
@media screen and (min-width: 1024px) {
  .wk-mv__inner {
    padding: 130px 40px 80px;
  }
}
@media screen and (min-width: 1280px) {
  .wk-mv__inner {
    padding: 140px 100px 100px;
  }
}
@media screen and (min-width: 1920px) {
  .wk-mv__inner {
    padding: 140px 350px 100px;
  }
}
.wk-mv__title {
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1;
  color: #333333;
}
@media screen and (min-width: 1024px) {
  .wk-mv__title {
    font-size: 70px;
  }
}
.wk-mv__title-accent {
  color: #4F359E;
}

.wk-filter {
  background-color: #F7F7FB;
}
.wk-filter__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 30px 20px;
}
@media screen and (min-width: 1024px) {
  .wk-filter__inner {
    padding: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .wk-filter__inner {
    padding: 40px 100px;
  }
}
@media screen and (min-width: 1920px) {
  .wk-filter__inner {
    padding: 40px 350px;
  }
}
.wk-filter__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 2px solid #E1DEEA;
  border-radius: 999px;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: #4F359E;
  white-space: nowrap;
  filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.15));
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .wk-filter__tab {
    padding: 20px 50px;
  }
}
.wk-filter__tab:hover {
  border-color: #4F359E;
}
.wk-filter__tab:not(.is-active):hover {
  opacity: 1;
}
.wk-filter__tab.is-active {
  background-color: #4F359E;
  border-color: #4F359E;
  color: #ffffff;
}

.wk-list {
  background-color: #ffffff;
}
.wk-list__inner {
  padding: 60px 20px 80px;
}
@media screen and (min-width: 1024px) {
  .wk-list__inner {
    padding: 60px 40px 100px;
  }
}
@media screen and (min-width: 1280px) {
  .wk-list__inner {
    padding: 60px 100px 100px;
  }
}
@media screen and (min-width: 1920px) {
  .wk-list__inner {
    padding: 60px 350px 100px;
  }
}
.wk-list__head {
  margin-bottom: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: #333333;
}
@media screen and (min-width: 1024px) {
  .wk-list__head {
    font-size: 36px;
  }
}
.wk-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 20px;
  row-gap: 40px;
}
@media screen and (min-width: 768px) {
  .wk-list__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .wk-list__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1280px) {
  .wk-list__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.wk-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 2px solid #E1DEEA;
  border-radius: 10px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  color: #333333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .wk-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.18);
  }
}
.wk-card__img {
  height: 200px;
}
.wk-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wk-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px;
}
.wk-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}
.wk-card__meta {
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  white-space: nowrap;
}

.wk-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .wk-pager {
    gap: 10px;
    margin-top: 60px;
  }
}
.wk-pager__item, .wk-pager__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #E1DEEA;
  border-radius: 999px;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #4F359E;
  filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.15));
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .wk-pager__item, .wk-pager__arrow {
    width: 60px;
    height: 60px;
  }
}
.wk-pager__item:hover, .wk-pager__arrow:hover {
  border-color: #4F359E;
  opacity: 1;
}
.wk-pager__item.is-active {
  background-color: #4F359E;
  border-color: #4F359E;
  color: #ffffff;
}
.wk-pager__arrow svg {
  width: 10px;
  height: 16px;
}

.wk-category {
  background-color: #ffffff;
}
.wd-back + .wk-category {
  margin-top: 100px;
}
.wk-category__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 0 20px 80px;
}
@media screen and (min-width: 1024px) {
  .wk-category__inner {
    padding: 0 40px 100px;
  }
}
@media screen and (min-width: 1280px) {
  .wk-category__inner {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    padding: 0 100px 100px;
  }
}
@media screen and (min-width: 1920px) {
  .wk-category__inner {
    padding: 0 350px 100px;
  }
}
.wk-category__group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wk-category__head {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 2px solid #4F359E;
  border-radius: 999px;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: #4F359E;
  text-align: center;
  filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.15));
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.wk-category__head:hover {
  background-color: #F7F7FB;
  border-color: #E1DEEA;
  color: rgba(79, 53, 158, 0.7);
}
.wk-category__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wk-category__link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.875;
  color: #333333;
}
@media screen and (min-width: 1024px) {
  .wk-category__link:hover {
    color: #4F359E;
  }
}

.wd-head {
  background-color: #F7F7FB;
  padding: 90px 20px 10px;
}
@media screen and (min-width: 1024px) {
  .wd-head {
    padding: 100px 40px 20px;
  }
}
@media screen and (min-width: 1280px) {
  .wd-head {
    padding: 100px 100px 20px;
  }
}
.wd-head__inner {
  max-width: 1536px;
  margin-inline: auto;
}

.wd-article {
  background-color: #ffffff;
  padding: 40px 20px 60px;
}
@media screen and (min-width: 1024px) {
  .wd-article {
    padding: 50px 40px 80px;
  }
}
.wd-article__inner {
  max-width: 800px;
  margin-inline: auto;
}
.wd-article__date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
}
.wd-article__title {
  margin-top: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.4;
  color: #333333;
}
@media screen and (min-width: 1024px) {
  .wd-article__title {
    font-size: 40px;
  }
}
.wd-article__tags {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
}
.wd-article__tag-sep {
  width: 1px;
  height: 16px;
  background-color: #E1DEEA;
}
.wd-article__figure {
  margin-top: 30px;
  aspect-ratio: 8/5;
  border-radius: 10px;
  overflow: hidden;
}
.wd-article__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wd-article__body {
  margin-top: 40px;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
}
.wd-article__body > :first-child {
  margin-top: 0;
}
.wd-article__body h2 {
  margin: 60px 0 20px;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4;
}
.wd-article__body h3 {
  margin: 60px 0 20px;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.4;
}
.wd-article__body h4 {
  margin: 60px 0 20px;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
}
.wd-article__body h5 {
  margin: 60px 0 20px;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
}
.wd-article__body h6 {
  margin: 60px 0 20px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
}
.wd-article__body p {
  margin: 20px 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
}

.wd-spec {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
  border-top: 1px solid #E1DEEA;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}
.wd-spec th,
.wd-spec td {
  padding: 20px 0;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
  border-bottom: 1px solid #E1DEEA;
}
.wd-spec th {
  width: 110px;
  padding-right: 20px;
  font-weight: 700;
  color: #4F359E;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .wd-spec th {
    width: 190px;
  }
}
.wd-spec td {
  font-weight: 500;
  color: #333333;
}

.wd-back {
  background-color: #F7F7FB;
  padding: 40px 20px;
}
@media screen and (min-width: 1024px) {
  .wd-back {
    padding: 40px;
  }
}
.wd-back__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 1280px;
  margin-inline: auto;
}
.wd-back__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 18px 25px;
  border: 2px solid #E1DEEA;
  border-radius: 999px;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #4F359E;
  filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.15));
  transition: border-color 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .wd-back__link {
    min-width: 228px;
    padding: 20px 25px;
  }
}
.wd-back__link:hover {
  border-color: #4F359E;
  opacity: 1;
}
.wd-back__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border: 2px solid #E1DEEA;
  border-radius: 999px;
  background-color: #ffffff;
  color: #4F359E;
  filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.15));
  transition: border-color 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .wd-back__arrow {
    width: 60px;
    height: 60px;
  }
}
.wd-back__arrow:hover {
  border-color: #4F359E;
  opacity: 1;
}
.wd-back__arrow svg {
  width: 10px;
  height: 16px;
}

.js-scroll-fade .nw-mv::before {
  opacity: 0;
  animation: mv-bg-in 1.2s ease both;
}

@media (prefers-reduced-motion: reduce) {
  .js-scroll-fade .nw-mv::before {
    opacity: 1;
    animation: none;
  }
}
.nw-mv {
  position: relative;
  padding: 120px 20px 60px;
}
.nw-mv::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #F7F7FB;
}
@media screen and (min-width: 1024px) {
  .nw-mv {
    padding: 130px 40px 70px;
  }
}
@media screen and (min-width: 1280px) {
  .nw-mv {
    padding: 140px 100px 70px;
  }
}
@media screen and (min-width: 1920px) {
  .nw-mv {
    padding: 140px 350px 70px;
  }
}
.nw-mv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.nw-mv__title {
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1;
  color: #333333;
}
@media screen and (min-width: 1024px) {
  .nw-mv__title {
    font-size: 70px;
  }
}
.nw-mv__title-accent {
  color: #4F359E;
}

.nw-content {
  background-color: #ffffff;
}
.nw-content__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px 20px 80px;
}
@media screen and (min-width: 1024px) {
  .nw-content__inner {
    padding: 40px 40px 100px;
  }
}
@media screen and (min-width: 1280px) {
  .nw-content__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 100px 100px;
  }
}
@media screen and (min-width: 1920px) {
  .nw-content__inner {
    padding: 40px 350px 100px;
  }
}
@media screen and (min-width: 1280px) {
  .nw-content__main {
    flex: 1;
    min-width: 0;
  }
}
.nw-content__side {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1280px) {
  .nw-content__side {
    flex: 0 0 305px;
  }
}

.nw-list__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid #E1DEEA;
  color: #333333;
}
.nw-list__item:first-child {
  border-top: 1px solid #E1DEEA;
}
@media screen and (min-width: 1024px) {
  .nw-list__item {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .nw-list__item:hover .nw-list__title {
    color: #4F359E;
  }
}
.nw-list__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.nw-list__date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
}
.nw-list__tag {
  padding: 5px 10px;
  border: 1px solid #E1DEEA;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #4F359E;
  white-space: nowrap;
}
.nw-list__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  transition: color 0.3s ease;
}

.nw-side {
  background-color: #F7F7FB;
  border-top: 2px solid #4F359E;
  padding: 40px 30px;
}
.nw-side__title {
  margin-bottom: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #4F359E;
  text-align: left;
}
.nw-side__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 24px;
  list-style: disc;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
}
.nw-side__list li::marker {
  color: #4F359E;
}
.nw-side__list a {
  color: #333333;
}
@media screen and (min-width: 1024px) {
  .nw-side__list a:hover {
    color: #4F359E;
  }
}

.co-mv {
  position: relative;
  overflow: hidden;
}
.co-mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.co-mv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.co-mv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 120px 20px 60px;
}
@media screen and (min-width: 1024px) {
  .co-mv__inner {
    padding: 130px 40px 80px;
  }
}
@media screen and (min-width: 1280px) {
  .co-mv__inner {
    padding: 140px 100px 100px;
  }
}
@media screen and (min-width: 1920px) {
  .co-mv__inner {
    padding: 140px 350px 100px;
  }
}
.co-mv__title {
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1;
  color: #333333;
}
@media screen and (min-width: 1024px) {
  .co-mv__title {
    font-size: 70px;
  }
}
.co-mv__title-accent {
  color: #4F359E;
}

.co-message {
  background-color: #F7F7FB;
}
.co-message__card {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 40px 20px;
}
@media screen and (min-width: 768px) {
  .co-message__card {
    padding: 60px 40px;
  }
}
@media screen and (min-width: 1280px) {
  .co-message__card {
    padding: 100px;
  }
}
.co-message__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .co-message__body {
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .co-message__body {
    gap: 60px;
  }
}
.co-message__photo {
  border-radius: 10px;
  overflow: hidden;
  max-width: 280px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .co-message__photo {
    flex-shrink: 0;
    width: 200px;
    max-width: none;
    margin-inline: 0;
  }
}
@media screen and (min-width: 1024px) {
  .co-message__photo {
    width: 420px;
  }
}
.co-message__photo img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .co-message__text {
    flex: 1;
    min-width: 0;
  }
}
.co-message__lead {
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  color: #4F359E;
  line-height: 1.5;
  font-size: 28px;
}
@media screen and (min-width: 1024px) {
  .co-message__lead {
    font-size: 40px;
  }
}
.co-message__desc {
  margin-top: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  color: #333333;
}
@media screen and (min-width: 1024px) {
  .co-message__desc {
    margin-top: 40px;
  }
}
.co-message__desc p + p {
  margin-top: 20px;
}
.co-message__sign {
  margin-top: 30px;
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  font-size: 20px;
  color: #333333;
  text-align: right;
}
@media screen and (min-width: 1024px) {
  .co-message__sign {
    font-size: 24px;
  }
}

.co-profile__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.co-profile__table {
  width: 100%;
  max-width: 800px;
  border-top: 1px solid #E1DEEA;
}
.co-profile__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 0;
  border-bottom: 1px solid #E1DEEA;
}
@media screen and (min-width: 1024px) {
  .co-profile__row {
    flex-direction: row;
    gap: 40px;
    padding: 22px 0;
  }
}
.co-profile__label {
  flex-shrink: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  color: #4F359E;
}
@media screen and (min-width: 1024px) {
  .co-profile__label {
    width: 150px;
  }
}
.co-profile__value {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
}
@media screen and (min-width: 1024px) {
  .co-profile__value {
    flex: 1;
    min-width: 0;
  }
}
.co-profile__link {
  color: #4F359E;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-all;
  transition: opacity 0.3s ease;
}
.co-profile__link:hover {
  opacity: 0.7;
}

.co-history {
  background-color: #F7F7FB;
}
.co-history__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.co-history__list {
  width: 100%;
  max-width: 800px;
  list-style: none;
}
.co-history__item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 40px;
}
.co-history__item::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 6px;
  bottom: 0;
  width: 2px;
  background-color: #E1DEEA;
}
.co-history__item:last-child {
  padding-bottom: 0;
}
.co-history__item:last-child::before {
  display: none;
}
.co-history__dot {
  position: absolute;
  left: 0;
  top: 4px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 5px solid #4F359E;
  box-sizing: border-box;
  z-index: 1;
}
.co-history__year {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  color: #4F359E;
}
.co-history__text {
  margin-top: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
}

.co-access__inner {
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: center;
}
.co-access__body {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 1024px) {
  .co-access__body {
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
  }
}
.co-access__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 1024px) {
  .co-access__info {
    flex: 1;
    min-width: 0;
  }
}
.co-access__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  color: #4F359E;
}
.co-access__address {
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  color: #333333;
}
.co-access__stations {
  margin-top: 10px;
  padding-left: 24px;
  list-style: disc;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  color: #333333;
}
.co-access__stations li + li {
  margin-top: 20px;
}
.co-access__map {
  position: relative;
  background-color: #E1DEEA;
  border-radius: 10px;
  overflow: hidden;
  min-height: 260px;
}
@media screen and (min-width: 1024px) {
  .co-access__map {
    flex: 1;
    min-width: 0;
    min-height: 424px;
  }
}
.co-access__map-frame {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.rc-btn--line {
  background-color: #06c755;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.rc-btn--line:hover {
  background-color: rgb(2.0017216643%, 66.3904351985%, 28.3577235772%);
  border-color: #ffffff;
  color: #ffffff;
  opacity: 1;
}
.rc-btn__line-icon {
  flex-shrink: 0;
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.rc-mv {
  position: relative;
  overflow: hidden;
}
.rc-mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.rc-mv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.rc-mv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 120px 20px 60px;
}
@media screen and (min-width: 1024px) {
  .rc-mv__inner {
    padding: 130px 40px 80px;
  }
}
@media screen and (min-width: 1280px) {
  .rc-mv__inner {
    padding: 140px 100px 100px;
  }
}
@media screen and (min-width: 1920px) {
  .rc-mv__inner {
    padding: 140px 350px 100px;
  }
}
.rc-mv__title {
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1;
  color: #333333;
  margin-top: 30px;
}
@media screen and (min-width: 1024px) {
  .rc-mv__title {
    font-size: 70px;
    margin-top: 35px;
  }
}
.rc-mv__title-accent {
  color: #4F359E;
}
.rc-mv__lead {
  width: 240px;
  max-width: 100%;
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .rc-mv__lead {
    width: auto;
    max-width: none;
  }
}
@media screen and (min-width: 1024px) {
  .rc-mv__lead {
    line-height: 45px;
  }
}
.rc-mv__desc {
  width: 230px;
  max-width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  color: #333333;
  text-shadow: 0 0 10px #ffffff;
}
@media screen and (min-width: 768px) {
  .rc-mv__desc {
    width: auto;
    max-width: none;
  }
}
.rc-mv__buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .rc-mv__buttons {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
    gap: 20px;
  }
}

.rc-point {
  background-color: #4F359E;
  background-image: url("../img/recruit/bg-purple-sp.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .rc-point {
    background-image: url("../img/recruit/bg-purple.svg");
  }
}
.rc-point {
  border-top: 2px solid #ffffff;
}
.rc-point__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1280px;
  margin-inline: auto;
  padding: 80px 20px;
}
@media screen and (min-width: 768px) {
  .rc-point__inner {
    padding: 80px 40px;
  }
}
@media screen and (min-width: 1024px) {
  .rc-point__inner {
    padding: 100px 40px;
  }
}
@media screen and (min-width: 1280px) {
  .rc-point__inner {
    padding: 100px 100px;
  }
}
.rc-point__head .c-sec-head__en {
  color: #E1DEEA;
}
.rc-point__title {
  color: #ffffff;
}
.rc-point__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .rc-point__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1280px) {
  .rc-point__list {
    grid-template-columns: repeat(5, 1fr);
  }
}
.rc-point__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  background-color: #ffffff;
  border: 2px solid #E1DEEA;
  border-radius: 10px;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .rc-point__item {
    flex-direction: column;
    align-items: center;
    gap: 19px;
    padding: 30px 20px;
  }
}
.rc-point__icon {
  flex-shrink: 0;
}
.rc-point__icon img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .rc-point__icon img {
    width: 100px;
    height: 100px;
  }
}
@media screen and (min-width: 1280px) {
  .rc-point__icon img {
    width: 120px;
    height: 120px;
  }
}
.rc-point__body {
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .rc-point__body {
    width: 100%;
  }
}
.rc-point__item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .rc-point__item-title {
    text-align: center;
  }
}
.rc-point__item-desc {
  margin-top: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .rc-point__item-desc {
    margin-top: 12px;
  }
}

.rc-learn {
  background-color: #F7F7FB;
  background-image: url("../img/recruit/bg-white-sp.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .rc-learn {
    background-image: url("../img/recruit/bg-white.svg");
  }
}

.rc-ojt {
  background-color: transparent;
}
@media screen and (min-width: 1280px) {
  .rc-ojt {
    padding-top: 100px;
  }
}
.rc-ojt__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  max-width: 1280px;
  margin-inline: auto;
  padding: 80px 20px;
}
@media screen and (min-width: 768px) {
  .rc-ojt__inner {
    padding: 80px 40px;
  }
}
@media screen and (min-width: 1024px) {
  .rc-ojt__inner {
    padding: 100px 40px;
  }
}
@media screen and (min-width: 1280px) {
  .rc-ojt__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 70px;
    padding: 100px 100px 100px 0;
  }
}
.rc-ojt__figure {
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 1280px) {
  .rc-ojt__figure {
    flex-shrink: 0;
    width: 630px;
    margin-left: -120px;
    aspect-ratio: 630/376;
  }
}
.rc-ojt__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (min-width: 1280px) {
  .rc-ojt__figure img {
    height: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .rc-ojt__text {
    flex: 0 0 600px;
    max-width: 600px;
  }
}
.rc-ojt__title {
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.4;
  color: #4F359E;
}
@media screen and (min-width: 1024px) {
  .rc-ojt__title {
    font-size: 40px;
  }
}
.rc-ojt__sub {
  margin-top: 12px;
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  color: #333333;
}
.rc-ojt__desc {
  margin-top: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  color: #333333;
}
.rc-ojt__desc p + p {
  margin-top: 20px;
}

.rc-site {
  background-color: transparent;
}
.rc-site__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding: 80px 20px;
}
@media screen and (min-width: 768px) {
  .rc-site__inner {
    padding: 80px 40px;
  }
}
@media screen and (min-width: 1024px) {
  .rc-site__inner {
    padding: 100px 40px;
  }
}
.rc-site__card {
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  padding: 40px 30px;
}
@media screen and (min-width: 768px) {
  .rc-site__card {
    padding: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .rc-site__card {
    min-height: 414px;
    padding: 60px;
  }
}
.rc-site__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
}
.rc-site__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.rc-site__label {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 20px;
  font-family: "Arial", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.6px;
  line-height: 1;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .rc-site__label {
    top: 20px;
    right: 24px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .rc-site__label {
    top: 24px;
    right: auto;
    left: 24px;
    writing-mode: vertical-rl;
    letter-spacing: 3.2px;
  }
}
@media screen and (min-width: 1280px) {
  .rc-site__main {
    max-width: 580px;
    margin-left: 60px;
  }
}
.rc-site__title {
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.4;
  color: #4F359E;
}
@media screen and (min-width: 1024px) {
  .rc-site__title {
    font-size: 40px;
  }
}
.rc-site__sub {
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
}
@media screen and (min-width: 1024px) {
  .rc-site__sub {
    font-size: 18px;
  }
}
.rc-site__list {
  display: grid;
  grid-template-columns: max-content;
  width: fit-content;
  gap: 0 20px;
  margin-top: 20px;
  padding: 16px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.85);
  list-style: none;
}
@media screen and (min-width: 768px) {
  .rc-site__list {
    grid-template-columns: repeat(2, max-content);
  }
}
@media screen and (min-width: 1280px) {
  .rc-site__list {
    position: absolute;
    z-index: 2;
    top: 52px;
    right: 0;
    width: 206px;
    margin-top: 0;
    grid-template-columns: 1fr;
    gap: 10px 20px;
    padding: 40px 20px;
    border-radius: 10px 0 0 10px;
    background-color: #ffffff;
  }
}
.rc-site__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  color: #333333;
  white-space: nowrap;
}
.rc-site__item img {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.rc-site__btn {
  margin-top: 24px;
}
@media screen and (min-width: 1280px) {
  .rc-site__btn {
    margin-top: 40px;
    padding: 26px 60px;
    font-size: 20px;
  }
}

.rc-consult {
  background-color: #4F359E;
  background-image: url("../img/recruit/bg-purple-sp.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .rc-consult {
    background-image: url("../img/recruit/bg-purple.svg");
  }
}
.rc-consult__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1280px;
  margin-inline: auto;
  padding: 80px 20px;
}
@media screen and (min-width: 768px) {
  .rc-consult__inner {
    padding: 80px 40px;
  }
}
@media screen and (min-width: 1024px) {
  .rc-consult__inner {
    padding: 100px 40px;
  }
}
@media screen and (min-width: 1280px) {
  .rc-consult__inner {
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
  }
}
.rc-consult__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  padding: 40px 20px;
}
@media screen and (min-width: 768px) {
  .rc-consult__card {
    padding: 50px 40px;
  }
}
@media screen and (min-width: 1280px) {
  .rc-consult__card {
    flex: 1;
    min-width: 0;
  }
}
.rc-consult__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .rc-consult__head {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
.rc-consult__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  color: #ffffff;
}
.rc-consult__icon--line img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.rc-consult__icon--mail {
  background-color: #4F359E;
}
.rc-consult__title {
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
  color: #333333;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .rc-consult__title {
    font-size: 36px;
  }
}
@media screen and (min-width: 1280px) {
  .rc-consult__title {
    text-align: left;
  }
}
.rc-consult__line {
  position: relative;
  width: 100%;
  height: 1px;
  margin: 24px 0 0;
  border: 0;
  background-color: #E1DEEA;
  overflow: visible;
}
.rc-consult__line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: #E1DEEA transparent transparent transparent;
}
.rc-consult__text {
  margin-top: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.875;
  color: #333333;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .rc-consult__text {
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .rc-consult__text {
    font-size: 18px;
  }
}
.rc-consult__btn {
  margin-top: 24px;
}
.rc-consult__note {
  display: none;
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .rc-consult__note {
    display: block;
  }
}

.ct-mv {
  position: relative;
  overflow: hidden;
}
.ct-mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.ct-mv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ct-mv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding: 120px 20px 60px;
}
@media screen and (min-width: 1024px) {
  .ct-mv__inner {
    padding: 130px 40px 80px;
  }
}
@media screen and (min-width: 1280px) {
  .ct-mv__inner {
    padding: 140px 100px 100px;
  }
}
@media screen and (min-width: 1920px) {
  .ct-mv__inner {
    padding: 140px 350px 100px;
  }
}
.ct-mv__title {
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  font-size: 44px;
  line-height: 1;
  color: #333333;
}
@media screen and (min-width: 1024px) {
  .ct-mv__title {
    font-size: 70px;
  }
}
.ct-mv__title-accent {
  color: #4F359E;
}
.ct-mv__desc {
  max-width: 270px;
}
@media screen and (min-width: 768px) {
  .ct-mv__desc {
    max-width: 600px;
  }
}
.ct-mv__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  color: #333333;
}

.ct-body {
  background-color: #ffffff;
}
.ct-body__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-inline: auto;
  padding: 80px 20px;
}
@media screen and (min-width: 768px) {
  .ct-body__inner {
    padding: 80px 40px;
  }
}
@media screen and (min-width: 1024px) {
  .ct-body__inner {
    padding: 100px 40px;
  }
}
@media screen and (min-width: 1280px) {
  .ct-body__inner {
    display: grid;
    grid-template-columns: 2.05fr 1fr;
    align-items: start;
    max-width: calc(1280px + 200px);
    padding: 100px 100px;
  }
}
.ct-body__side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .ct-body__side {
    flex-direction: row;
    align-items: stretch;
  }
}
@media screen and (min-width: 1280px) {
  .ct-body__side {
    flex-direction: column;
  }
}

.ct-card {
  display: flex;
  flex-direction: column;
  background-color: #F7F7FB;
  border-radius: 10px;
  padding: 30px 20px;
}
@media screen and (min-width: 768px) {
  .ct-card {
    flex: 1;
    min-width: 0;
    padding: 40px 25px;
  }
}
.ct-card__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: #4F359E;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .ct-card__title {
    font-size: 30px;
  }
}
@media screen and (max-width: calc(768px - 1px)) {
  .ct-card__title {
    flex-direction: column;
    gap: 10px;
  }
}
.ct-card__icon {
  flex-shrink: 0;
}
.ct-card__text {
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  color: #333333;
}
.ct-card__btn {
  align-self: center;
  margin-top: 24px;
}
.ct-card--mail {
  background-color: #ffffff;
  border: 1px solid #E1DEEA;
}
.ct-card--job .ct-card__title {
  flex-direction: row;
}

.ct-form {
  margin-top: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .ct-form {
    padding: 20px 60px;
  }
}

.ct-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 24px;
  min-height: 120px;
  padding: 10px 20px;
  background-color: #ffffff;
  border: 2px solid #E1DEEA;
  border-radius: 10px;
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.15));
  transition: border-color 0.3s ease;
}
.ct-tel:hover {
  border-color: #4F359E;
  opacity: 1;
}
.ct-tel__num {
  font-family: "Arial", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #4F359E;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .ct-tel__num {
    font-size: 40px;
  }
}
.ct-tel__hours {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  color: #333333;
}

.pp-mv {
  background-color: #F7F7FB;
}
.pp-mv__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 120px 20px 50px;
}
@media screen and (min-width: 1024px) {
  .pp-mv__inner {
    padding: 130px 40px 60px;
  }
}
@media screen and (min-width: 1280px) {
  .pp-mv__inner {
    padding: 140px 100px 70px;
    max-width: 1280px;
    margin-inline: auto;
  }
}
.pp-mv__title {
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  font-size: min(44px, 8.5vw);
  line-height: 1.2;
  color: #333333;
}
@media screen and (min-width: 1024px) {
  .pp-mv__title {
    font-size: 70px;
  }
}
.pp-mv__title-accent {
  color: #4F359E;
}

.pp-body {
  background-color: #ffffff;
}
.pp-body__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
}

.pp-lead {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pp-lead__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: #333333;
}
@media screen and (min-width: 1024px) {
  .pp-lead__title {
    font-size: 36px;
  }
}
.pp-lead__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  color: #333333;
}

.pp-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
}

.pp-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pp-item__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
}
@media screen and (min-width: 1024px) {
  .pp-item__title {
    font-size: 20px;
  }
}
.pp-item__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  color: #333333;
}
.pp-item__olist {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 1.5em;
  list-style: decimal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  color: #333333;
}
.pp-item__link {
  color: #4F359E;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.3s ease;
}
.pp-item__link:hover {
  opacity: 0.7;
}
