@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  font-family: "Cormorant Garamond", "Yu Mincho", "游明朝", "Hiragino Mincho Pro", serif;
  line-height: 1.6;
  color: #ffffff;
  background-image: url(../images/bg.jpg);
  background-color: rgba(0, 0, 0, 0.5);
  background-repeat: repeat;
}

.container {
  max-width: 95%;
  margin: 0 auto;
  padding: 15px 15px;
  background-color: rgba(66, 66, 66, 0.6);
  border-radius: 10px;
}

.section {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }
}
@media (min-width: 992px) {
  .section {
    padding: 100px 0;
  }
}

.section-sm {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .section-sm {
    padding: 50px 0;
  }
}

.section-lg {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .section-lg {
    padding: 100px 0;
  }
}
@media (min-width: 992px) {
  .section-lg {
    padding: 120px 0;
  }
}

.title, .title-sm, .title-md, .title-lg {
  margin-bottom: 30px;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .title, .title-sm, .title-md, .title-lg {
    margin-bottom: 40px;
  }
}

.title-lg {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .title-lg {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .title-lg {
    font-size: 3rem;
  }
}

.title-md {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .title-md {
    font-size: 1.8rem;
  }
}
@media (min-width: 992px) {
  .title-md {
    font-size: 2rem;
  }
}

.title-sm {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .title-sm {
    font-size: 1.4rem;
  }
}
@media (min-width: 992px) {
  .title-sm {
    font-size: 1.6rem;
  }
}

.subtitle {
  margin-bottom: 20px;
  font-size: 1rem;
  text-align: center;
  color: #666;
}
@media (min-width: 768px) {
  .subtitle {
    margin-bottom: 25px;
    font-size: 1.1rem;
  }
}

.btn, .btn-sm, .btn-lg, .btn-secondary, .btn-primary {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn:hover, .btn-sm:hover, .btn-lg:hover, .btn-secondary:hover, .btn-primary:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.btn:active, .btn-sm:active, .btn-lg:active, .btn-secondary:active, .btn-primary:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background-color: #d32f2f;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #b71c1c;
}

.btn-secondary {
  background-color: #424242;
  color: #ffffff;
  border: 1px solid #d32f2f;
}
.btn-secondary:hover {
  background-color: #d32f2f;
  border-color: #d32f2f;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

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

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

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

.text-muted {
  color: #666;
}

.text-primary {
  color: #ffffff;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 0.5rem;
}

.pt-2 {
  padding-top: 1rem;
}

.pt-3 {
  padding-top: 1.5rem;
}

.pt-4 {
  padding-top: 2rem;
}

.pt-5 {
  padding-top: 3rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 0.5rem;
}

.pb-2 {
  padding-bottom: 1rem;
}

.pb-3 {
  padding-bottom: 1.5rem;
}

.pb-4 {
  padding-bottom: 2rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d-grid {
  display: grid;
}

@media (min-width: 768px) {
  .d-md-none {
    display: none;
  }
  .d-md-block {
    display: block;
  }
  .d-md-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none;
  }
  .d-lg-block {
    display: block;
  }
  .d-lg-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 8px;
}

.img-circle {
  border-radius: 50%;
}

.link {
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.link:hover {
  color: #d32f2f;
  text-decoration: underline;
}

.card {
  background: #424242;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(211, 47, 47, 0.1);
          box-shadow: 0 2px 4px rgba(211, 47, 47, 0.1);
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.card:hover {
  -webkit-box-shadow: 0 4px 8px rgba(211, 47, 47, 0.15);
          box-shadow: 0 4px 8px rgba(211, 47, 47, 0.15);
}

.card-body {
  padding: 20px;
}

.card-title {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: bold;
}

.card-text {
  color: #e0e0e0;
  line-height: 1.6;
}

.woman-animation {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  z-index: 999;
  pointer-events: none;
  opacity: 0.8;
  -webkit-animation: womanBounce 30s linear infinite;
          animation: womanBounce 30s linear infinite;
}
.woman-animation img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .woman-animation {
    width: 125px;
    height: 125px;
  }
}
@media (min-width: 992px) {
  .woman-animation {
    width: 150px;
    height: 150px;
  }
}

@-webkit-keyframes womanBounce {
  0% {
    top: 10%;
    left: 10%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  10% {
    top: 80%;
    left: 20%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  20% {
    top: 15%;
    left: 85%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  30% {
    top: 75%;
    left: 90%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  40% {
    top: 20%;
    left: 15%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    top: 85%;
    left: 80%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  60% {
    top: 10%;
    left: 75%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  70% {
    top: 70%;
    left: 10%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  80% {
    top: 25%;
    left: 85%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  90% {
    top: 80%;
    left: 25%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    top: 10%;
    left: 10%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes womanBounce {
  0% {
    top: 10%;
    left: 10%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  10% {
    top: 80%;
    left: 20%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  20% {
    top: 15%;
    left: 85%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  30% {
    top: 75%;
    left: 90%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  40% {
    top: 20%;
    left: 15%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    top: 85%;
    left: 80%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  60% {
    top: 10%;
    left: 75%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  70% {
    top: 70%;
    left: 10%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  80% {
    top: 25%;
    left: 85%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  90% {
    top: 80%;
    left: 25%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    top: 10%;
    left: 10%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(33, 33, 33, 0.9);
  border-bottom: 2px solid #d32f2f;
  z-index: 1000;
}

.header-nav {
  width: 100%;
}

.nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background-color: #ffffff;
}

.nav-link {
  display: block;
  padding: 15px 8px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: bold;
  color: #ff00ff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-shadow: 0 0 3px #ff00ff, 0 0 6px #ff00ff;
}
.nav-link:hover {
  background: rgba(255, 0, 255, 0.1);
  color: #ff00ff;
  text-shadow: 0 0 3px #ff00ff, 0 0 6px #ff00ff, 0 0 9px #ff00ff;
  -webkit-box-shadow: 0 0 3px #ff00ff, inset 0 0 3px rgba(255, 0, 255, 0.2);
          box-shadow: 0 0 3px #ff00ff, inset 0 0 3px rgba(255, 0, 255, 0.2);
}
.nav-link:active {
  background: rgba(255, 0, 255, 0.2);
  color: #ff00ff;
}
.nav-link.active {
  background: rgba(255, 0, 255, 0.15);
  color: #ff00ff;
  text-shadow: 0 0 3px #ff00ff, 0 0 6px #ff00ff, 0 0 9px #ff00ff;
  -webkit-box-shadow: 0 0 3px #ff00ff, inset 0 0 3px rgba(255, 0, 255, 0.2);
          box-shadow: 0 0 3px #ff00ff, inset 0 0 3px rgba(255, 0, 255, 0.2);
}

@media (min-width: 768px) {
  .header-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  .nav-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
  }
  .nav-item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    position: relative;
    margin: 0 10px;
  }
  .nav-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 15%;
    right: -5px;
    width: 1px;
    height: 70%;
    background-color: #ffffff;
  }
  .nav-link {
    padding: 20px 30px;
    font-size: 1rem;
    border-radius: 5px 5px 0 0;
    min-width: 120px;
  }
  .nav-link:hover {
    background: rgba(255, 0, 255, 0.1);
    color: #ff00ff;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    text-shadow: 0 0 3px #ff00ff, 0 0 6px #ff00ff, 0 0 9px #ff00ff;
    -webkit-box-shadow: 0 0 3px #ff00ff, inset 0 0 3px rgba(255, 0, 255, 0.2);
            box-shadow: 0 0 3px #ff00ff, inset 0 0 3px rgba(255, 0, 255, 0.2);
  }
  .nav-link.active {
    background: rgba(255, 0, 255, 0.15);
    color: #ff00ff;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    text-shadow: 0 0 3px #ff00ff, 0 0 6px #ff00ff, 0 0 9px #ff00ff;
    -webkit-box-shadow: 0 0 3px #ff00ff, inset 0 0 3px rgba(255, 0, 255, 0.2);
            box-shadow: 0 0 3px #ff00ff, inset 0 0 3px rgba(255, 0, 255, 0.2);
  }
}
@media (min-width: 992px) {
  .nav-link {
    padding: 25px 40px;
    font-size: 1.1rem;
    min-width: 140px;
  }
}
.first-view {
  height: 50vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .first-view {
    height: 50vh;
  }
}
@media (min-width: 992px) {
  .first-view {
    height: 60vh;
  }
}

.first-view-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 2s ease-in-out;
  transition: opacity 2s ease-in-out;
}
.slide.active {
  opacity: 1;
}
.slide img {
  width: 100vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-left: calc(-50vw + 50%);
}

.first-view-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.first-view-title {
  position: absolute;
  padding: 10px;
  top: 65px;
  left: 20px;
  z-index: 4;
  margin: 0;
  -webkit-animation: titleFloat 5s ease-in-out forwards;
          animation: titleFloat 5s ease-in-out forwards;
}
.first-view-title img {
  width: 180px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .first-view-title {
    top: 75px;
    left: 30px;
  }
  .first-view-title img {
    width: 240px;
    height: 120px;
  }
}
@media (min-width: 992px) {
  .first-view-title {
    top: 90px;
    left: 40px;
  }
  .first-view-title img {
    width: 300px;
    height: 150px;
  }
}

@-webkit-keyframes titleFloat {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-80px) translateX(-25vw) rotateX(60deg) rotateY(-30deg) rotateZ(-45deg) scale(0.7);
            transform: translateY(-80px) translateX(-25vw) rotateX(60deg) rotateY(-30deg) rotateZ(-45deg) scale(0.7);
  }
  37% {
    opacity: 0.4;
    -webkit-transform: translateY(-50px) translateX(40vw) rotateX(45deg) rotateY(25deg) rotateZ(60deg) scale(0.75);
            transform: translateY(-50px) translateX(40vw) rotateX(45deg) rotateY(25deg) rotateZ(60deg) scale(0.75);
  }
  62% {
    opacity: 0.85;
    -webkit-transform: translateY(-30px) translateX(-15vw) rotateX(270deg) rotateY(-25deg) rotateZ(-15deg) scale(0.92);
            transform: translateY(-30px) translateX(-15vw) rotateX(270deg) rotateY(-25deg) rotateZ(-15deg) scale(0.92);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) translateX(0) rotateX(360deg) rotateY(0deg) rotateZ(0deg) scale(1);
            transform: translateY(0) translateX(0) rotateX(360deg) rotateY(0deg) rotateZ(0deg) scale(1);
  }
}

@keyframes titleFloat {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-80px) translateX(-25vw) rotateX(60deg) rotateY(-30deg) rotateZ(-45deg) scale(0.7);
            transform: translateY(-80px) translateX(-25vw) rotateX(60deg) rotateY(-30deg) rotateZ(-45deg) scale(0.7);
  }
  37% {
    opacity: 0.4;
    -webkit-transform: translateY(-50px) translateX(40vw) rotateX(45deg) rotateY(25deg) rotateZ(60deg) scale(0.75);
            transform: translateY(-50px) translateX(40vw) rotateX(45deg) rotateY(25deg) rotateZ(60deg) scale(0.75);
  }
  62% {
    opacity: 0.85;
    -webkit-transform: translateY(-30px) translateX(-15vw) rotateX(270deg) rotateY(-25deg) rotateZ(-15deg) scale(0.92);
            transform: translateY(-30px) translateX(-15vw) rotateX(270deg) rotateY(-25deg) rotateZ(-15deg) scale(0.92);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) translateX(0) rotateX(360deg) rotateY(0deg) rotateZ(0deg) scale(1);
            transform: translateY(0) translateX(0) rotateX(360deg) rotateY(0deg) rotateZ(0deg) scale(1);
  }
}
.first-view-subtitle {
  font-size: 1rem;
  color: #ffffff;
  margin: 0;
  font-weight: 500;
}
@media (min-width: 768px) {
  .first-view-subtitle {
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  .first-view-subtitle {
    font-size: 1.4rem;
  }
}

.content-section {
  padding: 80px 0;
  background-color: rgba(33, 33, 33, 0.8);
}
@media (min-width: 768px) {
  .content-section {
    padding: 100px 0;
  }
}
@media (min-width: 992px) {
  .content-section {
    padding: 120px 0;
  }
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
  text-decoration: underline;
  text-decoration-color: #d32f2f;
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
  text-shadow: 0 0 3px #ffffff, 0 0 6px #ffffff;
  -webkit-animation: neonWhiteGlow 3s ease-in-out infinite alternate;
          animation: neonWhiteGlow 3s ease-in-out infinite alternate;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-underline-offset: 10px;
    text-decoration-thickness: 4px;
  }
}
@media (min-width: 992px) {
  .section-title {
    font-size: 3rem;
    margin-bottom: 70px;
    text-underline-offset: 12px;
    text-decoration-thickness: 5px;
  }
}

@-webkit-keyframes neonWhiteGlow {
  from {
    text-shadow: 0 0 3px #ffffff, 0 0 6px #ffffff;
  }
  to {
    text-shadow: 0 0 3px #ffffff, 0 0 6px #ffffff, 0 0 9px #ffffff;
  }
}

@keyframes neonWhiteGlow {
  from {
    text-shadow: 0 0 3px #ffffff, 0 0 6px #ffffff;
  }
  to {
    text-shadow: 0 0 3px #ffffff, 0 0 6px #ffffff, 0 0 9px #ffffff;
  }
}
.section-text {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.8;
  text-align: center;
}
@media (min-width: 768px) {
  .section-text {
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  .section-text {
    font-size: 1.3rem;
  }
}

.home-content {
  max-width: 800px;
  margin: 0 auto;
}

.highlight {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1em;
}
@media (min-width: 768px) {
  .highlight {
    font-size: 1.15em;
  }
}
@media (min-width: 992px) {
  .highlight {
    font-size: 1.2em;
  }
}

.highlight-brand {
  color: #00ffff;
  font-weight: bold;
  font-size: 1.2em;
  text-shadow: 0 0 3px #00ffff, 0 0 6px #00ffff;
  -webkit-animation: neonGlow 3s ease-in-out infinite alternate;
          animation: neonGlow 3s ease-in-out infinite alternate;
}
@media (min-width: 768px) {
  .highlight-brand {
    font-size: 1.25em;
  }
}
@media (min-width: 992px) {
  .highlight-brand {
    font-size: 1.3em;
  }
}

@-webkit-keyframes neonGlow {
  from {
    text-shadow: 0 0 3px #00ffff, 0 0 6px #00ffff;
  }
  to {
    text-shadow: 0 0 3px #00ffff, 0 0 6px #00ffff, 0 0 9px #00ffff;
  }
}

@keyframes neonGlow {
  from {
    text-shadow: 0 0 3px #00ffff, 0 0 6px #00ffff;
  }
  to {
    text-shadow: 0 0 3px #00ffff, 0 0 6px #00ffff, 0 0 9px #00ffff;
  }
}
@media (min-width: 768px) {
  .tab-none {
    display: none;
  }
}

.recruit-fixed-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 4px 12px rgba(255, 192, 203, 0.2);
          box-shadow: 0 4px 12px rgba(255, 192, 203, 0.2);
  border: 2px solid rgba(255, 192, 203, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-animation: recruitGlow 7s infinite;
          animation: recruitGlow 7s infinite;
}
.recruit-fixed-icon:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 6px 16px rgba(255, 192, 203, 0.4);
          box-shadow: 0 6px 16px rgba(255, 192, 203, 0.4);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.recruit-fixed-icon:hover img {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.recruit-fixed-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  padding: 8px;
  -webkit-animation: iconRotate 7s infinite ease-in-out;
          animation: iconRotate 7s infinite ease-in-out;
}
@media (min-width: 768px) {
  .recruit-fixed-icon {
    width: 100px;
    height: 100px;
    bottom: 30px;
    right: 30px;
  }
}
@media (min-width: 992px) {
  .recruit-fixed-icon {
    width: 120px;
    height: 120px;
    bottom: 40px;
    right: 40px;
  }
}

@-webkit-keyframes recruitGlow {
  0%, 28.57% {
    -webkit-box-shadow: 0 4px 12px rgba(255, 192, 203, 0.2);
            box-shadow: 0 4px 12px rgba(255, 192, 203, 0.2);
  }
  28.58%, 71.43% {
    -webkit-box-shadow: 0 4px 20px rgba(255, 192, 203, 0.6), 0 0 30px rgba(255, 192, 203, 0.4), 0 0 40px rgba(255, 192, 203, 0.2);
            box-shadow: 0 4px 20px rgba(255, 192, 203, 0.6), 0 0 30px rgba(255, 192, 203, 0.4), 0 0 40px rgba(255, 192, 203, 0.2);
  }
  71.44%, 100% {
    -webkit-box-shadow: 0 4px 12px rgba(255, 192, 203, 0.2);
            box-shadow: 0 4px 12px rgba(255, 192, 203, 0.2);
  }
}

@keyframes recruitGlow {
  0%, 28.57% {
    -webkit-box-shadow: 0 4px 12px rgba(255, 192, 203, 0.2);
            box-shadow: 0 4px 12px rgba(255, 192, 203, 0.2);
  }
  28.58%, 71.43% {
    -webkit-box-shadow: 0 4px 20px rgba(255, 192, 203, 0.6), 0 0 30px rgba(255, 192, 203, 0.4), 0 0 40px rgba(255, 192, 203, 0.2);
            box-shadow: 0 4px 20px rgba(255, 192, 203, 0.6), 0 0 30px rgba(255, 192, 203, 0.4), 0 0 40px rgba(255, 192, 203, 0.2);
  }
  71.44%, 100% {
    -webkit-box-shadow: 0 4px 12px rgba(255, 192, 203, 0.2);
            box-shadow: 0 4px 12px rgba(255, 192, 203, 0.2);
  }
}
@-webkit-keyframes iconRotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  28.57% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  71.43% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes iconRotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  28.57% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  71.43% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.content-section {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .content-section {
    padding: 100px 0;
  }
}
@media (min-width: 992px) {
  .content-section {
    padding: 120px 0;
  }
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
  text-decoration: underline;
  text-decoration-color: #d32f2f;
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
  text-shadow: 0 0 3px #ffffff, 0 0 6px #ffffff;
  -webkit-animation: neonWhiteGlow 3s ease-in-out infinite alternate;
          animation: neonWhiteGlow 3s ease-in-out infinite alternate;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-underline-offset: 10px;
    text-decoration-thickness: 4px;
  }
}
@media (min-width: 992px) {
  .section-title {
    font-size: 3rem;
    margin-bottom: 70px;
    text-underline-offset: 12px;
    text-decoration-thickness: 5px;
  }
}

@keyframes neonWhiteGlow {
  from {
    text-shadow: 0 0 3px #ffffff, 0 0 6px #ffffff;
  }
  to {
    text-shadow: 0 0 3px #ffffff, 0 0 6px #ffffff, 0 0 9px #ffffff;
  }
}
.system-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .system-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.system-item {
  background: rgba(211, 47, 47, 0.9);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(211, 47, 47, 0.3);
  text-align: center;
  -webkit-box-shadow: 0 4px 8px rgba(211, 47, 47, 0.1);
          box-shadow: 0 4px 8px rgba(211, 47, 47, 0.1);
}
@media (min-width: 768px) {
  .system-item {
    padding: 40px 30px;
  }
}

.system-item-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .system-item-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}

.system-item-text {
  color: #ffffff;
  line-height: 1.6;
}

.system-item-content {
  text-align: left;
}

.price-main {
  margin-bottom: 20px;
  text-align: center;
}

.price-text {
  color: #d32f2f;
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0;
}
@media (min-width: 768px) {
  .price-text {
    font-size: 1.2rem;
  }
}

.price-details {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.price-details li {
  color: #ffffff;
  padding: 8px 0;
  border-bottom: 1px solid rgba(211, 47, 47, 0.1);
}
.price-details li:last-child {
  border-bottom: none;
}

.price-women {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 2px solid rgba(211, 47, 47, 0.3);
}

.price-note {
  color: #e0e0e0;
  font-size: 0.9rem;
  font-weight: normal;
}
@media (min-width: 768px) {
  .price-note {
    font-size: 1rem;
  }
}

.hours-info {
  text-align: center;
}
.hours-info dt {
  color: #ffd700;
  font-weight: bold;
  font-size: 1.1rem;
  margin: 10px 0 5px 0;
}
@media (min-width: 768px) {
  .hours-info dt {
    font-size: 1.2rem;
    margin: 15px 0 8px 0;
  }
}
.hours-info dd {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0 0 10px 0;
}
@media (min-width: 768px) {
  .hours-info dd {
    font-size: 1.2rem;
    margin: 0 0 15px 0;
  }
}

.hours-text {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 10px 0;
}
@media (min-width: 768px) {
  .hours-text {
    font-size: 1.2rem;
    margin: 15px 0;
  }
}

.highlight {
  color: #d32f2f;
  font-weight: bold;
}

.highlight-black {
  color: #e0e0e0;
  font-weight: bold;
}

.highlight-white {
  color: #e0e0e0;
  font-weight: bold;
}

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

.service-text {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0;
}
@media (min-width: 768px) {
  .service-text {
    font-size: 1.2rem;
  }
}

.line-inquiry {
  margin-top: 25px;
  text-align: center;
}

.line-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #00c300 0%, #00a000 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 12px rgba(0, 195, 0, 0.3);
          box-shadow: 0 4px 12px rgba(0, 195, 0, 0.3);
}
.line-button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 16px rgba(0, 195, 0, 0.4);
          box-shadow: 0 6px 16px rgba(0, 195, 0, 0.4);
  background: linear-gradient(135deg, #00d300 0%, #00b000 100%);
}
.line-button:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 2px 8px rgba(0, 195, 0, 0.3);
          box-shadow: 0 2px 8px rgba(0, 195, 0, 0.3);
}
@media (min-width: 768px) {
  .line-button {
    padding: 14px 28px;
    font-size: 1.1rem;
  }
}

.line-icon {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .line-icon {
    font-size: 1.3rem;
  }
}

.line-text {
  font-weight: bold;
}

.phone-inquiry {
  margin-top: 15px;
  text-align: center;
}

.phone-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
          box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}
.phone-button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 16px rgba(33, 150, 243, 0.4);
          box-shadow: 0 6px 16px rgba(33, 150, 243, 0.4);
  background: linear-gradient(135deg, #42a5f5 0%, #2196f3 100%);
}
.phone-button:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
          box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}
@media (min-width: 768px) {
  .phone-button {
    padding: 14px 28px;
    font-size: 1.1rem;
  }
}

.phone-icon {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .phone-icon {
    font-size: 1.3rem;
  }
}

.phone-text {
  font-weight: bold;
}

.content-section {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .content-section {
    padding: 100px 0;
  }
}
@media (min-width: 992px) {
  .content-section {
    padding: 120px 0;
  }
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
  text-decoration: underline;
  text-decoration-color: #d32f2f;
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
  text-shadow: 0 0 3px #ffffff, 0 0 6px #ffffff;
  -webkit-animation: neonWhiteGlow 3s ease-in-out infinite alternate;
          animation: neonWhiteGlow 3s ease-in-out infinite alternate;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-underline-offset: 10px;
    text-decoration-thickness: 4px;
  }
}
@media (min-width: 992px) {
  .section-title {
    font-size: 3rem;
    margin-bottom: 70px;
    text-underline-offset: 12px;
    text-decoration-thickness: 5px;
  }
}

@keyframes neonWhiteGlow {
  from {
    text-shadow: 0 0 3px #ffffff, 0 0 6px #ffffff;
  }
  to {
    text-shadow: 0 0 3px #ffffff, 0 0 6px #ffffff, 0 0 9px #ffffff;
  }
}
.instagram-update {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 300px;
  margin: 40px auto 0;
  padding: 20px;
  gap: 10px;
  background-color: rgba(66, 66, 66, 0.6);
  border-radius: 15px;
  border: 2px solid #d32f2f;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.instagram-update:hover {
  background-color: rgba(66, 66, 66, 0.8);
  border-color: #b71c1c;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
          box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}
.instagram-update:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 2px 8px rgba(211, 47, 47, 0.2);
          box-shadow: 0 2px 8px rgba(211, 47, 47, 0.2);
}
@media (min-width: 768px) {
  .instagram-update {
    width: 350px;
    gap: 20px;
    margin-top: 50px;
    padding: 25px;
  }
}
@media (min-width: 992px) {
  .instagram-update {
    width: 400px;
    gap: 25px;
    margin-top: 60px;
    padding: 30px;
  }
}

.instagram-text {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}
@media (min-width: 768px) {
  .instagram-text {
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  .instagram-text {
    font-size: 1.3rem;
  }
}

.instagram-logo_floor {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.instagram-update:hover .instagram-logo_floor {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}
@media (min-width: 768px) {
  .instagram-logo_floor {
    width: 45px;
    height: 45px;
  }
}
@media (min-width: 992px) {
  .instagram-logo_floor {
    width: 50px;
    height: 50px;
  }
}

.floor-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .floor-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}
@media (min-width: 992px) {
  .floor-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.floor-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 20px rgba(211, 47, 47, 0.15);
          box-shadow: 0 8px 20px rgba(211, 47, 47, 0.15);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  aspect-ratio: 4/3;
}
.floor-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 12px 30px rgba(211, 47, 47, 0.2);
          box-shadow: 0 12px 30px rgba(211, 47, 47, 0.2);
}

.floor-photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  cursor: pointer;
}
.floor-item:hover .floor-photo {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.photo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.photo-modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  z-index: 2001;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.modal-close:hover {
  color: #d32f2f;
}
@media (min-width: 768px) {
  .modal-close {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .modal-close {
    font-size: 3rem;
  }
}

.modal-image {
  max-width: 100%;
  max-height: 70vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-caption {
  color: #ffffff;
  font-size: 1.1rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .modal-caption {
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  .modal-caption {
    font-size: 1.3rem;
  }
}

.content-section {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .content-section {
    padding: 100px 0;
  }
}
@media (min-width: 992px) {
  .content-section {
    padding: 120px 0;
  }
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
  text-decoration: underline;
  text-decoration-color: #d32f2f;
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
  text-shadow: 0 0 3px #ffffff, 0 0 6px #ffffff;
  -webkit-animation: neonWhiteGlow 3s ease-in-out infinite alternate;
          animation: neonWhiteGlow 3s ease-in-out infinite alternate;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-underline-offset: 10px;
    text-decoration-thickness: 4px;
  }
}
@media (min-width: 992px) {
  .section-title {
    font-size: 3rem;
    margin-bottom: 70px;
    text-underline-offset: 12px;
    text-decoration-thickness: 5px;
  }
}

@keyframes neonWhiteGlow {
  from {
    text-shadow: 0 0 3px #ffffff, 0 0 6px #ffffff;
  }
  to {
    text-shadow: 0 0 3px #ffffff, 0 0 6px #ffffff, 0 0 9px #ffffff;
  }
}
.recruit-info {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.recruit-subtitle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .recruit-subtitle {
    font-size: 1.7rem;
    margin-bottom: 25px;
  }
}

.recruit-text {
  position: relative;
  font-size: 0.9rem;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 40px;
  padding: 20px 25px;
  background: rgba(211, 47, 47, 0.9);
  border-radius: 15px;
  -webkit-box-shadow: 0 4px 12px rgba(211, 47, 47, 0.2);
          box-shadow: 0 4px 12px rgba(211, 47, 47, 0.2);
}
.recruit-text::before {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 30px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid rgba(211, 47, 47, 0.9);
}
@media (min-width: 768px) {
  .recruit-text {
    font-size: 1.2rem;
    margin-bottom: 50px;
    padding: 25px 30px;
  }
}

.recruit-woman-img {
  position: absolute;
  bottom: -165px;
  right: -9px;
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 1;
}
@media (min-width: 768px) {
  .recruit-woman-img {
    bottom: -230px;
    right: 5px;
    width: 120px;
    height: 120px;
  }
}
@media (min-width: 992px) {
  .recruit-woman-img {
    bottom: -380px;
    right: 145px;
    width: 150px;
    height: 150px;
  }
}

.job-table-container {
  margin-bottom: 50px;
  color: #000000;
}
@media (min-width: 768px) {
  .job-table-container {
    margin-bottom: 60px;
  }
}

.job-table {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(211, 47, 47, 0.1);
          box-shadow: 0 4px 12px rgba(211, 47, 47, 0.1);
}
.job-table th, .job-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid rgba(211, 47, 47, 0.1);
}
@media (min-width: 768px) {
  .job-table th, .job-table td {
    padding: 25px;
  }
}
.job-table th {
  background: #d32f2f;
  color: #ffffff;
  font-weight: bold;
  width: 40%;
}
@media (min-width: 768px) {
  .job-table th {
    font-size: 1.1rem;
  }
}
.job-table td {
  color: #000000;
  font-weight: 500;
}
@media (min-width: 768px) {
  .job-table td {
    font-size: 1.1rem;
  }
}
.job-table tr:last-child th, .job-table tr:last-child td {
  border-bottom: none;
}

.application-form {
  background: #d32f2f;
  padding: 40px;
  border-radius: 15px;
  -webkit-box-shadow: 0 8px 20px rgba(211, 47, 47, 0.15);
          box-shadow: 0 8px 20px rgba(211, 47, 47, 0.15);
}
@media (min-width: 768px) {
  .application-form {
    padding: 50px;
  }
}
@media (min-width: 992px) {
  .application-form {
    padding: 60px;
  }
}

.form-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .form-title {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .form-group {
    margin-bottom: 30px;
  }
}

.form-label {
  display: block;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 1rem;
  text-align: left;
}
@media (min-width: 768px) {
  .form-label {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }
}

.required {
  color: #000000;
  margin-left: 4px;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid rgba(211, 47, 47, 0.3);
  border-radius: 8px;
  font-size: 1rem;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  background: #ffffff;
}
.form-input:focus {
  outline: none;
  border-color: #d32f2f;
  -webkit-box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
          box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}
@media (min-width: 768px) {
  .form-input {
    padding: 15px 18px;
    font-size: 1.05rem;
  }
}

.form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid rgba(211, 47, 47, 0.3);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  background: #ffffff;
}
.form-textarea:focus {
  outline: none;
  border-color: #d32f2f;
  -webkit-box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
          box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}
@media (min-width: 768px) {
  .form-textarea {
    padding: 15px 18px;
    font-size: 1.05rem;
  }
}

.form-submit {
  text-align: center;
  margin-top: 40px;
  margin-inline: auto;
  display: block;
  width: 170px;
}
@media (min-width: 768px) {
  .form-submit {
    margin-top: 50px;
  }
}

.submit-btn {
  width: 170px;
  background: rgba(33, 33, 33, 0.7);
  color: #ffffff;
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.submit-btn:hover {
  background: #b71c1c;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 15px rgba(211, 47, 47, 0.3);
          box-shadow: 0 6px 15px rgba(211, 47, 47, 0.3);
}
.submit-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (min-width: 768px) {
  .submit-btn {
    padding: 18px 50px;
    font-size: 1.2rem;
  }
}

.line-apply-container {
  text-align: center;
  margin: 32px 0 32px 0;
}

.line-apply-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: #06C755;
  color: #fff;
  font-weight: bold;
  font-size: 1.15rem;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  -webkit-box-shadow: 0 4px 12px rgba(6, 199, 85, 0.15);
          box-shadow: 0 4px 12px rgba(6, 199, 85, 0.15);
  -webkit-transition: background 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  letter-spacing: 0.05em;
}
.line-apply-btn:hover {
  background: #13e067;
  -webkit-transform: translateY(-2px) scale(1.04);
          transform: translateY(-2px) scale(1.04);
  -webkit-box-shadow: 0 8px 24px rgba(6, 199, 85, 0.25);
          box-shadow: 0 8px 24px rgba(6, 199, 85, 0.25);
}
.line-apply-btn:active {
  background: #059944;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}

.line-icon {
  display: inline-block;
  background: #fff;
  color: #06C755;
  font-weight: bold;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 1.1rem;
  margin-right: 6px;
  -webkit-box-shadow: 0 2px 6px rgba(6, 199, 85, 0.1);
          box-shadow: 0 2px 6px rgba(6, 199, 85, 0.1);
}

.content-section {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .content-section {
    padding: 100px 0;
  }
}
@media (min-width: 992px) {
  .content-section {
    padding: 120px 0;
  }
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
  text-decoration: underline;
  text-decoration-color: #d32f2f;
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
  text-shadow: 0 0 3px #ffffff, 0 0 6px #ffffff;
  -webkit-animation: neonWhiteGlow 3s ease-in-out infinite alternate;
          animation: neonWhiteGlow 3s ease-in-out infinite alternate;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-underline-offset: 10px;
    text-decoration-thickness: 4px;
  }
}
@media (min-width: 992px) {
  .section-title {
    font-size: 3rem;
    margin-bottom: 70px;
    text-underline-offset: 12px;
    text-decoration-thickness: 5px;
  }
}

@keyframes neonWhiteGlow {
  from {
    text-shadow: 0 0 3px #ffffff, 0 0 6px #ffffff;
  }
  to {
    text-shadow: 0 0 3px #ffffff, 0 0 6px #ffffff, 0 0 9px #ffffff;
  }
}
.news-content {
  max-width: 700px;
  margin: 0 auto;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item {
  color: #ffffff;
  background: rgba(211, 47, 47, 0.9);
  border-left: 4px solid #ff5252;
  padding: 18px 20px;
  margin-bottom: 18px;
  border-radius: 6px;
  font-size: 1.1rem;
  -webkit-box-shadow: 0 2px 4px rgba(211, 47, 47, 0.1);
          box-shadow: 0 2px 4px rgba(211, 47, 47, 0.1);
}
@media (min-width: 768px) {
  .news-item {
    font-size: 1.2rem;
  }
}

.footer {
  background-color: rgba(33, 33, 33, 0.8);
  padding: 40px 0 0;
  border-top: 2px solid #d32f2f;
}
@media (min-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }
}
@media (min-width: 992px) {
  .footer {
    padding: 80px 0 0;
  }
}

.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  max-width: 95%;
  margin: 0 auto;
  padding: 15px 15px;
}
@media (min-width: 768px) {
  .footer-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 50px;
  }
}

.footer-logo {
  text-align: center;
}
.footer-logo img {
  width: 300px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .footer-logo img {
    width: 380px;
    height: 190px;
  }
}
@media (min-width: 992px) {
  .footer-logo img {
    width: 450px;
    height: 225px;
  }
}

.footer-info {
  text-align: center;
  background-color: rgba(66, 66, 66, 0.6);
  border-radius: 10px;
  padding: 15px 15px;
}
@media (min-width: 768px) {
  .footer-info {
    text-align: left;
  }
}

.footer-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .footer-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}

.footer-info-list {
  margin: 0;
  padding: 0;
}
.footer-info-list dt {
  color: #ffd700;
  font-weight: bold;
  margin-bottom: 4px;
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .footer-info-list dt {
    font-size: 1rem;
    margin-bottom: 6px;
  }
}
.footer-info-list dd {
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-left: 0;
}
@media (min-width: 768px) {
  .footer-info-list dd {
    font-size: 1rem;
    margin-bottom: 15px;
  }
}

.phone-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 8px;
  width: 32px;
  height: 32px;
  background-color: #d32f2f;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50%;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 4px rgba(211, 47, 47, 0.1);
          box-shadow: 0 2px 4px rgba(211, 47, 47, 0.1);
}
.phone-icon:hover {
  background-color: #b71c1c;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 4px 8px rgba(211, 47, 47, 0.15);
          box-shadow: 0 4px 8px rgba(211, 47, 47, 0.15);
}
.phone-icon:active {
  background-color: #b71c1c;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.instagram-logo {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
}
.instagram-logo:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}
.instagram-logo:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.footer-map {
  margin-top: 40px;
  width: 100%;
}
@media (min-width: 768px) {
  .footer-map {
    margin-top: 50px;
  }
}
@media (min-width: 992px) {
  .footer-map {
    margin-top: 60px;
  }
}

