/*
Theme Name: NCG Mobility Export
*/
/* ========================================
   Reset
======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.7;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ========================================
   Common
======================================== */

.container {
    width: min(92%, 1200px);
    margin: 0 auto;
}

section {
    padding: clamp(70px, 8vw, 120px) 0;
}

body.page-id-9 .page-content {
    padding: 120px 0 60px;
}

/* ========================================
   Header
======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    border-bottom: 1px solid #eee;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.site-logo a{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

.logo-image{
    width:170px;
    height:auto;
    display:block;
}

.logo-text{
    margin-top:4px;

    font-size:.95rem;
    font-weight:700;
    color:#0B3D91;
    line-height:1.2;
    text-align:center;
}

.global-nav {
    /* transition: none; */
    /* display: flex;
    transition: transform 0.35s ease !important; */
    display:flex;
    align-items:center;
    transition:transform .35s ease !important;
}

.global-nav {
    contain: layout paint;
}

.global-nav ul {
    /* display: flex;
    gap: 40px; */

    display:flex;
    align-items:center;
    gap:32px;
}

.global-nav a {
    font-size: 1rem;
    font-weight: 500;
    transition: .3s;
}

.global-nav a:hover {
    color: #D6001C;
}

/* ==========================
   Language Switch
========================== */

.lang-switch{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-left: 20px;
    gap:12px;
}

.lang-switch a{
    display:flex;
    align-items:center;
    justify-content:center;

    width:72px;
    height:40px;

    font-size:.95rem;
    font-weight:600;

    text-decoration:none;

    color:#0B3D91;
    background:#fff;

    border:2px solid #0B3D91;
    border-radius:999px;

    transition:.25s ease;
}

.lang-switch a:hover,
.lang-switch a.active{
    background:#0B3D91;
    color:#fff;
}

/* ========================================
   Hamburger
======================================== */

.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #0B3D91;
    margin: 6px auto;
    transition: .3s;
}

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

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

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

/* ========================================
   hero
======================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;

    color: #fff;

    background: url("../img/hero-bg.jpg") center/cover no-repeat;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11, 61, 145, 0.6);
}

.hero-inner {
    position: relative;
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.hero-text {
    font-size: 1rem;
    margin-bottom: clamp(24px, 3vw, 48px);
    opacity: 0.9;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 共通ボタン */
.hero-btns a {
    flex: 1;
    max-width: 260px;
    gap: 10px;
}

/* ベース */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 14px 18px;
    font-size: 0.95rem;
    font-weight: 600;

    border-radius: 8px;
    text-decoration: none;
    box-sizing: border-box;
}

/* WhatsApp */
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    gap: 10px;
}

/* Contact */
.btn-contact {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

/* =========================
   WeChat（カード型ボタン）
========================= */

.btn-wechat {
    background: #07C160;
    color: #fff;
    padding: 12px;
}

.wechat-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.wechat-inner img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.wechat-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

.wechat-title {
    font-size: 0.95rem;
    font-weight: 700;
}

.wechat-id {
    font-size: 0.75rem;
    opacity: 0.9;
    word-break: break-all;
}

/*=========================================
  Product Categories
=========================================*/
.categories{
    padding:100px 20px;
    background:#f8f9fb;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:clamp(2rem,4vw,3rem);
    margin-bottom:12px;
    color:#0B3D91;
}

.section-title p{
    color:#666;
    font-size:clamp(.95rem,1.4vw,1.1rem);
}

.category-group{
    margin-top:70px;
}

.category-group:first-of-type{
    margin-top:0;
}

.group-title{
    font-size:clamp(1.5rem,2vw,2rem);
    color:#0B3D91;
    margin-bottom:25px;
    border-left:5px solid #D6001C;
    padding-left:15px;
}

.category-grid{
    display:grid;
    gap:25px;
}

.cars-grid{
    grid-template-columns:repeat(4,1fr);
}

.other-grid{
    grid-template-columns:repeat(3,1fr);
}

.category-card{
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    min-height:260px;
    padding:25px;
    color:#fff;
    text-decoration:none;
    border-radius:14px;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    transition:.35s;
}

.category-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
    transition:.35s;
}

.category-card>*{
    position:relative;
    z-index:2;
}

.category-card h3{
    font-size:clamp(1.25rem,2vw,1.6rem);
    margin-bottom:10px;
}

.category-card p{
    font-size:.95rem;
    line-height:1.6;
}

