@charset "UTF-8";
:root {
  --color-text-white: #ffffff;
  --color-black: #1F2227;
  --color-grey: #4D4F53;
  --color-lightgrey: #7C7E80;
  --color-active: #4edcb3;
  --grey-light: #f2f7f9;
  --grey: #ecedf3;
  --black: #080808;
  --green: rgb(57, 184, 159);
  --green2: #45B89F;
  --lightgreen: #ACD9C9;
  --white: #ffffff;
  --lightblue: rgb(126, 214, 223);
  --red: #e03131;
  --font-en: "futura-pt", "Jost", sans-serif;
  --font-en-bold: "futura-pt-bold", "Jost", sans-serif;
  --font-jp: "Noto Sans JP", "Murecho", "IBM Plex Sans JP", sans-serif;
  --font-size-fv: clamp(4.8rem, 3.11rem + 4.51vw, 9.6rem);
  --font-size-h2: clamp(3.2rem, 2.64rem + 1.5vw, 4.8rem);
  --font-size-h3: clamp(1.8rem, 1.59rem + 0.56vw, 2.4rem);
  --font-size-osttl: clamp(2.2rem, 1.71rem + 1.31vw, 3.2rem);
  --font-size-sub: clamp(1.2rem, 1.13rem + 0.19vw, 1.4rem);
  --font-size-card-ttl: clamp(2.0rem, 1.3rem + 1.88vw, 4.0rem);
  --font-size-body: clamp(1.4rem, 1.33rem + 0.19vw, 1.6rem);
  --font-size-panel: clamp(1.8rem, 1.35rem + 1.21vw, 2.8rem);
  --font-size-sub-heading: clamp(1.8rem, 1.68rem + 0.31vw, 2.0rem);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "Murecho", "IBM Plex Sans JP", sans-serif;
  color: #1F2227;
  overflow-x: hidden;
}

.cc-window {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: calc(100% - 64px);
  max-width: 900px;
  padding: 16px 24px 16px 32px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  color: #1F2227;
}
.cc-window .cc-message {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
  flex: 1;
}
.cc-window .cc-message .cc-link {
  display: inline-block;
  margin-left: 8px;
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: opacity 0.2s ease;
}
.cc-window .cc-message .cc-link:hover {
  opacity: 0.7;
}
.cc-window .cc-compliance {
  flex-shrink: 0;
}
.cc-window .cc-compliance .cc-btn.cc-dismiss {
  display: inline-block;
  padding: 12px 26px;
  background: #1a1a1a;
  border: none;
  border-radius: 100px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.cc-window .cc-compliance .cc-btn.cc-dismiss:hover {
  background: var(--green);
  transform: scale(1.02);
}
@media screen and (max-width: 800px) {
  .cc-window {
    bottom: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px;
    border-radius: 20px;
  }
  .cc-window .cc-message {
    font-size: 13px;
  }
  .cc-window .cc-message .cc-link {
    margin-left: 0;
    margin-top: 8px;
    display: block;
  }
  .cc-window .cc-compliance {
    display: flex;
    justify-content: flex-end;
  }
  .cc-window .cc-compliance .cc-btn.cc-dismiss {
    width: 100%;
    padding: 14px 0;
  }
}

.cc-revoke {
  display: none !important;
}

.g1, .g2, .g3, .g4, .g5 {
  transition: all 2s cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-loading .g1,
body.is-loading .g2,
body.is-loading .g3,
body.is-loading .g4,
body.is-loading .g5 {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(1.5) !important;
  animation: loadingPulse 2s infinite ease-in-out !important;
  opacity: 1 !important;
}

@keyframes loadingPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
  }
}
#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: transparent;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

body.is-loaded #loader-overlay {
  opacity: 0;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 10000;
}

.loader-logo {
  width: 250px;
  height: auto;
  opacity: 1;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

body.is-loaded .loader-logo {
  transform: scale(1.1);
  opacity: 0;
}

.progress-container {
  width: 250px;
  max-width: 60vw;
  text-align: center;
  color: var(--color-grey);
  font-family: var(--font-en);
  font-weight: 700;
}

.progress-text {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.progress-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #39b89f;
  transition: width 0.1s linear;
}

body.is-loaded .progress-container {
  opacity: 0;
  transition: opacity 0.5s ease;
}

body:not(.is-loaded) header,
body:not(.is-loaded) nav,
body:not(.is-loaded) #global-container {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.is-loaded header,
body.is-loaded nav,
body.is-loaded #global-container {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transition: opacity 1.5s ease 1s, visibility 1.5s ease 1s;
}

body.is-loaded header,
body.is-loaded nav {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transition: opacity 0.8s ease 0.2s, visibility 0.8s ease 0.2s;
}

body.is-loading .interactive {
  opacity: 0 !important;
}

body.is-loading .gradient-bg .g1,
body.is-loading .gradient-bg .g2 {
  mix-blend-mode: normal !important;
  opacity: 0.6 !important;
}

body.is-loading .gradient-bg .g3,
body.is-loading .gradient-bg .g2,
body.is-loading .gradient-bg .g1,
body.is-loading .gradient-bg .interactive {
  display: none !important;
}

body.is-loading .gradient-bg .gradients-container {
  filter: blur(20px) !important;
}

:root {
  --color-bg1: #dff9fb;
  --color-bg2: #ffffff;
  --color1: 68, 212, 111;
  --color2: 126, 214, 223;
  --color3: 223, 249, 251;
  --color4: 183, 67, 211;
  --color5: 217, 246, 240;
  --color-interactive: 57, 184, 159;
  --circle-size: 175%;
  --blending: hard-light;
}

@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes moveVertical {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes moveHorizontal {
  0% {
    transform: translateX(-50%) translateY(-10%);
  }
  50% {
    transform: translateX(50%) translateY(10%);
  }
  100% {
    transform: translateX(-50%) translateY(-10%);
  }
}
.gradient-bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  overflow: hidden;
  background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
  top: 0;
  left: 0;
  z-index: -1;
}
.gradient-bg svg {
  display: none;
}
.gradient-bg .gradients-container {
  filter: blur(40px);
  width: 100%;
  height: 100%;
  will-change: transform;
}
.gradient-bg .g1 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: center center;
  animation: moveVertical 30s ease infinite;
  opacity: 1;
  will-change: transform;
}
.gradient-bg .g3 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2 + 200px);
  left: calc(50% - var(--circle-size) / 2 - 500px);
  transform-origin: calc(50% + 400px);
  animation: moveInCircle 40s linear infinite;
  opacity: 1;
  will-change: transform;
}
.gradient-bg .g4 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 200px);
  animation: moveHorizontal 40s ease infinite;
  opacity: 0.7;
  will-change: transform;
}
.gradient-bg .g5 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: calc(var(--circle-size) * 2);
  height: calc(var(--circle-size) * 2);
  top: calc(50% - var(--circle-size));
  left: calc(50% - var(--circle-size));
  transform-origin: calc(50% - 800px) calc(50% + 200px);
  animation: moveInCircle 20s ease infinite;
  opacity: 1;
  will-change: transform;
}
.gradient-bg .interactive {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: 100%;
  height: 100%;
  top: -50%;
  left: -50%;
  opacity: 0.7;
}

.FirstView {
  width: 100%;
  min-height: 75vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.FirstView-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.fv__mask-container {
  width: 100%;
  height: 100%;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 600' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L1000,0 L1000,400 Q500,550 0,400 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 600' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L1000,0 L1000,400 Q500,550 0,400 Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center top;
  mask-position: center top;
}

.fv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
}

.fv__img__os {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 70% 50%;
     object-position: 70% 50%;
  display: block;
}

.fv__img__recruit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 70% 100%;
     object-position: 70% 100%;
  display: block;
}

.fv_copy {
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  position: absolute;
  top: 40%;
  left: 20%;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .fv_copy {
    left: 10%;
  }
}
@media screen and (max-width: 450px) {
  .fv_copy {
    top: 40%;
    left: 5%;
  }
}
.fv_copy__main {
  color: #fff;
  font-size: var(--font-size-fv);
  font-weight: 700;
  font-family: var(--font-en);
  margin: 0;
  line-height: 1;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
}
.fv_copy__sub {
  color: #fff;
  font-size: var(--font-size-sub-heading);
  font-weight: 600;
  font-family: var(--font-jp);
  margin: 0;
  margin-top: 0px;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
}

.scroll_wrap {
  position: absolute;
  bottom: 50%;
  right: 20%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 800px) {
  .scroll_wrap {
    right: 10%;
  }
}
@media screen and (max-width: 450px) {
  .scroll_wrap {
    right: 50%;
    bottom: 25%;
  }
}

.scroll_wrap {
  position: absolute;
  bottom: 50%;
  right: 20%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 800px) {
  .scroll_wrap {
    right: 10%;
  }
}
@media screen and (max-width: 450px) {
  .scroll_wrap {
    right: 50%;
    bottom: 25%;
  }
}

.scroll_txt {
  margin: 0;
  font-family: var(--font-en-bold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
  writing-mode: vertical-rl;
}
@media screen and (max-width: 450px) {
  .scroll_txt {
    font-size: 10px;
  }
}

.scroll {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.scroll::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  animation: scrollLine 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.sub-FirstView {
  width: 100%;
  min-height: 75vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.sub-scroll_wrap {
  position: absolute;
  bottom: 30%;
  right: 20%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 800px) {
  .sub-scroll_wrap {
    right: 10%;
  }
}
@media screen and (max-width: 450px) {
  .sub-scroll_wrap {
    right: 50%;
    bottom: 15%;
  }
}

.sub-fv_copy {
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .sub-fv_copy {
    left: 10%;
  }
}
@media screen and (max-width: 450px) {
  .sub-fv_copy {
    top: 40%;
    left: 5%;
  }
}
.sub-fv_copy__main {
  color: #fff;
  font-size: var(--font-size-fv);
  font-weight: 700;
  font-family: var(--font-en);
  margin: 0;
  line-height: 1;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
}
.sub-fv_copy__sub {
  color: #fff;
  font-size: var(--font-size-sub-heading);
  font-weight: 600;
  font-family: var(--font-jp);
  margin: 0;
  margin-top: 0px;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
}

nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;
  position: fixed;
  z-index: 100;
  right: 0;
  font-family: var(--font-en);
  font-weight: 600;
}
nav h1 {
  margin-left: clamp(30px, 5vw - 10px, 50px);
}

.moonrabi_logo img {
  width: 150px;
  height: auto;
}

.nav-container {
  margin-right: clamp(30px, 5vw - 10px, 50px);
  position: relative;
}
.nav-container > ul {
  float: right;
}
.nav-container > ul > li {
  transition: 0.7s;
  display: inline-block;
}
.nav-container > ul > li:not(:first-child) {
  margin-left: 25px;
}
.nav-container ul li a,
.nav-container .accordion-label {
  display: inline-block;
  outline: none;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity 0.3s ease;
}
.nav-container .menu-txt a,
.nav-container .accordion-label {
  color: var(--color-black);
  text-shadow: 0px 0px 7.5px rgb(255, 255, 255), 0px 0px 5px rgba(255, 255, 255, 0.75);
}
.nav-container .menu-txt a:hover {
  opacity: 0.5;
  text-decoration: none;
}

@media screen and (max-width: 800px) {
  nav h1 {
    margin-left: 30px;
  }
  .nav-container {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background: var(--color-black);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease;
  }
  .nav-container > ul {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
  }
  .nav-container > ul > li {
    display: block;
    float: none;
    width: 100%;
    text-align: right;
    margin-bottom: 10px;
  }
  .nav-container > ul > li:not(:first-child) {
    margin-left: 0;
  }
  .nav-container > ul > li:nth-child(1) a {
    transition-delay: 0.2s;
  }
  .nav-container > ul > li:nth-child(2) a {
    transition-delay: 0.3s;
  }
  .nav-container > ul > li:nth-child(3) a {
    transition-delay: 0.4s;
  }
  .nav-container > ul > li:nth-child(4) .accordion-label {
    transition-delay: 0.5s;
  }
  .nav-container > ul > li:nth-child(5) a {
    transition-delay: 0.6s;
  }
  .nav-container .menu-txt a,
  .nav-container .accordion-label {
    padding: 10px 25px;
    opacity: 0;
    color: var(--color-text-white, #fff);
    font-size: 24px;
    font-weight: 600;
    transform: translateY(-20px);
    transition: all 0.2s ease;
  }
  .nav-open {
    position: fixed;
    right: 30px;
    top: 30px;
    display: block;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 9999;
    border-radius: 50%;
  }
  .nav-open i {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-black);
    border-radius: 2px;
    margin-left: 14px;
  }
  .nav-open i:nth-child(1) {
    margin-top: 16px;
  }
  .nav-open i:nth-child(2) {
    margin-top: 4px;
    opacity: 1;
  }
  .nav-open i:nth-child(3) {
    margin-top: 4px;
  }
  #nav:checked + .nav-open {
    transform: rotate(45deg);
  }
  #nav:checked + .nav-open i {
    background: white;
    transition: transform 0.2s ease;
  }
  #nav:checked + .nav-open i:nth-child(1) {
    transform: translateY(6px) rotate(180deg);
  }
  #nav:checked + .nav-open i:nth-child(2) {
    opacity: 0;
  }
  #nav:checked + .nav-open i:nth-child(3) {
    transform: translateY(-6px) rotate(90deg);
  }
  #nav:checked ~ .nav-container {
    z-index: 9990;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  #nav:checked ~ .nav-container > ul > li > a,
  #nav:checked ~ .nav-container > ul > li > .accordion-label {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 450px) {
  nav h1 {
    margin-left: 20px;
  }
  .moonrabi_logo img {
    width: 100px;
    height: auto;
  }
}
.hidden {
  display: none;
}

