/*
- 目次
1. ResetのCSS
*/

/* ===================================
  1. ResetのCSS start
===================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  background-color: #f2f2f2;
}

header li {
  list-style: none;
}

a {
  text-decoration: none;
}

/* ===================================
  1. ResetのCSS start
===================================== */

.navbar {
  position: fixed;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.6rem 2.4rem;
  background-color: #df0045;
}

.navbar .container-1000 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-sub {
  background-color: #f2f2f2;
}

.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #101010;
  transition: all 0.3s ease-in-out;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-item {
  margin-left: 4.8rem;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: 0.3s ease;
}

.nav-link:hover {
  opacity: 0.7;
}

.logo {
  min-width: 200px;
  max-width: 300px;
}

@media only screen and (width <= 1024px) {
  .nav-item {
    margin-left: 2rem;
  }
}

@media only screen and (width <= 850px) {
  .nav-menu {
    position: fixed;
    top: 69px;
    left: -100%;
    flex-direction: column;
    width: 100%;
    padding-bottom: 20px;
    text-align: center;
    background-color: #df0045;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: 0 10px 27px rgb(0 0 0 / 5%);
    transition: 0.3s;
  }

  .navbar {
    padding: 1.6rem 0;
  }

  .navbar-sub .nav-menu {
    background: #f2f2f2;
  }

  .active {
    left: 0;
    z-index: 99999999;
  }

  .nav-item {
    margin: 20px 0;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

.container {
  position: relative;
}

.background {
  position: sticky; /* Use sticky positioning */
  top: 0; /* Sticks to the top of the viewport */
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.background:first-child {
  background-image: url("../img/main1.jpg");
}

.background:nth-child(2) {
  background-image: url("../img/main2.jpg");
}

.background:nth-child(3) {
  background-image: url("../img/main3.jpg");
}

.background:nth-child(2) .content-wrapper {
  padding-top: 80px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: #fff;
  text-align: center;
}

.content-title {
  font-size: 10vh;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

.content-title-eng {
  margin-bottom: 40px;
  font-size: 18.5rem;
  line-height: 1.05;
  text-transform: unset;
  letter-spacing: 0.08em;
}

.content-subtitle {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.39;
}

@media only screen and (width <= 768px) {
  .content-title {
    margin-bottom: 30px;
    line-height: 1.5;
  }
}

.grid-center {
  display: grid;
  place-content: center;
  min-height: 100vh;
}

.wrapper {
  width: min(100% - 2rem, 60rem);
  margin-inline: auto;
}

section {
  --text-clr: white;

  color: var(--text-clr);
  background-color: var(--section-clr);
}

section p {
  font-size: clamp(1.6rem, 0.375rem + 1.714vw, 1.6rem);
}

section h2 {
  margin-bottom: 32px;
  font-size: clamp(1.8rem, 0.375rem + 1.714vw, 2.2rem);
  text-align: center;
  text-transform: uppercase;
}

.section-sticky {
  --text-clr: black;

  position: relative;
  display: flex;
  overflow: hidden;
  font-weight: bold;
}

.section-sticky h2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  font-size: 9.6rem;
  line-height: 1.35;
  text-align: left;
  letter-spacing: 0.035em;
  -webkit-box-orient: vertical;
}

.section-sticky .msg-text {
  font-size: 2.6rem;
  line-height: 1.75;
  letter-spacing: 0.14em;
}

.section-sticky .msg-text-underline {
  display: -webkit-box;
  width: fit-content;
  overflow: hidden;
  -webkit-line-clamp: 1;
  font-size: 2.4rem;
  line-height: 1.75;
  letter-spacing: 0.08em;
  text-decoration: underline;
  -webkit-box-orient: vertical;
}

.section-sticky .msg-text-right {
  font-size: 2.3rem;
  line-height: 2.47;
  color: #fff;
  letter-spacing: 0.075em;
}

.section-sticky .msg-text-right span {
  font-size: 3.7rem;
  line-height: 1.54;
  letter-spacing: 0.075em;
}

.left {
  transform: translateY(-100%);
}

.background-blue,
.background-yellow {
  width: 100%;
  border: 1px solid hsl(228deg 5% 22% / 40%);
}

.background-blue {
  background-color: #a0c1d1;
}

.background-yellow {
  background-color: #f4f1bb;
}

.background-blue p,
.background-yellow p {
  font-size: clamp(1.6rem, 0.375rem + 1.714vw, 3rem);
}

/* Responsive adjustments */
@media (width <= 767px) {
  .section-sticky {
    flex-direction: column;
  }

  .grid-center {
    min-height: 50vh;
  }

  section p {
    font-size: clamp(1.5rem, 0.375rem + 1.714vw, 1.5rem);
  }
}

@media (width <= 676px) {
  .left,
  .right {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .left {
    transform: unset;
  }
}

.left,
.right {
  width: 100%;
  height: 100vh;
  transition: all 0.25s linear;
}

.background-white {
  background-color: #fff;
}

.background-red {
  background: #df0045;
}

.background-red .btn-red-wrap {
  color: #fff;
}

.msg-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 100px;
  word-break: break-all;
}

/* Media Queries */
@media (width <= 767px) {
  .section-sticky {
    flex-direction: column;
  }

  .msg-text-container {
    min-height: 50vh;
    padding: 20px 40px;
  }
}

@media (width <= 676px) {
  .left,
  .right {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .left {
    transform: unset;
  }
}

/* =========== */
.img-fluid {
  width: 100%;
}

.container-1000 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.section2 .msg-wrap .msg-text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}

.section2 .btn-cta {
  margin-top: 50px;
}

.msg-text-container .inner_wrapper {
  max-width: 600px;
}

.section3 {
  position: relative;
  padding: 70px 0;
  color: #000;
}

.section3 .side-title {
  position: absolute;
  bottom: -10rem;
  left: 50px;
  font-size: 8rem;
  font-weight: bold;
  line-height: 1.64;
  color: #000;
  writing-mode: vertical-rl;
}

.about-pc-wrap {
  position: relative;
}

.about-pc-wrap .about-pc-text {
  position: absolute;
  right: 0;
  z-index: 88;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 90px;
}

.sec-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 50px;
}

.sec-heading .heading-title {
  margin-bottom: 10px;
  font-size: 7rem;
  font-weight: bold;
  line-height: 1.14;
  text-align: center;
  letter-spacing: 0.035em;
}

.heading-name {
  margin-bottom: 0;
  font-weight: 600;
  color: #000;
  text-align: center;
  text-decoration: underline;
}

.about-title {
  max-width: 780px;
}

.parallax {
  height: 300px;
  background-image: url("../img/bg-parallax.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.side-interview,
.side-culture {
  display: flex;
  align-items: center;
  margin: 0 auto;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
}

.flex-box {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.flex-box .right-box {
  width: calc(100% - 300px);
  max-width: 70%;
  padding-top: 70px;
}

.flex-box .left-box .side-culture {
  margin-top: -170px;
}

.side-interview .right-box-title,
.side-culture .right-box-title {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 3px solid #000;
}

.left-box-title p {
  height: fit-content;
  padding: 10px 0;
  font-size: 2.4rem;
  line-height: 1.97;
  letter-spacing: 0.07em;
  background-color: #fff;
}

.left-box-title p:not(:first-child) {
  margin-right: 10px;
}

.section5 {
  margin-bottom: 50px;
  color: #000;
}

.section4 {
  margin-bottom: 120px;
  color: #000;
}

.section4 .btn-cta {
  margin-top: 50px;
}

.culture-svg {
  aspect-ratio: 1.142;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
}

.culture-svg h3 {
  margin-bottom: 40px;
  font-size: 2.8rem;
  font-feature-settings: "palt" 1;
  line-height: calc(47.93 / 28.28);
  color: #000;
  text-align: center;
}

.job-content {
  padding: 20px;
  font-size: 1.4rem;
  line-height: 1.49;
  letter-spacing: 0.128em;
  background-color: #fff;
}

.job-content .job-content-top {
  position: relative;
}

.job-content h3 {
  position: relative;
  top: 0;
  left: 50%;
  font-size: 2rem;
  line-height: 1.59;
  letter-spacing: 0.13em;
  writing-mode: vertical-rl;
  transform: translateX(-50%);
}

.job-content p {
  margin-top: 5px;
  margin-bottom: 20px;
  font-size: 1.5rem;
  line-height: 1.61;
  text-align: center;
  letter-spacing: 0.13em;
}

.job-title {
  margin-bottom: 50px;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.14em;
}

.job-content .job-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  margin: 0 auto 20px;
}

.job-content-top {
  display: block;
  color: #000;
  text-decoration: none;
  transition: 0.3s ease;
}

.job-content-top:hover {
  opacity: 0.7;
}

.job-content .job-image img {
  width: 70px;
  height: 90px;
  object-fit: contain;
}

.section4 .culture {
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
}

.section5 .inner-container {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 890px;
  margin: 0 auto 50px;
}

.section6 {
  padding-top: 30px;
  margin-bottom: 300px;
}

.section6 .flex-box2 {
  position: relative;
  z-index: 9;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-evenly;
  color: #000;
}

.section6 .container-1000 {
  position: relative;
}

.section6 .white-box {
  position: absolute;
  bottom: -70px;
  z-index: 0;
  width: 100%;
  height: 500px;
  background-color: #fff;
}

.section6 .interview {
  max-width: 150px;
}

.section6 .flex-box2 .right-box img {
  max-width: 650px;
  margin-top: 70px;
  border-radius: 8px;
}

.section6 .flex-box2 .right-box p {
  height: fit-content;
  margin-top: 10px;
  font-size: 1.8rem;
  line-height: 1.88;
  letter-spacing: 0.05em;
}

.section6 .flex-box2 .right-box a {
  color: #000;
  text-decoration: none;
}

.section6 .flex-box2 .right-box span {
  padding: 4px 6px;
  margin-right: 0;
  line-height: 2.61;
  color: #fff;
  letter-spacing: 0.13em;
  background-color: #000;
}

.section6 .flex-box2 .left-box img {
  max-width: 80px;
  margin-left: 50px;
}

.section6 .flex-box2 .interview-rounded {
  border-bottom-right-radius: 8px;
}

.section6 .flex-box2 .left-box .btn-red-wrap img {
  margin-left: 0;
}

.section6 .flex-box2 .left-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section6 .left-box-title {
  font-size: 2.4rem;
  line-height: 1.97;
  letter-spacing: 0.07em;
}

.section6 .swiper {
  width: 100%;
  max-width: 650px;
}

.section6 .swiper-pagination {
  bottom: -40px !important;
  text-align: right;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
}

.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  margin: 5px;
  background-color: transparent !important;
  border: 1px solid #df0045;
}

.swiper-pagination-bullet-active {
  background-color: #df0045 !important;
}

.section6 .flex-box2 .right-box .swiper-pagination-bullet {
  padding: 0;
  margin-right: 5px;
}

.section6 .flex-box2 .side-interview p {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.4s;
}

.section6 .flex-box2 .swiper-slide-active .side-interview p {
  opacity: 1;
  transform: none;
  transition-delay: 0.3s;
}

.section7 {
  position: relative;
  padding-bottom: 25px;
  background-color: #df0045;
}

.section7 .circle-wrap {
  position: absolute;
  top: -150px;
  left: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 200px;
  height: 200px;
}

@keyframes textRotation {
  100% {
    transform: rotate(360deg);
  }
}

.section7 .circle-wrap .circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  max-width: 130px;
  transform: translate(-50%, -50%);
}

.section7 .circle-wrap .circle-rotate {
  animation: textRotation 20s linear infinite;
}

.section7 .entry-container {
  position: relative;
  top: -11rem;
}

.section7 .entry-title {
  font-weight: bold;
  line-height: 1.44;
  text-align: center;
}

.section7 .entry-title img {
  height: 131px;
}

.section7 .entry-title h2 {
  font-size: 17.7rem;
  line-height: 1.44;
  color: #000;
  letter-spacing: -0.02em;
}

.section7 .entry-title p {
  font-size: 5rem;
  line-height: 1.44;
  color: #fff;
  letter-spacing: 0.14em;
}

.section7 .entry-text {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 50px;
  font-size: 1.6rem;
  line-height: 2.2;
  color: #fff;
  text-align: center;
  letter-spacing: 0.13em;
}

.btn-wrap a,
.btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.btn-wrap a {
  width: 100%;
  max-width: 500px;
  transition: 0.3s ease;
}

.btn-wrap a:hover {
  opacity: 0.7;
}

.btn-cta {
  position: relative;
  height: 80px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.5;
  color: #cc2a3a;
  letter-spacing: 0.05em;
  background-color: #fff;
  border-radius: 40px;
}

.btn-cta:hover.aos-animate {
  opacity: 0.7;
}

.btn-cta .btn-arrow {
  position: absolute;
  top: inherit;
  right: 20px;
  width: 20px;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 1.2rem;
  color: #fff;
  background-color: #000;
}

.interview-title {
  text-align: center;
}

.bg-right {
  background-image: url("../img/right-img.jpg");
  background-position: center;
  background-size: cover;
}

.bg-left {
  background-image: url("../img/left-img.jpg");
  background-position: center;
  background-size: cover;
}

.breadcrumb {
  padding-top: 100px;
  margin-bottom: 15px;
}

.breadcrumb .b-name {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.breadcrumb .b-name::after {
  position: absolute;
  left: 60px;
  width: 100px;
  height: 1px;
  content: "";
  background-color: #000;
}

.breadcrumb p {
  font-size: 1.6rem;
  line-height: 2;
  color: #000;
  letter-spacing: 1px;
}

.btn-red1 {
  transition: 0.3s ease;
}

.btn-red1:hover {
  opacity: 0.7;
}

.btn-red-wrap {
  display: flex;
  gap: 20px;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.75;
  text-align: center;
  letter-spacing: 0.14em;
  background-color: transparent;
}

.btn-red-wrap.pc-only > .btn-arrow {
  margin: 0 auto;
}

.btn-red-wrap .btn-arrow {
  position: unset;
  display: block;
  width: 51px;
  margin-top: 12px;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media only screen and (width <= 1024px) {
  .section7 .circle-wrap {
    max-width: 150px;
  }

  .section7 .circle-wrap .circle-text {
    max-width: 80px;
  }

  .section7 .entry-container {
    top: -6rem;
  }

  .section7 .entry-title h2 {
    font-size: 10rem;
  }

  .section7 .entry-title p {
    font-size: 3rem;
  }
}

@media only screen and (width <= 990px) {
  .content-title {
    font-size: 6vh;
  }

  .container-1000 {
    padding: 0 20px;
  }

  .section3 .side-title {
    font-size: 4.9rem;
  }

  .section7 .circle-wrap {
    max-width: 120px;
  }

  .section7 .circle-wrap .circle-text {
    max-width: 60px;
  }

  .section6 .white-box {
    width: calc(100% - 40px);
  }

  .section-sticky h2 {
    font-size: 3rem;
  }

  .section-sticky .msg-text,
  .section-sticky .msg-text-underline,
  .section-sticky .msg-text-right {
    font-size: 1.5rem;
  }

  .section-sticky .msg-text-right span {
    font-size: 2rem;
  }

  .sec-heading .heading-title {
    font-size: 4rem;
  }
}

@media only screen and (width <= 900px) {
  .section6 .flex-box2 {
    flex-direction: column;
  }

  .section6 .flex-box2 .left-box img {
    margin-top: 0;
  }
}

@media only screen and (width <= 760px) {
  section h2 {
    font-size: 1.8rem;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .sec-heading .heading-title {
    font-size: 3.5rem;
  }

  .section-sticky h2 {
    margin-bottom: 10px;
    font-size: 4.6rem;
  }

  .section2 .btn-cta {
    margin-top: 25px;
  }

  .section-sticky .msg-text {
    font-size: 2rem;
  }

  .section-sticky .msg-text-underline {
    font-size: 1.6rem;
  }

  .section-sticky .msg-text-right {
    font-size: 2rem;
  }

  .section-sticky .msg-text-right span {
    font-size: 2.4rem;
  }

  .section6 .interview {
    max-width: unset;
  }

  .section7 .entry-container {
    top: -5rem;
  }

  .section7 .entry-title img {
    height: 66px;
  }

  .section7 .entry-title h2 {
    margin-bottom: 5px;
    font-size: 8rem;
  }

  .section7 .entry-title p {
    font-size: 2.2rem;
  }

  .section7 .entry-text {
    font-size: 1.5rem;
  }

  .section5 .inner-container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }

  .section6 .white-box {
    height: 300px;
  }

  .section3 .side-title {
    bottom: -3rem;
    left: 15px;
    font-size: 2.8rem;
  }

  .side-interview,
  .side-culture {
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 100%;
  }

  .flex-box .left-box .side-interview,
  .flex-box .left-box .side-culture {
    margin-top: 0;
  }

  .left-box-title {
    position: relative;
    padding-left: 10px;
    margin-left: 10px;
    font-size: 1.6rem;
  }

  .side-interview.right-box-title .side-culture .right-box-title {
    padding: 0;
    margin: 0;
    border: 0;
  }

  .left-box-title p {
    padding: 2px 0;
  }

  .job-title {
    font-size: 1.8rem;
  }

  .section6 .left-box-title::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 50%;
    content: "";
    background-color: #000;
  }

  .flex-box .left-box {
    max-width: 60%;
    margin-top: 0;
    margin-right: auto;
    margin-left: 0;
    margin-left: auto;
  }

  .section7 .circle-wrap {
    top: -180px;
  }

  .section6 .flex-box2 .left-box img {
    max-width: 60%;
    margin-right: auto;
    margin-left: 0;
    margin-left: auto;
  }

  .flex-box {
    flex-direction: column;
  }

  .section4 {
    padding-top: 50px;
  }

  .flex-box .right-box {
    width: 100%;
    max-width: 100%;
    padding-top: 0;
  }

  .about-textsp {
    max-width: 60%;
    margin-right: auto;
    margin-left: auto;
  }

  .about-page h2,
  .section7 .entry-text,
  .section7 .entry-title {
    text-align: left;
  }

  .history-timeline .timeline4 {
    padding: 10px 20px;
  }

  .section6 .swiper,
  .section6 .flex-box2 .right-box img {
    max-width: 450px;
  }
}

@media only screen and (width <= 590px) {
  .content-title {
    font-size: 6vh;
  }

  .content-title-eng {
    font-size: 9vh;
  }

  .logo {
    min-width: unset;
    max-width: 240px;
  }

  .section5 .inner-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .parallax {
    height: 200px;
    background-attachment: unset;
  }

  .section7 .circle-wrap {
    top: -200px;
  }

  .section7 {
    padding-bottom: 60px;
  }

  .job-content {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .front-page .job-content {
    width: 90%;
    margin: 0 auto;
  }

  .sec-heading {
    margin-bottom: 10px;
  }

  .section6 .flex-box2 {
    padding: 0 20px;
  }

  .section6 .swiper,
  .section6 .flex-box2 .right-box img {
    max-width: 350px;
  }

  .section6 .flex-box2 .right-box p {
    font-size: 1.4rem;
  }

  .section6 .flex-box2 .right-box span {
    line-height: 2;
  }
}

@media only screen and (width <= 360px) {
  .section6 .swiper,
  .section6 .flex-box2 .right-box img {
    max-width: 300px;
  }

  .section6 .swiper-pagination {
    padding-right: 8px;
  }
}

/* ===========
  JOB page
  =========== */
.job-page .pg-top {
  margin-bottom: 45px;
}

.job-page p {
  color: #000;
}

.job-page .para {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 2px;
}

.job-page .sec-job-1 .para {
  padding-right: 50px;
}

.job-page .sec-job-2 {
  margin-bottom: 200px;
}

.job-page .job-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.job-page .job-content .job-box {
  max-width: 490px;
}

.job-page .job-content .link-job {
  transition: 0.3s ease;
}

.job-page .job-content .link-job:hover {
  opacity: 0.7;
}

.job-content01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.job-item {
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
  background-color: #fff;
  border-radius: 10px;
}

.job-item__box {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.job-item__leftarea {
  flex-shrink: 0;
  width: 100px;
}

.job-item__leftarea .title {
  margin: 0 auto 15px;
  font-size: 2.5rem;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: calc(40 / 25);
  color: #000;
  text-align: left;
  letter-spacing: 0.13em;
  writing-mode: vertical-lr;
}

.job-item__leftarea .sub {
  font-size: 1.5rem;
  font-weight: 700;
  font-feature-settings: "palt";
  text-align: center;
  letter-spacing: 0.13em;
}

.job-item__leftarea .imgarea {
  width: 57px;
  margin: 20px auto 0;
}

/* .job-item__leftarea .imgarea.imgarea-ntnchild02 {
  width: 82px;
}
.job-item__leftarea .imgarea.imgarea-ntnchild03 {
  width: 42px;
}
.job-item__leftarea .imgarea.imgarea-ntnchild04 {
  width: 51px;
}
.job-item__leftarea .imgarea.imgarea-ntnchild05 {
  width: 41px;
}
.job-item__leftarea .imgarea.imgarea-ntnchild06 {
  width: 62px;
} */

.job-item__leftarea .imgarea img {
  width: 100%;
  height: 70px;
  object-fit: contain;
}

.job-item__rightarea {
  width: calc(100% - 125px);
}

.job-item__rightarea .title {
  margin-bottom: 0;
  font-size: 1.8rem;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: calc(27 / 18);
  color: #000;
  text-align: left;
}

.job-item__rightarea .desc {
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 400;
  font-feature-settings: "palt";
  line-height: calc(27 / 14);
}

.c-btnviewmore01 {
  width: max-content;
}

.c-btnviewmore01__link {
  display: flex;
  gap: 20px;
  width: 100%;
  height: 100%;
  font-size: 1.7rem;
  font-weight: 700;
  color: #df0045;
  text-decoration: none;
  transition: 0.5s all ease-in-out;
}

.c-btnviewmore01__link .arrow {
  width: 18px;
}

.c-btnviewmore01__link:hover {
  opacity: 0.7;
}

.job-item .c-btnviewmore01 {
  margin: auto auto 0;
}

.pg-job-interview {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 80px;
  margin-top: 70px;
  font-weight: bold;
  color: #000;
  text-align: center;
  background: linear-gradient(
    90deg,
    #afd6ff 0.02%,
    #a2dde6 41.2%,
    #8deabb 99.98%
  );
  border-radius: 8px;
}

.pg-job-interview h2 {
  padding: 0 5px;
  margin-bottom: 20px;
  font-size: 2.4rem;
  line-height: calc(42 / 24);
  letter-spacing: 0.08em;
}

.pg-job-interview p {
  font-size: 2.5rem;
  line-height: calc(35.6 / 24.92);
  letter-spacing: 0.08em;
}

.pg-job-interview .pg-job-interview__list {
  display: flex;
  margin: 20px 0;
}

.pg-job-interview .pg-job-interview__item {
  padding: 0 20px;
  font-size: 3.9rem;
  line-height: calc(76.34 / 38.6);
  background-color: #fff;
  border: 5px solid #000;
}

.pg-job-interview .pg-job-interview__item:not(:last-child) {
  border-right: 0;
}

.pg-job-interview .btn-cta {
  width: 100%;
  max-width: 250px;
  height: 43px;
  color: #fff;
  background-color: #000;
}

.pg-job-interview .btn-cta .btn-arrow {
  top: calc(50% - 19px);
}

.job-page .main-visual {
  width: 100%;
  aspect-ratio: 1000 / 466;
  object-fit: cover;
}

.job-wrap {
  margin-bottom: 200px;
}

.job-wrap .job-head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.job-wrap .job-name {
  margin-bottom: 0;
  font-size: 4.2rem;
  font-weight: bold;
  writing-mode: vertical-rl;
}

.job-wrap .job-business {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.6rem;
}

.job-wrap .job-icon {
  width: 100px;
  margin-top: 25px;
}

.job-wrap .job-icon img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.job-wrap .job-details {
  max-width: 760px;
  margin: 50px auto 0;
}

.job-details h2 {
  margin: 50px 0;
  font-size: 3.3rem;
  font-weight: bold;
  color: #000;
  text-align: center;
}

.job-details p {
  margin-top: 30px;
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (width <= 768px) {
  .job-content01 {
    grid-template-columns: 1fr;
  }

  .job-item {
    padding: 30px 20px;
  }

  .job-item__leftarea .imgarea.imgarea-ntnchild02 {
    width: 100%;
  }

  .job-item__leftarea {
    width: 70px;
  }

  .job-item__rightarea {
    width: calc(100% - 95px);
  }

  .pg-job-interview h2 {
    font-size: 1.5rem;
  }

  .pg-job-interview p {
    font-size: 1.6rem;
  }

  .pg-job-interview .pg-job-interview__item {
    padding: 0 5px;
    font-size: 2.2rem;
  }

  .job-wrap .job-name {
    font-size: 3rem;
  }

  .job-wrap .job-business {
    font-size: 2rem;
  }

  .job-details h2 {
    font-size: 2rem;
  }
}

@media screen and (width <= 560px) {
  .pg-job-interview .pg-job-interview__item {
    font-size: 1.8rem;
  }
}

/* ===========
  CULTURE page
  =========== */
.culture-page .breadcrumb .b-name::after {
  left: 80px;
}

.culture-page .left-box-title {
  color: #000;
}

.culture-page .culture-svg {
  padding: 40px;
}

.text-carry-top {
  position: relative;
}

.f-main-text {
  position: absolute;
  top: -30px;
  right: 30px;
  display: flex;
  flex-direction: row-reverse;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-end;
}

.f-main-text img {
  width: 55px;
}

.block-heading {
  margin-top: 70px;
  margin-bottom: 50px;
}

.block-heading p {
  margin-bottom: 30px;
}

.feature-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
  margin-bottom: 50px;
}

.feature-content .feature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: calc(100% / 3 - 30px * 2 / 3);
  max-width: 100%;
  padding: 30px 20px;
  color: #000;
  text-align: center;
  background: #fff;
  border-radius: 18px;
}

.feature-content .feature-box .feature-box__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
}

.feature-content .feature-box .feature-box__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-content .feature-box .feature-box__title {
  margin-top: 10px;
  font-size: 1.8rem;
  font-weight: bold;
}

.feature-content .feature-box .feature-box__txt {
  margin-top: 10px;
  text-align: left;
}

.pc-only2 {
  display: block;
}

.sp-only2 {
  display: none;
}

@media only screen and (width <= 1024px) {
  .feature-content {
    gap: 20px;
  }

  .feature-content .feature-box {
    width: calc(100% / 3 - 20px * 2 / 3);
    padding: 20px;
  }
}

@media only screen and (width <= 970px) {
  .pc-only2 {
    display: none;
  }

  .sp-only2 {
    display: block;
  }
}

@media only screen and (width <= 767px) {
  .feature-content {
    gap: 20px;
  }

  .feature-content .feature-box {
    width: 100%;
    min-height: 203px;
  }

  .culture-page .left-box-title p {
    font-size: 1.8rem;
  }

  .f-main-text {
    right: 10px;
  }

  .culture-page .culture-svg {
    padding: 20px;
  }

  .culture-svg h3 {
    margin-bottom: 20px;
    font-size: 2rem;
    text-align: left;
  }
}

.section-2-culture {
  margin-bottom: 100px;
}

.section-3-culture {
  margin-bottom: 200px;
}

/* ===========
  Message page
  =========== */
.message-page .breadcrumb .b-name::after {
  left: 80px;
}

.title {
  color: #000;
}

.vertical-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  writing-mode: vertical-rl;
}

.vertical-text h1 {
  font-size: 2.4rem;
  line-height: 2.67;
}

.break-text1 {
  margin-top: -10px;
}

.chamkila {
  display: inline-block;
  background: linear-gradient(
    to bottom,
    #28164f 20%,
    #00affa 30%,
    #0190cd 70%,
    #c53edc 80%
  );
  background: -webkit-gradient(
    linear,
    0% 0%,
    0% 100%,
    color-stop(0.2, #28164f),
    color-stop(0.3, #00affa),
    color-stop(0.7, #0190cd),
    color-stop(0.8, #c53edc)
  );
  background-clip: text;
  background-size: 100% 500%;
  animation: textShine 5s ease-in-out infinite alternate;
  -webkit-text-fill-color: transparent;
}

@keyframes textShine {
  0% {
    background-position: 50% 0%;
  }

  100% {
    background-position: 50% 100%;
  }
}

.sec-message-1 {
  margin-bottom: 200px;
}

.message-content {
  max-width: 760px;
  margin-top: 60px;
  margin-right: auto;
  margin-left: auto;
}

.message-page .para {
  font-size: 1.6rem;
  line-height: 2;
  color: #000;
  letter-spacing: 1px;
}

.signature {
  font-size: 14px;
  color: #000;
  text-align: right;
}

.signature span {
  font-size: 18px;
  letter-spacing: 3px;
}

@media only screen and (width <= 768px) {
  .vertical-text h1 {
    font-size: 2rem;
  }
}

/* ===========
    entry page
  =========== */
.entry-page .entry-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 80px;
  color: #000;
}

.entry-page .entry-content .left-area {
  flex-shrink: 0;
  width: 100%;
  max-width: 100px;
}

.entry-page .entry-content .left-area img {
  max-width: 45px;
}

[data-tab-content] {
  display: none;
}

.entry-page .side-culture .right-box-title {
  margin-top: 0;
  font-size: 2.4rem;
  line-height: calc(47.32 / 24);
  letter-spacing: 0.07em;
}

.entry-page .entry-content .right-area {
  padding: 20px 40px;
  background-color: #fff;
  border-radius: 10px;
}

.entry-page .sec-entry-1 .job-content-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #666;
}

.entry-page .sec-entry-1 .job-content-item h2,
.entry-page .sec-entry-1 .job-content-item p {
  font-size: 1.4rem;
  font-feature-settings: "palt" 1;
  line-height: calc(23.09 / 14);
  letter-spacing: 0.14em;
}

.entry-page .sec-entry-1 .job-content-item h2 {
  width: 140px;
  margin-bottom: 0;
  text-align: left;
}

.entry-page .sec-entry-1 .job-content-item p:first-child {
  margin-top: 0;
}

.entry-page .sec-entry-1 .job-content-item .job-details {
  width: calc(100% - 160px);
}

.entry-page .job-details__flex {
  display: flex;
}

p.m0 {
  margin: 0;
}

.entry-page .job-details__flex p {
  margin-top: 0;
}

.entry-page .job-details__flex span:first-child {
  flex-shrink: 0;
}

.active[data-tab-content] {
  display: block;
}

.tabs {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 10px;
  margin: 0 0 80px;
  list-style-type: none;
  border-bottom: 1px solid black;
}

.tab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 125px;
  padding: 10px;
  font-size: 24px;
  font-weight: 600;
  color: #4d4d4d;
  cursor: pointer;
  border-right: 1px solid #4d4d4d;
}

.tab:last-child {
  border-right: none;
}

.tab.active {
  color: #000;
}

.tab:hover {
  color: #000;
}

.tab-content {
  margin-right: 20px;
  margin-left: 20px;
}

.entry-page .tab-content .job-wrap {
  margin-bottom: 0;
}

.entry-page .tab-content .job-wrap .job-details p {
  text-align: left;
}

.right-tab-area {
  width: 100%;
  padding: 30px 30px 70px;
  margin-bottom: 200px;
  background-color: #fff;
  border-radius: 10px;
}

@media only screen and (width <= 768px) {
  .entry-page .entry-content {
    flex-direction: column;
  }

  .entry-page .entry-content .left-area {
    display: flex;
    align-self: center;
    justify-content: center;
    margin-bottom: 50px;
  }

  .right-tab-area {
    padding: 20px 20px 50px;
  }

  .tabs {
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 60px;
  }

  .tab {
    padding-right: 0;
    padding-left: 0;
    font-size: 15px;
  }

  .tab-content {
    margin: 0;
  }

  .entry-page .sec-entry-1 .job-content-item {
    gap: 10px;
  }

  .entry-page .sec-entry-1 .job-content-item .job-details {
    width: 70%;
  }

  .entry-page .sec-entry-1 .job-content-item h2 {
    width: 30%;
  }
}

/* ===========
    about page
  =========== */
.about-wrap {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about-page h2 {
  font-size: 3.3rem;
}

.about-page p {
  font-size: 1.6rem;
  line-height: 2;
  color: #000;
  letter-spacing: 1px;
}

.about-page .heading-name {
  text-decoration: none;
}

.about-page .heading-name > p {
  position: relative;
  font-size: 2.4rem;
}

.about-page .heading-name > p::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 25px;
  height: 1px;
  content: "";
  background-color: #000;
  transform: translateX(-50%);
}

.about-page .left-box-title p {
  height: fit-content;
  font-size: 2.4rem;
  line-height: 1.96;
}

.nav-about {
  position: sticky;
  top: 120px;
  z-index: 999;
  flex-shrink: 0;
  width: 100%;
  max-width: 230px;
  padding: 10px 0 200px;
  margin-top: 50px;
  font-weight: bold;
}

.nav-about ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  list-style: none;
  background-color: white;
  border-radius: 10px;
}

.nav-about a {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
  max-width: 230px;
  height: 74px;
  padding: 20px 20px 20px 25px;
  font-size: 14px;
  color: black;
  text-decoration: none;
}

.nav-about li {
  border-bottom: 1px dotted #b3b3b3;
}

.nav-about li:last-child {
  border-bottom: 0;
}

.nav-about a.active::before {
  position: absolute;
  left: 0;
  width: 20px;
  height: 3px;
  content: "";
  background-color: #000;
}

.history-timeline {
  margin-top: 80px;
  margin-bottom: 50px;
}

.history-timeline .timeline {
  display: flex;
  margin-bottom: 30px;
  color: #000;
}

.history-timeline .timeline-year {
  position: relative;
  width: 90px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.85;
}

.history-timeline .timeline-year::after {
  position: absolute;
  bottom: 0;
  left: 40%;
  width: 1px;
  height: calc(100% - 43px);
  content: "";
  background-color: #000;
}

.history-timeline .timeline-year span {
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 2.39;
  letter-spacing: 0.14em;
}

.history-timeline .timeline-wrap {
  width: calc(100% - 90px);
}

.history-timeline .timeline-wrap h3 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.26;
}

.history-timeline .timeline-flex {
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 20px;
  margin-top: 5px;
  border: 1px dotted #000;
  border-radius: 5px;
}

.history-timeline .timeline-flex .timeline-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 53px;
  min-width: 45px;
  height: 46px;
  margin-right: 20px;
}

