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

:root {
    --primary-color: #2F2E6C;
    --second-color: #445199;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1C1B1F;
    overflow-x: hidden;
}

.sub-page {
    position: relative;
    isolation:isolate;
    padding: 150px 0 80px;
}

.sub-page::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:100%; 
  background: url('./img/bg04.png') center 150px / 100% auto no-repeat;
  z-index:-1;
  background-position: center 150px;
}

.sub-page.service-sub-page::after{
    background: url('./img/bg05.png') center 200px / 100% auto no-repeat;   
}

.sub-page-header {
    text-align: left;
    margin-bottom: 60px;
    padding-bottom: 20px;
}

.sub-page.service-sub-page .sub-page-header {
    margin-bottom: 20px;
    max-width: 1315px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.sub-page .page-title {
    font-size: 74px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'NivaAlt', sans-serif;
    line-height: 1;
}

.sub-page .page-description {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
}

.sub-page-content {
    margin: 0 auto;
}


.container {
    max-width: 1315px;
    margin: 0 auto;
    padding: 0 20px;
}

.sub-page.service-sub-page .container {
    max-width: unset;
    padding: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FA2F14, #FF6B35);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 1001;
    transition: transform 0.1s ease-out;
}

/* Header */
header {
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #1F407324;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #FA2F14;
    text-decoration: none;
}

.logo-icon {
    display: flex;
}

.company-name {
    margin-left: 10px;
    color: #333;
    font-size: 24px;
    font-weight: 500;
    font-family: 'HiraginoCustom';
}

/* Navigation */
.navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
    display: block;
}

.nav-menu li a:hover {
    color: #FA2F14;
    transform: translateY(-2px);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #FA2F14, #FF6B35);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-consultation {
    background: #FA2F14;
    color: white;
    padding: 12px 24px 14px;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    box-shadow: 0 3px 15px rgba(255, 69, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-consultation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-consultation:hover::before {
    left: 100%;
}

.btn-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.4);
}

/* Hamburger Menu */
.menu-toggle {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 6px;
    transition: all 0.3s ease;
    border-radius: 4px;
    border: 1px solid;
}