.map-container {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 8px rgba(211, 47, 47, 0.15);
          box-shadow: 0 4px 8px rgba(211, 47, 47, 0.15);
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 250px;
}
@media (min-width: 768px) {
  .map-container iframe {
    height: 300px;
  }
}
@media (min-width: 992px) {
  .map-container iframe {
    height: 350px;
  }
}

.baridon-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 20px;
}
@media (min-width: 768px) {
  .baridon-section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
    margin-top: 40px;
    padding: 25px;
  }
}
@media (min-width: 992px) {
  .baridon-section {
    gap: 20px;
    margin-top: 50px;
    padding: 30px;
  }
}

.baridon-text {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}
@media (min-width: 768px) {
  .baridon-text {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .baridon-text {
    font-size: 1.1rem;
  }
}

.baridon-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.baridon-link:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.baridon-link:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.baridon-logo {
  width: 120px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.baridon-link:hover .baridon-logo {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
@media (min-width: 768px) {
  .baridon-logo {
    width: 140px;
  }
}
@media (min-width: 992px) {
  .baridon-logo {
    width: 160px;
  }
}

.footer-copyright {
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(211, 47, 47, 0.3);
  background-color: rgba(33, 33, 33, 0.8);
}
@media (min-width: 768px) {
  .footer-copyright {
    margin-top: 50px;
    padding: 25px 0;
  }
}
@media (min-width: 992px) {
  .footer-copyright {
    margin-top: 60px;
    padding: 30px 0;
  }
}
.footer-copyright p {
  color: #ffffff;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .footer-copyright p {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .footer-copyright p {
    font-size: 1.1rem;
  }
}
.footer-copyright a {
  color: #ffd700;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer-copyright a:hover {
  color: #ffd700;
  text-decoration: underline;
}
.footer-copyright a:active {
  color: #ffd700;
}

.nav-item.card-nav {
  background: #424242;
  border-radius: 12px;
  margin: 0 8px;
  -webkit-box-shadow: 0 2px 8px rgba(211, 47, 47, 0.12);
          box-shadow: 0 2px 8px rgba(211, 47, 47, 0.12);
  -webkit-transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
  transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
  transition: box-shadow 0.3s, transform 0.3s;
  transition: box-shadow 0.3s, transform 0.3s, -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
  border: 1.5px solid #d32f2f;
  overflow: hidden;
}
.nav-item.card-nav .nav-link {
  border-radius: 12px;
  padding: 18px 24px;
  font-size: 1.05rem;
}
.nav-item.card-nav:hover, .nav-item.card-nav.active {
  -webkit-box-shadow: 0 4px 16px rgba(211, 47, 47, 0.18);
          box-shadow: 0 4px 16px rgba(211, 47, 47, 0.18);
  -webkit-transform: translateY(-2px) scale(1.03);
          transform: translateY(-2px) scale(1.03);
}

.news-archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin: 40px 0 0 0;
}
@media (min-width: 768px) {
  .news-archive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}
@media (min-width: 992px) {
  .news-archive-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.news-card {
  background: #424242;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 16px rgba(211, 47, 47, 0.1);
          box-shadow: 0 4px 16px rgba(211, 47, 47, 0.1);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
  transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
  transition: box-shadow 0.3s, transform 0.3s;
  transition: box-shadow 0.3s, transform 0.3s, -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
  border: 1.5px solid #d32f2f;
}
.news-card:hover {
  -webkit-box-shadow: 0 8px 32px rgba(211, 47, 47, 0.18);
          box-shadow: 0 8px 32px rgba(211, 47, 47, 0.18);
  -webkit-transform: translateY(-4px) scale(1.03);
          transform: translateY(-4px) scale(1.03);
}

.news-card-img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  background: #000000;
  border-bottom: 1px solid #d32f2f;
}

.news-card-body {
  padding: 20px 18px 18px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.news-card-date {
  color: #d32f2f;
  font-size: 0.95rem;
  font-weight: bold;
  margin-bottom: 2px;
}

.news-card-title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 4px;
}

.news-card-excerpt {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.7;
}

.single-article {
  background: #424242;
  border-radius: 18px;
  -webkit-box-shadow: 0 4px 24px rgba(211, 47, 47, 0.13);
          box-shadow: 0 4px 24px rgba(211, 47, 47, 0.13);
  padding: 36px 18px 32px 18px;
  max-width: 600px;
  margin: 48px auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single-article-img-wrap {
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto 18px auto;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 12px rgba(211, 47, 47, 0.1);
          box-shadow: 0 2px 12px rgba(211, 47, 47, 0.1);
}

.single-article-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  background: #000000;
}

.single-article-date {
  color: #d32f2f;
  font-size: 1.05rem;
  font-weight: bold;
  margin-bottom: 8px;
  margin-top: 2px;
}

.single-article-title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 18px;
  text-align: center;
}

.single-article-body {
  color: #e0e0e0;
  font-size: 1.08rem;
  line-height: 1.9;
  margin-bottom: 18px;
  text-align: left;
}