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

/* Base styles */
body {
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
}

/* Header */
.site-header {
    background: var(--white-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
	display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white-color);
}

.logo {
    height: 60px;
}

.logo img {
    height: 100%;
    width: auto;
}

/* Navigation */
.main-nav {
    margin-left: auto;
}

.main-nav ul {
    display: flex;
    gap: 1rem;
    list-style: none;
	margin: 0;
    padding: 0;
    align-items: center;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
	display: block;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 4px;
}

.main-nav a:hover {
    color: var(--primary-color);
    background-color: rgba(80, 148, 0, 0.1);
}

.main-nav a.active {
    color: var(--primary-color);
    font-weight: bold;
}

.order-now-btn {
    background-color: var(--primary-color) !important;
    color: var(--background-color) !important;
    border-radius: 8px !important;
    padding: 8px 20px !important;
    transition: all 0.3s ease !important;
}

.order-now-btn:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-color-dark) !important;
    color: var(--background-color) !important;
}

/* Main content */
.site-main {
    background: var(--background-color);
    color: var(--text-color);
    min-height: calc(100vh - 80px);
}

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

/* Hero section */
.hero-section {
    margin-bottom: 2rem;
}

/* Carousel styles */
.carousel {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 16/9;
}

.slides {
    display: flex;
    transition: transform 0.3s ease-in-out;
    height: 100%;
    width: 100%;
    cursor: grab;
}

.slides:active {
    cursor: grabbing;
}

.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    -webkit-user-drag: none;
    user-select: none;
}

.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Store grid */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.store-card {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 8px;
    color: var(--text-color);
}

.store-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Footer */
.site-footer {
    background: var(--background-color);
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-info p {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.footer-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--primary-color);
}

/* New Social Media Links Styles */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links a i {
    width: auto;
    color: var(--primary-color);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.social-links a:hover i {
    transform: scale(1.1);
}

.social-links .social-text {
    font-size: 0.9rem;
    display: none;
}

.social-links a:hover .social-text {
    display: inline;
}

.copyright {
  text-align: left;
    padding-top: 2rem;
    padding-bottom: 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.copyright-text {
    flex: 1;
}

.copyright p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    z-index: 1001;
}

/* Mobile Order Button */
.mobile-order-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
	font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    min-width: 200px;
}

.mobile-order-btn:hover {
    background-color: var(--primary-color-dark);
    transform: translateX(-50%) scale(1.05);
}

/* Mobile menu overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
	left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile navigation styles */
@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block;
    }

    .mobile-order-btn {
        display: block;
    }

    .menu-content .order-now-btn {
        display: none;
    }

    .menu-content {
        padding-bottom: 80px; /* Make space for fixed button */
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        z-index: 999;
        display: flex;
        transition: all 0.3s ease-in-out;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .main-nav.active {
        right: 0;
    }

    /* Menu content styles */
    .menu-content {
        position: absolute;
	top: 0;
        right: 0;
        width: 80%;
        height: 100%;
        background-color: white;
        padding: 80px 0 20px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        height: auto;
    }

    .main-nav ul li {
        width: 100%;
    }

    .main-nav ul li a {
        display: block;
        padding: 15px 25px;
        font-size: 16px;
        border-bottom: 1px solid #eee;
    }

    .main-nav ul li:last-child a {
        border-bottom: none;
    }

    .main-nav ul li a:hover {
        background-color: rgba(80, 148, 0, 0.1);
        color: var(--primary-color);
    }

    /* Animation for menu items */
    .main-nav.active ul li {
        opacity: 0;
        transform: translateX(20px);
        animation: slideIn 0.3s forwards;
    }

    @keyframes slideIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Delay each menu item animation */
    .main-nav.active ul li:nth-child(1) { animation-delay: 0.1s; }
    .main-nav.active ul li:nth-child(2) { animation-delay: 0.2s; }
    .main-nav.active ul li:nth-child(3) { animation-delay: 0.3s; }
    .main-nav.active ul li:nth-child(4) { animation-delay: 0.4s; }
    .main-nav.active ul li:nth-child(5) { animation-delay: 0.5s; }
    .main-nav.active ul li:nth-child(6) { animation-delay: 0.6s; }
    .main-nav.active ul li:nth-child(7) { animation-delay: 0.7s; }
    .main-nav.active ul li:nth-child(8) { animation-delay: 0.8s; }
}