.history-timeline .timeline4 {
  margin-bottom: 30px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 5px;
}

.reveal-content {
  margin-bottom: 100px;
}

.reveal-content .reveal-content-top {
  display: flex;
  padding-bottom: 20px;
  border-bottom: 1px dotted #000;
}

.reveal-content .reveal-content-item {
  width: calc(100% / 3);
  padding: 10px 20px 10px 30px;
  font-feature-settings: "palt";
}

.reveal-content .reveal-content-item:first-child {
  padding-left: 0;
}

.reveal-content .reveal-content-item:last-child {
  padding-right: 0;
}

.reveal-content .reveal-philosophy h3 {
  margin: 10px 0 5px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
  letter-spacing: -0.005em;
}

.reveal-content .reveal-philosophy p {
  font-size: 1.4rem;
  line-height: 1.75;
  letter-spacing: 0.13em;
}

.reveal-content .timeline-flex p {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.13em;
}

.reveal-content .reveal-content-flex {
  display: flex;
  margin-top: 20px;
}

.reveal-content .reveal-content-item:not(:first-child) {
  border-left: 1px dotted #000;
}

.reveal-content .reveal-content-top .reveal-content-img {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.reveal-content .reveal-content-flex .reveal-content-img img {
  max-width: 100px;
  height: 31px;
}

.reveal-content .reveal-content-img {
  padding-left: 5px;
}

.reveal-content-wrap {
  padding: 40px 50px;
  margin-top: 30px;
  font-feature-settings: "palt" 1;
  background-color: #fff;
  border-radius: 10px;
}

#feature .reveal-feature {
  margin-top: 80px;
}

