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

@font-face {
    font-family: 'yu-mincho-regular';
    src: url('font/yu-mincho-regular.ttf') format('truetype');
}

body {
    font-family: 'Noto Sans JP', 'Yu Mincho', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #333333;
    scroll-padding-top: 100px;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(#333, #33333300);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header .container2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-btn,
.line-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.phone-btn:hover {
    transform: scale(1.1);
}

.line-btn:hover {
    transform: scale(1.1);
}

.phone-icon,
.line-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 80px;
    height: auto;
}

.logo img {
    width: 80px;
    height: auto;
}

.logo-icon {
    background: #ffffff;
    color: #1a1a1a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav a.is-current {
    color: #40ACFF !important;
}

.nav a:hover,
.nav a.active {
    color: #40ACFF;
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #40ACFF;
}

/* Header Responsive */
@media (max-width: 768px) {
    .header .container {
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }
    
    .logo {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }
    
    
    .nav {
        display: block;
    }
    
    .mobile-header-actions {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-shrink: 0;
    }
    
    .mobile-phone {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        color: white;
        text-decoration: none;
        font-size: 1.2rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .mobile-phone:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        gap: 4px;
        padding: 0;
    }
    
    .mobile-menu-toggle span {
        width: 24px;
        height: 2px;
        background: white;
        transition: all 0.3s ease;
        display: block;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        z-index: 1000;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }
    .header .container2 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }
    .mobile-menu.active {
        display: flex;
    }
    
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: white;
        font-size: 2rem;
        cursor: pointer;
    }
    
    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }
    
    .mobile-menu li {
        margin: 20px 0;
    }
    
    .mobile-menu a {
        color: white;
        text-decoration: none;
        font-size: 1.5rem;
        font-weight: 500;
        transition: color 0.3s ease;
    }
    
    .mobile-menu a:hover {
        color: #40ACFF;
    }
}

/* Desktop - Hide mobile elements */
@media (min-width: 769px) {
    .mobile-header-actions {
        display: none;
    }
    
    .mobile-menu {
        display: none;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0;
        height: 60px;
    }
    .logo {
        width: 60px;
    }
    
    .logo img {
        height: 60px;
        width: auto;
    }
    
    .mobile-header-actions {
        gap: 15px;
    }
    
    .mobile-phone,
    .mobile-menu-toggle {
        width: 35px;
        height: 35px;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
    }
    
    .mobile-menu a {
        font-size: 1.3rem;
    }
}

/* Hero Section */
.hero {
    height: 320px;
    position: relative;
    display: flex;
    align-items:end;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    padding-bottom: 50px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.66);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-subtitle {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 13px;
}

.hero-title {
    font-size: 42px;
    font-family: 'yu-mincho-regular', serif;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 13px;
}

.hero-line {
    width: 116px;
    height: 2px;
    background: #ffffff;
    margin: 0 auto;
}

/* Portfolio List */
.portfolio-section {
    padding: 100px 0;
    background-color: #333333;
    background-image: url(image/AdobeStock_234444525\ 1\ \(2\).png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-header {
    text-align: center;
    margin-bottom: 76px;
}

.section-title {
    font-size: 32px;
    font-family: 'yu-mincho-regular', serif;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.section-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 90px;
    margin: 0 auto;
}

.line-horizontal {
    width: 100%;
    height: 1px;
    background: #40ACFF;
}

.line-vertical {
    width: 50px;
    height: 1px;
    background: #40ACFF;
}

.portfolio-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 80px;
}

.portfolio-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    animation: fadeInUp 1s ease;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0px;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.portfolio-image {
    overflow: hidden;
    border-radius: 0px;
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);

}

.category-badge {
    position: absolute;
    top: 0px;
    left: 0px;
    background: #40ACFF;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 0px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: #666;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
}

.portfolio-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.portfolio-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-label {
    font-weight: 600;
    color: #fff;
    min-width: 80px;
}

.info-value {
    color: #ffffff;
    font-weight: 500;
}

.divider {
    height: 1px;
    background: #fff;
    margin: 20px 0;
}

