body {
    background-color: white;
    font-family: 'Fredoka', sans-serif;
    padding: 0;
    margin: 0;
}

/* Thanh nâu trên cùng */
.ai-chosa-topbar {
    max-width: 1440px;
    margin: 0 auto;
    color: #fff;
    font-size: 15px;
    line-height: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-chosa-topbar-container{
    background: #D33471;
}

/* Header logo và menu */

.header-contact {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    margin-right: 20px;
  }
  .contact-main {
    text-align: left;
    margin-bottom: 8px;
  }
  .contact-hours {
    font-size: 16px;
    color: #555;
    text-align: right;
  }
  .contact-phone {
    font-size: 48px;
    color: #d94f8a;
    font-weight: bold;
    margin: 4px 0;
    text-align: right;
    white-space: nowrap;
  }
  .phone-icon {
    font-size: 30px;
    vertical-align: middle;
  }
  .phone-number {
    font-size: 36px;
    font-weight: bold;
  }
  .contact-support {
    font-size: 16px;
    color: #d94f8a;
    margin-top: 4px;
  }
  .contact-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-direction: column;
    flex: 1;
  }
  .contact-btn {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
    max-width: 270px;
    width: 100%;
  }
  .email-btn {
    background: #1ebafc;
    color: #fff;
  }
  
  .email-btn .icon{
      color: #1ebafc;
      background: white;
  }
  
  .line-btn .icon{
      color: #14c86c;
      background: white;
  }
  
  .line-btn {
    background: #14c86c;
    color: #fff;
  }
  .contact-btn .icon {
    margin-right: 8px;
    font-size: 30px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

.ai-chosa-header {
    background: #fff;
    max-width: 1650px;
    margin: 0 auto;
    padding: 20px 0px 20px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.ai-chosa-header-container {
    border-bottom: 1.5px solid #e0e0e0;
}

.ai-chosa-header-logo {
    height: 166px;
    width: auto;
    margin-right: 32px;
}

.ai-chosa-header-nav {
    display: flex;
    gap: 40px;
    flex: 2;
    align-items: center;
    justify-content: center;
}

.ai-chosa-header-nav a {
    color: #b0b0b0;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    padding-bottom: 0;
    border-bottom: none;
    transition: color 0.2s;
    position: relative;
    white-space: nowrap;
}

.ai-chosa-header-nav a.active {
    color: #D33471;
    font-weight: bold;
    border-bottom: 3px solid #D33471;
}

.ai-chosa-header-nav .menu-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
    object-fit: contain;
    filter: grayscale(1) brightness(1.2);
}

.ai-chosa-header-nav a.active .menu-icon {
    filter: none;
    filter: brightness(0) saturate(100%) invert(25%) sepia(95%) saturate(1000%) hue-rotate(300deg) brightness(95%) contrast(101%);
}

.ai-chosa-header-menuicon {
    font-size: 32px;
    color: #222;
    cursor: pointer;
    display: flex;
    align-items: center;
    display: none;
}

@media (max-width: 900px) {
    .ai-chosa-header {
        flex-direction: row;
        padding: 12px;
        justify-content: flex-start;
        width: fit-content;
    }
}


.ai-chosa-overlay-menu {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: flex-start;
    animation: fadeIn 0.2s;
}

.ai-chosa-overlay-menu.active {
    display: flex;
}

.ai-chosa-overlay-inner {
    width: 100%;
    max-width: 720px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ai-chosa-overlay-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 24px;
}

.ai-chosa-overlay-logo {
    height: 100px;
    margin: 0 auto;
}

.ai-chosa-overlay-close {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 32px;
    color: #222;
    cursor: pointer;
    font-weight: bold;
}

.ai-chosa-overlay-menu-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 24px 30px;
    justify-content: flex-start;
}

.ai-chosa-overlay-btn {
    background: #F4A4C3;
    color: #222;
    font-weight: bold;
    font-size: 22px;
    border: none;
    outline: none;
    min-width: 345px;
    min-height: 44px;
    margin: 0;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    box-shadow: 0 2px 8px rgba(232, 124, 0, 0.07);
    margin-bottom: 0;
}

.left-top {
    border-radius: 40px 0 40px 0;

}

@media (max-width: 700px) {
    .ai-chosa-overlay-inner {
        max-width: 98vw;
    }

    .ai-chosa-overlay-btn {
        min-width: 120px;
        font-size: 15px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.ai-chosa-overlay-menu-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 24px;
}

.ai-chosa-overlay-bracket {
    color: #D33471;
    font-size: 48px;
    font-weight: bold;
    line-height: 1.1;
    min-width: 40px;
    text-align: center;
    user-select: none;
}

.ai-chosa-overlay-bracket.left {
    margin-right: 32px;
}

.ai-chosa-overlay-bracket.right {
    margin-left: 32px;
}

.ai-chosa-overlay-menu-content {
    width: 100%;
}

.ai-chosa-overlay-main-title {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: center;
}
/* Cho overlay menu scroll được */
.ai-chosa-overlay-menu.active {
    overflow-y: auto;
  }
  
  /* Khi overlay mở, ẩn scroll trang chính */
  body.no-scroll {
    overflow: hidden;
  }

.ai-chosa-overlay-main-title.bold {
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #222;
}

.ai-chosa-overlay-sub-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.ai-chosa-overlay-sub {
    font-size: 22px;
    color: black;
    margin-bottom: 0;
    text-align: center;
    text-decoration: none;
}

.ai-chosa-overlay-main-title.bold:last-child{
    margin-top: 10px;
}

@media (max-width: 700px) {
    .ai-chosa-overlay-main-title {
        font-size: 22px;
    }

    .ai-chosa-overlay-main-title.bold {
        font-size: 26px;
    }

    .ai-chosa-overlay-bracket {
        font-size: 28px;
    }

    .ai-chosa-overlay-sub {
        font-size: 15px;
    }
}

.ai-chosa-footer {
    background: #A52858;
    color: #fff;
    padding: 48px 0 0 0;
    font-size: 1rem;
    font-family: 'Noto Sans JP', sans-serif;
}

.ai-chosa-footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 32px;
}


