:root {
    --header-height: 70px;
    --primary-color: #dc2626;
    --secondary-color: #f87171;
    --accent-color: #4f46e5;
    --dark-bg: #fef2f2;
    --light-bg: #fee2e2;
    --dark-text: #1e293b;
    --light-text: #f8fafc;
    --spacing-unit: 2rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: var(--dark-bg);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 1;
    transition: opacity 0.5s ease;
    padding-top: 0;
}

/* Fixed Header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(254, 242, 242, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
}

.nav-links a {
    color: var(--dark-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.fixed-header.visible {
    transform: translateY(0);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Libre Baskerville', serif;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.contact-link {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 6px;
    color: var(--light-text) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('../images/tokyo-skyline.png');
    background-size: cover;
    background-position: center 40%;
    background-color: #000;
    transform: scale(1.05);
    transition: transform 0.3s ease-out;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title-en {
    font-family: 'Libre Baskerville', serif;
    font-size: 3.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    line-height: 1.3;
}

.hero-title-jp {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    opacity: 0.9;
    margin-top: 0;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.scroll-text {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--light-text);
    border-bottom: 2px solid var(--light-text);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

/* Vision Section */
.vision-section {
    min-height: 100vh;
    padding: var(--spacing-unit);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(248, 113, 113, 0.05));
}

.vision-section h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1;
    transform: translateY(0);
    font-family: 'Libre Baskerville', serif;
    text-align: center;
}

.vision-content {
    max-width: 1400px;
    width: 100%;
    opacity: 1;
    transform: translateY(0);
    padding: 0 2rem;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.vision-image {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    align-items: center;
}

.vision-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.vision-image:hover .vision-img {
    transform: scale(1.05);
}

.vision-text {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.vision-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 2rem 0 1rem;
    font-family: 'Noto Sans JP', sans-serif;
}

.vision-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-text);
    opacity: 0.9;
    margin-bottom: 1rem;
}

.vision-text .vision-points {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0 0 0 0.5rem;
}

.vision-text .vision-points li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.vision-text .vision-points li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}

.vision-text .vision-points li strong {
    font-weight: 700;
    display: inline;
    color: var(--primary-color);
}

.vision-text .vision-points.secondary li {
    padding-left: 1.2rem;
    margin-bottom: 0.6rem;
}

.vision-text .vision-points.secondary li:before {
    width: 6px;
    height: 6px;
    top: 0.6rem;
    background: var(--secondary-color);
}

@media (max-width: 1024px) {
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vision-image {
        order: -1;
        max-height: 400px;
    }
}

/* Main Sections */
.main-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 242, 242, 0.9));
}

.main-title {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Libre Baskerville', serif;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 1rem;
    position: relative;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* Business Sections */
.business-section {
    min-height: auto;
    padding: 4rem 2rem;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(254, 242, 242, 0.8));
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.business-section .content {
    flex: 1;
    max-width: 800px;
}

.business-section h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Libre Baskerville', serif;
}

.business-section p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--dark-text);
    opacity: 0.9;
}

.business-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.business-section li {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.business-section li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.2);
}

.business-section .service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.business-section .service-detail {
    height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--dark-text);
    font-size: 0.95rem;
    line-height: 1.8;
    transform: translateY(10px);
    will-change: transform, opacity, height;
}

.business-section li:hover .service-detail {
    height: auto;
    opacity: 1;
    margin-top: 1.5rem;
    transform: translateY(0);
}

.business-section .visual {
    flex: 1;
    max-width: 600px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.business-section .visual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.business-section .visual:hover .visual-image {
    transform: scale(1.05);
}

/* Company Section */
.company-section {
    min-height: auto;
    padding: var(--spacing-unit);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.company-section h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-text);
    font-family: 'Libre Baskerville', serif;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    width: 100%;
}

.company-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.company-info {
    padding: 2rem;
    background: rgba(220, 38, 38, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 38, 38, 0.2);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

.company-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.company-details {
    padding: 2rem;
    background: rgba(220, 38, 38, 0.15);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 38, 38, 0.2);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

.detail-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.detail-item p {
    line-height: 1.6;
    color: var(--dark-text);
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
    background: var(--dark-bg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    border-radius: 20px;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(220, 38, 38, 0.15);
    border-radius: 20px;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 38, 38, 0.2);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.stat .label {
    color: var(--dark-text);
    text-align: center;
    width: 100%;
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
    padding: var(--spacing-unit);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-section h2 {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Libre Baskerville', serif;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 1rem;
    position: relative;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.contact-container {
    max-width: 800px;
    width: 100%;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 38, 38, 0.2);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
    text-align: center;
}

.contact-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--dark-text);
}

.contact-container .contact-link {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--light-text);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-container .contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.2);
}

/* Breadcrumb Navigation */
.breadcrumb-container {
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: none; /* Hidden by default, will be shown on subpages */
}