.contact_btn {
  border: none;
  background-image: linear-gradient(135deg, rgb(57, 184, 159) 0%, rgb(126, 214, 223) 100%);
  border-radius: 20px;
  font-family: inherit;
  font-size: 17px;
  padding: 0.6em 1.5em;
  color: #fff;
}
.contact_btn a {
  transition: 0.5s;
  color: #fff;
}
.contact_btn:hover {
  cursor: pointer;
  animation: pulse512 1.5s infinite;
}

.contact_btn:active {
  scale: 0.95;
}

@keyframes pulse512 {
  0% {
    box-shadow: 0 0 0 0 rgba(57, 184, 159, 0.66);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(218, 3, 8, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(218, 3, 8, 0);
  }
}
@media screen and (max-width: 800px) {
  .contact_btn {
    border: none;
    background-image: linear-gradient(135deg, rgb(57, 184, 159) 0%, rgb(126, 214, 223) 100%);
    border-radius: 20px;
    font-family: inherit;
    margin-top: 20px;
    margin-right: 25px;
  }
}
.hidden-accordion {
  display: none;
}

.accordion-label {
  cursor: pointer;
  display: flex;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.3s;
}

.accordion-label .arrow {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
  transition: transform 0.3s ease;
}

.sub-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
  transition: all 0.4s ease;
  float: none !important;
  position: static !important;
  transform: none !important;
}
.sub-menu li {
  margin-left: 0 !important;
  display: block !important;
  text-align: center;
}
.sub-menu li a {
  display: block !important;
  font-size: 1.4rem !important;
  color: var(--color-black) !important;
  text-decoration: none;
  transition: background-color 0.3s, opacity 0.3s;
  opacity: 1 !important;
  transform: none !important;
  padding: 10px 20px !important;
}
.sub-menu li a:hover {
  opacity: 0.7 !important;
}

@media screen and (min-width: 1025px) {
  .has-child {
    position: relative;
  }
  .has-child:hover .accordion-label .arrow {
    transform: translateY(2px) rotate(-135deg);
  }
  .has-child:hover .sub-menu {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
  }
  .sub-menu {
    position: absolute !important;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) !important;
    border-radius: 8px;
    min-width: 160px;
    text-align: center;
    padding: 10px 0;
    margin-top: 10px;
  }
}
@media screen and (min-width: 801px) {
  .has-child {
    position: relative;
  }
  .has-child:hover .accordion-label .arrow {
    transform: translateY(-1px) rotate(-135deg);
  }
  .has-child:hover .sub-menu {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
  }
  .sub-menu {
    position: absolute !important;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) !important;
    border-radius: 8px;
    min-width: 160px;
    text-align: center;
    padding: 0px 0;
    margin-top: 10px;
  }
}
@media screen and (max-width: 800px) {
  .sub-menu {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-top: 0;
  }
  .sub-menu li {
    text-align: right;
  }
  .sub-menu li a {
    color: #fff !important;
    font-size: 18px !important;
    padding: 15px 25px !important;
  }
  .hidden-accordion:checked + .accordion-label .arrow {
    transform: translateY(2px) rotate(-135deg);
  }
  .hidden-accordion:checked ~ .sub-menu {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
    margin-top: 15px;
  }
}
html {
  scroll-behavior: smooth;
}

.js-section {
  scroll-margin-top: 50px;
}

.p-page-index {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 999;
  width: clamp(150px, -22px + 16.83vw, 220px);
  background-color: #fff;
  border-top-right-radius: 60px;
  border-bottom-right-radius: 60px;
  padding: 40px 30px 40px 30px;
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  transform: translateY(-50%) translateX(-20px);
}
@media screen and (max-width: 900px) {
  .p-page-index {
    display: none;
  }
}
.p-page-index.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}
@media screen and (max-width: 768px) {
  .p-page-index {
    display: none;
  }
}
.p-page-index__title {
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-left: 15px;
}
.p-page-index__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-page-index__item {
  margin-bottom: 15px;
}
.p-page-index__item:last-child {
  margin-bottom: 0;
}
.p-page-index__link {
  display: block;
  text-decoration: none;
  color: var(--color-lightgrey);
  font-family: var(--font-en-bold);
  font-size: var(--font-size-sub);
  font-weight: 600;
  padding-left: 15px;
  position: relative;
  transition: color 0.3s ease;
}
.p-page-index__link:hover {
  color: var(--color-active);
}
.p-page-index__link.is-active {
  color: var(--color-active);
  font-weight: 700;
}
.p-page-index__aside-sub {
  font-size: 10px;
  font-family: var(--font-jp);
}

.p-content-area {
  padding-left: 250px;
}
@media screen and (max-width: 1024px) {
  .p-content-area {
    padding-left: 0;
  }
}

.p-section {
  padding: 100px 0;
  min-height: 80vh;
  border-bottom: 1px solid #eee;
}

@media screen and (max-width: 1024px) {
  .p-page-index {
    display: none;
  }
}
.advanced {
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
  opacity: 1;
  translate: 0 13%;
  transition-delay: var(--delay, 0s);
  transition-property: opacity, translate;
  will-change: opacity, translate;
}

.advanced.isActive {
  opacity: var(--target-opacity);
  translate: 0 0;
  transition-timing-function: opacity var(--ease-out-cubic), translate var(--ease-out-quint);
  transition-duration: 1.8s;
}

.is-bg-logo {
  --target-opacity: 0.5;
}

.blur {
  transition: filter 1.2s ease;
  filter: blur(5px);
}
.blur.scrollin {
  filter: blur(0);
}

.js-fade-up,
.js-fade-down,
.js-fade-left,
.js-fade-right {
  opacity: 0 !important;
  filter: blur(10px);
  transition: all 1.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform, filter;
}

.js-fade-up {
  transform: translateY(20px);
}

.js-fade-down {
  transform: translateY(-20px);
}

.js-fade-right {
  transform: translateX(-20px);
}

.js-fade-left {
  transform: translateX(20px);
}

.js-fade-up.is-inview,
.js-fade-down.is-inview,
.js-fade-left.is-inview,
.js-fade-right.is-inview {
  opacity: 1 !important;
  filter: blur(0);
  transform: translate(0, 0) !important;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.button_more {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--color-black);
  color: #fff;
  border-radius: 10rem;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1rem 1.5rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
  font-family: var(--font-en);
}
@media screen and (max-width: 450px) {
  .button_more {
    font-size: 1.4rem;
  }
}

.button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: var(--clr);
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.button__icon-wrapper__return {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: var(--clr);
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  transform: rotate(-135deg);
}

.button_more:hover {
  background: linear-gradient(135deg, rgb(57, 184, 159) 0%, rgb(126, 214, 223) 100%);
}
.button_more:hover .button__icon-wrapper {
  color: var(--color-black);
}
.button_more:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}
.button_more:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.confirm_btn_wrap {
  display: flex;
  gap: 50px;
  justify-content: center;
}

.btn-rotate-plus {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--color-black);
  color: #fff;
  border-radius: 10rem;
  font-size: var(--font-size-body);
  font-family: var(--font-jp);
  font-weight: 600;
  padding: 1.5rem 2.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
  font-family: "Futura PT", "Jost", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 450px) {
  .btn-rotate-plus {
    font-size: 1.4rem;
  }
}