.ai-chosa-footer-bottom-inner {
    background: #611834;
    max-width: 1440px;
    margin: 0 auto;
}

.ai-chosa-footer-bottom-inner p {
    font-size: 14px;
}

.ai-chosa-footer-logo-block {
    flex: 1 1 400px;
    min-width: 360px;
    margin-bottom: 24px;
}

.ai-chosa-footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ai-chosa-footer-logo img {
    height: 166px;
    margin-right: 8px;
}

.ai-chosa-footer-desc {
    color: #fff;
    font-size: 0.98rem;
    margin-bottom: 8px;
    margin-top: 40px;
}

.ai-chosa-footer-link-green {
    color: #F4A4C3;
    font-size: 25px;
    text-decoration: none;
    font-weight: bold;
}

.ai-chosa-footer-menu {
    flex: 1 1 180px;
    min-width: 160px;
    margin-bottom: 24px;
}

.ai-chosa-footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-chosa-footer-menu li {
    margin-bottom: 10px;
}

.ai-chosa-footer-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}

.ai-chosa-footer-menu a:hover {
    color: #A5E6C6;
}

.ai-chosa-footer-contact {
    flex: 1 1 220px;
    min-width: 180px;
    margin-bottom: 24px;
}

.ai-chosa-footer-contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    border-bottom: 1px solid white;
    padding-bottom: 10px;
}

.ai-chosa-footer-contact-row:last-child {
    margin-bottom: 0;
}

.ai-chosa-footer-contact-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-chosa-footer-contact-icon img {
    width: 40px;
    height: 40px;
}

.ai-chosa-footer-contact-phone-text {
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
}

.ai-chosa-footer-contact-hours {
    font-size: 1rem;
    color: #A5E6C6;
    margin-bottom: 0;
}

.ai-chosa-footer-social {
    flex: 1 1 120px;
    min-width: 120px;
    margin-bottom: 24px;
}

.ai-chosa-footer-social-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.ai-chosa-footer-social-icons {
    display: flex;
    gap: 12px;
}

.ai-chosa-footer-social-icons a {
    color: #F4A4C3;
    font-size: 1.3rem;
    transition: color 0.2s;
}

.ai-chosa-footer-social-icons a:hover {
    color: #fff;
}

.ai-chosa-footer-bottom {
    padding: 18px 0 270px 0;
    text-align: left;
    color: white;
    background: #611834;
    font-size: 20px;
    font-weight: bold;
}

.ai-chosa-footer-bottom .hightlight-text{
    color: #ed6196;
}

.ai-chosa-footer-bottom-copyright{
    color: #fff;
}
.ai-chosa-footer-bottom-copyright{
    display: flex;
    align-items: center;
    gap: 5px;
}



@media (max-width: 900px) {

    .ai-chosa-footer-logo-block,
    .ai-chosa-footer-menu,
    .ai-chosa-footer-contact,
    .ai-chosa-footer-social {
        min-width: 0;
    }
}

/* customer voice */
.cv-container {
    max-width: 1440px;
    margin: 32px auto 0 auto;
    padding: 0 16px;
    background: #fff;
}

.cv-title {
    display: flex;
    align-items: center;
    font-size: 56px;
    font-family: 'Shippori Mincho', serif;
    font-weight: bold;
    margin-bottom: 24px;
    justify-content: center;
}

.cv-tabs {
    display: grid;
    grid-template-rows: repeat(1, 1fr);
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.cv-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50px;
    font-size: 32px;
    font-weight: bold;
    color: black;
    border: 2px solid #eee;
    cursor: pointer;
    transition: background 0.2s, border 0.2s;
    width: 100%;
    height: 88px;
    max-width: 472px;
}

.cv-tab.active {
    background: #FFF3E6;
    border: none !important;
}

.cv-tab.cv-line {
    border: 2px solid #F4A4C3;
    background: #fff;
}

.cv-tab.cv-line.active {
    background: #eafff2;
    border: none;
}

.cv-tab.cv-youtube.active {
    background: #FFD5D7;
    border: none;
}

.cv-tab i {
    font-size: 1.3rem;
    margin-right: 8px;
}

#tab-google {
    border: 1px solid #FFC88A;
}

.cv-youtube {
    border: 1px solid #FF9396;
}

.cv-reviews {
    display: none;
}

.cv-reviews.active {
    display: block;
    justify-content: center;
}