.customer-voice {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.voice-label {
    font-weight: 600;
    color: #fff;
}

.voice-text {
    color: #fff;
    line-height: 1.8;
    font-size: 1rem;
}

.portfolio-actions {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.btn-detail,
.btn-more {
    padding: 12px 24px;
    border: 2px solid #40ACFF;
    background: transparent;
    color: #40ACFF;
    text-decoration: none;
    border-radius: 0px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 120px;
}

.btn-detail:hover,
.btn-more:hover {
    background: #40ACFF;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

.page-arrow,
.page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #40ACFF;
    color: #40ACFF;
    text-decoration: none;
    border-radius: 50%;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-arrow:hover:not(.disabled),
.page-number:hover,
.page-number.active {
    background: #40ACFF;
    color: #ffffff;
}

.page-arrow.disabled {
    border-color: #666;
    color: #666;
    cursor: not-allowed;
}

.page-arrow.disabled:hover {
    background: transparent;
    color: #666;
}

/* Footer */
.footer {
    background: #1E1E1E;
    padding: 56px 100px 5px 100px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-contact {
    width: 300px;
}

.phone-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.phone-section i {
    width: 17px;
    height: 23px;
    background: #ffffff;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.phone-number {
    font-size: 30px;
    font-weight: 500;
    color: #ffffff;
    line-height: 50px;
}

.hours-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    align-items: start;
    gap: 8px;
}

.hours-label {
    width: 80px;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
}

.hours-time {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
}

.footer-logo {
    width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-logo-image {
    width: 70%;
    height: auto;
}

.footer-line {
    width: 140px;
    height: 3px;
    background: #40ACFF;
}

.footer-title {
    font-size: 36px;
    font-family: 'yu-mincho-regular', serif;
    font-weight: 800;
    color: #ffffff;
}

.footer-nav {
    display: flex;
    gap: 69px;
    width: 300px;
}

.nav-column {
    display: flex;
    flex-direction: column;
    gap: 54px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-item:hover span {
    color: #fff;
}

.nav-item a {
    text-decoration: none;
    color: #fff;
}

.nav-item span {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    width: 60px;
}

.nav-arrow {
    width: 5px;
    height: 11px;
    background: #40ACFF;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* Floating Action Button */
.fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.fab a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #40ACFF;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(64, 172, 255, 0.4);
    transition: all 0.3s ease;
}

.fab a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(64, 172, 255, 0.6);
}

.fab-icon {
    font-size: 24px;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #40ACFF;
    z-index: 1001;
    transition: width 0.1s ease;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading Animation */
.loading {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #333333 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 999999 !important;
    transition: opacity 0.5s ease !important;
}

.loading.hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    display: none !important;
    visibility: hidden !important;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #555;
    border-top: 3px solid #40ACFF;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .portfolio-image img {
        height: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .portfolio-item {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0px;
        background: none;
    }

    .phone-number img.phone-icon {
        height: 15px!important;
    }

    .portfolio-item:hover {
        background: none;
        transform: none;
        }


        .placeholder-image {
            height: 250px;
        }
        
        .divider {
            margin: 0;
        }
    .portfolio-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-nav {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .portfolio-content {
        gap: 20px;
    }
    
    .info-row {
        flex-direction: row;
        align-items: flex-start;
        gap: 5px;
    }
    
    .pagination {
        gap: 10px;
    }
    
    .page-arrow,
    .page-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 20px;
    }
} 

/* Footer Responsive */
@media (max-width: 1400px) {
    .footer-nav {
        gap: 25px;
    }
    
    .nav-column {
        gap: 20px;
    }
    
    .nav-item {
        min-width: 70px;
        padding: 8px 10px;
    }
    
    .nav-item a {
        font-size: 15px;
        gap: 8px;
    }
}

@media (max-width: 1200px) {
    .footer-nav {
        gap: 20px;
    }
    
    .nav-column {
        gap: 15px;
    }
    
    .nav-item {
        min-width: 65px;
        padding: 7px 8px;
    }
    
    .nav-item a {
        font-size: 14px;
        gap: 6px;
    }
}

@media (max-width: 1024px) {
    .footer {
        padding: 50px 30px;
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .footer-nav {
        gap: 15px;
    }
    
    .nav-column {
        gap: 12px;
    }
    
    .nav-item {
        min-width: 60px;
        padding: 6px 8px;
    }
    
    .nav-item a {
        font-size: 13px;
        gap: 5px;
    }
}

@media (max-width: 900px) {
    .footer {
        padding: 45px 25px;
    }
    
    .footer-content {
        gap: 35px;
    }
    
    .footer-nav {
        gap: 12px;
    }
    
    .nav-column {
        gap: 10px;
    }
    
    .nav-item {
        min-width: 55px;
        padding: 5px 6px;
    }
    
    .nav-item a {
        font-size: 12px;
        gap: 4px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }
    
    .footer-contact {
        width: 100%;
        max-width: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .phone-section {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .phone-number {
        font-size: 24px;
    }
    
    .hours-section {
        gap: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hours-row {
        justify-content: center;
        gap: 10px;
    }
    
    .hours-label {
        width: auto;
        min-width: 80px;
    }
    
    .footer-logo {
        width: 100%;
        max-width: 251px;
    }
    
    .footer-nav {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        width: 100%;
        max-width: 400px;
    }
    
    .nav-column {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
    
    .nav-item {
        text-align: center;
        min-width: 80px;
        padding: 8px 12px;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .nav-item:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-item a {
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: center;
        white-space: nowrap;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 35px 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-nav {
        gap: 25px;
    }
    
    .nav-column {
        gap: 20px;
    }
    
    .nav-item {
        min-width: 75px;
        padding: 7px 10px;
    }
    
    .nav-item a {
        font-size: 13px;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 15px;
    }
    
    .phone-number {
        font-size: 20px;
    }
    
    .hours-label,
    .hours-time {
        font-size: 16px;
        text-align: left;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-column {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    
    .nav-item {
        padding: 10px 8px;
        min-width: 70px;
    }
    
    .nav-item a {
        font-size: 14px;
        gap: 6px;
    }
} 

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 50px;
    }
    
    .commitment-number {
        font-size: 80px;
    }
    
    .vision-content {
        flex-direction: column;
        text-align: center;
    }
    
    .store-content,
    .company-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav ul {
        gap: 20px;
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .commitment-item {
        flex-direction: column;
        text-align: center;
    }
    
    .commitment-number {
        font-size: 60px;
    }
    
    .vision-image-small img,
    .vision-image-large img {
        width: 100%;
        height: auto;
    }
    
    .store-map img,
    .store-photo img,
    .company-image img {
        width: 100%;
        height: auto;
    }
    
    .footer {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    .nav ul {
        gap: 15px;
        font-size: 12px;
    }
    
    .commitment-number {
        font-size: 40px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 30px;
    }
} 

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.category-badge {
    position: absolute;
    top: 0px;
    left: 0px;
    background: #40ACFF;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 0px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.gallery-actions {
    margin-top: 20px;
}

.btn-detail {
    display: inline-block;
    padding: 12px 24px;
    background: #40ACFF;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-detail:hover {
    background: #ffffff;
    color: #40ACFF;
    transform: translateY(-2px);
} 

.no-image {
    width: 100%;
    height: 300px;
    background: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 0px;
} 

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
} 

/* Footer Responsive */
@media (max-width: 1400px) {
    .footer-nav {
        gap: 25px;
    }
    
    .nav-column {
        gap: 20px;
    }
    
    .nav-item {
        min-width: 70px;
        padding: 8px 10px;
    }
    
    .nav-item a {
        font-size: 15px;
        gap: 8px;
    }
}

@media (max-width: 1200px) {
    .footer-nav {
        gap: 20px;
    }
    
    .nav-column {
        gap: 15px;
    }
    
    .nav-item {
        min-width: 65px;
        padding: 7px 8px;
    }
    
    .nav-item a {
        font-size: 14px;
        gap: 6px;
    }
}

@media (max-width: 1024px) {
    .footer {
        padding: 50px 30px;
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .footer-nav {
        gap: 15px;
    }
    
    .nav-column {
        gap: 12px;
    }
    
    .nav-item {
        min-width: 60px;
        padding: 6px 8px;
    }
    
    .nav-item a {
        font-size: 13px;
        gap: 5px;
    }
}

@media (max-width: 900px) {
    .footer {
        padding: 45px 25px;
    }
    
    .footer-content {
        gap: 35px;
    }
    
    .footer-nav {
        gap: 12px;
    }
    
    .nav-column {
        gap: 10px;
    }
    
    .nav-item {
        min-width: 55px;
        padding: 5px 6px;
    }
    
    .nav-item a {
        font-size: 12px;
        gap: 4px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }
    
    .footer-contact {
        width: 100%;
        max-width: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .phone-section {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .phone-number {
        font-size: 24px;
    }
    
    .hours-section {
        gap: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hours-row {
        justify-content: start;
        gap: 10px;
    }
    
    .hours-label {
        width: auto;
        min-width: 80px;
    }
    
    .footer-logo {
        width: 100%;
        max-width: 251px;
    }
    
    .footer-nav {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        width: 100%;
        max-width: 400px;
    }
    
    .nav-column {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
    
    .nav-item {
        text-align: center;
        min-width: 80px;
        padding: 8px 12px;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .nav-item:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-item a {
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: center;
        white-space: nowrap;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 35px 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-nav {
        gap: 25px;
    }
    
    .nav-column {
        gap: 20px;
    }
    
    .nav-item {
        min-width: 75px;
        padding: 7px 10px;
    }
    
    .nav-item a {
        font-size: 13px;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 15px;
    }
    
    .phone-number {
        font-size: 20px;
    }
    
    .hours-label,
    .hours-time {
        font-size: 16px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-column {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    
    .nav-item {
        padding: 10px 8px;
        min-width: 70px;
    }
    
    .nav-item a {
        font-size: 14px;
        gap: 6px;
    }
} 

/* Hero Section レスポンシブ対応 */
@media (max-width: 768px) {
    /* ヒーローセクション */
    .hero {
        height: 400px;
        position: relative;
    }
    
    .hero-background {
        width: 100%;
        height: 100%;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
    }
    
    .hero-content {
        position: absolute;
        top: 70%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        color: white;
        margin-bottom: 10px;
        font-weight: 500;
    }
    
    .hero-line {
        width: 116px;
        height: 1px;
        background: #fff;
        margin: 10px auto;
    }
    
    .hero-title {
        font-size: 34px;
        color: white;
        font-weight: 800;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    /* さらに小さい画面用 */
    .hero {
        height: 200px;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
} 