#feature .reveal-feature h3 {
  width: 16.6%;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #df0045;
  letter-spacing: 0.08em;
}

#feature .reveal-feature .reveal-feature-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.75;
  text-align: center;
}

#feature .reveal-feature .reveal-feature-item {
  display: flex;
  width: 100%;
}

#feature .reveal-feature .reveal-feature-item1 {
  width: 25%;
}

#feature .reveal-feature .reveal-feature-item1 span {
  display: block;
  padding: 20px 10px 10px;
  background-color: #df0045;
  clip-path: polygon(50% 0%, 100% 50%, 100% 100%, 0 100%, 0 50%);
}

#feature .reveal-feature .reveal-feature-item1 p {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 93px;
  padding: 10px;
  font-size: 1rem;
  font-weight: bold;
  font-feature-settings: "palt";
  line-height: 1.75;
  background-color: #fff;
}

#feature .reveal-feature .reveal-feature-item > * {
  padding: 20px;
}

#feature .reveal-feature .reveal-feature-item span {
  display: block;
  width: 18%;
  background-color: #df0045;
}

#feature .reveal-feature .reveal-feature-wrap:first-child .reveal-feature-item {
  width: 50%;
}

#feature
  .reveal-feature
  .reveal-feature-wrap:first-child
  .reveal-feature-item
  span {
  width: 34%;
  padding: 20px 10px;
}