.count-reviews{
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.cv-reviews-inner{
    gap: 15px;
    margin-bottom: 24px;
    display: grid;
    grid-template-rows: repeat(1, 1fr);
    grid-template-columns: repeat(4, 1fr);
}

.cv-review-box {
    background: #FFC88A;
    border-radius: 12px;
    padding: 20px 18px 12px 18px;
    max-width: 310px;
    width: 100%;
    height: 327px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.cv-review-content {
    font-size: 1rem;
    color: black;
    margin-bottom: 18px;
    min-height: 80px;
    font-weight: 500;
}

.cv-review-footer {
    display: flex;
    align-items: center;
    width: 100%;
    background: #B56100;
    border-bottom-right-radius: 40px;
    height: 70px;
}

.cv-review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-left: 15px;
    font-size: 1.3rem;
    color: #bbb;
}

.cv-review-stars {
    color: #f7b500;
    margin-right: 8px;
    font-size: 1.1rem;
}

.cv-review-meta {
    font-size: 12px;
    color: white;
    font-weight: 500;
}

.cv-more-link {
    text-align: center;
    margin-top: 18px;
}

.cv-more-link a {
    color: #E8397C;
    font-weight: bold;
    text-decoration: underline;
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .cv-reviews.active {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .cv-review-box {
        width: 90%;
    }
}

.cv-review-box.line {
    background: #B3DDC9 !important;
}

.cv-review-box.line .cv-review-footer {
    background: #3AA873 !important;
}

.cv-review-box.youtube {
    background: #FFD5D7 !important;
}

.cv-review-title {
    font-size: 24px;
    font-weight: bold;
}

.cv-review-box.youtube video {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.cv-review-box.youtube .cv-review-footer {
    background: transparent !important;
    height: auto !important;
}

.cv-review-box.youtube p {
    margin: 0px;
}

/* end customer voice */

/* feature highlights */

.feature-highlights-section {
    background: #fff;
    padding: 48px 0 48px 0;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

.feature-highlight-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    width: 100%;
    max-width: 1440px;
    margin-bottom: 0;
}

.feature-highlight-row.reverse {
    flex-direction: row-reverse;
}

.feature-highlight-img {
    flex: 1 1 340px;
    min-width: 280px;
    max-width: 720px;
    border-radius: 60px 0px 60px 0px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-highlight-img img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-highlight-content {
    flex: 1 1 400px;
    min-width: 280px;
    text-align: left;
}

.feature-highlight-title {
    font-size: 3rem;
    font-weight: bold;
    color: #E8397C;
    margin-bottom: 0.2em;
    line-height: 1.1;
}

.feature-highlight-title-black {
    color: #222;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.2em;
    line-height: 1.1;
}

.feature-highlight-title-orange {
    color: #E8397C;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 0.2em;
    display: inline-block;
}

.feature-highlight-desc {
    color: black;
    font-size: 1.05rem;
    margin-bottom: 1.2em;
    margin-top: 0.5em;
}

.feature-highlight-btn {
    background: #E8397C;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 40px 0px 40px 0px;
    padding: 12px 38px;
    margin-top: 8px;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
    text-decoration: none;
}

.feature-highlight-btn:hover {
    background: #E8397C;
}
/* end feature highlights */

/* feature */

.ai-chosa-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 48px 0px 32px 0px;
    flex-wrap: wrap;
    background: #fff;
}

.ai-chosa-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 275px;
    background: #fff;
    padding: 18px 8px 10px 8px;
}

.ai-chosa-feature-icon-bg {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-chosa-feature-icon-bg img {
    width: 165px;
    height: 165px;
}

.ai-chosa-feature-label {
    font-size: 24px;
    color: #333;
    margin-top: 8px;
    text-align: center;
    font-weight: 500;
    font-weight: bold;
}

.ai-chosa-campaign {
    display: flex;
    justify-content: center;
    background: #fff;
    padding: 32px 0px;
    margin-top: 40px;
}

.ai-chosa-campaign-inner {
    background: #FDEBF2;
    border-radius: 40px;
    padding: 18px 38px;
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
}

.ai-chosa-campaign-inner p {
    font-size: 44px;
    color: #801f44;
    font-weight: bold;
    margin: 0px;
    line-height: normal;
}

.ai-chosa-campaign-inner .off {
    font-size: 64px;
    color: #e83a7d;
    font-weight: bolder;
    border-top: 6px solid #e83a7d;
}

.ai-chosa-campaign .sparkle-top {
    position: absolute;
    right: -10px;
    top: 0px;
}

.ai-chosa-campaign .sparkle-bottom {
    position: absolute;
    bottom: -25px;
    left: 61%;
}

/* end feature */

/* lawyers */

.lawyers-section {
    background: #fff;
    padding: 64px 0 32px 0;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.lawyers-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 16px;
}

.lawyers-desc {
    color: black;
    font-size: 1.05rem;
}

.lawyers-desc2 {
    color: black;
    font-size: 0.98rem;
    margin-bottom: 32px;
}

.lawyers-btn {
    background: #E8397C;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 20px 38px;
    margin-bottom: 40px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
    border-radius: 40px 0px 40px 0px;
    text-decoration: none;
    display: ruby-text;
}

.lawyers-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 0px;
    margin: 0 auto 32px auto;
    max-width: 1200px;
}

.lawyer-img {
    background: #fff;
    overflow: hidden;
    width: 147px;
    height: 175px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.lawyer-img img {
    width: 100%;
    height: auto;
}

/* end lawyers */

/* reason to choose */

.reason-choose-section {
    background: #FDEBF2;
    padding: 48px 0 48px 0;
    text-align: center;
}

.reason-choose-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: #222;
    font-family: 'Shippori Mincho' , serif;
}

.reason-choose-desc {
    color: black;
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.reason-choose-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 28px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto 32px auto;
}

.reason-choose-item {
    background: #F8C2D6;
    border-radius: 60px 0px 60px 0px;
    padding: 32px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 260px;
    box-sizing: border-box;
    text-align: left;
}

.reason-choose-icon-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.reason-choose-icon {
    width: 149px;
    height: 149px;
}

.reason-choose-content-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
}

.reason-choose-num {
    font-size: 6rem;
    font-weight: bold;
    color: #D33471;
    margin-right: 12px;
    line-height: 1;
    text-align: left;
    font-family: 'Noto Sans JP', sans-serif;
}

.reason-choose-item-title {
    font-size: 16px;
    font-weight: bold;
    color: black;
    margin-bottom: 8px;
    margin-top: 0;
}

.reason-choose-item-desc {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

.reason-choose-btn {
    background: #E8397C;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 40px 0px 40px 0px;
    padding: 12px 38px;
    margin-top: 32px;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
    text-decoration: none;
}

.reason-choose-btn:hover {
    background: #7a4a0c;
}
/* end reason to choose */

/* support block */

.support-block-section {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 48px 0 80px 0;
    background: #fff;
    align-items: center;
}

.support-block-item {
    background: #F07AA7;
    border-radius: 60px 0 60px 0;
    max-width: 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    padding: 20px 20px 0px 20px;
    border-bottom: 10px solid #D33471;
    text-decoration: none;

}

.support-block-item:hover {
    box-shadow: 0 8px 24px rgba(139, 76, 0, 0.18);
    transform: translateY(-4px) scale(1.03);
}

.support-block-img-container .support-block-img{
    width: 100%;
    height: 470px;
}

.support-block-inner{
    display: flex;
    gap: 20px;
    width: fit-content;
}

.support-block-img {
    width: 100%;
    height: 252px;
    object-fit: cover;
    border-radius: 60px 0 0 0;
    margin-bottom: 0;
}

.support-block-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: left;
    width: 100%;
    padding: 16px 18px 18px 18px;
    margin: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 700px) {
   
    .support-block-item {
        width: 90vw;
        min-width: 0;
    }
}

/* end support block */

/* supported regions */

.supported-regions-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 56px;
    font-weight: bold;
    color: #222;
    margin-bottom: 32px;
    text-align: center;
}

