* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
.recuit-bg {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #484E54;
}

body {
  font-weight: 400;
  color: #333333;
  line-height: 1.6;
}

a {
  color: #333333;
}

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

/*  remove css from here when apply fe.css */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.header.scrolled {
  height: 70px;
}
.header__overlay {
  display: none;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__left {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header__left .logo img {
  height: 50px;
}
.header__left .badge {
  font-family: "Albert Sans", sans-serif;
  border: 1px solid #754639;
  padding: 4px 10px;
  font-size: 20px;
  font-weight: 600;
  color: #754639;
  letter-spacing: 1px;
  line-height: 1em;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__right .nav {
  display: flex;
  gap: 50px;
}
.header__right .nav a {
  text-decoration: none;
  font-family: "SF Pro Display";
  color: #333;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.header__right .nav a:hover {
  color: #ceaa6b;
}
.header__right .btn-entry {
  text-decoration: none;
  color: #333333;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
  border-radius: 100px;
  background: var(--gold, linear-gradient(90deg, #D7AD54 0.62%, #F7DF8D 49.64%, #D7AD54 97.88%));
}
.header__right .btn-entry:hover {
  background-color: rgb(213.7796610169, 164.8305084746, 68.2203389831);
}
.header .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.header .hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #754639;
  border-radius: 2px;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .header {
    padding: 0 20px;
    height: 70px;
  }
  .header .nav,
  .header .btn-entry {
    display: none;
  }
  .header .hamburger {
    display: flex;
    position: relative;
    z-index: 1000;
  }
  .header .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #754639;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .header .hamburger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .header .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header .hamburger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .header__left {
    position: static;
  }
  .header__left .logo img {
    height: 30px;
  }
  .header__left .badge {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    padding: 4px 8px;
  }
  .header__overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .header__overlay.is-active {
    opacity: 1;
    pointer-events: auto;
  }
  .header__menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    max-width: 350px;
    height: 100%;
    background-color: #4b535b;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 40px;
    gap: 50px;
    z-index: 999;
    transition: left 0.3s ease;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
  }
  .header__menu.is-active {
    left: 0;
  }
  .header__menu .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
    width: 100%;
    display: flex;
  }
  .header__menu .nav a {
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 1px;
  }
  .header__menu .btn-entry {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 700px;
  margin-top: 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../images/recruit_img/kv.png");
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat;
  z-index: 1;
}
.hero__content {
  position: absolute;
  top: 200px;
  width: 100%;
  z-index: 3;
}
.hero__content .container {
  max-width: 1240px;
  margin: 0 auto;
}
.hero__content .hero__title {
  font-family: "Noto Serif JP", serif;
  color: #ffffff;
  font-size: 48px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 4.8px;
}

@media (max-width: 992px) {
  .hero {
    margin-top: 70px;
    background-color: #4E555C;
  }
  .hero__content .hero__title {
    font-size: 24px;
    padding-left: 20px;
  }
  .hero__bg {
    background-image: url("../images/recruit_img/kv-sp.png");
    top: -75px;
    right: 0;
  }
  .hero__content {
    top: 250px;
  }
}
.about-us {
  position: relative;
  z-index: 10;
  margin-top: -400px;
}
.about-us .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 105px;
  box-sizing: content-box;
}
.about-us .card {
  background: #ffffff;
  border-radius: 30px;
  padding: 60px 80px;
  box-shadow: 20px 20px 40px 0 rgba(0, 0, 0, 0.2);
}
.about-us .card__header {
  margin-bottom: 40px;
  text-align: left;
}
.about-us .card__header .label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  letter-spacing: 0.7px;
  margin-bottom: 10px;
}
.about-us .card__header .title {
  font-family: "Noto Serif JP", serif;
  font-size: 50px;
  font-weight: 700;
  color: #333;
}
.about-us .card__header .title span {
  font-size: 48px;
}
.about-us .card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 50px;
}
.about-us .card__grid .grid-item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
.about-us .card__grid .grid-item .sub-title {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #333;
}
.about-us .card__grid .grid-item .sub-title.sub-title-pc {
  display: block;
}
.about-us .card__grid .grid-item .sub-title.sub-title-sp {
  display: none;
}
.about-us .card__grid .grid-item p {
  margin-bottom: 15px;
  text-align: justify;
}
.about-us .card__grid .grid-item .image-box {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-us .card__grid .grid-item .image-box.sp {
  display: none;
}

@media (max-width: 992px) {
  .about-us {
    margin-top: -370px;
  }
  .about-us .container {
    padding: 20px;
  }
  .about-us .card {
    padding: 20px;
    border-radius: 15px;
  }
  .about-us .card__header {
    margin-bottom: 30px;
  }
  .about-us .card__header .label {
    font-size: 12px;
  }
  .about-us .card__header .title {
    font-size: 30px;
  }
  .about-us .card__header .title span {
    font-size: 30px;
  }
  .about-us .card__grid {
    display: flex;
    flex-direction: column;
    row-gap: 34px;
  }
  .about-us .card__grid .grid-item .sub-title {
    font-size: 20px;
    margin-bottom: 25px;
    display: none;
  }
  .about-us .card__grid .grid-item .sub-title.sub-title-pc {
    letter-spacing: -0.1em;
  }
  .about-us .card__grid .grid-item .sub-title.sub-title-sp {
    display: block;
  }
  .about-us .card__grid .grid-item .image-box {
    display: none;
  }
  .about-us .card__grid .grid-item .image-box.sp {
    display: block;
    margin-bottom: 25px;
  }
  .about-us .card__grid .grid-item .flowchart {
    margin-top: 0;
  }
  .about-us .card__grid .grid-item p {
    font-size: 14px;
  }
  .about-us .card__grid .grid-item p:last-of-type {
    margin-bottom: 0;
  }
  .about-us .card__grid .grid-item-02 {
    order: -2;
  }
  .about-us .card__grid .grid-item-01 {
    order: -1;
  }
}
.flowchart {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 30px;
  gap: 10px;
  width: 100%;
}
.flowchart .step {
  flex: 1;
  text-align: center;
}
.flowchart .step .icon {
  font-size: 30px;
  margin-bottom: 10px;
  color: #666;
}
.flowchart .step .arrow-box {
  background-color: #8392a1;
  color: #fff;
  padding: 15px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%, 15% 50%);
  margin-bottom: 15px;
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flowchart .step .arrow-box.dark {
  background-color: #3c454e;
}
.flowchart .step:first-child .arrow-box {
  clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
}
.flowchart .step .desc {
  font-size: 11px;
  color: #484E54;
  text-align: center !important;
  font-family: "Noto Sans CJK JP";
  font-size: 12px;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 992px) {
  .hero__curve {
    width: 90%;
  }
  .about-us .card__grid {
    grid-template-columns: 1fr;
  }
}
.logmansion {
  padding: 120px 0;
  overflow: hidden;
  color: #ffffff;
}
.logmansion .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.logmansion__top {
  display: flex;
  position: relative;
  margin-bottom: 60px;
  min-height: 400px;
}
.logmansion__top .container {
  width: 100%;
  display: flex;
  align-items: center;
}
.logmansion__top .intro-content {
  width: 45%;
  z-index: 2;
}
.logmansion__top .intro-content .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 500;
  color: #ddd;
  margin-bottom: 15px;
}
.logmansion__top .intro-content .title {
  font-family: "Noto Serif JP", serif;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 2px;
}
.logmansion__top .intro-content .desc {
  line-height: 1.8;
  color: #fff;
  text-align: justify;
}
.logmansion__top .intro-image-curve {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 55%;
  height: 120%;
  z-index: -1;
}
.logmansion__top .intro-image-curve .wood-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 50% 0 0 50%/50% 0 0 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.logmansion__top .intro-image-curve .wood-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: inherit;
}
.logmansion__top .intro-image-curve .wood-bg .logo-center {
  position: relative;
  z-index: 2;
  text-align: center;
}
.logmansion__top .intro-image-curve .wood-bg .logo-center .circle-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.logmansion__top .intro-image-curve .wood-bg .logo-center .logo-text {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1px;
}
.logmansion__top .intro-image-curve .wood-bg .logo-center .logo-text .tree-icon {
  font-size: 20px;
}
.logmansion .logmansion__gallery {
  margin-bottom: 20px;
  width: 100%;
}
.logmansion .logmansion__gallery .mySwiper {
  width: 100%;
  padding: 0 20px 20px 20px;
}
.logmansion .logmansion__gallery .mySwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
@media (max-width: 767px) {
  .logmansion .logmansion__gallery .mySwiper {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    padding: 0;
  }
}
.logmansion .logmansion__gallery .swiper-slide {
  min-width: 295px;
  height: auto;
}
.logmansion .logmansion__gallery .gallery-item a {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.logmansion .logmansion__gallery .gallery-item img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.logmansion .logmansion__gallery .gallery-item:hover img {
  transform: scale(1.05);
}
.logmansion .logmansion__gallery .gallery-item .caption {
  text-align: center;
  font-family: "Noto Sans CJK JP";
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}
.logmansion__actions {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 0 20px;
}
.logmansion__actions .btn-gold {
  border-radius: 100px;
  background: var(--gold, linear-gradient(90deg, #D7AD54 0.62%, #F7DF8D 49.64%, #D7AD54 97.88%));
  box-shadow: 20px 20px 40px 0 rgba(0, 0, 0, 0.2);
  color: #333333;
  text-decoration: none;
  padding: 19px 35px;
  font-size: 20px;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
.logmansion__actions .btn-gold strong {
  font-weight: 600;
  font-size: 20px;
  margin-right: 35px;
}
.logmansion__actions .btn-gold .arrow-circle {
  background-color: #ffffff;
  color: #d3b473;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
  transition: transform 0.3s ease;
}
.logmansion__actions .btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}
.logmansion__actions .btn-gold:hover .arrow-circle {
  transform: translateX(3px);
}

@media (max-width: 992px) {
  .logmansion {
    padding: 60px 0;
  }
  .logmansion__top {
    flex-direction: column;
    margin-bottom: 0;
  }
  .logmansion__top .intro-content {
    width: 100%;
    margin-bottom: 40px;
  }
  .logmansion__top .intro-content .label {
    font-size: 12px;
  }
  .logmansion__top .intro-content .title {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .logmansion__top .intro-content .desc {
    font-size: 14px;
  }
  .logmansion__top .intro-image-curve {
    display: none;
    position: relative;
    width: 100%;
    height: 300px;
    right: 0;
    transform: none;
  }
  .logmansion__top .intro-image-curve .wood-bg {
    border-radius: 0;
  }
  .logmansion__gallery {
    padding-left: 20px;
  }
  .logmansion__actions {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .logmansion__actions .btn-gold {
    width: 100%;
    max-width: 350px;
    justify-content: center;
    font-size: 16px;
  }
  .logmansion__actions .btn-gold strong {
    font-size: 16px;
  }
}
.section-how-we-work {
  position: relative;
  overflow: visible;
  z-index: 1;
}
.section-how-we-work .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.section-how-we-work .section-header {
  text-align: left;
  margin-bottom: 40px;
}
.section-how-we-work .section-header .sub-title {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.7px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-how-we-work .section-header .title {
  font-family: "Noto Serif JP", serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.section-how-we-work .work-cards-container {
  position: relative;
}
.section-how-we-work .work-card {
  background: url("../images/recruit_img/work-card-bg.png") 50%/cover no-repeat;
  background-blend-mode: soft-light, normal;
  padding: 60px 0 120px;
  border-radius: 30px 30px 0 0;
  width: 100%;
  max-height: 100vh;
  transform: translateY(100vh);
}
.section-how-we-work .work-card-01 {
  position: relative;
  transform: translateY(0);
  z-index: 2;
  background-color: #61676E;
}
.section-how-we-work .work-card-02 {
  padding-top: 100px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transform: translateY(100vh);
  z-index: 3;
  background-color: #525D67;
}
.section-how-we-work .work-card-02 .card-content-grid {
  bottom: 40px;
}
.section-how-we-work .work-card-03 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transform: translateY(200vh);
  z-index: 4;
  background-color: #484E54;
}
.section-how-we-work .work-card .card-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
  max-width: 1070px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.section-how-we-work .work-card .text-block .card-number {
  font-family: "Noto Serif JP", serif;
  font-size: 128px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 20px;
  position: relative;
  left: -105px;
}
.section-how-we-work .work-card .text-block .card-title {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 30px;
}
.section-how-we-work .work-card .text-block .card-desc {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}
.section-how-we-work .work-card .text-block .card-desc:last-child {
  margin-bottom: 0;
}
.section-how-we-work .work-card .text-block .image-block-sp {
  display: none;
}
.section-how-we-work .work-card .image-block .image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.section-how-we-work .work-card .image-block .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .section-how-we-work {
    height: auto !important;
  }
  .section-how-we-work .section-header {
    margin-bottom: 30px;
  }
  .section-how-we-work .section-header .sub-title {
    font-size: 12px;
  }
  .section-how-we-work .section-header .title {
    font-size: 30px;
  }
  .section-how-we-work .work-card {
    border-radius: 15px 15px 0 0;
    padding: 20px 0 40px;
    position: relative !important;
    height: auto !important;
    max-height: inherit;
    transform: none !important;
  }
  .section-how-we-work .work-card-02 .card-content-grid {
    bottom: 0;
  }
  .section-how-we-work .work-card .card-content-grid {
    display: flex;
    flex-direction: column;
  }
  .section-how-we-work .work-card .text-block .card-number {
    left: 0;
    font-size: 64px;
  }
  .section-how-we-work .work-card .text-block .card-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .section-how-we-work .work-card .text-block .card-desc {
    font-size: 14px;
  }
  .section-how-we-work .work-card .text-block .image-block-sp {
    display: block;
    margin-bottom: 30px;
  }
  .section-how-we-work .work-card .image-block {
    display: none;
  }
}
.staff-intro {
  padding: 150px 0 100px;
  color: #ffffff;
  position: relative;
}
.staff-intro.staff-intro-main {
  padding-top: 100px;
}
.staff-intro.staff-intro-sub {
  padding-top: 100px;
}
@media (max-width: 992px) {
  .staff-intro.staff-intro-sub {
    padding: 50px 0;
  }
}
.staff-intro.staff-intro-sub .container {
  padding: 0;
}
.staff-intro.staff-intro-sub .section-header .title {
  font-size: 40px;
}
@media (max-width: 992px) {
  .staff-intro.staff-intro-sub .section-header .title {
    font-size: 32px;
  }
}
.staff-intro .container {
  max-width: 1270px;
  margin: 0 auto;
}
.staff-intro .section-header {
  margin-bottom: 40px;
}
.staff-intro .section-header .label {
  font-family: "Noto Serif JP", serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 15px;
}
.staff-intro .section-header .label .gold-dot {
  width: 12px;
  height: 8px;
  background: linear-gradient(135deg, #e4cd89, #c7a152);
  border-radius: 50%;
  transform: rotate(-30deg);
}
.staff-intro .section-header .title {
  font-family: "Noto Serif JP", serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: normal;
}
.staff-intro .staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.staff-intro .staff-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  width: 295px !important;
  height: 100%;
  color: inherit;
  transition: transform 0.3s ease;
}
.staff-intro .staff-card:hover {
  transform: translateY(-5px);
}
.staff-intro .staff-card:hover .card-image .arrow-icon {
  transform: translateX(3px);
}
.staff-intro .staff-card .card-image {
  background-color: #ffffff;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 295px;
  height: 295px;
}
.staff-intro .staff-card .card-image img {
  height: 280px;
  -o-object-fit: contain;
     object-fit: contain;
}
.staff-intro .staff-card .card-image .arrow-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  color: #ceaa6b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.staff-intro .staff-card .card-info .role {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
.staff-intro .staff-card .card-info .demo {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 15px;
}
.staff-intro .staff-card .card-info .desc {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  text-align: justify;
}
@media (max-width: 1024px) {
  .staff-intro .staff-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
}
@media (max-width: 992px) {
  .staff-intro .section-header {
    padding: 0 20px;
  }
  .staff-intro .section-header .label {
    font-size: 12px;
  }
  .staff-intro .section-header .title {
    font-size: 28px;
  }
  .staff-intro .staff-card {
    width: 220px !important;
  }
  .staff-intro .staff-card .card-image {
    width: 220px;
    height: 240px;
  }
  .staff-intro .staff-card .card-image img {
    height: 220px;
  }
  .staff-intro .staff-card .card-info .desc {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .staff-intro .staff-grid {
    grid-template-columns: 1fr;
  }
  .staff-intro .section-header .title {
    font-size: 28px;
  }
}

@media (max-width: 992px) {
  .staff-intro {
    padding-top: 150px;
  }
  .staff-intro.staff-intro-main {
    padding-top: 60px;
  }
}
.staffSwiper {
  width: 100%;
  position: relative;
  padding: 20px 0;
}
.staffSwiper .swiper-slide {
  height: auto;
}
.staffSwiper .swiper-button-next,
.staffSwiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  color: #ceaa6b;
  transition: all 0.3s ease;
}
.staffSwiper .swiper-button-next:after,
.staffSwiper .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}
.staffSwiper .swiper-button-next:hover,
.staffSwiper .swiper-button-prev:hover {
  background-color: #ceaa6b;
  color: #ffffff;
}
.staffSwiper .swiper-button-next.swiper-button-lock,
.staffSwiper .swiper-button-prev.swiper-button-lock {
  display: none;
}
.staffSwiper .swiper-button-prev {
  left: 0;
}
.staffSwiper .swiper-button-next {
  right: 0;
}

@media (max-width: 992px) {
  .staffSwiper {
    padding: 20px;
  }
  .staffSwiper .swiper-wrapper {
    justify-content: flex-start;
  }
}
.recruit {
  background: url("../images/recruit_img/bg-recruit.png") 50%/cover no-repeat, #89929B;
  background-blend-mode: soft-light, normal;
  padding: 120px 0 160px;
  position: relative;
  z-index: 10;
}
.recruit__curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: #484E54;
  border-radius: 0 0 80% 80%/0 0 100% 100%;
  z-index: 1;
}
.recruit .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.recruit .section-header.dark-text {
  margin-bottom: 40px;
}
.recruit .section-header.dark-text .label {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.recruit .section-header.dark-text .title {
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
  font-size: 48px;
  font-weight: 700;
}
.recruit .recruit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.recruit .job-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-decoration: none;
  color: inherit;
  position: relative;
  box-shadow: 20px 20px 40px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.recruit .job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.recruit .job-card:hover .arrow-btn {
  transform: scale(1.05);
}
.recruit .job-card .card-top {
  margin-bottom: 20px;
}
.recruit .job-card .card-top .job-type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}
.recruit .job-card .job-title {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.4;
}
.recruit .job-card .job-location {
  font-family: "Inter";
  font-size: 16px;
  color: #4F4F4F;
}
.recruit .job-card .arrow-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gold, linear-gradient(90deg, #D7AD54 0.62%, #F7DF8D 49.64%, #D7AD54 97.88%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(198, 160, 81, 0.4);
  transition: transform 0.3s ease;
}
@media (max-width: 992px) {
  .recruit {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .recruit .section-header.dark-text {
    margin-bottom: 30px;
  }
  .recruit .section-header.dark-text .label {
    font-size: 12px;
  }
  .recruit .section-header.dark-text .title {
    font-size: 30px;
  }
  .recruit .recruit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .recruit .job-card {
    padding: 20px;
    min-height: 180px;
  }
  .recruit .job-card .card-top {
    margin-bottom: 10px;
  }
  .recruit .job-card .job-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .recruit .job-card .job-location {
    font-size: 14px;
  }
  .recruit .job-card .arrow-btn {
    bottom: 20px;
    right: 20px;
  }
}
@media (max-width: 576px) {
  .recruit .recruit-grid {
    grid-template-columns: 1fr;
  }
  .recruit .recruit__curve {
    height: 50px;
    top: -25px;
  }
}

.footer {
  background: #333333;
  color: #ffffff;
  position: relative;
  z-index: 10;
}
.footer .container {
  max-width: 1528px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.footer a:hover {
  opacity: 0.7;
}
.footer__top {
  padding: 70px 0;
  position: relative;
  top: -80px;
}
.footer__top::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 90%;
  height: 100%;
  background-color: #000000;
}
.footer__top .footer__nav {
  display: flex;
  gap: 50px;
}
.footer__top .footer__nav a {
  color: #ffffff;
  font-family: "SF Pro Display";
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.footer__bottom {
  background-color: #333333;
  padding: 50px 0 30px;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer__left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.footer__left .footer__logo img {
  height: 35px;
  width: auto;
  display: block;
}
.footer__left .footer__socials {
  display: flex;
  gap: 15px;
}
.footer__left .footer__socials a {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__right {
  flex-grow: 1;
}
.footer__right .footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.footer__right .footer__links a {
  color: #ffffff;
  font-family: "SF Pro Display";
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.footer__right .footer__group .group-title {
  font-family: "SF Pro Display";
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}
.footer__right .footer__group .group-list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 12px;
}
.footer__right .footer__group .group-list a {
  color: #ccc;
  font-family: "SF Pro Display";
  font-size: 10px;
  letter-spacing: 0.5px;
}
.footer__copyright {
  text-align: right;
  margin-top: 50px;
}
.footer__copyright p {
  color: #fff;
  font-family: "SF Pro Display";
  font-size: 10px;
  letter-spacing: 1px;
}
.footer__copyright p a {
  color: #fff;
}
@media (max-width: 992px) {
  .footer {
    padding-top: 60px;
  }
  .footer .footer__top::after {
    background: #222;
  }
  .footer .footer__top {
    top: 0;
    padding: 30px 0;
  }
  .footer .footer__top .footer__nav {
    align-items: flex-start;
  }
  .footer .footer__top .footer__nav a {
    font-family: "Noto Serif JP", serif;
  }
  .footer__content {
    flex-direction: column;
    gap: 20px;
  }
  .footer__copyright {
    margin-top: 40px;
  }
  .footer__copyright p {
    font-family: "Noto Serif JP", serif;
  }
  .footer .footer__left .footer__socials {
    display: none;
  }
  .footer .footer__right .footer__group {
    border-top: 1px solid #434343;
    padding-top: 30px;
  }
  .footer .footer__right .footer__group .group-title {
    font-family: "Noto Serif JP", serif;
  }
  .footer .footer__right .footer__group .group-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 15px;
         column-gap: 15px;
    row-gap: 15px;
  }
  .footer .footer__right .footer__group .group-list a {
    font-family: "Noto Serif JP", serif;
  }
  .footer .footer__right .footer__links {
    margin-bottom: 30px;
  }
  .footer .footer__right .footer__links a {
    font-family: "Noto Serif JP", serif;
  }
}
@media (max-width: 576px) {
  .footer__top .footer__nav {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer__left {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer .footer__links {
    flex-direction: column;
    gap: 15px;
  }
}

.job-detail-page {
  color: #fff;
  padding-top: 80px;
  padding-bottom: 0;
}
.job-detail-page .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumb {
  padding: 40px 0 50px;
  font-size: 14px;
  color: #aaaaaa;
}
.breadcrumb a {
  color: #ffffff;
  transition: opacity 0.3s;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb span {
  margin: 0 5px;
  color: #fff;
}
.breadcrumb .current {
  color: #E0E0E0;
}
@media (max-width: 992px) {
  .breadcrumb {
    font-size: 12px;
    padding-top: 10px;
  }
}

.job-hero {
  margin-bottom: 50px;
}
.job-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 500;
}
.job-hero .job-title {
  font-family: "Noto Serif JP", serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
.job-hero .job-subtitle {
  font-size: 20px;
  margin-bottom: 20px;
}
.job-hero .job-intro {
  font-size: 16px;
  line-height: 28.8px;
  color: #fff;
}
.job-hero .activity-image-sp {
  display: none;
}

.job-activity h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: normal;
}
.job-activity .job-activity-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
  align-items: center;
}
.job-activity .activity-text {
  min-width: 610px;
}
.job-activity .activity-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 15px;
  text-align: justify;
}
.job-activity .activity-text p:last-of-type {
  margin-bottom: 0;
}
.job-activity .activity-image {
  min-width: 580px;
  height: 364px;
  overflow: hidden;
}
.job-activity .activity-image img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}
.job-activity .activity-image.activity-image-sp {
  display: none;
}

@media (max-width: 992px) {
  .job-activity h2 {
    font-size: 24px;
  }
  .job-activity .job-activity-content {
    grid-template-columns: 1fr;
  }
  .job-activity .activity-text {
    min-width: inherit;
  }
  .job-activity .activity-image {
    display: none;
    min-width: inherit;
    height: 200px;
  }
  .job-activity .activity-image img {
    border-radius: 10px;
  }
  .job-activity .activity-image.activity-image-sp {
    display: block;
    margin-bottom: 50px;
  }
}
.job-specs {
  margin-bottom: 50px;
}
.job-specs .specs-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  color: #333333;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.job-specs .spec-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #E0E0E0;
}
.job-specs .spec-row.border-none {
  border-bottom: none;
}
.job-specs .spec-row .spec-label {
  width: 200px;
  flex-shrink: 0;
  background-color: #F2F2F2;
  padding: 30px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  border-right: 1px solid #E0E0E0;
}
.job-specs .spec-row .spec-value {
  flex-grow: 1;
  padding: 30px;
  background-color: #ffffff;
  font-size: 16px;
  line-height: 1.8;
}
.job-specs .spec-row .spec-value ol {
  padding-left: 15px;
}
.job-specs .spec-row .spec-value p {
  margin-bottom: 15px;
}
.job-specs .spec-row .spec-value p:last-child {
  margin-bottom: 0;
}
.job-specs .spec-row .spec-value strong {
  font-weight: 700;
  display: inline-block;
  margin-bottom: 5px;
}
.job-specs .spec-row .spec-value .note {
  font-size: 14px;
  color: #333333;
}
@media (max-width: 768px) {
  .job-specs .spec-row {
    flex-direction: column;
  }
  .job-specs .spec-row .spec-label {
    width: 100%;
    padding: 10px;
  }
  .job-specs .spec-row .spec-value {
    padding: 10px;
  }
}

.job-cta {
  text-align: center;
}
.job-cta .btn-entry-large {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background: var(--gold, linear-gradient(90deg, #D7AD54 0.62%, #F7DF8D 49.64%, #D7AD54 97.88%));
  color: #333333;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  padding: 19px 40px;
  border-radius: 100px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  min-width: 400px;
}
.job-cta .btn-entry-large .arrow-circle {
  background-color: #ffffff;
  color: #dca452;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.3s;
}
.job-cta .btn-entry-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.job-cta .btn-entry-large:hover .arrow-circle {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .job-hero .job-title {
    font-size: 32px;
    letter-spacing: inherit;
  }
  .job-cta .btn-entry-large {
    min-width: inherit;
    width: 100%;
  }
}
.interview-detail-page {
  background-color: #4b535b;
  color: #ffffff;
  padding-bottom: 120px;
  margin-top: 80px;
}
.interview-detail-page .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.interview-detail-page .dotted-divider {
  margin: 120px 0;
}
@media (max-width: 992px) {
  .interview-detail-page .dotted-divider {
    margin: 50px 0;
  }
}

@media (max-width: 992px) {
  .interview-detail-page {
    padding-bottom: 50px;
  }
}
.interview-hero {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 80px 90px;
  margin-bottom: 120px;
  height: 600px;
  isolation: isolate;
}
.interview-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.08);
  animation: interviewHeroZoom 1.4s ease-out forwards;
  will-change: transform;
}
.interview-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), 50%/cover no-repeat;
  z-index: 2;
  opacity: 0;
  animation: interviewHeroFade 0.8s ease-out 0.15s forwards;
}
.interview-hero .hero-content {
  height: 100%;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: space-between;
}
.interview-hero .hero-header {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 30px;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  opacity: 0;
  transform: translateY(24px);
  animation: interviewHeroTextIn 0.8s ease-out 0.35s forwards;
}
.interview-hero .hero-header .title-en {
  font-size: 64px;
  letter-spacing: 2px;
}
.interview-hero .hero-header .title-num {
  font-size: 64px;
  color: transparent;
  -webkit-text-stroke: 2px #ffffff;
}
.interview-hero .hero-footer {
  opacity: 0;
  transform: translateY(32px);
  animation: interviewHeroTextIn 0.85s ease-out 0.55s forwards;
}
.interview-hero .hero-quote {
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 700;
  text-shadow: 0 1px 1px #000;
  line-height: 1.6;
  margin-bottom: 20px;
}
.interview-hero .hero-quote span {
  display: block;
}
.interview-hero .badge-white {
  background-color: #ffffff;
  color: #333333;
  padding: 8.7px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
}
@media (max-width: 992px) {
  .interview-hero {
    padding: 30px;
    height: 330px;
    border-radius: 10px;
    margin-bottom: 50px;
  }
  .interview-hero .hero-header .title-en,
  .interview-hero .hero-header .title-num {
    font-size: 32px;
  }
  .interview-hero .hero-quote {
    font-size: 16px;
  }
  .interview-hero .hero-quote span {
    display: inline;
  }
  .interview-hero .badge-white {
    font-size: 14px;
    padding: 4px 20px;
  }
}

@keyframes interviewHeroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}
@keyframes interviewHeroFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes interviewHeroTextIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .interview-hero .hero-bg,
  .interview-hero .hero-overlay,
  .interview-hero .hero-header,
  .interview-hero .hero-footer {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.interview-profile {
  display: flex;
  align-items: flex-start;
  gap: 100px;
}
.interview-profile .avatar {
  flex-shrink: 0;
}
.interview-profile .avatar img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #eee;
}
.interview-profile .info .name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}
.interview-profile .info .demo {
  display: block;
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
}
.interview-profile .info .desc {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  text-align: justify;
}
@media (max-width: 768px) {
  .interview-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .interview-profile .info .desc {
    text-align: left;
  }
}