#feature
  .reveal-feature
  .reveal-feature-wrap:first-child
  .reveal-feature-item
  p {
  width: 66%;
}

#feature .reveal-feature .reveal-feature-item p {
  width: 100%;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.75;
  text-align: left;
  background-color: #fff;
}

#feature .reveal-feature .reveal-feature-left {
  display: flex;
  gap: 13px;
  width: 83.4%;
}

.reveal-content .reveal-feature-oic {
  font-size: 4.2rem;
  font-weight: bold;
  line-height: 1.32;
  color: #000;
  letter-spacing: 0.05em;
}

.reveal-content .reveal-feature-oic span:first-child {
  font-size: 5.8rem;
  line-height: 1.29;
}

.reveal-content .reveal-feature-oic .reveal-feature-vertical {
  writing-mode: vertical-rl;
}

.mb30 {
  margin-bottom: 30px;
}

.column-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.column-content .box-content {
  width: 100%;
  padding: 20px;
  background-color: #fff;
  border-radius: 13px;
}

.column-content .box-content-title {
  position: relative;
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: calc(55.77 / 18);
  letter-spacing: 0.05em;
}

.column-content .box-content-title::after {
  position: absolute;
  bottom: 5px;
  left: calc(50% - 10px);
  width: 25px;
  height: 1px;
  content: "";
  background-color: #000;
}

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

