/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Zen Maru Gothic', sans-serif !important ;
    background-color: #fffcf5;
    background-image: 
    url('../images/side-bg.webp'),
    url('../images/side-bg.webp'), 
    url('../images/main-bg.webp') !important;
    background-repeat: repeat-y, repeat-y, repeat-y !important;
    background-position: left top, right top, center top !important;
    background-size: 26px auto, 26px auto, 100% auto !important;
    line-height: 1.6;
    color: #262626;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}

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


.lp2-page {
    min-height: 100vh !important;
    height: auto 100%;
    width: 100% !important;
    max-width: 500px !important;
    text-align: start !important;
    background: #EFECE7 !important;
    /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;*/
    background-image: url('../images/bg-lp2.webp') !important;
    background-position: center top !important;
    background-repeat:  repeat-y !important;
    background-size: 100% auto !important;
}

.sbs-logo {
    padding-top : 25px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.logo-image {
    height: 30px;
    width: 200px; 
}

/* Menu Button */
.nav-menu-button {
    position: fixed;
    top: 20px;
    right: calc(50% - 240px + 20px);
    width: 44px;
    height: 44px;
    background: #f2c724;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-menu-button:hover {
    background: #f68306;
}

.nav-menu-button__icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 20px;
    height: 16px;
}