.supported-regions-top {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 65px;
    width: 100%;
    max-width: 1440px;
    margin-bottom: 32px;
}

.supported-regions-info {
    flex: 1 1 420px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 320px;
}

.supported-regions-desc2 {
    color: #B56100;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 0px;
    text-align: left;
}

.supported-regions-desc3 {
    color: #B56100;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: left;
}

.supported-regions-desc4 {
    color: black;
    font-size: 0.98rem;
    margin-bottom: 8px;
    text-align: left;
}

.supported-regions-map {
    flex: 1 1 480px;
    min-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 520px;
}

.supported-regions-map img {
    width: 100%;
    max-width: 480px;
    height: auto;
}

.regions-list {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto 24px auto;
}

.regions-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 16px;
}

.regions-column {
    vertical-align: top;
    width: 50%;
}

.regions-table table {
    border-spacing: 0 16px;
    width: 100%;
}

.regions-table tr {
    height: 48px;
}

.region-name {
    background: #B56100;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 20px 0 20px 0px;
    min-width: 120px;
    width: 150px;
    text-align: center;
    white-space: nowrap;
    height: 48px;
}

.region-name p {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.city-list {
    padding-left: 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 8px;
    min-height: 48px;
}

.city-list a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.2s;
    padding: 0 2px;
    position: relative;
}

.city-list a:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 10%;
    height: 75%;
    border-right: 1px solid black;
    padding-right: 8px;
}

.city-list a:hover {
    color: #7a4a0c;
    text-decoration: underline;
}

.city-coverage{
    width: 100%;
}

.city-coverage__content {
    padding: 2px;
    max-width: 1440px;
    margin: 0 auto;
}

.city-coverage__items {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    padding: 30px 60px;
    background-color: rgba(248 234 218 / 50%);
    gap: 25px;
    row-gap: 30px;
    border-radius: 20px;
    border: 1px solid #6B3900;
}


.city-coverage__item {
    font-size: 24px;
    font-weight: 500;
    padding: 0px 0 5px 0;
    text-align: center;
}

.city-coverage__item a {
    font-size: 18px;
    text-decoration: none;
    color: #6B3900;
}

/* end supported regions */

/* contact form */

.contact-form-section {
    background: #FDEBF2;
    border-radius: 60px 0 60px 0;
    border-bottom: 8px solid #E8397C;
    max-width: 1440px;
    margin: 48px auto 100px auto;
    padding: 48px 200px 32px 200px;
    box-sizing: border-box;
    text-align: center;
}

.contact-form-section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 18px;
    color: #222;
}

.contact-form-section .contact-form-desc {
    font-size: 1.05rem;
    color: #222;
    font-weight: bold;
    margin-bottom: 40px;
}

.contact-form-section .contact-form-badges {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 18px;
}