.reveal-content-wrap .globe {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.data-content {
  margin-bottom: 200px;
}

.chart-wrap {
  padding: 20px;
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 20px;
}

.chart-number_wrap .circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  color: white;
  text-align: center;
  background-color: #df0045;
  border-radius: 50%;
}

.chart-number_wrap .circle-number {
  margin-bottom: 5px;
  font-size: 3rem;
  font-weight: 600;
  border-bottom: 1px solid #fff;
}

.chart-number_wrap .circle-number .age {
  font-size: 20px;
  font-weight: 600;
}

.chart-number_wrap .circle-text {
  font-size: 1rem;
  font-weight: 600;
}

.chart-number_wrap .circle-text-span {
  font-size: 1.4rem;
  font-weight: bold;
}

.chart-number_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
}

.chart-number_wrap .chart-left-side,
.chart-number_wrap .chart-right-side {
  width: 100%;
  max-width: 360px;
  min-height: 300px;
}

.chart-white {
  padding: 20px;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 10px;
}

.chart-number_wrap .para-big {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

.circle-area {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.chart-number_wrap .mini-text {
  margin-top: 15px;
  font-size: 1rem;
  line-height: 15px;
  text-align: center;
}

.chart-number_wrap .para-medium {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}

.chart-number_wrap .chart-price {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.chart-number_wrap .chart-price .chart-price-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 30px;
  border-right: 1px dotted #ccc;
}

.chart-number_wrap .chart-price .chart-price-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 30px;
}

.chart-number_wrap .chart-price .price-red {
  font-size: 2rem;
  font-weight: 600;
  color: #df0045;
}

.chart-number_wrap .chart-price .price-red-span {
  font-size: 1.4rem;
}

.chart-number_wrap .chart-red-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 25px;
  text-align: center;
  background-color: #df0045;
}

