/*
Theme Name: Salon Elegance
Theme URI: https://example.com/salon-elegance/
Author: Your Name
Description: A beautiful theme for hair salons and beauty parlors
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: salon-elegance
*/

/* Reset & Base Styles */
:root {
    --primary-color: #9f7a49;
    --accent-color: #8b6a3f;
    --text-color: #333;
    --light-text: #666;
    --bg-color: #fff;
    --light-bg: #f9f7f5;
    --dark-bg: #1a1a1a;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --radius: 10px;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--light-text);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Site Wrapper */
.site-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Header Styles */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: transparent;
    width: 100%;
    transition: background 0.3s ease;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.admin-bar .site-header {
    top: 32px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.site-branding {
    flex-shrink: 0;
    z-index: 1001;
    max-width: 400px;
    width: auto;
}

.site-branding img {
    max-height: 120px;
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
    transition: max-height 0.3s ease;
}

.scrolled .site-branding img {
    max-height: 80px;
}

.site-title {
    margin: 0;
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
}

.site-title a {
    color: #fff;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #9f7a49;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #9f7a49;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
    margin: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-primary {
    background: #9f7a49;
    color: #fff;
    border: 2px solid #9f7a49;
}

.btn-primary:hover {
    background: #8b6a3f;
    border-color: #8b6a3f;
}

.btn-outline {
    border: 2px solid #9f7a49;
    color: #9f7a49;
}

.btn-outline:hover {
    background: #9f7a49;
    color: #fff;
}

/* Cards & Sections */
.section {
    padding: 5rem 0;
    position: relative;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Sections */
section {
    padding: 4rem 0;
}

section + section {
    padding-top: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: #333;
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #9f7a49;
    z-index: 2;
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-half {
    grid-template-columns: repeat(2, 1fr);
}

.grid-three {
    grid-template-columns: repeat(3, 1fr);
}

.grid-four {
    grid-template-columns: repeat(4, 1fr);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    animation: heroZoom 20s infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 1000px;
    width: 90%;
    padding: 0 20px;
    margin-top: 40px;
    animation: contentFadeIn 1.5s ease-out forwards;
}

.hero-content::before,
.hero-content::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    top: -20px;
}

.hero-content::before {
    left: 0;
    transform-origin: left;
    animation: lineLeft 1.5s ease-out 0.5s forwards;
}

.hero-content::after {
    right: 0;
    transform-origin: right;
    animation: lineRight 1.5s ease-out 0.5s forwards;
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpTitle 1s ease-out 0.5s forwards;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpText 1s ease-out 1s forwards;
}

.hero-content .btn {
    font-size: 1.2rem;
    padding: 1rem 3rem;
    display: inline-block;
    background: #9f7a49;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpButton 1s ease-out 1.5s forwards;
}

.hero-content .btn:hover {
    background: #8b6a3f;
    transform: translateY(-2px);
}

/* Animations */
@keyframes heroZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

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

@keyframes lineLeft {
    from {
        transform: scaleX(0);
        opacity: 0;
    }
    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes lineRight {
    from {
        transform: scaleX(0);
        opacity: 0;
    }
    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes fadeUpTitle {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUpText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUpButton {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Site Main */
.site-main {
    position: relative;
    background: #fff;
}

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    padding: 1rem 1rem 0.5rem;
    margin: 0;
    text-align: center;
    font-size: 1.2rem;
}

.service-card p {
    padding: 0 1rem;
    margin: 0 0 0.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.service-card p:last-of-type {
    padding-bottom: 1rem;
}

.price {
    font-weight: bold;
    color: #9f7a49;
    margin-top: auto;
}

/* Staff Cards */
.staff-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative;
}

.staff-section .section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
    font-family: 'Playfair Display', serif;
    text-align: center;
    display: block;
}

.staff-section .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 60px;
    height: 2px;
    background: #9f7a49;
    transform: translateX(-50%);
}

.staff-section .grid {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}

.staff-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    min-height: 500px;
    display: grid;
    grid-template-rows: auto 1fr;
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.staff-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.staff-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-info {
    padding: 1.5rem;
    background: #fff;
    position: relative;
    text-align: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.staff-info::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: #fff;
    border-radius: 20px 20px 0 0;
}

.staff-card h3 {
    font-size: 1.3rem;
    margin: 0 0 0.5rem;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.staff-card .position {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(159, 122, 73, 0.1);
    color: #9f7a49;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.staff-card .description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    height: auto;
}

@media screen and (max-width: 1024px) {
    .staff-section .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .staff-card {
        min-height: 450px;
    }
}

@media screen and (max-width: 480px) {
    .staff-section .grid {
        grid-template-columns: 1fr;
    }
    
    .staff-card {
        min-height: 400px;
    }
}

/* Contact Section */
.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Slick Slider Customization */
.slick-slider {
    position: relative !important;
    height: 100%;
}

.slick-list,
.slick-track {
    height: 100%;
}

.slick-slide {
    height: 100%;
}

.slick-slide > div {
    height: 100%;
}

.slick-dots {
    position: absolute;
    bottom: 25px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    z-index: 3;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 2px solid #fff;
    border-radius: 50%;
    background: transparent;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button {
    background: #fff;
}

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

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

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

.mb-4 {
    margin-bottom: 2rem;
}

/* Responsive Adjustments */
@media screen and (max-width: 1200px) {
    .site-branding {
        max-width: 450px;
    }
    
    .site-branding img {
        max-height: 160px;
    }

    .hero-content {
        margin-top: 30px;
    }
    
    .hero-content h2 {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
    
    .site-header {
        padding: 0.8rem 1.5rem;
    }
    
    .site-branding {
        max-width: 300px;
    }
    
    .site-branding img {
        max-height: 100px;
    }
    
    .hero-section {
        padding-top: 60px;
    }
    
    .hero-content {
        margin-top: 20px;
    }
    
    .hero-content h2 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 600px) {
    .admin-bar .site-header {
        top: 0;
    }
    
    .site-header {
        padding: 0.8rem 1rem;
    }
    
    .site-branding {
        max-width: 250px;
    }
    
    .site-branding img {
        max-height: 80px;
    }
    
    .hero-section {
        padding-top: 40px;
    }
    
    .hero-content {
        margin-top: 15px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-content .btn {
        font-size: 1.1rem;
        padding: 0.8rem 2.5rem;
    }
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(to right, #f8f9fa 50%, #fff 50%);
    overflow: hidden;
}

.about-section .grid {
    align-items: center;
    gap: 4rem;
}

.about-section .grid-half:first-child {
    padding-right: 2rem;
}

.about-section .section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
    text-align: left;
    font-family: 'Playfair Display', serif;
}

.about-section .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 2px;
    background: #9f7a49;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-section p:last-of-type {
    margin-bottom: 2.5rem;
}

.about-section .btn-outline {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-section .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #9f7a49;
    transition: all 0.3s ease;
    z-index: -1;
}

.about-section .btn-outline:hover::before {
    width: 100%;
}

.about-section .btn-outline:hover {
    color: #fff;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 30px 30px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-10px);
}

@media screen and (max-width: 768px) {
    .about-section {
        padding: 80px 0;
        background: #fff;
    }

    .about-section .grid {
        gap: 2rem;
    }

    .about-section .grid-half:first-child {
        padding-right: 0;
    }

    .about-section .section-title {
        font-size: 2rem;
    }

    .about-image {
        height: 400px;
        margin-top: 2rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://picsum.photos/1920/1080') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.cta-section .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 1000px;
    width: 90%;
    padding: 0 20px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-section p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-section .btn {
    font-size: 1.2rem;
    padding: 1rem 3rem;
    display: inline-block;
    background: #9f7a49;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid #9f7a49;
}

.cta-section .btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
}

@media screen and (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
        min-height: 40vh;
    }

    .cta-section h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .cta-section p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .cta-section .btn {
        font-size: 1.1rem;
        padding: 0.8rem 2.5rem;
    }
}

@media screen and (max-width: 480px) {
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-section .btn {
        font-size: 1rem;
        padding: 0.8rem 2rem;
        min-width: 200px;
    }
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #fff;
}

.footer-main {
    padding: 80px 0 40px;
}

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

.footer-brand img {
    max-height: 120px;
    width: auto;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
    display: block;
}

.footer-logo-text {
    font-size: 1.8rem;
    margin: 0 0 1.5rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.4;
}

.footer-description {
    color: #999;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.contact-list,
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #999;
}

.contact-list i {
    color: #9f7a49;
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    color: #999;
}

.hours-list span {
    color: #fff;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #9f7a49;
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.copyright {
    color: #999;
    margin: 0;
    font-size: 0.9rem;
}

.copyright a {
    color: #9f7a49;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.copyright a:hover {
    color: #8b6a3f;
    text-decoration: underline;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-menu a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #9f7a49;
}

@media screen and (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-section .container {
        padding: 0 15px;
    }

    .cta-content {
        padding: 0;
    }

    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .cta-content .btn,
    .cta-content .btn-primary {
        display: inline-block;
        min-width: 200px;
        margin: 0;
        padding: 0.8rem 2rem;
        font-size: 1rem;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    .cta-content .btn:hover,
    .cta-content .btn-primary:hover {
        transform: translateX(-50%) translateY(-3px);
    }

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

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-menu {
        justify-content: center;
    }

    .footer-brand img {
        max-height: 100px;
        margin-bottom: 1.5rem;
    }
}

/* Services Section */
.services-section {
    padding: 120px 0;
    position: relative;
}

.services-section .grid {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}

/* Page Hero */
.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding-top: 80px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.7;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.page-hero .container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-hero-content {
    width: 100%;
    padding: 5rem 0;
    color: #fff;
    text-align: center;
    max-width: 1000px;
}

.page-hero .entry-title,
.page-hero .page-title {
    color: #fff;
    margin: 0 0 1.5rem;
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.9);
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    -webkit-text-fill-color: #fff; /* WebKitブラウザ対応 */
    background: none; /* グラデーション背景を削除 */
}

.page-hero .entry-title::after,
.page-hero .page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #fff;
    display: block;
}

.page-hero .archive-description,
.page-hero .entry-meta {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
    line-height: 1.8;
}

.breadcrumbs {
    display: none;
}

.page-hero-decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.page-hero-decoration .line-left,
.page-hero-decoration .line-right {
    display: inline-block;
    height: 2px;
    width: 60px;
    background-color: rgba(255, 255, 255, 0.6);
    position: relative;
}

.page-hero-decoration .line-left {
    margin-right: 15px;
    animation: lineLeft 1.5s ease-in-out forwards;
    transform-origin: right center;
}

.page-hero-decoration .line-right {
    margin-left: 15px;
    animation: lineRight 1.5s ease-in-out forwards;
    transform-origin: left center;
}

/* レスポンシブスタイル */
@media (max-width: 768px) {
    .page-hero {
        min-height: 50vh;
    }

    .page-hero .entry-title,
    .page-hero .page-title {
        font-size: 2.5rem;
    }
    
    .page-hero .archive-description,
    .page-hero .entry-meta {
        font-size: 1.1rem;
    }

    .page-hero-decoration .line-left,
    .page-hero-decoration .line-right {
        width: 40px;
    }
    
    .page-hero .entry-title::after,
    .page-hero .page-title::after {
        width: 60px;
        bottom: -10px;
    }
}

@media (max-width: 576px) {
    .page-hero {
        min-height: 40vh;
    }

    .page-hero .entry-title,
    .page-hero .page-title {
        font-size: 2rem;
    }
    
    .page-hero .archive-description,
    .page-hero .entry-meta {
        font-size: 1rem;
    }

    .page-hero-content {
        padding: 3rem 0;
    }

    .page-hero-decoration .line-left,
    .page-hero-decoration .line-right {
        width: 30px;
    }
    
    .page-hero .entry-title::after,
    .page-hero .page-title::after {
        width: 50px;
        bottom: -8px;
    }
}

/* Page Content */
.page-content {
    position: relative;
    padding: 0 0 4rem;
    width: 100%;
}

.page-content .entry-content {
    max-width: 100%;
    margin: 0;
    width: 100%;
}

.page-content .entry-content > * {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.page-content .entry-content .alignfull {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.page-content .entry-content .alignwide {
    max-width: 1600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.entry-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.edit-link a {
    color: #9f7a49;
    text-decoration: none;
    font-size: 0.9rem;
}

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

@media screen and (max-width: 768px) {
    .page-hero {
        min-height: 180px;
        margin-bottom: 2.5rem;
    }

    .page-hero .container {
        padding: 2.5rem 1rem;
    }

    .page-hero .entry-title {
        font-size: 2.2rem;
    }
    
    .page-content .entry-content > * {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .page-hero .entry-title::after,
    .page-hero .page-title::after {
        width: 60px;
        bottom: -10px;
    }

    .page-content .entry-content .alignwide {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .page-hero {
        min-height: 160px;
        margin-bottom: 2rem;
    }

    .page-hero .container {
        padding: 2rem 1rem;
    }

    .page-hero .entry-title {
        font-size: 1.8rem;
    }
    
    .page-content .entry-content > * {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .page-hero .entry-title::after,
    .page-hero .page-title::after {
        width: 50px;
        bottom: -8px;
    }
}

/*   servicepageCSS */
.services-showcase {
    padding-bottom: 4rem;
}

.services-intro {
    padding: 3rem 0 4rem;
    text-align: center;
}

.services-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.services-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.services-divider .line-left,
.services-divider .line-right {
    height: 1px;
    width: 100px;
    background: #9f7a49;
    opacity: 0.6;
}

.services-divider .diamond {
    width: 10px;
    height: 10px;
    background: #9f7a49;
    transform: rotate(45deg);
    margin: 0 15px;
}

.service-category {
    padding: 4rem 0;
    background: #fff;
}

.service-category.color-section {
    background: #f9f7f5;
}

.category-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.category-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #666;
}

.service-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.color-section .service-item {
    background: #fff;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-image-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.service-item:hover .service-image {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-title {
    font-size: 1.3rem;
    margin: 0 0 1rem;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.service-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #9f7a49;
    margin-bottom: 0.5rem;
}

.service-time {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #888;
}

.time-icon {
    margin-right: 0.5rem;
}

.additional-services {
    padding: 4rem 0;
    background: #f9f7f5;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #666;
}

.additional-service-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.additional-service-title {
    font-size: 1.3rem;
    margin: 0 0 1rem;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.additional-service-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

.additional-service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #9f7a49;
    margin: 0;
}

.service-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #9f7a49 0%, #8b6a3f 100%);
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-white {
    background: #fff;
    color: #9f7a49;
    border: 2px solid #fff;
}

.btn-white:hover {
    background: transparent;
    color: #fff;
}

@media (max-width: 768px) {
    .grid-three {
        grid-template-columns: 1fr 1fr;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .service-image-wrap {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .grid-three,
    .grid-half {
        grid-template-columns: 1fr;
    }
    
    .service-category {
        padding: 3rem 0;
    }
    
    .services-lead {
        font-size: 1.1rem;
    }
    
    .category-title {
        font-size: 1.6rem;
    }
}
/* aboutCSS */
.about-showcase {
    padding-bottom: 4rem;
}

.about-intro {
    padding: 3rem 0 4rem;
    text-align: center;
}

.about-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.about-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.about-divider .line-left,
.about-divider .line-right {
    height: 1px;
    width: 100px;
    background: #9f7a49;
    opacity: 0.6;
}

.about-divider .diamond {
    width: 10px;
    height: 10px;
    background: #9f7a49;
    transform: rotate(45deg);
    margin: 0 15px;
}

.about-concept {
    padding: 100px 0;
    background: linear-gradient(to right, #f8f9fa 50%, #fff 50%);
    position: relative;
    overflow: hidden;
}

.about-concept .container {
    position: relative;
    z-index: 2;
}

.about-concept .grid {
    align-items: center;
    gap: 4rem;
}

.concept-text {
    padding-right: 2rem;
}

.concept-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #333;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.concept-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 2px;
    background: #9f7a49;
}

.concept-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.concept-description:last-of-type {
    margin-bottom: 2.5rem;
}

.concept-signature {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.signature-image {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

.signature-name {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.concept-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 30px 30px 60px rgba(0, 0, 0, 0.1);
}

figure {
    margin: 0;
    padding: 0;
}

.concept-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 30px 30px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.concept-image:hover {
    transform: translateY(-10px);
}

/* WordPressの自動pタグ対策 */
.concept-text p:empty {
    display: none;
}

.concept-signature p {
    margin: 0;
    padding: 0;
}

.concept-signature br {
    display: block;
    content: "";
    margin-top: 0.3em;
}

@media screen and (max-width: 992px) {
    .about-concept {
        padding: 80px 0;
        background: #fff;
    }

    .about-concept .grid {
        gap: 3rem;
    }

    .concept-text {
        padding-right: 0;
    }

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

    .concept-image {
        height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .about-concept {
        padding: 60px 0;
    }

    .about-concept .grid {
        gap: 2rem;
    }

    .concept-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .concept-description {
        font-size: 1rem;
    }

    .concept-image {
        height: 300px;
        margin-top: 2rem;
    }

    .concept-signature {
        margin-top: 2rem;
    }
}

.about-features {
    padding: 5rem 0;
    background: #fff;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #666;
}

.feature-item {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(159, 122, 73, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon .icon {
    font-size: 2.5rem;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.feature-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.salon-interior {
    padding: 5rem 0;
    background: #f9f7f5;
}

.interior-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-image-wrap {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-image-wrap:hover {
    transform: translateY(-5px);
}

.gallery-image-wrap:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-image-wrap:hover .gallery-image {
    transform: scale(1.05);
}

.salon-info {
    padding: 5rem 0;
    background: #fff;
}

.salon-info .grid {
    gap: 4rem;
}

.info-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #333;
    font-family: 'Playfair Display', serif;
}

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

.info-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #9f7a49;
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.info-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .interior-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    
    .gallery-image-wrap:first-child {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
}

@media (max-width: 768px) {
    .about-concept .grid,
    .salon-info .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .grid-three {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .concept-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .grid-three {
        grid-template-columns: 1fr;
    }
    
    .interior-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
    }
    
    .gallery-image-wrap:first-child {
        grid-column: 1;
        grid-row: 1;
    }
    
    .about-lead {
        font-size: 1.1rem;
    }
    
    .concept-description {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
}
/* ContactCSS */
    .contact-section {
      padding: 80px 0;
      background-color: #f9f9f9;
    }
    
    .contact-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .contact-header {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .contact-header h1 {
      font-size: 42px;
      margin-bottom: 20px;
      color: #333;
      position: relative;
      display: inline-block;
    }
    
    .contact-header h1:after {
      content: '';
      position: absolute;
      width: 60px;
      height: 3px;
      background-color: #ff6b6b;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
    }
    
    .contact-header p {
      font-size: 18px;
      color: #666;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }
    
    .contact-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
    }
    
    .contact-info {
      padding-right: 30px;
    }
    
    .contact-info h2 {
      font-size: 28px;
      margin-bottom: 30px;
      color: #333;
    }
    
    .contact-info-item {
      margin-bottom: 30px;
      display: flex;
      align-items: flex-start;
    }
    
    .contact-info-item .icon {
      width: 50px;
      height: 50px;
      background-color: #f0f0f0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 20px;
      color: #ff6b6b;
      font-size: 20px;
      flex-shrink: 0;
    }
    
    .contact-info-item .details h3 {
      font-size: 18px;
      margin-bottom: 8px;
      color: #333;
    }
    
    .contact-info-item .details p {
      font-size: 16px;
      color: #666;
      line-height: 1.5;
    }
    
    .business-hours {
      margin: 40px 0;
    }
    
    .business-hours h3 {
      font-size: 20px;
      margin-bottom: 15px;
      color: #333;
    }
    
    .hours-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    
    .hours-item {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px dashed #ddd;
    }
    
    .hours-item span {
      color: #666;
    }
    
    .hours-item span.day {
      font-weight: bold;
      color: #333;
    }
    
    .social-links {
      margin-top: 30px;
    }
    
    .social-links h3 {
      font-size: 20px;
      margin-bottom: 15px;
      color: #333;
    }
    
    .social-icons {
      display: flex;
      gap: 15px;
    }
    
    .social-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #f0f0f0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #333;
      text-decoration: none;
      transition: all 0.3s;
    }
    
    .social-icon:hover {
      background-color: #ff6b6b;
      color: white;
    }
    
    /* フォームスタイル */
    .contact-form {
      background-color: white;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    
    .contact-form h2 {
      font-size: 28px;
      margin-bottom: 30px;
      color: #333;
    }
    
    .form-group {
      margin-bottom: 25px;
    }
    
    .form-group label {
      display: block;
      font-weight: 600;
      margin-bottom: 8px;
      color: #333;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 16px;
      transition: border-color 0.3s;
    }
    
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: #ff6b6b;
      outline: none;
    }
    
    .form-group textarea {
      height: 150px;
      resize: vertical;
    }
    
    .checkbox-group {
      margin-top: 5px;
    }
    
    .checkbox-item {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }
    
    .checkbox-item input[type="checkbox"] {
      width: auto;
      margin-right: 10px;
    }
    
    .btn-submit {
      background-color: #ff6b6b;
      color: white;
      border: none;
      padding: 15px 30px;
      font-size: 16px;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s;
      width: 100%;
    }
    
    .btn-submit:hover {
      background-color: #ff5252;
    }
    
    /* 地図セクション */
    .map-section {
      padding: 60px 0;
      background-color: white;
    }
    
    .map-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .map-header {
      text-align: center;
      margin-bottom: 40px;
    }
    
    .map-header h2 {
      font-size: 32px;
      margin-bottom: 15px;
      color: #333;
    }
    
    .map-header p {
      font-size: 18px;
      color: #666;
      max-width: 700px;
      margin: 0 auto;
    }
    
    .map-wrapper {
      height: 450px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
    
    /* FAQ セクション */
    .faq-section {
      padding: 80px 0;
      background-color: #f9f9f9;
    }
    
    .faq-container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .faq-header {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .faq-header h2 {
      font-size: 32px;
      margin-bottom: 15px;
      color: #333;
    }
    
    .faq-header p {
      font-size: 18px;
      color: #666;
      max-width: 700px;
      margin: 0 auto;
    }
    
    .faq-list {
      display: grid;
      gap: 20px;
    }
    
    .faq-item {
      background-color: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    }
    
    .faq-question {
      padding: 20px 25px;
      font-size: 18px;
      font-weight: 600;
      color: #333;
      background-color: white;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #f0f0f0;
    }
    
    .faq-question:after {
      content: '+';
      font-size: 22px;
      color: #ff6b6b;
    }
    
    .faq-answer {
      padding: 20px 25px;
      font-size: 16px;
      color: #666;
      line-height: 1.6;
    }
    
    /* レスポンシブ対応 */
    @media (max-width: 992px) {
      .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .contact-info {
        padding-right: 0;
      }
    }
    
    @media (max-width: 768px) {
      .contact-section {
        padding: 60px 0;
      }
      
      .contact-header {
        margin-bottom: 40px;
      }
      
      .contact-header h1 {
        font-size: 36px;
      }
      
      .contact-form {
        padding: 30px;
      }
      
      .hours-grid {
        grid-template-columns: 1fr;
      }
      
      .map-wrapper {
        height: 350px;
      }
    }
    
    @media (max-width: 480px) {
      .contact-header h1 {
        font-size: 30px;
      }
      
      .contact-header p {
        font-size: 16px;
      }
      
      .contact-form {
        padding: 20px;
      }
    }

/* stylistsページ用スタイル */
.stylists-showcase {
    padding-bottom: 2rem;
}

.stylists-intro {
    padding: 2rem 0;
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('https://images.unsplash.com/photo-1532710093739-9470acff878f') center/cover no-repeat;
}

.stylists-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.stylists-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.stylists-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
}

.stylists-divider .line-left,
.stylists-divider .line-right {
    height: 1px;
    width: 80px;
    background: #9f7a49;
    opacity: 0.6;
}

.stylists-divider .diamond {
    width: 8px;
    height: 8px;
    background: #9f7a49;
    transform: rotate(45deg);
    margin: 0 12px;
}

.stylists-list {
    padding: 1rem 0;
}

.stylist-profile {
    margin-bottom: 3rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.stylist-profile:last-child {
    margin-bottom: 1rem;
}

.stylist-header {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.stylist-image-wrap {
    width: 100%;
    height: 280px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.stylist-image-wrap:hover .stylist-image {
    transform: scale(1.05);
}

.stylist-basic-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0.5rem;
}

.stylist-name {
    font-size: 1.8rem;
    margin: 0 0 0.3rem;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.stylist-position {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #9f7a49;
    font-weight: 600;
}

.stylist-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.tag {
    background-color: rgba(159, 122, 73, 0.1);
    color: #9f7a49;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.stylist-reservation {
    margin-top: 0.5rem;
}

.stylist-details {
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stylist-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0.8rem;
}

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

.stylist-specialties, 
.stylist-history, 
.stylist-message {
    margin-bottom: 1.2rem;
}

.specialties-title,
.history-title,
.message-title,
.gallery-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #9f7a49;
    margin-bottom: 0.5rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid rgba(159, 122, 73, 0.2);
}

.specialties-list,
.history-list {
    padding-left: 1.2rem;
    margin: 0.5rem 0;
}

.specialties-list li,
.history-list li {
    margin-bottom: 0.4rem;
    color: #666;
}

.stylist-gallery {
    padding: 0 2rem 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.gallery-item {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    aspect-ratio: 1/1;
}

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

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.stylists-cta {
    padding: 3rem 0;
    background: linear-gradient(135deg, #9f7a49 0%, #8b6a3f 100%);
    color: #fff;
    text-align: center;
    margin-top: 2rem;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-white {
    background: #fff;
    color: #9f7a49;
    border: 2px solid #fff;
}

.btn-white:hover {
    background: transparent;
    color: #fff;
}

@media screen and (max-width: 992px) {
    .stylist-header {
        grid-template-columns: 200px 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .stylist-image-wrap {
        height: 250px;
    }
    
    .stylist-details {
        padding: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .stylist-header {
        grid-template-columns: 1fr;
    }
    
    .stylist-image-wrap {
        height: 300px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .stylist-basic-info {
        text-align: center;
        padding-top: 0;
    }
    
    .stylist-tags {
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 80%;
        margin-bottom: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .stylist-header {
        padding: 1rem;
    }
    
    .stylist-image-wrap {
        height: 250px;
        max-width: 250px;
    }
    
    .stylist-name {
        font-size: 1.5rem;
    }
    
    .stylist-details {
        padding: 1rem;
    }
    
    .stylist-gallery {
        padding: 0 1rem 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

/* サービスページの修正 */
.service-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-price {
    margin-top: auto;
}

/* スタイリスト紹介最終セクション */
.stylist-finder {
    background: linear-gradient(135deg, rgba(159, 122, 73, 0.9) 0%, rgba(139, 106, 63, 0.9) 100%), url('https://picsum.photos/1920/1080?random=2') center/cover no-repeat fixed;
    color: #fff;
    padding: 5rem 0;
    text-align: center;
    margin-top: 2rem;
    position: relative;
}

.stylist-finder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.stylist-finder-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.stylist-finder-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.stylist-finder-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.stylist-finder-contact {
    margin-bottom: 2rem;
}

.stylist-finder-phone {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.stylist-finder .btn {
    font-size: 1.1rem;
    padding: 1rem 3rem;
    background: #fff;
    color: var(--primary-color);
    border: 2px solid #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
    display: inline-block;
}

.stylist-finder .btn:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
}

@media screen and (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .page-hero .entry-title,
    .page-hero .page-title {
        font-size: 2.5rem;
    }
    
    .stylist-finder-title,
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .stylist-finder-description,
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .stylist-finder-phone {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .page-hero .entry-title,
    .page-hero .page-title {
        font-size: 2rem;
    }
    
    .stylist-finder,
    .cta-section {
        padding: 3rem 0;
    }
    
    .stylist-finder-title,
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .stylist-finder-description,
    .cta-content p {
        font-size: 1rem;
    }
    
    .stylist-finder-phone {
        font-size: 1.3rem;
    }
    
    .stylist-finder .btn,
    .cta-content .btn,
    .cta-content .btn-primary {
        display: block;
        width: 80%;
        margin: 0.5rem auto;
    }
}

/* モバイルナビゲーション - 修正版 (v1.0.5) - タップ操作改善 */
@media screen and (max-width: 992px) {
    .menu-toggle {
        display: block !important;
        position: absolute !important;
        right: 0 !important;
        top: 15px !important;
        z-index: 99999 !important;
        font-size: 2rem !important; 
        width: 44px !important;
        height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-right: 10px !important;
        background-color: rgba(0, 0, 0, 0.7) !important;
        border-radius: 50% !important;
        padding: 5px !important;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.5) !important;
        transition: all 0.3s ease !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.2) !important;
    }
    
    .menu-toggle:hover {
        background-color: var(--primary-color) !important;
        transform: scale(1.1) !important;
    }
    
    .main-navigation {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important; 
        width: 80% !important; 
        max-width: 350px !important; 
        height: 100vh !important;
        background: rgba(30, 30, 30, 0.95) !important;
        padding: 80px 20px 40px !important;
        z-index: 99998 !important;
        transition: left 0.3s ease !important; 
        overflow-y: auto !important;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3) !important;
        pointer-events: auto !important;
        touch-action: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* 管理バーがあるときのメニュー位置調整 */
    .admin-bar .main-navigation {
        top: 46px !important;
        height: calc(100vh - 46px) !important;
    }
    
    @media screen and (min-width: 783px) {
        .admin-bar .main-navigation {
            top: 32px !important;
            height: calc(100vh - 32px) !important;
        }
    }
    
    /* メニューが開いている状態のトグルボタン位置を調整 */
    body.menu-open .menu-toggle {
        position: fixed !important;
        right: 20px !important;
        top: 20px !important;
        background-color: var(--accent-color) !important;
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.7) !important;
    }
    
    /* 管理バーがあるときのトグルボタン位置調整 */
    .admin-bar.menu-open .menu-toggle {
        top: 66px !important;
    }
    
    @media screen and (min-width: 783px) {
        .admin-bar.menu-open .menu-toggle {
            top: 52px !important;
        }
    }
    
    /* メニューが開いている状態のbodyにはスクロール禁止とオーバーレイ表示 */
    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .main-navigation.active {
        left: 0 !important;
    }
    
    /* ナビゲーションメニューのスタイル改善 */
    .nav-menu {
        flex-direction: column !important;
        gap: 0 !important;
        pointer-events: auto !important;
        position: relative !important;
        z-index: 99999 !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }
    
    .nav-menu li {
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        pointer-events: auto !important;
        position: relative !important;
        z-index: 99999 !important;
        display: block !important;
    }
    
    .nav-menu a {
        display: block !important;
        padding: 15px 0 !important;
        font-size: 1.2rem !important;
        pointer-events: auto !important;
        position: relative !important;
        z-index: 99999 !important;
        color: #fff !important;
        text-decoration: none !important;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1) !important;
    }
    
    /* リンクのタッチ状態を視覚的に表示 */
    .nav-menu a:active,
    .nav-menu a:focus,
    .nav-menu a:hover {
        color: var(--primary-color) !important;
        background-color: rgba(255, 255, 255, 0.05) !important;
        outline: none !important;
    }
    
    /* メニューが開いている時のハンバーガーアイコン */
    .menu-toggle i.fa-times {
        color: #fff !important;
        font-size: 2.2rem !important;
    }
    
    .menu-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0, 0, 0, 0.7) !important;
        z-index: 99997 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 0.3s ease !important;
        pointer-events: auto !important;
    }
    
    /* 管理バーがあるときのオーバーレイ調整 */
    .admin-bar .menu-overlay {
        top: 46px !important;
        height: calc(100% - 46px) !important;
    }
    
    @media screen and (min-width: 783px) {
        .admin-bar .menu-overlay {
            top: 32px !important;
            height: calc(100% - 32px) !important;
        }
    }
    
    .menu-overlay.active {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* フォームスタイルの改善 */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="url"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f9f9f9;
    color: #333;
    margin-bottom: 1.5rem;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border-color: #9f7a49;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(159, 122, 73, 0.1);
}

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

input[type="submit"],
button[type="submit"] {
    background: #9f7a49;
    color: #fff;
    border: 2px solid #9f7a49;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-block;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
    background: #8b6a3f;
    border-color: #8b6a3f;
}

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

.form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-row.required label:after {
    content: '*';
    color: #e74c3c;
    margin-left: 4px;
}

.form-row .hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.form-checkbox input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 5px;
}

@media screen and (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="url"],
    input[type="password"],
    textarea,
    select {
        font-size: 16px; /* モバイルでのズームを防止 */
        padding: 12px;
    }
    
    input[type="submit"],
    button[type="submit"] {
        width: 100%;
    }
}

/* h1タグのグラデーション背景とテキストフィルを上書き */
.page-hero h1.entry-title,
.page-hero h1.page-title {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: #fff;
    color: #fff;
}

.page-hero h1.entry-title::after,
.page-hero h1.page-title::after {
    display: none; /* h1のデフォルト下線を非表示 */
}

.page-hero .entry-title::after,
.page-hero .page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #fff;
    display: block;
}

/* サービスページ用スタイル */
.services-showcase {
    padding-bottom: 2rem;
}

.services-intro {
    padding: 2rem 0;
    text-align: center;
}

.services-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.services-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
}

.services-divider .line-left,
.services-divider .line-right {
    height: 1px;
    width: 80px;
    background: #9f7a49;
    opacity: 0.6;
}

.services-divider .diamond {
    width: 8px;
    height: 8px;
    background: #9f7a49;
    transform: rotate(45deg);
    margin: 0 12px;
}

.service-category {
    padding: 2.5rem 0;
    background: #fff;
}

.service-category.color-section {
    background: #f9f7f5;
}

.category-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.category-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    color: #666;
}

.service-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.color-section .service-item {
    background: #fff;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-image-wrap {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-image {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.2rem;
    margin: 0 0 0.8rem;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.service-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #9f7a49;
    margin-bottom: 0.4rem;
}

.service-time {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #888;
}

.time-icon {
    margin-right: 0.4rem;
}

.additional-services {
    padding: 2.5rem 0;
    background: #f9f7f5;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    color: #666;
}

.additional-service-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.additional-service-title {
    font-size: 1.2rem;
    margin: 0 0 0.8rem;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.additional-service-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.8rem;
}

.additional-service-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #9f7a49;
    margin: 0;
}

.service-cta {
    padding: 3rem 0;
    background: linear-gradient(135deg, #9f7a49 0%, #8b6a3f 100%);
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.btn-white {
    background: #fff;
    color: #9f7a49;
    border: 2px solid #fff;
}

.btn-white:hover {
    background: transparent;
    color: #fff;
}

@media (max-width: 768px) {
    .grid-three {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .category-title {
        font-size: 1.6rem;
    }
    
    .service-image-wrap {
        height: 160px;
    }
    
    .service-content {
        padding: 1.2rem;
    }
}

@media (max-width: 576px) {
    .grid-three,
    .grid-half {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .service-category {
        padding: 2rem 0;
    }
    
    .services-lead {
        font-size: 1rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .category-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .service-image-wrap {
        height: 150px;
    }
}

/* ブログ関連のスタイリング */

/* シングルページのスタイル */
.single-hero {
    position: relative;
    min-height: 350px;
}

.single-hero .page-hero-image {
    position: relative;
}

.single-hero .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* アーカイブページとシングルページのヒーローセクション共通スタイル */
.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.archive-hero .page-hero-image .image-overlay,
.single-hero .page-hero-image .image-overlay {
    background: rgba(0, 0, 0, 0.5);
}

/* 以下、既存のスタイル */
.single-post-content {
    padding: 60px 0;
    background-color: #fff;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 14px;
    color: #777;
}

.entry-meta > span {
    margin-right: 20px;
    margin-bottom: 8px;
}

.entry-meta i {
    margin-right: 5px;
    color: #966c45;
}

.entry-content {
    margin-bottom: 40px;
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content h2 {
    margin: 40px 0 20px;
    font-size: 24px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.entry-content h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #966c45;
}

.entry-content h3 {
    margin: 30px 0 15px;
    font-size: 20px;
    color: #333;
}

.entry-content ul, 
.entry-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.entry-content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background: #f9f7f5;
    border-left: 4px solid #966c45;
    font-style: italic;
    color: #555;
}

.post-tags {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.tags-title {
    display: inline-block;
    margin-right: 10px;
    font-weight: 500;
}

.tag-links a {
    display: inline-block;
    margin: 0 5px 5px 0;
    padding: 4px 10px;
    background: #f2efe9;
    border-radius: 4px;
    font-size: 13px;
    color: #966c45;
    transition: all 0.3s ease;
}

.tag-links a:hover {
    background: #966c45;
    color: #fff;
}

.post-navigation-container {
    margin: 50px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    width: 48%;
    transition: all 0.3s ease;
}

.post-navigation .nav-previous {
    display: flex;
    align-items: center;
}

.post-navigation .nav-next {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
}

.post-navigation .nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f2efe9;
    border-radius: 50%;
    color: #966c45;
    font-size: 16px;
    transition: all 0.3s ease;
}

.post-navigation .nav-previous:hover .nav-arrow,
.post-navigation .nav-next:hover .nav-arrow {
    background: #966c45;
    color: #fff;
}

.post-navigation .nav-content {
    padding: 0 15px;
}

.post-navigation .nav-subtitle {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
}

.post-navigation .nav-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.post-navigation a:hover .nav-title {
    color: #966c45;
}

.comments-area {
    margin-top: 60px;
}

.comments-title {
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
}

.related-posts {
    padding: 60px 0;
    background-color: #f9f7f5;
}

.related-posts .section-title {
    margin-bottom: 40px;
    font-size: 28px;
    text-align: center;
    color: #333;
    position: relative;
}

.related-posts .section-title:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #966c45;
}

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

.related-post {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.related-post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.no-image {
    height: 100%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-post-content {
    padding: 20px;
}

.related-post-title {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: #333;
    transition: all 0.3s ease;
}

.related-post:hover .related-post-title {
    color: #966c45;
}

.related-post-meta {
    font-size: 13px;
    color: #777;
}

.related-post-meta i {
    margin-right: 5px;
    color: #966c45;
}

.sidebar {
    position: sticky;
    top: 80px;
}

.widget {
    margin-bottom: 40px;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.widget-title {
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-size: 20px;
    color: #333;
    border-bottom: 2px solid #f2efe9;
    position: relative;
}

.widget-title:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #966c45;
}

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

.widget li {
    padding: 10px 0;
    border-bottom: 1px solid #f2efe9;
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: #555;
    transition: all 0.3s ease;
}

.widget a:hover {
    color: #966c45;
    padding-left: 5px;
}

/* アーカイブページのスタイル */
.archive-content {
    padding: 60px 0;
    background-color: #fff;
}

.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.archive-post {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.archive-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.post-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

.post-thumbnail {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.archive-post:hover .post-thumbnail img {
    transform: scale(1.05);
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.archive-post:hover .thumbnail-overlay {
    opacity: 1;
}

.read-more-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #966c45;
    font-size: 16px;
    transform: scale(0);
    transition: all 0.3s ease;
}

.archive-post:hover .read-more-icon {
    transform: scale(1);
}

.post-content {
    padding: 30px;
}

.archive-post .entry-title {
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 1.4;
}

.archive-post .entry-title a {
    color: #333;
    transition: all 0.3s ease;
}

.archive-post:hover .entry-title a {
    color: #966c45;
}

.entry-summary {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: #966c45;
    transition: all 0.3s ease;
}

.read-more-btn i {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: #7a5837;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

.pagination-container {
    margin-top: 50px;
    text-align: center;
}

.pagination {
    display: inline-flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    color: #555;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current {
    background: #966c45;
    color: #fff;
}

.pagination .page-numbers:hover:not(.current) {
    background: #f2efe9;
    color: #966c45;
}

.pagination .prev,
.pagination .next {
    font-size: 14px;
}

.no-posts-found {
    text-align: center;
    padding: 50px 0;
}

.no-posts-found i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-posts-found p {
    font-size: 18px;
    color: #777;
}

/* レスポンシブスタイル */
@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        margin-top: 60px;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .single-hero,
    .archive-hero {
        min-height: 250px;
    }
    
    .entry-meta {
        flex-direction: column;
    }
    
    .entry-meta > span {
        margin-bottom: 8px;
    }
    
    .post-navigation .nav-previous,
    .post-navigation .nav-next {
        width: 100%;
    }
    
    .post-navigation .nav-next {
        margin-top: 20px;
    }
    
    .post-inner {
        grid-template-columns: 1fr;
    }
    
    .post-thumbnail {
        height: 200px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .single-hero,
    .archive-hero {
        min-height: 200px;
    }
    
    .page-hero-content {
        padding: 30px 0;
    }
    
    .entry-title {
        font-size: 24px;
    }
    
    .archive-post .entry-title {
        font-size: 20px;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .entry-content h2 {
        font-size: 22px;
    }
    
    .entry-content h3 {
        font-size: 18px;
    }
    
    .pagination .page-numbers {
        width: 35px;
        height: 35px;
        margin: 0 3px;
        font-size: 14px;
    }
}

/* タッチフィードバック用スタイル */
.nav-menu a.touch-active {
    color: var(--primary-color) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
}

/* メニュー項目のタップ領域を拡大 */
@media screen and (max-width: 992px) {
    .nav-menu li a {
        padding: 15px 0 !important;
        display: block !important;
        width: 100% !important;
    }
    
    /* タップ時のハイライト */
    .nav-menu li a:active,
    .nav-menu li a.touch-active {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--primary-color) !important;
    }
}

/* シンプル化したモバイルメニュー (v1.0.6) */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 992px) {
    /* トグルボタンのスタイル */
    .menu-toggle {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        background-color: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    }
    
    .menu-toggle:hover {
        background-color: #9f7a49;
    }
    
    /* メインナビゲーションのスタイル */
    .main-navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(30, 30, 30, 0.95);
        padding: 80px 20px 40px;
        z-index: 9999;
        overflow-y: auto;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    /* WordPress管理バーがある場合 */
    .admin-bar .main-navigation {
        top: 46px;
        height: calc(100vh - 46px);
    }
    
    @media screen and (min-width: 783px) {
        .admin-bar .main-navigation {
            top: 32px;
            height: calc(100vh - 32px);
        }
    }
    
    /* アクティブ状態のメニュー */
    .main-navigation.active {
        left: 0;
    }
    
    /* メニューが開いているときの背景固定 */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    /* メニューリストのスタイル */
    .nav-menu {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .nav-menu li {
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 0;
        font-size: 1.2rem;
        color: #fff;
        text-decoration: none;
    }
    
    .nav-menu a:hover,
    .nav-menu a:focus,
    .nav-menu a:active {
        color: #9f7a49;
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    /* オーバーレイのスタイル */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }
    
    /* WordPress管理バーがある場合のオーバーレイ */
    .admin-bar .menu-overlay {
        top: 46px;
        height: calc(100% - 46px);
    }
    
    @media screen and (min-width: 783px) {
        .admin-bar .menu-overlay {
            top: 32px;
            height: calc(100% - 32px);
        }
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* 閉じるアイコンスタイル */
    .menu-toggle .fa-times {
        font-size: 1.8rem;
    }
}

/* モバイルメニュー関連のスタイルを削除 */
body.menu-open,
.menu-toggle,
.menu-toggle:hover,
.admin-bar.menu-open .menu-toggle,
.menu-toggle i.fa-times {
    display: none !important;
}

/* ブランドコンセプトセクション */
.brand-concept {
    margin: 60px 0;
    position: relative;
}

.brand-concept p {
    margin: 0;
    padding: 0;
    display: inline;
}

.brand-concept p + p {
    display: block;
    margin-top: 1.5em;
}

.brand-concept br {
    display: none;
}

.brand-concept br + br {
    display: block;
    content: "";
    margin-top: 1.5em;
}

/* 段落の自動マージンを打ち消し */
.entry-content .brand-concept > p {
    margin: 0;
    line-height: 2;
}

.entry-content .brand-concept > p:empty {
    display: none;
}

/* 画像配置の修正 */
.brand-concept-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.brand-concept-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
    .brand-concept {
        margin: 40px 0;
    }

    .brand-concept-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}