@charset "UTF-8";
html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  color: #2d2d2d;
  line-height: 1.7;
  background: #0a0008;
  overflow-x: hidden;
}
@media (min-width: 960px) {
  body {
    font-size: 0.875rem;
  }
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

.bg-video {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.bg-video__media {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}
.bg-video__media--pc {
  display: none;
}
@media (min-width: 960px) {
  .bg-video__media--sp {
    display: none;
  }
  .bg-video__media--pc {
    display: block;
  }
}

@keyframes l-wrap-expand {
  from {
    transform: scale(0.88) translateY(12px);
  }
  to {
    transform: scale(1) translateY(0);
  }
}
.l-wrap {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  overflow-x: hidden;
}
@media (min-width: 480px) {
  .l-wrap {
    margin-top: 100px;
    max-width: 480px;
    border-radius: 2.25vh 2.25vh 0 0;
    box-shadow: 0px 39px 27.26px 19.74px rgba(0, 0, 0, 0.25);
  }
}
@media (min-width: 960px) {
  .l-wrap {
    margin-left: max(50% - 240px, 320px);
    will-change: transform;
    transform-origin: top center;
    animation: l-wrap-expand linear both;
    animation-timeline: scroll(root);
    animation-range: 0px 300px;
  }
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 80px;
  padding: 0.625rem 1rem 0;
}
@media (min-width: 960px) {
  .site-header {
    display: none;
  }
}

.header-logo {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
.header-logo img {
  height: 30px;
  width: auto;
}

.hamburger {
  position: fixed;
  top: 10px;
  right: 16px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 60px;
  height: 60px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0.625rem;
  flex-shrink: 0;
  mix-blend-mode: exclusion;
}
.hamburger__bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger__circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #fff;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 150.8;
  stroke-dashoffset: 150.8;
  transform: rotate(-90deg);
  transform-origin: center;
  transition: stroke-dashoffset 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.hamburger.is-open .hamburger__bar:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
.hamburger.is-open .hamburger__bar:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}
.hamburger.is-open .hamburger__circle {
  stroke-dashoffset: 0;
  transform: rotate(270deg);
}
@media (min-width: 960px) {
  .hamburger {
    display: none;
  }
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #f2f1f7;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 5rem 1.75rem 1.75rem;
  border-left: 1px solid rgba(178, 127, 52, 0.2);
}
@media (min-width: 480px) {
  .drawer {
    width: 50%;
  }
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  margin-bottom: 3.75rem;
}
.drawer__list li {
  width: 100%;
  text-align: center;
}
.drawer__link {
  display: block;
  color: #2d2d2d;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 0;
  transition: color 0.2s, padding-left 0.2s;
}
.drawer__link:hover {
  color: #b27f34;
  padding-left: 0.375rem;
}
.drawer__banners {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 480px) {
  .drawer__banners {
    width: 70%;
    margin: auto;
  }
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.side-nav {
  display: none;
}
@media (min-width: 960px) {
  .side-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    z-index: 100;
  }
}
@media (min-width: 960px) {
  .side-nav__logo {
    display: block;
    padding: 2rem;
  }
  .side-nav__logo img {
    width: 200px;
    height: auto;
  }
}
@media (min-width: 960px) {
  .side-nav__blur {
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(7px) brightness(0.95) saturate(1.3);
    backdrop-filter: blur(7px) brightness(0.95) saturate(1.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 960px) {
  .side-nav__list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 2.25rem 1rem;
  }
}
@media (min-width: 960px) {
  .side-nav__list a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8125rem;
    letter-spacing: 0.2em;
    text-align: center;
    text-transform: uppercase;
    padding: 0.625rem 0;
    transition: color 0.2s ease;
  }
  .side-nav__list a:hover {
    color: #b27f34;
  }
}
.side-nav__list a.is-active {
  color: #b27f34;
}
.side-nav__banners {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 1rem;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 2rem;
  font-size: 0.6875rem;
  color: #909090;
}
.breadcrumb li:not(:last-child)::after {
  content: "|";
  margin-left: 0.25rem;
  color: #aaa;
}
.breadcrumb a {
  color: #909090;
}
.breadcrumb a:hover {
  color: #b27f34;
}

.sec-inner {
  padding: 3.75rem 0.5rem;
}
.sec-inner--banner {
  padding: 2.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.sec-white {
  background: #fff;
}

.sec-dark {
  background: #111;
}

.sec-transparent {
  background: transparent;
  position: relative;
}
.sec-transparent .sec-inner {
  position: relative;
}

.sec-heading {
  text-align: center;
  margin-bottom: 2.25rem;
}
.sec-heading__en {
  font-family: "the-seasons", sans-serif;
  font-size: 1.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 0.375rem;
}
.sec-heading__ja {
  display: block;
  font-size: 0.4375rem;
  letter-spacing: 0.12em;
  color: #2d2d2d;
  margin-top: 0.375rem;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.sec-heading--light .sec-heading__en {
  color: #fff;
}
.sec-heading--light .sec-heading__ja {
  color: #fff;
}

.cast {
  position: relative;
  z-index: 5;
  background: transparent;
  margin-top: -6.75rem;
  padding-top: 4rem;
}
.cast::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f2f1f7;
  clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
  z-index: -1;
}
.cast > .sec-heading {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  margin-bottom: 0;
}
.cast > .sec-inner {
  padding: 2.75rem 0.5rem 128px;
}
.cast__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3125rem;
}

.cast-card {
  overflow: hidden;
}
.cast-card a {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.25);
}
.cast-card__thumb {
  aspect-ratio: 3/4;
  overflow: hidden;
  flex-shrink: 0;
}
.cast-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}
.cast-card:hover .cast-card__thumb img {
  transform: scale(1.05);
}
.cast-card__info {
  padding: 0 0.3125rem 0.5rem;
  color: #2d2d2d;
  flex: 1;
}
.cast-card__info-top {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.cast-card__store {
  font-size: 0.4375rem;
  letter-spacing: 0.07em;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 65%;
}
.cast-card__store-logo {
  flex-shrink: 0;
  max-width: 35%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.cast-card__store-logo img {
  max-height: 40px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  min-height: 0;
}
.cast-card__name {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  padding-bottom: 0.25rem;
  position: relative;
  font-family: "Shippori Mincho", serif;
}
.cast-card__name.deco::after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #b27f34;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cast-card__name-en {
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  display: block;
  font-weight: normal;
  margin-top: 0.5rem;
}

.more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
  padding: 12px;
}

