@charset "UTF-8";
html {
  scroll-behavior: smooth;
}
body.lower {
  background: var(--white);
  color: var(--purple);
  overflow-x: hidden;
  margin: 0;
  padding: 8rem 0 0;
}
.menu-btn {
  display: block;
}
.pageHeader {
  padding: 8% 5%;
}
/* lower-Header */

.lower header:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--white);
  opacity: 0.94;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.lower header h1 {
  position: relative;
  z-index: 5;
  background: none;
  border-radius: 0;
}
.lower header h1 a {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.lower header h1 a:hover {
  transform: translateX(5px);
}
.lower header h1 span {
  display: inline-block;
  margin-left: 2.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.9rem;
  font-weight: 500;
  display: inline-block;
  color: var(--black);
  font-style: normal;
  opacity: 0.7;
}

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.menu-btn .hamburger-line {
  display: block;
  width: 40px;
  height: 4px;
  background: var(--purple);
  position: absolute;
  left: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-btn .hamburger-line:nth-child(1) {
  top: 0;
}
.menu-btn .hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.menu-btn .hamburger-line:nth-child(3) {
  bottom: 0;
}

.menu-btn.open .hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  background: var(--white);
}

.menu-btn.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(40px);
}

.menu-btn.open .hamburger-line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
  background: var(--white);
}

/* Navigation Menu */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: radial-gradient(circle, rgba(252, 106, 57, 0.15) 2px, transparent 2px), linear-gradient(135deg, rgba(98, 37, 157, 0.9) 0%, rgba(252, 106, 57, 0.85) 100%);
  z-index: 2000;
  transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.nav-menu.open {
  right: 0;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  z-index: 1999;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
  width: calc(100% - 5rem);
}

.nav-menu.open .nav-list {
  width: calc(100% - 10rem);
}

.nav-list li {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-menu.open .nav-list li {
  opacity: 1;
  transform: translateX(0);
}

.nav-list li:nth-child(1) {
  transition-delay: 0.1s;
}
.nav-list li:nth-child(2) {
  transition-delay: 0.2s;
}
.nav-list li:nth-child(3) {
  transition-delay: 0.3s;
}
.nav-list li:nth-child(4) {
  transition-delay: 0.4s;
}
.nav-list li:nth-child(5) {
  transition-delay: 0.5s;
}

.nav-list > li > a {
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.nav-list > li > a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateX(-1rem);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.close-menu-btn {
  position: absolute;
  top: 2rem;
  right: 4rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  z-index: 10;
}

.close-menu-btn .close-line {
  display: block;
  width: 40px;
  height: 4px;
  background: var(--white);
  position: absolute;
  left: 0;
  top: 50%;
  transition: all 0.3s ease;
}

.close-menu-btn .close-line:nth-child(1) {
  transform: translateY(-50%) rotate(45deg);
}

.close-menu-btn .close-line:nth-child(2) {
  transform: translateY(-50%) rotate(-45deg);
}

.nav-list .has-submenu {
  position: relative;
}

.submenu {
  list-style: none;
  padding: 1rem 0 0 2rem;
  margin: 0.5rem 0 0 0;
}

.submenu li {
  margin-bottom: 1.2rem;
}

.submenu li a {
  font-size: clamp(14px, 2.2vw, 18px);
  font-weight: 400;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.submenu li a::after {
  content: "";

  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateX(-1rem);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.submenu li a:hover {
  opacity: 1;
}

/* Hero Slider - Compact for 13inch */
#hero {
  background: url(../images/hero_recruit.jpg) no-repeat;
  background-size: cover;
}
#hero:before {
  content: "";
  display: block;
  padding-top: 44.576%;
}

/* News Section */

#recruitNews {
  padding: 5%;
  background: var(--white);
  color: var(--purple);
  position: relative;
  overflow: visible;
}

#recruitNews .section-header {
  max-width: 1200px;
  margin: 0 auto 1.25em;
}

#recruitNews .section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
}

.news-list {
  max-width: 1200px;
  margin: 0 auto;
}

.news-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(98, 37, 157, 0.3);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.news-item:hover {
  transform: translateX(10px);
  background-color: rgba(98, 37, 157, 0.1);
}

.news-date {
  font-size: 1.4rem;
  color: var(--purple);
  font-weight: 700;
  white-space: nowrap;
  font-family: monospace;
}

.news-title {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.3;
  margin: 0;
  flex: 1;
}