/* Remove conflicting mobile styles */
@media (max-width: 768px) {
    .main-nav {
        display: flex;
    }

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

    .footer-info,
    .footer-links {
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .hero-section {
        padding: 0;
    }
    
    .carousel {
        border-radius: 0;
    }
    
    .dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }

    .copyright {
        text-align: center;
        padding: 1.5rem 1rem;
        flex-direction: column;
        align-items: center;
    }

    .copyright p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .footer-links {
        align-items: center;
    }

    .footer-link {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .copyright {
        padding: 3rem 0;
    }

    .copyright p {
        font-size: 0.7rem;
    }

    .footer-link {
        font-size: 0.7rem;
    }
}

/* Location page styles */
.location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.location-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-top: 120px;
    padding-bottom: 1rem;
}

.location-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
}

.location-section {
    margin-bottom: 4rem;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.location-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.store-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.store-details {
    display: grid;
    gap: 1.5rem;
}

.info-block {
    padding: 1rem;
    background: rgba(80, 148, 0, 0.05);
    border-radius: 8px;
}

.info-block h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-block p {
    color: var(--text-color);
    line-height: 1.6;
}

.store-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.store-map iframe {
	display: block;
}

/* Facilities section */
.facilities {
    padding: 2rem 0;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.facility-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.facility-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.facility-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.facility-item p {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Responsive design for locations */
@media (max-width: 768px) {
    .location-container {
        padding: 1rem;
    }

    .location-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .location-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .location-section h2 {
        font-size: 1.5rem;
    }

    .store-info {
        grid-template-columns: 1fr;
    }

    .store-map iframe {
        height: 300px !important;
    }

    .facilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}

/* Menu styles */
.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.menu-section {
    margin-bottom: 4rem;
}

.menu-notice {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.spice-level {
    font-size: 1.1rem;
    margin: 1rem 0;
}

.spice-guide {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.spice-guide li {
    display: inline-block;
    margin-right: 1.5rem;
}

.star {
    color: #ff4444;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-details {
    padding: 1.5rem;
}

.menu-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.eng {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.description {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.highlight {
    color: #ff4444;
    font-weight: bold;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 1rem;
}

.note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.menu-additional-info {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-card {
    margin-bottom: 1.5rem;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.info-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.tax-notice {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive design for menu */
@media (max-width: 768px) {
    .menu-container {
        padding: 1rem;
    }

    .menu-notice {
        padding: 1.5rem;
    }

    .spice-guide li {
	display: block;
        margin: 0.5rem 0;
    }

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

    .menu-item img {
        height: 180px;
    }

    .menu-details {
        padding: 1rem;
    }

    .menu-details h3 {
        font-size: 1.2rem;
    }

    .price {
        font-size: 1.1rem;
    }
}

/* Contact Page Styles */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 120px;
}

.contact-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.method-item {
    text-align: center;
    padding: 2rem;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.method-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.method-item h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.phone-numbers {
    margin: 1rem 0;
}

.phone-numbers p {
    margin: 0.5rem 0;
}

.note {
    font-size: 0.9rem;
    color: var(--subtext-color);
}

/* Contact Form Styles */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.required {
    color: #ff4444;
    margin-left: 0.25rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(80, 148, 0, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.error-message {
    color: #ff4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.privacy-policy {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
    width: 18px;
    height: 18px;
}

.privacy-link {
    margin-top: 0.5rem;
    text-align: right;
}

.privacy-link a {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-link a:hover {
    text-decoration: underline;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.submit-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.submit-button:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Alert Messages */
.alert {
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 5px;
    text-align: center;
}

.alert-success {
    background-color: rgba(80, 148, 0, 0.1);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.alert-danger {
    background-color: rgba(255, 68, 68, 0.1);
    color: #ff4444;
    border: 1px solid #ff4444;
}

/* FAQ Section */
.faq {
    margin-top: 4rem;
}

.faq h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.faq-list {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--subtext-color);
    line-height: 1.6;
}

/* Recruitment Section */
.recruitment-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: var(--background-color);
}

.section-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.recruitment-content {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.job-details h3 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

.job-details h3:first-child {
    margin-top: 0;
}

.job-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.job-details li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.job-details li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.contact-info {
    margin-top: 1.5rem;
    font-weight: 500;
    color: var(--text-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-container {
        padding-top: 120px;
    }

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

    .contact-form {
        padding: 1.5rem;
    }

    .submit-button {
        width: 100%;
        padding: 0.875rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-control {
        padding: 0.625rem;
        font-size: 0.9rem;
    }

    .method-item {
        padding: 1.5rem;
    }

    .recruitment-section {
        margin: 2rem 0;
        padding: 2rem 0;
    }

    .section-container {
        padding: 0 1rem;
    }
}

/* Utility Classes */
.sp-only {
    display: none;
}

@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }
}