.btn-more-frame {
  position: relative;
  display: inline-block;
  padding: 8px;
}
.btn-more-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-image: linear-gradient(#2d2d2d, #2d2d2d), linear-gradient(#2d2d2d, #2d2d2d), linear-gradient(#2d2d2d, #2d2d2d), linear-gradient(#2d2d2d, #2d2d2d), linear-gradient(#2d2d2d, #2d2d2d), linear-gradient(#2d2d2d, #2d2d2d), linear-gradient(#2d2d2d, #2d2d2d), linear-gradient(#2d2d2d, #2d2d2d);
  background-size: 1px 11px, 29px 1px, 1px 11px, 28px 1px, 68px 1px, 1px 11px, 1px 10px, 83px 1px;
  background-position: top left, top left, bottom right, bottom right, top right, top right, bottom left, bottom left;
}

.btn-more {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  min-width: 220px;
  padding: 0.9rem 2.75rem;
  color: #fff;
  background: #0a0008;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  overflow: hidden;
  transition: opacity 0.25s ease;
}
.btn-more .btn-more__text {
  position: relative;
}
.btn-more::before {
  content: "";
  width: 60%;
  height: 110%;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../img/cast-btn_deco.png) no-repeat center/cover;
  transition: transform 0.3s ease;
}
.btn-more::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 1rem;
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.btn-more:hover::before {
  transform: translateX(-80%);
}
.btn-more:hover::after {
  transform: translateY(-50%) translateX(4px);
}

.shop {
  margin-top: -3.5rem;
}
.shop .sec-heading {
  text-align: center;
  margin-bottom: 2.25rem;
  position: relative;
  z-index: 100;
}

.area {
  margin-bottom: 2.75rem;
}
.area:last-child {
  margin-bottom: 0;
}
.area__name {
  font-family: "EB Garamond", serif;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
}
.area__name span {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 0.6875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  text-transform: none;
}

.shop-grid {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.75rem;
}