.menu-toggle:hover {
    background: rgba(255, 69, 0, 0.1);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: #FA2F14;
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: #FA2F14;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

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

.mobile-menu {
    position: absolute;
    right: 0;
    top: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #FA2F14, #FF6B35);
}

.mobile-logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.menu-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Mobile Navigation */
.mobile-navigation {
    padding: 20px 0;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.mobile-nav-menu li a {
    display: block;
    padding: 18px 20px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #FA2F14, #FF6B35);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-nav-menu li a:hover {
    background: rgba(255, 69, 0, 0.05);
    color: #FA2F14;
    padding-left: 30px;
}

.mobile-nav-menu li a:hover::before {
    transform: scaleY(1);
}

.mobile-nav-menu li:last-child {
    border-bottom: 0;
}

/* Mobile Contact */
.mobile-contact {
    padding: 30px 20px;
    border-top: 1px solid #eee;
    text-align: center;
    background: #f8f9fa;
}

.mobile-btn {
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 20px;
    font-size: 16px;
}

.mobile-contact-info {
    font-size: 14px;
    color: #666;
}

.mobile-contact-info p {
    margin: 5px 0;
    padding: 5px 10px;
    background: white;
    border-radius: 10px;
    border: 1px solid #eee;
}

/* Hero Section */
.hero {
    background: linear-gradient(89.97deg, rgba(31, 64, 115, 0.8) 0.02%, rgba(31, 64, 115, 0.553846) 38.47%, rgba(31, 64, 115, 0) 99.98%),
                linear-gradient(245.3deg, rgba(0, 0, 0, 0) 3.31%, rgba(0, 0, 0, 0.2) 100%),
                url('./img/main_visual.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    position: relative;
    margin-top: 67px;
    overflow: hidden;
}

.hero .container {
    margin: 0;
    max-width: none;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 69, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    animation: heroFloat 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroFloat {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    33% { 
        transform: translate(-20px, -20px) rotate(1deg);
        opacity: 0.5;
    }
    66% { 
        transform: translate(20px, -10px) rotate(-1deg);
        opacity: 0.4;
    }
}

.hero-content {
    z-index: 3;
    position: relative;
    margin-left: 10.8%; 
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
    position: relative;
    z-index: 4;
}

.hero-subtitle {
    font-size: 30px;
    margin-bottom: 32px;
    line-height: 1.5;
    color: #ffffff;
    position: relative;
    z-index: 4;
    font-weight: 500;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.7;
    color: #ffffff;
    max-width: 100%;
    position: relative;
    z-index: 4;
}

.btn-hero {
    background: #FA2F14;
    color: white;
    padding: 15px 32px 18px;
    border: none;
    border-radius: 100px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.6s;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:hover {
    transform: translateY(-5px) scale(1.05);
}

.btn-hero:active {
    transform: translateY(-2px) scale(1.02);
}

/* Tire Pro Section */
.tire-pro{
  position:relative;
  isolation:isolate;
  padding:88px 0 0;
  background: #ffffff;
}

.tire-pro::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:100%; 
  background: url('./img/bg01.png') center bottom / 100% auto no-repeat;
  z-index:-1;
}

.tire-pro-header {
    text-align: left;
    margin-bottom: 60px;
}

.tire-pro-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
}

.tire-pro-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: flex-start;
}

.tire-pro-badge {
    color: #2F2E6C;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.tire-pro-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 40px;
    color: #2F2E6C;
}

.tire-pro-title .highlight {
    color: #ffffff;
    font-size: 84px;
    text-shadow:calc(3px * 1) 0 0 #0B2CE5,
                calc(3px * 0.9239) calc(3px * 0.3827) 0 #0B2CE5,
                calc(3px * 0.7071) calc(3px * 0.7071) 0 #0B2CE5,
                calc(3px * 0.3827) calc(3px * 0.9239) 0 #0B2CE5,
                0 calc(3px * 1) 0 #0B2CE5,
                calc(3px * -0.3827) calc(3px * 0.9239) 0 #0B2CE5,
                calc(3px * -0.7071) calc(3px * 0.7071) 0 #0B2CE5,
                calc(3px * -0.9239) calc(3px * 0.3827) 0 #0B2CE5,
                calc(3px * -1) 0 0 #0B2CE5,
                calc(3px * -0.9239) calc(3px * -0.3827) 0 #0B2CE5,
                calc(3px * -0.7071) calc(3px * -0.7071) 0 #0B2CE5,
                calc(3px * -0.3827) calc(3px * -0.9239) 0 #0B2CE5,
                0 calc(3px * -1) 0 #0B2CE5,
                calc(3px * 0.3827) calc(3px * -0.9239) 0 #0B2CE5,
                calc(3px * 0.7071) calc(3px * -0.7071) 0 #0B2CE5,
                calc(3px * 0.9239) calc(3px * -0.3827) 0 #0B2CE5;
    margin-right: 15px;
    line-height: 1;
}

.tire-pro-title .main-text {
    color: #2F2E6C;
    font-size: 64px;
    font-weight: 700;
    margin-top: 15px;
    display: block;
}

.tire-pro-features {
    list-style: none;
    padding: 0 0 60px;
    background: url('./img/bg02.png') right bottom / 100% auto no-repeat;

}

.tire-pro-description {
    font-size: 20px;
    line-height: 1.8;
    margin: 60px 0 0;
}

.btn-more {
    background: transparent;
    color: #2F2E6C;
    border: 1px solid #2F2E6C;
    padding: 15px 48px;
    border-radius: 100px;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.btn-more::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -40px;
    width: 60px;
    height: 1px;
    background: #2F2E6C;
    z-index: 1;
}

.btn-more:hover {
    color: white;
    background: #2F2E6C;
}

.tire-pro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.tire-pro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contact Section */
.contact-section {
    padding: 0;
    max-width: 922px;
    margin: 80px auto 0;
}

footer .contact-section {
    margin-top: 0px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: #ffffff;
    overflow: hidden;
    border: 1px solid #2F2E6C;
    padding: 28px 0;
}

 .contact-card {
    background: white;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0 40px;
    gap: 28px;
    justify-content: center;
}

.contact-card:first-child {
    border-right: 1px solid #2F2E6C;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2F2E6C;
}

.contact-card .subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 12px;
}

.phone-number {
    background: #FA2F14;
    color: white;
    padding: 15px 24px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.phone-number:hover {
    background: #E02A12;
    transform: translateY(-2px);
}

.tire-pro .btn-contact {
    background: #FA2F14;
    color: white;
    padding: 15px 35px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.tire-pro .btn-contact:hover {
    background: #E02A12;
    transform: translateY(-2px);
}

.tire-pro .contact-note {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
}

/* about Section */
.about {
    background: #F5FAFF;
    position: relative;
    isolation:isolate;
}

.about::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:100%; 
  background: url('./img/bg03.png') center 110px / 100% auto no-repeat;
  z-index:-1;
  background-position: left 110px;
  background-size: 140%;
}

/* Services Section */
.services {
    padding: 100px 0;
}

@keyframes backgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.section-title {
    text-align: left;
    font-size: 74px;
    color: #2F2E6C;
    font-weight: 700;
    position: relative;
    z-index: 2;
    font-family: 'NivaAlt';
    line-height: 77px;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: left;
    font-size: 24px;
    margin-bottom: 45px;
    color: #2F2E6C;
    position: relative;
    z-index: 2;
    font-weight: 700;
}

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

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 24px;
    width: 1122px;
}

.service-item:nth-child(1) {
    margin-left: 0;
}

.service-item:nth-child(2) {
    margin-left: 75px;
}

.service-item:nth-child(3) {
    margin-left: 150px;
}

.service-item:last-child {
    margin-bottom: 45px;
}

.service-item::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 150px;
    height: 8px;
    background: #1B237C;
    border-radius: 4px;
    z-index: 2;
}

.service-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #D5D5D5;
}

.service-number {
    font-size: 110px;
    font-weight: 900;
    color: #1B237C;
    margin-right: 32px;
    line-height: 1;
    width: 150px;
    position: relative;
    font-family: 'NivaAlt';
}

.service-content {
    flex: 1;
    padding-top: 20px;
}