/* About Us Typography Section */
#aboutUs {
  background: var(--purple);
  padding: 0;
  text-align: center;
  z-index: 6;
  position: relative;
}
#aboutUs .inner {
  color: var(--white);
  position: relative;
  min-height: 600px;
  z-index: 5;
  background: var(--white);
}
#aboutUs .inner:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--purple);
  opacity: 0.2;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  pointer-events: none;
}
#aboutUs .inner .photo-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  z-index: 0;
  overflow: hidden;
  align-content: start;
}
#aboutUs .inner .grid-item {
  width: 100%;
  overflow: hidden;
  position: relative;
}
#aboutUs .inner .grid-item.sp-only {
  display: none;
}
#aboutUs .inner .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s ease;
}

#aboutUs .inner .box {
  z-index: 5;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  padding: 2.5em;
  border-radius: 10px;
  overflow: hidden;
  width: 42em;
}
#aboutUs .inner .box:before {
  content: "";
  display: block;
  background: var(--purple);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.88;
}
#aboutUs .inner .box h3 {
  color: var(--orange);
  position: relative;
  z-index: 5;
  font-size: clamp(18px, 3vw, 36px);
  font-weight: 800;
  text-align: center;
  display: block;
  line-height: 1.3;
}
#aboutUs .inner .box h3 small {
  display: block;
  font-size: 72%;
}
#aboutUs .inner .box h3 strong {
  font-size: 140%;
  color: var(--white);
}
#aboutUs .inner .box h3 em {
  display: block;
  font-size: 200%;
}
#aboutUs .inner .box ul {
  position: relative;
  z-index: 5;
  display: inline-block;
  text-align: left;
  margin: 0.5em auto 0;
}
#aboutUs .inner .box ul li {
  position: relative;
  padding: 0.2em 0 0.2em 1.7em;
  font-weight: 700;
}
#aboutUs .inner .box ul li:first-child {
  padding: 0.2em 0 0.2em 1.3em; /* "「 " */
}
#aboutUs .inner .box ul li:before {
  content: "";
  position: absolute;
  background: url(../images/icon_star.svg) no-repeat;
  background-size: 100% auto;
  width: 1.3em;
  height: 1.3em;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#aboutUs .inner .box p {
  font-size: 1.7rem;
  line-height: 2;
  margin-top: 1em;
  font-weight: 700;
  opacity: 0.9;
}
#aboutUs .elements {
  padding: 8rem 5% 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease-in-out;
}
#aboutUs .elements::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(75, 48, 128, 0.55);
  z-index: 0;
  pointer-events: none;
}
#aboutUs .elements h2 {
  font-size: 5rem;
  line-height: 1;
  font-weight: 900;
  display: block;
  color: var(--white);
  margin-bottom: 1em;
  position: relative;
  font-family: "Alata", "M PLUS 1p", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}

#aboutUs .elements h2 small {
  display: block;
  font-size: 35%;
  letter-spacing: -0.025em;
  transform: translateX(2.5em) translateY(2.5em);
}
#aboutUs .elements h2 strong {
  line-height: 1;
  font-size: 180%;
}
#aboutUs .elements h2 strong:first-of-type {
  font-size: 300%;
}
.tabs-container {
  max-width: 1200px;
  margin: 0 auto;
  z-index: 5;
  position: relative;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 1em;
  flex-wrap: wrap;
  margin-bottom: 2em;
}
.tab-button {
  background: var(--purple);
  color: var(--white);
  padding: 1.5em 1em;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8em;
}
.tab-button.gachi01:before {
  content: "";
  display: block;
  background: url(../images/icon_gachi01.svg) no-repeat;
  background-size: 100% auto;
  width: 50%;
  padding-top: 50%;
}
.tab-button.gachi02:before {
  content: "";
  display: block;
  background: url(../images/icon_gachi02.svg) no-repeat;
  background-size: 100% auto;
  width: 50%;
  padding-top: 50%;
}
.tab-button.gachi03:before {
  content: "";
  display: block;
  background: url(../images/icon_gachi03.svg) no-repeat;
  background-size: 100% auto;
  width: 50%;
  padding-top: 50%;
}
.tab-button.gachi04:before {
  content: "";
  display: block;
  background: url(../images/icon_gachi04.svg) no-repeat;
  background-size: 100% auto;
  width: 50%;
  padding-top: 50%;
}

.tab-button.active {
  background: var(--orange);
}

.tab-button:hover {
  background: var(--orange);
}

.tab-button h3 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  margin: 0;
}