.shop-card {
  background: rgba(255, 255, 255, 0.93);
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
.shop-card__thumb {
  width: 28%;
  flex-shrink: 0;
}
.shop-card__thumb a {
  display: block;
  height: 100%;
}
.shop-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.shop-card__info {
  flex: 1;
  padding: 0.625rem 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 80px;
}
.shop-card__name {
  font-size: 0.9375rem;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 0.25rem;
  font-weight: 300;
}
.shop-card__address {
  font-size: 0.625rem;
  line-height: 1.6;
  flex: 1;
}
.shop-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
}
.shop-card__tel {
  font-size: 0.8125rem;
  color: #2d2d2d;
}
.shop-card__links {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-left: auto;
}
.shop-card__btn {
  display: inline-block;
  border: 1px solid #2d2d2d;
  color: #2d2d2d;
  text-align: center;
  border-radius: 0.8125rem;
  font-size: 0.5625rem;
  padding: 0.2rem 0.625rem;
  white-space: nowrap;
  line-height: 1.6;
}
.shop-card__map {
  color: #2d2d2d;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.fixed-link {
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 0;
  bottom: 5%;
  z-index: 10;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.fixed-link.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.fixed-link__btn {
  writing-mode: vertical-rl;
  background-color: #0a0008;
  color: #fff;
  padding: 0.625rem;
  text-align: center;
  min-height: 100px;
  border-radius: 15px 0 0 0;
  font-size: 0.75rem;
}
.fixed-link__btn:last-child {
  border-radius: 0 0 0 15px;
}

.banners {
  background: transparent;
  position: relative;
  z-index: 5;
}
.banners::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
  pointer-events: none;
}

.banner-link img {
  width: 100%;
  border-radius: 3px;
  transition: opacity 0.2s;
}
.banner-link:hover img {
  opacity: 0.9;
}

.site-footer {
  text-align: center;
  padding: 3rem 1.5rem 4rem;
  background: rgba(255, 255, 255, 0.6);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.375rem;
}
.footer-logo img {
  height: 44px;
  width: auto;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  margin-bottom: 1.375rem;
}
.footer-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 0;
}
.footer-nav li + li::before {
  content: "/";
  margin: 0 0.75rem;
  color: #2d2d2d;
  font-size: 0.6875rem;
}
.footer-nav a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #2d2d2d;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  opacity: 0.6;
}

.copyright {
  font-size: 0.625rem;
  color: #888;
  letter-spacing: 0.08em;
}

.pt01 {
  position: relative;
}
.pt01::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
  z-index: -1;
}
.pt01 .cast-card {
  box-shadow: none;
}
.pt01 .cast-card__info {
  padding-top: 0.625rem;
}
.pt01 .cast-card__info-top {
  flex-direction: column;
  align-items: center;
  gap: 0.3125rem;
}
.pt01 .cast-card__details {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0.3125rem;
}
.pt01 .cast-card__store {
  order: -1;
  font-size: 0.5625rem;
  max-width: 100%;
  font-weight: normal;
}
.pt01 .cast-card__store span {
  font-size: 0.375rem;
}
.pt01 .cast-card__name {
  font-size: 0.6875rem;
  padding-bottom: 0;
  font-weight: normal;
}
.pt01 .cast-card__name.deco::after {
  content: none;
}

@keyframes rec-hero-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.rec-hero {
  position: relative;
  width: 100%;
  background: #fff;
  padding: 0 0 8rem;
  overflow: hidden;
}
.rec-hero__body {
  position: relative;
  z-index: 1;
  padding: 70px 1.25rem 0;
}
@media (min-width: 480px) {
  .rec-hero__body {
    padding-top: 1rem;
  }
}
.rec-hero__body::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 305px;
  background: url(../img/recruit/staff-recruit_hero-after.png) no-repeat center/100%;
  z-index: -1;
}
.rec-hero__catch {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.64;
  color: #1a1a1a;
  margin-bottom: 2.4rem;
  margin-top: 2.25rem;
  font-family: "Shippori Mincho", serif;
  padding: 0 1rem;
}
@media (min-width: 480px) {
  .rec-hero__catch {
    margin-top: 5rem;
    margin-bottom: 4rem;
  }
}
.rec-hero__sub {
  font-size: 0.8125rem;
  color: #2d2d2d;
  line-height: 1.9;
  margin-bottom: 2rem;
  padding: 0 1rem;
}
.rec-hero__list {
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 5;
}
.rec-hero__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: rec-hero-slide 22s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .rec-hero__track {
    animation: none;
  }
}
.rec-hero__item {
  width: 62vw;
  max-width: 240px;
  flex-shrink: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}
.rec-hero__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rec-gradient-block {
  position: relative;
  z-index: 2;
  margin-top: -3.75rem;
}
.rec-gradient-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #f8f8fb 0%, #EFEFF7 45%, #E5E5F1 100%);
  clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
  z-index: -1;
  pointer-events: none;
}