.service-title {
    font-size: 40px;
    font-weight: 600;
    color: #445199;
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-description {
    font-size: 20px;
    line-height: 1.8;
}

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

.btn-service-more {
    background: transparent;
    color: #666;
    border: 2px solid #666;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-service-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #666;
    transition: left 0.3s ease;
    z-index: 1;
}

.btn-service-more span {
    position: relative;
    z-index: 2;
}

.btn-service-more:hover::before {
    left: 0;
}

.btn-service-more:hover {
    color: white;
    border-color: #666;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Strengths Section */
.strengths {
    padding: 0 0 100px;
    position: relative;
}

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

.strength-card {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    background: transparent;
}

.strength-card:hover {
    transform: translateY(-10px);
}

.strength-icon {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
}

.strength-content{
    background: white;
    border-radius: 16px;
    padding: 60px 24px 24px;
    margin-top: -20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    min-height: 320px;
}

.strength-card:hover .strength-content {
    box-shadow: 0 10px 20px rgba(47, 46, 108, 0.15);
}

.mechanic-illustration {
    position: relative;
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.mechanic-illustration img {
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.strength-card:hover .mechanic-illustration img {
    transform: scale(1.05);
}

.strength-title {
    font-size: 28px;
    font-weight: 700;
    color: #2F2E6C;
    margin-bottom: 16px;
    line-height: 1.4;
    text-align: left;
}

.strength-description {
    font-size: 20px;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

/* Flow Section */
.flow {
    padding: 0 0 100px;
    position: relative;
}

.flow-timeline {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

/* Timeline Vertical Line */
.flow-timeline::before {
    content: '';
    position: absolute;
    left: 61px;
    top: 65px;
    bottom: 85px;
    width: 1px;
    background: #2F2E6C;
    z-index: 1;
}

/* Flow Start */
.flow-start {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 90px;
}

.flow-start::before {
    content: '';
    position: absolute;
    left: 54px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: #2F2E6C;
    border-radius: 80px;
    z-index: 2;
}

.flow-start .flow-label, .flow-end .flow-label {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid #2F2E6C;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #2F2E6C;
}

/* Flow Step */
.flow-step {
    position: relative;
    margin-bottom: 60px;
    padding-left: 110px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.flow-connector {
    position: absolute;
    left: 54px;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #2F2E6C;
    border-radius: 50%;
    z-index: 2;
    transform: translateY(-50%);
}

.flow-step-number {
    background: #2F2E6C;
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    position: relative;
    z-index: 3;
    margin-left: 50px;
}

.flow-step-number:before {
    content: '';
    width: 62px;
    height: 1px;
    background: #2F2E6C;
    position: absolute;
    left: -75px;
    top: 20px;
}

.flow-step-content {
    flex: 1;
    background: white;
    border: 1px solid #2F2E6C;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.flow-step-content:hover {
    border-color: #2F2E6C;
    box-shadow: 0 5px 20px rgba(47, 46, 108, 0.1);
    transform: translateY(-5px);
    border: 2px solid #2F2E6C;
}

.flow-step-title {
    font-size: 28px;
    font-weight: 700;
    color: #2F2E6C;
    margin-bottom: 12px;
    line-height: 1.4;
}

.flow-step-description {
    color: #333;
    line-height: 1.8;
}

.flow-step-description p {
    font-size: 20px;
}

.flow-step-description p:last-child {
    margin-bottom: 0;
}

/* Flow End */
.flow-end {
    position: relative;
    padding-left: 35px;
    padding-top: 30px;
}

.flow-end::before {
    position: absolute;
    left: 54px;
    top: 0;
    width: 16px;
    height: 16px;
    background: #2F2E6C;
    border-radius: 50%;
    z-index: 2;
    content: '';
}

/* information Section */
.information {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.information-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.information-title-area {
    flex: 1;
}

.information-more-btn {
    flex-shrink: 0;
}

.btn-more-sec {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: transparent;
    border: none;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.btn-more-sec span {
    transition: color 0.3s ease;
}

.btn-arrow {
    width: 64px;
    height: 64px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: 1;
}

.btn-arrow svg {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-more-sec:hover .btn-arrow::before {
    left: 0;
}

.btn-more-sec:hover .btn-arrow {
    transform: translateX(5px);
    border-color: var(--primary-color);
}

.btn-more-sec:hover .btn-arrow svg path{
    fill: white;
    transform: translateX(2px);
}

.btn-more-sec:hover span {
    color: var(--primary-color);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-post-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    margin-bottom: 10px;
}

.blog-post-visible {
    opacity: 1;
    transform: translateY(0);
}

.blog-post-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 12px;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.15);
}

.blog-post-content {
    padding-top: 16px;
}

.blog-post-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.blog-post-tag {
    display: inline-block;
    color: #8B8B8B;
    font-size: 16px;
    text-decoration: none;
}

.blog-post-tag:hover {
    color: var(--second-color);
}

.blog-title {
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-post-title a {
    font-size: 20px;
    font-weight: 600;
    color: var(--second-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.blog-post-itle a:hover {
    color: var(--second-color);
}

.blog-post-date {
    font-size: 18px;
    font-weight: 600;
}

/* News Section */
.news {
    padding: 50px 0 0;
    background: #ffffff;
    position: relative;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 20px;
}

.news-title-area {
    flex: 1;
}

.news-more-btn {
    flex-shrink: 0;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 50px;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #E5E5E5;
    transition: all 0.3s ease;
    position: relative;
}

.news-item:first-child {
    border-top: 1px solid #E5E5E5;
}

.news-item:hover {
    background: rgba(47, 46, 108, 0.02);
    transform: translateX(5px);
}

.news-item.important {
    background: rgba(255, 47, 20, 0.02);
    border-left: 4px solid #FA2F14;
    padding-left: 16px;
}

.news-item.important:hover {
    background: rgba(255, 47, 20, 0.05);
}

.news-category {
    flex-shrink: 0;
    margin-right: 30px;
}

.category-tag {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--primary-color);
    font-size: 22px;
    font-weight: 600;
    background: white;
    transition: all 0.3s ease;
    min-width: 100px;
    text-align: center;
}

.category-tag.important {
    border-color: #FA2F14;
    color: #FA2F14;
    background: rgba(255, 47, 20, 0.05);
}

.news-content {
    flex: 1;
    padding-right: 20px;
}

.news-title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
}

.news-title a {
    color: var(--second-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.news-title a:hover {
    color: var(--second-color);
}

.news-item.important .news-title a:hover {
    color: #FA2F14;
}

.news-date {
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 600;
    min-width: 100px;
    text-align: right;
}

.news-post-hidden {
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
    display: none;
    overflow: hidden;
    margin: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);   
}

.news-post-visible {
    opacity: 1;
    display: flex;
    transform: translateY(0);
}

.no-news {
    text-align: center;
    padding: 60px 20px;
    font-size: 24px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #333 0%, #2c2c2c 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0,10 Q25,0 50,10 T100,10 V20 H0 Z" fill="rgba(255,69,0,0.1)"/></svg>');
    background-repeat: repeat-x;
    animation: contactWave 15s ease-in-out infinite;
}

@keyframes contactWave {
    0%, 100% { 
        transform: translateX(0) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateX(-50px) scale(1.1);
        opacity: 0.6;
    }
}

.contact h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.contact p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

#contact .contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

#contact .contact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

#contact .contact-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,69,0,0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

#contact .contact-item:hover::before {
    transform: scale(1);
}

#contact .contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    border-color: rgba(255, 69, 0, 0.3);
}

#contact .contact-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #FA2F14;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

#contact .contact-item p {
    margin-bottom: 0;
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, 
        #ffffff 0%, 
        #ffffff 35%, 
        #F5FAFF 35%, 
        #F5FAFF 100%);
    padding: 60px 0 0;
    position: relative;
}

/* Store Information Section */
.footer-store-info {
    margin-bottom: 16px;
    max-width: 922px;
    margin-left: auto;
    margin-right: auto;
}

.store-logo {
    text-align: center;
    margin-bottom: 30px;
}

.store-logo svg {
    width: 400px;
    height: 92px;
}

.store-image {
    text-align: center;
    margin-bottom: 30px;
}

.store-image img {
    width: 100%;
    height: 377px;
    object-fit: cover;
}

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

.store-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
}

.instagram-icon {
    padding-top: 11px;
}

.store-address {
    font-size: 16px;
    margin-bottom: 25px;
}

.access-buttons {
    display: flex;
    justify-content: start;
    gap: 12px;
    flex-wrap: wrap;
}

.access-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 3px 12px 3px;
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-size: 14px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
}

.access-btn:hover {
    background: #dbdbf4;
    transform: translateY(-2px);
}

.access-icon {
    padding-top: 6px;
}

/* Route Modal */
.route-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
}

.route-modal.active {
    opacity: 1;
    visibility: visible;
}

.route-modal-overlay {
    background: rgba(0, 10, 25, 0.14);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.route-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.route-modal.active .route-modal-content {
    transform: scale(1);
}

.route-modal-header {
    padding: 24px 40px;
    border-bottom: 1px solid #D9D9D9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
}

.route-modal-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.route-modal-body {
    padding: 0;
}

.route-map {
    position: relative;
    text-align: center;
    padding: 20px 20px 0;
    display: flex;
    gap: 16px;
}

.route-map img {
    max-width: calc(100% / 2 - 8px);
    height: auto;
}

.route-description {
    padding: 30px;
    background: white;
}

.route-description p {
    line-height: 1.8;
    font-size: 16px;
}

.route-description p:last-child {
    margin-bottom: 0;
}

.route-modal-footer {
    padding: 0px 30px 24px;
    text-align: center;
}

.route-close-btn {
    background: #ffffff;
    color: var(--primary-color);
    border:1px solid var(--primary-color);
    padding: 11px 48px;
    border-radius: 25px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.route-close-btn:hover {
    background: #1f1e4a;
    transform: translateY(-8px);
    color: #ffffff;
}

/* Contact Information Section */
.footer-contact {
    margin-bottom: 40px;
    max-width: 922px;
    margin-left: auto;
    margin-right: auto;
}

.phone {
    color: #FA2F14;
    font-size: 28px;
    font-weight: 600;
}

.hours-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.hours-detail {
    font-size: 14px;
    line-height: 1.6;
}

.payment-title {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.payment-icon {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.payment-icon.cash {
    background: #666;
}

.payment-icon.visa {
    background: #1a1f71;
}

.payment-icon.jcb {
    background: #0066cc;
}

.payment-icon.mastercard {
    background: #eb001b;
}

.payment-icon.amex {
    background: #006fcf;
}

.payment-icon.paypay {
    background: #ff6900;
}

.payment-note {
    font-size: 12px;
    color: #666;
}

/* Contact Buttons */

.contact-wrap {
    display: flex;
    justify-content:space-between;
    margin-bottom: 40px;
}


.contact-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    overflow: hidden;
}

.contact-button-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: white;
    transition: all 0.3s ease;
}

.contact-button-card:first-child {
    border-right: 2px solid var(--primary-color);
}

.contact-button-card:hover {
    background: rgba(47, 46, 108, 0.02);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-content {
    flex: 1;
}

.contact-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.contact-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #FA2F14;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #E02A12;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(250, 47, 20, 0.3);
}

/* Copyright */
.footer-copyright {
    padding: 20px 0;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 14px;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 60px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FA2F14, #FF6B35);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #E03E00, #FF5722);
}

/* Loading State */
.loading {
    opacity: 0;
    pointer-events: none;
}

body.loaded .loading {
    opacity: 1;
    pointer-events: auto;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, #FA2F14, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-outline {
    background: transparent;
    color: #FA2F14;
    border: 2px solid #FA2F14;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: #FA2F14;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

/* Contact Modal Styles */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 25px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #FA2F14, #FF6B35);
    color: white;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px 25px;
}

.modal-body p {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-option {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.05), transparent);
    transition: left 0.5s ease;
}

.contact-option:hover::before {
    left: 100%;
}

.contact-option:hover {
    border-color: #FA2F14;
    background: rgba(255, 69, 0, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.1);
}

.contact-option span {
    font-size: 28px;
    margin-right: 20px;
    min-width: 40px;
    text-align: center;
}

.contact-option div {
    flex: 1;
}

.contact-option strong {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: #333;
}

.contact-option p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Load More Button */
.blog-load-more {
    text-align: center;
}

.load-more-btn {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    color: white;
    transition: left 0.3s ease;
    z-index: 1;
}

.load-more-btn span {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.load-more-btn:hover::before {
    left: 0;
}

.load-more-btn:hover {
    color: white;
    transform: translateY(-2px);
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.load-more-btn.loading {
    pointer-events: none;
}

.load-more-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 3;
}

.blog-post-hidden {
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
    height: 0;
    overflow: hidden;
    margin: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.blog-post-animating {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    margin-bottom: 40px;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-delay: var(--animation-delay);
}

.blog-single-article {
    max-width: 922px;
    margin: 0 auto;
}

/* Single Post Header */
.blog-single-header {
    margin-bottom: 30px;
}

.blog-single-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.blog-single-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-direction: column;
}

.blog-single-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-single-tag {
    color: #8B8B8B;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
}

.blog-single-tag:hover {
    color: var(--primary-color);
}

.blog-single-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 20px;
    color: #717171;
    font-weight: 400;
}

.blog-single-date svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Featured Image */
.blog-single-featured-image {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.blog-single-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Single Post Content */
.blog-single-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.blog-single-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.blog-single-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 16px 0;
    line-height: 1.5;
    background-color: #F5F5F5;
    padding: 8px;
}

.blog-single-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 24px 0 12px 0;
    line-height: 1.5;
}

/* WordPress Block List Styles */
.blog-single-content ul,
.blog-single-content ol,
.blog-single-content .wp-block-list {
    margin: 20px 0;
    list-style-position: inside;
}

/* Image grid for multiple images */
.blog-single-content .image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

.blog-single-content .image-grid img {
    width: 100%;
    border-radius: 8px;
    height: auto;
}

.blog-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
}

/* Navigation */
.blog-single-navigation {
    margin-top: 60px;
    text-align: center;
}

.back-to-blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 100px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.back-to-blog-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    transition: left 0.3s ease;
    z-index: -1;
}

.back-to-blog-link svg {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.back-to-blog-link span {
    position: relative;
    z-index: 2;
}

.back-to-blog-link:hover::before {
    left: 0;
}

.back-to-blog-link:hover {
    color: var(--primary-color);
}

.back-to-blog-link:hover svg {
    transform: translateX(-3px);
}

/* Related Posts Section */
.related-posts-section {
    padding: 40px 0;
}

.related-posts-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 24px 0;
    text-align: left;
}

.blog-single-category {
    display: flex;
    gap: 10px;
}

.category-label {
    display: inline-block;
    padding: 4px 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid;
    margin-bottom: 8px;
    color: #1C1B1F;
}

.category-label:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
    color: white;
}

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    background: #F4F4F4;
    border-radius: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
    margin-top: 30px;
}