.tab-button .icon {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.tabs-content {
  position: relative;
  min-height: 250px;
}

.tab-panel {
  display: none;
  text-align: left;
  padding: 2em;
  color: var(--white);
  text-align: center;
  position: relative;
}
.tab-panel.active {
  display: block;
}

.tab-panel h4 {
  font-size: 2.2vw;
  font-weight: 800;
  margin-bottom: 1.5em;
  line-height: 1.4;
}
.tab-panel p {
  font-size: 1.2vw;
  line-height: 2;
  opacity: 0.9;
  font-weight: 700;
}

/* ourWorks */
#ourWorks {
  background: var(--purple);
  text-align: center;
  padding: 4rem 0 0;
}
.triangle-ttl {
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin: 0 auto 0.5em;
  display: inline-block;
  position: relative;
  z-index: 2;
  font-size: clamp(24px, 5vw, 64px);
}

.triangle-ttl::before {
  content: "";
  position: absolute;
  width: 4.4em;
  height: 4.4em;
  background: var(--purple);
  transform: rotate(45deg) translateX(-0.25em);
  top: -1.5em;
  left: 0;
  border-bottom: 1px solid var(--white);
  border-right: 1px solid var(--white);
}
.triangle-ttl span {
  position: relative;
  z-index: 5;
}
.work-categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
}

.category-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.category-number-large {
  font-size: 6rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: "Bebas Neue", sans-serif;
}

.category-description-large {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--purple);
  margin-bottom: 3rem;
  opacity: 0.9;
}

.category-item {
  text-align: center;
}

.category-link-large {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--purple);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.category-link-large:hover {
  transform: translateX(10px);
  color: var(--orange);
}

.category-link-large .arrow {
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.category-link-large:hover .arrow {
  transform: rotate(45deg) translateX(5px);
}

.slider-progress-bar-bold {
  height: 100%;
  background: var(--orange);
  width: 0%;
  transition: width 0.1s linear;
}

.section-title .title-main {
  display: block;
  font-size: clamp(24px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.8rem;
  color: var(--purple);
}

.section-title .title-sub {
  display: block;
  font-size: clamp(16px, 2.2vw, 24px);
  letter-spacing: 0.2em;
  font-weight: 700;
  font-family: "Bebas Neue", sans-serif;
  color: var(--orange);
}

.btn-news-list {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: var(--purple);
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  border-radius: 50px;
  white-space: nowrap;
}

.btn-news-list:hover {
  transform: translateY(-2px);
}

.btn-news-list .arrow {
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.btn-news-list:hover .arrow {
  transform: rotate(45deg) translateX(5px) translateY(-5px);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * (100vw - 8rem) / 5.5 * 6));
  }
}

.category-card {
  position: relative;
  padding: 15rem 6rem 8rem 6rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.category-card.active {
  opacity: 1;
  transform: translateY(0);
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.6s ease-out;
}

.category-card:hover::before {
  transform: scale(1.05);
}

.category-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.category-card:nth-child(1)::before {
  background-image: url("../images/bg_contentsproduction.jpg");
}

.category-card:nth-child(2)::before {
  background-image: url("../images/bg_liveproduction.jpg");
}

.work-category-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem 3rem;
}

.category-number-large {
  position: absolute;
  top: -6rem;
  left: -2rem;
  font-size: clamp(100px, 15vw, 180px);
  font-weight: 900;
  font-family: "Bebas Neue", sans-serif;
  color: var(--orange);
  line-height: 1;
  opacity: 0.4;
  z-index: -1;
}

.category-title-large {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.75em;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  text-align: left;
}

.category-description-large {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 2;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2em;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.category-balloon {
  position: relative;
  margin: 0 auto 1rem;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.category-balloon:before,
.category-balloon:after {
  content: "";
  background: var(--white);
  height: 22px;
  width: 8px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.category-balloon:before {
  transform: rotate(-30deg);
}
.category-balloon:after {
  transform: rotate(30deg);
}

.category-link-large {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--white);
  background: var(--orange);
  padding: 1.2rem 2.5rem;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 50px;
  margin: 0 auto;
}

.category-link-large:hover {
  gap: 2.5rem;
  transform: translateX(5px);
  color: var(--white);
}

.category-link-large .arrow {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--white);
  border-right: 3px solid var(--white);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.category-link-large:hover .arrow {
  border-top: 3px solid var(--white);
  border-right: 3px solid var(--white);
}

.category-link-large:hover .arrow {
  transform: rotate(45deg) translateX(5px) translateY(-5px);
}

/* FAQ Section - Grid Layout */
#faq {
  padding: 6rem 0;
  background: var(--gray-purple);
}
#faq .pageHeader::before {
  content: "FAQ";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(15rem, 25vw, 35rem);
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: 0.05em;
  pointer-events: none;
  white-space: nowrap;
}
#faq .inner {
  margin: 0 auto;
  max-width: 1200px;
}
.faq-header {
  text-align: center;
  margin-bottom: 5%;
}