.rec-about {
  background: transparent;
  padding: 3.5rem 2.5rem 1.5rem;
  position: relative;
}
.rec-about::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 97%;
  background: #f2f1f7;
  top: -24%;
  left: 15%;
  z-index: -10;
  transform: rotate(128deg);
  border-radius: 120px;
}
.rec-about__en {
  font-family: "the-seasons", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  color: #b27f34;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.rec-about__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(178, 127, 52, 0.3);
}
.rec-about__ttl {
  font-family: "Shippori Mincho", serif;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 1.875rem;
}
.rec-about__text {
  font-size: 0.8125rem;
  color: #2d2d2d;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.rec-about__text p + p {
  margin-top: 1.6rem;
}

.rec-business {
  background: transparent;
  padding: 3.5rem 1.5rem 8.25rem;
}
.rec-business__en {
  font-family: "the-seasons", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  color: #b27f34;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.rec-business__heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.rec-business__list {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}
.rec-business__list-ttl {
  margin-bottom: 1.2rem;
  font-size: 1.125rem;
  font-weight: 500;
  position: relative;
  padding-left: 1.3rem;
}
.rec-business__list-ttl::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  width: 36px;
  height: 3px;
  background: #067382;
  background: linear-gradient(90deg, rgb(6, 115, 130) 20%, rgb(115, 180, 40) 20%, rgb(204, 228, 117) 100%);
  border-radius: 2px;
  transform: rotate(320deg);
}
.rec-business__text {
  font-size: 0.8125rem;
  line-height: 2;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.rec-recruit {
  padding: 8.4375rem 1.25rem 0;
  margin-top: -7.2rem;
  position: relative;
  z-index: 1;
}
.rec-recruit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #F8F7FC 0%, #E9E9F1 45%, #E5E5F1 100%);
  clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
  z-index: -1;
  pointer-events: none;
}
.rec-recruit__en {
  font-family: "the-seasons", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  color: #b27f34;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.rec-recruit__heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(178, 127, 52, 0.3);
}
.rec-recruit__ttl {
  font-family: "Shippori Mincho", serif;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 1.875rem;
}
.rec-recruit__txt {
  padding: 0 1.25rem;
  margin-bottom: 1.875rem;
}
.rec-recruit-personality {
  background: #fff;
  box-shadow: 0 0 14px 0 rgba(10, 0, 8, 0.1);
  padding: 2.1875rem 1.25rem;
}
.rec-recruit-personality__ttl {
  text-align: center;
  margin-bottom: 1.25rem;
}
.rec-recruit-personality__ttl.sec-heading__en {
  font-size: 0.6875rem;
  color: #7DB937;
  letter-spacing: 0;
}
.rec-recruit-personality__ttl .sec-heading__ja {
  font-size: 1.125rem;
  color: #2d2d2d;
  font-family: "Shippori Mincho", serif;
}
.rec-recruit-personality__txt {
  text-align: center;
  margin-bottom: 1.25rem;
}
.rec-recruit-personality__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.rec-recruit-personality__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.rec-recruit-personality__item::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  background-image: url(../img/recruit/rec-recruit-personality_icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.rec-recruit-personality__photo-wrap {
  position: relative;
  left: -1.25rem;
  width: calc(100% + 2.5rem);
  height: 300px;
  overflow: hidden;
  margin-top: 0.5rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 100%);
}
.rec-recruit-personality__photo {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 68%;
  max-width: 280px;
  height: auto;
}

.rec-works {
  background: #fff;
  margin-top: -9rem;
  padding: 10.5rem 0 3.75rem;
}
.rec-works__en {
  font-family: "the-seasons", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  color: #b27f34;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.rec-works__heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.rec-works__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1.5rem 0;
}

.rec-work-card {
  display: flex;
  justify-content: space-between;
}
.rec-work-card__image {
  width: 64px;
  height: 64px;
  object-fit: cover;
}
.rec-work-card__left {
  width: 77%;
}
.rec-work-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.rec-work-card__desc {
  font-size: 0.8125rem;
  margin-top: 0.25rem;
  line-height: 1.7;
}

.rec-work-stats {
  background: #fff;
  padding: 3.5rem 1.5rem 0;
  overflow: hidden;
}
.rec-work-stats .sec-heading__ja {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 1.875rem;
}
.rec-work-stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  position: relative;
  width: 80%;
  margin: auto;
}
.rec-work-stats__grid::before, .rec-work-stats__grid::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 360px;
  overflow: hidden;
}
.rec-work-stats__grid::before {
  background: url(../img/recruit/rec-work-stats__before.png) no-repeat center/100%;
  top: 0;
  left: -30%;
}
@media (min-width: 480px) {
  .rec-work-stats__grid::before {
    left: -24%;
  }
}
.rec-work-stats__grid::after {
  background: url(../img/recruit/rec-work-stats__after.png) no-repeat center/100%;
  top: 0;
  right: -30%;
}
@media (min-width: 480px) {
  .rec-work-stats__grid::after {
    right: -26%;
  }
}

