/*
Theme Name: Crayon
Theme URI: 
Author: Crayon
Author URI: crayon-beauty.jp
Description: A custom theme for Crayon For Hair
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: crayon
*/

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

body {
    font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif !important;
    line-height: 1.6;
    color: #333;
    padding-top: 70px;
}

body.menu-open {
    overflow: hidden;
}
a img:hover{
    opacity: .8;
    transition: .5s;
}
.f-gothic{
    font-family: sans-serif !important;
}

.btn-more a{
    display: block;
    padding: .5rem;
    color: #333 !important;
    border: 1px solid #333 !important;
    text-align: center !important;
    background: none !important;
    text-decoration: none !important;
    line-height: 1.6 !important;
}
.btn-more a:hover{
    color: #fff !important;
    border-color: #333 !important;
    background-color: #333 !important;
    transition: all .5s ease;
}
.btn-entry{
    display: block;
    width: 100% !important;
    max-width: 260px !important;
    font-size: .9rem !important;
    margin-top: 3rem;
}
.btn-entry a{
    display: block;
    padding: .5rem;
    color: #fff !important;
    border: 1px solid #000 !important;
    text-align: center !important;
    background: #000 !important;
    text-decoration: none !important;
    line-height: 1.6 !important;
}
.f-mincho{
    font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif !important;
}
/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    padding: 0.8rem 1.5rem;
    z-index: 1002;
    backdrop-filter: blur(5px);
    overflow: hidden;
}

/* 管理バー表示時のヘッダー位置調整 */
.admin-bar header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar header {
        top: 46px;
    }
}

nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.nav-buttons {
    margin-left: auto;
}
.nav-buttons a{
    margin-left: .5rem;
}

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

@media screen and (max-width: 480px) {
    header {
        padding: 0.5rem 1rem;
    }

    nav {
        gap: 1rem;
    }

    .logo img {
        height: 32px;
    }

    .nav-buttons {
        display: flex;
        gap: 0.25rem;
    }

    .nav-buttons a {
        margin-left: 0;
    }
}

/* Hamburger Menu */
.menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.menu-btn span {
    display: block;
    height: 4px;
    width: 100%;
    background: #9d9d9d;
    transition: transform 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1001;
    display: none;
    padding-top: 80px;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu .main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-menu .main-menu li {
    margin: 1rem 0;
}

.mobile-menu .main-menu a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.mobile-menu .main-menu a:hover {
    color: #ccc;
}

.mobile-menu .main-menu a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: white;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.mobile-menu .main-menu a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.main-menu li {
    margin: 20px 0;
}

.main-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    display: inline-block;
    padding: 10px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.main-menu a:hover {
    border-color: #fff;
}

/* Sidebar */
.sidebar-news {
    padding: 2rem;
    background: #fff;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ddd;
}

.sidebar-news-list,
.sidebar-archive-list,
.sidebar-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-news-list li,
.sidebar-archive-list li,
.sidebar-category-list li {
    margin-bottom: 1rem;
}

.sidebar-news-list a,
.sidebar-archive-list a,
.sidebar-category-list a {
    text-decoration: none;
    color: #333;
    display: block;
    transition: opacity 0.3s;
}

.sidebar-news-list a:hover,
.sidebar-archive-list a:hover,
.sidebar-category-list a:hover {
    opacity: 0.7;
}

.news-date {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.2rem;
}

.news-title {
    display: block;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.4rem 1.5rem 0.4rem 0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.05em;
    min-width: 180px;
    text-align: center;
}

.btn-outline {
    border: 10px double #fff;
    background-color: #393939;
    color: #fff;
    position: relative;
    padding-left: 1.5rem;
}

@media screen and (max-width: 480px) {
    header {
        padding: 0.5rem;
    }

    nav {
        gap: 0.5rem;
    }

    .logo {
        flex-shrink: 1;
        min-width: 0;
    }

    .logo img {
        height: 30px;
    }

    .nav-buttons {
        gap: 0.25rem;
        flex-shrink: 0;
    }

    .btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        min-width: 0;
        white-space: nowrap;
    }

    .btn-outline {
        border: 1px solid #fff;
        padding: 0.4rem 0.6rem;
    }

    .btn-outline::before {
        position: static;
        transform: none;
        padding-right: 0.3rem;
    }
}