.faq-title .title-en {
  display: block;
  font-size: clamp(16px, 2.2vw, 24px);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.25em;
  color: var(--orange);
  margin-bottom: 0.25em;
}

.faq-title .title-main {
  display: block;
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 4rem;
  margin: 0 auto;
}

.faq-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.faq-item.active {
  opacity: 1;
  transform: translateY(0);
}

.faq-item.open {
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  padding: 2rem 3rem;
  background: var(--purple);
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  min-height: auto;
  position: relative;
}

.faq-item.open .faq-question {
  border-radius: 10px 10px 0 0;
}

.faq-q-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--white);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  font-family: "Bebas Neue", sans-serif;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.faq-q-text {
  flex: 1;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--white);
  transition: all 0.4s ease;
  line-height: 1.6;
}

.faq-toggle-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 300;
  color: var(--white);
  transition: all 0.3s ease;
  position: relative;
}

.faq-toggle-icon::before {
  content: "+";
}

.faq-item.open .faq-toggle-icon {
  transform: rotate(0deg);
}

.faq-item.open .faq-toggle-icon::before {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 2000px;
  opacity: 1;
}

.faq-a-content {
  padding: 3rem 4rem;
  background: var(--white);
  color: var(--purple);
  border-top: none;
  border-radius: 0 0 12px 12px;
  display: flex;
  gap: 2rem;
}

.faq-a-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  font-family: "Bebas Neue", sans-serif;
  border-radius: 50%;
}

.faq-a-content p {
  flex: 1;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 2;
  margin: 0;
  font-weight: 500;
  color: var(--black);
}
.faq-a-content img.chart {
  width: 60%;
}
.faq-a-content a {
  display: inline-block;
  vertical-align: bottom;
  color: var(--purple);
}
.faq-a-content a:hover {
  color: var(--orange);
}
.faq-more-link {
  text-align: center;
  margin-top: 2em;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 4rem;
}

.faq-more-link.active {
  opacity: 1;
  transform: translateY(0);
}

.btn-faq-more {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  border-radius: 50px;
  white-space: nowrap;
}

.btn-faq-more:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-faq-more .arrow {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--white);
  border-right: 3px solid var(--white);
  transform: rotate(45deg);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.btn-faq-more:hover .arrow {
  border-color: var(--white);
  transform: rotate(45deg) translateX(7px) translateY(-7px);
}

#entry {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(252, 106, 57, 0.15) 2px, transparent 2px), linear-gradient(-45deg, rgba(98, 37, 157, 0.9) 0%, rgba(252, 106, 57, 0.85) 100%);
  background-size:
    10px 10px,
    100% 100%;
  background-position:
    0 0,
    0 0;
  position: relative;
  overflow: hidden;
  padding: 8rem 4rem;
  text-align: center;
}

#entry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg_entry.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 1;
}

#entry:has(.btn-entry:hover)::before {
  opacity: 0.6;
}

#entry::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.5) 0%, rgba(200, 25, 30, 0.4) 100%);
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 2;
}

#entry:has(.btn-entry:hover)::after {
  opacity: 1;
}

.entry-title {
  margin-bottom: 4em;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.entry-title.active {
  opacity: 1;
  transform: translateY(0);
}

.entry-main {
  display: block;
  font-size: clamp(70px, 15vw, 180px);
  font-weight: 900;
  font-family: "Bebas Neue", sans-serif;
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 0.25em;
}

.entry-sub {
  display: block;
  font-size: clamp(16px, 3vw, 28px);
  font-weight: 500;
  color: var(--white);
}

.btn-entry {
  display: inline-block;
  padding: 1.5rem 8rem;
  background: var(--white);
  color: var(--orange);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.2em;
  text-decoration: none;
  position: relative;
  overflow: visible;
  border: none;
  opacity: 0;
  transform: scale(0.8);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  clip-path: inset(0 0 0 0 round 8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-entry.active {
  opacity: 1;
  transform: scale(1);
}

.btn-entry-text {
  position: relative;
  z-index: 1;
}

.btn-entry:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1);
  box-shadow: none;
}

/* Fixed CTA */
.fixed-entry {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.btn-fixed-entry {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--orange);
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(227, 30, 36, 0.4);
}

.btn-fixed-entry:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(227, 30, 36, 0.5);
}

/* Scroll Trigger */
[data-scroll] {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-scroll].active {
  opacity: 1;
  transform: translateY(0);
}