.rec-work-stat-item {
  text-align: center;
  padding: 0.5rem 0;
}
.rec-work-stat-item__label {
  font-size: 0.875rem;
  font-weight: bold;
  color: #909090;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
  line-height: 1;
}
.rec-work-stat-item__num {
  font-size: 3rem;
  font-weight: bolder;
  color: #1a1a1a;
  line-height: 1;
}
.rec-work-stat-item__num span {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: #909090;
  margin-left: 0.2rem;
}

.rec-conditions {
  background: #fff;
  padding: 3.5rem 1.25rem 0;
}
.rec-conditions__en {
  font-family: "the-seasons", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.rec-conditions__heading {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.rec-conditions__table {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
}

.rec-cond-row {
  background: linear-gradient(120deg, #F8F7FC 0%, #E9E9F1 45%, #E5E5F1 100%);
  padding: 1.25rem;
}
.rec-cond-row__key {
  font-size: 0.9375rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 0.625rem;
}
.rec-cond-row__val {
  font-size: 0.8125rem;
  line-height: 1.85;
  letter-spacing: 0.02em;
}
.rec-cond-row__val:not(:last-child) {
  margin-bottom: 1rem;
}
.rec-cond-row__val-salary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rec-flow {
  background: #fff;
  padding: 6.5rem 1.5rem 16.25rem;
  position: relative;
}
.rec-flow__heading {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: #1a1a1a;
  margin-bottom: 2.5rem;
}
.rec-flow__steps {
  display: flex;
  flex-direction: column;
}
.rec-flow::after {
  content: "";
  position: absolute;
  bottom: -46%;
  left: 36%;
  transform: rotate(303deg);
  width: 65%;
  height: 65%;
  background: #57B2B4;
  background: linear-gradient(153deg, rgb(87, 178, 180) 0%, rgb(87, 176, 154) 30%, rgb(85, 172, 115) 69%);
  /* 楕円の背景色 */
  border-radius: 200px;
  z-index: 0;
}
@media (min-width: 480px) {
  .rec-flow::after {
    bottom: -44%;
    left: 29%;
  }
}

.rec-flow-step {
  padding: 1.75rem 0;
  border-bottom: 1px solid #2d2d2d;
}
.rec-flow-step:not(:last-child) {
  position: relative;
}
.rec-flow-step:not(:last-child)::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid #2d2d2d;
  position: absolute;
  bottom: -15px;
  left: 50%;
  translate: -50% 0;
}
.rec-flow-step__header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}
.rec-flow-step__num-wrap {
  flex-shrink: 0;
  width: 40px;
}
.rec-flow-step__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-bottom: 0.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.rec-flow-step__desc {
  font-size: 0.8125rem;
  color: #2d2d2d;
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.rec-entry {
  padding: 6rem 2rem 8rem;
  text-align: center;
  position: relative;
  margin-top: -3.25rem;
  z-index: 1;
}
.rec-entry::before {
  content: "";
  position: absolute;
  width: 375px;
  height: 254px;
  top: -20%;
  left: 50%;
  translate: -50% 0;
  background: url(../img/recruit/entry_before-img.png) no-repeat center/100%;
  z-index: -1;
}
.rec-entry::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #2B93A8;
  background: linear-gradient(150deg, rgb(43, 147, 168) 0%, rgb(64, 155, 97) 41%, rgb(83, 163, 30) 100%);
  clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
  pointer-events: none;
}
.rec-entry__en {
  font-family: "the-seasons", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  color: #b27f34;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.rec-entry__heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.rec-entry__sub {
  font-size: 1rem;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 2rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
}
.rec-entry__txt {
  font-size: 0.8125rem;
  text-align: center;
  border: 1px solid #fff;
  color: #fff;
  margin: 0 auto 2rem;
  width: fit-content;
  padding: 0.3rem 1.5rem;
  border-radius: 1.875rem;
  text-transform: uppercase;
}
.rec-entry__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.rec-entry__buttons-top {
  display: flex;
  gap: 0.9375rem;
}
.rec-entry__buttons-bottom {
  margin-bottom: 1.25rem;
}
.rec-entry__buttons-bottom small {
  margin-top: 1.25rem;
  color: #fff;
  display: block;
  text-align: left;
}
.rec-entry__message {
  font-size: 0.8125rem;
  color: #fff;
  margin-bottom: 3.125rem;
}
.rec-entry__message p:first-of-type {
  margin-bottom: 1rem;
}

.rec-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  border-radius: 10px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity 0.2s;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(73, 73, 73, 0.4);
}
.rec-btn:hover {
  opacity: 0.85;
}
.rec-btn--line {
  color: #06c755;
}
.rec-btn--form {
  color: #006db3;
}
.rec-btn--form-span {
  display: block;
  font-size: 0.6875rem;
}
.rec-btn--tel {
  color: #ff9800;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.5rem;
}