.btn-rotate-plus__circle {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: #000;
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.btn-rotate-plus__icon {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-rotate-plus:hover,
.past-games.is-open .btn-rotate-plus {
  background: linear-gradient(135deg, rgb(57, 184, 159) 0%, rgb(126, 214, 223) 100%);
}

.btn-rotate-plus:hover .btn-rotate-plus__icon {
  transform: rotate(180deg);
}

.btn-rotate-plus__icon-v {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
  transform-origin: center;
}

.past-games.is-open .btn-rotate-plus__icon {
  transform: rotate(180deg);
}

.past-games.is-open .btn-rotate-plus__icon-v {
  transform: scaleY(0);
  opacity: 0;
}

.button_more_circle_wh {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0rem 0rem;
  padding-left: 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
  font-family: var(--font-en);
}
@media screen and (max-width: 450px) {
  .button_more_circle_wh {
    font-size: 1.4rem;
  }
}

.button__icon-wrapper_circle_wh {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  position: relative;
  color: var(--green);
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.button__icon-wrapper__return_circle_wh {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: var(--green);
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  transform: rotate(-135deg);
}

.button_more_circle_wh:hover .button__icon-wrapper_circle_wh {
  color: #fff;
  background: linear-gradient(135deg, rgb(57, 184, 159) 0%, rgb(126, 214, 223) 100%);
}
.button_more_circle_wh:hover .button__icon-svg_circle_wh:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}
.button_more_circle_wh:hover .button__icon-svg--copy_circle_wh {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

.button__icon-svg--copy_circle_wh {
  position: absolute;
  transform: translate(-150%, 150%);
}

.confirm_btn_wrap_circle_wh {
  display: flex;
  gap: 50px;
  justify-content: center;
}

.button_more_circle_bk {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0rem 0rem;
  padding-left: 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
  font-family: var(--font-en);
}
@media screen and (max-width: 450px) {
  .button_more_circle_bk {
    font-size: 1.4rem;
  }
}

.button__icon-wrapper_circle_bk {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  position: relative;
  color: #fff;
  background-color: var(--color-black);
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.button__icon-wrapper__return_circle_bk {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: var(--green);
  background-color: var(--color-black);
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  transform: rotate(-135deg);
}

.button_more_circle_bk:hover .button__icon-wrapper_circle_bk {
  color: #fff;
  background: linear-gradient(135deg, rgb(57, 184, 159) 0%, rgb(126, 214, 223) 100%);
}
.button_more_circle_bk:hover .button__icon-svg_circle_bk:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}
.button_more_circle_bk:hover .button__icon-svg--copy_circle_bk {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

.button__icon-svg--copy_circle_bk {
  position: absolute;
  transform: translate(-150%, 150%);
}

.confirm_btn_wrap_circle_bk {
  display: flex;
  gap: 50px;
  justify-content: center;
}

.contact {
  width: 100%;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

.card-wrapper {
  display: flex;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  width: 100%;
}

/* --- カード本体 --- */
.gx-card {
  position: relative;
  flex: 1;
  background-color: #ffffff;
  border-radius: 50px;
  padding: 50px;
  min-height: 340px;
  text-decoration: none;
  color: var(--color-black);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
  display: block;
}

/* ホバー時の浮き上がり */
.gx-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* --- テキストコンテンツ --- */
.card-content {
  position: relative;
  z-index: 10;
  max-width: 250px;
}

/* タグ部分 (Download / Contact) */
.card-tag {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--green);
  font-size: 14px;
  margin-bottom: 25px;
}

.tag-icon {
  margin-right: 8px;
  font-size: 16px;
}

/* メインタイトル */
.card-title {
  font-size: var(--font-size-card-ttl);
  font-weight: 700;
  margin: 0 0 15px 0;
  letter-spacing: -0.02em;
  font-family: var(--font-en-bold);
}

/* 説明文 */
.card-text {
  font-size: var(--font-size-body);
  line-height: 1.7;
  color: var(--color-grey);
  margin: 0;
}

/* --- 右下の矢印ボタン --- */
.card-arrow {
  position: absolute;
  right: 30px;
  bottom: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  z-index: 20;
  transition: transform 0.3s ease;
}

/* --- 背景イラストの配置 --- */
.card-illustration {
  position: absolute;
  right: -30px;
  top: -20px;
  width: 70%;
  height: 80%;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  transition: transform 0.5s ease;
  opacity: 0.9;
}

/* ホバー時に画像も少し動かす演出 */
.gx-card:hover .card-illustration {
  transform: scale(1.05) translate(-10px, -10px);
}

/* ダミー用の背景色（画像を用意したら background-image に書き換えてください） */
.bg-recruit {
  background-image: url("../img/contact_recruit.png");
}

.bg-contact {
  background-image: url("../img/contact_contact.png");
}

/* 無効化状態のスタイル */
.gx-card.is-disabled {
  pointer-events: none;
  cursor: not-allowed;
  filter: grayscale(100%);
  opacity: 0.6;
  box-shadow: none !important;
  transform: none !important;
}
.gx-card.is-disabled .card-tag {
  color: #888;
}
.gx-card.is-disabled .card-title, .gx-card.is-disabled .card-text {
  color: #999;
}
.gx-card.is-disabled .button_contact {
  background-color: #ccc !important;
  background-image: none !important;
}
.gx-card.is-disabled::after {
  content: "COMING SOON";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.2);
  border: 5px solid rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  z-index: 100;
  pointer-events: none;
  font-family: var(--font-en);
}

/* --- レスポンシブ対応 (スマホ表示) --- */
@media (max-width: 800px) {
  .contact {
    width: 100%;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
  }
  .card-wrapper {
    padding: 15px;
  }
  .gx-card {
    padding: 35px;
    min-height: auto;
  }
  .card-title {
    font-size: 28px;
  }
  .card-illustration {
    position: absolute;
    right: -10px;
    top: -10px;
    width: 60%;
    height: 60%;
  }
}
@media screen and (max-width: 450px) {
  .card-wrapper {
    flex-direction: column;
    padding: 50px 15px 50px 15px;
  }
  .card-content {
    position: relative;
    z-index: 10;
    max-width: 200px;
  }
}
.button_contact {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  position: relative;
  color: var(--clr);
  background-color: var(--color-black);
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: 0.7s;
}

.button_contact__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.gx-card:hover .card-arrow .button_contact {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgb(57, 184, 159) 0%, rgb(126, 214, 223) 100%);
}
.gx-card:hover .card-arrow .button_contact .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}
.gx-card:hover .card-arrow .button_contact .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

footer {
  position: relative;
  width: 100%;
}
footer .footer_logo_btn {
  position: absolute;
  right: 0px;
  bottom: 350px;
  z-index: -1;
  pointer-events: none;
}
footer .footer_logo_btn img {
  width: 400px;
  height: auto;
  display: block;
  opacity: 0.8;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 75px;
  padding-bottom: 75px;
}

.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px;
  min-height: 100px;
  max-height: 150px;
}

.content {
  position: relative;
  height: 5vh;
  text-align: center;
  background-color: white;
  font-size: 2rem;
}

.content_bottom {
  position: relative;
  height: 5vh;
  text-align: center;
  background-color: white;
  font-size: 1.5rem;
  font-family: var(--font-jp);
}

.footer_nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: -1px 0 -1px 0;
}
.footer_nav a {
  text-decoration: none;
  color: var(--color-black);
  font-weight: 600;
  transition: 0.5s;
  font-family: var(--font-en-bold);
}
.footer_nav a:hover {
  opacity: 0.5;
}

.copyright {
  padding-top: 20px;
  padding-bottom: 50px;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--color-black);
}

@media screen and (max-width: 800px) {
  footer {
    height: auto !important;
    position: relative;
  }
  .waves {
    height: auto !important;
    min-height: 0 !important;
    display: block;
    margin-bottom: -1px !important;
  }
  .content,
  .content_bottom {
    height: auto !important;
    width: 100%;
    background-color: #fff !important;
    padding: 0 20px !important;
    box-sizing: border-box;
    position: relative;
  }
  .content.flex {
    display: flex;
    justify-content: flex-start !important;
    padding-top: 30px !important;
    padding-bottom: 20px !important;
  }
  .content.flex img {
    width: 200px;
    height: auto;
  }
  .content.footer_nav {
    display: flex;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 15px;
    padding-bottom: 5px !important;
    margin: -1px 0 -1px 0;
  }
  .content.footer_nav a {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-black);
    text-align: left;
    display: block;
  }
  .content_bottom.footer_nav {
    display: flex;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 15px;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .content_bottom.footer_nav a {
    font-size: 1.2rem;
    font-weight: normal;
  }
  .content.copyright {
    text-align: left !important;
    padding-top: 10px !important;
    padding-bottom: 20px !important;
    font-size: 1rem;
  }
  .footer_logo_btn {
    display: none !important;
  }
}
.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 800px) {
  .waves {
    height: 60px;
    min-height: 60px;
  }
  .content {
    height: 5vh;
  }
  h1 {
    font-size: 24px;
  }
}
.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f062";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: var(--grey);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}

.progress-wrap:hover::after {
  opacity: 0;
}

.progress-wrap::before {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f062";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  background-image: linear-gradient(298deg, var(--lightgreen), var(--lightblue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--lightgreen);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

body.light .progress-wrap {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
}

body.light .progress-wrap::after {
  color: var(--black-blue);
}

body.light .progress-wrap svg.progress-circle path {
  stroke: var(--black-blue);
}

.switch,
.circle {
  transition: all 300ms linear;
}

.switch {
  width: 80px;
  height: 4px;
  border-radius: 27px;
  background-image: linear-gradient(298deg, var(--red), var(--yellow));
  position: fixed;
  right: 50px;
  top: 75px;
  display: block;
  margin: 0 auto;
  text-align: center;
  opacity: 1;
  z-index: 33333;
  transition: all 300ms linear;
}

.circle {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black-blue-light-3);
  box-shadow: 0 4px 4px rgba(26, 53, 71, 0.25), 0 0 0 1px rgba(26, 53, 71, 0.07);
  animation: border-transform 10s linear infinite alternate forwards;
}

.circle:hover {
  box-shadow: 0 8px 8px rgba(26, 53, 71, 0.25), 0 0 0 1px rgba(26, 53, 71, 0.07);
}

.circle:before {
  position: absolute;
  font-family: "Unicons";
  content: "\eac1";
  top: 0;
  left: 0;
  z-index: 2;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  width: 100%;
  height: 40px;
  opacity: 1;
  color: var(--grey);
  transition: all 300ms linear;
}

.circle:after {
  position: absolute;
  font-family: "Unicons";
  content: "\eb8f";
  top: 0;
  left: 0;
  z-index: 2;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  width: 100%;
  height: 40px;
  color: var(--yellow);
  opacity: 0;
  transition: all 300ms linear;
}

.switched .circle {
  left: 45px;
  box-shadow: 0 4px 4px rgba(26, 53, 71, 0.25), 0 0 0 1px rgba(26, 53, 71, 0.07);
  background: var(--black-blue);
}

.switched .circle:hover {
  box-shadow: 0 8px 8px rgba(26, 53, 71, 0.25), 0 0 0 1px rgba(26, 53, 71, 0.07);
}

.switched .circle:before {
  opacity: 0;
}

.switched .circle:after {
  opacity: 1;
}

@media screen and (max-width: 450px) {
  .progress-wrap {
    right: 30px;
    bottom: 30px;
    height: 30px;
    width: 30px;
  }
  .progress-wrap::before {
    font-size: 16px;
    height: 30px;
    width: 30px;
    line-height: 30px;
  }
  .progress-wrap::after {
    font-size: 16px;
    height: 30px;
    width: 30px;
    line-height: 30px;
  }
}
.form-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  max-width: 500px;
  margin: 0 auto 40px;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}
.form-step::before {
  content: "";
  position: absolute;
  top: 20px; /* 丸の中央の高さ */
  /* ▼▼▼ 修正箇所 ▼▼▼ */
  /* 以前の left: 0; width: 100%; を削除し、以下に書き換えます */
  /* 左右の余白を「アイテム1つ分の幅の半分」に設定して、両端のはみ出しをなくす */
  left: 16.6666666667%;
  right: 16.6666666667%;
  /* ▲▲▲ 修正箇所 ▲▲▲ */
  height: 3px;
  background-color: #e0e0e0;
  z-index: -1;
}
.form-step__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  width: 33.33%;
}
.form-step__num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e0e0e0;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Futura PT", "Jost", sans-serif;
  transition: all 0.3s ease;
}
.form-step__text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #999;
  font-family: "Noto Sans JP", sans-serif;
  transition: all 0.3s ease;
}
.form-step__item.is-active .form-step__num {
  background: linear-gradient(135deg, rgb(57, 184, 159) 0%, rgb(126, 214, 223) 100%);
  box-shadow: 0 4px 10px rgba(57, 184, 159, 0.3);
  transform: scale(1.1);
}
.form-step__item.is-active .form-step__text {
  color: var(--green2);
}
.form-step__item.is-done .form-step__num {
  background: var(--green2);
}
.form-step__item.is-done .form-step__text {
  color: #333;
}
.form-step__item.is-done::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  height: 3px;
  background: var(--green2);
  z-index: -1;
}
.form-step__item:last-child::after {
  display: none;
}
@media screen and (max-width: 450px) {
  .form-step {
    width: 100%;
    margin: 0 auto 30px;
  }
  .form-step__num {
    width: 32px;
    height: 32px;
    font-size: 1.4rem;
  }
  .form-step__text {
    font-size: 1.1rem;
  }
  .form-step::before, .form-step__item.is-done::after {
    top: 16px;
  }
}