.lead {
  background: var(--white);
  padding: 4rem 2rem;
  text-align: center;
  font-size: 1.8rem;
  line-height: 2;
  color: #333;
  font-weight: 500;
}

#flow {
  background: var(--gray);
  padding: 5%;
}

#flow h2 {
  text-align: center;
  margin-bottom: 3em;
  color: #000;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.4;
}

#flow h2 .text-large {
  font-size: 1.3em;
  font-weight: 900;
}

#flow h2 .text-small {
  font-size: 1.2em;
  font-weight: 900;
}

.flow-list {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  --flow-line-height: calc(85% - 50px);
}

.flow-list::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 70px;
  width: 4px;
  height: var(--flow-line-height);
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange) 100%);
  z-index: 0;
}

.flow-item {
  display: grid;
  grid-template-columns: 1fr 140px 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 10rem;
  position: relative;
  opacity: 1;
  transform: translateY(0);
}
.flow-item:last-of-type {
  margin-bottom: 0;
}
.flow-number {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  font-family: "Bebas Neue", sans-serif;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
  outline: 3px solid var(--orange);
  grid-column: 2;
  grid-row: 1;
  margin-top: -50px;
}

/* Event.html purple styling */
.event-page .flow-number {
  background: var(--purple) !important;
  outline: 3px solid var(--purple) !important;
}

.event-page .flow-content h4 {
  color: var(--purple) !important;
}

.event-page .flow-list::before {
  background: linear-gradient(180deg, var(--purple) 0%, var(--purple) 100%) !important;
}

.flow-image {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  margin-top: -20px;
  position: relative;
}

.flow-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Image Slider Styles - Fixed Thumbnail Layout */
.image-slider {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.image-slider .main-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
  transition: opacity 0.3s ease;
}

.image-slider .thumbnail-list {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-start;
}

.image-slider .thumbnail-list .thumbnail {
  width: calc(33.333% - 0.33rem);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.5;
  transition:
    opacity 0.3s ease,
    border 0.3s ease;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.image-slider .thumbnail-list .thumbnail.active {
  opacity: 1;
}

.image-slider .thumbnail-list .thumbnail:hover {
  opacity: 0.8;
}

.flow-item:nth-child(odd) .flow-image {
  grid-column: 1;
  grid-row: 1;
}

.flow-item:nth-child(odd) .flow-content {
  grid-column: 3;
  grid-row: 1;
}

.flow-item:nth-child(even) .flow-content {
  grid-column: 1;
  grid-row: 1;
}

.flow-item:nth-child(even) .flow-image {
  grid-column: 3;
  grid-row: 1;
}

.flow-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: -20px;
}

.flow-content h4 {
  font-size: clamp(24px, 3.6vw, 48px);
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 1rem;
  margin-top: 0;
  line-height: 1.2;
}

.flow-content > p {
  font-size: 1.6rem;
  line-height: 2;
  color: #333;
  margin-bottom: 2rem;
}

.staffVoice {
  background: var(--white);
  border-radius: 8px;
  padding: 3.5rem 2.5rem;
  margin-top: 1rem;
  position: relative;
}

.staffVoice::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 6rem;
  font-weight: 900;
  color: #aaa;
  line-height: 1;
  font-family: sans-serif;
}

.staffVoice::after {
  content: '"';
  position: absolute;
  bottom: -45px;
  right: 20px;
  font-size: 6rem;
  font-weight: 900;
  color: #aaa;
  line-height: 1;
  font-family: sans-serif;
}

.staffVoice dt {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.staffVoice dd ul {
  list-style: none;
  padding: 0;
}

.staffVoice dd li {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 1rem;
  position: relative;
}
.staffVoice dd li h5 {
  font-weight: 500;
  font-size: 1.5rem;
  display: inline-block;
  background: #444;
  padding: 0.2em 0.5em;
  color: var(--white);
  border-radius: 8px 8px 8px 0;
  line-height: 1.4;
}
.staffVoice dd li small {
  display: block;
  text-align: right;
}

.fukidashi {
  position: relative;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
}

.fukidashi::before {
  content: "＼";
  margin-right: 0.5rem;
}

.fukidashi::after {
  content: "／";
  margin-left: 0.5rem;
}

#voice {
  background: #fafafa;
  padding: 5%;
  overflow: hidden;
  position: relative;
}
#voice::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
#voice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(245, 166, 35, 0.12) 2px, transparent 2px);
  background-size: 14px 14px;
  z-index: 0;
  pointer-events: none;
}