.contact-form-section .contact-form-badge {
    background: #5AB68A;
    color: #fff;
    font-weight: bold;
    border-radius: 40px 0px 40px 0px;
    padding: 8px 50px;
    max-width: 135px;
    width: 100%;
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-form-section .contact-form-badge.red {
    background: #F2086C;
}

.contact-form-section .contact-form-badge.green {
    background: #F07AA7;
}

.contact-form-section .contact-form-phone {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 18px 0 8px 0;
    color: #222;
}

.contact-form-section .contact-form-hours {
    font-size: 1rem;
    color: black;
    margin-bottom: 18px;
}

.contact-form-section form {
    margin-top: 18px;
    text-align: left;
}

.contact-form-row {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.contact-form-label-wrap {
    display: flex;
    align-items: center;
    min-width: 170px;
    margin-right: 16px;
    justify-content: flex-start;
}

.contact-form-label-text {
    font-weight: bold;
    color: #222;
    font-size: 1rem;
    text-align: left;
    width: 120px;
    min-width: 120px;
    display: inline-block;

}

.contact-form-required {
    background: #F2086C;
    color: #fff;
    font-size: 12px;
    border-radius: 8px;
    padding: 7px;
    margin-left: 8px;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-form-input,
.contact-form-textarea {
    flex: 1;
    padding: 0px 12px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: #fff;
    margin-left: 0;
}

.contact-form-textarea {
    min-height: 70px;
    resize: vertical;
    padding: 8px 12px;
}

.contact-form-postcode-btn {
    background: #E8397C;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.95rem;
    font-weight: bold;
    margin-left: 8px;
    cursor: pointer;
}

.contact-form-submit {
    background: #E8397C;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 40px 0px 40px 0px;
    padding: 12px 38px;
    margin: 24px auto 0 auto;
    display: block;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form-submit:hover {
    background: #8B4C00;
}

.contact-form-input-group {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.contact-form-input-group .contact-form-input {
    width: 100%;
    padding-right: 120px;
    box-sizing: border-box;
    height: 48px;
}

.contact-form-input {
    height: 48px;
}

.contact-form-input-group .contact-form-postcode-btn {
    text-decoration: none;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    height: 36px;
    padding: 0 18px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    background: #27ae60;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* end contact form */

/* advertise banner */

.advertise-banner-section {
    background: transparent;
    padding: 32px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.advertise-banner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(276px, 1fr));
    gap: 13px;
    max-width: 1440px;
    justify-content: center;
    align-items: center;
}

.advertise-banner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85px;
    min-width: 190px;
    max-width: 280px;
    overflow: hidden;
}

.advertise-banner-logo img {
    max-height: 85px;
    max-width: 276px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 700px) {
    .advertise-banner-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .advertise-banner-section {
        padding: 18px 0;
    }
}

/* end advertise banner */

/* news */

.news-list-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.news-thumb .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}

.news-thumb .nav-btn.left {
    left: 8px;
}

.news-thumb .nav-btn.right {
    right: 8px;
}

.news-label {
    background: #E8397C;
    color: #fff;
    border-radius: 8px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: bold;
    margin-right: 4px;
    display: inline-block;
}

.news-date {
    font-weight: bold;
    margin-top: 8px;
}

.news-desc {
    font-size: 14px;
    margin-top: 4px;
    text-decoration: none;
    color: #333333;
}

.news-more-btn {
    background: #E8397C;
    color: #fff;
    border: none;
    border-radius: 40px 0px 40px 0px;
    padding: 13px 45px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 32px;
}

.news-slider-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    color: #999999;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.95;
    border: 1px dotted #999999;
}

.news-slider-btn.left {
    left: 9%;
}

.news-slider-btn.right {
    right: 9%;
}

.news-slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: transparent;
    color: #999999;
    border: 1px dashed #999999;
}

.news-slider-btn:hover:not(:disabled) {
    box-shadow: 0 4px 16px rgba(183, 106, 26, 0.15);
    background: #fff;
    color: #B56100;
    border: 1px dashed #B56100;
}

@media (max-width: 1100px) {
    .news-list {
        max-width: 700px;
    }
}

@media (max-width: 800px) {

    .news-slider-btn {
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
}

/* end news */


.ai-chosa-main-banner-thank {
    font-size: 1.05rem;
    font-weight: bold;
    color: #333;
    letter-spacing: 0.02em;
}

.ai-chosa-main-banner-lead {
    font-size: 32px;
    color: #E8397C;
    font-weight: bold;
    letter-spacing: -2px;
}

.ai-chosa-main-banner-title {
    font-size: 48px;
    color: #E8397C;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: 0.04em;
}

.ai-chosa-main-banner-desc {
    background: #FFE3B0;
    color: #7A5B2B;
    font-size: 20px;
    border-radius: 8px;
    padding: 10px 18px;
    margin-bottom: 0;
    display: inline-block;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.ai-chosa-main-banner-illust {
    width: 340px;
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 900px) {
    .ai-chosa-main-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 0 4vw;
    }

    .ai-chosa-main-banner-illusts {
        justify-content: center;
        width: 100%;
    }

    .ai-chosa-main-banner-illust {
        width: 80vw;
        max-width: 340px;
    }

    .ai-chosa-main-banner-title {
        font-size: 2.1rem;
    }
}

.ai-chosa-main-banner-content, .cost-survey-main-banner-content {
    margin-top: 100px;
    margin-left: 230px;
}

.cost-survey-main-banner-thank {
    font-size: 1.05rem;
    font-weight: bold;
    color: #333;
    letter-spacing: 0.02em;
}

.cost-survey-main-banner-lead {
    font-size: 32px;
    color: #066839;
    font-weight: bold;
    letter-spacing: -2px;
}

.cost-survey-main-banner-title {
    font-family: 'Shippori Mincho' , serif;
    font-size: 48px;
    color: #E8397C;
    font-weight: 900;
    padding-top: 50px;
    display: none;
}

.cost-survey-main-banner-desc {
    background: #FFE3B0;
    color: #7A5B2B;
    font-size: 20px;
    border-radius: 8px;
    padding: 10px 18px;
    margin-bottom: 0;
    display: inline-block;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.cost-survey-main-banner-illust {
    width: 340px;
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 900px) {
    .cost-survey-main-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 0 4vw;
    }

    .cost-survey-main-banner-illusts {
        justify-content: center;
        width: 100%;
    }

    .cost-survey-main-banner-illust {
        width: 80vw;
        max-width: 340px;
    }
}

.cost-survey-section {
    max-width: 1440px;
    margin: 40px auto 0 auto;
    padding: 0 16px;
}

.cost-survey-section .cost-highlight {
    color: #E8397C;
    font-weight: bold;
}

.cost-survey-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0 32px 0;
    background: #fff;
}

.cost-survey-table th,
.cost-survey-table td {
    border: 1px solid #E8397C;
    padding: 10px 8px;
    text-align: center;
    font-size: 1rem;
    position: relative;
}

.cost-survey-table th {
    background: white;
    font-weight: bold;
    position: relative;
}

.cost-survey-table .our-company {
    background: #E8397C;
    color: #FEF7C3;
    font-weight: bold;
    border: none;
}

.cost-survey-table tr:first-child .our-company::before{
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #E8397C;
    border-radius: 50px 0px 0px 0px;
    z-index: -1;
}

.cost-survey-table tr:last-child .our-company {
    z-index: 2;
    position: relative;
    border-radius: 0px 0px 28px 0px;
}

.cost-survey-table th:first-child:before{
    content: '';
    position: absolute;
    top: -1px;
    left: 10px;
    width: 100%;
    height: 1px;
    background: #E8397C;
}

.cost-survey-table tr:last-child td:nth-child(3):before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: -10px;
    width: 100%;
    height: 1px;
    background: #E8397C;
}
.cost-survey-table tr:first-child .our-company {
    z-index: 2;
    position: relative;
    border-radius: 28px 0px 0px 0px;
}

.cost-survey-table tr:last-child .our-company::after{
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #E8397C;
    border-radius: 0px 0px 50px 0px;
    z-index: -1;
}

.cost-survey-table > tr th:first-child{
    border-right: none;
}

.cost-survey-table > tr td:first-child{
    border-right: none;
}

.cost-survey-section .cost-block-title {
    font-size: 36px;
    font-weight: bold;
    margin: 32px 0 8px 0;
    display: flex;
    align-items: center;
}

.cost-survey-section .cost-block-title .bar {
    width: 6px;
    height: 36px;
    background: #E8397C;
    display: inline-block;
    margin-right: 8px;
}

.cost-survey-section .cost-block-desc {
    margin-bottom: 18px;
    font-size: 1rem;
}

.cost-survey-section .cost-faq {
    background: #E8397C;
    padding: 9px 18px;
    margin: 18px 0;
    font-weight: bold;
    color: white;
    width: fit-content;
    border-radius: 30px;
    font-size: 1.05rem;
}

@media (max-width: 600px) {

    .cost-survey-table th,
    .cost-survey-table td {
        font-size: 0.95rem;
        padding: 6px 2px;
    }

    .cost-survey-section .cost-block-title {
        font-size: 1rem;
    }
}

.cost-flow-section {
    max-width: 1440px;
    margin: 60px auto 0 auto;
    padding: 0 16px;
}