.rec-banners {
  position: relative;
  padding: 0 2.25rem 4rem;
  margin-top: -7rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.rec-banners::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #bbddc2;
  clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
  pointer-events: none;
}

.rec-footer {
  background: none;
  padding: 8rem 1.5rem 4rem;
  margin-top: -9rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.rec-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #bbddc2;
  clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
  pointer-events: none;
}

.delighter {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.delighter.started {
  opacity: 1;
  transform: translateY(0);
}

.page-cast-recruit .l-wrap {
  background: #fff;
}
.page-cast-recruit .rec-flow {
  padding-bottom: 13.25rem;
}
.page-cast-recruit .rec-flow::after {
  background: #FFBB57;
  background: linear-gradient(133deg, rgb(255, 187, 87) 0%, rgb(255, 135, 114) 50%, rgb(255, 87, 139) 100%);
}
.page-cast-recruit .rec-entry {
  padding: 6rem 2rem 5rem;
}
.page-cast-recruit .rec-entry::before {
  background: url(../img/cast-recruit/entry__before-img.png) no-repeat center/100%;
  height: 297px;
  top: -19%;
}
.page-cast-recruit .rec-entry::after {
  background: #FFBB57;
  background: linear-gradient(188deg, rgb(255, 187, 87) 0%, rgb(255, 134, 115) 30%, rgb(255, 87, 139) 100%);
}
.page-cast-recruit .rec-footer {
  position: relative;
  margin-top: -6.75rem;
  padding-top: 7.3rem;
  background: transparent;
  z-index: 1;
}
.page-cast-recruit .rec-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f0b8cc;
  clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
  pointer-events: none;
}
.page-cast-recruit .rec-banners::before {
  background: #f9c4d8;
}
.page-cast-recruit .rec-flow-step__num-wrap {
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
}
.page-cast-recruit .rec-flow-step__title::before {
  display: none;
}

.cr-step__label {
  font-family: "the-seasons", sans-serif;
  font-size: 0.5625rem;
  letter-spacing: 0.12em;
  color: #e05490;
  line-height: 1;
  display: block;
  text-transform: uppercase;
  text-align: center;
}
.cr-step__num {
  font-family: "the-seasons", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #e05490;
  line-height: 1;
  display: block;
}
.cr-step__divider {
  width: 1px;
  height: 40px;
  background: #1a1a1a;
  flex-shrink: 0;
}

.rec-flow--staff .cr-step__label,
.rec-flow--staff .cr-step__num {
  color: #27b964;
}

.sec-heading--cr {
  margin-bottom: 2rem;
}
.sec-heading--cr .sec-heading__en {
  letter-spacing: 0.3em;
  font-weight: 400;
}
.sec-heading--cr .sec-heading__ja {
  letter-spacing: 0.25em;
}