.btn-outline::before {
    content: '+';
    padding-right: .5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.btn-outline:hover {
    background-color: #9d9d9d;
    color: #000;
}
.btn-more {
    display: block;
    width: 100% !important;
    max-width: 260px !important;
    font-size: .9rem !important;
  }
.btn-more a{
    display: block;
    padding: .5rem;
    color: #333 !important;
    border: 1px solid #333 !important;
    text-align: center !important;
    background: none !important;
    text-decoration: none !important;
    line-height: 1.6 !important;
}
.btn-more a:hover{
    color: #fff !important;
    border-color: #333 !important;
    background-color: #333 !important;
    transition: all .5s ease;
}
.btn-entry{
    display: block;
    width: 100% !important;
    max-width: 260px !important;
    font-size: .9rem !important;
    margin-top: 3rem;
}
.btn-entry a{
    display: block;
    padding: .5rem;
    color: #fff !important;
    border: 1px solid #000 !important;
    text-align: center !important;
    background: #000 !important;
    text-decoration: none !important;
    line-height: 1.6 !important;
}
.btn-entry a:hover{
    color: #000 !important;
    border-color: #000 !important;
    background-color: #fff !important;
    transition: all .5s ease;
}
.m-auto{
    margin: 0 auto !important;
}
/*見出し*/
.sec_h h2{
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    letter-spacing: .05em;
}
.sec_h h2:before{
    content: '';
    display: block;
    width: 100px;
    height: 1px;
    background-color: #333;
}
.sec_h02 h2{
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    letter-spacing: .05em;
    flex-direction: column;
    text-align: center !important;
}
.sec_h02 h2:after{
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background-color: #333;
    margin-top: 0.5rem;
}
/*Concept*/
.comapny_info table{
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}
.comapny_info table td{
    padding: .5rem;
    text-align: left;
}
/* Salon Page */
.salon-page {
    width: 100%;
}

.salon-page section {
    width: 100%;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.salon-header {
    margin-bottom: 3rem;
    margin-top: 0;
}

.salon-gallery-swiper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 40px;
    position: relative;
}

.salon-gallery-swiper .swiper-slide {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3のアスペクト比（3/4 = 0.75 = 75%） */
}

.salon-gallery-swiper .swiper-slide .gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.salon-gallery-swiper .swiper-button-prev,
.salon-gallery-swiper .swiper-button-next {
    color: #fff;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.salon-gallery-swiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.salon-gallery-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #333;
    opacity: 0.5;
}

.salon-gallery-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

.salon-header {
    position: relative;
    width: 100%;
    margin: 0 0 40px;
    overflow: hidden;
}

.salon-header-bg {
    position: relative;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
}

.salon-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.salon-header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    padding: 20px;
}

.salon-header-content h2 {
    font-size: 2.5em;
    margin: 0;
    color: #fff;
    font-weight: normal;
}

.salon-main-image {
    max-width: 700px;
    margin: 0 auto;
}

.sec_h02 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.salon-list {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.salon-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: #fff;
}

.salon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.3s ease;
}

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

.salon-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.salon-title {
    font-size: 1.5rem;
    margin: 0 0 1.5rem;
    font-weight: normal;
}

.salon-details {
    margin: 15px 0;
    font-size: 16px;
    flex-grow: 1;
    line-height: 1.8;
}