.breadcrumbs {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: ">";
    margin-left: 0.5rem;
    color: var(--primary-color);
}

.breadcrumbs a {
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .business-section {
        flex-direction: column;
        padding: 4rem 2rem;
    }

    .business-section .visual {
        max-width: 100%;
        height: 400px;
    }

    .company-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title-en {
        font-size: 2.8rem;
    }

    .hero-title-jp {
        font-size: 1.3rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .vision-text {
        padding: 1.5rem;
    }
    
    .vision-text h3 {
        font-size: 1.6rem;
        margin: 1.5rem 0 0.8rem;
    }
    
    .vision-text p {
        font-size: 1rem;
    }
    
    .vision-text .vision-points li {
        font-size: 1rem;
    }

    .main-title {
        font-size: 3rem;
    }
    
    .business-section {
        padding: 3rem 1.5rem;
    }
    
    .business-section h3 {
        font-size: 2rem;
    }
    
    .business-section .service-title {
        font-size: 1.2rem;
    }

    .business-section li {
        padding: 1.5rem;
    }

    .company-info h3 {
        font-size: 1.5rem;
    }

    .stat .number {
        font-size: 2rem;
    }
    
    .contact-section h2 {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-unit: 1rem;
    }
    
    .fixed-header {
        height: 60px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
    
    .nav-links {
        gap: 0.8rem;
    }
    
    .contact-link {
        padding: 0.4rem 0.8rem;
    }

    .hero-title-en {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-title-jp {
        font-size: 1.1rem;
        margin-top: 0.5rem;
    }
    
    .hero-title {
        gap: 1rem;
    }
    
    .vision-section h2,
    .main-title,
    .contact-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .vision-content {
        padding: 0 1rem;
    }
    
    .vision-grid {
        gap: 1.5rem;
    }
    
    .vision-text {
        padding: 1.2rem;
    }
    
    .vision-text h3 {
        font-size: 1.4rem;
        margin: 1rem 0 0.5rem;
    }
    
    .vision-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }
    
    .vision-text .vision-points {
        margin: 0 0 1rem;
    }
    
    .vision-text .vision-points li {
        font-size: 0.95rem;
        line-height: 1.4;
        padding-left: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .vision-text .vision-points li:before {
        top: 0.5rem;
        width: 6px;
        height: 6px;
    }

    .business-section {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .business-section h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .business-section p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .business-section ul {
        gap: 1rem;
    }
    
    .business-section li {
        padding: 1.2rem;
    }
    
    .business-section .service-title {
        font-size: 1.1rem;
    }
    
    .business-section .visual {
        height: 300px;
    }

    .company-section h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .company-info,
    .company-details,
    .stat {
        padding: 1.2rem;
    }
    
    .company-info h3 {
        font-size: 1.3rem;
    }
    
    .detail-item h4 {
        font-size: 1rem;
    }
    
    .detail-item p,
    .company-info p {
        font-size: 0.95rem;
    }
    
    .stat .number {
        font-size: 1.8rem;
    }
    
    .stat .label {
        font-size: 0.9rem;
    }
    
    .map-container {
        min-height: 300px;
    }

    .contact-container {
        padding: 1.5rem 1rem;
    }
    
    .contact-container p {
        font-size: 1rem;
    }
    
    .contact-container .contact-link {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Hamburger Menu for Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

@media (max-width: 600px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(254, 242, 242, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        left: 0;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
}

/* Small phone screens */
@media (max-width: 360px) {
    .hero-title-en {
        font-size: 1.8rem;
    }
    
    .hero-title-jp {
        font-size: 1rem;
    }
    
    .vision-section h2, 
    .main-title, 
    .contact-section h2 {
        font-size: 1.8rem;
    }
    
    .vision-text h3,
    .business-section h3 {
        font-size: 1.3rem;
    }
    
    .vision-text p,
    .vision-text .vision-points li,
    .business-section p {
        font-size: 0.9rem;
    }
    
    .business-section .service-title {
        font-size: 1rem;
    }
    
    .company-info h3 {
        font-size: 1.2rem;
    }
    
    .contact-container .contact-link {
        padding: 0.7rem 1.2rem;
    }
}

/* Improve Touch Targets for Mobile */
@media (max-width: 768px) {
    .business-section li,
    .contact-link,
    .nav-links a {
        transition: background-color 0.3s ease;
    }
    
    .business-section li:active,
    .contact-link:active,
    .nav-links a:active {
        background-color: rgba(220, 38, 38, 0.1);
    }
    
    /* Optimize images for better performance */
    img {
        will-change: transform;
    }
    
    /* Smooth scrolling for iOS */
    .vision-text,
    .business-section,
    .company-info,
    .company-details,
    .contact-container {
        -webkit-overflow-scrolling: touch;
    }
}