.cost-flow-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 32px;
}

.cost-flow-row.reverse {
    flex-direction: row-reverse;
}

.cost-flow-text {
    flex: 1 1 0;
    min-width: 260px;
}

.cost-flow-step {
    color: #E8397C;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 6px;
}

.cost-flow-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Shippori Mincho' , serif;
}

.cost-flow-desc {
    font-size: 16px;
    margin-bottom: 18px;
    color: black;
}


.cost-flow-img {
    flex: 1 1 0;
    min-width: 220px;
    display: flex;
    justify-content: center;
}

.cost-flow-img img {
    width: 100%;
    max-width: 720px;
    border-radius: 40px 0px 40px 0px;
    object-fit: cover;
}

@media (max-width: 900px) {

    .cost-flow-row,
    .cost-flow-row.reverse {
        flex-direction: column !important;
        gap: 12px;
    }

    .cost-flow-img img {
        max-width: 100%;
    }
}

.faq-accordion-section {
    max-width: 1440px;
    margin: 40px auto 0 auto;
    padding: 0 16px;
}

.faq-accordion-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(29, 29, 29, 0.07);
    margin-bottom: 18px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-accordion-item.open {
    box-shadow: 0 4px 16px rgba(29, 29, 29, 0.07);
}

.faq-accordion-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 500;
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    position: relative;
    box-shadow: 0 2px 8px rgba(27, 27, 27, 0.1);
    border-radius: 12px;
    background: #fff;
}

.faq-plus {
    color: #E8397C;
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 12px;
    transition: transform 0.2s;
}

.faq-accordion-item.open .faq-plus {
    transform: rotate(45deg);
}

.faq-accordion-item.open .faq-accordion-question {
    box-shadow: none;
}

.faq-question-title-highlight{
    border-bottom: 2px solid #E8397C;
}

.faq-accordion-answer {
    display: none;
    padding: 0 24px 18px 24px;
    color: black;
    font-size: 1rem;
    background: white;
}

.faq-accordion-item.open .faq-accordion-answer {
    display: block;
}

@media (max-width: 600px) {
    .faq-accordion-section {
        padding: 0 4px;
    }

    .faq-accordion-question {
        font-size: 1rem;
        padding: 14px 10px;
    }

    .faq-accordion-answer {
        font-size: 0.97rem;
        padding: 0 10px 14px 10px;
    }
}

.company-tab-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 18px;
    margin: 32px auto 36px auto;
    max-width: 1440px;
    justify-content: flex-start;
}

.company-tab-btn {
    background: #FDEBF2;
    color: #858283;
    font-weight: 600;
    font-size: 32px;
    border: none;
    outline: none;
    border-radius: 40px 0 40px 0;
    padding: 14px 38px;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    position: relative;
    min-width: 346px;
}

.company-tab-btn.active {
    background: #F07AA7;
    color: #fff;
    z-index: 2;
}

.company-tab-content-wrap {
    max-width: 1440px;
    margin: 0 auto 40px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(232, 124, 0, 0.07);
    padding: 36px 28px;
}

.company-tab-content {
    display: none;
    font-size: 1.1rem;
    color: #333;
}

.company-tab-content.active {
    display: block;
}

.company-profile-title {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 28px;
}

.company-profile-table {
    width: 100%;
    margin: 0 auto 32px auto;
    border-collapse: collapse;
    font-size: 32px;
}

.company-profile-table th {
    color: #E8397C;
    font-weight: bold;
    text-align: left;
    padding: 10px 12px 10px 0;
    border-bottom: 1.5px solid #6B3900;
    width: 160px;
    white-space: nowrap;
}

.company-profile-table td {
    padding: 10px 0 10px 8px;
    border-bottom: 1.5px solid #6B3900;
}

.company-profile-map {
    text-align: center;
}

.company-profile-map iframe {
    width: 100%;
    height: 600px;
    border: 0;
    border-radius: 12px;
}

.company-greeting-wrap {
    display: flex;
    align-items: flex-start;
    gap: 36px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px 0;
}

.company-greeting-img img {
    max-width: 472px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-right: 50px;
}

.company-greeting-content {
    flex: 1 1 0;
}

.company-greeting-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.company-greeting-sub {
    color: #E8397C;
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 12px;
    border-bottom: 1px solid #6B3900;
}

.company-greeting-text {
    font-size: 24px;
    color: #222;
    margin-bottom: 28px;
    line-height: 1.9;
}

.company-greeting-sign {
    text-align: right;
    font-weight: bold;
    font-size: 32px;
    margin-top: 18px;
}

@media (max-width: 700px) {
    .company-greeting-wrap {
        flex-direction: column;
        gap: 18px;
        padding: 12px 0;
    }

    .company-greeting-sign {
        text-align: left;
    }
}

.branch-list-title {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 18px;
    margin-top: 12px;
}

.branch-region-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 32px;
}

.branch-list-row {
    display: flex;
    gap: 36px;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto 40px auto;
}

.branch-card {
    background: white;
    padding: 24px 22px 18px 22px;
    min-width: 240px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-right: 1px solid black;
    padding-right: 70px;
    width: 100%;
}

.branch-card-title {
    color: #E8397C;
    font-weight: bold;
    font-size: 36px;
    margin-bottom: 6px;
}

.branch-card-address {
    font-size: 0.98rem;
    color: #444;
    margin-bottom: 12px;
}

.branch-card-btn {
    display: inline-block;
    background: #E8397C;
    color: #fff;
    font-weight: bold;
    border-radius: 40px 0px 40px 0px;
    padding: 7px 22px;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 14px;
    transition: background 0.18s;
}

.branch-card-btn:hover {
    background: #E8397C;
}

.branch-card-img img {
    max-width: 370px;
    border-radius: 40px 0px 40px 0px;
    object-fit: cover;
    margin-top: 6px;
    width: 100%;
}

.branch-card-img{
    max-width: 350px;
    width: 100%;
}

.branch-map {
    flex: 1 1 0;
    min-width: 420px;
    max-width: 829px;
}