.salon-details p {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.salon-item .btn-more {
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .salon-item {
        grid-template-columns: 1fr;
    }
    
    .salon-image img {
        height: 300px;
    }
    
    .salon-info {
        padding: 1.5rem;
    }
}

/* Interview Section */
.interview-section {
    padding: 2rem 0;
}

.interview.staff-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.interview.salon-item {
    background: #fff;
}

.staff-item {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.staff-image {
    width: 100%;
    max-width: 180px;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 10px;
    margin: 0 auto;
}

.staff-image img {
    width: 100%;
    max-width: 240px;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.staff-info {
    padding: 1rem;
}

.staff-name {
    font-size: 1.2em;
    margin: 10px 0 5px;
    font-weight: bold;
}

.staff-name a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.staff-name a:hover {
    color: #666;
}

.staff-name-roman {
    font-size: 0.9rem;
    margin: 0 0 0.5rem;
    color: #666;
}

.staff-name-en {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.staff-position {
    font-size: 0.9rem;
    color: #666;
}

/* Interview Section */
.interview-section {
    padding: 1rem 0 5rem;
}

.interview-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.interview-item {
    text-align: center;
}

.interview-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.3s ease;
}
a.interview-link {
    background: #fff;
}

.interview-link:hover {
    opacity: 0.8;
}

.interview-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
}

.interview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.interview-info {
    padding: 1rem;
}

.interview-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    color: #666;
    font-size: 0.8rem;
}

.interview-join-year,
.interview-position {
    display: inline-block;
}

.interview-separator {
    color: #666;
}

/* Interview Single */
.interview-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

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

.interview-info-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.interview-info-main {
    margin-bottom: 2rem;
}
.create-beauty img{
    width: 100%;
    max-width: 400px;
    margin-left: 10%; 
}
.interview-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interview-content {
    max-width: 1000px;
    margin: 0 auto;
}

.interview-title {
    font-size: 1.2rem;
    margin: 0.5rem 0 1rem;
}

.interview-message {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #b2955d;
}

.interview-message p {
    margin: 0;
}

.interview-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-top: 3rem;
    border-top: 1px solid #eee;
    padding-top: 3rem;
}

@media (max-width: 768px) {
    .interview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .interview-info-col {
        order: 2;
    }

    .interview-image-col {
        order: 1;
    }

    .interview-hero img {
        max-height: 400px;
    }
}