.dotted-divider {
  border: none;
  border-top: 1px dotted rgba(255, 255, 255, 0.3);
  margin: 60px 0;
}

.interview-body {
  display: flex;
  align-items: stretch;
  gap: 100px;
}
.interview-body .interview-sidebar {
  width: 310px;
  flex-shrink: 0;
  border-radius: 0 30px 30px 0;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
}
.interview-body .interview-sidebar::before {
  content: "";
  position: absolute;
  left: -150%;
  top: 0;
  width: 150%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}
.interview-body .interview-sidebar .sidebar-inner {
  position: sticky;
  top: 100px;
  padding: 40px 20px 40px 0;
}
.interview-body .interview-sidebar .nav-questions {
  list-style: none;
  padding: 0;
  margin: 0;
}
.interview-body .interview-sidebar .nav-questions li {
  margin-bottom: 40px;
  position: relative;
  padding-left: 15px;
}
.interview-body .interview-sidebar .nav-questions li:last-child {
  margin-bottom: 0;
}
.interview-body .interview-sidebar .nav-questions li a {
  display: flex;
  gap: 10px;
  text-decoration: none;
  color: #828282;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  transition: color 0.3s ease, transform 0.3s ease;
}
.interview-body .interview-sidebar .nav-questions li a:hover {
  color: #ffffff;
}
.interview-body .interview-sidebar .nav-questions li a span {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
}
.interview-body .interview-sidebar .nav-questions li.active a {
  color: #ffffff;
}
.interview-body .interview-content {
  flex-grow: 1;
}
.interview-body .interview-content .qa-block {
  margin-bottom: 60px;
  scroll-margin-top: 120px;
}
.interview-body .interview-content .qa-block:last-child {
  margin-bottom: 0;
}
.interview-body .interview-content .question {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  line-height: 2em;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.interview-body .interview-content .question .q-mark {
  background: var(--gold, linear-gradient(90deg, #D7AD54 0.62%, #F7DF8D 49.64%, #D7AD54 97.88%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}
.interview-body .interview-content .question .q-text {
  font-weight: 700;
}
.interview-body .interview-content .answer {
  font-size: 16px;
  line-height: 2;
  color: #fff;
  text-align: justify;
}
.interview-body .interview-content .answer p {
  margin-bottom: 25px;
}
.interview-body .interview-content .answer p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .interview-body {
    flex-direction: column;
    gap: 40px;
  }
  .interview-body .interview-sidebar {
    width: 100%;
    display: none;
  }
  .interview-body .interview-sidebar .sidebar-inner {
    position: static;
    border-radius: 12px;
    margin-left: 0;
    padding: 25px;
  }
  .interview-body .interview-sidebar .nav-questions li {
    margin-bottom: 15px;
  }
  .interview-body .interview-sidebar .nav-questions li a {
    display: inline;
  }
  .interview-body .interview-content .question .q-text {
    line-height: 1.5em;
  }
}

.entry-form-page {
  color: #fff;
  padding-bottom: 180px;
  margin-top: 80px;
}
.entry-form-page .container {
  max-width: 1240px;
  margin: 0 auto;
}

.page-header {
  text-align: center;
  margin-bottom: 50px;
}
.page-header .page-title {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.page-header .page-desc {
  font-family: "Noto Sans CJK JP";
  font-size: 16px;
  color: #fff;
}

.form-card {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 100px;
  color: #333333;
  margin-bottom: 50px;
}

.form-row {
  display: flex;
  align-items: flex-start;
  padding: 0 0 40px;
}
.form-row:first-child {
  padding-top: 0;
}
.form-row.border-none {
  border-bottom: none;
  padding-bottom: 0;
}
.form-row .form-label {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.form-row .form-label label {
  font-weight: 700;
  font-size: 16px;
}
.form-row .form-label .badge-required {
  background: var(--gold, linear-gradient(90deg, #D7AD54 0.62%, #F7DF8D 49.64%, #D7AD54 97.88%));
  color: #333;
  font-family: "SF Pro Display";
  font-size: 12px;
  font-weight: 600;
  padding: 2.5px 10px;
  border-radius: 100px;
}
.form-row .form-input {
  flex-grow: 1;
}
.form-row .form-input input[type=text],
.form-row .form-input input[type=email],
.form-row .form-input input[type=tel],
.form-row .form-input textarea,
.form-row .form-input select {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #BDBDBD;
  padding: 8.5px 20px;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.3s;
}
.form-row .form-input input[type=text]::-moz-placeholder, .form-row .form-input input[type=email]::-moz-placeholder, .form-row .form-input input[type=tel]::-moz-placeholder, .form-row .form-input textarea::-moz-placeholder, .form-row .form-input select::-moz-placeholder {
  color: #aaaaaa;
}
.form-row .form-input input[type=text]::placeholder,
.form-row .form-input input[type=email]::placeholder,
.form-row .form-input input[type=tel]::placeholder,
.form-row .form-input textarea::placeholder,
.form-row .form-input select::placeholder {
  color: #aaaaaa;
}
.form-row .form-input input[type=text]:focus,
.form-row .form-input input[type=email]:focus,
.form-row .form-input input[type=tel]:focus,
.form-row .form-input textarea:focus,
.form-row .form-input select:focus {
  border-color: #ceaa6b;
}
.form-row .form-input select {
  padding: 12px 20px;
}
.form-row .form-input textarea {
  resize: vertical;
  line-height: 1.6;
  max-height: 140px;
}
.form-row .form-input.flex-split {
  display: flex;
  gap: 20px;
}
.form-row .form-input.flex-split input {
  flex: 1;
}
.form-row .form-input.flex-stacked {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row .form-input .select-wrapper {
  position: relative;
}
.form-row .form-input .select-wrapper select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding-right: 50px;
  cursor: pointer;
}
.form-row .form-input .select-wrapper .select-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #333;
  border-radius: 100px;
}

.privacy-submit-section {
  text-align: center;
}
.privacy-submit-section .privacy-text {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 20px;
}
.privacy-submit-section .privacy-text a {
  color: #F2C94C;
  text-decoration: underline;
}
.privacy-submit-section .privacy-text a:hover {
  text-decoration: none;
}
.privacy-submit-section .checkbox-wrapper {
  margin-bottom: 20px;
  min-height: 30px;
}
.privacy-submit-section .checkbox-wrapper .custom-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.privacy-submit-section .checkbox-wrapper .custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.privacy-submit-section .checkbox-wrapper .custom-checkbox .checkmark {
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 3px;
  margin-right: 12px;
  position: relative;
  display: inline-block;
  flex: 0 0 20px;
}
.privacy-submit-section .checkbox-wrapper .custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  opacity: 0;
  visibility: hidden;
  width: 5px;
  height: 10px;
  border: solid #333;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.privacy-submit-section .checkbox-wrapper .custom-checkbox input:checked ~ .checkmark:after {
  opacity: 1;
  visibility: visible;
}
.privacy-submit-section .btn-entry-large {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 100px;
  background: var(--gold, linear-gradient(90deg, #D7AD54 0.62%, #F7DF8D 49.64%, #D7AD54 97.88%));
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  min-width: 400px;
}
.privacy-submit-section .btn-entry-large .arrow-circle {
  background-color: #ffffff;
  color: #dca452;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.3s;
}
.privacy-submit-section .btn-entry-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.privacy-submit-section .btn-entry-large:hover .arrow-circle {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .entry-form-page {
    padding: 0 20px 50px;
  }
  .form-card {
    padding: 10px 10px;
    border-radius: 10px;
  }
  .form-row {
    flex-direction: column;
    padding-bottom: 20px;
    gap: 10px;
  }
  .form-row .form-label {
    width: 100%;
  }
  .form-row .form-input {
    width: 100%;
  }
  .form-row .form-input.flex-split {
    flex-direction: column;
    gap: 5px;
  }
  .form-row .form-input.flex-stacked {
    gap: 5px;
  }
  .form-row .form-input input[type=text],
  .form-row .form-input input[type=email],
  .form-row .form-input input[type=tel],
  .form-row .form-input textarea,
  .form-row .form-input select {
    padding: 10px;
  }
  .privacy-submit-section .btn-entry-large {
    width: 100%;
    padding: 20px 40px;
    min-width: inherit;
  }
  .privacy-submit-section .privacy-text {
    text-align: justify;
    font-size: 14px;
  }
}
.entry-complete-page {
  background-color: #4b535b;
  color: #ffffff;
  min-height: 80vh;
}
.entry-complete-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.entry-complete-page {
  margin-top: 80px;
}

.complete-message-wrap {
  text-align: center;
  padding: 120px 0 150px;
}
.complete-message-wrap .complete-title {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: 2px;
}
.complete-message-wrap .complete-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 2;
  color: #fff;
}

@media (max-width: 992px) {
  .complete-message-wrap {
    padding: 80px 0 100px;
  }
  .complete-message-wrap .complete-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .complete-message-wrap .complete-desc {
    font-size: 14px;
    line-height: 1.8;
  }
  .complete-message-wrap .complete-desc br {
    display: none;
  }
}
/* 1. Khung container chứa băng chuyền */
.marquee-container {
  width: 100%;
  overflow: hidden;
  /* Cắt bỏ phần dư thừa ngoài màn hình */
  margin-bottom: 40px;
}

/* 2. Băng chuyền chạy liên tục */
.marquee-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  /* Rất quan trọng: Băng chuyền tự giãn độ dài theo số ảnh */
  /* Cài đặt thời gian chạy (30s). Càng nhỏ chạy càng nhanh */
  animation: marqueeScroll 30s linear infinite;
}

/* 3. TÍNH NĂNG HOVER ĐỂ DỪNG: Chỉ cần đúng 3 dòng này! */
.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

/* 4. Cấu hình từng Item (Giả lập slidesPerView) */
.marquee-item {
  flex-shrink: 0;
  margin-right: 20px;
  /* Thay thế cho spaceBetween: 20 */
  /* Độ rộng trên Desktop (Giống slidesPerView: 5.5) */
  width: 17vw;
  /* Chiếm 17% màn hình -> Khoảng 5.5 tấm trên 1 màn hình */
  min-width: 295px;
}
.marquee-item img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.marquee-item .caption {
  margin-top: 15px;
  text-align: center;
  font-family: "Noto Sans CJK JP";
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

/* Responsive cho Tablet và Mobile */
@media (max-width: 1024px) {
  .marquee-item {
    width: 26vw;
  }
  /* slidesPerView: 3.5 */
}
@media (max-width: 768px) {
  .marquee-item {
    width: 60vw;
    /* slidesPerView: 1.5 */
    margin-right: 15px;
  }
}
/* 5. Hiệu ứng chạy từ 0 đến một nửa băng chuyền rồi reset lặp lại */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}/*# sourceMappingURL=fe.css.map */
.form-row .custom-file-upload {
  display: flex;
  align-items: center;
  gap: 10px 20px;
  flex-wrap: wrap;
  /* Cho phép các thành phần xuống dòng nếu cần trên mobile */
}

.form-row .custom-file-button {
  display: inline-block;
  padding: 6px 12px;
  background-color: #f0f0f0;
  /* Màu nền nút mặc định */
  border: 1px solid #ccc;
  /* Viền mặc định */
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}
.form-row .custom-file-button:hover {
  background-color: #e0e0e0;
}

.form-row .custom-file-name {
  font-size: 14px;
  color: #555;
}

.form-row .file-note {
  display: block;
  width: 100%;
  font-size: 13px;
  color: #333;
  margin-top: 5px;
  line-height: 1.5;
}