.service-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 21px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
}

.service-tab.active {
    background: var(--primary-color);
    color: white;
}

.service-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.667);
}

.service-section {
    background-color: #F5FAFF;
    padding-bottom: 60px;
}

.service-section-title {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 48px;
    position: relative;
}

.service-section-title::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 8px;
}

.service-section-subtitle {
    text-align: center;
    font-size: 24px;
    line-height: 1.8;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
    max-width: 1000px;
    padding-left: 20px;
    padding-right: 20px;
}

/* Service Items */
.service-work-list {
    display: flex;
    flex-direction: column;
    gap: 70px;
    padding-bottom: 100px;
    max-width: 1315px;
    margin-left: auto;
    margin-right: auto;
    background: #f6fbff;
}

.service-work-item {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    padding: 0 60px;
}

.service-work-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-work-content {
    flex: 1;
    position: relative;
}

.service-work-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.service-work-number {
    position: relative;
    display: inline-block;
    font-size: 74px;
    line-height: 0.8;
    background: #ffffff;
    color: red;
    padding: 7px 3px 0px;
    font-weight: bold;
    font-family: "NivaAlt";
    -webkit-text-stroke: 2px var(--primary-color);
    paint-order: stroke fill;
}

.service-work-number::after {
    content: '';
    position: absolute;
    top: 34px;
    right: -25px;
    width: 140px;
    height: 2px;
    background: #333;
    transform: rotate(-45deg);
    z-index: -1;
}