.category-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.category-card:hover::before{
    background:rgba(11,61,145,.45);
}

.category-note{
    margin-top:25px;
    padding:18px 20px;
    background:#f5f7fb;
    border-left:4px solid #0B3D91;
    color:#333;
    line-height:1.7;
    font-size:.95rem;
}

.new-cars      { background-image:url("../img/prius_thumbnail.png"); }
.used-cars     { background-image:url("../img/used_thumbnail.png"); }
.toyota        { background-image:url("../img/alphard_thumbnail.png"); }
.commercial    { background-image:url("../img/hiace_thumbnail.png"); }
.motorcycles   { background-image:url("../img/motorcycle_thumbnail.png"); }
.marine        { background-image:url("../img/marine.png"); }
.parts         { background-image:url("../img/parts_thumbnail.png"); }

/*=========================================
  toyota
=========================================*/
.toyota-section {
    position: relative;
    background: url(../img/cicero7-toyota-c-hr-2931723_1920.jpg) center/cover no-repeat;
    margin: 0;
    padding: clamp(70px, 8vw, 120px) 0;
}

.toyota-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.toyota-section .fade-up {
    position: relative;
    z-index: 2;
}

.toyota-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.toyota-red {
    color: #e60012;
}

.toyota-wrap {
    display: flex;
    align-items: center;
    gap: 50px;
}

.toyota-img {
    flex: 1;
}

.toyota-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.toyota-content {
    flex: 1;
    color: #fff;
}

.toyota-content .section-sub {
    margin-bottom: 20px;
}

.toyota-list {
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
}

.toyota-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.toyota-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00e1ff;
}

.toyota-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: stretch;
}

.wechat-card {
    display: flex;
    align-items: center;
    gap: 10px;

    background: #07C160;
    color: #fff;

    padding: 10px 12px;
    border-radius: 8px;
}

.wechat-qr img {
    width: 44px;
    height: 44px;
    border-radius: 4px;
}

.wechat-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.wechat-label {
    font-size: .8rem;
    opacity: .9;
}

.wechat-id {
    font-size: .75rem;
    word-break: break-all;
}

/*=========================================
  Why Choose NCG
=========================================*/
.strengths{
    background:#fff;
}

.strengths-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;
    margin-top:50px;
}

.strength-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:14px;
    padding:35px 25px;
    text-align:center;
    transition:.3s;
}

.strength-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    border-color:#0B3D91;
}

.strength-card i{
    font-size:clamp(2rem,3vw,2.6rem);
    color:#D6001C;
    margin-bottom:22px;
}

.strength-card h3{
    font-size:clamp(1.15rem,1.8vw,1.4rem);
    color:#0B3D91;
    margin-bottom:15px;
    line-height:1.4;
}

.strength-card p{
    font-size:clamp(.92rem,1.1vw,1rem);
    color:#666;
    line-height:1.7;
}

/*=========================================
  Export Destinations
=========================================*/
.destinations{
    background:
        linear-gradient(rgba(11,61,145,.75), rgba(11,61,145,.75)),
        url("../img/yuri_b-map-of-the-world-2401458_1920.jpg") center/cover no-repeat;
    color:#fff;
}

.destination-content{
    max-width:700px;
}

.destinations .section-title h2{
    color:#fff;
    text-shadow:0 2px 12px rgba(0,0,0,.35);
}

.destinations .section-title p{
    color:rgba(255,255,255,.85);
}

.destination-text h3{
    font-size:clamp(1.8rem,3vw,2.5rem);
    margin-bottom:20px;
}

.destination-text p{
    font-size:clamp(1rem,1.5vw,1.1rem);
    line-height:1.8;
    margin-bottom:35px;
}

.destination-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    list-style:none;
    padding:0;
    margin:0;
}

.destination-list li{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:1.05rem;
}

.destination-list i{
    color:#FFD34D;
    font-size:1.3rem;
}

/*=========================================
  Export Process
=========================================*/
.process{
    background:#f8f9fb;
}

.process-grid{
    display:grid;
    grid-template-columns:1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    align-items:center;
    gap:20px;
    margin-top:60px;
}

.process-step{
    background:#fff;
    border-radius:14px;
    padding:35px 20px;
    text-align:center;
    border:1px solid #e8e8e8;
    transition:.3s;
    position:relative;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    height:100%;
}