#voice h3 {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 900;
  color: #000;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.voice-list {
  max-width: 120rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.voice-item {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  opacity: 1;
  transform: translateY(0);
  position: relative;
  flex: 1 0 calc(33.333% - 2rem);
  max-width: calc(33.333% - 2rem);
}

.voice-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #aaa;
  position: relative;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.voice-avatar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
  background-size: contain;
  opacity: 0.9;
}

.voice-bubble {
  flex: 1;
  position: relative;
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.voice-text {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #333;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.voice-item:nth-child(n + 4) {
  grid-column: span 1;
}

#related {
  background: var(--gray);
  padding: 5%;
}

#related h3 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  margin-bottom: 4rem;
}

#related h3 strong {
  color: var(--orange);
  font-size: 120%;
}

#related h3 em {
  font-size: 0.8em;
  font-weight: 500;
  font-style: normal;
}

.related-links {
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.related-link {
  background: var(--white);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  text-align: center;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.related-link:hover {
  background: #ffe6e6;
  transform: translateY(-5px);
}

.related-link .icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  border-radius: 50%;
  padding: 1.5rem;
}

.related-link .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.related-link span {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 128rem;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Lower KV Styles */
.lower_kv {
  padding: 5%;
  background: #8c8c8c;
  color: var(--white);
  background-image: radial-gradient(circle at center, #6c6c6c 1px, transparent 1px);
  background-size: 10px 10px;
  background-color: #8c8c8c;
  text-align: center;
}
.lower_kv.bangumi {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../../asset/images/kv_bangumi.jpg);
  background-size: cover;
  background-position: center center;
}
.lower_kv.event {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../../asset/images/kv_event.jpg);
  background-size: cover;
  background-position: center top 30%;
}
.lower_kv.faq {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../../asset/images/kv_faq.jpg);
  background-size: cover;
  background-position: center center;
}

.lower_kv h1 {
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.4;
}

.lower_kv h1 small {
  font-size: 85%;
  font-weight: inherit;
}

.lower_kv h1 em {
  font-size: 60%;
  display: block;
}

.lower_kv h1 em strong {
  font-size: 120%;
  font-weight: 800;
}

.lower_kv p {
  font-size: 75%;
}

#requirements {
  background: var(--gray-purple);
  padding: 5%;
}
#requirements .pageHeader::before {
  content: "REQUIREMENTS";
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(15rem, 25vw, 35rem);
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: 0.05em;
  pointer-events: none;
  white-space: nowrap;
}
#requirements .inner {
  max-width: 1200px;
  margin: 0 auto;
}

.requirements-intro {
  text-align: center;
  margin-bottom: 2em;
}

.requirements-intro p {
  font-size: 1.8rem;
  line-height: 2;
  color: #333;
  font-weight: 500;
}

.requirements-category {
  margin-bottom: 3em;
}

.category-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 1em;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid var(--orange);
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}

.category-title::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--purple);
}

/*.category-content {
  padding: 2rem 0;
}*/

.status-message {
  font-size: 1.8rem;
  line-height: 2;
  color: #666;
  padding: 3rem;
  background: var(--gray);
  border-radius: 8px;
  font-weight: 500;
}

.location-group {
  margin-bottom: 4rem;
}

.location-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5em;
  padding-left: 0.65em;
  position: relative;
}

.location-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 80%;
  background: var(--purple);
  border-radius: 1px;
}

.job-type {
  margin-bottom: 3rem;
}

.job-type-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 1.5rem;
}

.job-list {
  list-style: none;
  padding: 0;
}

.job-list li {
  margin-bottom: 1rem;
}

.job-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 2rem 2.5rem;
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 8px;
  text-decoration: none;
  color: var(--black);
  font-size: 1.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.job-link:hover {
  background: var(--gray);
  border-color: var(--orange);
  gap: 2.5rem;
  transform: translateX(5px);
}

.external-icon {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
  transform: rotate(45deg);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.job-link:hover .external-icon {
  transform: rotate(45deg) translateX(5px) translateY(-5px);
  border-top: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
}

/* Message Section */
.message-section {
  background: #efefef;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.message-section h3 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 4rem;
}

.message-section h3 strong {
  color: var(--orange);
}

.message-section h3 em {
  font-size: 0.8em;
  font-weight: 500;
  font-style: normal;
}

.message-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 120rem;
  margin: 0 auto;
  background: var(--white);
  padding: 4rem 5rem;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  position: relative;
}

.message-content::before {
  content: "";
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 18px 18px 18px;
  border-color: transparent transparent #fff transparent;
}