.p-home .FirstView {
  width: 100%;
  height: 100vh;
  position: relative;
}
.p-home .FirstView-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.p-home .fv_philosophy {
  width: 100%;
  text-align: center;
  color: #fff;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
  font-size: var(--font-size-fv);
  line-height: 1;
  font-feature-settings: "palt";
  letter-spacing: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-height: 750px) {
  .p-home .fv_philosophy {
    font-size: 7.8rem !important;
    top: 50% !important;
    line-height: 1 !important;
    letter-spacing: 0.15em !important;
  }
}
.p-home .fv_philosophy .equal {
  display: inline-block;
  transform: rotate(90deg);
  padding: 0px 0 10px 30px;
}
@media screen and (max-width: 450px) {
  .p-home .fv_philosophy {
    font-size: clamp(2.8rem, 9.3vw, 40px);
    letter-spacing: 0.15em;
    line-height: 1.6;
  }
  .p-home .fv_philosophy .cross {
    display: block;
    line-height: 1;
    margin: 5px 0;
    letter-spacing: 0;
  }
  .p-home .fv_philosophy .equal {
    display: inline-block;
    padding: 0;
    margin: 5px 0;
    letter-spacing: 0;
  }
}
.p-home .scroll_wrap {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.p-home .scroll_txt {
  margin: 0;
  font-family: var(--font-en-bold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #fff;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
  writing-mode: vertical-rl;
}
.p-home .scroll {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.p-home .scroll::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  animation: scrollLine 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.p-home .AboutUs {
  width: 100%;
  min-height: 150vh;
  padding: 10rem 1.5rem;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .p-home .AboutUs {
    height: auto;
    min-height: 50vh;
    padding: 150px 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-home .AboutUs {
    height: auto;
    min-height: 50vh;
    padding: 100px 1.5rem;
  }
}
.p-home .aboutus_wrap {
  width: clamp(50%, 5.56vw + 711px, 75%);
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  margin: 0 auto;
  gap: 50px;
}
.p-home .aboutus_wrap .aboutus_ttl_wrap {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.p-home .aboutus_wrap .aboutus_ttl_wrap h2 {
  font-size: var(--font-size-h2);
  font-weight: 700;
  margin: 0;
  margin-bottom: 1rem;
  margin-top: -5px;
  font-family: var(--font-en-bold);
  white-space: nowrap;
}
.p-home .aboutus_wrap .aboutus_ttl_wrap p {
  font-size: var(--font-size-sub);
  color: var(--color-black);
  font-weight: 700;
  margin-top: -15px;
  opacity: 0.8;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .p-home .aboutus_wrap {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
}
.p-home .aboutus_exp_wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
}
.p-home .aboutus_exp_wrap .button_more {
  align-self: flex-end;
  margin: 20px 0 50px 0;
}
.p-home .aboutus_exp_wrap p {
  font-size: var(--font-size-h3);
  font-weight: 500;
  line-height: 2;
}
.p-home .marker {
  text-decoration: underline;
  text-decoration-thickness: 0.95em;
  text-decoration-color: #4edcb3;
  text-underline-offset: -0.7em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.p-home .bg_img_moonrabi {
  width: 100%;
  height: auto;
  position: absolute;
  top: 37%;
  left: 0;
  z-index: -1;
}
.p-home .bg_img_moonrabi img {
  width: 100vw;
  height: auto;
  opacity: 0.5;
}
.p-home .bg_img_moonrabi .au_pc {
  display: block;
}
.p-home .bg_img_moonrabi .au_tab {
  display: none;
}
@media screen and (max-width: 800px) {
  .p-home .bg_img_moonrabi .au_pc {
    display: none;
  }
  .p-home .bg_img_moonrabi .au_tab {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0.3;
    transform: translateY(-20%);
  }
}
@media screen and (max-width: 800px) {
  .p-home .bg_img_moonrabi {
    width: 100%;
    height: auto;
    position: absolute;
    top: 30%;
    left: 0;
    z-index: -1;
  }
  .p-home .aboutus_wrap {
    width: 75%;
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 450px) {
  .p-home .bg_img_moonrabi {
    width: 100%;
    height: auto;
    position: absolute;
    top: 40%;
    left: 0;
    z-index: -1;
  }
  .p-home .aboutus_wrap {
    width: 85%;
    flex-direction: column;
    gap: 30px;
  }
}
.p-home .OurService {
  width: 100%;
  position: relative;
}
.p-home .OurService .Ourservice_fixed {
  width: 40%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: clamp(100px, 15vh, 200px) 5vw clamp(100px, 15vh, 200px) 12.5vw;
  border-radius: 0 50px 50px 0;
  background-color: #FFF;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
  z-index: 10;
  max-height: 90vh;
  overflow-y: auto;
}
.p-home .OurService .Ourservice_fixed::-webkit-scrollbar {
  width: 6px;
}
.p-home .OurService .Ourservice_fixed::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.p-home .OurService .Ourservice_fixed .Ourservice_ttl h2 {
  font-size: var(--font-size-h2);
  font-weight: 700;
  margin: 0;
  line-height: 0.9;
  margin-bottom: 1rem;
  font-family: var(--font-en-bold);
}
.p-home .OurService .Ourservice_fixed .Ourservice_ttl p {
  font-size: var(--font-size-sub);
  color: var(--color-black);
  font-weight: 700;
  margin-top: -5px;
  opacity: 0.8;
}
.p-home .OurService .Ourservice_fixed .Ourservice_exp p {
  padding: clamp(15px, 3vh, 30px) 0;
  font-size: var(--font-size-body);
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .p-home .OurService .Ourservice_fixed {
    padding: clamp(50px, 8vh, 100px) 5vw clamp(50px, 8vh, 100px) 12.5vw;
  }
}
@media screen and (max-width: 800px) {
  .p-home .OurService .Ourservice_fixed {
    padding: clamp(80px, 14vh, 120px) 3vw clamp(80px, 14vh, 120px) 5vw;
  }
}
@media screen and (max-width: 450px) {
  .p-home .OurService .Ourservice_fixed {
    width: 50%;
    padding: clamp(30px, 5vh, 50px) 5vw;
    border-radius: 0 30px 30px 0;
  }
}
@media screen and (max-width: 375px) {
  .p-home .OurService .Ourservice_fixed {
    top: auto;
    transform: none;
    width: 100%;
    max-height: none;
    overflow: visible;
    border-radius: 0 0 30px 30px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    padding: clamp(20px, 4vh, 40px) 5vw;
  }
  .p-home .OurService .Ourservice_fixed .Ourservice_ttl h2 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
  }
  .p-home .OurService .Ourservice_fixed .Ourservice_ttl p {
    font-size: 1rem;
  }
  .p-home .OurService .Ourservice_fixed .Ourservice_exp p {
    padding: 15px 0;
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.p-home .service-card {
  width: 85%;
  max-width: 600px;
  height: auto;
  min-height: 400px;
  background: #fff;
  border-radius: 40px;
  padding: 40px;
  position: relative;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.1), inset 1px 1px 0px rgba(255, 255, 255, 0.5);
  will-change: transform;
  color: var(--color-black);
  text-align: left;
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: scale(1) translateY(0);
}
.p-home .service-card:hover {
  transform: scale(1.02);
}
.p-home .panel-number {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-en);
  color: rgb(57, 184, 159);
  margin-bottom: 20px;
  opacity: 1;
}
.p-home .panel-icon_game {
  position: absolute;
  z-index: -1;
  width: clamp(180px, 20vw, 300px);
  height: auto;
  top: 30px;
  right: 50px;
  animation: floatingIcon 3s ease-in-out infinite alternate;
}
.p-home .panel-icon_illust {
  position: absolute;
  z-index: -1;
  width: clamp(150px, 18vw, 250px);
  height: auto;
  top: -10px;
  right: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  animation: floatingIcon 3s ease-in-out infinite alternate;
}
.p-home .panel-icon_consul {
  position: absolute;
  z-index: -1;
  width: clamp(170px, 19vw, 280px);
  height: auto;
  top: 0px;
  right: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  animation: floatingIcon 3s ease-in-out infinite alternate;
}
.p-home .panel-icon_localize {
  position: absolute;
  z-index: -1;
  width: clamp(140px, 16vw, 230px);
  height: auto;
  top: 5px;
  right: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  animation: floatingIcon 3s ease-in-out infinite alternate;
}
.p-home .panel-icon_human {
  position: absolute;
  z-index: -1;
  width: clamp(120px, 14vw, 200px);
  height: auto;
  top: 10px;
  right: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  animation: floatingIcon 3s ease-in-out infinite alternate;
}
.p-home .panel-icon_game img,
.p-home .panel-icon_illust img,
.p-home .panel-icon_consul img,
.p-home .panel-icon_localize img,
.p-home .panel-icon_human img {
  width: 100%;
  height: auto;
  opacity: 0.5;
  border-radius: 25px;
}
@media screen and (max-width: 1024px) {
  .p-home .panel-icon_game,
  .p-home .panel-icon_illust,
  .p-home .panel-icon_consul,
  .p-home .panel-icon_localize,
  .p-home .panel-icon_human {
    right: auto;
    left: 50%;
    animation: none !important;
    transform: translate(-50%, 15px) !important;
  }
  .p-home .panel-icon_game.is-inview,
  .p-home .panel-icon_illust.is-inview,
  .p-home .panel-icon_consul.is-inview,
  .p-home .panel-icon_localize.is-inview,
  .p-home .panel-icon_human.is-inview {
    transform: translate(-50%, 0) !important;
  }
}
@media screen and (max-width: 800px) {
  .p-home .panel-icon_game img,
  .p-home .panel-icon_illust img,
  .p-home .panel-icon_consul img,
  .p-home .panel-icon_localize img,
  .p-home .panel-icon_human img {
    width: 100%;
    height: auto;
    opacity: 0.3;
    border-radius: 20px;
  }
}
@media screen and (max-width: 450px) {
  .p-home .panel-icon_game,
  .p-home .panel-icon_illust,
  .p-home .panel-icon_consul,
  .p-home .panel-icon_localize,
  .p-home .panel-icon_human {
    left: auto;
    transform: none;
    opacity: 1;
    animation: floatingIcon 3s ease-in-out infinite alternate;
  }
  .p-home .panel-icon_game {
    width: 230px !important;
    top: 30px !important;
  }
  .p-home .panel-icon_illust {
    width: 180px !important;
    top: -10px !important;
  }
  .p-home .panel-icon_consul {
    width: 200px !important;
    top: 0px !important;
  }
  .p-home .panel-icon_localize {
    width: 180px !important;
    top: 5px !important;
  }
  .p-home .panel-icon_human {
    width: 150px !important;
    top: 10px !important;
  }
}
@keyframes floatingIconMobile {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  100% {
    transform: translateX(-50%) translateY(-15px);
  }
}
.p-home .panel-content {
  margin-top: 50px;
  position: relative;
  z-index: 0;
}
.p-home .panel-sub {
  font-size: var(--font-size-sub);
  font-family: var(--font-en-bold);
  font-weight: 700;
  margin-bottom: 12px;
  opacity: 0.6;
}
.p-home .panel-title {
  font-size: var(--font-size-panel);
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 25px;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
}
@media screen and (max-width: 375px) {
  .p-home .panel-title {
    margin-bottom: 15px;
  }
}
.p-home .panel-desc {
  width: 75%;
  font-size: var(--font-size-body);
  line-height: 1.8;
  color: var(--color-grey);
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .p-home .panel-desc {
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .p-home .panel-desc {
    margin-bottom: 15px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 800px) {
  .p-home .service-card {
    padding: 30px 20px;
    width: 90%;
  }
  .p-home .panel-icon {
    width: 150px;
    top: -30px;
    right: -10px;
  }
  .p-home .panel-desc {
    width: 100%;
  }
}
.p-home .js-pop-in {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(15px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, filter;
  transition-delay: 0.4s;
}
.p-home .js-pop-in.is-inview {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.p-home .style-game .flat-illustration.js-pop-in.is-inview {
  opacity: 0.5;
}
.p-home .style-game .flat-illustration.js-pop-in {
  transform: translateY(-40%);
}
.p-home .style-game .flat-illustration.js-pop-in.is-inview {
  transform: translateY(-50%);
}
.p-home .js-split-text .char {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(20px);
  text-decoration: inherit;
  vertical-align: middle;
  transition: none;
}
body.is-loaded .p-home .js-split-text .char {
  animation: textJinwari 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards;
  animation-delay: calc(1.5s + var(--i) * 0.06s);
}

@keyframes textJinwari {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px) scale(1.1);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}
.p-home .fv_philosophy .equal .char {
  transform: translateX(20px);
}
@keyframes textJinwariEqual {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateX(20px) scale(1.1);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0) scale(1);
  }
}
body.is-loaded .p-home .fv_philosophy .equal .char {
  animation-name: textJinwariEqual;
}

.p-home .vertical-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
  font-size: 2rem;
}
.p-home .horizontal-scroll-wrapper {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-image: url(../img/Ourservice_bg.png);
  background-size: cover;
  background-repeat: round;
}
.p-home .horizontal-container {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  padding-left: calc(40% + 100px);
}
@media screen and (max-width: 450px) {
  .p-home .horizontal-container {
    padding-left: calc(0% + 50px);
  }
}
.p-home .panel {
  width: 37.5vw;
  height: 100vh;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: white;
  flex-shrink: 0;
  position: relative;
  will-change: transform;
  transform: translateZ(0);
}
.p-home .horizontal-container .js-pop-in,
.p-home .horizontal-container .service-card,
.p-home .horizontal-container .flat-illustration {
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-home .horizontal-container .js-pop-in.is-inview,
.p-home .horizontal-container .service-card.is-inview,
.p-home .horizontal-container .flat-illustration.is-inview {
  opacity: 1;
  visibility: visible;
}
.p-home .panel, .p-home .service-card, .p-home .flat-illustration, .p-home .char {
  will-change: transform, opacity;
  backface-visibility: hidden;
}
@media (max-width: 800px) {
  .p-home .gradient-bg {
    filter: none !important;
  }
  .p-home .interactive {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .p-home .horizontal-scroll-wrapper {
    height: 100vh;
    position: relative;
    padding-bottom: 0;
    background-image: url(../img/Ourservice_bg.png);
    background-size: cover;
    background-repeat: round;
  }
  .p-home .OurService .Ourservice_fixed {
    position: absolute;
    top: auto;
    bottom: -90px;
    left: 0;
    margin: 0;
    z-index: 20;
    width: 90%;
    max-width: none;
    height: auto;
    padding: 30px 30px 30px 50px;
    border-radius: 0px 30px 30px 0;
    background-color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  .p-home .OurService .Ourservice_fixed .Ourservice_ttl h2 {
    margin-bottom: 10px;
  }
  .p-home .OurService .Ourservice_fixed .Ourservice_exp p {
    padding: 10px 0;
  }
  .p-home .horizontal-container {
    width: 100%;
    height: 100%;
    padding-top: 100px;
    padding-bottom: 0;
    padding-left: 50px;
    padding-right: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
  }
  .p-home .horizontal-container::-webkit-scrollbar {
    display: none;
  }
  .p-home .horizontal-container {
    scrollbar-width: none;
  }
  .p-home .panel {
    position: relative;
    top: auto;
    left: auto;
    width: 80vw;
    height: auto;
    margin-right: 30px;
    flex-shrink: 0;
    scroll-snap-align: center;
    display: block;
  }
  .p-home .panel:last-child {
    margin-right: 50px;
  }
  .p-home .service-card {
    width: 100%;
    min-height: 330px;
    margin: 0;
    transform: none;
    padding: 20px 20px;
  }
  .p-home .panel .flat-illustration {
    position: absolute !important;
    left: auto !important;
    transform: none !important;
    right: 20px !important;
    top: 20px !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: -1;
  }
  .p-home .panel-icon_game {
    width: 230px;
    top: 30px;
  }
  .p-home .panel-icon_illust {
    width: 180px;
    top: -10px;
  }
  .p-home .panel-icon_consul {
    width: 200px;
    top: 0px;
  }
  .p-home .panel-icon_localize {
    width: 180px;
    top: 5px;
  }
  .p-home .panel-icon_human {
    width: 150px;
    top: 10px;
  }
  .p-home .horizontal-container .js-pop-in.is-inview,
  .p-home .horizontal-container .service-card.is-inview,
  .p-home .horizontal-container .flat-illustration.is-inview,
  .p-home .panel .flat-illustration.is-inview {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 375px) {
  .p-home .horizontal-container {
    padding-left: 20px !important;
    padding-top: 30px !important;
  }
  .p-home .OurService .Ourservice_fixed {
    width: 95% !important;
    padding: 25px 20px !important;
    bottom: 30px !important;
  }
  .p-home .panel {
    width: 85vw !important;
    margin-right: 20px !important;
  }
  .p-home .panel-icon_game {
    width: 160px !important;
    top: 30px !important;
    right: 15px !important;
  }
  .p-home .panel-icon_illust {
    width: 140px !important;
    top: -10px !important;
    right: 10px !important;
  }
  .p-home .panel-icon_consul {
    width: 150px !important;
    top: 10px !important;
    right: 15px !important;
  }
  .p-home .panel-icon_localize {
    width: 130px !important;
    top: 15px !important;
    right: 15px !important;
  }
  .p-home .panel-icon_human {
    width: 110px !important;
    top: 20px !important;
    right: 15px !important;
  }
  .p-home .service-card {
    width: 100%;
    min-height: 300px;
    margin: 0;
    transform: none;
    padding: 20px 20px;
  }
}

.p-about .p-vision {
  width: 100%;
  padding: 0 1.5rem 100px 1.5rem;
  min-height: 75vh;
}
@media screen and (max-width: 800px) {
  .p-about .p-vision {
    padding: 50px 1.5rem 50px 1.5rem;
  }
}
@media screen and (max-width: 450px) {
  .p-about .p-vision {
    padding: 0px 1.5rem 50px 1.5rem;
  }
}
.p-about .p-vision .vision_wrap {
  width: clamp(40%, 709px - 9.23vw, 60%);
  height: 100%;
  min-height: inherit;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 800px) {
  .p-about .p-vision .vision_wrap {
    width: 75%;
  }
}
@media screen and (max-width: 450px) {
  .p-about .p-vision .vision_wrap {
    width: 85%;
  }
}
.p-about .p-vision .vision_wrap .vision-ttl-wrap {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.p-about .p-vision .vision_wrap .vision-ttl-wrap h2 {
  font-size: var(--font-size-h2);
  font-weight: 700;
  margin: 0;
  margin-bottom: 1rem;
  margin-top: -5px;
  font-family: var(--font-en-bold);
  white-space: nowrap;
}
.p-about .p-vision .vision_wrap .vision-ttl-wrap p {
  font-size: var(--font-size-sub);
  color: var(--color-black);
  font-weight: 600;
  margin-top: -15px;
  opacity: 0.8;
  white-space: nowrap;
}
.p-about .p-vision .vision_wrap .vision_name {
  margin-top: 3rem;
  font-size: var(--font-size-panel);
  color: var(--color-black);
  font-weight: 600;
  text-align: right;
}
.p-about .p-vision .vision_text {
  margin-top: 3rem;
  font-size: var(--font-size-body);
  color: var(--color-black);
  line-height: 1.8;
  font-weight: 400;
}
.p-about .p-history {
  width: 95%;
  box-sizing: border-box;
  position: relative;
  background: linear-gradient(90deg, rgb(126, 214, 223) 0%, rgb(57, 184, 159) 100%);
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  padding: 80px 0 120px 20%;
  margin: 100px 0 100px 0;
  color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .p-about .p-history {
    padding: 60px 0 100px 15%;
    border-radius: 0px 50px 50px 0;
    margin: 50px 0 50px 0;
  }
}
.p-about .p-history__header {
  margin-bottom: 60px;
}
.p-about .p-history__title {
  font-family: var(--font-en-bold);
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 10px 0;
}
.p-about .p-history__sub {
  font-family: var(--font-jp);
  font-size: var(--font-size-sub);
  font-weight: 500;
}
.p-about .p-history__scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.p-about .p-history__scroll-wrapper.active {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.p-about .p-history__scroll-wrapper img {
  pointer-events: none;
  -webkit-user-drag: none;
}
.p-about .p-history__scroll-wrapper::-webkit-scrollbar {
  display: none;
}
.p-about .p-history__scroll-wrapper {
  scrollbar-width: none;
}
.p-about .p-history__timeline {
  display: flex;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  padding-right: 100px;
}
.p-about .p-history__timeline::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #fff;
  z-index: 0;
}
@media screen and (max-width: 800px) {
  .p-about .p-history__timeline::before {
    top: 40px;
  }
}
.p-about .p-history__item {
  position: relative;
  flex-shrink: 0;
  width: 300px;
  margin-right: 40px;
  z-index: 1;
}
.p-about .p-history__date {
  font-family: var(--font-en);
  font-size: var(--font-size-panel);
  font-weight: 700;
  margin-bottom: 10px;
}
.p-about .p-history__dot {
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-radius: 50%;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.p-about .p-history__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-about .p-history__img {
  width: 100%;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
}
.p-about .p-history__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-about .p-history__text {
  font-size: var(--font-size-body);
  line-height: 1.6;
  font-weight: 500;
}
.p-about .p-history .scroll_wrap_history {
  position: absolute;
  bottom: 40px;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.p-about .p-history .scroll_txt_history {
  margin: 0;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
}
.p-about .p-history .scroll_history {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  transform: rotate(90deg);
  margin-left: 35px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.p-about .p-history .scroll_history::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  animation: scrollLine 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
.p-about .p-history .u-invisible {
  visibility: hidden;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.p-about .p-overview {
  width: 100%;
  min-height: 75vh;
  padding: 100px 1.5rem 0 1.5rem;
}
@media screen and (max-width: 800px) {
  .p-about .p-overview {
    padding: 50px 1.5rem 0 1.5rem;
  }
}
.p-about .p-overview .overview_wrap {
  width: clamp(40%, 709px - 9.23vw, 60%);
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 800px) {
  .p-about .p-overview .overview_wrap {
    width: 75%;
  }
}
@media screen and (max-width: 450px) {
  .p-about .p-overview .overview_wrap {
    width: 85%;
  }
}
.p-about .p-overview .overview_wrap .overview-ttl-wrap {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  padding-bottom: 50px;
}
.p-about .p-overview .overview_wrap .overview-ttl-wrap h2 {
  font-size: var(--font-size-h2);
  font-weight: 700;
  margin: 0;
  margin-bottom: 1rem;
  margin-top: -5px;
  font-family: var(--font-en-bold);
  white-space: nowrap;
}
.p-about .p-overview .overview_wrap .overview-ttl-wrap p {
  font-size: var(--font-size-sub);
  color: var(--color-black);
  font-weight: 600;
  margin-top: -15px;
  opacity: 0.8;
  white-space: nowrap;
}
.p-about .p-overview .overview_contents_wrap {
  margin-top: 20px;
  font-size: var(--font-size-body);
  color: var(--color-black);
  line-height: 1.8;
  font-weight: 500;
  display: flex;
  gap: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  align-items: baseline;
}
@media screen and (max-width: 450px) {
  .p-about .p-overview .overview_contents_wrap {
    gap: 0px;
  }
}
.p-about .p-overview .overview_contents_wrap iframe {
  margin-top: 20px;
}
.p-about .p-overview .overview_contents_wrap .overview_contents_ttl {
  color: var(--color-lightgrey);
  font-weight: 600;
  width: 200px;
  flex-shrink: 0;
}
@media screen and (max-width: 450px) {
  .p-about .p-overview .overview_contents_wrap .overview_contents_ttl {
    width: 100px;
  }
}
.p-about .p-overview .overview_contents_wrap .overview_contents_body {
  flex: 1;
  min-width: 0;
}
.p-about .p-overview .overview_contents_wrap .overview_contents_body p {
  margin: 0;
  margin-bottom: 20px;
  font-size: var(--font-size-body);
  line-height: 1.8;
}
.p-about .p-overview .overview_contents_wrap .overview_contents_body .p-access__map {
  position: relative;
  width: 100%;
  padding-top: 100%;
  height: 0;
  overflow: hidden;
}
.p-about .p-overview .overview_contents_wrap .overview_contents_body .p-access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.p-ourservices .game-intro {
  width: clamp(50%, 14.44vw + 569px, 70%);
  margin: 0px auto;
  padding: 0 1.5rem;
}
@media screen and (max-width: 800px) {
  .p-ourservices .game-intro {
    width: 75%;
  }
}
@media screen and (max-width: 450px) {
  .p-ourservices .game-intro {
    width: 85%;
  }
}
.p-ourservices .service-ttl-wrap {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  margin-bottom: 30px;
}
@media screen and (max-width: 800px) {
  .p-ourservices .service-ttl-wrap {
    margin-bottom: 20px;
  }
}
.p-ourservices .service-ttl-wrap h2 {
  font-size: var(--font-size-h2);
  font-weight: 700;
  margin: 0;
  margin-bottom: 1rem;
  margin-top: -5px;
  font-family: var(--font-en);
  white-space: nowrap;
}
.p-ourservices .service-ttl-wrap p {
  font-size: var(--font-size-sub);
  color: var(--color-black);
  font-weight: 600;
  margin-top: -15px;
  opacity: 0.8;
  white-space: nowrap;
}
.p-ourservices .section-title {
  font-size: var(--font-size-h3);
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 15px;
}
.p-ourservices .section-title::before {
  content: "";
  display: block;
  width: 30px;
  height: 4px;
  background-color: var(--green);
  border-radius: 2px;
}
.p-ourservices .game-card {
  display: flex;
  align-items: stretch;
  gap: 40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 800px) {
  .p-ourservices .game-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .p-ourservices .game-card__image img {
    height: auto;
  }
}
.p-ourservices .game-card__image {
  width: 40%;
  flex: 0 0 45%;
  display: flex;
}
@media screen and (max-width: 800px) {
  .p-ourservices .game-card__image {
    width: 100%;
  }
}
.p-ourservices .game-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: block;
}
.p-ourservices .game-card__content {
  flex: 1;
}
.p-ourservices .game-card__tag {
  display: inline-block;
  background: linear-gradient(90deg, #45B89F 0%, #43D3B7 100%);
  color: #fff;
  font-size: var(--font-size-sub);
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.p-ourservices .game-card__title {
  font-size: var(--font-size-osttl);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 5px;
}
.p-ourservices .game-card__subtitle {
  font-size: var(--font-size-sub);
  font-weight: 700;
  margin: 0 0 20px;
}
.p-ourservices .game-card__desc {
  font-size: var(--font-size-body);
  line-height: 1.8;
  margin-bottom: 30px;
}
@media screen and (max-width: 800px) {
  .p-ourservices .game-card__desc {
    margin-bottom: 15px;
  }
}
.p-ourservices .past-games {
  width: 100%;
  margin: 80px auto 0;
  text-align: center;
}
.p-ourservices .past-games .btn-icon {
  position: relative;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
.p-ourservices .past-games .btn-icon::before, .p-ourservices .past-games .btn-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-black);
  transition: transform 0.3s ease;
}
.p-ourservices .past-games .btn-icon::before {
  width: 14px;
  height: 2px;
}
.p-ourservices .past-games .btn-icon::after {
  width: 2px;
  height: 14px;
}
.p-ourservices .past-games.is-open .btn-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-ourservices .past-games__content-wrapper {
  display: block;
  height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: height 0.5s ease-in-out, opacity 0.5s ease, margin-top 0.3s ease;
}
.p-ourservices .past-games__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  padding: 0px 0;
}
.p-ourservices .game-card__btn.is-ended {
  background-color: var(--color-black);
  pointer-events: none;
  padding: 10px 30px;
  border-radius: 50px;
  display: inline-block;
  color: #fff;
  font-size: var(--font-size-body);
  font-weight: 600;
}
.p-ourservices .section_line {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 100px auto;
}
@media screen and (max-width: 450px) {
  .p-ourservices .section_line {
    margin: 50px auto;
  }
}
.p-ourservices .other-service {
  width: clamp(50%, 5.56vw + 711px, 60%);
  margin: 0px auto;
  padding: 0 1.5rem;
}
@media screen and (max-width: 800px) {
  .p-ourservices .other-service {
    width: 75%;
  }
}
@media screen and (max-width: 450px) {
  .p-ourservices .other-service {
    width: 85%;
  }
}
.p-ourservices .other-service__block {
  min-height: 120px;
  margin-bottom: 30px;
}
.p-ourservices .other-service__block .other-ttl-wrap h3 {
  font-size: var(--font-size-osttl);
  font-family: var(--font-en);
}
.p-ourservices .other-service__block .other-ttl-wrap p {
  font-size: var(--font-size-sub);
  font-family: var(--font-jp);
}
.p-ourservices .other-service__block .main-accordion-toggle {
  display: none;
}
@media screen and (max-width: 1024px) {
  .p-ourservices .other-service__block .service-accordion-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
  }
  .p-ourservices .other-service__block .main-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
  }
  .p-ourservices .other-service__block .main-accordion-header .ttl-inner {
    text-align: left;
  }
  .p-ourservices .other-service__block .main-accordion-header .main-accordion-icon {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: var(--black);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .p-ourservices .other-service__block .main-accordion-header .main-accordion-icon::before, .p-ourservices .other-service__block .main-accordion-header .main-accordion-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    transition: transform 0.3s;
  }
  .p-ourservices .other-service__block .main-accordion-header .main-accordion-icon::before {
    width: 16px;
    height: 2px;
  }
  .p-ourservices .other-service__block .main-accordion-header .main-accordion-icon::after {
    width: 2px;
    height: 16px;
  }
  .p-ourservices .other-service__block .main-accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.3s;
  }
  .p-ourservices .other-service__block .main-accordion-toggle:checked + .main-accordion-header .main-accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .p-ourservices .other-service__block .main-accordion-toggle:checked ~ .main-accordion-content {
    max-height: 2000px;
    opacity: 1;
    margin-top: 30px;
  }
  .p-ourservices .other-service__block .flow-container {
    display: block;
    position: relative;
    padding-left: 0;
  }
  .p-ourservices .other-service__block .flow-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
  }
  .p-ourservices .other-service__block .flow-item .flow-content {
    display: flex;
    gap: 30px;
  }
  .p-ourservices .other-service__block .flow-header {
    display: none;
  }
  .p-ourservices .other-service__block .flow-icon {
    width: 80px;
    flex-shrink: 0;
    text-align: center;
  }
  .p-ourservices .other-service__block .flow-icon img {
    width: 100%;
    height: auto;
  }
  .p-ourservices .other-service__block .flow-text-wrap {
    flex: 1;
    text-align: left;
    padding-top: 10px;
  }
  .p-ourservices .other-service__block .sp-flow-title {
    display: inline-block;
    background-color: var(--green);
    color: #fff;
    font-size: var(--font-size-sub);
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 10px;
  }
  .p-ourservices .other-service__block .flow-desc {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1025px) {
  .p-ourservices .other-service__block .main-accordion-toggle,
  .p-ourservices .other-service__block .main-accordion-icon {
    display: none;
  }
  .p-ourservices .other-service__block .main-accordion-header {
    cursor: default;
    display: block;
  }
  .p-ourservices .other-service__block .ttl-inner {
    margin-bottom: 20px;
  }
  .p-ourservices .other-service__block .main-accordion-content {
    max-height: none !important;
    opacity: 1 !important;
    overflow: visible;
  }
  .p-ourservices .other-service__block .sp-flow-title {
    display: none;
  }
  .p-ourservices .other-service__block .flow-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px 40px;
  }
  .p-ourservices .other-service__block .flow-item {
    width: calc((100% - 80px) / 3);
    max-width: 320px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .p-ourservices .other-service__block .flow-item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -40px;
    width: 40px;
    height: 2px;
    background-color: var(--grey);
    transform: translateY(-50%);
  }
  .p-ourservices .other-service__block .flow-item:nth-child(3)::after, .p-ourservices .other-service__block .flow-item:last-child::after {
    display: none;
  }
  .p-ourservices .other-service__block .flow-header {
    margin-bottom: 20px;
  }
  .p-ourservices .other-service__block .flow-badge {
    background-color: var(--green);
    color: #fff;
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: var(--font-size-sub);
    white-space: nowrap;
  }
  .p-ourservices .other-service__block .flow-icon {
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .p-ourservices .other-service__block .flow-icon img {
    max-height: 100%;
    width: auto;
  }
  .p-ourservices .other-service__block .flow-desc {
    font-size: var(--font-size-body);
    line-height: 1.8;
    text-align: left;
  }
}

.p-contact .contact-form-section {
  width: 100%;
  padding: 0 1.5rem 100px;
  display: flex;
  justify-content: center;
}
.p-contact .contact-form-card {
  width: 100%;
  max-width: 800px;
  background-color: #fff;
  border-radius: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  padding: 80px 60px;
  border: 1px solid #eee;
}
@media screen and (max-width: 800px) {
  .p-contact .contact-form-card {
    padding: 60px 30px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 450px) {
  .p-contact .contact-form-card {
    padding: 40px 20px;
  }
}
.p-contact .form-title {
  text-align: center;
  font-family: var(--font-jp);
  font-size: var(--font-size-osttl);
  font-weight: 700;
  margin-bottom: 60px;
}
@media screen and (max-width: 450px) {
  .p-contact .form-title {
    margin-bottom: 40px;
    font-size: 2rem;
  }
}
.p-contact .form-row {
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.p-contact .form-row.privacy-row {
  border-bottom: none;
  margin-bottom: 0px;
}
.p-contact .form-row .confirm-text {
  font-size: var(--font-size-body);
}
.p-contact .form-row .attention_wrap {
  margin-top: 15px;
}
.p-contact .form-row .attention_wrap .form_attention {
  margin-bottom: 5px;
  font-size: var(--font-size-sub);
}
.p-contact .form-label {
  display: block;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: var(--font-size-sub-heading);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.p-contact .form-label .form_enttl {
  font-family: var(--font-en);
  margin-top: 3px;
  margin-left: -5px;
}
.p-contact .form-label .portfolio_attention {
  font-size: var(--font-size-sub);
  color: var(--color-gray, #666);
}
@media screen and (max-width: 450px) {
  .p-contact .form-label {
    font-size: 1.4rem;
  }
}
.p-contact .input_address {
  padding-bottom: 20px;
}
.p-contact .badge-required {
  color: var(--red);
  font-size: 2.4rem;
  font-weight: 500;
  vertical-align: middle;
}
.p-contact .input-field {
  width: 100%;
  background-color: #F0F0F0;
  border: none;
  border-radius: 8px;
  padding: 15px 20px;
  font-family: var(--font-jp);
  font-size: 1.6rem;
  color: #333;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.p-contact .input-field::-moz-placeholder {
  color: #999;
}
.p-contact .input-field::placeholder {
  color: #999;
}
.p-contact .input-field:focus {
  outline: 2px solid #39b89f;
  background-color: #fff;
}
@media screen and (max-width: 450px) {
  .p-contact .input-field {
    font-size: 1.4rem;
    padding: 12px 15px;
  }
}
.p-contact .telarea-field {
  width: 200px;
}
.p-contact .namearea-field {
  width: 250px;
}
.p-contact .textarea-field {
  height: 200px;
  resize: vertical;
}
.p-contact .form-note {
  font-size: 1.2rem;
  color: #666;
  margin-top: 8px;
  font-family: var(--font-jp);
}
.p-contact .name-wrapper {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 450px) {
  .p-contact .name-wrapper {
    gap: 15px;
  }
}
.p-contact .name-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}
.p-contact .name-box .name-sub-label {
  margin-top: 15px;
  font-weight: 700;
  font-size: 1.6rem;
  flex-shrink: 0;
}
@media screen and (max-width: 450px) {
  .p-contact .name-box .name-sub-label {
    margin-top: 10px;
  }
}
.p-contact .name-input-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.p-contact .error-message {
  display: none;
  color: var(--red);
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 8px;
  padding: 5px 0;
  line-height: 1.5;
  font-family: var(--font-jp);
}
.p-contact .error-message::before {
  content: "\f06a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 6px;
  vertical-align: middle;
}
.p-contact .checkbox-label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  margin-bottom: 20px;
}
.p-contact .checkbox-label input[type=checkbox] {
  display: none;
}
.p-contact .checkbox-label .custom-checkbox {
  width: 24px;
  height: 24px;
  background-color: #ddd;
  border-radius: 4px;
  margin-right: 10px;
  position: relative;
  transition: background-color 0.2s;
  flex-shrink: 0;
}
.p-contact .checkbox-label input:checked + .custom-checkbox {
  background-color: #39b89f;
}
.p-contact .checkbox-label input:checked + .custom-checkbox::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 12px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.p-contact .checkbox-label .checkbox-text {
  font-size: 1.5rem;
  font-weight: 700;
}
.p-contact .checkbox-label .checkbox-text .u-small {
  font-size: 1.2rem;
  font-weight: 400;
  margin-left: 5px;
}
@media screen and (max-width: 450px) {
  .p-contact .checkbox-label .checkbox-text {
    font-size: 1.3rem;
  }
  .p-contact .checkbox-label .checkbox-text .u-small {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }
}
.p-contact .policy_link {
  color: var(--green2);
}
.p-contact .form-footer_index {
  text-align: center;
  padding-top: 20px;
}
.p-contact .submit-note {
  font-size: 1.3rem;
  font-family: var(--font-jp);
  font-weight: 600;
}
.p-contact select {
  width: 100%;
  background-color: #F0F0F0;
  border: none;
  border-radius: 8px;
  padding: 15px 40px 15px 20px;
  font-family: var(--font-jp);
  font-size: 1.6rem;
  color: #333;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 24px;
}
.p-contact select:focus {
  outline: 2px solid #39b89f;
  background-color: #fff;
}
.p-contact select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #333;
}
.p-contact select:invalid {
  color: #999;
}
.p-contact select option {
  color: #333;
  background-color: #fff;
}
@media screen and (max-width: 450px) {
  .p-contact select {
    font-size: 1.4rem;
    padding: 12px 35px 12px 15px;
  }
}
.p-contact input[type=number] {
  width: 100%;
  background-color: #F0F0F0;
  border: none;
  border-radius: 8px;
  padding: 15px 20px;
  font-family: var(--font-jp);
  font-size: 1.6rem;
  color: #333;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.p-contact input[type=number]::-moz-placeholder {
  color: #999;
}
.p-contact input[type=number]::placeholder {
  color: #999;
}
.p-contact input[type=number]:focus {
  outline: 2px solid #39b89f;
  background-color: #fff;
}
.p-contact input[type=number]::-webkit-outer-spin-button, .p-contact input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.p-contact input[type=number] {
  -moz-appearance: textfield;
}
@media screen and (max-width: 450px) {
  .p-contact input[type=number] {
    font-size: 1.4rem;
    padding: 12px 15px;
  }
}
.p-contact .file-input-wrapper {
  width: 100%;
}
.p-contact .file-input-wrapper.is-error input[type=file]::file-selector-button {
  border: 1px solid var(--red);
  background-color: #fff5f5;
}
.p-contact input[type=file] {
  font-family: var(--font-jp);
  font-size: 1.5rem;
  color: #333;
  padding: 5px 0;
  cursor: pointer;
}
.p-contact input[type=file]::file-selector-button {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px 16px;
  margin-right: 15px;
  font-family: var(--font-jp);
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
}
.p-contact input[type=file]::file-selector-button:hover {
  background-color: #f8f8f8;
  border-color: #39b89f;
}
@media screen and (max-width: 450px) {
  .p-contact input[type=file] {
    font-size: 1.3rem;
  }
  .p-contact input[type=file]::file-selector-button {
    padding: 8px 12px;
    font-size: 1.3rem;
    margin-right: 10px;
  }
}
.p-contact .input-field.is-error {
  background-color: #fff5f5;
  outline: 1px solid var(--red);
  color: var(--red);
}
.p-contact .checkbox-label.is-error .custom-checkbox {
  border: 2px solid var(--red);
  background-color: #fff5f5;
}
.p-contact .input-field.is-error ~ .error-message,
.p-contact .checkbox-label.is-error ~ .error-message,
.p-contact .file-input-wrapper.is-error ~ .error-message {
  display: block;
  animation: shake 0.4s ease;
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
.p-contact .thanks_section {
  position: relative;
  top: 0px;
  padding-bottom: 100px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0 1.5rem;
  font-size: var(--font-size-body);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-contact .thanks_section .thanks_wrap {
  display: flex;
  justify-content: center;
}
.p-contact .thanks_section .thanks_content {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.p-contact .thanks_section .thanks_content .thanks_text .thanks_text__ttl {
  font-size: var(--font-size-h3);
  font-family: var(--font-jp);
  font-weight: 600;
  margin-bottom: 15px;
}
.p-contact .thanks_section .thanks_content .thanks_text .thanks_text__exp {
  line-height: 1.7;
  margin-bottom: 15px;
}
.p-contact .thanks_section .thanks_ttl {
  font-size: var(--font-size-h2);
  font-family: var(--font-en);
  font-weight: 700;
  margin-bottom: 50px;
}
.p-contact .thanks_section .totop-btn {
  align-self: flex-end;
}

.p-pp-com .pp-com-section {
  position: relative;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0 1.5rem 100px;
  font-size: var(--font-size-body);
  display: flex;
  justify-content: center;
}
.p-pp-com .pp-com-title {
  text-align: center;
  font-family: var(--font-jp);
  font-size: var(--font-size-osttl);
  font-weight: 700;
  margin-bottom: 60px;
}
@media screen and (max-width: 450px) {
  .p-pp-com .pp-com-title {
    margin-bottom: 40px;
    font-size: 2rem;
  }
}
.p-pp-com .pp-title {
  text-align: center;
  font-family: var(--font-jp);
  font-size: var(--font-size-osttl);
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 450px) {
  .p-pp-com .pp-title {
    margin-bottom: 10px;
    font-size: 2rem;
  }
}
.p-pp-com .pp-ttl_exp {
  margin-bottom: 30px;
}
@media screen and (max-width: 450px) {
  .p-pp-com .pp-ttl_exp {
    margin-bottom: 25px;
  }
}
.p-pp-com .pp-com-card {
  width: 100%;
  max-width: 800px;
  background-color: #fff;
  border-radius: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  padding: 80px 60px;
  border: 1px solid #eee;
}
@media screen and (max-width: 800px) {
  .p-pp-com .pp-com-card {
    padding: 60px 30px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 450px) {
  .p-pp-com .pp-com-card {
    padding: 40px 20px;
  }
}
.p-pp-com .pp-com_content {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  counter-reset: pp-number; /* "pp-number" という名前のカウンターを作る */
}
.p-pp-com .pp-com_content .pp-com_text .pp-com_text__ttl {
  font-size: var(--font-size-sub-heading);
  font-family: var(--font-jp);
  font-weight: 600;
  margin-bottom: 10px;
}
.p-pp-com .pp-com_content .pp-com_text .pp_text__ttl {
  counter-increment: pp-number; /* このクラスが出るたびに数字を1増やす */
  font-size: var(--font-size-sub-heading);
  font-family: var(--font-jp);
  font-weight: 600;
  margin-bottom: 10px;
}
.p-pp-com .pp-com_content .pp-com_text .pp_text__ttl::before {
  content: counter(pp-number) ". "; /* 「数字 + ピリオド + スペース」を表示 */
  color: var(--color-black); /* 数字の色（お好みで変更可能） */
  margin-right: 5px; /* テキストとの隙間 */
}
.p-pp-com .pp-com_content .pp-com_text .pp-com_text__exp {
  font-size: 1.4rem;
  line-height: 1.7;
}
.p-pp-com .pp-com_content .pp-com_text .pp-com_text__exp a {
  color: var(--green2);
}
.p-pp-com .pp-com_content .pp-com_text .pp_text__exp {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
.p-pp-com .pp-com_content .pp-com_text .pp_text__exp a {
  color: var(--green2);
}
.p-pp-com .pp-com_content .pp-com_text .pp-com_text_ul {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  padding-top: 10px;
  padding-left: 20px;
}
.p-pp-com ol.list_parentheses {
  padding: 0 0 0 2em;
  margin: 0;
}
.p-pp-com ol.list_parentheses li {
  list-style-type: none;
  list-style-position: inside;
  counter-increment: cnt;
}
.p-pp-com ol.list_parentheses li:before {
  display: marker;
  content: "(" counter(cnt) ") ";
  margin-left: -21px;
}

.p-recruit .recruit-section {
  width: 100%;
  padding: 0 1.5rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.p-recruit .recruit-card {
  width: 100%;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  padding: 40px;
  border: 1px solid #eee;
  border-top: none;
}
@media screen and (max-width: 800px) {
  .p-recruit .recruit-card {
    padding: 0px 30px;
  }
}
@media screen and (max-width: 450px) {
  .p-recruit .recruit-card {
    margin-top: 20px;
    padding: 0px 30px;
    border-radius: 20px;
  }
}
.p-recruit .recruit-page-tabs {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 0;
  z-index: 10;
}
@media screen and (max-width: 450px) {
  .p-recruit .recruit-page-tabs {
    flex-direction: column;
  }
}
.p-recruit .recruit-tab-link {
  flex: 1;
  width: 100%;
  padding: 60px 40px;
  text-decoration: none;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  align-items: end;
  min-height: 200px;
  position: relative;
  transition: all 0.3s ease;
  color: var(--color-white, #fff);
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: none;
}
@media screen and (min-width: 451px) {
  .p-recruit .recruit-tab-link:first-child {
    border-top-left-radius: 40px;
  }
  .p-recruit .recruit-tab-link:last-child {
    border-top-right-radius: 40px;
    border-left: none;
  }
}
.p-recruit .recruit-tab-link__titles {
  display: flex;
  flex-direction: column;
}
.p-recruit .recruit-tab-link__en {
  font-family: var(--font-en-bold);
  font-size: var(--font-size-card-ttl);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 800px) {
  .p-recruit .recruit-tab-link__en {
    font-size: 2.4rem;
  }
}
.p-recruit .recruit-tab-link__ja {
  font-size: var(--font-size-sub);
  font-weight: 700;
  margin: 0;
  opacity: 0.9;
  line-height: 1;
}
.p-recruit .recruit-tab-link__action {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: -3px;
}
.p-recruit .recruit-tab-link__text {
  font-size: var(--font-size-sub);
  font-weight: 700;
  font-family: var(--font-en);
  line-height: 1;
}
.p-recruit .recruit-tab-link__text_bk {
  font-size: var(--font-size-sub);
  font-weight: 700;
  font-family: var(--font-en);
  line-height: 1;
  color: var(--color-black);
}
.p-recruit .recruit-tab-link__icon {
  width: 36px;
  height: 36px;
  background-color: var(--color-green, #3ebfa5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}
.p-recruit .recruit-tab-link__icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}
.p-recruit .recruit-tab-link:hover:not(.is-active) {
  background-color: rgba(255, 255, 255, 0.3);
}
.p-recruit .recruit-tab-link:hover:not(.is-active) .recruit-tab-link__icon {
  transform: translateX(5px);
}
.p-recruit .recruit-tab-link.is-active {
  background-color: #fff;
  color: var(--color-green, #3ebfa5);
  border: none;
  position: relative;
  z-index: 11;
}
.p-recruit .recruit-tab-link.is-active .recruit-tab-link__icon {
  background-color: var(--color-green, #3ebfa5);
}
.p-recruit .recruit-tab-link.is-active .recruit-tab-link__icon svg {
  stroke: #fff;
}
.p-recruit .recruit-tab-link.no-active {
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 800px) {
  .p-recruit .recruit-tab-link {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 20px;
  }
  .p-recruit .recruit-tab-link__action {
    justify-self: flex-start;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 450px) {
  .p-recruit .recruit-tab-link {
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding: 40px 20px;
  }
  .p-recruit .recruit-tab-link__action {
    justify-self: end;
    align-self: flex-end;
    margin-bottom: -10px;
  }
}
@media screen and (max-width: 450px) {
  .p-recruit .recruit-tab-link {
    min-height: 160px;
    padding: 30px 25px;
    border-radius: 20px;
    border: none;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
    align-content: center;
    align-items: start;
    gap: 15px;
  }
  .p-recruit .recruit-tab-link:last-child {
    border-radius: 20px;
  }
}
@media screen and (min-width: 451px) and (max-width: 800px) {
  .p-recruit .recruit-tab-link__action {
    gap: 5px;
  }
}
.p-recruit .recruit-ttl_exp {
  margin-bottom: 30px;
}
@media screen and (max-width: 450px) {
  .p-recruit .recruit-ttl_exp {
    margin-bottom: 25px;
  }
}
.p-recruit .recruit-content {
  background-color: var(--color-white);
  width: 100%;
  border-radius: 0 0 12px 12px;
  position: relative;
  z-index: 2;
  padding-bottom: 30px;
}
.p-recruit .recruit-content .section-title:first-child {
  margin-top: 0;
}
@media screen and (max-width: 800px) {
  .p-recruit .recruit-content {
    padding: 40px 0px 0 0px;
  }
}
.p-recruit .recruit-ttl_wrap {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.p-recruit .recruit-ttl_wrap h2 {
  font-size: var(--font-size-h2);
  font-weight: 700;
  margin: 0;
  margin-bottom: 1rem;
  margin-top: -5px;
  font-family: var(--font-en-bold);
  font-style: normal;
  white-space: nowrap;
}
.p-recruit .recruit-ttl_wrap p {
  font-size: var(--font-size-sub);
  color: var(--color-black);
  font-weight: 700;
  margin-top: -15px;
  padding-bottom: 20px;
  opacity: 0.8;
  white-space: nowrap;
}
.p-recruit .benefits-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-recruit .benefit-wrapper {
  border: 2px solid var(--color-black, #111);
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  transition: border-color 0.2s;
}
.p-recruit .benefit-wrapper:hover {
  border-color: rgba(0, 0, 0, 0.6);
}
.p-recruit .benefit-wrapper.is-closed {
  border-color: #ddd;
  background-color: #f5f5f5;
  pointer-events: none;
  opacity: 0.6;
}
.p-recruit .benefit-wrapper.is-closed .benefit-item {
  background-color: transparent;
  position: relative;
}
.p-recruit .benefit-wrapper.is-closed .benefit-item__title, .p-recruit .benefit-wrapper.is-closed .benefit-item__desc {
  color: #888;
}
.p-recruit .benefit-wrapper.is-closed .benefit-item__icon {
  display: none;
}
.p-recruit .benefit-wrapper.is-closed .benefit-item::after {
  content: "現在募集しておりません";
  display: block;
  font-family: var(--font-jp, sans-serif);
  font-size: var(--font-size-sub);
  font-weight: 700;
  color: #999;
  background-color: #eee;
  padding: 6px 12px;
  border-radius: 4px;
  margin-left: auto;
  white-space: nowrap;
}
@media screen and (max-width: 800px) {
  .p-recruit .benefit-wrapper.is-closed .benefit-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .p-recruit .benefit-wrapper.is-closed .benefit-item::after {
    margin-left: 0;
    margin-top: 10px;
  }
}
.p-recruit .benefit-wrapper.is-closed .benefit-content {
  display: none !important;
}
.p-recruit .benefit-toggle {
  display: none;
}
.p-recruit .benefit-toggle:checked + .benefit-item .benefit-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.p-recruit .benefit-toggle:checked + .benefit-item {
  background-color: #f9f9f9;
}
.p-recruit .benefit-toggle:checked ~ .benefit-content {
  grid-template-rows: 1fr;
}
.p-recruit .benefit-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  cursor: pointer;
  transition: background-color 0.2s;
  margin: 0;
}
.p-recruit .benefit-item:hover {
  background-color: #f9f9f9;
}
.p-recruit .benefit-item__texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.p-recruit .benefit-item__title {
  font-family: var(--font-en-bold);
  font-weight: 700;
  font-size: var(--font-size-panel);
}
.p-recruit .benefit-item__desc {
  font-size: var(--font-size-sub);
  font-weight: 600;
}
.p-recruit .benefit-item__icon {
  display: block;
  width: 36px;
  height: 36px;
  background-color: var(--color-black, #111);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.p-recruit .benefit-item__icon::before, .p-recruit .benefit-item__icon::after {
  content: "";
  position: absolute;
  background-color: var(--color-white, #fff);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.p-recruit .benefit-item__icon::before {
  width: 16px;
  height: 2px;
}
.p-recruit .benefit-item__icon::after {
  width: 2px;
  height: 16px;
}
@media screen and (max-width: 800px) {
  .p-recruit .benefit-item {
    padding: 20px;
    gap: 15px;
  }
  .p-recruit .benefit-item__texts {
    gap: 5px;
  }
}
.p-recruit .benefit-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  background-color: #f9f9f9;
}
.p-recruit .benefit-content-table {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.p-recruit .benefit-content__inner {
  min-height: 0;
  overflow: hidden;
}
.p-recruit .benefit-content__inner p, .p-recruit .benefit-content__inner .benefit-content-table {
  margin: 0;
  padding: 10px 30px 30px;
  font-size: var(--font-size-sub);
  line-height: 1.8;
  color: var(--color-black, #111);
}
@media screen and (max-width: 800px) {
  .p-recruit .benefit-content__inner p, .p-recruit .benefit-content__inner .benefit-content-table {
    padding: 10px 20px 25px;
  }
}
.p-recruit .benefit-content__inner .benefit-content__entry {
  width: 100%;
  display: flex;
  margin: 0px 0px 0px 0px;
  justify-content: center;
}
.p-recruit .requirements-box {
  border: 2px solid var(--color-black, #111);
  font-size: var(--font-size-body);
  border-radius: 8px;
  padding: 40px;
}
@media screen and (max-width: 800px) {
  .p-recruit .requirements-box {
    padding: 25px 15px;
  }
}
.p-recruit .requirements-table {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.p-recruit .requirements-row {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 25px;
}
.p-recruit .requirements-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.p-recruit .requirements-row .benefit-content__entry {
  width: 100%;
  display: flex;
  margin: 0px 0px 0px 0px;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .p-recruit .requirements-row {
    flex-direction: column;
    gap: 10px;
  }
}
.p-recruit .requirements-key {
  font-weight: 700;
  width: 140px;
  flex-shrink: 0;
  font-size: var(--font-size-body);
}
.p-recruit .requirements-val {
  font-size: var(--font-size-body);
  line-height: 1.8;
}
.p-recruit .requirements-val li {
  margin-left: 22px;
}
.p-recruit .requirements-val span {
  font-size: var(--font-size-sub);
  color: var(--color-gray, #666);
}
.p-recruit .process-section {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 800px) {
  .p-recruit .process-section {
    padding-bottom: 40px;
  }
}
.p-recruit {
  /* ── ヘッダー部分 ── */
}
.p-recruit .process-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.p-recruit .process-header .title-process {
  font-size: var(--font-size-h2);
  font-weight: 700;
  font-family: var(--font-en);
  color: var(--color-black);
  line-height: 1.1;
  letter-spacing: 1px;
}
.p-recruit .process-header .subtitle {
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black);
}
.p-recruit {
  /* ── ステップ全体のコンテナ ── */
}
.p-recruit .process-steps {
  display: flex;
  align-items: center; /* PC: 横並び時の縦中央揃え */
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 5px;
}
@media screen and (max-width: 800px) {
  .p-recruit .process-steps {
    flex-direction: column;
    /* ★修正1：centerのままだと幅が文字サイズに縮むため、stretchで横いっぱいに広げる */
    align-items: stretch;
    width: 100%;
  }
}
.p-recruit {
  /* ── 個別のステップラッパー ── */
}
.p-recruit .step-wrapper {
  position: relative;
  flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .p-recruit .step-wrapper {
    width: 100%;
    /* ★修正2：Flex中央寄せを解除し、ブロックとして横幅100%を素直に引き継がせる */
    display: block;
  }
}
.p-recruit {
  /* ── ステップ番号 ── */
}
.p-recruit .step-number {
  position: absolute;
  top: -15px;
  left: 0;
  font-family: var(--font-en, sans-serif);
  font-size: 48px;
  font-weight: 900;
  color: var(--color-black, #333);
  line-height: 1;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .p-recruit .step-number {
    top: -15px;
    left: 0px;
    font-size: 32px;
  }
}
.p-recruit {
  /* ── ボックス ── */
}
.p-recruit .step-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 145px;
  height: 145px;
  box-sizing: border-box;
  padding: 15px;
  /* 中身の要素を背景より手前に */
}
.p-recruit .step-box > * {
  position: relative;
  z-index: 1;
}
.p-recruit .step-box {
  /* 背景SVGたちは絶対に背面に固定する */
}
.p-recruit .step-box > .step-bg-pc,
.p-recruit .step-box > .step-bg-sp-container {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0 !important;
}
.p-recruit .step-box {
  /* PC表示の初期設定 */
}
.p-recruit .step-box .step-bg-pc {
  display: block;
}
.p-recruit .step-box .step-bg-sp-container {
  display: none;
}
@media screen and (max-width: 800px) {
  .p-recruit .step-box {
    width: 100%;
    height: 80px;
    min-height: 80px;
    padding: 10px 15px;
    flex-direction: row;
    justify-content: center; /* 中のテキストとアイコンを中央に */
    gap: 15px;
    /* PC用SVGを消す */
  }
  .p-recruit .step-box .step-bg-pc {
    display: none !important;
  }
  .p-recruit .step-box {
    /* スマホ用SVGコンテナを確実に表示 */
  }
  .p-recruit .step-box .step-bg-sp-container {
    display: grid !important;
    grid-template-columns: 50px 1fr 15px;
    grid-template-rows: 100%;
    align-items: stretch;
    /* 中のSVGパーツが確実にセルを埋めるようにする */
  }
  .p-recruit .step-box .step-bg-sp-container svg {
    width: 100%;
    height: 100%;
    display: block;
  }
}
.p-recruit {
  /* ── アイコン ── */
}
.p-recruit .step-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-recruit .step-icon svg {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 800px) {
  .p-recruit .step-icon {
    margin-bottom: 0;
    width: 45px;
    height: 45px;
  }
}
.p-recruit {
  /* ── テキストラベル ── */
}
.p-recruit .step-label {
  font-family: var(--font-jp, sans-serif);
  font-size: var(--font-size-sub-heading, 16px);
  font-weight: 700;
  color: var(--color-black, #333);
  text-align: center;
  line-height: 1.2;
  margin: 0;
}
.p-recruit .step-label > span {
  display: block;
  font-size: var(--font-size-sub);
  color: var(--color-black, #666);
  margin-top: 4px;
}
.p-recruit {
  /* ── 矢印 ── */
}
.p-recruit .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}
.p-recruit .arrow .arrow-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg) scaleX(-1);
}
@media screen and (max-width: 800px) {
  .p-recruit .arrow {
    width: 100%;
    transform: rotate(90deg);
    margin: 15px 0;
  }
}/*# sourceMappingURL=style.css.map */