@charset "UTF-8";
/* グラフ用 */
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New&display=swap");
@keyframes loop-title {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* 全体のリセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
html[data-scrolled="true"] .rc-header__logo {
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
}
@media screen and (max-width: 767px) {
  html[data-scrolled="true"] .rc-header__logo {
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
  }
}
html {
  overflow-x: clip;
  overscroll-behavior-x: none;
}
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  background-color: #f7f6f6;
  color: #000;
  font-size: 1.6rem;
  overflow-x: clip;
  overscroll-behavior-x: none;
  touch-action: pan-y;
}
img {
  width: 100%;
  height: auto;
}
.rc-main .wp-block-cover:first-child, .rc-main .wp-block-group:first-child {
  margin-top: inherit;
}
.wp-block-image {
  margin-bottom: 0;
}
.rc-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.rc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 2em;
}
.rc-header__logo {
  filter: none;
  position: relative;
  z-index: 110;
  transition: 0.3s all;
}
.rc-header__logo a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1em;
  text-decoration: none;
  font-weight: bold;
}
.rc-header__logo a span {
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  width: 106px;
  height: 28px;
  position: relative;
  top: -2px;
}
.rc-header__action {
  display: flex;
  align-items: center;
  gap: 0.5em;
  position: relative;
  z-index: 110;
  transition: 0.3s all;
}
.rc-header__action .rc-header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  background: linear-gradient(90deg, #e50012 0, #fd7717 100%);
  border-radius: 2em;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  height: 40px;
  overflow: hidden;
  padding: 0 2em;
  position: relative;
  text-decoration: none;
  transition: 0.3s all;
}
.rc-header__action .rc-header__btn::before {
  content: "";
  width: 0;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  transition: 0.3s all;
}
.rc-header__action .rc-header__btn span {
  position: relative;
  z-index: 1;
}
.rc-header__action .rc-header__btn .svg-arrow {
  width: 19px;
  height: 18px;
  transition: 0.3s all;
}
.rc-header__action .rc-header__btn .svg-arrow svg {
  fill: #fff;
}
.rc-header__action .rc-header__btn:hover .rc-header__btn {
  color: #e50012;
}
.rc-header__action .rc-header__btn:hover .rc-header__btn::before {
  width: 100%;
  right: unset;
  left: 0;
}
.rc-header__action .rc-header__btn:hover .rc-header__btn .svg-arrow {
  transform: translateX(1em);
}
.rc-header__action .rc-header__btn:hover .rc-header__btn .svg-arrow svg {
  fill: #e50012;
}
.rc-header .rc-header__hamburger {
  width: 40px;
  height: 40px;
  background: linear-gradient(90deg, #e50012 0, #fd7717 100%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35em;
  position: relative;
}
.rc-header .rc-header__hamburger .rc-header__hamburger-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.rc-header .rc-header__hamburger .rc-header__hamburger-icon.close {
  opacity: 0;
}
.rc-header .rc-header__hamburger.is-active .rc-header__hamburger-icon.open {
  opacity: 0;
}
.rc-header .rc-header__hamburger.is-active .rc-header__hamburger-icon.close {
  opacity: 1;
}
.rc-header_navi__logo {
  max-width: 288px;
}
.rc-header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 1em;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.rc-header__nav::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #e50012;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.rc-header__nav-inner {
  background: #fff;
  border-radius: 20px;
  padding: 6em 1em;
  position: relative;
  width: 100%;
  z-index: 10;
}
.rc-header__nav-inner > div {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 6em;
}
@media screen and (min-width: 576px) {
  .rc-header__nav-inner > div {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .rc-header__nav-inner > div {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .rc-header__nav-inner > div {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .rc-header__nav-inner > div {
    max-width: 1312px;
    padding: 0 1em;
  }
}
.rc-header__nav-inner > div.rc-header__nav-action {
  display: none;
}
.rc-header__nav-inner > div.rc-header__nav-action .rc-header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  background: linear-gradient(90deg, #e50012 0, #fd7717 100%);
  border-radius: 2em;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  height: 48px;
  overflow: hidden;
  padding: 0 1em;
  position: relative;
  text-decoration: none;
  transition: 0.3s all;
  width: 100%;
  max-width: 160px;
}
.rc-header__nav-inner > div.rc-header__nav-action .rc-header__btn::before {
  content: "";
  width: 0;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  transition: 0.3s all;
}
.rc-header__nav-inner > div.rc-header__nav-action .rc-header__btn span {
  position: relative;
  z-index: 1;
}
.rc-header__nav-inner > div.rc-header__nav-action .rc-header__btn .svg-arrow {
  width: 19px;
  height: 18px;
  transition: 0.3s all;
}
.rc-header__nav-inner > div.rc-header__nav-action .rc-header__btn .svg-arrow svg {
  fill: #fff;
}
.rc-header__menu {
  list-style: none;
  display: flex;
  gap: 5em;
}
.rc-header__menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rc-header__menu > li:nth-child(2) a {
  transition: 0.5s all;
}
.rc-header__menu > li:nth-child(2):hover > a {
  color: #e50012;
}
.rc-header__menu-link, .rc-header__menu-label {
  color: #434343;
  font-size: 1.8rem;
  font-weight: 500;
  display: block;
  margin-bottom: 1em;
  padding-left: 1em;
  position: relative;
}
.rc-header__menu-link::before, .rc-header__menu-label::before {
  content: "";
  width: 0.5em;
  height: 1px;
  background: #434343;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.rc-header__sub-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.rc-header__sub-menu > li a {
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  transition: 0.5s all;
}
.rc-header__sub-menu > li:not(:last-child) {
  margin-bottom: 0.5em;
}
.rc-header__sub-menu > li:hover a {
  color: #e50012;
}
.rc-header .leadsection-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}
.rc-header.is-nav-open .rc-header__logo {
  display: none;
}
.rc-header.is-nav-open .rc-header__action {
  position: absolute;
  top: 3em;
  right: 3em;
}
.rc-header.is-nav-open .rc-header__action .rc-header__btn {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .rc-header.is-nav-open .rc-header__action {
    right: 2em;
  }
}
.admin-bar .rc-header {
  top: 32px;
}
@media screen and (max-width: 767px) {
  .rc-header__inner {
    padding: 1em;
  }
  .rc-header__logo a {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    max-width: 166px;
  }
  .rc-header__logo a span {
    font-size: 1rem;
  }
  .rc-header__action .rc-header__btn {
    font-size: 1.4rem;
    gap: 0.5em;
    padding: 0 1em;
  }
  .rc-header__nav {
    padding: 2em 1em 1em;
  }
  .rc-header__nav-inner {
    padding: 4em 2em;
  }
  .rc-header__nav-inner > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2em;
  }
  .rc-header__nav-inner > div.rc-header__nav-action {
    display: flex;
    align-items: flex-end !important;
  }
  .rc-header_navi__logo {
    max-width: 202px;
  }
  .rc-header__menu {
    flex-direction: column;
    gap: 2em;
  }
  .rc-header__menu-link, .rc-header__menu-label {
    font-size: 1.2rem;
  }
  .rc-header__menu > li:nth-child(3) .rc-header__sub-menu > li:last-child {
    display: none;
  }
  .rc-header__menu-item {
    align-items: flex-start;
  }
}
.recruit-header {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
/* フッター */
.recruit-footer {
  background: #fff;
  border-top: none;
  padding: 10em 0 0;
}
.recruit-footer .rc-footer-company-column, .recruit-footer .rc-footer-navi-column {
  display: flex;
  justify-content: space-between;
}
.recruit-footer .rc-footer-company-column {
  align-items: center;
  margin-bottom: 6em;
}
.recruit-footer .rc-footer-company-column > div:nth-child(2) p {
  font-weight: 500;
  text-align: right;
}
.recruit-footer .rc-footer-navi-column {
  margin-bottom: 10em;
}
.recruit-footer .rc-footer-navi-column > div {
  display: flex;
  flex-direction: column;
}
.recruit-footer .rc-footer-navi-column > div:nth-child(1) {
  justify-content: flex-start;
}
.recruit-footer .rc-footer-navi-column > div:nth-child(2) {
  justify-content: flex-end;
}
.recruit-footer .rc-footer-navi-column nav .rc-footer__nav-inner > ul {
  display: flex;
  gap: 6em;
}
.recruit-footer .rc-footer-navi-column nav .rc-footer__nav-inner > ul li .rc-footer__menu-label {
  color: #434343;
  font-size: 1.8rem;
  font-weight: 500;
  display: block;
  margin-bottom: 1.5em;
  padding-left: 1.5em;
  position: relative;
  transition: 0.5s all;
}
.recruit-footer .rc-footer-navi-column nav .rc-footer__nav-inner > ul li .rc-footer__menu-label::before {
  content: "";
  width: 1em;
  height: 1px;
  background: #434343;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.recruit-footer .rc-footer-navi-column nav .rc-footer__nav-inner > ul li:nth-child(2):hover .rc-footer__menu-label {
  color: #e50012;
}
.recruit-footer .rc-footer-navi-column nav .rc-footer__nav-inner > ul li .rc-footer__sub-menu > li a {
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  transition: 0.5s all;
}
.recruit-footer .rc-footer-navi-column nav .rc-footer__nav-inner > ul li .rc-footer__sub-menu > li:not(:last-child) {
  margin-bottom: 1em;
}
.recruit-footer .rc-footer-navi-column nav .rc-footer__nav-inner > ul li .rc-footer__sub-menu > li:hover a {
  color: #e50012;
}
.recruit-footer .rc-footer__logo {
  max-width: 564px;
}
.recruit-footer .rc-footer__logo a {
  color: #000;
  display: flex;
  align-items: center;
  gap: 2em;
}
.recruit-footer .rc-footer__logo a span {
  border: 1px solid #000;
  font-size: 1.4rem;
  padding: 0.25em 1em;
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: fit-content;
}
.recruit-footer .rc-footer__btn {
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  max-width: 240px;
  margin: 0 0 1em auto;
  width: 100%;
}
.recruit-footer .rc-footer__btn::before {
  content: "";
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #e50012 0, #fd7717 100%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  transition: 0.5s all;
}
.recruit-footer .rc-footer__btn a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  width: 100%;
  height: 54px;
  position: relative;
  z-index: 1;
}
.recruit-footer .rc-footer__btn:hover::before {
  width: 100%;
  right: unset;
  left: 0;
}
.recruit-footer .rc-footer__copyright p {
  font-size: 1.4rem;
}
.recruit-footer .rc-footer__loop_img {
  overflow: hidden;
}
.recruit-footer .rc-footer__loop_img > div {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: loop-slide 56s linear infinite;
}
.recruit-footer .rc-footer__loop_img > div figure {
  margin: 0;
  flex-shrink: 0;
}
.recruit-footer .rc-footer__loop_img > div figure img {
  width: 600px;
  height: 400px;
  object-fit: cover;
  display: block;
}
@media screen and (min-width: 1200px) {
  .recruit-footer .recruit-footer__inner {
    max-width: 100%;
    padding: 0 6em;
  }
}
@media screen and (max-width: 1199px) {
  .recruit-footer .recruit-footer__inner {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
  }
}
@media screen and (max-width: 1199px) and (min-width: 576px) {
  .recruit-footer .recruit-footer__inner {
    max-width: 540px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
  .recruit-footer .recruit-footer__inner {
    max-width: 720px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .recruit-footer .recruit-footer__inner {
    max-width: 960px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 1200px) {
  .recruit-footer .recruit-footer__inner {
    max-width: 1312px;
    padding: 0 1em;
  }
}
@media screen and (max-width: 991px) {
  .recruit-footer {
    padding: 7.5em 0 0;
  }
  .recruit-footer .rc-footer-company-column {
    align-items: initial;
  }
  .recruit-footer .rc-footer-company-column, .recruit-footer .rc-footer-navi-column {
    flex-direction: column;
    padding: 0 1.5em;
  }
  .recruit-footer .rc-footer-company-column {
    gap: 1em;
  }
  .recruit-footer .rc-footer-navi-column {
    gap: 1.5em;
  }
  .recruit-footer .rc-footer__copyright p {
    text-align: center;
  }
  .recruit-footer .rc-footer__menu {
    flex-direction: column;
    gap: 2em !important;
  }
  .recruit-footer .rc-footer__btn {
    max-width: 100%;
  }
  .recruit-footer .rc-footer__loop_img > div figure img {
    width: 460px;
    height: 240px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-footer .rc-footer-company-column {
    margin-bottom: 4em;
  }
}
@keyframes loop-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.icon_e-link {
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.icon_e-link::before {
  content: "";
  width: 80%;
  height: 80%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 199.687 199.687"><path d="M725.58,670.611H606.455V551.5h52.552v-21.02H585.434V691.632H746.6V611.059H725.58v59.552ZM683.538,491.934v21.021h65.713l-90.665,90.673,14.862,14.862,90.663-90.671v65.719h21.021v-101.6H683.538Z" transform="translate(-585.438 -491.938)" fill="white" /></svg>') no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.rc-mv-container.is-active + .recruit-header, .rc-mv-container.is-active ~ .recruit-header, .recruit-header.is-active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.4s;
}
@keyframes popUpBounce {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.3);
  }
  50% {
    opacity: 1;
    transform: translateY(-10px) scale(1.1);
  }
  75% {
    transform: translateY(5px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* --pseudo-opacity を「補間可能な数値」として登録（Safariで再表示アニメが一瞬になる対策の土台） */
@property --pseudo-opacity {
  syntax: "<number>";
  inherits: true;
  initial-value: 0.9;
}
.rc-section-01 {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  will-change: backdrop-filter, -webkit-backdrop-filter;
  margin-top: 0 !important;
  position: relative;
  z-index: 10;
  clip-path: inset(0);
  /* 再表示のときだけJSで .is-pseudo-anim を付与 → --pseudo-opacity を滑らかに補間（Safari対策） */
}
.rc-section-01.is-pseudo-anim {
  transition: --pseudo-opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rc-section-01::before {
  content: "";
  background: linear-gradient(90deg, #e50012 0, #fd7717 100%);
  width: 100%;
  height: 100%;
  opacity: var(--pseudo-opacity);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  will-change: opacity;
}
@media screen and (max-width: 991px) {
  .rc-section-01::after {
    border-radius: 40px 40px 0 0;
  }
}
.rc-section-01-bg {
  /* Safari対策：背景ラッパーを独立した合成レイヤー化して、backdrop-filter配下での重なり順崩れ（前面化）を防ぐ */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: opacity 1s ease;
}
.rc-section-01-bg > div {
  position: sticky;
  top: 0;
}
.rc-section-01-bg > div .wp-block-image {
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .rc-section-01-bg .wp-block-image img {
    min-height: 100vh;
    object-fit: cover;
  }
}
/* メインビジュアルエリア */
.rc-mv-container {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
  position: relative;
  width: 100%;
  z-index: 10;
}
.rc-mv-container > div {
  width: 100%;
  height: calc(100vh + 10em);
  position: relative;
  padding: 0 0 20em;
}
.rc-mv-container .rc-mv-title {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: fit-content;
  position: absolute;
  top: 12%;
  left: 6%;
  z-index: 3;
  color: #fff;
  font-size: clamp(2.4rem, calc(4.24vw + 1.41rem), 4.8rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0;
  text-align: left;
  letter-spacing: 0.1em;
}
.rc-mv-container .rc-mv-loop-title {
  width: 100%;
  position: absolute;
  bottom: 7%;
  left: 0;
  z-index: 3;
}
.rc-mv-container .rc-mv-loop-title .rc-mv-loop-title-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 2em;
  animation: loop-title 80s linear infinite;
  width: max-content;
}
.rc-mv-container .rc-mv-loop-title h3 {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: clamp(9.6rem, calc(21.92vw + 4.46rem), 22rem);
  font-weight: 500;
  letter-spacing: -4%;
  white-space: nowrap;
}
.rc-mv-container .rc-mv-loop-title h3 span {
  color: #ffea32;
}
.rc-mv-container .rc-mv-personimg-column {
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0 !important;
  height: 100vh;
}
.rc-mv-container .rc-mv-personimg-column > div {
  display: flex;
  position: relative;
}
.rc-mv-container .rc-mv-personimg-column > div figure {
  margin-bottom: 0;
}
.rc-mv-container .rc-mv-personimg-column > div:nth-child(1) {
  align-items: flex-end;
}
.rc-mv-container .rc-mv-personimg-column > div:nth-child(1) figure {
  transform: translateY(15%);
}
.rc-mv-container .rc-mv-personimg-column > div:nth-child(2) {
  align-items: center;
  margin: 0 -4% !important;
}
.rc-mv-container .rc-mv-personimg-column > div:nth-child(2) figure {
  transform: translateY(8%);
}
.rc-mv-container #rc-mv-confetti {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 991px) {
  .rc-mv-container > div {
    height: 100vh;
  }
  .rc-mv-container .rc-mv-loop-title {
    bottom: -5%;
  }
  .rc-mv-container .rc-mv-personimg-column {
    flex-wrap: nowrap !important;
    max-width: unset;
    width: 130%;
    height: 40vh;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .rc-mv-container .rc-mv-personimg-column > div:nth-child(1) {
    padding-bottom: 0;
  }
  .rc-mv-container .rc-mv-personimg-column > div:nth-child(2) {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .rc-mv-container > div {
    padding: 0 0 17.5em;
  }
  .rc-mv-container .rc-mv-title {
    font-size: 3.2rem;
    top: 12%;
    left: 4%;
  }
  .rc-mv-container .rc-mv-personimg-column {
    top: 48%;
  }
}
.rc-mv-container {
  transition: background 0.8s ease;
}
.rc-mv-container .wp-block-column {
  opacity: 0;
  transform: translateY(50px) scale(0.3);
}
.rc-mv-container .rc-mv-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.rc-mv-container .rc-mv-loop-title {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.rc-mv-container.is-active .rc-mv-personimg-column .wp-block-column {
  animation: popUpBounce 0.85s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.rc-mv-container.is-active .rc-mv-personimg-column .wp-block-column:nth-child(2) {
  animation-delay: 0.35s;
}
.rc-mv-container.is-active .rc-mv-personimg-column .wp-block-column:nth-child(1) {
  animation-delay: 0.56s;
}
.rc-mv-container.is-active .rc-mv-personimg-column .wp-block-column:nth-child(3) {
  animation-delay: 0.77s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.95s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.05s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.1s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.15s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(7) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.25s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(8) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.3s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(9) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.35s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(10) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.4s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(11) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.45s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(12) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.5s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(13) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.55s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(14) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.6s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(15) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.65s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(16) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.7s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(17) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.75s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(18) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.8s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(19) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.85s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(20) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.9s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(21) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.95s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(22) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(23) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.05s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(24) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.1s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(25) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.15s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(26) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.2s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(27) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.25s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(28) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.3s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(29) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.35s;
}
.rc-mv-container.is-active .rc-mv-title .char:nth-child(30) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.4s;
}
.rc-mv-container.is-active .rc-mv-loop-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.8s;
}
canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10 !important;
}
.rc-mv-title {
  position: relative;
  z-index: 2;
}
.rc-about-container {
  margin-bottom: 0 !important;
  position: relative;
  z-index: 10;
}
.rc-about-container > div {
  padding: 15em 0;
}
.rc-about-container .rc-about-txt-column {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  margin: 0 auto 10em;
}
@media screen and (min-width: 576px) {
  .rc-about-container .rc-about-txt-column {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .rc-about-container .rc-about-txt-column {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .rc-about-container .rc-about-txt-column {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .rc-about-container .rc-about-txt-column {
    max-width: 1312px;
    padding: 0 1em;
  }
}
.rc-about-container .rc-about-txt-column > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .rc-about-container .rc-about-txt-column > div:nth-child(1) {
    flex-basis: 60% !important;
  }
  .rc-about-container .rc-about-txt-column > div:nth-child(2) {
    flex-basis: 40% !important;
  }
}
.rc-about-container .rc-about-txt-column > div h2 {
  color: transparent;
  display: flex;
  flex-direction: column;
  font-size: clamp(4rem, calc(4.24vw + 3.01rem), 6.4rem);
  font-weight: 700;
  gap: 0.35em;
  max-width: -webkit-fit-content;
  max-width: fit-content;
}
.rc-about-container .rc-about-txt-column > div h2 .txt-bg {
  display: inline-block;
  position: relative;
  max-width: -webkit-fit-content;
  max-width: fit-content;
  max-height: 1.4em;
}
.rc-about-container .rc-about-txt-column > div h2 .txt-bg::before {
  content: "";
  position: absolute;
  inset: -0.1em 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}
.rc-about-container .rc-about-txt-column > div h2 .txt-grad {
  display: inline-block;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #e50012 0, #fd7717 100%);
  line-height: 1;
  max-width: -webkit-fit-content;
  max-width: fit-content;
  top: -0.15em;
  padding: 0 0.25em;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  clip-path: inset(-0.2em 100% -0.2em 0);
  transition: clip-path 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.rc-about-container .rc-about-txt-column > div p {
  color: #fff;
  font-size: clamp(2rem, calc(0.71vw + 1.83rem), 2.4rem);
  line-height: 2.4;
  margin-bottom: 0;
  /*アニメーション用*/
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .rc-about-container .rc-about-txt-column > div p br {
    display: none;
  }
}
.rc-about-container .rc-about-txt-column > div:nth-child(2) figure {
  max-width: 400px;
  /*アニメーション用*/
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 991px) {
  .rc-about-container .rc-about-txt-column > div:nth-child(2) {
    display: none;
  }
}
.rc-about-container .rc-about-personimg-column {
  margin-bottom: 0 !important;
  padding: 0 1em;
}
.rc-about-container .rc-about-personimg-column > div {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.rc-about-container .rc-about-personimg-column > div:nth-child(1) {
  transform: translateY(80px);
}
.rc-about-container .rc-about-personimg-column > div:nth-child(2) {
  transform: translateY(-80px);
}
.rc-about-container .rc-about-personimg-column > div:nth-child(3) {
  transform: translateY(80px);
}
.rc-about-container .rc-about-personimg-column > div figure {
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .rc-about-container .rc-about-personimg-column > div:nth-child(1) {
    margin-top: 12em !important;
  }
  .rc-about-container .rc-about-personimg-column > div:nth-child(2) {
    margin-top: 6em !important;
  }
}
.rc-about-container .rc-about-personimg-column.is-in > div {
  opacity: 1;
  transform: translateY(0);
}
.rc-about-container .rc-about-personimg-column.is-in > div:nth-child(3) {
  transition-delay: 0s;
}
.rc-about-container .rc-about-personimg-column.is-in > div:nth-child(2) {
  transition-delay: 0.2s;
}
.rc-about-container .rc-about-personimg-column.is-in > div:nth-child(1) {
  transition-delay: 0.4s;
}
.rc-about-container.is-in .rc-about-txt-column > div h2 .txt-bg::before {
  transform: scaleX(1);
}
.rc-about-container.is-in .rc-about-txt-column > div h2 .txt-bg:nth-child(1)::before {
  transition-delay: 0s;
}
.rc-about-container.is-in .rc-about-txt-column > div h2 .txt-bg:nth-child(2)::before {
  transition-delay: 0.4s;
}
.rc-about-container.is-in .rc-about-txt-column > div h2 .txt-bg:nth-child(3)::before {
  transition-delay: 0.8s;
}
.rc-about-container.is-in .rc-about-txt-column > div h2 .txt-grad {
  clip-path: inset(-0.2em 0% -0.2em 0);
}
.rc-about-container.is-in .rc-about-txt-column > div h2 .txt-bg:nth-child(1) .txt-grad {
  transition-delay: 0.6s;
}
.rc-about-container.is-in .rc-about-txt-column > div h2 .txt-bg:nth-child(2) .txt-grad {
  transition-delay: 1s;
}
.rc-about-container.is-in .rc-about-txt-column > div h2 .txt-bg:nth-child(3) .txt-grad {
  transition-delay: 1.4s;
}
.rc-about-container.is-in .rc-about-txt-column > div p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.1s;
}
.rc-about-container.is-in .rc-about-txt-column > div:nth-child(2) figure {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 2.3s;
}
@media screen and (max-width: 991px) {
  .rc-about-container > div {
    padding: 12.5em 0;
  }
  .rc-about-container .rc-about-txt-column {
    flex-direction: column;
    padding: 0 1em;
  }
  .rc-about-container .rc-about-txt-column > div:nth-child(2) {
    padding-top: 2em;
  }
  .rc-about-container .rc-about-txt-column > div:nth-child(2) figure {
    max-width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .rc-about-container > div {
    padding: 10em 0;
  }
  .rc-about-container .rc-about-txt-column > div h2 {
    font-size: 4rem;
  }
  .rc-about-container .rc-about-txt-column > div p {
    font-size: 1.6rem;
  }
  .rc-about-container .rc-about-personimg-column {
    flex-direction: column-reverse;
    gap: 0 !important;
  }
  .rc-about-container .rc-about-personimg-column > div {
    position: relative;
  }
  .rc-about-container .rc-about-personimg-column > div .wp-block-image {
    max-width: 60%;
  }
  .rc-about-container .rc-about-personimg-column > div:nth-child(1) {
    z-index: 10;
  }
  .rc-about-container .rc-about-personimg-column > div:nth-child(1) .wp-block-image {
    margin-left: auto;
    margin-right: 2em;
    margin-top: -8em;
  }
  .rc-about-container .rc-about-personimg-column > div:nth-child(2) {
    z-index: 5;
  }
  .rc-about-container .rc-about-personimg-column > div:nth-child(2) .wp-block-image {
    margin-right: auto;
    margin-top: -8em;
  }
  .rc-about-container .rc-about-personimg-column > div:nth-child(3) {
    z-index: 0;
  }
  .rc-about-container .rc-about-personimg-column > div:nth-child(3) .wp-block-image {
    margin-left: auto;
  }
}
.rc-section-02 {
  will-change: transform;
  padding-bottom: 140vh;
  position: relative;
  z-index: 0;
}
.rc-section-02::before {
  content: "";
  width: 100%;
  height: 10em;
  background: linear-gradient(90deg, #e50012 0, #fd7717 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.rc-section-02 .rc-section-02-inner {
  background: #f7f6f6;
  border-radius: 80px;
  margin-bottom: 0;
  padding: 5em 0 15em;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 991px) {
  .rc-section-02 {
    padding-bottom: 0;
  }
  .rc-section-02 .rc-section-02-inner {
    border-radius: 40px;
    padding: 6em 1em;
  }
}
@media screen and (max-width: 767px) {
  .rc-section-02 .rc-section-02-inner {
    overflow: hidden;
    padding: 7.5em 1.5em;
  }
}
.rc-section-02-bg {
  /* Safari対策：背景ラッパーを独立した合成レイヤー化して、backdrop-filter配下での重なり順崩れ（前面化）を防ぐ */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.rc-section-02-bg > div {
  position: sticky;
  top: 0;
}
@media screen and (max-width: 991px) {
  .rc-section-02-bg {
    margin: -2em 0;
    position: relative;
  }
  .rc-section-02-bg > div .wp-block-image {
    position: static;
  }
}
@media screen and (max-width: 767px) {
  .rc-section-02-bg > div .wp-block-image {
    position: static;
  }
  .rc-section-02-bg > div .wp-block-image img {
    min-height: 360px;
    object-fit: cover;
  }
}
.rc-data-section {
  margin-bottom: 0;
  position: relative;
  z-index: 10;
}
.rc-data-section > div {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .rc-data-section > div {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .rc-data-section > div {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .rc-data-section > div {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .rc-data-section > div {
    max-width: 1312px;
    padding: 0 1em;
  }
}
.rc-data-section::before {
  content: "";
  position: absolute;
  top: -6em;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('data:image/svg+xml;utf8,<svg width="1393" height="1524" viewBox="0 0 1393 1524" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1054.69 0.0851786H1055.4C1056.33 -1.78671 996.808 27.7857 992.048 30.5684C855.893 110.192 966.876 142.357 1052.37 178.036C1071.47 186.015 1090.16 194.795 1108.39 204.348C1376.99 345.653 1475.32 614.73 1317 865.524C1276.83 929.166 1224.87 988.628 1166.21 1038.56C887.874 1275.51 498.849 1401.7 140.308 1491.59C94.9831 1502.66 45.9626 1514.62 0.0950336 1524L0 1252.86L0.126602 938.122C16.764 937.832 33.9155 938.366 50.638 938.297C91.5123 938.244 132.384 937.664 173.241 936.55C296.565 933.583 419.574 923.605 541.566 906.655C730.119 879.43 1002.37 816.612 1121.28 668.231C1217.33 548.376 1157.04 403.935 1055.55 304.572C1038.45 287.762 1020.14 272.051 1000.72 257.549C956.117 223.893 885.651 180.87 876.198 122.969C862.157 36.9653 985.321 9.58163 1054.69 0.0851786Z" fill="url(%23paint0_linear_293_83)"></path><defs><linearGradient id="paint0_linear_293_83" x1="693.06" y1="9.97057e-08" x2="698.922" y2="1524" gradientUnits="userSpaceOnUse"><stop stop-color="%23FD7717" stop-opacity="0"></stop><stop offset="0.3" stop-color="%23FD7717"></stop><stop offset="0.697115" stop-color="%23FD7717"></stop><stop offset="1" stop-color="%23E40315"></stop></linearGradient></defs></svg>') no-repeat left top / contain;
  opacity: 0;
  max-width: 120%;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.4s;
  z-index: 0;
  pointer-events: none;
}
.rc-data-section.is-in::before {
  opacity: 1;
  transform: translateY(0);
  mask-position: 0 0;
  -webkit-mask-position: 0 0;
}
.rc-data-section.is-in .rc-data-en .char {
  opacity: 1;
  transform: translateY(0);
}
.rc-data-section.is-in .rc-data-jp span {
  opacity: 1;
  transform: translateX(0);
}
.rc-data-section.is-in .rc-data-jp span:nth-child(1) {
  transition-delay: 0.5s;
}
.rc-data-section.is-in .rc-data-jp span:nth-child(3) {
  transition-delay: 0.65s;
}
.rc-data-section.is-in .rc-data-card.active-card, .rc-data-section.is-in .rc-data-card3.active-card {
  opacity: 1;
  transform: translateY(0);
}
.rc-data-section.is-in .rc-data-card.active-card .wp-block-heading, .rc-data-section.is-in .rc-data-card.active-card p, .rc-data-section.is-in .rc-data-card.active-card figure, .rc-data-section.is-in .rc-data-card3.active-card .wp-block-heading, .rc-data-section.is-in .rc-data-card3.active-card p, .rc-data-section.is-in .rc-data-card3.active-card figure {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.rc-data-section.is-in .rc-data-card.active-card .rc-age-chart .segment-40 {
  stroke-dasharray: 228.704 816.8;
  transition-delay: 0.4s;
}
.rc-data-section.is-in .rc-data-card.active-card .rc-age-chart .segment-30 {
  stroke-dasharray: 196.032 816.8;
  transition-delay: 0.6s;
}
.rc-data-section.is-in .rc-data-card.active-card .rc-age-chart .segment-20 {
  stroke-dasharray: 98.016 816.8;
  transition-delay: 0.8s;
}
.rc-data-section.is-in .rc-data-card.active-card .rc-age-chart .segment-60 {
  stroke-dasharray: 81.68 816.8;
  transition-delay: 1s;
}
.rc-data-section.is-in .rc-data-card.active-card .rc-age-chart .segment-50 {
  stroke-dasharray: 212.368 816.8;
  transition-delay: 1.2s;
}
.rc-data-section.is-in .rc-data-card.active-card .chart-label {
  opacity: 1;
}
.rc-data-section.is-in .rc-data-card.active-card .chart-label.label-40 {
  transition-delay: 1.4s;
}
.rc-data-section.is-in .rc-data-card.active-card .chart-label.label-30 {
  transition-delay: 1.6s;
}
.rc-data-section.is-in .rc-data-card.active-card .chart-label.label-20 {
  transition-delay: 1.8s;
}
.rc-data-section.is-in .rc-data-card.active-card .chart-label.label-60 {
  transition-delay: 2s;
}
.rc-data-section.is-in .rc-data-card.active-card .chart-label.label-50 {
  transition-delay: 2.2s;
}
@media screen and (max-width: 991px) {
  .rc-data-section::before {
    max-width: unset;
    width: 240%;
    top: 0;
    right: unset;
    left: 10%;
    transform: translate(-50%, 0);
  }
}
@media screen and (max-width: 991px) {
  .rc-data-section::before {
    max-width: unset;
    width: 240%;
    top: -4.5%;
    right: unset;
    left: -110%;
  }
}
.rc-data-title-wrap {
  position: relative;
  z-index: 10;
}
.rc-data-title-wrap > div {
  max-width: -webkit-fit-content;
  max-width: fit-content;
  margin-bottom: 6em;
  position: relative;
}
.rc-data-title-wrap > div .rc-data-en {
  margin-bottom: 0;
}
.rc-data-title-wrap > div .rc-data-jp {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .rc-data-title-wrap > div .rc-data-jp {
    right: unset;
    left: 0.5em;
    bottom: -3em;
  }
  .rc-data-title-wrap > div .rc-data-jp br {
    display: none;
  }
}
.rc-data-en {
  font-family: "Jost", sans-serif;
  font-size: clamp(10rem, calc(10.61vw + 7.51rem), 16rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -4%;
  max-width: -webkit-fit-content;
  max-width: fit-content;
  clip-path: inset(-30% -5% 0 -5%);
}
.rc-data-en .char {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.rc-data-jp {
  font-size: clamp(1.6rem, calc(0.71vw + 1.43rem), 2rem);
  font-weight: 700;
}
.rc-data-jp span {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.rc-data-jp span:nth-child(1) {
  transform: translateX(-50px);
}
.rc-data-jp span:nth-child(3) {
  transform: translateX(-50px);
}
.rc-data-column {
  gap: 1.5em !important;
  margin-bottom: 1.5em;
}
.rc-data-column > div {
  flex-basis: 100% !important;
}
.rc-data-column > div .inner-data-column {
  flex-wrap: nowrap !important;
  gap: 1em !important;
  margin-bottom: 0;
}
.rc-data-column > div .inner-data-column > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.rc-data-column > div .inner-data-column > div:nth-child(1) {
  max-width: -webkit-fit-content;
  max-width: fit-content;
}
.rc-data-column > div .inner-data-column > div:nth-child(2) {
  max-width: -webkit-fit-content;
  max-width: fit-content;
}
.rc-data-column > div .inner-data-column > div:nth-child(2) p {
  font-size: clamp(4rem, calc(4.24vw + 3.01rem), 6.4rem);
  font-weight: 500;
  margin-bottom: 0 !important;
}
@media screen and (min-width: 992px) {
  .rc-data-column {
    flex-wrap: wrap !important;
  }
  .rc-data-column > div {
    flex-basis: calc((100% / 2) - 1em) !important;
  }
}
@media screen and (max-width: 991px) {
  .rc-data-column {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .rc-data-column {
    gap: 1em !important;
    margin-bottom: 1em;
  }
}
.rc-data2-column {
  gap: 1.5em !important;
  margin-bottom: 0;
  padding-bottom: 10em;
}
@media screen and (min-width: 768px) {
  .rc-data2-column > div .rc-data-icon {
    width: 75px;
    height: 60px;
    right: 1.5em;
  }
}
.rc-data2-column > div:nth-child(1) h3 span {
  display: block;
  padding-left: 0;
}
.rc-data2-column > div .inner-data-column {
  gap: 0 !important;
  margin-bottom: 0;
}
.rc-data2-column > div .inner-data-column > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.rc-data2-column > div .inner-data-column.bonus {
  gap: 1em !important;
}
.rc-data2-column > div .inner-data-column.bonus > div {
  max-width: -webkit-fit-content;
  max-width: fit-content;
}
.rc-data2-column > div .inner-data-column.bonus > div:nth-child(1) p, .rc-data2-column > div .inner-data-column.bonus > div:nth-child(3) p {
  font-size: clamp(4rem, calc(4.24vw + 3.01rem), 6.4rem);
  font-weight: 500;
  margin-bottom: 0 !important;
}
.rc-data2-column > div .inner-data-column.gender > div {
  max-width: -webkit-fit-content;
  max-width: fit-content;
}
.rc-data2-column > div .inner-data-column.gender > div:nth-child(2) p {
  background: linear-gradient(90deg, #e50012 0, #fd7717 100%);
  font-size: clamp(12rem, calc(14.14vw + 8.69rem), 20rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0 !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rc-data2-column > div .inner-data-column.gender > div .txt-option-gender {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: -0.5em;
}
@media screen and (max-width: 767px) {
  .rc-data2-column > div .inner-data-column.gender > div .txt-option-gender {
    font-size: 2rem;
  }
}
@media screen and (max-width: 991px) {
  .rc-data2-column {
    flex-direction: column;
    padding-bottom: 10em;
  }
}
@media screen and (max-width: 767px) {
  .rc-data2-column {
    gap: 1em !important;
    padding-bottom: 7.5em;
  }
}
.rc-data-card, .rc-data-card3 {
  background: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  opacity: 0;
  padding: 2.5em;
  position: relative;
  transform: translateY(40px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (min-width: 768px) {
  .rc-data-card .rc-data-icon, .rc-data-card3 .rc-data-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 0;
    position: absolute;
    top: 2.5em;
    right: 2.5em;
    z-index: 1;
  }
}
@media screen and (max-width: 767px) {
  .rc-data-card .rc-data-icon, .rc-data-card3 .rc-data-icon {
    margin-bottom: 0;
    position: absolute;
    top: 1.5em;
    right: 1.5em;
    z-index: 1;
    text-align: right;
  }
  .rc-data-card .rc-data-icon svg, .rc-data-card3 .rc-data-icon svg {
    max-width: 40px;
    max-height: 40px;
  }
}
.rc-data-card .wp-block-heading, .rc-data-card3 .wp-block-heading, .rc-data-card p, .rc-data-card3 p, .rc-data-card figure, .rc-data-card3 figure {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.rc-data-card h3, .rc-data-card3 h3 {
  color: #000;
  display: flex;
  align-items: center;
  font-size: clamp(3.2rem, calc(1.41vw + 2.87rem), 4rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0;
  padding: 0 0 0 0.5em;
  position: relative;
}
.rc-data-card h3 span, .rc-data-card3 h3 span {
  font-size: 1.6rem;
  font-weight: 500;
  padding-left: 0.5em;
}
.rc-data-card h3.txt-column, .rc-data-card3 h3.txt-column {
  align-items: flex-start;
  flex-direction: column;
}
.rc-data-card h3.txt-column span, .rc-data-card3 h3.txt-column span {
  padding-left: 0;
  margin-left: -1.25em;
}
.rc-data-card h3::before, .rc-data-card3 h3::before {
  content: "";
  width: 16px;
  height: 18px;
  background: url('data:image/svg+xml;utf8,<svg width="16" height="18" viewBox="0 0 16 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.63915 0.0951C7.86185 -0.0316998 8.13815 -0.0317001 8.36084 0.0950997L15.6497 4.24538C15.8668 4.36896 16 4.59432 16 4.83785L16 13.1621C16 13.4057 15.8668 13.631 15.6497 13.7546L8.36085 17.9049C8.13815 18.0317 7.86185 18.0317 7.63915 17.9049L0.350266 13.7546C0.133234 13.631 0 13.4057 0 13.1621L0 4.83785C0 4.59432 0.133233 4.36896 0.350266 4.24538L7.63915 0.0951Z" fill="url(%23paint0_linear_293_133)"/><defs><linearGradient id="paint0_linear_293_133" x1="16" y1="9" x2="0" y2="9" gradientUnits="userSpaceOnUse"><stop stop-color="%23FD7717"/><stop offset="1" stop-color="%23E40315"/></linearGradient></defs></svg>') no-repeat center / contain;
  position: absolute;
  top: 0.6em;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .rc-data-card, .rc-data-card3 {
    min-height: unset;
    padding: 1.5em;
  }
  .rc-data-card h3, .rc-data-card3 h3 {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    font-size: 2.8rem;
    margin-bottom: 1.25em;
    padding: 0 0 0 0.75em;
  }
  .rc-data-card h3 span, .rc-data-card3 h3 span {
    padding-left: 0;
  }
  .rc-data-card h3::before, .rc-data-card3 h3::before {
    top: 0.5em;
  }
}
.rc-count-num {
  background-image: linear-gradient(90deg, #e50012 0, #fd7717 100%);
  font-family: "Jost", sans-serif;
  font-size: clamp(12rem, calc(14.14vw + 8.69rem), 20rem);
  font-weight: 500;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -4%;
  line-height: 1;
  margin-bottom: 0 !important;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .rc-count-num {
    font-size: 12rem;
  }
}
.rc-age-graph-wrap {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .rc-age-graph-wrap {
    max-width: 210px;
  }
  .rc-age-graph-wrap .chart-label .age, .rc-age-graph-wrap .chart-label .num {
    font-size: 1.3rem;
  }
  .rc-age-graph-wrap .chart-label .num strong {
    font-size: 3.6rem;
  }
}
.rc-age-chart {
  width: 100%;
  height: auto;
  display: block;
  transform: rotate(-90deg);
}
.rc-age-chart .segment-40 {
  stroke-dasharray: 0 816.8;
  stroke-dashoffset: 0;
  transition: stroke-dasharray 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.rc-age-chart .segment-30 {
  stroke-dasharray: 0 816.8;
  stroke-dashoffset: -228.704;
  transition: stroke-dasharray 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.rc-age-chart .segment-20 {
  stroke-dasharray: 0 816.8;
  stroke-dashoffset: -424.736;
  transition: stroke-dasharray 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.rc-age-chart .segment-60 {
  stroke-dasharray: 0 816.8;
  stroke-dashoffset: -522.752;
  transition: stroke-dasharray 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.rc-age-chart .segment-50 {
  stroke-dasharray: 0 816.8;
  stroke-dashoffset: -604.432;
  transition: stroke-dasharray 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.chart-label {
  display: flex;
  flex-direction: column;
  position: absolute;
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.chart-label::after {
  content: "";
  width: 2em;
  height: 1px;
  background: #000;
  position: absolute;
  z-index: 0;
}
.chart-label__line {
  stroke: #000;
  stroke-width: 1;
  fill: none;
}
.chart-label .age {
  background: linear-gradient(90deg, #e50012 0, #fd7717 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  max-width: -webkit-fit-content;
  max-width: fit-content;
}
.chart-label .num {
  background: linear-gradient(90deg, #e50012 0, #fd7717 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  fill: #e50012;
  font-family: "Jost", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  max-width: -webkit-fit-content;
  max-width: fit-content;
}
.chart-label .num strong {
  font-size: 4.8rem;
  font-weight: 500;
}
.chart-label.label-40 {
  top: 0;
  right: 0;
}
.chart-label.label-40::after {
  width: 1px;
  height: 2em;
  top: 100%;
  left: 0;
  transform: translate(0, 0) rotate(215deg);
}
.chart-label.label-30 {
  bottom: 0;
  right: 0;
}
.chart-label.label-30::after {
  width: 1px;
  height: 2em;
  bottom: 100%;
  left: 0;
  transform: translate(0, 0) rotate(-215deg);
}
.chart-label.label-20 {
  bottom: 0;
  left: 20%;
}
.chart-label.label-20::after {
  width: 1px;
  height: 2em;
  bottom: 80%;
  right: 20%;
  transform: translate(0, 0) rotate(200deg);
}
.chart-label.label-60 {
  bottom: 25%;
  left: 0;
}
.chart-label.label-60::after {
  width: 1.5em;
  height: 1px;
  top: 35%;
  left: 85%;
  transform: translate(0, 0) rotate(-25deg);
}
.chart-label.label-50 {
  top: 0;
  left: 0;
}
.chart-label.label-50::after {
  width: 1px;
  height: 2em;
  top: 100%;
  right: 0;
  transform: translate(0, 0) rotate(-215deg);
}
@media screen and (max-width: 767px) {
  .chart-label.label-40 {
    top: 0;
    right: 0;
  }
}
.rc-banner-section {
  margin-bottom: 0;
  position: relative;
  z-index: 10;
}
.rc-recruit-column, .rc-culture-column {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 0;
}
@media screen and (min-width: 576px) {
  .rc-recruit-column, .rc-culture-column {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .rc-recruit-column, .rc-culture-column {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .rc-recruit-column, .rc-culture-column {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .rc-recruit-column, .rc-culture-column {
    max-width: 1312px;
    padding: 0 1em;
  }
}
@media screen and (max-width: 991px) {
  .rc-recruit-column, .rc-culture-column {
    flex-direction: column;
  }
}
.rc-recruit-column {
  margin-bottom: 5em;
}
.rc-recruit-column > div {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.rc-recruit-column > div .rc-link {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.rc-recruit-column > div::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #e50012 0, #fd7717 100%);
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.rc-recruit-column > div::after {
  content: "";
  width: 142px;
  height: 142px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: url('data:image/svg+xml;utf8,<svg width="37" height="37" viewBox="0 0 37 37" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M33.9693 4.52931L1.86498 36.6336L-3.36566e-06 34.7686L32.1043 2.66433H0.932487V6.88425e-05H36.6335V35.7011H33.9693L33.9693 4.52931Z" fill="white"/></svg>') no-repeat center / contain;
  background-size: 40px;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 2.5em;
  right: 2.5em;
  transition: 0.3s all;
  z-index: 2;
}
.rc-recruit-column > div .title-wrap {
  margin-top: 0;
  margin-bottom: 0;
  position: absolute;
  top: 2.5em;
  left: 2.5em;
  z-index: 3;
}
.rc-recruit-column > div .title-wrap h2 {
  color: #fff;
  font-size: clamp(3.2rem, calc(1.41vw + 2.87rem), 4rem);
  font-weight: 700;
  margin-bottom: 0;
}
.rc-recruit-column > div .title-wrap p {
  color: #fff;
  font-size: clamp(1.6rem, calc(0.71vw + 1.43rem), 2rem);
  font-weight: 500;
}
.rc-recruit-column > div .rc-recruit-en {
  width: 100%;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 12rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  letter-spacing: -4px;
  line-height: 1;
  margin-bottom: 0;
  opacity: 0.15;
  position: absolute;
  bottom: -0.15em;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
}
.rc-recruit-column > div .wp-block-image {
  margin-bottom: 0;
  position: relative;
  z-index: 0;
}
.rc-recruit-column > div .wp-block-image img {
  transition: 0.3s all;
}
.rc-recruit-column > div:hover::after {
  transform: rotate(405deg);
}
.rc-recruit-column > div:hover .wp-block-image img {
  transform: scale(1.15);
}
@media screen and (max-width: 991px) {
  .rc-recruit-column > div::after {
    width: 82px;
    height: 82px;
    background-size: 20px;
    bottom: 2em;
    right: 2em;
  }
  .rc-recruit-column > div .title-wrap {
    top: 2em;
    left: 2em;
  }
  .rc-recruit-column > div .title-wrap h2 {
    margin-bottom: 0;
  }
  .rc-recruit-column > div .rc-recruit-en {
    font-size: clamp(7.2rem, calc(1.41vw + 6.87rem), 8rem);
  }
}
.rc-culture-column > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rc-culture-column > div .wp-block-image {
  margin-bottom: 0;
}
.rc-culture-column > div .wp-block-image a {
  display: flex;
  min-height: 100%;
}
.rc-culture-column > div .wp-block-image a img {
  display: flex;
  min-height: 100%;
  object-fit: cover;
}
.rc-culture-column > div:nth-child(1) ul > li a {
  border-radius: 0 0 8px 8px;
}
.rc-culture-column > div:nth-child(1) .wp-block-image {
  border-radius: 8px 8px 0 0;
  min-height: 360px;
  overflow: hidden;
}
.rc-culture-column > div:nth-child(1) .wp-block-image img {
  transition: 0.3s all;
}
.rc-culture-column > div:nth-child(1):hover .wp-block-image img {
  transform: scale(1.1);
}
.rc-culture-column > div ul {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  list-style: none;
  height: 100%;
  margin-bottom: 0 !important;
  padding-left: 0;
}
.rc-culture-column > div ul > li {
  position: relative;
  height: 100%;
}
.rc-culture-column > div ul > li a {
  background: #fff;
  border-radius: 10px;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: clamp(2rem, calc(0.71vw + 1.83rem), 2.4rem);
  font-weight: 700;
  min-height: 110px;
  height: 100%;
  padding: 0 2em;
  position: relative;
}
.rc-culture-column > div ul > li a::before {
  content: "";
  width: 64px;
  height: 64px;
  background: linear-gradient(90deg, #e50012 0, #fd7717 100%);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translate(0, -50%);
  transition: 0.3s all;
  z-index: 1;
}
.rc-culture-column > div ul > li a::after {
  content: "";
  width: 64px;
  height: 64px;
  background: url('data:image/svg+xml;utf8,<svg width="37" height="37" viewBox="0 0 37 37" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M33.9693 4.52931L1.86498 36.6336L-3.36566e-06 34.7686L32.1043 2.66433H0.932487V6.88425e-05H36.6335V35.7011H33.9693L33.9693 4.52931Z" fill="white"/></svg>') no-repeat center / contain;
  background-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translate(0, -50%);
  transition: 0.3s all;
  z-index: 1;
}
.rc-culture-column > div ul > li:hover a::before {
  transform: translate(0, -50%) scale(1.1);
}
.rc-culture-column > div ul > li:hover a::after {
  transform: translate(0, -50%) rotate(405deg) scale(1.1);
}
@media screen and (min-width: 992px) {
  .rc-culture-column > div:nth-child(1) {
    flex-basis: 60% !important;
  }
  .rc-culture-column > div:nth-child(2) {
    flex-basis: 40% !important;
  }
}
@media screen and (max-width: 767px) {
  .rc-culture-column > div:nth-child(1) .wp-block-image {
    min-height: unset;
  }
  .rc-culture-column > div ul > li a {
    font-size: 2rem;
  }
  .rc-culture-column > div ul > li a::before {
    width: 56px;
    height: 56px;
    right: 1em;
  }
  .rc-culture-column > div ul > li a::after {
    width: 56px;
    height: 56px;
    right: 1em;
  }
}
.rc-section-03 {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(255, 255, 255, 0.5) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(255, 255, 255, 0.5) calc(100% - 1px));
  background-size: 32px 32px;
  background-repeat: repeat;
  background-position: center center;
  background-color: #fdebeb;
  border-radius: 80px;
  margin: -6em 0;
  padding: 12em 0 10em;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 991px) {
  .rc-section-03 {
    border-radius: 40px;
    padding: 7.5em 1.5em;
  }
}
.rc-flow-column, .rc-faq-column {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 576px) {
  .rc-flow-column, .rc-faq-column {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .rc-flow-column, .rc-faq-column {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .rc-flow-column, .rc-faq-column {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .rc-flow-column, .rc-faq-column {
    max-width: 1312px;
    padding: 0 1em;
  }
}
.rc-flow-column > div:nth-child(1) .rc-flow-title-wrap .rc-flow-en, .rc-faq-column > div:nth-child(1) .rc-flow-title-wrap .rc-flow-en {
  background: linear-gradient(90deg, #e50012 0, #fd7717 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Jost", sans-serif;
  font-size: clamp(2rem, calc(1.41vw + 1.67rem), 2.8rem);
  font-weight: 500;
  max-width: -webkit-fit-content;
  max-width: fit-content;
  margin-bottom: -0.25em;
  /* アニメーション用 */
  display: inline-block;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.rc-flow-column > div:nth-child(1) .rc-flow-title-wrap .rc-flow-jp, .rc-faq-column > div:nth-child(1) .rc-flow-title-wrap .rc-flow-jp {
  font-size: clamp(4rem, calc(2.83vw + 3.34rem), 5.6rem);
  font-weight: 700;
  margin-bottom: 0;
  /* アニメーション用 */
  overflow: hidden;
}
.rc-flow-column > div:nth-child(1) .rc-flow-title-wrap .rc-flow-jp .char, .rc-faq-column > div:nth-child(1) .rc-flow-title-wrap .rc-flow-jp .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(1em);
  transition: opacity 0.55s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.rc-flow-column > div:nth-child(1) .rc-flow-title-wrap .rc-flow-jp .char-space, .rc-faq-column > div:nth-child(1) .rc-flow-title-wrap .rc-flow-jp .char-space {
  display: inline-block;
}
.rc-flow-column > div:nth-child(1) .rc-flow-title-wrap.is-in .rc-flow-jp .char, .rc-faq-column > div:nth-child(1) .rc-flow-title-wrap.is-in .rc-flow-jp .char {
  opacity: 1;
  transform: translateY(0);
}
.rc-flow-column > div:nth-child(1) .rc-flow-title-wrap.is-in .rc-flow-en, .rc-faq-column > div:nth-child(1) .rc-flow-title-wrap.is-in .rc-flow-en {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (min-width: 992px) {
  .rc-flow-column > div:nth-child(1), .rc-faq-column > div:nth-child(1) {
    flex-basis: 40% !important;
  }
  .rc-flow-column > div:nth-child(2), .rc-faq-column > div:nth-child(2) {
    flex-basis: 60% !important;
  }
}
.rc-main .rc-flow-column {
  margin-bottom: 10em;
}
.rc-flow-column .rc-flow-inner-column {
  background: #fff;
  border-radius: 10px;
  padding: 2.5em;
  position: relative;
}
.rc-flow-column .rc-flow-inner-column > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rc-flow-column .rc-flow-inner-column > div:nth-child(2) {
  max-width: 80px;
}
.rc-flow-column .rc-flow-inner-column > div:nth-child(2) svg {
  margin-bottom: 0;
}
.rc-flow-column .rc-flow-inner-column > div .title-column {
  gap: 1em !important;
  margin-bottom: 0.5em;
}
.rc-flow-column .rc-flow-inner-column > div .title-column > div {
  display: flex;
  align-items: center;
}
.rc-flow-column .rc-flow-inner-column > div .title-column > div:nth-child(1) {
  max-width: -webkit-fit-content;
  max-width: fit-content;
}
.rc-flow-column .rc-flow-inner-column > div .title-column > div:nth-child(1) p {
  background: linear-gradient(90deg, #e50012 0, #fd7717 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Jost", sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 0;
}
.rc-flow-column .rc-flow-inner-column > div p {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0;
}
.rc-flow-column .rc-flow-inner-column > div h3 {
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 0;
}
.rc-flow-column .rc-flow-inner-column:not(:last-child) {
  margin-bottom: 2.5em;
}
.rc-flow-column .rc-flow-inner-column:not(:last-child)::before {
  content: "";
  width: 30px;
  height: 24px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: 100%;
  left: 5em;
  z-index: 0;
}
@media screen and (max-width: 991px) {
  .rc-flow-column .rc-flow-inner-column > div:nth-child(2) {
    position: absolute;
    top: 2em;
    right: 2em;
  }
}
@media screen and (max-width: 767px) {
  .rc-flow-column .rc-flow-inner-column {
    padding: 1.5em;
  }
  .rc-flow-column .rc-flow-inner-column > div:nth-child(2) {
    max-width: 40px;
    height: 40px;
  }
  .rc-flow-column .rc-flow-inner-column:not(:last-child)::before {
    left: 50%;
    transform: translate(-50%, 0);
  }
  .rc-main .rc-flow-column {
    margin-bottom: 5em;
  }
}
.rc-faq-column .rc-faq-wrap {
  background: #fff;
  border-radius: 10px;
  margin-top: 0 !important;
  padding: 2.5em;
}
.rc-faq-column .rc-faq-wrap > div h3 {
  font-size: clamp(1.8rem, calc(0.35vw + 1.72rem), 2rem);
  font-weight: 500;
  margin-bottom: 0;
  padding-left: 1.5em;
  position: relative;
}
.rc-faq-column .rc-faq-wrap > div h3::before {
  content: "Q.";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.rc-faq-column .rc-faq-wrap > div .acd_item {
  margin-top: 1em;
  margin-bottom: 0;
}
.rc-faq-column .rc-faq-wrap > div .acd_item > div p {
  margin-bottom: 0;
}
.rc-faq-column .rc-faq-wrap:not(:last-child) {
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .rc-faq-column .rc-faq-wrap {
    padding: 1em;
  }
  .rc-faq-column .rc-faq-wrap > div h3 {
    font-size: 1.8rem;
    padding-left: 1.25em;
  }
  .rc-faq-column .rc-faq-wrap:not(:last-child) {
    margin-bottom: 1em;
  }
}
/*-------------------------------
          アコーディオン
--------------------------------*/
@keyframes tooltipShow {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.acd {
  cursor: pointer;
  margin: 0 auto;
}
.acd .acd_trigger {
  display: block;
  position: relative;
}
.acd .acd_trigger::after {
  content: "";
  width: 18px;
  height: 16px;
  background: linear-gradient(90deg, #e50012 0, #fd7717 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%) scale(1, -1);
  transition: 0.3s all;
}
.acd .acd_item {
  display: none;
}
.acd.is-active .acd_trigger::after {
  transform: translate(0, -50%) scale(1, 1);
}
.acd.is-active .acd_item {
  display: block;
  animation: tooltipShow 0.3s linear 0s;
}
.rc-section-04 {
  will-change: transform;
  padding: 20em 0 10em;
  position: relative;
  z-index: 10;
  clip-path: inset(0);
}
.rc-section-04::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #e50012 0, #fd7717 100%);
  opacity: 0.9;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .rc-section-04 {
    padding: 17.5em 0 7.5em;
  }
  .rc-section-04 > div .wp-block-image img {
    min-height: 100vh;
    object-fit: cover;
  }
}
.rc-section-04-inner {
  margin-bottom: 0;
  position: relative;
  z-index: 10;
  transform: translateZ(1px);
  transform-style: preserve-3d;
}
.rc-section-04-inner > div {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 576px) {
  .rc-section-04-inner > div {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .rc-section-04-inner > div {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .rc-section-04-inner > div {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .rc-section-04-inner > div {
    max-width: 1312px;
    padding: 0 1em;
  }
}
@media screen and (max-width: 991px) {
  .rc-section-04-inner > div {
    padding: 0 1em;
  }
}
.rc-section-04-bg {
  /* Safari対策：背景ラッパーを独立した合成レイヤー化して、backdrop-filter配下での重なり順崩れ（前面化）を防ぐ */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.rc-section-04-bg > div {
  position: sticky;
  top: 0;
}
.rc-recruit-en-catch-wrap {
  max-width: -webkit-fit-content;
  max-width: fit-content;
  margin: 0 auto 4em;
}
.rc-recruit-en-catch-wrap h2 {
  color: #ffea32;
  font-family: "Jost", sans-serif;
  font-size: clamp(8.6rem, calc(22.98vw + 3.21rem), 21.6rem);
  font-weight: 500;
  letter-spacing: -4%;
  line-height: 1;
  margin-bottom: 0;
  overflow: hidden;
  white-space: nowrap;
}
.rc-recruit-en-catch-wrap h2 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(1em);
  transition: opacity 0.55s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.rc-recruit-en-catch-wrap h2 .char.char-space {
  opacity: 1;
  transform: none;
}
.rc-recruit-en-catch-wrap h2 strong {
  color: #fff;
  font-weight: 500;
}
.rc-recruit-en-catch-wrap h2 strong .char {
  font-weight: inherit;
}
.rc-recruit-en-catch-wrap h2:nth-child(2) {
  padding-left: 0.5em;
}
.rc-recruit-en-catch-wrap h2:nth-child(2) .char:nth-child(4) {
  padding-left: 0.25em;
}
.rc-recruit-en-catch-wrap h2:nth-child(3) {
  padding-left: 1em;
}
.rc-recruit-en-catch-wrap h2:nth-child(3) strong {
  padding-right: 0.25em;
}
.rc-recruit-en-catch-wrap.is-in h2 .char {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 991px) {
  .rc-recruit-en-catch-wrap h2 {
    font-size: clamp(6.4rem, calc(4.24vw + 5.41rem), 8.8rem);
  }
  .rc-recruit-en-catch-wrap h2:nth-child(2) {
    padding-left: 0.25em;
  }
  .rc-recruit-en-catch-wrap h2:nth-child(3) {
    padding-left: 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .rc-recruit-en-catch-wrap h2 {
    font-size: 6.4rem;
  }
}
.rc-recruit-jp-catch {
  color: #fff;
  font-size: clamp(2rem, calc(2.12vw + 1.50rem), 3.2rem);
  font-weight: 700;
  line-height: 2;
  margin-bottom: 4em;
}
@media screen and (max-width: 991px) {
  .rc-recruit-jp-catch {
    text-align: left !important;
  }
}
@media screen and (max-width: 767px) {
  .rc-recruit-jp-catch {
    font-size: 2rem;
  }
}
.wp-block-contact-form-7-contact-form-selector {
  background: #fff;
  border-radius: 10px;
  padding: 4em;
}
@media screen and (max-width: 991px) {
  .wp-block-contact-form-7-contact-form-selector {
    padding: 2em 1em;
  }
}
.rc-privacy-column {
  margin-top: 2em;
  margin-bottom: 0;
}
.rc-privacy-column > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rc-privacy-column > div p {
  color: #fff;
  font-weight: 500;
}
.rc-privacy-column > div:nth-child(1) {
  max-width: -webkit-fit-content;
  max-width: fit-content;
}
.rc-privacy-column > div:nth-child(1) p {
  font-size: 1.6rem;
  margin-bottom: 0;
}
.rc-privacy-column > div:nth-child(2) {
  max-width: -webkit-fit-content;
  max-width: fit-content;
}
.rc-privacy-column > div:nth-child(2) p {
  font-size: 1.3rem;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .rc-privacy-column {
    gap: 1em !important;
  }
  .rc-privacy-column > div:nth-child(1) p {
    margin-bottom: 0;
  }
}
.rc-form-wrap {
  display: flex;
  gap: 2.5em;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .rc-form-wrap {
    flex-direction: column;
    gap: 2em;
  }
}
.rc-form-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.rc-form-col--left {
  flex: 1;
}
.rc-form-col--right {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .rc-form-col {
    gap: 2em;
  }
}
.rc-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}
.rc-form-field--textarea {
  flex: 1;
}
.rc-form-field--textarea .wpcf7-form-control-wrap, .rc-form-field--textarea textarea {
  flex: 1;
  height: 100%;
  min-height: 220px;
}
.rc-form-label {
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
}
.rc-form-required {
  color: #000;
  margin-left: 0.2em;
}
.rc-form-wrap .wpcf7-form-control-wrap {
  display: block;
}
.rc-form-wrap .wpcf7-form-control-wrap[data-name="your-gender"] select {
  border: none;
  background: #faf7db;
  padding: 0.25em;
  width: 100%;
}
.rc-form-wrap input[type="text"], .rc-form-wrap input[type="email"], .rc-form-wrap input[type="tel"], .rc-form-wrap input[type="date"], .rc-form-wrap textarea {
  width: 100%;
  background: #faf7db;
  border: none;
  border-radius: 4px;
  padding: 0.2em;
  font-size: 1.6rem;
  color: #000;
  outline: none;
  min-height: 1em;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.rc-form-wrap input[type="text"]:focus, .rc-form-wrap input[type="email"]:focus, .rc-form-wrap input[type="tel"]:focus, .rc-form-wrap input[type="date"]:focus, .rc-form-wrap textarea:focus {
  background: #f7f2c5;
  box-shadow: 0 0 0 2px rgba(229, 0, 18, 0.3);
}
.rc-form-wrap input[type="text"]::placeholder, .rc-form-wrap input[type="email"]::placeholder, .rc-form-wrap input[type="tel"]::placeholder, .rc-form-wrap input[type="date"]::placeholder, .rc-form-wrap textarea::placeholder {
  color: transparent;
}
.rc-form-wrap textarea {
  resize: vertical;
  max-height: 220px;
  line-height: 1.8;
}
.rc-form-wrap .wpcf7-not-valid-tip {
  font-size: 1.2rem;
  color: #e50012;
  margin-top: 0.4em;
}
.rc-form-wrap .wpcf7-response-output {
  font-size: 1.4rem;
  margin-top: 2em;
  padding: 1em 1.4em;
  border-radius: 4px;
}
.rc-form-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 2em;
}
.rc-form-submit .rc-form-submit-inner {
  width: 100%;
  background: linear-gradient(90deg, #e50012 0, #fd7717 100%);
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 1em;
  position: relative;
  max-width: 170px;
}
.rc-form-submit input[type="submit"] {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  transition: opacity 0.2s ease;
  text-align: left;
}
.rc-form-submit input[type="submit"]:hover {
  opacity: 0.85;
}
.rc-form-submit .svg-arrow svg {
  fill: #fff;
}
.rc-form-submit .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(0, -50%);
}
.rc-page-header {
  background: url("/wp-content/uploads/2026/06/ss-header.jpg") no-repeat center/cover;
  position: relative;
}
.rc-page-header::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #e50012 0, #fd7717 100%);
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.rc-page-header > div {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 400px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 576px) {
  .rc-page-header > div {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .rc-page-header > div {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .rc-page-header > div {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .rc-page-header > div {
    max-width: 1312px;
    padding: 0 1em;
  }
}
.rc-page-header > div h1 {
  color: #fff;
  font-size: clamp(3.2rem, calc(1.41vw + 2.87rem), 4rem);
  font-weight: 700;
  margin-bottom: 0.25em;
}
.rc-page-header > div p {
  color: #fff;
  font-size: clamp(2rem, calc(0.71vw + 1.83rem), 2.4rem);
  font-weight: 700;
  margin-bottom: 0;
}
.rc-page-header.os {
  background: url("/wp-content/uploads/2026/06/os-header.jpg") no-repeat center/cover;
}
.rc-page-header.em {
  background: url("/wp-content/uploads/2026/06/em-header.jpg") no-repeat center/cover;
}
@media screen and (max-width: 991px) {
  .rc-page-header > div {
    height: 320px;
    padding: 0 1.5em;
  }
  .rc-page-header > div h1 {
    font-size: 3.2rem;
  }
  .rc-page-header > div p {
    font-size: 2rem;
  }
}
.rc-service-section-01, .rc-service-section-03 {
  padding: 10em 0;
  margin-bottom: 0 !important;
}
.rc-service-section-01 > div, .rc-service-section-03 > div {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .rc-service-section-01 > div, .rc-service-section-03 > div {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .rc-service-section-01 > div, .rc-service-section-03 > div {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .rc-service-section-01 > div, .rc-service-section-03 > div {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .rc-service-section-01 > div, .rc-service-section-03 > div {
    max-width: 1312px;
    padding: 0 1em;
  }
}
@media screen and (max-width: 991px) {
  .rc-service-section-01, .rc-service-section-03 {
    padding: 7.5em 0;
  }
  .rc-service-section-01 > div, .rc-service-section-03 > div {
    padding: 0 1.5em;
  }
}
@media screen and (min-width: 1200px) {
  .rc-service-section-02 > div {
    max-width: calc(100% - ((100% - 1312px) / 2));
    margin-left: auto;
    padding: 0 0 0 1.5em;
  }
}
@media screen and (max-width: 991px) {
  .rc-service-section-02 > div {
    padding: 0 0 0 1.5em;
  }
}
.rc-service-section-03 {
  padding-bottom: 12em;
}
@media screen and (max-width: 991px) {
  .rc-service-section-03 {
    padding-bottom: 10em;
  }
}
@media screen and (max-width: 767px) {
  .rc-service-section-03 {
    padding-bottom: 7.5em;
  }
}
.rc-service-section-04 {
  background: #fff;
  border-radius: 80px 80px 0 0;
  padding: 10em 0 5em;
  position: relative;
}
.rc-service-section-04 > div {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .rc-service-section-04 > div {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .rc-service-section-04 > div {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .rc-service-section-04 > div {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .rc-service-section-04 > div {
    max-width: 1312px;
    padding: 0 1em;
  }
}
.rc-service-section-04::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('data:image/svg+xml;utf8,<svg width="1393" height="1524" viewBox="0 0 1393 1524" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1054.69 0.0851786H1055.4C1056.33 -1.78671 996.808 27.7857 992.048 30.5684C855.893 110.192 966.876 142.357 1052.37 178.036C1071.47 186.015 1090.16 194.795 1108.39 204.348C1376.99 345.653 1475.32 614.73 1317 865.524C1276.83 929.166 1224.87 988.628 1166.21 1038.56C887.874 1275.51 498.849 1401.7 140.308 1491.59C94.9831 1502.66 45.9626 1514.62 0.0950336 1524L0 1252.86L0.126602 938.122C16.764 937.832 33.9155 938.366 50.638 938.297C91.5123 938.244 132.384 937.664 173.241 936.55C296.565 933.583 419.574 923.605 541.566 906.655C730.119 879.43 1002.37 816.612 1121.28 668.231C1217.33 548.376 1157.04 403.935 1055.55 304.572C1038.45 287.762 1020.14 272.051 1000.72 257.549C956.117 223.893 885.651 180.87 876.198 122.969C862.157 36.9653 985.321 9.58163 1054.69 0.0851786Z" fill="url(%23paint0_linear_293_83)"></path><defs><linearGradient id="paint0_linear_293_83" x1="693.06" y1="9.97057e-08" x2="698.922" y2="1524" gradientUnits="userSpaceOnUse"><stop stop-color="%23FD7717" stop-opacity="0"></stop><stop offset="0.3" stop-color="%23FD7717"></stop><stop offset="0.697115" stop-color="%23FD7717"></stop><stop offset="1" stop-color="%23E40315"></stop></linearGradient></defs></svg>') no-repeat left top / contain;
  max-width: 95%;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.4s;
  z-index: 0;
  pointer-events: none;
}
.rc-service-section-04 > div {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 991px) {
  .rc-service-section-04 {
    border-radius: 40px 40px 0 0;
    padding-top: 7.5em;
  }
  .rc-service-section-04 > div {
    padding: 0 1.5em;
  }
}
@media screen and (max-width: 767px) {
  .rc-service-section-04 {
    overflow: hidden;
    padding: 7.5em 0 2.5em;
  }
  .rc-service-section-04 > div {
    padding: 0 1.5em;
  }
  .rc-service-section-04::before {
    max-width: unset;
    width: 240%;
    top: 0;
    right: unset;
    left: 10%;
    transform: translate(-50%, 0);
  }
}
.rc-work-about-column {
  margin-bottom: 0;
}
.rc-work-about-column > div .wp-block-image {
  border-radius: 8px;
  overflow: hidden;
}
.rc-work-about-column > div .inner-cont-wrap.cont1 {
  margin-bottom: 5em;
}
.rc-work-about-column > div .rc-sub-title-wrap > div .rc-sub-title-jp {
  bottom: 3em;
  right: -1.5em;
}
.rc-work-about-column > div h3 {
  font-size: clamp(2.8rem, calc(0.71vw + 2.63rem), 3.2rem);
  font-weight: 700;
}
.rc-work-about-column > div p {
  font-size: clamp(1.6rem, calc(0.71vw + 1.43rem), 2rem);
  font-weight: 500;
  margin-bottom: 0;
}
.rc-work-about-column.os > div .rc-sub-title-wrap > div .rc-sub-title-jp {
  right: -5.5em;
}
@media screen and (min-width: 992px) {
  .rc-work-about-column {
    flex-direction: row-reverse;
    gap: 6em !important;
  }
}
@media screen and (max-width: 991px) {
  .rc-work-about-column {
    flex-direction: column;
  }
  .rc-work-about-column > div .rc-sub-title-wrap > div .rc-sub-title-jp {
    bottom: -2em;
  }
}
.js-daily-schedule-slider, .js-interview-slider {
  margin-bottom: 0;
  display: flex;
  flex-wrap: nowrap !important;
  gap: 2.5em !important;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  padding-right: 1em;
  scrollbar-width: none;
}
.js-daily-schedule-slider::-webkit-scrollbar, .js-interview-slider::-webkit-scrollbar {
  display: none;
}
.js-daily-schedule-slider > div, .js-interview-slider > div {
  flex: 0 0 70vw;
  max-width: 70vw;
  scroll-snap-align: start;
}
.js-daily-schedule-slider > div .time, .js-interview-slider > div .time {
  background: #fdebeb;
  font-family: "Jost", sans-serif;
  font-size: clamp(2rem, calc(0.71vw + 1.83rem), 2.4rem);
  font-weight: 500;
  max-width: -webkit-fit-content;
  max-width: fit-content;
  margin-bottom: 0;
  padding: 0 0.25em;
}
.js-daily-schedule-slider > div h4, .js-interview-slider > div h4 {
  font-size: clamp(2.4rem, calc(1.41vw + 2.07rem), 3.2rem);
  font-weight: 500;
  padding-left: 0.75em;
  position: relative;
}
.js-daily-schedule-slider > div h4::before, .js-interview-slider > div h4::before {
  content: "";
  width: 16px;
  height: 18px;
  background: url('data:image/svg+xml;utf8,<svg width="16" height="18" viewBox="0 0 16 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.63915 0.0951C7.86185 -0.0316998 8.13815 -0.0317001 8.36084 0.0950997L15.6497 4.24538C15.8668 4.36896 16 4.59432 16 4.83785L16 13.1621C16 13.4057 15.8668 13.631 15.6497 13.7546L8.36085 17.9049C8.13815 18.0317 7.86185 18.0317 7.63915 17.9049L0.350266 13.7546C0.133234 13.631 0 13.4057 0 13.1621L0 4.83785C0 4.59432 0.133233 4.36896 0.350266 4.24538L7.63915 0.0951Z" fill="url(%23paint0_linear_293_133)"/><defs><linearGradient id="paint0_linear_293_133" x1="16" y1="9" x2="0" y2="9" gradientUnits="userSpaceOnUse"><stop stop-color="%23FD7717"/><stop offset="1" stop-color="%23E40315"/></linearGradient></defs></svg>') no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.js-daily-schedule-slider > div p, .js-interview-slider > div p {
  font-size: 1.6rem;
  font-weight: 500;
}
.js-daily-schedule-slider > div .wp-block-image, .js-interview-slider > div .wp-block-image {
  border-radius: 10px;
  margin-bottom: 2em;
  overflow: hidden;
}
.js-daily-schedule-slider > div:nth-child(even), .js-interview-slider > div:nth-child(even) {
  padding-top: 4em;
}
@media screen and (min-width: 992px) {
  .js-daily-schedule-slider > div, .js-interview-slider > div {
    flex-basis: 400px;
    max-width: 400px;
    min-width: 400px;
  }
}
@media screen and (max-width: 991px) {
  .js-daily-schedule-slider, .js-interview-slider {
    gap: 1.5em !important;
  }
  .js-daily-schedule-slider > div:nth-child(even), .js-interview-slider > div:nth-child(even) {
    padding-top: 0;
  }
}
@media (max-width: 781px) {
  .rc-slider-wrap .js-daily-schedule-slider.wp-block-columns > .wp-block-column, .rc-slider-wrap .js-interview-slider.wp-block-columns > .wp-block-column {
    flex: 0 0 70vw !important;
  }
}
.js-interview-slider .js-interview-open, .js-interview-slider img {
  -webkit-user-drag: none !important;
  /* SafariやChromeで引きずりを禁止 */
  user-drag: none !important;
  /* 標準の引きずりを禁止 */
  user-select: none !important;
  /* 文字や画像が青く選択されるのを禁止 */
}
.rc-sub-title-wrap {
  position: relative;
  z-index: 10;
}
.rc-sub-title-wrap > div {
  display: flex;
  flex-direction: column;
  max-width: -webkit-fit-content;
  max-width: fit-content;
  margin-bottom: 5em;
  padding-bottom: 0;
  position: relative;
}
.rc-sub-title-wrap > div .rc-sub-title-en:nth-child(1) {
  margin-bottom: 0;
}
.rc-sub-title-wrap > div .rc-sub-title-jp {
  position: absolute;
  bottom: 1.5em;
  right: 1.5em;
}
.rc-sub-title-wrap.title-column .rc-sub-title-jp {
  position: absolute;
  bottom: -1.5em;
  right: unset;
  left: 0;
}
.rc-sub-title-wrap.is-in .rc-sub-title-en .char {
  transform: translateY(0);
}
.rc-sub-title-wrap.is-in .rc-sub-title-jp span {
  opacity: 1;
  transform: translateX(0);
}
.rc-sub-title-wrap.is-in .rc-sub-title-jp span:nth-child(1) {
  transition-delay: 0.5s;
}
.rc-sub-title-wrap.is-in .rc-sub-title-jp span:nth-child(3) {
  transition-delay: 0.65s;
}
@media screen and (max-width: 767px) {
  .rc-sub-title-wrap > div {
    margin-bottom: 4em;
  }
  .rc-sub-title-wrap > div .rc-sub-title-jp {
    bottom: -2em;
    right: unset;
    left: 0;
  }
}
.rc-sub-title-en {
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-size: clamp(10rem, calc(10.61vw + 7.51rem), 16rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -4%;
  max-width: -webkit-fit-content;
  max-width: fit-content;
  margin-bottom: 0;
  padding-right: 0.1em;
  clip-path: inset(-30% -5% 0 -5%);
}
.rc-sub-title-en .char {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.rc-sub-title-en .char:last-child {
  padding-right: 0.1em;
}
@media screen and (max-width: 767px) {
  .rc-sub-title-en {
    font-size: clamp(8.4rem, calc(2.12vw + 7.90rem), 9.6rem);
  }
}
.rc-sub-title-jp {
  font-size: 2rem;
  font-weight: 700 !important;
  margin-bottom: 0;
}
.rc-sub-title-jp span {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.rc-sub-title-jp span:nth-child(1) {
  transform: translateX(-50px);
}
.rc-sub-title-jp span:nth-child(3) {
  transform: translateX(50px);
}
@media screen and (max-width: 767px) {
  .rc-sub-title-jp {
    font-size: 2rem !important;
  }
}
.rc-sub-section-title {
  margin-bottom: 5em;
}
.rc-sub-section-title > div h2 {
  background: linear-gradient(90deg, #e50012 0, #fd7717 100%);
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-size: clamp(6.4rem, calc(2.83vw + 5.74rem), 8rem);
  font-weight: 500;
  letter-spacing: -4%;
  line-height: 1.2;
  margin-bottom: 0 !important;
  max-width: -webkit-fit-content;
  max-width: fit-content;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
  padding-right: 0.15em;
}
.rc-sub-section-title > div h2.initial-j {
  padding-left: 0.15em;
}
.rc-sub-section-title > div h2.initial-j .char:last-child {
  padding-right: 0.1em;
}
.rc-sub-section-title > div p {
  font-size: clamp(2rem, calc(0.71vw + 1.83rem), 2.4rem);
  font-weight: 700;
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .rc-sub-section-title {
    margin-bottom: 2.5em;
  }
}
@media screen and (max-width: 767px) {
  .rc-sub-section-title > div h2 {
    font-size: 6.4rem;
  }
  .rc-sub-section-title > div p {
    font-size: 2rem;
  }
}
.wp-block-embed {
  margin-bottom: 0;
}
.rc-youtube-wrap {
  margin-bottom: 0;
}
.rc-job-description-title {
  color: #434343;
  font-size: clamp(2rem, calc(0.71vw + 1.83rem), 2.4rem);
  font-weight: 500;
}
.rc-job-description-wrap {
  background: #fdebeb;
  border-radius: 8px;
  max-width: 1160px;
  margin-left: auto;
  margin-bottom: 0;
  padding: 2.5em;
}
.rc-job-description-wrap.cont1 {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .rc-job-description-wrap {
    padding: 1.5em;
  }
}
.rc-job-description-table {
  border: none;
}
.rc-job-description-table table tbody tr {
  border-bottom: 2px solid #fff;
}
.rc-job-description-table table tbody tr th {
  border: none;
  font-weight: 500;
  padding: 2em 0;
  text-align: left;
  width: 25%;
}
.rc-job-description-table table tbody tr td {
  border: none;
  font-weight: 500;
  padding: 2em 0;
  width: 75%;
}
.rc-job-description-table table tbody tr td a {
  color: #000;
  font-size: 1.6rem;
}
@media screen and (max-width: 991px) {
  .rc-job-description-table table tbody tr td {
    padding-top: 0;
  }
}
.rc-sub-entry-banner {
  background: #fff;
  padding-bottom: 5em;
}
.rc-sub-entry-banner > div {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 0;
  margin-bottom: 0 !important;
  position: relative;
}
@media screen and (min-width: 576px) {
  .rc-sub-entry-banner > div {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .rc-sub-entry-banner > div {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .rc-sub-entry-banner > div {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .rc-sub-entry-banner > div {
    max-width: 1312px;
    padding: 0 1em;
  }
}
.rc-sub-entry-banner > div .rc-entry-link {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
}
.rc-sub-entry-banner > div .rc-entry-banner-column {
  border-radius: 10px;
  max-width: 1160px;
  min-height: 400px;
  margin-left: auto;
  margin-bottom: 0 !important;
  overflow: hidden;
  padding: 3.5em;
  position: relative;
}
.rc-sub-entry-banner > div .rc-entry-banner-column::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("/wp-content/uploads/2026/06/entry-bg.png") no-repeat center/cover;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s all;
  z-index: 1;
}
.rc-sub-entry-banner > div .rc-entry-banner-column::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #e50012 0, #fd7717 100%);
  border-radius: 10px;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.rc-sub-entry-banner > div .rc-entry-banner-column > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.rc-sub-entry-banner > div .rc-entry-banner-column > div h2 {
  color: #ffea32;
  font-family: "Jost", sans-serif;
  font-size: clamp(8rem, calc(7.07vw + 6.34rem), 12rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.5em;
}
.rc-sub-entry-banner > div .rc-entry-banner-column > div p {
  color: #fff;
  font-size: clamp(2rem, calc(0.71vw + 1.83rem), 2.4rem);
  font-weight: 500;
  margin-bottom: 0;
}
.rc-sub-entry-banner:hover .rc-entry-banner-column::before {
  transform: scale(1.1);
}
@media screen and (min-width: 992px) {
  .rc-sub-entry-banner > div .rc-entry-banner-column > div:nth-child(1) {
    flex-basis: 70%;
  }
  .rc-sub-entry-banner > div .rc-entry-banner-column > div:nth-child(2) {
    flex-basis: 30%;
    max-width: 200px;
    padding-top: 2em;
  }
}
@media screen and (max-width: 991px) {
  .rc-sub-entry-banner {
    padding-bottom: 2.5rm;
  }
  .rc-sub-entry-banner > div {
    padding: 0 1.5em;
  }
  .rc-sub-entry-banner > div .rc-entry-banner-column {
    flex-direction: column;
    padding: 2.5em 1.5em;
  }
  .rc-sub-entry-banner > div .rc-entry-banner-column > div {
    align-items: center;
  }
}
.rc-entry-btn {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 0;
  text-decoration: none;
}
.rc-entry-btn__arrow {
  fill: #fff;
}
.rc-entry-btn__ring-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  transform: rotate(-90deg);
  transform-origin: center;
}
.rc-entry-btn__ring {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
}
@media screen and (max-width: 767px) {
  .rc-entry-btn {
    font-size: 2.8rem;
  }
  .rc-entry-btn__arrow svg {
    max-width: 32px;
  }
}
.rc-em-section-01 {
  padding: 12em 0 0;
}
@media screen and (min-width: 992px) {
  .rc-em-section-01 > div {
    max-width: calc(100% - ((100% - 1312px) / 2));
    margin-left: auto;
    padding: 0 0 0 1em;
  }
}
@media screen and (max-width: 991px) {
  .rc-em-section-01 > div {
    padding: 0 2.5em;
  }
}
@media screen and (max-width: 767px) {
  .rc-em-section-01 {
    padding: 7.5em 0 0;
  }
  .rc-em-section-01 > div {
    padding: 0 0 0 1.5em;
  }
}
.rc-em-section-02 {
  padding: 15em 0 10em;
  margin-bottom: 0 !important;
}
.rc-em-section-02 > div {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .rc-em-section-02 > div {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .rc-em-section-02 > div {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .rc-em-section-02 > div {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .rc-em-section-02 > div {
    max-width: 1312px;
    padding: 0 1em;
  }
}
@media screen and (max-width: 991px) {
  .rc-em-section-02 {
    padding: 7.5em 0;
  }
}
@media screen and (max-width: 767px) {
  .rc-em-section-02 > div {
    padding: 0 1.5em;
  }
}
.rc-em-section-03 {
  padding: 2.5em 0 12.5em;
  margin-bottom: 0 !important;
}
.rc-em-section-03 > div {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .rc-em-section-03 > div {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .rc-em-section-03 > div {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .rc-em-section-03 > div {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .rc-em-section-03 > div {
    max-width: 1312px;
    padding: 0 1em;
  }
}
@media screen and (max-width: 991px) {
  .rc-em-section-03 {
    padding: 0 0 7.5em;
  }
}
@media screen and (max-width: 767px) {
  .rc-em-section-03 > div {
    padding: 0 1.5em;
  }
}
.rc-em-section-04 {
  padding: 0 1em;
  position: relative;
}
.rc-em-section-04::before {
  content: "";
  width: calc(100% - 1em);
  height: 100%;
  background: url("/wp-content/uploads/2026/06/em-grow-bg.jpg") no-repeat center/cover;
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.rc-em-section-04 > div {
  border: 4px solid #e50012;
  border-radius: 1em;
  padding: 10em 5em;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 991px) {
  .rc-em-section-04 > div {
    padding: 7.5em 2.5em;
  }
}
@media screen and (max-width: 767px) {
  .rc-em-section-04 > div {
    padding: 5em 1.5em;
  }
}
.rc-em-section-05 {
  padding: 10em 0;
  margin-bottom: 0 !important;
}
.rc-em-section-05 > div {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .rc-em-section-05 > div {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .rc-em-section-05 > div {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .rc-em-section-05 > div {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .rc-em-section-05 > div {
    max-width: 1312px;
    padding: 0 1em;
  }
}
@media screen and (max-width: 991px) {
  .rc-em-section-05 {
    padding: 7.5em 0;
  }
  .rc-em-section-05 > div {
    padding: 0 1em;
  }
}
.rc-em-section-06 {
  background: #fff;
  border-radius: 80px 80px 0 0;
  padding: 5em;
}
.rc-em-section-06 > div .rc-recruit-column {
  margin-bottom: 1.5em;
}
.rc-em-section-06 > div .rc-recruit-column > div {
  max-height: 317px;
}
.rc-em-section-06 > div .rc-recruit-column > div .wp-block-image {
  position: relative;
}
.rc-em-section-06 > div .rc-recruit-column > div .wp-block-image img {
  object-fit: cover;
  object-position: center;
}
.rc-em-section-06 > div .rc-sub-entry-banner .rc-entry-banner-column {
  max-width: unset;
  margin-left: unset;
}
@media screen and (max-width: 767px) {
  .rc-em-section-06 {
    border-radius: 40px 40px 0 0;
    padding: 2.5em 1.5em;
  }
  .rc-em-section-06 .rc-sub-entry-banner > div {
    padding: 0;
  }
}
.js-interview-slider {
  cursor: pointer;
}
.js-interview-slider .rc-interview-card {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 0;
  padding: 2em;
  position: relative;
}
.js-interview-slider .rc-interview-card .interview-name {
  font-size: 1.6rem;
  font-weight: 500;
}
.js-interview-slider .rc-interview-card .interview-name strong {
  font-size: clamp(2rem, calc(0.71vw + 1.83rem), 2.4rem);
  font-weight: 500;
}
.js-interview-slider .rc-interview-card .intervew-job {
  font-size: clamp(1.6rem, calc(0.71vw + 1.43rem), 2rem);
  font-weight: 500;
}
.js-interview-slider .rc-interview-card .js-interview-open {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.js-interview-slider .rc-interview-card .rc-interview-modal__open {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 4em;
  right: 2em;
}
@media screen and (max-width: 767px) {
  .js-interview-slider .rc-interview-card {
    padding: 1.5em;
  }
  .js-interview-slider .rc-interview-card .rc-interview-modal__open {
    bottom: 1.5em;
    right: 1em;
    font-size: 2.4rem;
  }
  .js-interview-slider .rc-interview-card .interview-name strong {
    font-size: 2rem;
  }
  .js-interview-slider .rc-interview-card .intervew-job {
    font-size: 1.6rem;
  }
}
.rc-interview-modal {
  margin-bottom: 0;
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2em;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.rc-interview-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.rc-interview-modal__overlay {
  margin-bottom: 0;
  position: absolute;
  inset: 0;
  background: rgba(229, 0, 18, 0.85);
  cursor: pointer;
}
.rc-interview-modal.is-open .rc-interview-modal__inner {
  transform: translateY(0);
}
.rc-interview-modal__close {
  background: transparent;
  position: absolute;
  top: 1.5em;
  right: 1.5em;
  width: 36px;
  height: 36px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.65s ease;
  z-index: 2;
}
.rc-interview-modal__close svg {
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .rc-interview-modal__close {
    top: 1em;
    right: 1em;
  }
}
.rc-interview-modal__content-column {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  gap: 6em !important;
  padding: 4em !important;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 576px) {
  .rc-interview-modal__content-column {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .rc-interview-modal__content-column {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .rc-interview-modal__content-column {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .rc-interview-modal__content-column {
    max-width: 1312px;
    padding: 0 1em;
  }
}
.rc-interview-modal__content-column > div .interview-name {
  font-size: clamp(2rem, calc(0.71vw + 1.83rem), 2.4rem);
  font-weight: 700;
  margin-top: 1.5em;
}
.rc-interview-modal__content-column > div .interview-name strong {
  font-size: clamp(2.4rem, calc(1.41vw + 2.07rem), 3.2rem);
}
.rc-interview-modal__content-column > div .interview-job {
  font-size: clamp(1.6rem, calc(0.71vw + 1.43rem), 2rem);
  font-weight: 500;
}
.rc-interview-modal__content-column > div .inner-cont-wrap {
  margin-bottom: 0;
}
.rc-interview-modal__content-column > div .inner-cont-wrap.cont1 {
  margin-bottom: 2.5em;
}
.rc-interview-modal__content-column > div h3 {
  font-size: clamp(2rem, calc(0.71vw + 1.83rem), 2.4rem);
  font-weight: 500;
  margin-bottom: 0.5em;
  padding-left: 1em;
  position: relative;
}
.rc-interview-modal__content-column > div h3::before {
  content: "";
  width: 16px;
  height: 18px;
  background: url('data:image/svg+xml;utf8,<svg width="16" height="18" viewBox="0 0 16 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.63915 0.0951C7.86185 -0.0316998 8.13815 -0.0317001 8.36084 0.0950997L15.6497 4.24538C15.8668 4.36896 16 4.59432 16 4.83785L16 13.1621C16 13.4057 15.8668 13.631 15.6497 13.7546L8.36085 17.9049C8.13815 18.0317 7.86185 18.0317 7.63915 17.9049L0.350266 13.7546C0.133234 13.631 0 13.4057 0 13.1621L0 4.83785C0 4.59432 0.133233 4.36896 0.350266 4.24538L7.63915 0.0951Z" fill="url(%23paint0_linear_293_133)"/><defs><linearGradient id="paint0_linear_293_133" x1="16" y1="9" x2="0" y2="9" gradientUnits="userSpaceOnUse"><stop stop-color="%23FD7717"/><stop offset="1" stop-color="%23E40315"/></linearGradient></defs></svg>') no-repeat center / contain;
  position: absolute;
  top: 0.5em;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .rc-interview-modal__content-column > div h3::before {
    top: 0.35em;
  }
}
.rc-interview-modal__content-column > div p {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0;
}
.rc-interview-modal__content-column > div .time-schedule-column {
  margin-bottom: 0;
}
.rc-interview-modal__content-column > div .time-schedule-column > div .schedule-column {
  align-items: center !important;
  gap: 0.5em !important;
  margin-bottom: 0;
}
.rc-interview-modal__content-column > div .time-schedule-column > div .schedule-column > div p {
  font-size: 1.6rem;
  font-weight: 500;
}
.rc-interview-modal__content-column > div .time-schedule-column > div .schedule-column > div:nth-child(1) {
  max-width: -webkit-fit-content;
  max-width: fit-content;
}
.rc-interview-modal__content-column > div .time-schedule-column > div .schedule-column > div:nth-child(1) p {
  background: #fdebeb;
  font-family: "Jost", sans-serif;
  line-height: 1;
  padding: 0.5em;
}
.rc-interview-modal__content-column > div .time-schedule-column > div .schedule-column:not(:last-child) {
  margin-bottom: 1em;
}
@media screen and (min-width: 992px) {
  .rc-interview-modal__content-column > div:nth-child(1) {
    flex-basis: 35% !important;
    max-width: 400px;
  }
  .rc-interview-modal__content-column > div:nth-child(2) {
    flex-basis: 65% !important;
  }
}
@media screen and (max-width: 991px) {
  .rc-interview-modal__content-column {
    gap: 2.5em !important;
  }
}
@media screen and (max-width: 767px) {
  .rc-interview-modal__content-column {
    gap: 1.5em !important;
    max-height: 90vh;
    overflow-y: auto;
    padding: 1.5em !important;
  }
  .rc-interview-modal__content-column > div .inner-cont-wrap.cont1 {
    margin-bottom: 1.5em;
  }
  .rc-interview-modal__content-column > div .time-schedule-column {
    margin-bottom: 0;
  }
  .rc-interview-modal__content-column > div .time-schedule-column > div .schedule-column {
    gap: 1em !important;
    flex-wrap: nowrap !important;
  }
}
.rc-em-loop-title {
  width: 100%;
  margin-top: 5em;
}
.rc-em-loop-title .rc-em-loop-title-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 2em;
  animation: loop-title 80s linear infinite;
  width: max-content;
}
.rc-em-loop-title h3 {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: clamp(9.6rem, calc(21.92vw + 4.46rem), 22rem);
  font-weight: 500;
  letter-spacing: -4%;
  line-height: 1;
  white-space: nowrap;
}
.rc-em-work-style-column {
  gap: 5em !important;
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .rc-em-work-style-column > div:nth-child(1) {
    max-width: 400px;
  }
}
.rc-em-work-style-column > div:nth-child(1) p {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.2;
  margin-bottom: 0;
}
.rc-em-work-style-column > div:nth-child(1) .inner-title-wrap {
  position: sticky;
  top: 5em;
}
.rc-em-work-style-column > div .rc-work-style-inner-column {
  gap: 2.5em !important;
}
.rc-em-work-style-column > div .rc-work-style-inner-column > div {
  background: #fff;
  border-radius: 8px;
  padding: 1em;
}
.rc-em-work-style-column > div .rc-work-style-inner-column > div .wp-block-image {
  border-radius: 8px;
  overflow: hidden;
}
.rc-em-work-style-column > div .rc-work-style-inner-column > div h3 {
  font-size: clamp(2rem, calc(0.71vw + 1.83rem), 2.4rem);
  font-weight: 500;
  margin-bottom: 0.5em;
  padding-left: 1em;
  position: relative;
}
.rc-em-work-style-column > div .rc-work-style-inner-column > div h3::before {
  content: "";
  width: 16px;
  height: 18px;
  background: url('data:image/svg+xml;utf8,<svg width="16" height="18" viewBox="0 0 16 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.63915 0.0951C7.86185 -0.0316998 8.13815 -0.0317001 8.36084 0.0950997L15.6497 4.24538C15.8668 4.36896 16 4.59432 16 4.83785L16 13.1621C16 13.4057 15.8668 13.631 15.6497 13.7546L8.36085 17.9049C8.13815 18.0317 7.86185 18.0317 7.63915 17.9049L0.350266 13.7546C0.133234 13.631 0 13.4057 0 13.1621L0 4.83785C0 4.59432 0.133233 4.36896 0.350266 4.24538L7.63915 0.0951Z" fill="url(%23paint0_linear_293_133)"/><defs><linearGradient id="paint0_linear_293_133" x1="16" y1="9" x2="0" y2="9" gradientUnits="userSpaceOnUse"><stop stop-color="%23FD7717"/><stop offset="1" stop-color="%23E40315"/></linearGradient></defs></svg>') no-repeat center / contain;
  position: absolute;
  top: 0.5em;
  left: 0;
  z-index: 1;
}
.rc-em-work-style-column > div .rc-work-style-inner-column > div p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0;
}
.rc-em-work-style-column > div .rc-work-style-inner-column > div .inner-cont-wrap {
  margin-bottom: 0;
  padding: 1.5em;
}
.rc-em-work-style-column > div .rc-work-style-inner-column:not(:last-child) {
  margin-bottom: 2.5em;
}
@media screen and (max-width: 991px) {
  .rc-em-work-style-column {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .rc-em-work-style-column {
    gap: 2.5em !important;
  }
  .rc-em-work-style-column > div:nth-child(1) .rc-sub-title-wrap.title-column {
    margin-bottom: 4.5em;
  }
  .rc-em-work-style-column > div:nth-child(1) .rc-sub-title-wrap.title-column .rc-sub-title-jp {
    bottom: -2.5em;
  }
  .rc-em-work-style-column > div:nth-child(1) p {
    font-size: 1.6rem;
  }
  .rc-em-work-style-column > div .rc-work-style-inner-column {
    gap: 1.5em !important;
  }
  .rc-em-work-style-column > div .rc-work-style-inner-column > div .inner-cont-wrap {
    padding: 1em;
  }
  .rc-em-work-style-column > div .rc-work-style-inner-column:not(:last-child) {
    margin-bottom: 1.5em;
  }
}
.rc-em-grow-wrap {
  margin-bottom: 0;
}
.rc-em-grow-wrap > div .rc-sub-title-wrap {
  margin-bottom: 5em;
}
.rc-em-grow-wrap > div .rc-sub-title-wrap > div {
  margin: 0 auto;
  padding-bottom: 0;
}
.rc-em-grow-wrap > div .rc-sub-title-wrap h2 .char:last-child {
  padding-right: 0;
}
.rc-em-leader-voice-title-column {
  margin-bottom: 0;
}
.rc-em-leader-voice-title-column > div:nth-child(2) {
  max-width: 440px;
}
.rc-em-leader-voice-title-column > div:nth-child(2) .wp-block-image {
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .rc-em-leader-voice-title-column {
    flex-direction: column;
    gap: 0 !important;
    margin-bottom: 2.5em;
  }
}
@media screen and (max-width: 767px) {
  .rc-em-leader-voice-title-column > div .rc-sub-title-wrap > div .rc-sub-title-jp {
    bottom: -1.25em;
  }
  .rc-em-leader-voice-title-column > div .rc-sub-title-wrap > div .rc-sub-title-jp span:nth-child(3) {
    transform: translateX(-50px);
  }
  .rc-em-leader-voice-title-column > div .rc-sub-title-wrap > div .rc-sub-title-jp br {
    display: none;
  }
  .rc-em-leader-voice-title-column > div .rc-sub-title-wrap.is-in > div .rc-sub-title-jp span:nth-child(3) {
    transform: translateX(0);
  }
}
.rc-em-leader-voice-cont-column {
  margin-bottom: 0;
}
.rc-em-leader-voice-cont-column > div:nth-child(1) p {
  font-size: clamp(2rem, calc(2.12vw + 1.50rem), 3.2rem);
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 0;
}
.rc-em-leader-voice-cont-column > div .rc-faq-wrap {
  background: #fff;
  border-radius: 10px;
  margin-top: 0 !important;
  padding: 2.5em;
}
.rc-em-leader-voice-cont-column > div .rc-faq-wrap > div h3 {
  font-size: clamp(1.8rem, calc(0.35vw + 1.72rem), 2rem);
  font-weight: 500;
  margin-bottom: 0;
  padding-left: 1.5em;
  position: relative;
}
.rc-em-leader-voice-cont-column > div .rc-faq-wrap > div h3::before {
  content: "Q.";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.rc-em-leader-voice-cont-column > div .rc-faq-wrap > div .acd_item {
  margin-top: 1em;
  margin-bottom: 0;
}
.rc-em-leader-voice-cont-column > div .rc-faq-wrap > div .acd_item > div p {
  margin-bottom: 0;
}
.rc-em-leader-voice-cont-column > div .rc-faq-wrap:not(:last-child) {
  margin-bottom: 0.5em;
}
@media screen and (min-width: 992px) {
  .rc-em-leader-voice-cont-column > div:nth-child(1) {
    flex-basis: 35% !important;
  }
  .rc-em-leader-voice-cont-column > div:nth-child(2) {
    flex-basis: 65% !important;
  }
}
@media screen and (max-width: 991px) {
  .rc-em-leader-voice-cont-column {
    flex-direction: column;
  }
  .rc-em-leader-voice-cont-column > div:nth-child(1) p {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .rc-em-leader-voice-cont-column > div:nth-child(1) p {
    font-size: 2.4rem;
  }
  .rc-em-leader-voice-cont-column > div .rc-faq-wrap {
    padding: 1em;
  }
  .rc-em-leader-voice-cont-column > div .rc-faq-wrap > div h3 {
    font-size: 1.6rem;
    padding: 0 2em 0 1.25em;
  }
}
.rc-em-grow-catch-column {
  gap: 2.5em !important;
  justify-content: center;
  margin-bottom: 5em;
}
.rc-em-grow-catch-column > div {
  max-width: max-content;
}
.rc-em-grow-catch-column > div h3 {
  font-size: clamp(4rem, calc(2.83vw + 3.34rem), 5.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}
.rc-em-grow-catch-column > div p {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.2;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .rc-em-grow-catch-column {
    flex-direction: column;
    margin-bottom: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  .rc-em-grow-catch-column {
    margin-bottom: 2.5em;
  }
  .rc-em-grow-catch-column > div h3 {
    font-size: 4rem;
  }
  .rc-em-grow-catch-column > div h3 br {
    display: none;
  }
  .rc-em-grow-catch-column > div p {
    font-size: 1.6rem;
  }
  .rc-em-grow-catch-column > div p br {
    display: none;
  }
}
.rc-em-grow-cont-column {
  margin-bottom: 0;
}
.rc-em-grow-cont-column > div {
  background: #fff;
  border-radius: 8px;
  padding: 2.5em;
}
.rc-em-grow-cont-column > div h4 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 1em;
  padding-left: 1em;
  position: relative;
}
.rc-em-grow-cont-column > div h4::before {
  content: "";
  width: 16px;
  height: 18px;
  background: url('data:image/svg+xml;utf8,<svg width="16" height="18" viewBox="0 0 16 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.63915 0.0951C7.86185 -0.0316998 8.13815 -0.0317001 8.36084 0.0950997L15.6497 4.24538C15.8668 4.36896 16 4.59432 16 4.83785L16 13.1621C16 13.4057 15.8668 13.631 15.6497 13.7546L8.36085 17.9049C8.13815 18.0317 7.86185 18.0317 7.63915 17.9049L0.350266 13.7546C0.133234 13.631 0 13.4057 0 13.1621L0 4.83785C0 4.59432 0.133233 4.36896 0.350266 4.24538L7.63915 0.0951Z" fill="url(%23paint0_linear_293_133)"/><defs><linearGradient id="paint0_linear_293_133" x1="16" y1="9" x2="0" y2="9" gradientUnits="userSpaceOnUse"><stop stop-color="%23FD7717"/><stop offset="1" stop-color="%23E40315"/></linearGradient></defs></svg>') no-repeat center / contain;
  position: absolute;
  top: 0.5em;
  left: 0;
  z-index: 1;
}
.rc-em-grow-cont-column > div p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .rc-em-grow-cont-column {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .rc-em-grow-cont-column > div {
    padding: 1.5em;
  }
  .rc-em-grow-cont-column > div h4 {
    font-size: 2rem;
  }
}
.rc-em-benefits-column {
  align-items: flex-start !important;
  gap: 2.5em !important;
  margin-bottom: 0;
}
.rc-em-benefits-column > div.acd {
  background: #fff;
  border-radius: 8px;
  padding: 2.5em;
}
.rc-em-benefits-column > div.acd .acd_trigger {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 0;
  width: 100%;
}
.rc-em-benefits-column > div.acd .acd_item {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2.5em;
}
.rc-em-benefits-column:not(:last-child) {
  margin-bottom: 2.5em;
}
@media screen and (max-width: 767px) {
  .rc-em-benefits-column {
    gap: 1.5em !important;
  }
  .rc-em-benefits-column > div.acd {
    padding: 1.5em;
  }
  .rc-em-benefits-column > div.acd .acd_trigger {
    font-size: 2rem;
  }
  .rc-em-benefits-column > div.acd .acd_item {
    padding-top: 1.5em;
  }
  .rc-em-benefits-column:not(:last-child) {
    margin-bottom: 1.5em;
  }
}
/* ================================================================
   紙吹雪
================================================================ */
.rc-confetti {
  position: absolute !important;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 1s ease;
}
.rc-confetti.is-visible {
  opacity: 1;
}
.rc-confetti__piece {
  position: absolute;
  top: 0;
  left: var(--x);
  will-change: transform;
  animation: rc-confetti-fall var(--dur) linear var(--delay) infinite;
}
.rc-confetti__sway {
  display: block;
  perspective: 800px;
  will-change: transform;
  animation: rc-confetti-sway var(--sway-dur) ease-in-out var(--delay) infinite alternate;
}
.rc-confetti__rect {
  display: block;
  width: 10px;
  height: 30px;
  background: #ffea32;
  will-change: transform;
  animation: rc-confetti-flip-y var(--spin-dur) linear var(--delay) infinite;
}
@keyframes rc-confetti-fall {
  from {
    transform: translate(0, -25vh);
  }
  to {
    transform: translate(var(--drift), 125vh);
  }
}
@keyframes rc-confetti-sway {
  from {
    transform: translateX(calc(var(--sway) * -1));
  }
  to {
    transform: translateX(var(--sway));
  }
}
/* パターン別（JS で i % 3 → is-p0/1/2 を付与）：回転と揺れを3種に */
.rc-confetti__piece.is-p1 .rc-confetti__sway {
  animation-name: rc-confetti-sway-wide;
}
.rc-confetti__piece.is-p1 .rc-confetti__rect {
  animation-name: rc-confetti-flip-x;
}
.rc-confetti__piece.is-p2 .rc-confetti__sway {
  animation-name: rc-confetti-sway-tight;
}
.rc-confetti__piece.is-p2 .rc-confetti__rect {
  animation-name: rc-confetti-twirl;
}
/* p0：左右にひらひら（Y軸フリップ）＋落下方向への傾き(--tilt) */
@keyframes rc-confetti-flip-y {
  0% {
    transform: rotateZ(calc(var(--tilt) + 6deg)) rotateY(0deg);
  }
  50% {
    transform: rotateZ(calc(var(--tilt) - 6deg)) rotateY(180deg);
  }
  100% {
    transform: rotateZ(calc(var(--tilt) + 6deg)) rotateY(360deg);
  }
}
/* p1：前後にとんぼ返り（X軸フリップ）＋傾き */
@keyframes rc-confetti-flip-x {
  0% {
    transform: rotateZ(calc(var(--tilt) + 5deg)) rotateX(0deg);
  }
  50% {
    transform: rotateZ(calc(var(--tilt) - 5deg)) rotateX(180deg);
  }
  100% {
    transform: rotateZ(calc(var(--tilt) + 5deg)) rotateX(360deg);
  }
}
/* p2：くるくる回転（Z軸スピン）＋わずかなY傾き */
@keyframes rc-confetti-twirl {
  0% {
    transform: rotateZ(0deg) rotateY(25deg);
  }
  100% {
    transform: rotateZ(360deg) rotateY(25deg);
  }
}
/* 揺れの強弱（パターン別） */
@keyframes rc-confetti-sway-wide {
  from {
    transform: translateX(calc(var(--sway) * -1.4));
  }
  to {
    transform: translateX(calc(var(--sway) * 1.4));
  }
}
@keyframes rc-confetti-sway-tight {
  from {
    transform: translateX(calc(var(--sway) * -0.6));
  }
  to {
    transform: translateX(calc(var(--sway) * 0.6));
  }
}