.process-step:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.step-number{
    position:absolute;
    top:15px;
    right:18px;
    font-size:.8rem;
    font-weight:700;
    color:#D6001C;
}

.process-step i{
    font-size:2.3rem;
    color:#0B3D91;
    margin-bottom:20px;
}

.process-step h3{
    font-size:1.2rem;
    margin-bottom:12px;
    color:#0B3D91;
}

.process-step p{
    color:#666;
    line-height:1.7;
    font-size:.95rem;
    flex: 1;
}

.process-arrow{
    font-size:1.5rem;
    color:#D6001C;
}

.process-note{
    text-align:center;
    margin-top:35px;
    color:#666;
    font-size:.9rem;
}

/*=========================================
  FAQ
=========================================*/

.faq{
    background:#fff;
}

.faq-list{
    max-width:900px;
    margin:60px auto 0;
}

.faq-item{
    border:1px solid #e8e8e8;
    border-radius:12px;
    overflow:hidden;
    margin-bottom:18px;
    transition:.3s;
    background:#fff;
}

.faq-item:hover{
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.faq-question{
    width:100%;
    background:#fff;
    border:none;
    padding:22px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:clamp(1rem,1.4vw,1.15rem);
    font-weight:600;
    color:#0B3D91;
    text-align:left;
}

.faq-question i{
    color:#D6001C;
    transition:.3s;
    font-size:1.1rem;
    flex-shrink:0;
    margin-left:20px;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 30px 28px;
    color:#666;
    line-height:1.8;
    font-size:clamp(.95rem,1.2vw,1rem);
}

/*=========================================
  campany
=========================================*/
.company-info{
    background: #f8f9fb;
}

.company-flex{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
    margin-top:60px;
}

.company-item{
    margin-bottom:30px;
}

.company-item h3{
    margin-bottom:10px;
    color:#0b4ea2;
    font-size:1.2rem;
    font-weight:700;
}

.company-item p{
    line-height:1.8;
    color:#555;
}

.company-item a{
    color:#0b4ea2;
    text-decoration:none;
}

.company-item a:hover{
    text-decoration:underline;
}

.company-map iframe{
    width:100%;
    height:100%;
    min-height:380px;
    border:0;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.company-business{
    margin-top:60px;
}

.company-business h3{
    margin-bottom:15px;
    color:#0b4ea2;
    font-size:1.2rem;
    font-weight:700;
}

.company-business p{
    line-height:1.9;
    color:#555;
}

/*=========================================
  Contact
=========================================*/
.contact{
    background:#0B3D91;
    color:#fff;
}

.contact .section-title h2,
.contact .section-title p{
    color:#fff;
}

/* GRID */
.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:60px;
}

/* CARD */
.contact-card{
    background:#fff;
    color:#0B3D91;

    border-radius:14px;
    padding:30px 25px;

    text-align:center;
    text-decoration:none;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:space-between;

    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

/* ICON */
.contact-card i{
    font-size:2.5rem;
    margin-bottom:10px;
    color:#D6001C;
}

/* TITLE */
.contact-card h3{
    margin-bottom:10px;
}

/* INFO */
.contact-info{
    margin:10px 0;
    color:#555;
    font-size:.95rem;
}

/* BUTTON STYLE */
.contact-btn{
    margin-top:15px;
    padding:10px 16px;
    border-radius:6px;
    font-weight:600;
    color:#fff;
}

/* WHATSAPP */
.whatsapp .contact-btn{
    background:#25D366;
}

/* WECHAT */
.wechat .contact-btn{
    background:#07C160;
}

/* EMAIL */
.email .contact-btn{
    background:#0B3D91;
}

/* WECHAT BOX */
.wechat-box{
    display:flex;
    align-items:center;
    gap:12px;
    margin:10px 0;
}

.wechat-box img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:8px;
}

.wechat-box span{
    font-size:.9rem;
    color:#333;
    word-break: break-all;
    overflow-wrap: anywhere;
}

.contact-note{
    margin-top:60px;
    text-align:center;
    display:flex;
    flex-direction:column;
    gap:10px;
}

/*=========================================
  Footer
=========================================*/
.footer{
    background:#081f44;
    color:#fff;
    padding:80px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.footer-box h3{
    margin-bottom:15px;
    font-size:1.2rem;
}

.footer-box p{
    font-size:.95rem;
    line-height:1.7;
    color:#cfd6e4;
}

.footer-box ul{
    list-style:none;
    padding:0;
}

.footer-box ul li{
    margin-bottom:8px;
    color:#cfd6e4;
    font-size:.95rem;
}

.footer-bottom{
    margin-top:50px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.15);
    text-align:center;
    font-size:.9rem;
    color:#aab4c5;
}

.footer-bottom a{
    color:#aab4c5;
    text-decoration:underline;
    font-size:.85rem;
}

.footer-bottom a:hover{
    color:#fff;
}

/*=========================================
  Tablet
=========================================*/
@media (max-width:1024px){
    .logo-image{
        width:145px;
    }

    .logo-text{
        font-size:.85rem;
    }

    .menu-overlay{
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);

        background: rgba(0,0,0,.25);
        backdrop-filter: blur(2px);

        opacity: 0;
        visibility: hidden;
        transition: .3s;

        z-index: 997;
    }

    .menu-overlay.active{
        opacity: 1;
        visibility: visible;
    }

    .global-nav{
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;

        height: auto;
        min-height: 420px;

        padding: 50px 0 60px;

        background: linear-gradient(180deg,#ffffff 0%,#f5f7fa 100%);
        box-shadow: 0 10px 30px rgba(0,0,0,.08);

        display:flex;
        flex-direction:column;
        justify-content:flex-start;
        align-items:center;

        transform:translateX(100%);
        transition:transform .35s ease;

        z-index:998;
    }

    .global-nav,
    .global-nav * {
        transition: none !important;
    }

    .global-nav ul {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin: 0;
        padding: 0;
    }

    .global-nav ul li a {
        font-size: 1.2rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        padding: 10px 0;
        display: inline-block;
    }

    .global-nav ul li a:hover {
        color: #D6001C;
        transform: translateX(5px);
        transition: 0.2s;
    }

    .global-nav.active {
        transform: translateX(0);
    }

    .lang-switch{
        margin: 40px 0 0;
        display:flex;
        justify-content:center;
        align-items:center;
        gap:12px;
    }

    .lang-switch a{
        min-width:90px;
        height:42px;
        padding:0 18px;

        font-size:1rem;
        font-weight:600;
    }

    .hamburger {
        display: block;
        z-index: 999;
    }













    .strengths-grid{
        grid-template-columns:repeat(2,1fr);
    }

/***** process *****/
    .process-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .process-arrow{
        transform:rotate(90deg);
        justify-self:center;
    }

}


@media (max-width:960px){
/***** contact *****/
    .wechat-box{
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:8px;
    }

}

/* ========================================
   Mobile Header
======================================== */
@media (max-width: 768px) {

/***** hero *****/
    .btn {
        width: 80%;
        text-align: center;
    }

    .hero-btns a {
        max-width: 100%;
    }

    .wechat-inner {
        justify-content: flex-start;
    }

/***** category *****/
    .group-title{
        text-align:center;
        border-left:none;
        border-bottom:3px solid #D6001C;
        display:inline-block;
        padding:0 0 8px;
        margin-bottom:25px;
    }

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

    .cars-grid,
    .other-grid{
        grid-template-columns:1fr;
    }

    .category-card{
        min-height:220px;
    }

/***** toyota *****/
    .toyota-wrap {
        flex-direction: column;
        text-align: center;
    }

    .toyota-btns {
        justify-content: center;
    }

    .toyota-list li {
        text-align: left;
    }

/***** Why Choose NCG *****/
    .strengths-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .strength-card{
        padding:30px 24px;
    }


/***** Export Destinations *****/
    .destination-content{
        max-width:100%;
    }

    .destination-list{
        grid-template-columns:repeat(2,1fr);
        gap:15px 25px;
        max-width:320px;
        margin:0 auto;
    }

    .destination-list li{
        justify-content:flex-start;
    }

/***** process *****/
    .process-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .process-arrow{
        transform:rotate(90deg);
        justify-self:center;
    }


/***** faq *****/
    .faq-list{
        margin-top:40px;
    }

    .faq-question{
        padding:18px 20px;
        align-items:flex-start;
        gap:15px;
    }

    .faq-answer p{
        padding:0 20px 22px;
    }


/***** company *****/
    .company-flex{
        grid-template-columns:1fr;
        gap:40px;
    }

    .company-map iframe{
        min-height:300px;
    }

/***** contact *****/
    .contact-grid{
        grid-template-columns:1fr;
    }

    .wechat-box{
        justify-content:center;
    }

/***** footer *****/
    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

}