.chart-number_wrap .chart-red-bg .para-medium {
  color: #fff;
}

.grap {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.circle-index {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
}

.circle-index .title {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  font-size: 1.6rem;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 1.25;
  color: #fff;
  letter-spacing: 0.19em;
  transform: translate(-50%, -50%);
}

.circle-index .imgarea {
  width: 100%;
  height: 100%;
}

.circle-index .imgarea img {
  width: 100%;
  animation: textRotation 20s linear infinite;
}

.gap-title,
.grap h2 {
  margin-bottom: 0;
  font-size: 2.7rem;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: calc(39 / 27);
  color: #000;
  text-align: left;
  letter-spacing: 0.08em;
}

.graph {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.graph-item {
  position: relative;
  min-width: 155px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
}

.graph-item .title {
  padding-bottom: 10px;
  font-size: 1.9rem;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: calc(25 / 19);
  color: #be0045;
  text-align: center;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #be0045;
}

.graph-item .desc {
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 400;
  font-feature-settings: "palt";
  line-height: calc(21 / 14);
  color: #be0045;
  text-align: center;
  letter-spacing: 0;
}

.graph-item::after {
  position: absolute;
  top: 50%;
  right: -13px;
  width: 9px;
  height: 12px;
  content: "";
  background-color: #be0045;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  transform: translateY(-50%);
}

.graph-item:last-child::after {
  display: none;
}

.graph-item:last-child {
  flex: 1;
}

.notesbox {
  margin-top: 40px;
  border: 1px dotted #000;
  border-radius: 10px;
}

.notesbox-wrapper {
  padding: 30px;
}

.notesbox .notesbox-desc {
  margin-top: 15px;
  font-size: 1.4rem;
  font-weight: 400;
  font-feature-settings: "palt";
  line-height: calc(20 / 14);
  color: #000;
  letter-spacing: 0.14em;
}

.notesbox-heading {
  display: flex;
  gap: 15px;
  align-items: center;
}

.notesbox-heading .imgarea {
  flex-shrink: 0;
  width: 33px;
}

.notesbox-heading .imgarea img {
  width: 100%;
}

.notesbox-heading .contentarea .question {
  font-size: 1.6rem;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: calc(36 / 16);
  color: #000;
}

.notesbox-heading .contentarea .title {
  margin-bottom: 0;
  font-size: 1.8rem;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: calc(26 / 18);
  color: #000;
  text-align: left;
}

@media screen and (width <= 1024px) {
  .graph {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .left-box-title p,
  .about-page .left-box-title p {
    font-size: 2.2rem;
  }

  .graph-item::after {
    right: -10px;
  }

  .column-content {
    justify-content: center;
  }
}

@media screen and (width <= 768px) {
  .reveal-content-wrap {
    padding: 20px;
  }

  .reveal-content .reveal-content-img {
    padding: 0;
  }

  .about-page .heading-name > p {
    margin-bottom: 25px;
    font-size: 2rem;
  }

  .about-page h2 {
    font-size: 2.6rem;
  }

  .history-timeline .timeline-flex {
    flex-direction: column;
    align-items: start;
  }

  .history-timeline .timeline-flex .timeline-img {
    width: 45px;
    margin-right: 15px;
  }

  .nav-about {
    max-width: 250px;
  }

  .reveal-content .reveal-feature-oic {
    font-size: 2.6rem;
  }

  .reveal-content .reveal-feature-oic span:first-child {
    font-size: 3rem;
  }

  #feature .reveal-feature .reveal-feature-item span {
    width: 30%;
  }

  #feature .reveal-feature .reveal-feature-item1 span {
    padding-top: 10px;
  }

  #feature .reveal-feature .reveal-feature-wrap,
  #feature .reveal-feature .reveal-feature-left {
    flex-direction: column;
  }

  #feature .reveal-feature h3 {
    margin-bottom: 10px;
  }

  #feature
    .reveal-feature
    .reveal-feature-wrap:first-child
    .reveal-feature-item,
  #feature .reveal-feature .reveal-feature-item1,
  #feature .reveal-feature h3,
  #feature .reveal-feature .reveal-feature-left {
    width: 100%;
  }

  .history-timeline .timeline4 {
    font-size: 1.8rem;
  }

  .reveal-content .reveal-content-top {
    flex-direction: column;
  }

  .reveal-content .reveal-content-flex {
    flex-direction: column;
    margin-top: 0;
  }

  .reveal-content .reveal-content-item {
    width: 100%;
    padding: 20px 0;
  }

  .reveal-content .reveal-content-item:not(:first-child) {
    border: 0;
  }

  .reveal-content .reveal-content-item:not(:last-child) {
    border-bottom: 1px dotted #000;
  }

  .circle-index {
    width: 65px;
    height: 65px;
  }

  .circle-index .title {
    font-size: 1.2rem;
  }

  .gap-title {
    font-size: 20px;
  }

  .graph {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .graph-item::after {
    top: unset;
    right: unset;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .notesbox-wrapper {
    padding: 15px;
  }

  .chart-number_wrap .circle {
    width: 90px;
    height: 90px;
  }

  .chart-number_wrap .circle-number {
    font-size: 1.5rem;
  }

  .chart-number_wrap .circle-number .age {
    font-size: 1.2rem;
  }
}

@media only screen and (width <= 768px) {
  .about-wrap {
    flex-direction: column;
  }

  .nav-about {
    display: none;
  }

  .history-timeline .timeline3 {
    max-width: 300px;
  }

  .f-main-text img {
    width: 30px;
  }

  .left-box-title p,
  .about-page .left-box-title p {
    font-size: 1.6rem;
  }

  #feature .reveal-feature .reveal-feature-item1 p {
    font-size: 1.8rem;
  }

  #feature .reveal-feature .reveal-feature-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
  }

  #feature .reveal-feature .reveal-feature-wrap {
    margin-bottom: 30px;
  }

  .chart-number_wrap .mini-text {
    text-align: left;
  }

  .grap {
    margin-top: 50px;
  }

  .notesbox-heading {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .entry-page .entry-content .right-area {
    padding: 20px;
  }

  .job-wrap .job-business {
    margin-top: 5px;
  }

  .job-wrap .job-name {
    margin-bottom: 0;
  }

  .job-content {
    padding: 30px 40px;
  }

  .job-details h2 {
    text-align: left;
  }

  .signature {
    margin-top: 30px;
  }

  .chart-number_wrap .chart-left-side,
  .chart-number_wrap .chart-right-side {
    min-height: auto;
  }

  .about-page h2 {
    font-size: 2rem;
  }

  .culture-page .left-box-title p {
    font-size: 1.5rem;
  }

  .f-main-text {
    top: -15px;
  }

  .sec-heading .heading-title {
    margin-bottom: 30px;
  }

  .job-title {
    text-align: left;
  }

  .tab {
    padding-top: 0;
    padding-bottom: 0;
  }

  .entry-page .job-content {
    padding: 0;
  }

  .section5 {
    margin-bottom: 70px;
  }
}