.service-work-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.4;
    display: block;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    width: fit-content;
}

.service-work-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #2F2E6C;
    margin-bottom: 24px;
    line-height: 1.3;
}

.service-work-description {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 20px;
    padding: 0 0 0 24px;
}

.service-work-description p {
    margin-bottom: 12px;
}

.service-work-note {
    font-size: 18px;
    color: #595959;
    line-height: 1.6;
}

.service-work-image {
    flex: 0 0 400px;
    text-align: center;
}

.service-work-image img {
    max-height: 345px;
    max-width: 380px;
    height: auto;
}

/* Lineup Section */
.lineup-section {
    padding: 80px 0;
    background: #ffffff;
}

.lineup-container {
    max-width: 1315px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.lineup-title {
    font-size: 48px;
    font-weight: 700;
    color: #2F2E6C;
    margin-bottom: 20px;
    font-family: 'NivaAlt', sans-serif;
}

.lineup-description {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

/* Slider Container */
.lineup-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-wrapper.no-transition {
    transition: none;
}

.slider-slide {
    max-width: 100%;
    display: flex;
    gap: 40px;
    padding: 0;
    flex-shrink: 0;
}

/* Tire Card */
.slider-slide {
    display: flex;
    gap: 50px;
    min-width: 100%;
    flex-shrink: 0;
    align-items: stretch; 
    min-height: 400px; 
}

.tire-card {
    flex: 0 0 calc((100% - 50px) / 2);
    width: calc((100% - 50px) / 2);
    max-width: calc((100% - 50px) / 2);
    display: flex;
    align-items: center;
    background: url(./img/bg06.png) right center no-repeat;
    box-sizing: border-box;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    min-height: 400px;
}

.tire-image {
    max-height: 340px;
    margin: 0 50px 0;
    transition: transform 0.4s ease;
    object-fit: contain;
}

.tire-card:hover .tire-image {
    transform: scale(1.05) rotate(5deg);
}

.tire-description {
    display: flex;
    flex-direction: column;
}

.tire-name {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 1.5px;
}

.tire-content {
    font-size: 20px;
    margin-bottom: 16px;
    line-height: 1.6;
    padding-right: 20px;
}

.tire-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tire-tag {
    padding: 6px;
    border: 1px solid #595959;
    font-size: 16px;
    color: #595959;
}
.tire-tag-small {
    padding: 2px 4px;
    border: 1px solid #595959;
    font-size: 14px;
    color: #595959;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-bottom: 20px;
}

.slider-arrow {
    width: 60px;
    height: 60px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: #2F2E6C;
    transform: scale(1.1);
}

.slider-arrow:hover svg {
    stroke: white;
}

.slider-dots {
    display: flex;
    gap: 16px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #EBEBEB;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #2F2E6C;
}

/* Tab Navigation */
.lineup-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.lineup-tab {
    padding: 12px 30px;
    border: 2px solid #2F2E6C;
    border-radius: 50px;
    background: white;
    color: #2F2E6C;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lineup-tab.active {
    background: #2F2E6C;
    color: white;
}

.lineup-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(47, 46, 108, 0.2);
}

/* Grid View */
.lineup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 52px;
}