.message-content p {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
  font-weight: 500;
  margin: 0;
}

/* Related Links Three Column */
.related-links-three {
  max-width: 1200px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 410px) {
  .tabs-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    gap: 1em;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  body.lower {
    padding: 6rem 0 0;
  }
  .lower header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    align-items: center;
    gap: 0.5rem;
    padding: 0 2.5%;
    display: flex;
  }
  .lower header h1 img {
    height: 2.5rem;
  }
  .lower header h1 span {
    font-size: 14px;
    white-space: nowrap;
    margin-left: 1em;
  }

  .nav-list li a {
    font-size: 18px;
  }

  #hero {
    background: url(../images/hero_recruit_sp.jpg) no-repeat center center;
    background-size: cover;
  }
  #hero:before {
    padding-top: 71.4%;
  }
  #recruitNews {
    padding: 10% 2rem;
  }
  #recruitNews .section-header-flex {
    align-items: center;
    gap: 1rem;
  }
  #recruitNews .section-header {
    margin: 0 auto 0.5em;
  }
  #recruitNews .btn-news-list {
    padding: 0.5rem 1.5rem;
    font-size: 14px;
  }
  #aboutUs {
    overflow: hidden;
  }
  #aboutUs .inner {
    min-height: 70vh;
    padding: 1rem;
  }
  #aboutUs .inner .photo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  #aboutUs .inner .grid-item.sp-only {
    display: block;
  }
  #aboutUs .inner .box {
    padding: 2rem;
    width: calc(100% - 2rem);
  }
  #aboutUs .inner .box ul li:first-child {
    padding: 0.2em 0 0.2em 1.7em; /* "「 " */
  }
  #aboutUs .inner .box p {
    font-size: 14px;
    line-height: 1.8;
  }
  #aboutUs .elements {
    padding: 5% 2rem 0;
  }
  #aboutUs .elements h2 {
    font-size: 3.8rem;
    margin-bottom: 0.5em;
  }
  .tabs-nav {
    gap: 0.35em;
  }
  .tab-button {
    width: 80px;
    height: 80px;
    padding: 0.8em 0.5em;
    gap: 0.4em;
  }
  .tab-button h3 {
    font-size: 1.4rem;
  }
  .tab-panel {
    padding: 0 0 10%;
  }
  .tab-panel h4 {
    font-size: 20px;
    margin-bottom: 0.75em;
  }
  .tab-panel p {
    font-size: 14px;
  }
  #ourWorks .work-categories-grid {
    display: block;
  }
  .work-category-content {
    padding: 0;
  }

  .category-card {
    padding: 6rem 3rem;
  }
  #faq {
    padding: 10% 2rem;
  }
  .faq-container {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 1rem;
  }

  .faq-question {
    padding: 1.5rem 1.5rem;
    min-height: auto;
    gap: 1.25rem;
  }
  .faq-q-icon,
  .faq-a-icon {
    width: 35px;
    height: 35px;
    font-size: 22px;
  }
  .faq-a-content {
    padding: 2rem;
    gap: 1.25rem;
  }

  .faq-q-text {
    font-size: 14px;
  }
  .faq-a-content p {
    font-size: 14px;
  }
  .faq-a-content img.chart {
    width: 100%;
  }

  #entry {
    padding: 15% 2rem;
    min-height: auto;
  }
  .entry-title {
    margin-bottom: 2em;
  }
  .btn-entry {
    padding: 1rem 5rem;
  }

  .fixed-entry {
    bottom: 20px;
    right: 20px;
  }

  .btn-fixed-entry {
    width: 80px;
    height: 80px;
    font-size: 14px;
  }

  #flow {
    padding: 10% 2rem;
  }
  #flow h2 {
    font-size: 22px;
    margin-bottom: 1.5em;
  }
  .flow-list {
    padding: 0;
  }

  .flow-list::before {
    display: none;
  }

  .flow-item {
    display: block;
    gap: 0;
    align-items: start;
    padding-bottom: 5rem;
    margin-bottom: 5rem;
    grid-template-columns: 1fr 0px 1fr;
  }
  .flow-item:after {
    content: "";
    display: block;
    height: 2px;
    background: var(--purple);
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0.5;
  }
  .flow-item:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .flow-item:last-of-type:after {
    display: none;
  }
  .flow-number {
    display: none;
  }

  .flow-image {
    width: 100%;
    margin: 0 auto 2.5rem;
  }
  .image-slider {
    gap: 0.5rem;
  }

  .flow-content {
    margin-top: 2rem;
  }
  .flow-content h4 {
    padding-left: 65px;
    position: relative;
    margin-bottom: 1em;
  }
  .flow-content h4:before {
    content: "00";
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--orange);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    font-family: "Bebas Neue", sans-serif;
    position: relative;
    z-index: 2;
    border: 3px solid #fff;
    outline: 2px solid var(--orange);
    text-align: center;
    position: absolute;
    padding-top: 0.25em;
    box-sizing: border-box;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .flow-item:nth-child(1) .flow-content h4:before {
    content: "01";
  }
  .flow-item:nth-child(2) .flow-content h4:before {
    content: "02";
  }
  .flow-item:nth-child(3) .flow-content h4:before {
    content: "03";
  }
  .flow-item:nth-child(4) .flow-content h4:before {
    content: "04";
  }
  .flow-item:nth-child(5) .flow-content h4:before {
    content: "05";
  }
  .flow-item:nth-child(6) .flow-content h4:before {
    content: "06";
  }
  .flow-item:nth-child(7) .flow-content h4:before {
    content: "07";
  }
  .flow-item:nth-child(8) .flow-content h4:before {
    content: "08";
  }
  .flow-item:nth-child(9) .flow-content h4:before {
    content: "09";
  }
  .event-page .flow-content h4:before {
    background: var(--purple) !important;
    outline: 2px solid var(--purple) !important;
  }

  .flow-content > p {
    font-size: 14px;
    line-height: 1.7;
  }
  .staffVoice {
    padding: 2.5rem 2rem;
  }

  .staffVoice dt {
    font-size: 18px;
  }
  .staffVoice dd li {
    font-size: 14px;
    line-height: 1.7;
  }
  .staffVoice dd li h5 {
    font-weight: 500;
    font-size: 15px;
    padding: 0.3em 0.5em;
    margin-bottom: 0.5em;
  }

  #voice {
    padding: 10% 2rem;
  }
  .fukidashi {
    font-size: 15px;
  }
  #voice h3 {
    font-size: 24px;
    margin: 0 auto 2rem;
  }
  .voice-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .voice-item {
    gap: 1rem;
    opacity: 1;
    transform: translateY(0);
    flex: 1 0 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
  }
  .voice-avatar {
    border: 2px solid #fff;
    width: 50px;
    height: 50px;
  }
  .voice-avatar::before {
    width: 40px;
    height: 40px;
  }

  .voice-bubble {
    width: 100%;
    border-radius: 10px;
  }

  .voice-text {
    font-size: 14px;
  }

  #related {
    padding: 10% 2rem;
  }

  #related h3 {
    font-size: 24px;
    margin-bottom: 2rem;
  }

  #related h3 em {
    font-weight: 600;
  }

  .related-links {
    padding: 0;
    gap: 1rem;
  }

  .related-link {
    padding: 1.5rem;
    gap: 1rem;
  }
  .related-link .icon {
    width: 40px;
    height: 40px;
    padding: 0.5rem;
  }

  .related-link span {
    font-size: 16px;
  }

  #requirements {
    padding: 10% 2rem;
  }

  .requirements-intro p {
    font-size: 14px;
  }

  .category-title {
    font-size: 24px;
  }

  .location-title {
    font-size: 18px;
  }
  .location-title::before {
    width: 5px;
  }
  .job-type-title {
    font-size: 1.8rem;
  }

  .job-link {
    font-size: 15px;
    padding: 1em 1.25em;
    gap: 1rem;
  }

  .status-message {
    font-size: 14px;
    line-height: 1.8;
    padding: 2rem;
  }
  .message-section {
    padding: 60px 0;
  }

  .message-container {
    padding: 0 2rem;
  }

  .message-title {
    font-size: 2.5rem;
    margin-bottom: 4rem;
  }

  .message-item {
    gap: 1.5rem;
  }

  .message-avatar {
    width: 60px;
    height: 60px;
  }

  .message-avatar::before {
    width: 35px;
    height: 35px;
  }

  .message-bubble {
    padding: 2rem;
  }

  .message-bubble p {
    font-size: 1.5rem;
  }

  .related-links-two,
  .related-links-three {
    grid-template-columns: 1fr;
  }

  /* lower_kv */
  .lower_kv h1 {
    font-size: 5vw;
  }

  /* voice */
  .voice-item {
    flex: 1 0 100%;
    max-width: 100%;
  }

  /* flow */
  .lead {
    font-size: 14px;
    padding: 3rem 2rem;
  }
  /* lower_kv mobile */
  .lower_kv {
    padding: 12% 2rem;
  }
  .lower_kv h1 {
    font-size: 6vw;
  }
}