.page-cast-recruit .rec-hero {
  overflow: hidden;
  padding: 0 0 13rem;
}
.page-cast-recruit .rec-hero::before {
  content: "";
  position: absolute;
  top: -170px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: #FFD4E1;
  background: linear-gradient(120deg, rgb(255, 212, 225) 0%, rgb(255, 243, 247) 70%, rgb(255, 247, 250) 100%);
  border-radius: 50%;
  opacity: 0.65;
  z-index: 0;
}
.page-cast-recruit .rec-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 270px;
  background: url(../img/cast-recruit/cast-recruit_hero-after.png) no-repeat center/100%;
  z-index: 1;
}
.page-cast-recruit .rec-hero__catch {
  font-family: "Shippori Mincho", serif;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  margin-top: 3rem;
  margin-bottom: 0;
  position: relative;
  z-index: 3;
  padding: 0 1rem;
}
@media (min-width: 480px) {
  .page-cast-recruit .rec-hero__catch {
    margin-top: 5rem;
  }
}
.page-cast-recruit .rec-hero__cast-image {
  position: absolute;
  top: 0;
  right: -1.5rem;
  width: 52%;
  z-index: 1;
}
.page-cast-recruit .rec-hero__cast-image img {
  width: 100%;
  height: auto;
}
.page-cast-recruit .rec-hero__text-block {
  position: relative;
  z-index: 1;
  font-size: 0.8125rem;
  line-height: 2.1;
  color: #2d2d2d;
  padding: 1.5rem 1rem 2.5rem;
}
.page-cast-recruit .rec-hero__text-block::before {
  content: "";
  position: absolute;
  top: 60px;
  left: -350px;
  transform: rotate(-45deg);
  width: 600px;
  height: 260px;
  background: #EAE6F5;
  background: linear-gradient(120deg, rgb(234, 230, 245) 0%, rgb(238, 235, 247) 70%, rgb(248, 247, 252) 100%);
  border-radius: 160px;
  opacity: 0.65;
  z-index: -1;
}
.page-cast-recruit .rec-hero__text-block::after {
  content: "";
  position: absolute;
  bottom: 130px;
  right: -350px;
  transform: rotate(-45deg);
  width: 600px;
  height: 260px;
  background: #FEC8D8;
  background: linear-gradient(246deg, rgb(254, 200, 216) 0%, rgb(254, 215, 226) 50%, rgb(255, 247, 250) 100%);
  border-radius: 160px;
  opacity: 0.65;
  z-index: -1;
}
@media (min-width: 480px) {
  .page-cast-recruit .rec-hero__text-block::after {
    bottom: 70px;
  }
}
.page-cast-recruit .rec-hero__text-block p + p {
  margin-top: 1.25em;
}
.page-cast-recruit .rec-hero__body::after {
  content: "";
  position: absolute;
  bottom: -330px;
  top: inherit;
  left: 0;
  width: 395px;
  height: 380px;
  background: url(../img/cast-recruit/cast-recruit_hero__body-after.png) no-repeat center/100%;
  right: inherit;
  transform: rotate(0);
  opacity: 1;
}
.page-cast-recruit .rec-hero__list {
  display: none;
}

.cr-about__top {
  position: relative;
  padding: 8rem 1.75rem;
  margin-top: -6.75rem;
  z-index: 1;
  overflow: hidden;
}
.cr-about__top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #F8F8FB;
  background: linear-gradient(160deg, rgb(248, 248, 251) 0%, rgb(221, 205, 221) 77%, rgb(221, 205, 221) 100%);
  clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
  z-index: -1;
}
.cr-about__photo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 100%);
}
.cr-about__photo img {
  display: block;
  width: 100%;
  height: auto;
}
.cr-about__lead {
  font-family: "Shippori Mincho", serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 1.75rem;
}
.cr-about__text {
  line-height: 1.8;
  color: #2d2d2d;
  margin-bottom: 4rem;
}
.cr-about__text p + p {
  margin-top: 1.25em;
}
.cr-about .cr-reasons {
  position: relative;
  z-index: 1;
}
.cr-about .cr-reasons__heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  margin-bottom: 2.25rem;
  text-align: center;
}
.cr-about .cr-reasons__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.cr-about .cr-reason--photo .cr-reason__title,
.cr-about .cr-reason--photo .cr-reason__text {
  width: 62%;
}
@media (min-width: 480px) {
  .cr-about .cr-reason--photo .cr-reason__title,
  .cr-about .cr-reason--photo .cr-reason__text {
    width: 50%;
  }
}
.cr-about .cr-reason--photo2 .cr-reason__title,
.cr-about .cr-reason--photo2 .cr-reason__text {
  width: 52%;
}
.cr-about .cr-reason__title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.3rem;
}
.cr-about .cr-reason__title::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  width: 36px;
  height: 3px;
  background: #B61C72;
  background: linear-gradient(90deg, rgb(182, 28, 114) 20%, rgb(255, 88, 140) 20%, rgb(255, 197, 213) 100%);
  border-radius: 2px;
  transform: rotate(320deg);
}
.cr-about__bottom {
  position: relative;
  z-index: 0;
  background: transparent;
  margin-top: -6.75rem;
  padding-top: 2.3rem;
}
.cr-about__bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #F8F7FC;
  background: linear-gradient(180deg, rgb(254, 253, 255) 0%, rgb(237, 238, 243) 50%, rgb(229, 229, 241) 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 100%);
  z-index: -1;
}
.cr-about .cr-benefits {
  padding: 3.5rem 1.25rem;
}
.cr-about .cr-benefits__heading {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 2rem;
}
.cr-about .cr-benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem 1.25rem;
}
.cr-about .cr-benefits__item {
  display: flex;
  align-items: flex-start;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  line-height: 1.2;
  color: #1a1a1a;
}
.cr-about .cr-benefits__item::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../img/cast-recruit/cr-benefits__item-icon.svg) no-repeat center/100%;
}
.cr-about .cr-welcome {
  padding: 1.5rem 1.25rem 0;
}
.cr-about .cr-welcome__label-wrap {
  text-align: center;
  margin-bottom: 2.25rem;
}
.cr-about .cr-welcome__label {
  display: inline-block;
  border: 1.5px solid #e05490;
  color: #e05490;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  position: relative;
}
.cr-about .cr-welcome__label::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #e05490;
  position: absolute;
  bottom: -11px;
  left: 50%;
  translate: -50% 0;
}
.cr-about .cr-welcome__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem;
  margin-bottom: 1.75rem;
}
.cr-about .cr-welcome__card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6;
  color: #1a1a1a;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cr-about .cr-welcome__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #FFCDDC;
  background: linear-gradient(0deg, rgb(255, 205, 220) 0%, rgb(255, 121, 162) 100%);
}
.cr-about .cr-welcome__card span {
  font-style: normal;
  color: #e05490;
}
.cr-about .cr-welcome__caption {
  margin-top: -3.25rem;
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  position: relative;
  z-index: -1;
}
.cr-about .cr-welcome__caption img {
  display: block;
  width: 100%;
  height: auto;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 100%);
}