.tire-card-small {
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
}

.tire-card-small-description {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    width: 100%;
}

.tire-image-small {
    height: auto;
    max-height: 185px;
    margin: 0 24px 20px 0;
    object-fit: contain;
}

.tire-name-small {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}

.tire-category-tabs-wrapper {
    position: relative;
    margin: 30px 0;
    border-bottom: 1px solid #BABABA;
    border-left: 1px solid #BABABA;
}

.tire-category-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #BABABA #f0f0f0;
}

.tire-category-tabs::-webkit-scrollbar {
    height: 6px;
}

.tire-category-tabs::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.tire-category-tabs::-webkit-scrollbar-thumb {
    background: #2F2E6C;
    border-radius: 3px;
}

.tire-category-tab {
    position: relative;
    padding: 12px;
    background: transparent;
    border: 1px solid #BABABA;
    border-bottom: none;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.05em;
    transform: skew(20deg) translate(-15px, 0); 
    border-radius: 8px 0 0 0;
    min-width: 212px;
}

.tire-category-tab > * {
    transform: skew(-20deg); 
    display: inline-block;
}

.tire-category-tab::before {
    content: attr(data-text);
    transform: skew(-20deg);
}

.tire-category-tab:hover {
    background: #E8E8F5;
}

.tire-category-tab.active {
    background: #2F2E6C;
    color: white;
    z-index: 2;
}

/* 作業内容補足セクション */
.work-supplement-section {
    margin: 0 20px;
    max-width: 1315px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.work-supplement-container {
    margin: 0 auto;
    padding: 60px;
    background: white;
    border-radius: 16px;
    border:1px solid #BABABA;
}

.work-supplement-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.work-supplement-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.4;
}

.work-supplement-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.work-supplement-text p {
    margin-bottom: 16px;
}

.work-supplement-image {
    flex: 0 0 50%;
}

.work-supplement-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* 持ち込みタイヤセクション */
.bring-tire-section {
    padding: 40px 0;
}

.bring-tire-container {
    max-width: 1315px;
    margin: 0 auto;
    padding: 0 20px;
}

.bring-tire-title {
    font-size: 20px;
    text-align: left;
    font-weight: 400;
    color: #595959;
}

.bring-tire-text {
    font-size: 20px;
    line-height: 1.8;
    text-align: left;
    margin: 0 auto;
    color: #595959;
}

/* 注意事項セクション */
.notice-section {
    max-width: 1315px;
    margin: 0 auto;
    padding: 0 20px;
}

.notice-box {
    display: flex;
    gap: 50px;
    padding: 40px 60px;
    background: #FAFAFA;
    border-radius: 16px;
    border: 1px solid #BABABA;
    align-items: center;
}

.notice-icon {
    flex-shrink: 0;
    text-align: center;
}

.notice-content {
    flex: 1;
}

.notice-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-top: 8px;
}

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

.notice-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.notice-list li::before {
    content: url(./img/icon01.svg) ;
    position: absolute;
    left: 0;
    color: #2F2E6C;
    font-weight: bold;
    top: 3px;
}

.notice-list li:last-child {
    margin-bottom: 0;
}

/* 無料安全点検セクション */
.free-inspection-section {
    margin: 40px auto 0;
    overflow: hidden;
    position: relative;
    padding: 0 20px;
}

.free-inspection-wrap {
    background: url(./img/main_visual.jpg) center 20% / cover no-repeat;
    border-radius: 16px;
    max-width: 1275px;
    margin-left: auto;
    margin-right: auto;
}

.free-inspection-overlay {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    color: white;
    background: linear-gradient(90deg, rgba(67, 67, 82, 0.7) 0%, rgba(67, 67, 82, 0.32) 100%);
    border-radius: 16px;
}

.free-inspection-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.free-inspection-text {
    font-size: 20px;
    line-height: 1.8;
    color: white;
}

.service-flow-section {
    padding: 80px 0;
    background: #ffffff;
}

.service-flow-container {
    max-width: 1315px;
    margin: 0 auto;
    padding: 0 20px;
}


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