@media (max-width: 900px) {
    .branch-list-row {
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
    }

    .branch-map {
        max-width: 100%;
        min-width: 100%;
    }
}

.company-greeting-title.center {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 0;
    font-size: 44px;
}

.consult-list-row {
    display: flex;
    gap: 36px;
    align-items: center;
    justify-content: center;
    max-width: 1440px;
    margin: 0 auto 40px auto;
}

.consult-list-left {
    min-width: 200px;
    max-width: 220px;
    text-align: left;
    padding-top: 32px;
}

.consult-list-label {
    color: #E8397C;
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 8px;
}

.consult-list-count {
    color: #E8397C;
    font-weight: bold;
    font-size: 24px;
    line-height: 1.3;
}

.consult-list-right {
    flex: 1 1 0;
    min-width: 320px;
}

.consult-list-title {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 18px;
}

.consult-list-names {
    font-size: 20px;
    color: #222;
    line-height: 2.1;
    text-align: left;
    margin: 0 auto;
    max-width: 900px;
}

@media (max-width: 900px) {
    .consult-list-row {
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
    }

    .consult-list-left {
        max-width: 100%;
        text-align: left;
        padding-top: 0;
    }

    .consult-list-title {
        font-size: 32px;
    }

    .consult-list-names {
        font-size: 17px;
    }
}

.recruit-title {
    text-align: center;
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 40px;
    margin-top: 12px;
}

.recruit-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    max-width: 1440px;
    margin: 0 auto 48px auto;
}

.recruit-block-2 {
    flex-direction: row-reverse;
}

.recruit-block-text {
    flex: 1 1 0;
    min-width: 260px;
}

.recruit-block-support {
    color: #E8397C;
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 8px;
}

.recruit-block-head {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 12px;
}

.recruit-block-desc {
    font-size: 18px;
    color: #222;
    line-height: 1.8;
}

.recruit-block-img {
    flex: 1 1 0;
    min-width: 220px;
    display: flex;
    justify-content: center;
}

.recruit-block-img img {
    width: 100%;
    max-width: 708px;
    object-fit: cover;
    border-radius: 80px 0px 80px 0px;
}

@media (max-width: 900px) {
    .recruit-block {
        flex-direction: column !important;
        gap: 18px;
    }

    .recruit-block-img img {
        max-width: 100%;
    }

    .recruit-block-head {
        font-size: 22px;
    }

    .recruit-block-desc {
        font-size: 15px;
    }

    .recruit-title {
        font-size: 32px;
    }
}

.recruit-info-table-wrap {
    max-width: 1440px;
    margin: 60px auto 0 auto;
    padding: 0 16px 40px 16px;
}

.recruit-info-title {
    font-size: 36px;
    font-weight: bold;
    color: #222;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.recruit-info-title .bar {
    width: 6px;
    height: 36px;
    background: #D33471;
    display: inline-block;
    margin-right: 12px;
}

.recruit-info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 22px;
    background: #fff;
}

.recruit-info-table th {
    color: #E8397C;
    font-weight: bold;
    text-align: left;
    padding: 18px 18px 18px 0;
    border-bottom: 2px solid #6B3900;
    max-width: 310px;
    white-space: nowrap;
    font-size: 28px;
}

.recruit-info-table tr:last-child th,
.recruit-info-table tr:last-child td {
    border-bottom: none;
}

.recruit-info-table td {
    padding: 18px 0 18px 8px;
    border-bottom: 2px solid #6B3900;
    font-size: 22px;
    vertical-align: top;
    font-weight: 500;
}

.recruit-info-highlight {
    color: #E8397C;
    font-weight: bold;
    font-size: 24px;
}

@media (max-width: 900px) {
    .recruit-info-title {
        font-size: 26px;
    }

    .recruit-info-table th {
        font-size: 18px;
    }

    .recruit-info-table td {
        font-size: 15px;
    }

    .recruit-info-highlight {
        font-size: 16px;
    }
}

.privacy-section {
    max-width: 1440px;
    margin: 40px auto 0 auto;
    padding: 0 16px 40px 16px;
}