@media (max-width: 960px) {
    .interview-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .interview-list {
        grid-template-columns: 1fr;
    }
}
/*Contact*/
.contact dl{
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    line-height: 2em;
}
.contact dl dt{
    width: 30%;
    margin: 0;
    padding: 0;
    display: block;
}
.contact dl dt span{
    color:red;
}
.contact dl dd{
    width: 70%;
    margin: 0;
    padding: 0;
    display: block;
}
.contact dl dd input,
.contact dl dd textarea,
.contact dl dd select{
    width: 100%;
    margin: .5rem 0;
    padding: .5rem;
    display: block;
    border: 1px solid #ccc;
}
input[type="submit"]{
    width: 100%;
    max-width: 500px;
    margin: .5rem 0;
    padding: .5rem;
    display: block;
    border: 5px double #fff;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

/* News Section */
.news-section {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}
.news-section2 {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #fff;
}
.news-contenair {
    max-width: 1140px;
    padding: 2rem 1rem;
    margin: 0 auto;
} 
.news-list {
    margin: 3rem 0;
}

.news-item {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.news-date {
    min-width: 100px;
    color: #666;
}

.news-title {
    font-size: 1rem;
    font-weight: normal;
    margin: 0;
}

/* Review Section */
.review-section,
.archive-review-section {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #fff;
}
.review-section2{
    width: 100%;
    margin: 0;
    padding: 0;
}
.review-contenair {
    max-width: 1140px;
    padding: 5rem 1rem;
    margin: 0 auto;
} 
.review-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.review-item {
    background: #e0e0e0;
    padding: 1.5rem;
}
.review-item2 {
    background: #fff;
    padding: 1.5rem;
}

h3.review-title {
    font-size: 1.1rem;
    font-weight: normal;
    border-bottom: 1px solid #333;
    margin-bottom: 1rem;
}
.review-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.review-excerpt {
    font-size: .9rem;
    color: #666;
    line-height: 1.6;
}

.review-pagination,
.archive-review-section .nav-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.review-pagination .page-numbers,
.archive-review-section .page-numbers {
    padding: 0.5rem 1rem;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    color: #333;
}

.review-pagination .page-numbers.current,
.archive-review-section .page-numbers.current {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

@media (max-width: 768px) {
    .review-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .review-list {
        grid-template-columns: 1fr;
    }
}

/* News Archive */
.news-archive {
    width: 100%;
    background: #fff;
    padding: 5rem 0;
}

.news-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.news-list {
    margin-top: 3rem;
}

.news-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1rem;
    padding: .5rem 0;
    align-items: start;
    border-bottom: 1px solid #e0e0e0;
}

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

.news-image .no-image {
    width: 100%;
    height: 150px;
    background: #e0e0e0;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.news-date {
    font-size: 0.9rem;
    color: #666;
}

.news-category a {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    font-size: 0.8rem;
    color: #666;
    background-color: #f0f0f0;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-category a:hover {
    background-color: #e0e0e0;
    color: #333;
}

/* Pagination */
.page-numbers {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 2.5rem;
    height: 2.5rem;
    margin: 0 0.2rem;
    padding: 0 0.8rem;
    font-size: 0.9rem;
    text-decoration: none;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    transition: all 0.3s ease;
}

.page-numbers.current {
    background: #333;
    color: #fff;
    border-color: #333;
}

.page-numbers:hover:not(.current) {
    background: #f5f5f5;
    border-color: #ccc;
}

.page-numbers.prev,
.page-numbers.next {
    padding: 0 1rem;
}

.news-title {
    font-size: 1.08rem;
    margin: 0 0 1rem;
    font-weight: normal;
}

.news-title a {
    color: inherit;
    text-decoration: none;
}
.news-title a:hover {
    text-decoration: underline;
}

.news-title_top {
    font-size: 1.08rem;
    margin: 0;
    font-weight: normal;
}
.news-title_top a {
    color: inherit;
    text-decoration: none;
}
.news-title_top a:hover {
    text-decoration: underline;
}

.news-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Sidebar */
.news-sidebar {
    background: #fff;
    padding: 1.5rem;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ddd;
    font-weight: normal;
}

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

.sidebar-section li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.sidebar-section li a {
    color: #333;
    text-decoration: none;
    transition: opacity 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-section li a:hover {
    opacity: 0.7;
}

/* 月別アーカイブの投稿数 */
.sidebar-section li a .count {
    background: #f5f5f5;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    color: #666;
}

@media (max-width: 768px) {
    .news-container {
        grid-template-columns: 1fr;
    }
    
    .news-sidebar {
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .news-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .news-image img,
    .news-image .no-image {
        height: 200px;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.active img {
    animation: zoomEffect 8s ease-in-out forwards;
}

/* Staff Single Page */
.staff-header {
    position: relative;
    height: 300px;
    background-color: #f5f5f5;
    margin-bottom: 60px;
    padding-top: 100px;
}

.staff-header-bg {
    position: relative;
    height: 100%;
    background-color: #f5f5f5;
}

.staff-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.staff-header-overlay h1 {
    font-size: 2.5em;
    color: #333;
    margin: 0;
    font-weight: normal;
}

.staff-profile {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.staff-image {
    flex: 0 0 300px;
}

.staff-image img {
    width: 100%;
    height: auto;
    display: block;
}

.staff-info {
    flex: 1;
}

.staff-info h2 {
    font-size: 1.8em;
    margin: 0;
    font-weight: normal;
}

.staff-name-en {
    font-size: 1.2em;
    margin: 0 0 20px;
    color: #666;
}

.staff-position {
    font-size: 1.1em;
    margin: 0 0 30px;
    color: #333;
}

.staff-message {
    line-height: 1.8;
    color: #333;
}

.staff-back-but.btn-more {
    text-align: right;
    margin-top: 10px;
}

.btn-reservation {
    text-align: right;
    margin-top: 10px;
    margin-bottom: 5px;
    max-width: 260px;
    border: 4px double #333;
}
.reservation-button {
    display: block;
    padding: .5rem;
    color: #333 !important;
    border: 1px solid #333 !important;
    text-align: center !important;
    background: none !important;
    text-decoration: none !important;
    line-height: 1.6 !important;
    background-color: #e7e5e5 !important;
}

.reservation-button:hover {
    color: #fff !important;
    border-color: #333 !important;
    background-color: #333 !important;
    transition: all .5s ease;
}

/* 個別ページの予約ボタン */
.reservation-section {
    padding: 2rem 0;
}

.reservation-section .btn-reservation {
    margin: 0 auto;
}
.staff-back-button,
.btn-interview {
    margin: 30px auto;
    text-align: center;
}

.interview-button {
    display: inline-block;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.reservation-button {
    background-color: #000;
    color: #fff;
}

.interview-button {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    margin-left: 10px;
}

.reservation-button:hover {
    background-color: #333;
    color: #fff;
}

.interview-button:hover {
    background-color: #f5f5f5;
    color: #000;
}

.staff-back-button a {
    display: inline-flex;
    align-items: center;
    padding: 5px 60px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.staff-back-button a i {
    margin-right: 10px;
    font-size: 0.9em;
}

.staff-back-button a:hover {
    background-color: #555;
}

.slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 2;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background: white;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero .copy {
    font-size: 3.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-content > span{
    font-size: 1rem;
    margin-bottom: .5rem;
    color: #e8d463;
}

.hero-content > h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: #e8d463;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}



/* Footer */
footer {
    background: #333;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 2rem;
}

/* Menu styles */
.footer-links {
    margin: 0;
    padding: 0;
}
ul.footer-links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}
ul.footer-links li {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
}
ul.footer-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-top: 2px solid #898989;
    border-bottom: 2px solid #898989;
    padding: 0.4rem 1rem;
}
ul.footer-links li a::after {
    content: ">";
    margin-left: 0.6rem;
}
ul.footer-links li a:hover {
    color: #fff;
    border-color: #fff;
}

footer {
    background-color: #333;
    padding: 4rem 2rem .5rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.footer-logo img {
    height: 45px;
    width: auto;
}

.footer-copyright {
    text-align: center;
    color: #fff;
    font-size: 0.8rem;
    margin-top: 3rem;
    opacity: 0.8;
}

/* Salon Page */
.salon-page {
    padding: 3rem 0 !important;
}
@media (max-width: 480px) {
.salon-page section{
    padding: .5rem 0 !important;
}
   .salon-page{
    padding: .5rem 0 2rem !important;
}
.salon-page h2{
    font-size: 1.5rem !important;
}
.salon-header{
    height: 200px !important;
}
.salon-header h2{
    font-size: 1.2rem !important;
}
.salon-header-content{
    padding: .5rem !important;
    white-space: nowrap !important;
}
.btn-reservation,.btn-more{
    margin: .5rem auto !important;
    min-width: 260px !important;
}
}
.salon-page .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: normal;
}

.salon-page section {
    padding: 3rem 0;
}

.salon-header {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.salon-header-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.salon-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.salon-header-content {
    text-align: center;
    color: #333;
    padding: 20px;
}

.salon-header-content h2 {
    font-size: 2.5em;
    margin: 0;
    color: #333;
    font-weight: normal;
}

.salon-concept {
    background-color: #f9f9f9;
}

.concept-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 2;
    text-align: center;
}
.concept-content h3{
    font-size: 1.3rem;
    margin-bottom: .8rem;
    font-weight: 600;
}

.price-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}
.price-content img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.price-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-button {
    padding: 10px 30px;
    background: none;
    border: 4px double #fff;
    background: #c4c2c2;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.tab-button.active {
    background: #333;
    color: #fff;
}

.price-panels {
    position: relative;
}

.price-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-panel.active {
    display: block;
    opacity: 1;
}

.price-panel img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.price-item {
    text-align: center;
}

.price-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.price-item img {
    max-width: 100%;
    height: auto;
}
.staff-content{
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.staff-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.staff-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    margin-bottom: 20px;
}

.staff-image {
    width: 100%;
    max-width: 180px;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 10px;
    margin: 0 auto;
}

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

.staff-info {
    padding: 1rem;
}

.staff-name {
    font-size: 1.2em;
    margin: 10px 0 5px;
    font-weight: bold;
}

.staff-name a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.staff-name a:hover {
    color: #666;
}

.staff-name-roman {
    font-size: 0.9rem;
    margin: 0 0 0.5rem;
    color: #666;
}

.staff-name-en {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.staff-position {
    font-size: 0.9rem;
    color: #666;
}

/* スタッフ関連記事 */
.staff-related-posts {
    margin: 3rem auto;
    max-width: 800px;
    padding: 0 1rem;
}

.staff-related-posts-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #333;
}

.staff-related-posts-list {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.staff-related-post {
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
    border-bottom: 1px solid #ddd;
}

.staff-related-post:last-child {
    border-bottom: none;
}

.staff-related-post-date {
    font-size: 0.9rem;
    color: #666;
    white-space: nowrap;
}

.staff-related-post-title {
    font-size: 1rem;
    margin: 0;
    flex-grow: 1;
}

.staff-related-post-title a {
    color: #333;
    text-decoration: none;
}

.staff-related-post-title a:hover {
    color: #666;
}

/* News Section */
.news-section {
    padding: 2rem 0;
}

.news-archive {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
}

.archive-title {
    font-size: 1.5rem;
    font-weight: normal;
    margin: 0 0 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .news-section {
        padding: 2rem 0;
    }

    .news-archive {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .archive-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.news-item {
    display: flex;
    gap: .5rem;
    padding: .5rem;
    margin-bottom: .5rem;
}

.news-list .news-image {
    flex: 0 0 200px;
    width: 200px;
    height: 150px;
}

.news-list .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-list .news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .news-archive {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .news-list .news-item {
        flex-direction: column;
    }

    .news-list .news-image {
        width: 100%;
        height: 200px;
    }
}

.pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #fff;
    text-decoration: none;
    color: #333;
    min-width: 2.5rem;
    text-align: center;
    transition: opacity 0.3s;
}

.pagination a:hover {
    opacity: 0.7;
}

.pagination .current {
    background: #333;
    color: #fff;
}

.no-posts {
    background: #fff;
    padding: 2rem;
    text-align: center;
    color: #666;
}


/* Coupon Section */
.salon-coupon {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.coupon-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 15px;
}

.coupon-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.coupon-main {
    display: flex;
    align-items: stretch;
}
@media (max-width: 480px) {
    .coupon-main {
        display: flex;
        flex-direction: column;
    }
}

.coupon-image {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

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

.coupon-content {
    padding: 20px;
    padding-bottom: 0;
    margin-bottom: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.coupon-title {
    font-size: 1.2em;
    margin: 0 0 15px;
    color: #333;
}

.coupon-price {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.coupon-price .regular-price {
    color: #333;
}

.coupon-price .discounted-price {
    color: #ff0000;
    font-size: 1.3em;
    font-weight: bold;
}

.regular-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.discount-price {
    font-size: 1.4em;
    color: #e60012;
    font-weight: bold;
}

.coupon-description {
    font-size: 0.9em;
    color: #666;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.coupon-duration,
.coupon-conditions,
.coupon-description {
    margin: 10px 0;
    font-size: 14px;
    color: #333;
}

.coupon-conditions {
    margin: 8px 0;
    font-size: 13px;
    color: #666;
}

.conditions-label {
    font-weight: bold;
    margin-right: 5px;
}

.coupon-duration,
.coupon-treatment-time,
.coupon-expiry {
    margin: 0;
    font-size: 0.9em;
    color: #666;
    font-weight: 600;
}

.coupon-button {
    display: block;
    width: 100%;
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s;
    font-size: 0.95em;
    margin: 0;
}

.coupon-button:hover {
    background: #555;
}

@media (max-width: 767px) {
    .coupon-item {
        flex-direction: column;
    }

    .coupon-image {
        width: 100%;
        height: 200px;
    }
}

/* Staff List */
.staff-section {
    padding: 2rem 0;
}

.staff-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.staff-item {
    text-align: center;
    background: #fff;
    padding: 1rem;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

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

.staff-image {
    margin-bottom: 1rem;
}

.staff-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.staff-info {
    padding: 0.5rem;
}

.staff-name {
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
    color: #333;
}

.staff-name-en {
    color: #666;
    margin: 0;
    font-size: 0.7rem;
}

.staff-position {
    color: #333;
    margin: 0;
}
.staff-salon-name{
    color: #666;
    margin: 0 0 0.9rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.staff-shop {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .staff-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .staff-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .staff-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    .hero .copy {
        font-size: 1.6rem !important;
    }
    .staff-info {
        text-align: center;
    }
    .single-staff .staff-content,
    .single-staff .staff-profile {
        display: block !important;
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

/* Single News */
.news-single {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 6rem 1rem 2rem;
}

.news-article {
    background: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.news-content {
    text-align: left;
    line-height: 1.8;
}

.news-header {
    margin-bottom: 2rem;
}

.news-meta {
    margin-bottom: 0.5rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-staff a {
    color: #666;
    text-decoration: none;
    padding: 2px 8px;
    border: 1px solid #666;
    border-radius: 3px;
    font-size: 0.8rem;
    margin-left: 10px;
}

.news-staff a:hover {
    background: #666;
    color: #fff;
}

/* ブログサイドバー */
.blog-sidebar {
    width: 100%;
    max-width: 300px;
}

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

.sidebar-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.staff-archive-list,
.monthly-archive-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.staff-archive-list li,
.monthly-archive-list li {
    margin-bottom: 0.5rem;
}

.staff-archive-list a,
.monthly-archive-list a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.staff-archive-list a:hover,
.monthly-archive-list a:hover {
    background: #f5f5f5;
    padding-left: 1rem;
}

/* スタッフドロップダウン */
.staff-dropdown {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #333;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.staff-dropdown:hover,
.staff-dropdown:focus {
    border-color: #666;
    outline: none;
}

.staff-dropdown option {
    padding: 0.5rem;
}

.news-meta time {
    color: #666;
    font-size: 0.9rem;
}

.news-category {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: #f0f0f0;
    color: #333;
    font-size: 0.8rem;
    border-radius: 2px;
}

.news-title {
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 0;
}

.news-content {
    line-height: 1.8;
}

.news-content img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
}

/* Post Navigation */
.post-navigation {
    margin: 3rem 0;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-previous a,
.nav-next a {
    display: block;
    padding: 1rem;
    background: #fff;
    text-decoration: none;
    color: #333;
    transition: opacity 0.3s;
}

.nav-previous a:hover,
.nav-next a:hover {
    opacity: 0.7;
}

.nav-next {
    text-align: right;
}

.nav-subtitle {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.nav-title {
    display: block;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Salon List 2 */
.salon-section2 {
    padding: 2rem 0;
}

.salon-grid2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.salon-item2 {
    text-align: center;
    background: #fff;
}

.salon-image2 {
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 1rem;
}

.salon-image2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salon-title2 {
    font-size: 1.2rem;
    margin: 0 0 1rem;
    padding: 0;
    font-weight: normal;
}

.salon-more2 {
    margin-bottom: 1rem;
}

.more-link2 {
    display: inline-block;
    padding: 0.3rem 2rem;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
}

.more-link2:hover {
    background: #333;
    color: #fff;
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    section.hero .hero-content .btn.btn-entry {
        width: 90% !important;
        max-width: 320px !important;
        margin: 2rem auto 0;
    }

    section.hero .hero-content .btn.btn-entry a {
        padding: 1rem;
        font-size: 1.1rem !important;
    }

    footer {
        padding: 3rem 1.5rem .5rem;
        gap: 2rem;
    }

    .footer-logo img {
        height: 35px;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .interview-content {
        flex-direction: column;
    }
    
    .hero .copy {
        font-size: 2rem;
    }
    
    .nav-buttons {
        display: flex;
    }
}