@media only screen and (width <= 370px) {
  .job-content {
    padding: 20px 35px;
  }
}

/* ===========
  single page
  =========== */

.single-text-img {
  max-width: 760px;
}

.pg-top .main-visual {
  border-radius: 8px;
}

/* ===========
  INTERVIEW page
  =========== */
.interview-page .breadcrumb .b-name::after {
  left: 100px;
}

.interview-page .right-box-title,
.interview-page .left-box-title {
  color: #000;
}

.interview-page .section-2-interview {
  margin: 50px 0 100px;
}

.interview-page .section-2-interview .container-1000 {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
  padding: 45px 30px;
  background-color: #fff;
  border-radius: 10px;
}

.swiper-interview .right-box-title p,
.interview-page .right-box-title p {
  height: fit-content;
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.97;
  letter-spacing: 0.07em;
  background-color: #fff;
}

.right-box-title p:not(:first-child) {
  margin-right: 10px;
}

.swiper-interview .item,
.interview-page .item {
  display: block;
}

.swiper-interview .thumb-wrap,
.interview-page .thumb-wrap {
  position: relative;
}

.swiper-interview .thumb-wrap .thumb-side {
  position: absolute;
  top: 0;
  left: 10px;
  display: flex;
  flex-direction: row-reverse;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-end;
  transition: all 0.3s;
}

.interview-page .thumb-wrap .thumb-side {
  position: absolute;
  top: -30px;
  left: 10px;
  display: flex;
  flex-direction: row-reverse;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-end;
}

.interview-page .i-thumb {
  border-radius: 5px;
}

.interview-page .interview-rounded {
  border-bottom-right-radius: 5px;
}

.swiper-interview .name-starter,
.interview-page .name-starter {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  text-align: right;
}

.swiper-interview .side-interview .right-box-title,
.interview-page .side-interview .right-box-title {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}

.swiper-interview {
  position: relative;
}

.swiper-interview .interview-p,
.interview-page .interview-p {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.swiper-interview .interview-p span,
.interview-page .interview-p span {
  display: inline-block;
  padding: 5px;
  font-size: 18px;
  color: #fff;
  text-align: right;
  background-color: #000;
}

.swiper-interview .interview-p__inner,
.interview-page .interview-p__inner {
  display: flex;
  justify-content: flex-end;
}

.swiper-interview .up-10,
.interview-page .up-10 {
  bottom: 5px;
}

.swiper-interview .interview-p2,
.interview-page .interview-p2 {
  position: relative;
  margin: 30px 0 0;
}

.interview-page .section-2-interview .bg-transparent {
  background-color: transparent;
}

.interview-sub .section-2-interview .f-main-text {
  position: relative;
  left: 20px;
  margin-top: -30rem;
}

.interview-sub .interview-heading .heading-line {
  display: block;
  height: fit-content;
  padding: 10px 0;
  margin: 5px;
  font-size: 2.4rem;
  line-height: 1.97;
  letter-spacing: 0.07em;
  background-color: #fff;
}

.interview-sub {
  color: #000;
}

.interview-sub .int-sec-title {
  margin-bottom: 50px;
  font-size: 20px;
  font-weight: 600;
}

.interview-sub section h2 {
  color: #000;
  text-align: unset;
}

.interview-sub .section-2-interview .container-1000 {
  display: block;
}

.interview-sub .section-2-interview .container-1000 .int-content-wrap {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
}

.interview-sub .section-2-interview .container-1000 .int-left {
  width: 100%;
  max-width: 250px;
}

.interview-sub .font-black {
  color: #000;
}

.interview-sub .para {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 1px;
}

.interview-sub .para-int {
  margin-bottom: 50px;
}

.interview-sub .mb40 {
  margin-bottom: 40px;
}

.interview-sub .int-right-content {
  margin-bottom: 90px;
}

.interview-page .right-box-title p:not(:first-child) {
  margin-right: 3px;
}

.interview-page .interview-p .mb0 {
  padding-bottom: 0;
}

.interview-page .interview-p .mt0 {
  padding-top: 3px;
}

.interview-sub .img-wrapper img {
  border-radius: 5px;
}

@media only screen and (width <= 900px) {
  .interview-page .interview-p span {
    font-size: 16px;
  }
}

@media only screen and (width <= 800px) {
  .interview-page .section-2-interview .container-1000 {
    grid-template-rows: 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 40px;
  }
}

@media only screen and (width <= 767px) {
  .interview-sub .section-2-interview .f-main-text {
    left: 0;
    margin-top: 0;
  }

  .interview-sub .section-2-interview .container-1000 .int-content-wrap {
    flex-direction: column;
    gap: 50px;
  }

  .interview-sub .section-2-interview .container-1000 .int-left {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: unset;
  }

  .interview-sub .left-box-title {
    padding-left: 0;
    margin-left: 0;
  }

  .interview-sub .int-right-content {
    margin-bottom: 50px;
  }

  .interview-sub .para-int,
  .interview-sub .int-sec-title {
    margin-bottom: 30px;
  }

  .interview-sub .interview-heading .heading-line {
    font-size: 22px;
  }

  .interview-sub .section-2-interview .container-1000 {
    padding-top: 0;
  }

  .interview-sub .side-interview {
    white-space: nowrap;
  }
}

@media only screen and (width <= 568px) {
  .interview-page .section-2-interview .container-1000 {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 50px;
  }

  .interview-page .section-2-interview {
    margin-top: 100px;
    margin-bottom: 150px;
  }

  .swiper-interview .interview-p span {
    font-size: 16px;
  }

  .section6 .flex-box2 .right-box span {
    line-height: 2;
  }
}

/* ===========
  Animation
  =========== */

.about-visual svg {
  overflow: visible;
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(2deg);
  }

  50% {
    transform: rotate(0deg);
  }

  75% {
    transform: rotate(-2deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes opacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.icon {
  transform-origin: center;
  animation: shake 10s infinite linear alternate;
}

.icon-rocket {
  animation: bounce 0.5s infinite;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }

  100% {
    transform: translateY(0);
  }
}

.icon-float {
  animation: float 5s infinite;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-8px, 8px);
  }

  50% {
    transform: translate(4px, 4px);
  }

  75% {
    transform: translate(8px, 8px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.goal-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.goal {
  max-width: 600px;
  margin: 0 auto;

  /* margin-top: -30px; */
}

.link-to-entry {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999999;
  display: block;
}

.banner-entry {
  width: 100%;
  max-width: 300px;
}

@media screen and (width <= 768px) {
  .banner-entry {
    max-width: 150px;
  }

  .link-to-entry {
    right: 5px;
    bottom: 5px;
  }
}

/* ===========
  INTERVIEW MOVIE
  =========== */
.interview-movie-page .breadcrumb .b-name::after {
  left: 160px;
}

.interview-movie-page .pg-title {
  padding-left: 30px;
  margin-top: -12%;
}

.interview-movie-page .pg-title h1 {
  margin-bottom: 10px;
  font-size: clamp(35px, 7vw, 70px);
  font-weight: bold;
  line-height: 1.2;
  color: #de0045;
  letter-spacing: 5px;
}

.interview-movie-page .pg-title .sub-title {
  font-size: 20px;
  font-weight: bold;
  color: #de0045;
}

.interview-movie-page .sec-interview-1 {
  margin-bottom: 150px;
}

.interview-movie-content {
  width: 100%;
  margin-bottom: 100px;
}

.interview-movie-content .container-1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.interview-movie-content .movie-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 30px;
}

.interview-movie-content .movie-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.interview-movie-content .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  margin-bottom: 20px;
  overflow: hidden;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 10%);
}

