/* 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');
}

.blue-line {
    max-width: 400px;
    height: 1px;
    background: #40ACFF;
    margin: 50px auto 0 auto;
}

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

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

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

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

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;
}


/* 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;
}

/* Section Headers */
.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;
}

/* Commitment Section */
.commitment {
    padding: 160px 0;
    background: #333333;
    background-image: url(image/Polygonabout.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.commitment-content {
    max-width: 1200px;
    margin: 0 auto;
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.commitment-number {
    font-size: 128px;
    font-family: 'yu-mincho-regular', serif;
    font-weight: 800;
    color: #40ACFF;
    line-height: 1;
    flex-shrink: 0;
}

.commitment-text {
    flex: 1;
}

.commitment-text h3 {
    font-size: 20px;
    font-family: 'yu-mincho-regular', serif;
    font-weight: 800;
    color: #40ACFF;
    margin-bottom: 14px;
}

.commitment-text p {
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    line-height: 2;
    letter-spacing: 4%x;
}

/* Vision Section */
.vision {
    padding: 0px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

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

.polygon-shape {
    position: absolute;
    left: 101px;
    top: 0;
    width: 343px;
    height: 100%;
    background: rgba(64, 172.23, 255, 0.20);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.vision .container {
    position: relative;
    z-index: 1;
}

.vision .section-title {
    color: #333333;
}

.vision .section-line .line-horizontal,
.vision .section-line .line-vertical {
    background: #40ACFF;
}

.vision-content {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vision-image-small img {
    width: 452px;
    height: auto;
    object-fit: cover;
}

.vision-image-large img {
    width: 528px;
    height: auto;
    object-fit: cover;
}

.vision-text {
    flex: 1;
}

.vision-subtitle {
    font-size: 20px;
    font-family: 'yu-mincho-regular', serif;
    font-weight: 800;
    color: #007BFF;
    text-align: left;
    margin-bottom: 32px;
}

.store-map {
    margin: 0 auto;
}

.vision-text p {
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    line-height: 2;
    letter-spacing: 0.60px;
    text-align: left;
}

/* Store Information Section */
.store-info {
    padding: 100px 0;
    background: #333333;
    position: relative;
    background: url(image/Frame\ 173\ \(1\).png);
    background-size: cover;
}


.store-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.store-details {
    flex: 1;
}

.store-details p {
    font-size: 20px;
    font-weight: 200;
    color: #ffffff;
    line-height: 50px;
    margin-bottom: 0;
}

.store-details strong {
    color: #ffffff;
}

.access-list {
    list-style: none;
    margin-left: 20px;
}

.access-list li {
    color: #ffffff;
    font-size: 20px;
    line-height: 50px;
}

.store-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.store-map img {
    width: 450px;
    height: 400px;
    object-fit: cover;
}

.store-photo img {
    width: 533px;
    height: 444px;
    object-fit: cover;
}

.store-additional {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 28px;
}

.store-additional p {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    line-height: 50px;
}


/* Company Profile Section */
.company-profile {
    padding: 100px 0;
    background: #333333;
    position: relative;
}

.company-profile::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 100"><defs><pattern id="water-pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%2340ACFF" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%2340ACFF" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%2340ACFF" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23water-pattern)"/></svg>');
    z-index: -1;
}

.company-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.company-details {
    flex: 1;
}

.company-details p {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    line-height: 50px;
    margin-bottom: 0;
}

.company-details strong {
    color: #ffffff;
}

.company-image img {
    width: 451px;
    height: 287px;
    object-fit: cover;
}

.company-image {
    text-align: center;
    margin: 0 auto;
}
.store-images {
    text-align: center;
    margin: 0 auto;
}
/* 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%);
}

.hero-line {
    background: #fff;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0px;
    }
    
    .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: 0px;
    }
    
    .nav ul {
        gap: 20px;
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .commitment-item {
        flex-direction: row;
        text-align: left;
    }
    
    .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;
    }


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


}

@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;
        padding: 0px 20px;
    }
    
    .header {
        padding: 0;
        height: 60px;
    }
    .logo {
        width: 60px;
    }
    
    .logo img {
        height: 60px;
        width: auto;
    }
    
    .nav ul {
        gap: 15px;
        font-size: 12px;
    }
    
    .commitment-number {
        font-size: 40px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 30px;
    }
} 


/* 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: 0px 20px;
    }

    .header .container {
        padding: 0px 20px;
    }
    
    .nav ul {
        gap: 20px;
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .section-title {
        font-size: 24px;
    }
    .phone-number img.phone-icon {
        height: 15px!important;
    }
    
    .commitment-item {
        flex-direction: row;
        text-align: left;
    }
    
    .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;
    }
    
    .logo {
        width: 60px;
    }
    
    
    .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: 0px;
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #40ACFF;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    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: 10px;
} 

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

.br_hidden {
    display: none!important;
}

/* 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;
    }

    .br_hidden {
        display: block!important;
    }
    
    .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;
        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;
    }
} 

/* Aboutページのモバイルレスポンシブ対応 */
@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;
    }
    
    /* 私たちのこだわりセクション */
    .commitment {
        padding: 40px 20px;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 24px;
        color: white;
        margin-bottom: 10px;
    }
    
    .section-line {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }
    
    .line-horizontal {
        width: 50px;
        height: 1px;
        background: #40ACFF;
    }
    
    .line-vertical {
        width: 20px;
        height: 1px;
        background: #40ACFF;
    }
    
    .commitment-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .commitment-item {
        display: flex;
        flex-direction: row;
        align-items: start;
        gap: 20px;
    }
    
    .commitment-number {
        font-size: 60px;
        color: #40ACFF;
        font-weight: 800;
        line-height: 1;
    }
    
    .commitment-text h3 {
        font-size: 20px;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .commitment-text p {
        font-size: 15px;
        color: #cccccc;
        line-height: 1.8;
    }
    
    /* 私たちの想いセクション */
    .vision {
        padding: 40px 20px;
        position: relative;
    }
    
    .vision .section-title {
        color: #333333;
        font-size: 24px;
    }
    
    .vision-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .vision-images {
        width: 100%;
    }
    
    .vision-image-large {
        width: 100%;
        margin: 0 auto;
    }
    
    .vision-image-large img {
        width: 100%;
        height: auto;
        border-radius: 0px;
    }
    
    .vision-text {
        text-align: left;
    }
    
    .vision-subtitle {
        font-size: 20px;
        margin-bottom: 20px;
        font-weight: 600;
    }
    
    .vision-text p {
        font-size: 15px;
        color: #333333;
        line-height: 1.8;
    }
    
    /* 店舗情報セクション */
    .store-info {
        padding: 40px 20px;
        background: #333333;
    }
    
    .store-info .section-title {
        color: white;
        font-size: 24px;
    }
    
    .store-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .store-details {
        color: white;
    }
    
    .store-details p {
        font-size: 15px;
        margin-bottom: 10px;
        line-height: 1.6;
    }
    
    .store-details strong {
        color: white;
        font-weight: 600;
    }
    
    .access-list {
        list-style: none;
        padding-left: 20px;
        margin-top: 10px;
    }
    
    .access-list li {
        font-size: 15px;
        color: white;
        margin-bottom: 5px;
    }
    
    .store-images {
        width: 100%;
    }
    
    .store-photo {
        width: 100%;
        margin: 0 auto;
    }
    
    .store-photo img {
        width: 100%;
        height: auto;
        border-radius: 0px;
    }
    
    .store-additional {
        margin-top: 30px;
    }
    
    .store-additional p {
        font-size: 15px;
        color: white;
        margin-bottom: 10px;
        line-height: 1.6;
    }
    
    /* 会社概要セクション */
    .company-profile {
        padding: 40px 20px;
        background: #333333;
    }
    
    .company-profile .section-title {
        color: white;
        font-size: 24px;
    }
    
    .company-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .company-details {
        color: white;
    }
    
    .company-details p {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .company-details strong {
        color: white;
        font-weight: 600;
    }
    
    .company-image {
        width: 100%;
        margin: 0 auto;
    }
    
    .company-image img {
        width: 100%;
        height: auto;
        border-radius: 0px;
    }
}

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


    
    .vision-subtitle {
        font-size: 18px;
    }
    

    
    .container {
        padding: 0px;
    }
    
    .commitment,
    .vision,
    .store-info,
    .company-profile {
        padding: 56px 20px;
    }
    
    .store-map iframe {
        width: calc(100vw - 40px) !important;
        height: 250px !important;
    }
} 