.cr-media {
  padding: 2rem 0 0;
  position: relative;
  z-index: 1;
}
.cr-media__inner {
  padding: 0 1.75rem;
}
.cr-media__text {
  line-height: 1.8;
  color: #2d2d2d;
  margin-bottom: 2rem;
}
.cr-media__slider {
  padding-bottom: 1.5rem;
}
.cr-media__slide {
  aspect-ratio: 4/3;
  background: #ddd;
  overflow: hidden;
}
.cr-media__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cr-media .splide__pagination {
  bottom: 0;
}
.cr-media .splide__pagination__page {
  background: #ccc;
}
.cr-media .splide__pagination__page.is-active {
  background: #888;
  transform: none;
}

.cr-message {
  padding: 4rem 1.75rem;
  position: relative;
}
.cr-message::before {
  content: "";
  position: absolute;
  top: 0;
  right: -100px;
  width: 176px;
  height: 156px;
  background: url(../img/cast-recruit/cr-message_before.svg) no-repeat center/100%;
  z-index: 0;
}
.cr-message::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: -130px;
  width: 345px;
  height: 305px;
  background: url(../img/cast-recruit/cr-message_after.svg) no-repeat center/100%;
  z-index: 0;
}
.cr-message__inner {
  position: relative;
  z-index: 1;
}
.cr-message__inner::before {
  content: "";
  position: absolute;
  top: -110px;
  left: -60px;
  width: 176px;
  height: 156px;
  background: url(../img/cast-recruit/cr-message_before.svg) no-repeat center/100%;
  z-index: 0;
}
.cr-message__inner::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: 0px;
  width: 176px;
  height: 156px;
  background: url(../img/cast-recruit/cr-message_before.svg) no-repeat center/100%;
  z-index: 0;
}
.cr-message__lead {
  font-family: "Shippori Mincho", serif;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 1.75rem;
}
.cr-message__text {
  line-height: 1.8;
  color: #2d2d2d;
}
.cr-message__text p + p {
  margin-top: 1.25em;
}

.cr-conditions {
  background: none;
  padding-top: 8rem;
}
.cr-conditions .sec-heading {
  position: relative;
}
.cr-conditions .sec-heading::before {
  content: "";
  position: absolute;
  width: 215px;
  height: 323px;
  top: -180px;
  left: 50%;
  translate: -50% 0;
  background: url(../img/cast-recruit/recruitment__before.png) no-repeat center/100%;
  z-index: -1;
}

.page-cast-recruit .rec-btn--form {
  color: #ff588c;
  flex-direction: row;
  gap: 0.5rem;
}
.page-cast-recruit .rec-btn--form #fi_9316720 {
  fill: #ff588c;
}
.page-cast-recruit .rec-btn--line {
  background: #fff;
  color: #06c755;
}
.page-cast-recruit .rec-btn--tel {
  color: #ff9800;
  font-size: 1.25rem;
}

.fixed-link__btn {
  border-radius: 0;
}

.fixed-link__btn--line {
  background: #06c755;
  text-orientation: upright;
  border-radius: 15px 0 0 0;
}/*# sourceMappingURL=recruit.css.map */