.interview-movie-content .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 330px;
  height: 100%;
  border: none;
  border-radius: 12px;
  transform: scale(1.001); /* Force GPU rendering */
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}

.interview-movie-content .tag {
  display: inline-block;
  width: fit-content;
  padding: 3px 10px;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 700;
  color: #000;
  background: #14ffcc;
  border-radius: 4px;
}

.interview-movie-content .movie-title {
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 700;
  line-height: 1.5;
  color: #000;
}

@media (width <= 968px) {
  .interview-movie-content .movie-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .interview-movie-content .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
}

@media (width <= 768px) {
  .interview-movie-content .movie-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .interview-movie-content .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  .interview-movie-page .pg-title {
    padding-left: 15px;
    margin-top: -15%;
  }
}

/* Mobile - 1 column */

/* @media (max-width: 480px) {
    .interview-movie-content .movie-list {
        grid-template-columns: 1fr;
        gap: 40px;
    }
} */

.interview-movie-banner {
  margin-bottom: 150px;
}

.interview-movie-banner .pg-job-interview {
  border-radius: 0;
}

.interview-btn-wrap {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.interview-btn-wrap .btn-wrapper {
  position: relative;
  display: inline-block;
}

.interview-btn {
  position: relative;
  z-index: 2; /* always above shadow */
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 400px;
  padding: 20px 25px;
  color: #000;
  text-decoration: none;
  background: #fff;
  border: 4px solid #000;
  border-radius: 30px;
  transition: transform 0.2s ease;
}

/* Shadow is now a sibling div, behind the button */
.gradient-shadow {
  position: absolute;
  top: 8px; /* vertical offset */
  left: 8px; /* horizontal offset */
  z-index: 1; /* below the button */
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ff99ab, #a38cff);
  border-radius: 30px;
  transition: all 0.2s ease;
}

/* Hover / Active animation */
.btn-wrapper:hover .interview-btn {
  transform: translate(4px, 4px);
}

.btn-wrapper:hover .gradient-shadow {
  top: 4px;
  left: 4px;
}

.btn-wrapper:active .interview-btn {
  transform: translate(8px, 8px);
}

.btn-wrapper:active .gradient-shadow {
  top: 0;
  left: 0;
}

.interview-btn .btn-left {
  display: flex;
  gap: 25px;
  align-items: center;
  text-align: left;
}

.interview-btn .icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.interview-btn .text-content h3 {
  margin: 0 0 5px;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 900;
  letter-spacing: 0.05em;
}

.interview-btn .text-content p {
  margin: 0;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 500;
}

.interview-btn .arrow {
  flex-shrink: 0;
  width: 30px;
  transition: transform 0.2s ease;
}

.interview-btn .arrow img {
  width: clamp(14px, 2vw, 30px);
}

.interview-btn:hover .arrow {
  transform: translateX(5px);
}

.pg-job-interview .interview-title {
  width: 100%;
  max-width: 250px;
}

.nav-item.dropdown {
  position: relative;
}

/* Arrow */
.dropdown-arrow {
  margin-left: 5px;
  font-size: 12px;
}

/* Default PC dropdown hidden */
.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  z-index: 999;
  display: none;
  min-width: 180px;
  padding: 10px 0;
  background: #fff;
  border: 3px solid #000;
  border-radius: 8px;
}

/* PC: show on hover */
@media (width >= 769px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Dropdown item styles */
.dropdown-menu li a {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
}

/* Icon */
.dd-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.video-thumb {
  position: relative;
  overflow: hidden;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 15%);
}

.video-thumb::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  pointer-events: none; /* click thumbnail normally */
  content: "";
  background-image: url("../img/_interview/play-btn.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.9;
  transform: translate(-50%, -50%);
  transition: 0.2s ease;
}

/* Optional: Hover effect */
.movie-item:hover .video-thumb::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-thumb img {
  display: block;
  width: 100%;
  cursor: pointer;
  border-radius: 6px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999009;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgb(0 0 0 / 80%);
}

.lightbox.active {
  display: flex;
  min-height: 800px;
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 900px;
}

.lightbox iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 6px;
}

.lightbox .close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

@media (width <= 768px) {
  .lightbox.active {
    display: flex;
    min-height: auto;
  }

  .front-page .dropdown-menu li a:hover {
    background-color: #de0045;
  }

  .dropdown-menu {
    position: static;
    display: block !important;
    padding: 5px 0 5px 75px;
    background: transparent;
    border: none;
    border-radius: 0;
  }

  .dropdown-menu li a {
    padding: 8px 0;
  }

  .dropdown-arrow {
    display: none;
  }

  .pg-job-interview .interview-title {
    max-width: 150px;
  }

  .pg-job-interview .pg-job-interview__item {
    border: 3px solid #000;
  }

  .interview-btn {
    gap: 20px;
    padding: 30px 35px;
  }

  .interview-btn .icon {
    width: 60px;
    height: 60px;
  }

  .interview-btn .btn-left {
    gap: 20px;
  }

  .interview-btn-wrap {
    flex-direction: column;
  }

  .interview-movie-page .sec-interview-1 {
    margin-bottom: 80px;
  }

  .interview-movie-content .movie-item {
    gap: 10px;
  }
}

@media (width <= 480px) {
  .interview-btn {
    gap: 15px;
    padding: 25px;
    box-shadow: 6px 6px 0 0 rgb(168 85 247 / 40%);
  }

  .interview-btn:hover {
    box-shadow: 3px 3px 0 0 rgb(168 85 247 / 40%);
    transform: translate(3px, 3px);
  }

  .interview-btn:active {
    box-shadow: 0 0 0 0 rgb(168 85 247 / 40%);
    transform: translate(6px, 6px);
  }

  .interview-btn .icon {
    width: 50px;
    height: 50px;
  }

  .interview-btn .btn-left {
    gap: 15px;
  }
}