@media (max-width: 768px) {
    .navigation {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
    .logo {
        font-size: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .logo svg {
        width: 273px;
    }

    .company-name {
        font-size: 16px;
        margin-left: 70px;
    }

    .btn-consultation {
        display: none;
    }

    .tire-pro {
        padding: 40px 0 0;
    }

    .tire-pro-header {
        margin-bottom: 24px;
    }

    .tire-pro-badge {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .tire-pro-title .main-text {
        font-size: 26px;
        margin-top: 4px;
    }

    .tire-pro-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .tire-pro-text {
        gap: 24px;
    }

    .tire-pro-description {
        margin-top: 0;
        font-size: 16px;
    }

    .tire-pro-features {
        padding: 0;
        background: url(./img/bg02.png) right 80% / 100% auto no-repeat;
    }

    .tire-pro-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .tire-pro-title .highlight {
        font-size: 36px;
    }

    .tire-pro .tire-pro {
        padding: 80px 0;
    }

    .contact-section {
        margin-top: 40px;
    }

    .contact-icon svg {
        width: 60px;
    }

    .contact-card h3 {
        font-size: 20px;
    }

    .contact-card .subtitle {
        font-size: 14px;
    }

    .phone-number {
        font-size: 14px;
        padding: 8px 16px;
    }

    .hero-content {
        margin-left: 0;
    }

    .hero {
        padding: 60px 0;
        text-align: center;
        min-height: 80vh;
        background-position: 70%;
        align-items: center;
    }

    .hero h1 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 14px;
        max-width: 100%;
        text-align: left;
        margin-bottom: 16px;
    }

    .btn-hero {
        font-size: 20px;
        padding: 12px 24px;
    }

    .service-number {
        font-size: 65px;
        width: 70px;
    }

    .service-item {
        width: unset;
        margin-bottom: 10px;
    }

    .service-title {
        font-size: 26px;
    }

    .service-description {
        font-size: 16px;
    }

    .service-item::before {
        width: 80px;
    }

    .service-item:nth-child(2), .service-item:nth-child(3) {
        margin-left: 0;
    }

    .about::after {
        background: url(./img/bg03.png) center 40px / 100% auto no-repeat;
        background-position: left 40px;
        background-size: 300%;
    }

    .section-subtitle {
        margin-bottom: 24px;
        font-size: 20px;
        font-weight: 400;
    }

    .section-title {
        font-size: 40px;
        line-height: 1.5;
    }

    .strengths-grid {
        grid-template-columns: 1fr;
    }

    .strength-card {
        margin-bottom: 25px;
    }
    
    .strength-content {
        padding: 48px 20px 20px;
        margin-top: -15px;
        min-height: unset;
    }
    
    .strength-icon {
        height: 120px;
    }
    
    .mechanic-illustration img {
        width: 194px;
    }
    
    .strength-title {
        font-size: 20px;
    }
    
    .strength-description {
        font-size: 16px;
    }
    
    .strength-card:last-child {
        grid-column: unset;
        max-width: none;
    }

    .flow-timeline {
        margin-top: 40px;
    }

    .flow-start {
        margin-bottom: 0;
        padding-left: 30px;
        padding-bottom: 35px;
    }

    .flow-start::before {
        left: 0;
        top: 15px;
    }

    .flow-timeline::before {
        left: 8px;
        top: 35px;
        bottom: 50px;
    }

    .flow-connector {
        left: 0;
    }

    .flow-step-number {
        padding: 6px 16px;
    }

    .flow-step-number:before {
        width: 24px;
        left: -35px;
    }

    .flow-step {
        padding-left: 15px;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 35px;
        align-items: flex-start;
    }

    .flow-step-content {
        margin-left: 25px;
        padding: 24px;
    }

    .flow-step-title {
        font-size: 20px;
    }

    .flow-step-description p {
        font-size: 16px;
    }

    .flow-end {
        padding-top: 0;
        padding-left: 30px;
    }

    .flow-end::before {
        left: 0;
        top: 7px;
    }

    .information {
        padding: 60px 0;
    }
    
    .information-header {
        align-items: center;
        gap: 20px;
    }
    
    .btn-more-sec {
        font-size: 14px;
        gap: 10px;
    }
    
    .btn-arrow {
        width: 52px;
        height: 52px;
    }
    
    .btn-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .blog-post-card:last-child {
        grid-column: unset;
        max-width: none;
    }
    
    .blog-post-image {
        height: 200px;
    }
    
    .blog-post-content {
        padding-top: 8px;
    }
    
    .blog-post-title a {
        font-size: 16px;
    }

    .btn-more-sec span {
        display: none;
    }

    .blog-post-tag {
        font-size: 12px;
    }

    .blog-post-date {
        font-size: 12px;
    }

    .news {
        padding: 60px 0 20px;
    }
    
    .news-header {
        align-items: center;
        gap: 20px;
    }

    .news-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 0;
        gap: 10px;
    }
    
    .news-item:hover {
        transform: none;
        background: rgba(47, 46, 108, 0.02);
    }
    
    .news-category {
        margin-right: 0;
        width: 100%;
    }
    
    .category-tag {
        min-width: auto;
        padding: 6px 10px;
        font-size: 14px;
    }
    
    .news-content {
        padding-right: 0;
        width: 100%;
    }
    
    .news-title {
        font-size: 16px;
    }
    
    .news-date {
        text-align: left;
        min-width: auto;
        font-size: 14px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .store-logo svg {
        width: 238px;
        height: 54px;
    }

    .btn-more {
        padding: 11px 40px;
        font-size: 16px;
    }

    .footer {
        background: linear-gradient(to bottom, 
            #ffffff 0%, 
            #ffffff 15%, 
            #F5FAFF 15%, 
            #F5FAFF 100%);
        padding: 40px 0 0;
        position: relative;
    }

    .store-name {
        font-size: 18px;
        word-break: keep-all;
    }

    .store-address {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .hours-title {
        font-size: 14px;
    }

    .route-map {
        flex-direction: column;
    }

    .route-map img {
        max-width: 100%;
    }

    .route-modal-header {
        padding: 10px 16px;
    }

    .route-modal-title {
        font-size: 18px;
    }

    .route-description {
        padding: 16px;
    }

    .route-close-btn {
        padding: 4px 24px;
        font-size: 16px;
    }

    .route-description p {
        font-size: 14px;
    }

    .sub-page {
        padding: 120px 0 80px;
    }

    .sub-page::after{
        background: url('./img/bg04.png') center 150px / 100% auto no-repeat;
        background-position: center 150px;
        background-size: 200%;
    }

    .sub-page .page-title {
        font-size: 40px;
    }

    .sub-page .page-description {
        font-size: 16px;
    }

    .sub-page-header {
        margin-bottom: 20px;
    }

    .blog-single-title {
        font-size: 18px;
    }

    .blog-single-tag {
        font-size: 14px;
    }

    .blog-single-meta {
        gap: 8px;
        margin-bottom: 24px;
    }

    .blog-single-date {
        font-size: 12px;
    }

    .blog-single-featured-image {
        margin-bottom: 24px;
    }

    .blog-single-navigation {
        margin-top: 30px;
    }

    .category-label {
        font-size: 14px;
    }

    .service-work-header {
        flex-direction: column;
        gap: 18px;
    }

    .service-work-item {
        flex-direction: column;
        padding: 0 15px;
        gap: 16px;
    }

    .service-work-number::before {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 100%; /* 番号の左側 */
        height: 1px;
        width: 33px;
        background: #333;
    }

    /* 右側の線 */
    .service-work-number::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 100%; /* 番号の右側 */
        height: 1px;
        width: 33px;
        background: #333;
    }

    .service-work-number {
        font-size: 40px;
        padding: 10px;
    }

    .service-work-item:nth-child(even){
        flex-direction: column;
    }

    .tire-card-small {
        flex-direction: column;
    }

    .service-tab {
        white-space: normal;
        font-size: 14px;
    }

    .sub-page.service-sub-page::after{
        background: url('./img/bg05.png') center 150px / 100% auto no-repeat;
        background-position: left 0px;
        background-size: 300%;
    }
    
    .service-tabs {
        margin-left:15px;
        margin-right: 15px;
    }

    .service-tab {
        padding: 10px 12px;
    }

    .service-section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .service-section-title::after {
        bottom: -16px;
    }

    .service-section-subtitle {
        font-size: 16px;
        padding: 0 15px;
        text-align: left;
        margin-bottom: 30px;
    }

    .service-work-title {
        font-size: 18px;
    }

    .service-work-description {
        font-size: 16px;
        padding: 0;
    }

    .service-work-image {
        flex: auto;
    }

    .service-work-image img {
        max-width: 100%;
        max-height: auto;
    }

    .service-work-list {
        padding-bottom: 60px;
    }

    .lineup-container {
        max-width: 100%;
        padding: 0 15px;
    }

    .lineup-section {
        padding: 40px 0;
    }

    .lineup-section .service-section-subtitle {
        padding: 0;
    }

     .tire-card {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .tire-category-tabs {
        gap: 5px;
    }
    
    .tire-category-tab {
        padding: 8px;
        font-size: 20px;
        min-width: 140px;
    }

    .lineup-slider {
        margin-bottom: 30px;
    }

    .tire-image-small {
        margin: 0 0 20px;
    }
    
    .tire-name-small {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .tire-tag-small {
        font-size: 12px;
    }

    .tire-tags {
        gap: 8px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .work-supplement-container {
        padding: 24px;
    }

    .work-supplement-section {
        padding: 0 15px;
    }

    .work-supplement-content {
        flex-direction: column;
        gap: 0;
    }

    .work-supplement-title {
        font-size: 21px;
        margin-bottom: 16px;
    }

    .work-supplement-text p {
        font-size: 14px;
    }

    .bring-tire-section {
        padding: 24px 0;
    }

    .bring-tire-title {
        font-size: 14px;
    }

    .bring-tire-text {
        font-size: 14px;
    }

    .notice-box {
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }

    .notice-list li {
        font-size: 14px;
    }

    .free-inspection-overlay {
        padding: 24px;
    }

    .free-inspection-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .free-inspection-text {
        font-size: 14px;
    }

    .bring-tire-container {
        padding: 0 15px;
    }

    .notice-section {
        padding: 0 15px;
    }

    .free-inspection-section {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 18px;
    }

    .mobile-menu {
        width: 280px;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact-item {
        padding: 25px 20px;
    }

    .modal-content {
        margin: 20px;
        max-width: calc(100% - 40px);
    }

    .contact-option {
        padding: 15px;
    }

    .contact-option span {
        font-size: 24px;
        margin-right: 15px;
        min-width: 35px;
    }

    .tire-pro {
        padding: 40px 0 45px;
    }

    .tire-pro-text {
        padding: 0 10px;
    }

    .tire-pro-text {
        padding-right: 0;
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .contact-section {
        margin-left: 20px;
        margin-right: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2px;
        padding: 0;
    }

    .contact-card:first-child {
        border-right: 0;
        border-bottom: 1px solid #2F2E6C;
    }

    .contact-card {
        padding: 24px;
        gap: 16px;
    }

    .contact-icon svg {
        width: 40px;
    }

    .contact-card h3 {
        font-size: 16px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .tire-pro-features li {
        font-size: 15px;
    }

    .services {
        padding: 40px 0;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 60px;
        padding-bottom: 30px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .service-number {
        font-size: 40px;
        font-weight: 400;
        margin-right: 0;
        width: unset;
    }

    .service-content {
        padding-top: 16px;
    }

    .service-title {
        font-size: 18px;
        text-align: left;
    }

    .service-description {
        font-size: 14px;
        text-align: left;
    }

    .service-item {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .service-item::before {
        width: 50px;
    }

    .service-item::before {
        bottom: -3px;
        left: unset;
    }
    
    .strength-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .strength-description {
        font-size: 14px;
    }

    .flow-start .flow-label, .flow-end .flow-label {
        font-size: 14px;
    }

    .flow-step-number {
        font-size: 14px;
    }

    .flow-step-title {
        font-size: 18px;
    }

    .store-image img {
        height: 148px;
    }

    .contact-wrap {
        flex-direction: column;
        gap: 10px;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .sub-page.service-sub-page::after{
        background: url('./img/bg05.png') center 150px / 100% auto no-repeat;
        background-position: -90px 100px;
        background-size: 400%;
    }

    .tire-image {
        max-height: 194px;
        margin: 0 24px 0 0;
    }

    .slider-wrapper {
        min-height: unset;
    }

    .tire-name {
        font-size: 21px;
        margin-bottom: 8px;
    }

    .tire-content {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .tire-tag {
        padding: 2px 4px;
        font-size: 12px;
    }

    .tire-card {
        background-size: contain;
    }
    
    .slider-slide {
        flex-direction: column;
        gap: 20px;
        min-height: unset;
    }

    .lineup-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 360px) {
   
    .section-title {
        font-size: 1.6rem;
    }
    
    .mobile-menu {
        width: 260px;
    }
    
    .service-card {
        padding: 30px 20px;
    }

    .flow-step-description p {
        font-size: 14px;
    }
}