.nav-menu-button__line {
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-menu-button__line:first-child {
    width: 100%;
}

.nav-menu-button__line:nth-child(2) {
    width: 80%;
    align-self: flex-end;
}

.nav-menu-button__line:last-child {
    width: 100%;
}

/* Menu button active state - keep hamburger lines visible */
.nav-menu-button[aria-expanded="true"] .nav-menu-button__line:first-child,
.nav-menu-button[aria-expanded="true"] .nav-menu-button__line:nth-child(2),
.nav-menu-button[aria-expanded="true"] .nav-menu-button__line:last-child {
    /* Keep original hamburger appearance when menu is open */
    transform: none;
    opacity: 1;
    width: inherit;
}

/* Menu Overlay */
.nav-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(134, 133, 133, 0.9);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-menu-overlay[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.nav-menu-overlay__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-height: 80vh;
    overflow-y: auto;
    padding: 20px;
    width: 100%;
    max-width: 500px;
}

/* Custom scrollbar for menu content */
.nav-menu-overlay__content::-webkit-scrollbar {
    width: 6px;
}

.nav-menu-overlay__content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.nav-menu-overlay__content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.nav-menu-overlay__content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.nav-menu-overlay__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-menu-overlay__item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.nav-menu-overlay[aria-hidden="false"] .nav-menu-overlay__item {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for menu items */
.nav-menu-overlay[aria-hidden="false"] .nav-menu-overlay__item:nth-child(1) { transition-delay: 0.1s; }
.nav-menu-overlay[aria-hidden="false"] .nav-menu-overlay__item:nth-child(2) { transition-delay: 0.2s; }
.nav-menu-overlay[aria-hidden="false"] .nav-menu-overlay__item:nth-child(3) { transition-delay: 0.3s; }
.nav-menu-overlay[aria-hidden="false"] .nav-menu-overlay__item:nth-child(4) { transition-delay: 0.4s; }
.nav-menu-overlay[aria-hidden="false"] .nav-menu-overlay__item:nth-child(5) { transition-delay: 0.5s; }

.nav-menu-overlay__link {
    display: block;
    padding: 8px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 12px;
    background: #feeec3;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 300px;
    color: #262626 !important;
}

.nav-menu-overlay__link:hover {
    background: #fffcf5;
    transform: scale(1.05);
}

/* Active menu item */
.nav-menu-overlay__item--active .nav-menu-overlay__link {
    background: rgba(246, 131, 6, 0.8);
    border-color: #F68306;
    color: white !important;
}

.nav-menu-overlay__item--active .nav-menu-overlay__link:hover {
    background: rgba(246, 131, 6, 0.9);
}

/* Close Button Inside Overlay */
.nav-menu-overlay__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
    z-index: 1003;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-menu-overlay__close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.nav-menu-overlay__close-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    position: relative;
}

.nav-menu-overlay__close-line {
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

.nav-menu-overlay__close-line:first-child {
    transform: rotate(45deg);
}

.nav-menu-overlay__close-line:last-child {
    transform: rotate(-45deg);
}
/* Mobile styles for menu */
@media (max-width: 480px) {
    .nav-menu-button {
        position: fixed;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        z-index: 100;
    }
    
    .nav-menu-overlay__close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .nav-menu-overlay__close-line {
        width: 14px;
    }
    
    .nav-menu-overlay__link {
        font-size: 16px;
        min-width: 250px;
        padding: 10px 25px;
    }
    
    .nav-menu-overlay__list {
        gap: 12px;
    }
}

@media print {
    .desktop-background {
        display: none;
    }
    
    .nav-menu-button,
    .nav-menu-overlay {
        display: none;
    }

    .sticky-button {
        display: none;
    }
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Placeholder style for lazy images */
img[data-src] {
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}


/* Content Boxes */
.content-boxes {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    margin-top: 45px;
}

.main-box, .urgent-box, .driver-wanted-box, .instructors-box {
    text-align : center;
    padding: 4px;
    font-weight: 700;
    font-size: 40px;
    border: 1px solid #262626;
    width: fit-content;
    line-height: 120%;
    background-color: #FFFFFF;
}

.main-box {
    color: #262626;
    margin-left: 96px;
}

.urgent-box {
    margin-left: 34px;
}

.driver-wanted-box {
    margin-left: 58px;
}

.orange {
    color: #F68306;
}

/* People Illustration */
.people-illustration {
    margin: 32px 20px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position : relative;
    
}
.man-driving-image {
    position : absolute;
    bottom : 0;
    left: 38px;
    width: 66px;
    height: 66px; 
}
.illustration-polygon-icons img {
    position : absolute;
    width: 25px;
    height: 25px; 
}
.illustration-polygon-icons .polygon-icon-8 {
    top : -1px;
    right: 70px;
    rotate: 92deg;
    z-index: 2;
}
.illustration-polygon-icons .polygon-icon-7 {
    top : -30px;
    right: 86px;
    rotate: 6deg;
    
}
.illustration-polygon-icons .polygon-icon-7-1 {
    top : 11px;
    right: 51px;
    rotate: 6deg;
}
.illustration-polygon-icons .polygon-icon-7-2 {
    top : 16px;
    right: 75px;
    rotate: -77deg;
}
.people-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.people-image {
    max-width: 298px;
    height: 211px;
    object-fit: contain;
    display: block;
}

.people-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.person {
    font-size: 24px;
}

/* Support Message */
.support-message {
    /*height: 150px;*/
    margin-left: 53px;
    position : absolute;

}

.support-text {
    text-align: start;
    margin-bottom: 10px;
    margin-top: 61px;
    font-size: 21px;
    font-weight: 700;
    
}

.cheering-people-image {
    position: absolute;
    width: 91px;
    height: 91px;
    right: 35px;
    top: 23px;
    bottom : 50px;
}
.section-39-container {
    margin-bottom: 84px ;
}


/*  Recruit conditions section */

/* Section tổng */
.recruit-conditions {
  padding: 40px 40px 28px 28px;
  font-family: "Zen Maru Gothic", sans-serif;
}

/* Container danh sách */
.recruit-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0 auto;
}

/* Từng box */
.recruit-item {
  background : #fff;    
  border: 1px solid #262626;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}

/* Icon minh họa */
.recruit-icon {
}
.recruit-icon img {

}

.recruit-no-experience {
    position: relative;
    margin-top : 125px;
    margin-right : 20px;
    
}
.recruit-gender {
   position: relative;
   margin-left : 166px; 
   margin-right : 0px;
}
.recruit-nationwide {
   position: relative;
   margin-right : 45px;
}
.experience-image {
    position : absolute;
    top : -105px;
    right : 0;
    width : 135px;
    height : 134px;
}

.drive-spring-image {
    position : absolute;
    bottom : 0;
    left : -100px;
    width : 101px;
    height : 101px; 
}

.business-person-image {
    position : absolute;
    bottom : 25px;
    right : -70px;
    width : 86px;
    height : 86px;     
}

/* Nội dung */
.recruit-content {
}

/* Số thứ tự */
.recruit-number {
  font-size: 21px;
  font-weight: 500;
  color: #f68306;
  margin: 0 0 8px;
  line-height: 1.5;
}

/* Tiêu đề */
.recruit-title {
  font-size: 21px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.5; /* Thêm dòng này */
  display: block !important;
}

/* Nội dung text */
.recruit-text {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  color: #414141;
  margin: 0;
}

/* Instructor section */
.instructor-section {
  padding: 50px 20px 20px 20px;
}

.instructor-block {
  margin: 0 auto 60px;
}

.instructor-heading-first {
  position: relative;  
}

.instructor-heading-first .heading-image {
    position: absolute;
    top : -23px;
    left : 60px;
    
}
.heading-image { 
    width : 86px; 
    height : 86px;
    z-index : 20; 
}

.instructor-heading {
  text-align: center;
  margin-bottom: 20px;
}

/* Diamond styles (dùng từ code của bạn) */
.diamond-container {
  position: relative;
  display: inline-block;
}

.diamond {
  position: relative;
  background-color: #E3D9C7;
  padding: 5px 20px;
  min-width : 100%;
  width : 396px;
  display: inline-block;
  clip-path: polygon(30px 0%, calc(100% - 30px) 0%, 100% 50%, calc(100% - 30px) 100%, 30px 100%, 0% 50%);
}

.diamond-text {
  color: #262626;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}
.diamond-text .japanese {
  font-size: 21px;
  font-weight: 700;
  color: #E55A00;
  line-height: 1.5;
}
.diamond-text .english {
  font-size: 16px;
  font-weight: 600;
  color: #414141;
  line-height: 1.3;
}

/* Image */
.instructor-image img {
  width: 440px;
  height : 318px;
  border-radius: 8px;
  display: block;
}
.instructor-image {
  display : flex;
  flex-direction:column; 
  justify-content:center; 
  align-items:center;
}

/* Benefit section */

.benefit-section {
  padding: 37px 58px;
  text-align: center;
}

.benefit-text-jp p {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  color: #262626 !important;
}

.benefit-text-en p {
  font-weight: 500;
  line-height: 1.3;
  font-size: 19px;
  color: #414141 !important;
  margin-top: 12px;
}


.highlight {
  position: relative;
  display: inline-block;
  color: #262626;
  transform: translateY(-6px);  /* Đẩy chữ lên trên */
  z-index: 2;
}

.highlight::before {
  content: '';
  position: absolute;
  background: #ffa543;
  width: calc(100% - 7px);
  height: 28px;
  top: 15px;   /* Background xuống dưới */
  left: -4px;  /* Lòi ra trái */
  border-radius: 25px;
  z-index: -1;
  transform: rotate(-1deg);
}

.benefit-illustration {
  margin-top: 30px;
}
.benefit-illustration img {
  width: 101px;
  height: 101px;
  margin: 0 auto;
  display: block;
}

/* ========================================== Section SBS Feature ================================================ */

.sbs-feature-section {
  margin: 0 auto;
  padding: 14px 30px 20px 20px;
}

.sbs-feature-header {
  text-align: center;
  margin-bottom: 40px;
}

.sbs-feature-header .jp {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5;
}

.sbs-feature-header .en {
  font-size: 16px;
  color: #414141;
  margin-top: 10px;
}

.sbs-feature-item {
  display: flex;
  flex-direction: column;
  margin-bottom: -8px;
  position : relative;
}

.sbs-feature-text {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: -8px;
  margin-right: 77px;
  border : 1px solid #262626;
}

.sbs-feature-text .feature-number {
  display: block;
  font-weight: 500;
  font-size: 21px;
  color: #F68306;
  margin-bottom: 8px;
}

.sbs-feature-text .jp {
  font-weight: bold;
  font-size: 21px;
  line-height: 1.3;
  margin-bottom: 0;
}

.sbs-feature-text .en {
  font-size: 19px;
  line-height: 1.3;
  color: #414141;
  font-weight: 500;
}

.sbs-feature-image img {
  width: 376px;
  height: 237px;
  border-radius: 8px;
  margin-left: 82px;
  border : 1px solid #262626;
}

.sbs-feature-icons img {
  position: absolute;
  width: 25px;
  height: 25px;
}

.sbs-feature-icons .sbs-icon-8 {
  top: 359px;
  left: 10px;
  rotate: 92deg;
  z-index: 2;
}

.sbs-feature-icons .sbs-icon-7 {
  top: 330px;
  left: -10px;
  rotate: 6deg;
}

.sbs-feature-icons .sbs-icon-7-1 {
  top: 376px;
  left: 8px;
  rotate: 6deg;
}

.sbs-feature-icons .sbs-icon-7-2 {
  top: 376px;
  left: 26px;
  rotate: -77deg;
}


.sbs-feature-footer .jp {
  text-align: start;
  font-size: 18px;
  color: #f68306;
  font-weight: 700;
  margin-top: 25px;
  line-height: 1.3;
}

.sbs-feature-footer .en {
  text-align: start;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

/* ============================================= Section: SBS Group Website Info ============================================== */
.ssk_section-info {
  padding: 30px 16px 134px 16px;
}

.ssk_section-info .container {
  margin: 0 auto;
}

.ssk-block {
  margin-bottom: 27px;
}

.ssk-block h2.title-jp {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.ssk-block h3.title-en {
  font-size: 18px;
  margin-bottom: 20px;
  color: #666;
}
.desc {
    padding-left : 28px;
    position : relative; 
}
.desc-icon-polygon-2 {
    position: absolute;
    width : 25px;
    height : 25px;
    top : 0;
    left: -10px;
    z-index: 10;
    rotate: 6deg;
}
.ssk-block .desc {
  margin-bottom: 20px;
}

.ssk-block .desc p.jp {
  font-size: 18px;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 16px;
  color: #414141;
}

.ssk-block .desc p.en {
  font-size: 18px;
  line-height: 1.3;
  color: #414141;
  font-weight: 500;
}

.image-website-wrapper {
  margin-top: 63px;  
  width: 100%;
  overflow-x: auto; /* Cho phép scroll ngang */
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* Vuốt mượt trên mobile */
}

/* Giữ kích thước thật của ảnh */
.ssk-block .image-website {
  display: inline-block; /* Giúp container mở rộng theo ảnh */
  white-space: nowrap;   /* Tránh bị xuống dòng */
}

.ssk-block .image-website img {
  height: 609px;  /* Chiều cao cố định */
  width: auto;    /* Chiều rộng tự động theo tỉ lệ ảnh */
  display: block;
  max-width: none; /* Không giới hạn width ảnh */
}

/* Ẩn thanh cuộn nếu muốn */
.image-website-wrapper::-webkit-scrollbar {
  height: 6px;
}
.image-website-wrapper::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}
/*---------------------*/

.desc-title-jp {
  font-size: 21px;
  line-height: 1.3;  
  font-weight: bold;
  margin-bottom: 8px;
}
.desc-title-en {
   font-size: 21px;
  line-height: 1.3;  
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 16px;
}
.image-website-content img {
   margin-left: 26px; 
   width : 434px;
   height: 245px;
}


/* Diamond styles (dùng từ code của bạn) */

.instructor-heading-website {
  position: relative;  
  display : flex;
  flex-direction:column; 
  justify-content:center; 
  align-items:center;
}
.heading-image-website {
    position: absolute;
    top : 50px;
    left: 55px;
    width : 43px; 
    height : 43px;
    z-index : 20; 
}
.diamond-container-website {
  position: relative;
  display: inline-block;
  
}

.diamond-website {
  position: relative;
  background-color: #E3D9C7;
  padding: 5px 20px;
  min-width : 100%;
  width : 396px;
  display: inline-block;
  clip-path: polygon(30px 0%, calc(100% - 30px) 0%, 100% 50%, calc(100% - 30px) 100%, 30px 100%, 0% 50%);
  margin-top : 40px;
  margin-bottom : 20px;
}

.diamond-text-website {
  color: #262626;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}
.diamond-text-website .japanese {
  font-size: 21px;
  font-weight: 700;
  color: #E55A00;
  line-height: 1.5;
}
.diamond-text-website .english {
  font-size: 16px;
  font-weight: 600;
  color: #414141;
  line-height: 1.3;
}

/* ============================================= Introduction Section Content Block ============================================== */
.introduction-section__content-block {
    position: relative;
    z-index: 2;
    padding: 0px 12px;
    margin-top: 24px;
}

.introduction-section__tabs {
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 476px;
    margin-left: auto;
    margin-right: auto;
}

.introduction-section__tab {
    flex: 1;
    padding: 8px 12px;
    font-size: 14px;
    font-family: 'YuGothic', sans-serif;
    font-weight: 500;
    border: 1px solid #EAECEE;
    border-bottom: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: black;
    text-align: center;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 8px 0 0;
}

.introduction-section__tab--active {
    font-size: 14px;
    background-color: #ffffff;
    color: #B9103C;
    font-weight: 500;
    border-color: #B9103C;
}

.introduction-section__tab:hover {
    background-color: rgba(229, 90, 0, 0.05);
}

.introduction-section__tab--active:hover {
    background-color: rgba(229, 90, 0, 0.05);
}

/* Text content box with rounded border */
.introduction-section__text-box {
    max-width: 476px;
    margin: 0 auto;
    padding: 6px;
    border: 1px solid #B9103C;
    border-radius: 0 0 8px 8px;
    background-color: #ffffff;
}

.introduction-section__text {
    display: none;
}

.introduction-section__text--active {
    display: block;
}

.introduction-section__text-title {
    font-size: 18px;
    font-family: 'YuGothic', sans-serif;
    font-weight: 700;
    color: #B9103C;
    line-height: 1.4;
    margin: 0 0 8px 0;
    text-align: left;
}


.introduction-section__text p {
    font-size: 16px;
    font-family: 'YuGothic', sans-serif;
    font-weight: 500;
    color: #262626;
    line-height: 1.3;
    margin: 0;
    text-align: left;
}

/* ============================================== Trouble  Section============================================================= */
.troubles-section {
  text-align: start;
  padding: 40px 20px;
}

/* ====== Tiêu đề ====== */
.troubles-title {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 19px;
  line-height: 1.5;
}

/* ====== Item container ====== */
.trouble-item {
  margin-bottom: 30px;
}

/* ====== Box Nhật (JP) ====== */
.trouble-box-jp {
  height : 78px;
  position: relative;
  padding: 9px 20px;
  display: inline-block;
  font-size: 21px;
  font-weight: 700;
  color: #E55A00; /* chữ cam */
  background-color: #E3D9C7; /* nền be */
  line-height: 1.3;
  clip-path: polygon(
    30px 0%, calc(100% - 30px) 0%, 100% 50%, 
    calc(100% - 30px) 100%, 30px 100%, 0% 50%
  );
  display:flex;
  flex-direction:column; 
  justify-content:center; 
  align-items:center;
}

/* ====== Box Anh (EN) ====== */
.trouble-box-en {
  height : 64px;
  position: relative;
  padding: 4px 20px;
  display: inline-block;
  max-width: 474px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background-color: #222; /* nền đen */
  line-height: 1.3;
  clip-path: polygon(
    20px 0%, calc(100% - 20px) 0%, 100% 50%, 
    calc(100% - 20px) 100%, 20px 100%, 0% 50%
  );
  display:flex;
  flex-direction:column; 
  justify-content:center; 
  align-items:center;
  text-align: center;
  margin-top : -10px;
}
@media (max-width: 480px) {
    .trouble-box-jp {
        font-size: 16px;
        font-weight: 700;
        padding: 4px 10px;
    }
    .trouble-box-en {
        font-size: 14px;
        font-weight: 700;
        padding: 2px 10px;
    }
    .troubles-title {
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 19px;
        line-height: 1.5;
    }
    .main-box, .urgent-box, .driver-wanted-box, .instructors-box {
    text-align : center;
    padding: 4px;
    font-weight: 700;
    font-size: 32px;
    border: 1px solid #262626;
    width: fit-content;
    line-height: 120%;
    background-color: #FFFFFF;
    }
    .diamond {
  padding: 5px 20px;
  width : 346px;
}
.instructor-heading-first .heading-image {
    top : -23px;
    left : 20px;
}
.benefit-section {
  padding: 37px 24px;
}

.sbs-feature-text {
    margin-right: 20px;
}
.diamond-website {
  padding: 5px 20px;
  min-width : 100%;
  width : 346px;
  margin-top : 30px;
  margin-bottom : 10px;
}
.diamond-text-website .japanese {
  font-size: 18px;
}
.diamond-text-website .english {
  font-size: 14px;
}
.heading-image-website {
    position: absolute;
    top : 36px;
    left: 28px;
    width : 33px; 
    height : 41px;
    z-index : 20; 
}
    
}

.trouble-box-en-one {
  margin-left : 58px;
  
}

.trouble-box-en-two {
  margin-left : 93px;
  margin-right : 12px;
  
}
.trouble-box-en-three {
  margin-left : 142px;
  margin-right : 0;
  
}

.trouble-box-en-four {
  margin-left : 142px;
  margin-right : 0;
  
}

.trouble-box-jp-one {
  margin-left : 0;
  
}
.trouble-box-jp-two {
  margin-left : 0;
  margin-right : 15px;
  
}
.trouble-box-jp-three {
  margin-left : 23px;
  margin-right : 61px;
  
}

.trouble-box-jp-four {
  margin-left : 23px;
  margin-right : 61px;
  
}

.trouble-item-one,
.trouble-item-two,
.trouble-item-three,
.trouble-item-four
{
  position : relative;
}

.young-couple-1 {
 position : absolute;
 top : -72px;
 left : 26px;
 width : 44px;
 height : 86px;
 z-index : 10;
}
.young-couple-2 {
 position : absolute;
 top : -72px;
 right : 26px;
 width : 44px;
 height : 86px;
 z-index : 10;   
}
.person-reading-image-1 {
 position : absolute;
 top : -44px;
 left : 50px;
 width : 47px;
 height : 47px;
 z-index : 10; 
}
.trouble-box-image-two {
 position : absolute;
 top : -24px;
 right : 26px;
 width : 18px;
 height : 20px;
 z-index : 10;  
 transform: rotate(-40deg)
}

.trouble-box-image-three {
 position : absolute;
 top : 20px;
 right : 26px;
 width : 25px;
 height : 20px;
 z-index : 10;  
}
/* ==================================================== Driver Matching Section - Section 35 ==========================================*/
.driver-matching {
  margin: 0 auto;
  padding: 0 30px;
  line-height: 1.6;
}

.driver-matching__intro {
  margin-bottom: 13px;
}
.driver-matching__details {
  margin-bottom: 18px;
  margin-top: 30px;
  position : relative; 
  
}
.driver-matching__details .ellipse-icon-2 {
  position : absolute;
  top : 314px;
  left : -30px; 
  width : 35px;
  height : 35px;
  z-index: 0 !important;
}
.driver-matching__details .ellipse-icon-1 {
  position : absolute;
  top : 524px;
  right : -24px; 
  z-index: 10;
}
.driver-matching__poster img,
.driver-matching__image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 8px auto;
}

.driver-matching__intro .jp {
  font-size: 21px;
  line-height : 1.3;
  font-weight : bold;
}

.driver-matching__intro .en {
  margin-top : 14px;    
  font-size: 18px;
  line-height : 1.3;
  font-weight : 500;
  color: #414141;
}

.driver-matching__details .jp {
  font-size: 21px;
  line-height : 1.3;
  font-weight : bold;
}

.driver-matching__details .en {
  margin-top : 14px;    
  font-size: 18px;
  line-height : 1.3;
  font-weight : 500;
  color: #414141;
}

.driver-matching__icon {
    position: relative;
}
.driver-matching__icon img {
    position: absolute;
}
.driver-matching__icon .ellipse-icon-1 {
    top: -60px;
    left: 79px;
}
.driver-matching__icon .ellipse-icon-2 {
    top: -56px;
    left: 0;
}
.driver-matching__icon .ellipse-icon-3 {
    top: -42px;
    left: 45px;
    width : 35px;
    height : 35px;
}

/* ==================================================== FAQ Section - Section 31 ==========================================*/
.faq-section {
    width: 100%;
    padding: 20px 10px;
    position: relative;
    text-align : start;
}

/* FAQ Header - Standalone Row */
.faq-section__header {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Content Container - Vertical title and accordion in columns */
.faq-section__content {
    display: flex;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    gap: 20px;
    align-items: flex-start;
}

/* Left vertical title - Spans full accordion height */
.faq-section__vertical-title {
    flex-shrink: 0;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
}

.faq-section__title-jp {
    font-size: 48px;
    font-weight: 700;
    font-family: 'YuGothic', sans-serif;
    color: #262626;
    line-height: 1.1;
    writing-mode: vertical-rl;
    text-orientation: upright;
    margin: 0;
    letter-spacing: 1.5rem;
}

.faq-section__icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.faq-section__title-en {
    font-size: 48px;
    font-weight: 700;
    font-family: 'YuGothic', sans-serif;
    color: #262626;
    line-height: 1;
    margin: 0;
    padding: 10px 0;
}

/* FAQ Accordion - Mobile optimized, now direct flex item */
.faq-accordion {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 30px;
}

.faq-accordion__item {
    background-color: #ffffff;
    overflow: hidden;
}

.faq-accordion__question {
    width: 100%;
    padding: 14px 16px;
    background-color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    /*align-items: center;*/
    justify-content: space-between;
    text-align: left;
    transition: background-color 0.3s ease;
    min-height: 44px; /* Touch-friendly */
}

.faq-accordion__question:hover {
    background-color: #f8f8f8;
}

.faq-accordion__item--active .faq-accordion__question {
    background-color: #ffffff;
}

.faq-accordion__question-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-right: 8px;
}

.faq-accordion__question-jp {
    font-size: 16px;
    font-weight: 500;
    font-family: 'YuGothic', sans-serif;
    color: #262626;
    line-height: 1.4;
}

.faq-accordion__question-en {
    font-size: 16px;
    font-weight: 500;
    font-family: 'YuGothic', sans-serif;
    color: #8E8E8E;
    line-height: 1.3;
}

.faq-accordion__chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
    margin-left: 16px;
}

.faq-accordion__chevron::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-right: 3px solid #414141;
    border-bottom: 3px solid #414141;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-accordion__item--active .faq-accordion__chevron::before {
    transform: translate(-50%, -50%) rotate(-135deg);
}

.faq-accordion__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #ffffff;
}

.faq-accordion__answer-content {
    padding: 0px 14px 16px;
    /*border-top: 1px solid #e0e0e0;*/
}

.faq-accordion__answer-jp {
    font-size: 16px;
    font-weight: 700;
    font-family: 'YuGothic', sans-serif;
    color: #414141;
    line-height: 1.5;
    margin: 0 0 6px 0;
}

.faq-accordion__answer-en {
    font-size: 16px;
    font-weight: 500;
    font-family: 'YuGothic', sans-serif;
    color: #8E8E8E;
    line-height: 1.4;
    margin: 0;
}

/* Mobile responsive styles for FAQ */
@media (max-width: 480px) {
.ssk-block .image-website img {
  height: 409px;  /* Chiều cao cố định */
  width: auto;    /* Chiều rộng tự động theo tỉ lệ ảnh */
  display: block;
  max-width: none; /* Không giới hạn width ảnh */
}    
.young-couple-1 {
 position : absolute;
 top : -36px;
 left : 26px;
 width : 33px;
 height : 56px;
 z-index : 10;
}

.young-couple-2 {
 position : absolute;
 top : -36px;
 right : 26px;
 width : 33px;
 height : 56px;
 z-index : 10;   
}
    .faq-section {
        height: auto;
        min-height: 380px;
        display: block;
    }

    .faq-section__vertical-title {
        width: 45px;
        min-height: 300px;
    }

    .faq-section__title-jp {
        font-size: 48px;
        letter-spacing: 1.5rem;
    }

    .faq-section__icon {
        width: 99px;
        height: 78px;
    }

    .faq-section__title-en {
        font-size: 36px;
    }

    .faq-accordion {
        gap: 10px;
    }

    .faq-accordion__question {
        padding: 12px 14px;
    }

    .faq-accordion__question-jp {
        font-size: 16px;
        line-height: 1.4;
    }

    .faq-accordion__question-en {
        font-size: 16px;
        line-height: 1.3;
    }

    .faq-accordion__answer-content {
        padding: 12px 14px;
    }

    .faq-accordion__answer-jp {
        font-size: 12px;
        line-height: 1.5;
    }

    .faq-accordion__answer-en {
        font-size: 10px;
        line-height: 1.4;
    }
}

/* ================================================ Section Specified Skilled Worker  ================================================ */

.ssk-section {
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
}

.ssk-header h2 {
  margin-bottom: 20px;
}

.ssk-header .jp {
  background-color: #ffa543;
  font-size: 25px;
  font-weight: bold;
  padding: 2px 12px;
  border-radius: 20px;
  line-height: 1.5;
  display: inline; /* quan trọng */
  -webkit-box-decoration-break: clone; /* Safari/Chrome */
  box-decoration-break: clone; /* Firefox */
}

.ssk-header .en {
  display: block;
  font-size: 21px;
  line-height: 1.3;
  font-weight: bold;
  color : #414141;
}

.ssk-image {
  margin: 20px 0;
}

.ssk-image img {
  border-radius: 10px;
  object-fit: cover;
}

.ssk-image {
    position : relative;
}

.image-a .polygon-icon-8 {
    position : absolute;
    z-index : 12;
    top : -53px;
    right : 2px;
    width : 25px ;
    height : 25px;
}
.image-a .polygon-icon-7 {
    position : absolute;
    z-index : 10;
    top : -45px;
    right : 20px;
    width : 25px ;
    height : 25px;
}
.image-a .polygon-icon-7-1 {
    position : absolute;
    z-index : 10;
    top : -38px;
    right : 2px;
    width : 25px ;
    height : 25px;
}
.image-a .polygon-icon-7-2 {
    position : absolute;
    z-index : 10;
    top : -91px;
    right : -10px;
    width : 25px ;
    height : 25px;
}

.image-b .polygon-icon-8 {
    position : absolute;
    z-index : 12;
    top : -53px;
    left : 2px;
    width : 25px ;
    height : 25px;
}
.image-b .polygon-icon-7 {
    position : absolute;
    z-index : 10;
    top : -45px;
    left : 20px;
    width : 25px ;
    height : 25px;
}
.image-b .polygon-icon-7-1 {
    position : absolute;
    z-index : 10;
    top : -38px;
    left : 2px;
    width : 25px ;
    height : 25px;
}
.image-b .polygon-icon-7-2 {
    position : absolute;
    z-index : 10;
    top : -91px;
    left : -10px;
    width : 25px ;
    height : 25px;
}
.ssk-content .jp {
  font-size: 21px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 3px;
}

.ssk-content .en {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 500;
  color: #414141;
}


/* ================================================
   Contact Form Section Styles
   ================================================ */

.contact-form-section {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    text-align: start;
    margin-top : 82px;
}

/* Section Header */
.contact-header {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
    z-index: 2;
}

/* Background decoration with full width minus padding */
.contact-bg-decoration {
    position: absolute;
    top: 35px;  /* Adjust vertical position as needed */
    left: 5px;
    right: 5px;
    height: auto;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

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

.contact-title {
    font-family: YuGothic, 'Yu Gothic', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #262626;
    margin: 0;
    line-height: 1.2;
}

.contact-icon {
    position: absolute;
    top: 65px;
    right: 54px;
    width: 103px;
    height: 86px;
    object-fit: contain;
}

/* Contact Form Container */
.contact-form-container {
    padding: 40px 20px 0px;
    position: relative;
    z-index: 2;
}

.contact-form {
    max-width: 468px;
    margin: 0 auto;
    padding: 0 6px;
}

/* Form Fields */
.form-field {
    margin-bottom: 12px;
}

.field-label {
    display: block;
    margin-bottom: 4px;
    font-family: YuGothic, 'Yu Gothic', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #8e8e8e;
    line-height: 1.5;
}

.label-jp {
    margin-right: 4px;
    font-weight: 500;
}

.label-en {
    margin-left: 4px;
}

.required {
    color: #dd1f01;
    margin-left: 2px;
}

/* Form Inputs */
.form-input,
.form-textarea {
    width: 100%;
    height: 44px;
    padding: 6px 12px;
    border: none;
    border-radius: 12px;
    background-color: #ffffff;
    font-family: YuGothic, 'Yu Gothic', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #414141;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #8e8e8e;
    opacity: 1;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12), 0 0 0 2px rgba(34, 139, 34, 0.3);
}

.form-textarea {
    height: 150px;
    padding: 6px 12px;
    resize: vertical;
    min-height: 80px;
}

/* Select Dropdown */
.select-wrapper {
    position: relative;
    width: 100%;
}

.form-select {
    width: 100%;
    height: 44px;
    padding: 6px 12px;
    border: none;
    border-radius: 12px;
    background-color: #ffffff;
    font-family: YuGothic, 'Yu Gothic', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #414141;
    cursor: pointer;
    appearance: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.form-select:focus {
    outline: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12), 0 0 0 2px rgba(34, 139, 34, 0.3);
}

.form-select option {
    padding: 8px;
}

.select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    pointer-events: none;
    opacity: 0.6;
    color: #414141;
}

/* Error Messages */
.field-error {
    margin-top: 4px;
    font-size: 12px;
    color: #dd1f01;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.field-error.show {
    opacity: 1;
    transform: translateY(0);
}

/* Submit Button */
.form-submit {
    margin-top: 24px;
    text-align: center;
}

.contact-submit-btn {
    position: relative;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 214px;
    height: 45px;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    background: #262626;
    color: white;
    font-family: YuGothic, 'Yu Gothic', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.contact-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    background: #E55A00;
    color: white;

}

.contact-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(34, 139, 34, 0.3);
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Spinner Animation */
.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Form Messages - Hidden since using JS alerts */
.form-messages {
    display: none;
}

/* Bottom Decoration */
.contact-bottom-decoration {
    display: flex;
    justify-content: center;
    padding-bottom: 80px;
    padding-top: 70px;
}

.contact-bottom-image {
    width: 116px;
    height: 116px;
    object-fit: contain;
}

/* Checkbox Styles */
.form-field--checkbox {
    margin-bottom: 20px;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.form-checkbox {
    position: absolute;
    opacity: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    position: relative;
    padding-left: 24px;
    min-height: 16px;
    user-select: none;
}

.checkbox-custom {
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    border: 1px solid #0F172A;
    border-radius: 4px;
    background-color: white;
    transition: all 0.2s ease;
}

.checkbox-custom::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 0px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.form-checkbox:checked + .checkbox-label .checkbox-custom {
    background-color: #E55A00;
    border-color: #E55A00;
}

.form-checkbox:checked + .checkbox-label .checkbox-custom::after {
    opacity: 1;
}

.form-checkbox:focus + .checkbox-label .checkbox-custom {
    outline: 2px solid rgba(229, 90, 0, 0.2);
    outline-offset: 2px;
}

.checkbox-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.checkbox-text .label-jp {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color: #262626;
    font-weight: 500;
}


.label-jp.change-weight-checkbox-text {
    font-weight: 400;
}

.checkbox-text .label-en {
    display: block;
    color: #8E8E8E;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}


.label-en.change-font-size-label-en {
    margin-left: 0px;
    font-size: 14px;
}

/* Privacy Policy Link Styles */
.privacy-link {
    color: #8E8E8E;
    text-decoration: underline;
    font-weight: 700;
    transition: opacity 0.2s ease;
}


.privacy-link.change-color-privacy-link {
    color: #262626;
}

.label-en  {
    color: #8E8E8E;
}

/* Form Validation States */
.form-input.error,
.form-select.error,
.form-textarea.error {
    border: 2px solid #dd1f01;
    box-shadow: 0 2px 12px rgba(221, 31, 1, 0.2);
}

.form-input.success,
.form-select.success,
.form-textarea.success {
    border: 2px solid #228b22;
    box-shadow: 0 2px 12px rgba(34, 139, 34, 0.2);
}

/* Disabled submit button style */
.contact-submit-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Contact Form Responsive Design */
@media (max-width: 768px) {
    .contact-form-section {
        min-height: auto;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-icon {
        top: 55px;
        right: 50px;
        width: 80px;
        height: 67px;
    }
    
    .contact-form {
        max-width: 100%;
    }
    
    .contact-bottom-image {
        width: 150px;
        height: 126px;
    }
}

@media (max-width: 480px) { 
    .contact-title {
        font-size: 28px;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        font-size: 14px;
    }
    
    .contact-submit-btn {
        width: 100%;
        font-size: 14px;
    }

    .contact-form-container {
        padding: 30px 20px 0px;
        position: relative;
        z-index: 2;
    }
}


/* Privacy Policy Popup Styles */
.privacy-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.privacy-popup[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.privacy-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.privacy-popup__content {
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    width: 90%;
    max-height: 600px;
    height: 600px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: start !important;
}

.privacy-popup[aria-hidden="false"] .privacy-popup__content {
    transform: scale(1);
}

.privacy-popup__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    padding-left: 10px;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.privacy-popup__4itle {
    font-size: 20px;
    font-weight: 600;
    color: #262626;
    margin: 0;
}

.privacy-popup__close {
    background: none;
    border: none;
    font-size: 32px;
    color: #5a5d69;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.privacy-popup__close:hover {
    background-color: #f0f0f0;
    color: #020617;
}

.privacy-popup__close-icon {
    font-size: 32px;
    line-height: 1;
    color: #5a5d69
}

.privacy-popup__body {
    padding: 12px;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.privacy-policy-content {
    line-height: 1.7;
}

.privacy-policy-section {
    margin-bottom: 24px;
}

.privacy-policy-section:last-child {
    margin-bottom: 0;
}

.privacy-policy-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #262626;
    margin-bottom: 12px;
    padding-bottom: 8px;
}
.privacy-policy-section__title {
    display: flex;
    align-items: flex-start;
}
.privacy-policy-section__title .number-index {
    margin-right: 6px;
    flex-shrink: 0;
    font-family: Inter, sans-serif !important;
    color:#DD1F01 !important;
}

.privacy-policy-section__title .text-number-index {
    font-weight: 400;
    font-size: 16px;
    flex: 1;
    font-family: Noto Sans JP, sans-serif !important;
}

.privacy-policy-section__item__child {
    font-size: 16px;
    font-family: Noto Sans JP, sans-serif !important;
}

.privacy-popup__title {
    font-family: Inter, sans-serif !important;
    padding-left: 0;
    margin-left: 0;
}

.privacy-policy-section p {
    font-size: 14px;
    color: #262626;
    margin-bottom: 12px;
}

.privacy-policy-section ol {
    margin-left: 40px;
    margin-bottom: 12px;
}

.privacy-policy-section li {
    font-size: 16px;
    color: #262626;
    margin-bottom: 8px;
}

.privacy-policy-section strong {
    color: #262626;
    font-weight: bold;
}

.privacy-link:hover {
    color: #dd1f01;
    text-decoration: none;
    opacity: 0.7;
}

/* Mobile responsiveness for popup */
@media (max-width: 768px) {
    .privacy-popup__content {
        width: 95%;
        max-height: 600px;
        height: 600px;
    }
    
    .privacy-popup__header {
        padding: 16px 20px;
    }
    
    .privacy-popup__title {
        font-size: 18px;
    }
    
    .privacy-popup__body {
        padding: 20px;
    }
    
    .privacy-policy-section h3 {
        font-size: 15px;
    }
    
    .privacy-policy-section p,
    .privacy-policy-section li {
        font-size: 13px;
    }
}

/* Very small screens - reduce height slightly */
@media (max-width: 480px) {
    .nav-menu-button {
        position: fixed;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        z-index: 100;
    }

    .nav-menu-overlay__close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .nav-menu-overlay__close-line {
        width: 14px;
    }
    
    .nav-menu-overlay__link {
        font-size: 16px;
        min-width: 250px;
        padding: 10px 25px;
    }
    
    .nav-menu-overlay__list {
        gap: 12px;
    }
    
}

/* Language-specific content visibility */
.privacy-policy-section--en {
    display: none !important;
}

.privacy-policy-section--jp {
    display: block !important;
}

/* When English is active */
.privacy-popup[data-lang="en"] .privacy-policy-section--en {
    display: block !important;
}

.privacy-popup[data-lang="en"] .privacy-policy-section--jp {
    display: none !important;
}
/* ================================================
   Sticky CTA Button Styles
   ================================================ */

/* Sticky Button */
.sticky-button {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    height: 60px;
    z-index: 100;
    pointer-events: none;
}

.sticky-button__content {
    position: relative;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    cursor: pointer;
}

.sticky-button__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sticky-button__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sticky-button__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    width: 44px;
    height: 44px;
    z-index: 2;
}

.sticky-button__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Make icon white */
}

/* Print styles - hide sticky button */
@media print {
    .sticky-button {
        display: none;
    }
}

@media (max-width: 480px) { 
    .sbs-feature-image img {
    width: 376px;
    height: 237px;
    border-radius: 8px;
    margin-left: 22px;
    border: 1px solid #262626;
    }
    .image-website-content img {
    margin-left: 26px;
    width: 349px;
    height: 245px;
}
.diamond {
    position: relative;
    background-color: #E3D9C7;
    padding: 5px 20px;
    display: inline-block;
    clip-path: polygon(30px 0%, calc(100% - 30px) 0%, 100% 50%, calc(100% - 30px) 100%, 30px 100%, 0% 50%);
}

    /* Introduction Section Content Block - Mobile */
    .introduction-section__tabs {
        max-width: 100%;
    }

    .introduction-section__tab {
        font-size: 12px;
        padding: 6px 10px;
        min-height: 30px;
    }

    .introduction-section__text-box {
        padding: 12px 10px;
    }
    
    .introduction-section__text-title {
        font-size: 16px;
        margin-bottom: 6px;
    }


    .introduction-section__text p {
        font-size: 13px;
        line-height: 1.5;
    }
}