.privacy-title {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.privacy-title .bar {
    width: 6px;
    height: 40px;
    background: #E8397C;
    display: inline-block;
    margin-right: 12px;
}

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

.privacy-list li {
    font-size: 20px;
    color: #222;
    margin-bottom: 18px;
    position: relative;
    padding-left: 32px;
}

.privacy-list>li:before {
    content: '>';
    color: #E8397C;
    font-size: 26px;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
}

@media (max-width: 900px) {
    .privacy-title {
        font-size: 22px;
    }

    .privacy-list li {
        font-size: 15px;
    }
}

.privacy-sublist {
    list-style: none;
    padding-left: 32px;
    margin: 8px 0 0 0;
}

.privacy-sublist li {
    font-size: 18px;
    color: #222;
    margin-bottom: 6px;
    position: relative;
    padding-left: 0;
}

@media (max-width: 900px) {
    .privacy-sublist li {
        font-size: 13px;
    }
}


.news-list-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.news-list {
    display: flex;
    gap: 40px 18px;
    margin-bottom: 32px;
    overflow: hidden;
    width: 100%;
    max-width: 1440px;
    position: relative;
    margin-top: 32px;
    flex-wrap: wrap;
}
.news-item {
    max-width: 350px;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.news-thumb {
    width: 100%;
    max-height: 175px;
    border-radius: 16px 16px 0 0;
    position: relative;
}
.news-thumb .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}
.news-thumb .nav-btn.left { left: 8px; }
.news-thumb .nav-btn.right { right: 8px; }

.news-date {
    font-weight: bold;
    margin-top: 8px;
    color: #E8397C;
}
.news-desc {
    font-size: 14px;
    margin-top: 4px;
    text-decoration: none;
    color: #333333;
}

@media (max-width: 1100px) {
    .news-list { max-width: 700px; }
}

.qna-section {
    background: #E3F6F1;
    padding: 40px 0;
  }

  .qna-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 32px;
  }

  .swiper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 32px auto;
    padding-bottom: 40px;
  }

  .swiper-slide {
    display: flex;
    gap: 24px;
    justify-content: center;
    background: transparent;
  }

  .qna-card {
    background: #1CA086;
    border-radius: 24px;
    padding: 24px 18px;
    max-width: 380px;
    width: 100%;
    box-sizing: border-box;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 420px;
  }

  .qna-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
  }

  .qna-card-header img {
    width: 48px;
    height: 48px;
    margin-right: 12px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
  }

  .qna-card-title {
    font-weight: bold;
    font-size: 1.1em;
  }

  .qna-card-info {
    font-size: 0.95em;
  }

  .qna-card-question {
    background: #fff;
    color: #1CA086;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
    font-weight: bold;
  }

  .qna-card-answer {
    background: #fff;
    color: #333;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
  }

  .qna-card-questions-list {
    margin-bottom: 12px;
  }

  .qna-card-questions-list .qna-card-question {
    margin-bottom: 8px;
    font-weight: normal;
  }

  .qna-more-link {
    color: #1CA086;
    text-align: right;
    display: block;
    margin-top: auto;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
  }

  .qna-more {
    text-align: center;
    margin-top: 0;
  }

  .qna-more a {
    background: #E8397C;
    color: #fff;
    padding: 12px 32px;
    border-radius: 40px 0px 40px 0px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    display: inline-block;
    margin-top: 16px;
  }

  @media (max-width: 900px) {
    .swiper-slide {
      flex-direction: column;
      gap: 16px;
      align-items: center;
    }
  }

  .faq-card {
    background: #FDEBF2;
    border-radius: 40px 0px 40px 0px;
    padding: 24px 18px;
    max-width: 730px;
    width: 100%;
    box-sizing: border-box;
    color: #222;
    display: flex;
    flex-direction: column;
    max-height: 1037px;
    position: relative;
  }

  .faq-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
  }

  .faq-card-header img {
    width: 48px;
    height: 48px;
    margin-right: 12px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
  }

  .faq-card-title {
    font-weight: bold;
    font-size: 26px;
  }

  .faq-card-info {
    font-size: 0.95em;
  }

  .faq-card-date {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 12px;
  }

  .faq-card-main-question {
    background: white;
    color: black;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 12px;
    font-size: 21px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
  }

  .faq-card-main-question p {
    width: 95%;
  }

  .faq-card-main-question.open {
    background: #E8397C;
    color: #fff;
  }

  .faq-q-icon {
    background: #fff;
    color: #E8397C;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 6px;
  }

  .faq-card-answer {
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    color: black;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 12px;
  }

  .faq-card-answer.active {
    max-height: 500px;
    padding-top: 12px;
    padding-bottom: 12px;
    opacity: 1;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
  }

  .faq-card-question {
    background: #fff;
    color: #222;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 8px;
    font-size: 0.97em;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .faq-card-question::after {
    content: "●";
    color: #E8397C;
    margin-left: auto;
    font-size: 1.1em;
  }

  .faq-more-link {
    color: #E8397C;
    text-align: right;
    display: block;
    margin-top: auto;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
    position: absolute;
    right: 20px;
    bottom: 5px;
    font-size: 1em;
  }

  .faq-toggle-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: black;
    border-radius: 50%;
    vertical-align: middle;
    position: relative;
    transition: background 0.2s;
    margin-left: 10px;
  }

  .faq-toggle-icon::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    position: absolute;
    top: 5px;
    left: 5px;
    transform: rotate(-45deg);
    transition: transform 0.3s;
  }

  .faq-card-main-question.open .faq-toggle-icon::before {
    transform: rotate(135deg); 
    left: 6px;
    top: 7px;
    border-left: 2px solid #E8397C;
    border-bottom: 2px solid #E8397C;
  }

  .faq-card-main-question.open .faq-toggle-icon{
    background: white;
  }

  .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after, .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
    content: none;
  }

  .swiper-button-next, .swiper-button-prev{
    background: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 10px;
    border: 1px dashed #066839;
    color: #066839;
  }

  .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{
    opacity: .35;
    cursor: auto;
    pointer-events: none;
    color: #999999;
    border: 1px dashed #999999;
  }

  /* Youtube Interview */

.miichan-youtube-section {
    background-size: cover;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .miichan-youtube-inner {
    max-width: 855px;
    margin: 0 auto;
    width: 100%;
    padding: 0 16px;
  }
  .miichan-youtube-title {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    color: black;
    margin-bottom: 10px;
    letter-spacing: 0.08em;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Shippori Mincho', serif;
  }

  .miichan-youtube-title-text-highlight{
    color: #d94f8a;
  }

  .miichan-youtube-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
    margin: 36px 0 24px 0;
  }
  .miichan-youtube-card {
    background: #FDEBF2;
    border-radius: 18px;
  }
  
  .miichan-thumb-wrap {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    height: 263px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  .miichan-thumb {
    width: 100%;
    display: block;
    border-radius: 12px;
  }
  .miichan-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(0,0,0,0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .miichan-play-btn::before {
    content: '';
    display: block;
    margin-left: 7px;
    border-style: solid;
    border-width: 12px 0 12px 22px;
    border-color: transparent transparent transparent #fff;
  }
  .miichan-youtube-desc {
    font-size: 24px;
    color: #222;
    font-weight: 700;
    margin-top: 6px;
    min-height: 48px;
    line-height: 1.5;
    padding: 0 16px 10px 16px;
  }
  .miichan-youtube-more-wrap {
    text-align: center;
  }
  .miichan-youtube-more-btn {
    display: inline-block;
    background: #E8397C;
    color: white;
    border-radius: 40px 0px 40px 0px;
    padding: 8px 28px;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
  }
  .miichan-youtube-more-btn:hover {
    background: #d94f8a;
    color: #fff;
  }
  
  .miichan-youtube-more-btn:hover i {
    background: #fff;
    color: #d94f8a;
  } 
  .miichan-youtube-more-icon {
    font-size: 1.1em;
    margin-left: 6px;
    vertical-align: middle;
  }
  
  .miichan-youtube-more-icon i {
    background: #d94f8a;
    color: #fff;
    border-radius: 50%;
    padding: 5px;
  }

  .card-5{
    display: none;
  }
/* End Youtube Interview */