/*
Theme Name: Beautiful WP
Description: WordPressテーマ for hair make beautiful
Version: 1.0
*/

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


html{
    font-size: 16px;
}

@media (max-width: 768px) {
    html{
        font-size: 15px;
    }
}

body {
   font-family: 'Lato', 'Yu Gothic', '游ゴシック体', 'Meiryo', sans-serif;

    line-height: 1.8;
    color: #222;
    background-color: #faf9f7;
    font-feature-settings: "palt";
    width: 100vw;
    overflow-x: hidden;
}

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


img{
    max-width: 100%;
}


.pc{
    display: block;
}

@media (max-width: 768px) {
    .pc{
        display: none;
    }
}

.sp{
    display: none;
}

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



p{
    margin-bottom: 1rem;
}

/* ===========================
   共通スタイル
   =========================== */




   .cta-title {

    font-weight: 500;
}

/* ヘッダー */
header {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.menu-container{
    display: flex;
    flex-direction: raw;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.menu{
    margin-right: 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}




.logo {
    font-size: 28px;
    font-weight: 300;
    color: #8B7355;
    letter-spacing: 3px;
}

.logo a {
    font-size: 28px;
    font-weight: 300;
    color: #8B7355;
    letter-spacing: 3px;
    text-decoration: none;
}

.logo img{
width: 100%;
max-width: 130px;
display: block;
padding-top: 7px;
padding-bottom: 3px;
}

@media (max-width: 768px) {
    .logo img{
        max-width: 100px;

    }
}



header .menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

header .menu a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: color 0.3s;
}

header .menu a:hover {
    color: #8B7355;
}

.reserve-btn {
    background-color: #8B7355;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
}

.reserve-btn:hover {
    background-color: #6d5940;
    transform: translateY(-2px);
}

/* ハンバーガーメニュー（モバイル） */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 33px;
    height: 33px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 102;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background-color: #8B7355;
    transition: 0.3s;
    transform-origin: center;
}



.mobile-menu-button.is-active .hamburger-line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
    background-color: #FFF!important;
}

.mobile-menu-button.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
    background-color: #FFF!important;
}

.mobile-menu-button.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
    background-color: #FFF!important;
}

/* モバイル用全画面メニュー */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(139, 115, 85, 0.98);
    backdrop-filter: blur(10px);
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

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

.mobile-menu-list li {
    margin-bottom: 20px;

}

.mobile-menu-list a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    display: block;
    letter-spacing: 3px;
}

.mobile-menu-list a:hover {
    color: #f0f0f0;
    transform: scale(1.05);
}

.mobile-menu-reserve {
    margin-top: 50px;
    text-align: center;
}

.mobile-reserve-btn {
    background-color: white;
    color: #8B7355;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

.mobile-reserve-btn:hover {
    background-color: #f5f5f5;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: flex;
    }
}

/* 共通セクションスタイル */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 300;
    margin-bottom: 2rem;
    position: relative;
    letter-spacing: 1px;
}



.section-subtitle {
    text-align: center;
    color: #8B7355;
    font-size: 16px;
    margin-bottom: 60px;
}

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

.section-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    color: #333;
    font-size: 16px;
    line-height: 1.8;
}

/* 共通ページヒーロー */
.page-hero {
    height: 40vh;
    position: relative;
    margin-top: 70px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;

}


.page-hero-content {
    text-align: center;
    color: white;
}

.page-title-en {
    font-size: 60px;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 10px;
    text-transform: uppercase;
    /* アニメーション設定 */
    opacity: 0;
    transform: translateY(30px);
    animation: pageTitleFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.3s;
}

.page-title-jp {
    font-size: 24px;
    letter-spacing: 4px;
    font-weight: 300;
    /* アニメーション設定 */
    opacity: 0;
    transform: translateY(20px);
    animation: pageTitleFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.6s;
}

@media (max-width: 768px) {
    .page-title-jp{
        font-size: 1.2rem;
    }

    .page-title-en {
        /* モバイルでのアニメーション調整 */
        transform: translateY(20px);
        animation-duration: 0.8s;
        animation-delay: 0.2s;
    }

    .page-title-jp {
        /* モバイルでのアニメーション調整 */
        transform: translateY(15px);
        animation-duration: 0.7s;
        animation-delay: 0.4s;
    }
}

/* 共通導入文 */
.intro-section {
    background-color: #f8f6f3;
    padding: 80px 0;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 2;
    color: #333;
}

/* 共通パンくずリスト */
.breadcrumb {
    padding: 20px 0;
    margin-top: 80px;
    background-color: white;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    color: #333;
}

.breadcrumb-item:not(:last-child)::after {
    content: ">";
    margin: 0 10px;
    color: #999;
}

.breadcrumb-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #8B7355;
}

/* 共通CTA */
.cta-button {
    display: table;
    background-color: #B8860B;
    color: white;
    padding: 18px 30px;
    border-radius: 35px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    border: 1px solid transparent;
    margin-right: auto;
    margin-left: auto;
}

.cta-button:hover {
    background-color: transparent;
    border-color: #B8860B;
    color: #B8860B;

}

/* 共通CTA（白背景版） */
.cta-button.white-bg {
    background-color: white;
    color: #8B7355;
    border-color: transparent;
}

.cta-button.white-bg:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* 共通ノート */
.note h3 {
    margin-bottom: 2rem;
}

.note p {
    margin-bottom: 1rem;
}

/* フッター */
footer {
    background-color: #3a3a3a;
    color: #fff;
    padding-top: 60px;
}

.footer-main {
    background-color: #3a3a3a;
    padding-bottom: 40px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 3fr 2fr 2fr 2fr;
    gap: 40px;
}

/* サロン情報 */
.footer-salon {
    padding-right: 40px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 300;
    color: #B8860B;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footer-logo small{
    font-size: 0.7em;

}

.footer-description {
    font-size: 14px;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact-item {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-item a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: #B8860B;
}

/* SNSリンク */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

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

/* フッターメニュー */
.footer-column h3 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #B8860B;
}

.footer-list {
    list-style: none;
    padding-left: 0.3rem;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: block;
    padding-left: 10px;
    position: relative;
    display: flex;
    align-items: flex-start ;
    gap: 10px;
}

.footer-list a:before {
    content: "›";
    position: absolute;
    left: 0;
    color: #B8860B;
    font-size: 16px;
    line-height: 1.4;
}

.footer-list a:hover {
    color: #B8860B;
}

/* 営業時間 */
.hours-table {
    font-size: 14px;
    color: #ccc;
}

.hours-table td {
    padding: 5px 0;
}

.hours-table td:first-child {
    padding-right: 20px;
}

/* LINE登録 */
.newsletter {
    background-color: #2a2a2a;
    padding: 40px 0;
    margin-top: 40px;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
}

.newsletter p {
    color: #ccc;
    margin-bottom: 25px;
    font-size: 14px;
}

.line-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #00B900;
    color: white;
    padding: 15px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
}

.line-button:hover {
    background-color: #009900;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 185, 0, 0.3);
}

.line-icon {
    font-size: 24px;
    font-weight: bold;
}

/* コピーライト */
.footer-bottom {
    background-color: #2a2a2a;
    padding: 20px 0;
    border-top: 1px solid #444;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 14px;
    color: #999;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.footer-bottom-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #B8860B;
}

/* ===========================
   ホームページ専用スタイル
   =========================== */

/* ファーストビュー */

.swiper{
    position: relative;
    width: 100%;
    height: 70vh;
    z-index: 10;
    overflow: hidden;
}

.swiper-slide {
    overflow: hidden;
    position: relative;
}

.swiper img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    transform-origin: center center;
    position: absolute;
    top: 0;
    left: 0;
}

/* 静的画像表示 - アニメーション無し */
.swiper-slide:nth-child(1) img,
.swiper-slide:nth-child(2) img,
.swiper-slide:nth-child(3) img {
    /* アニメーション無し */
}

/* アニメーション削除済み */

/* ホバー時もアニメーションを継続 */

/* Swiperのシンプルなフェードエフェクト */
.swiper-fade .swiper-slide {
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.swiper-fade .swiper-slide-active {
    pointer-events: auto;
    transition: opacity 0.8s ease;
}

.swiper-fade .swiper-slide img {
    transform-origin: center center;
}

/* モバイル用アニメーションも削除済み */

.home .hero {
    padding: 0;
    position: relative;
    margin-top: 70px;
    /* background-size: cover;
    background-position: center; */
    /* display: flex;
    align-items: flex-end;
    padding: 0 5%; */
}



.home .hero-content {
    z-index: 20;
    position: absolute;
    bottom: 0;
    left: 3vw;
    text-align: left;
    margin-bottom: 4vh;
    color: white;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 5px;
    max-width: 600px;
    color: #FFF;
    background-color:  #8B735520;
    /* アニメーション設定 */
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.3s;
}

/* hero-content内のCTAボタンアニメーション */
.home .hero-content .cta-button {
    opacity: 0;
    transform: translateY(12px);
    animation: heroElementFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 1s;
}

/* hero-contentのフェードインアップアニメーション */
@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* hero要素のフェードインアニメーション */
@keyframes heroElementFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* hero-subtitleのフェードインアニメーション */
@keyframes heroSubtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ページタイトルのフェードインアニメーション */
@keyframes pageTitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* アニメーションを無効にするユーザー向けの配慮 */
@media (prefers-reduced-motion: reduce) {
    .home .hero-content,
    .home .hero h1,
    .home .hero-content .cta-button {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .home .hero-subtitle {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .page-title-en,
    .page-title-jp {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.home .hero a{
    display: none;
}
@media (max-width: 768px) {
    .home .hero-content {
        left: 0vw;
        border-radius: 0px;
        /* モバイルでのアニメーション設定 */
        transform: translateY(15px);
        animation-duration: 1s;
        animation-delay: 0.2s;
    }
}

.home .hero h1 {
    font-size: clamp(28px, 5vw, 38px);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0px 0px 30px #6d5940;
    /* アニメーション設定 */
    opacity: 0;
    transform: translateY(15px);
    animation: heroElementFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.6s;
}

@media (max-width: 768px) {
    .home .hero h1 {
        font-size: clamp(18px, 5vw, 38px);
        /* モバイルでのアニメーション調整 */
        animation-delay: 0.5s;
        animation-duration: 0.7s;
    }
    .home .hero a{
        display: none;
    }
}

.home .hero-subtitle {
    font-size: clamp(16px, 3vw, 20px);
    margin-bottom: 0px;
    opacity: 0;
    text-shadow: 0px 0px 30px #6d5940;
    /* アニメーション設定 */
    transform: translateY(12px);
    animation: heroSubtitleFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.8s;
}
@media (max-width: 768px) {
    .home .hero-subtitle {
        font-size: clamp(14px, 3vw, 20px);
        line-height: 1.5;
        /* モバイルでのアニメーション調整 */
        animation-delay: 0.7s;
        animation-duration: 0.7s;
    }
}

/* スクロールインジケーター */
.home .scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 30px;
    transform: translateX(0%);
    text-align: center;
    color: white;
    cursor: pointer;
    z-index: 90;
}


@media (max-width: 768px) {
    .home .scroll-indicator {
        right: 12px;
    }
}

.home .scroll-text {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.home .scroll-arrow {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    animation: bounce 2s infinite;
}

.home .scroll-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: translate(-50%, -70%) rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

/* ブログセクション */
.home .blog {
    background-color: white;
    padding: 80px 0;
}

.home .blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.home .blog-subtitle {
    font-size: 18px;
    color: #8B7355;
    margin-bottom: 10px;
    font-style: italic;
}

.home .blog-description {
    color: #333;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.home .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-columns:1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

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

.home .blog-card a{
    text-decoration: none;
}
.home .blog-card .blog-read-more{
   margin-bottom: 0;
}



.home .blog-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    background: white;
}

.home .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.home .blog-image {
    width: 100%;
    height: 200px;
    background-color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

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

.home .blog-category-container {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.home .blog-category {
    background-color: rgba(139, 115, 85, 0.9);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    white-space: nowrap;
}

.home .blog-content {
    padding: 25px;
}

.home .blog-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
    line-height: 1.5;
}

.home .blog-excerpt {
    color: #333;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.home .blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 13px;
}

.home .blog-read-more {
    color: #8B7355;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.home .blog-read-more:hover {
    text-decoration: underline;
}

.home .blog-more-btn {
    text-align: center;
    margin-top: 40px;
}

/* お悩み提起エリア */
.home .concerns {
    background-color: #f8f6f3;
}

.home .concerns-list {
    max-width: 800px;
    margin: 0 auto;
}

.home .concern-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;

}

.home .concern-item:hover {
    transform: translateY(-3px);
}

.home .check-icon {
    color: #8B7355;
    margin-right: 15px;
    font-size: 20px;
    flex-shrink: 0;
}

.home .concern-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}

.home .concerns-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
    color: #333;
}

/* こだわりエリア */
.home .features {
    background-color: white;
}

.home .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.home .feature-item {
    background-color: #faf9f7;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}
@media (max-width: 768px) {
    .home .feature-item {
        padding: 30px 15px;
    }
}

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

.home .feature-image {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
@media (max-width: 768px) {
    .home .feature-image {
        height: 50vw;
    }
}

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

.home .feature-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}
@media (max-width: 768px) {
    .home .feature-title {
     line-height: 1.5;
    }
}

.home .feature-subtitle {
    color: #8B7355;
    font-size: 15px;
    margin-bottom: 20px;
}

.home .feature-text {
    color: #333;
    font-size: 15px;
    line-height: 1.8;
    text-align: left;
}

.home .feature-item ul {
    margin: 15px 0;
    padding-left: 20px;
    text-align: left;
}

.home .feature-item li {
    color: #333;
    font-size: 15px;
    margin-bottom: 5px;
}

/* メニュー導線エリア */
.home .menu-links {
    background-color: #f8f6f3;
}

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

.home .menu-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.home .menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.home .menu-image {
    width: 100%;
    height: 250px;
    background-color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .home .menu-image {
        height: 50vw;
    }
}

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

.home .menu-content {
    padding: 30px;
}

.home .menu-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
}

.home .menu-description {
    color: #333;
    margin-bottom: 20px;
    font-size: 15px;
}

.home .menu-button {
    display: inline-block;
    color: #8B7355;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #8B7355;
    transition: all 0.3s;
}

.home .menu-button:hover {
    color: #6d5940;
    border-bottom-color: #6d5940;
}

/* お客様の声 */
.home .testimonials {
    background-color: white;
}

.home .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.home .testimonial-card {
    background-color: #faf9f7;
    padding: 30px;
    border-radius: 15px;
    position: relative;
}

.home .quote-mark {
    font-size: 48px;
    color: #8B7355;
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
}

.home .testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
    color: #333;
    position: relative;
    z-index: 1;
    padding-left: 1rem;
    text-align: justify;
}

.home .testimonial-author {
    text-align: right;
    color: #8B7355;
    font-weight: 500;

}

.home .kutikomi-img {
    display: block;
    margin: 0 auto;
    width: 80%;
    max-width: 500px;
    height: auto;
    margin-bottom: 45px;
}

/* ビフォーアフター */
.home .ba-examples {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.home .ba-item {
    text-align: center;
}

.home .ba-images {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.home .ba-image {
    width: 200px;
    height: 250px;
    background-color: #e0e0e0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.home .ba-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(139, 115, 85, 0.9);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.home .ba-description {
    color: #333;
    font-size: 15px;
    max-width: 420px;
}

/* お知らせ */
.home .news {
    background-color: #f8f6f3;
}

 .news-list {
    max-width: 800px;
    margin: 0 auto;
}

 .news-item {
    background: white;
    padding: 20px 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

 .news-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.news-date {
    color: #8B7355;
    font-weight: 500;
    margin-right: 20px;
    flex-shrink: 0;
}

 .news-title {
    color: #222;
    text-decoration: none;
    transition: color 0.3s;
}

 .news-title:hover {
    color: #8B7355;
}

/* 予約導線 */
.home .cta-section {
    background-color: white;
    text-align: center;
    padding: 100px 0;
}

.home .cta-title {
    font-size: clamp(28px, 4vw, 36px);
    color: #222;
    margin-bottom: 10px;
    font-weight: 500;
}

.home .cta-subtitle {
    color: #333;
    font-size: 18px;
    margin-bottom: 40px;
}

.home .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.home .tel-number {
    font-size: 24px;
    color: #8B7355;
    font-weight: 500;
    margin-bottom: 10px;
}

.home .tel-info {
    color: #333;
    font-size: 14px;
}

/* サロン情報 */
.home .salon-info {
    background-color: #8B7355;
    color: white;
    padding: 60px 0;
}

.home .salon-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.home .info-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 1px;
}

.home .info-item p {
    font-size: 15px;
    opacity: 1;
    line-height: 1.8;
}

.home .info-button {
    display: inline-block;
    color: white;
    text-decoration: none;
    border: 1px solid white;
    padding: 10px 25px;
    border-radius: 25px;
    margin-top: 0px;
    margin-bottom: 1rem;
    font-size: 14px;
    transition: all 0.3s;
}

.home .info-button:hover {
    background-color: white;
    color: #8B7355;
}

/* ===========================
   ブログ記事ページ専用（single-blog）
   =========================== */

.single-blog .page-hero {
    /* 背景画像は動的に設定されます */

}

/* 記事セクション */
.single-blog .article-section {
    background-color: white;
    padding: 60px 0;
}

.single-blog .article-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

/* 記事メイン */
.single-blog .article-main {
    background-color: white;
}

.single-blog .article-header {
    margin-bottom: 40px;
}

.single-blog .article-category {
    display: inline-block;
    background-color: #8B7355;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

.single-blog .article-title {
    font-size: 32px;
    color: #222;
    line-height: 1.5;
    margin-bottom: 20px;
}

.single-blog .article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #333;
    font-size: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.single-blog .article-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.single-blog .article-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.single-blog .author-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #8B7355;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
}

/* アイキャッチ画像 */
.single-blog .article-image {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
}

.single-blog .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 記事本文 */
.single-blog .article-content {
    font-size: 16px;
    color: #222;
    line-height: 2;
}

.single-blog .article-content h2 {
    font-size: 28px;
    color: #222;
    margin: 60px 0 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #8B7355;
}

.single-blog .article-content h3 {
    font-size: 22px;
    color: #222;
    margin: 40px 0 20px;
    padding-left: 15px;
    border-left: 5px solid #8B7355;
}

.single-blog .article-content p {
    margin-bottom: 25px;
}

.single-blog .article-content ul,
.single-blog .article-content ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.single-blog .article-content li {
    margin-bottom: 10px;
}

.single-blog .article-content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background-color: #f8f6f3;
    border-left: 5px solid #8B7355;
    font-style: italic;
}

/* SNSシェアボタン */
.single-blog .share-buttons {
    margin: 60px 0;
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.single-blog .share-title {
    font-size: 18px;
    color: #222;
    margin-bottom: 20px;
}

.single-blog .share-list {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.single-blog .share-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.3s;
}

.single-blog .share-button:hover {
    transform: translateY(-3px);
}

.single-blog .share-twitter {
    background-color: #1DA1F2;
}

.single-blog .share-facebook {
    background-color: #3B5998;
}

.single-blog .share-line {
    background-color: #00B900;
}

/* 執筆者プロフィール */
.single-blog .author-profile-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f8f6f3;
    border-radius: 15px;
}

.single-blog .author-profile-title {
    font-size: 21px;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
}
@media (max-width: 768px) {
    .single-blog .author-profile-title {
        font-size: 18px;
    }
}

.single-blog .author-profile-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.single-blog .author-profile-image {
    flex-shrink: 0;
}

.single-blog .author-profile-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.single-blog .author-profile-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #8B7355;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 500;
}

.single-blog .author-profile-info {
    flex: 1;
}

.single-blog .author-profile-name {
    font-size: 20px;
    color: #222;
    font-weight: 500;
    margin-bottom: 5px;
}

.single-blog .author-profile-position {
    font-size: 16px;
    color: #8B7355;
    margin-bottom: 15px;
    font-weight: 500;
}

.single-blog .author-profile-bio {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
}

/* 関連記事 */
.single-blog .related-articles {
    margin-top: 60px;
}

.single-blog .related-title {
    font-size: 21px;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
}


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

.single-blog .related-card {
    background-color: #f8f6f3;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.single-blog .related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.single-blog .related-image {
    width: 100%;
    height: 180px;
    background-color: #e0e0e0;
    overflow: hidden;
}

.single-blog .related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-blog .related-content {
    padding: 20px;
}

.single-blog .related-date {
    font-size: 13px;
    color: #8B7355;
    margin-bottom: 10px;
}

.single-blog .related-link {
    font-size: 16px;
    color: #222;
    text-decoration: none;
    display: block;
    line-height: 1.5;
    transition: color 0.3s;
}

.single-blog .related-link:hover {
    color: #8B7355;
}

/* サイドバー */
.single-blog .article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.single-blog .sidebar-widget {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.single-blog .widget-title {
    font-size: 18px;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #8B7355;
}

/* カテゴリー */
.single-blog .category-list {
    list-style: none;
}

.single-blog .category-item {
    margin-bottom: 15px;
}

.single-blog .category-link {
    color: #333;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #faf9f7;
    border-radius: 8px;
    transition: all 0.3s;
}

.single-blog .category-link:hover {
    background-color: #8B7355;
    color: white;
}

.single-blog .category-count {
    background-color: white;
    color: #8B7355;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
}

.single-blog .category-link:hover .category-count {
    background-color: white;
    color: #8B7355;
}

/* 人気記事 */
.single-blog .popular-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.single-blog .popular-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.single-blog .popular-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background-color: #e0e0e0;
    flex-shrink: 0;
    overflow: hidden;
}

.single-blog .popular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-blog .popular-content {
    flex: 1;
}

.single-blog .popular-title {
    font-size: 15px;
    color: #222;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    line-height: 1.4;
    transition: color 0.3s;
}

.single-blog .popular-title:hover {
    color: #8B7355;
}

.single-blog .popular-date {
    font-size: 13px;
    color: #999;
}

/* CTA */
.single-blog .article-cta {
    background-color: #8B735599;
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 3rem;
}

.single-blog .cta-title {
    font-size: 21px;
    margin-bottom: 15px;
    color: #fff;
}
@media (max-width: 768px) {
    .single-blog .cta-title {
    line-height: 1.6;
    margin-bottom: 20px;
    }
}

.single-blog .cta-text {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 1;
}

.single-blog .article-cta a:hover{
background-color: #FFF;

}

/* ===========================
   ブログ一覧ページ専用（blog）
   =========================== */

.blog .page-hero {
    /* 背景画像は動的に設定されます */
}

/* ===========================
   メニューページ専用（menu）
   =========================== */

.menu .page-hero {
    /* 背景画像は動的に設定されます */
}


.menu .intro-section {
    background-color: white!important;

}
.menu .menu-section.note  {
    background-color: white!important;

}

@media (max-width: 768px) {
    .menu-section .section-intro{
        text-align: justify;
    }
}


@media (max-width: 768px) {
    .menu .intro-text {
text-align: justify;
    }
}



/* メニューセクション */
.menu .menu-section {
    background-color: #f8f6f3!important;
}

.menu .menu-section:nth-child(even) {
    background-color: white;
}

/* メニューアイテム */
.menu .menu-item {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 10, 0.1); */
    border: 1px solid #B8860B50;
}

@media (max-width: 768px) {
    .menu .menu-item {
        padding-left: 1.6rem;
        padding-right: 1.6rem;
        border: 2px solid #B8860B50;
    }
}

.menu .menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.menu .menu-item-title {
    font-size: 24px;
    color: #222;
    font-weight: 500;
}
@media (max-width: 768px) {
    .menu .menu-item-title {
       line-height: 1.4;
    }
}

.menu .menu-item-price {
    font-size: 22px;
    color: #8B7355;
    font-weight: 400;
}

.menu .menu-item-price small {
    font-size: 70%;
    color: #999;
    font-weight: normal;
}

.menu .menu-item-catchphrase {
    font-size: 16px;
    color: #8B7355;
    margin-bottom: 20px;
    font-style: italic;
}

.menu .menu-item-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.menu .menu-item-section {
    padding: 20px;
    background-color: #faf9f7;
    border-radius: 10px;
}

.menu .menu-item-section h4 {
    font-size: 16px;
    color: #8B7355;
    margin-bottom: 10px;
    font-weight: 500;
}

.menu .menu-item-section ul {
    list-style: none;
    padding-left: 20px;
}

.menu .menu-item-section li {
    position: relative;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.menu .menu-item-section li::before {
    content: "•";
    position: absolute;
    left: -15px;
    color: #8B7355;
}

.menu .menu-item-features {
    margin-bottom: 20px;
}

.menu .menu-item-features h4 {
    font-size: 16px;
    color: #8B7355;
    margin-bottom: 10px;
    font-weight: 500;
}

.menu .menu-item-features p {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
}

.menu .menu-item-info {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #333;
}

/* ===========================
   お客様の声ページ専用（voice）
   =========================== */

.voice .page-hero {
    /* 背景画像は動的に設定されます */
}

/* お客様の声セクション */
.voice .voice-section {
    background-color: white;
}

.voice .voices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.voice .voice-card {
    background-color: #faf9f7;
    border-radius: 15px;
    padding: 40px;
    position: relative;
    transition: all 0.3s;
}

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

.voice .quote-mark {
    font-size: 60px;
    color: #8B7355;
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.voice .voice-header {
    margin-bottom: 20px;
    padding-left: 40px;
}

.voice .customer-info {
    font-size: 18px;
    color: #222;
    font-weight: 500;
    margin-bottom: 10px;
}

.voice .customer-concern {
    font-size: 14px;
    color: #333;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.voice .voice-text {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-style: italic;
    padding-left: 40px;
}

.voice .voice-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #e0e0e0;
    margin: 20px auto 0;
    overflow: hidden;
}

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

/* ビフォーアフターセクション */
.voice .ba-section {
    background-color: #f8f6f3;
}

.voice .ba-grid {
    display: grid;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.voice .ba-item {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.voice .ba-title {
    font-size: 22px;
    text-align: center;
    padding: 30px 20px 20px;
    font-weight: 400;
}

.voice .ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background-color: #e0e0e0;
}

.voice .ba-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

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

.voice .ba-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(139, 115, 85, 0.9);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
}

.voice .ba-description {
    padding: 30px;
    text-align: justify;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

/* フィルタータブ */
.voice .filter-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.voice .filter-tab {
    padding: 12px 30px;
    border-radius: 30px;
    background-color: transparent;
    border: 1px solid #8B7355;
    color: #8B7355;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.voice .filter-tab.active {
    background-color: #8B7355;
    color: white;
}

.voice .filter-tab:hover {
    background-color: #8B7355;
    color: white;
}

/* ===========================
   コンセプトページ専用（concept）
   =========================== */

.concept .page-hero {
    /* 背景画像は動的に設定されます */
}

/* 導入文 */
.concept .intro-section {
    background-color: white;
    padding: 80px 0;
}

.concept .intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 2;
    color: #333;
}

@media (max-width: 768px) {
    .concept .intro-text {
        font-size: 1rem;
        text-align: left;
    }
}

/* セクション共通スタイル */
.concept .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.concept .section-title-en {
    font-size: 14px;
    letter-spacing: 4px;
    color: #8B7355;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.concept .section-title-jp {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 300;
    color: #222;
    line-height: 1.5;
}

/* コンセプト・想い */
.concept .concept-section {
    background-color: #f8f6f3;
}

.concept .concept-block {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.concept .concept-title {
    font-size: 22px;
    color: #8B7355;
    margin-bottom: 20px;
    text-align: center;
}

.concept .concept-text {
    font-size: 1rem;
    line-height: 2;
    color: #333;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
}

.concept .concept-image {
    width: 100%;
    height: 400px;
    margin: 30px 0;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

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

/* こだわり */
.concept .commitment-section {
    background-color: white;
}

.concept .commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.concept .commitment-item {
    background-color: #faf9f7;
    padding: 40px;
    border-radius: 15px;
    transition: all 0.3s;
    text-align: justify;
}

@media (max-width: 768px) {
    .concept .commitment-item{
padding-left: 1.6rem;
padding-right: 1.6rem;
    }
}

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

.concept .commitment-image {
    width: 100%;
    height: 250px;
    background-color: #e0e0e0;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .concept .commitment-image {
        height: 40vw;
    }
}

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

.concept .commitment-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #8B7355;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    margin-bottom: 20px;
}

.concept .commitment-title {
    font-size: 20px;
    color: #222;
    margin-bottom: 10px;
}

.concept .commitment-subtitle {
    font-size: 16px;
    color: #8B7355;
    margin-bottom: 20px;
}

.concept .commitment-text {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
}

/* スタッフ紹介 */
.concept .staff-section {
    background-color: #f8f6f3;
}

.concept .staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.concept .staff-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

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

.concept .staff-photo {
    width: 100%;
    height: 350px;
    background-color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

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

.concept .staff-info {
    padding: 30px;
}

.concept .staff-name {
    font-size: 22px;
    color: #222;
    margin-bottom: 5px;
}

.concept .staff-position {
    color: #8B7355;
    font-size: 16px;
    margin-bottom: 15px;
}

.concept .staff-details {
    margin-bottom: 20px;
}

.concept .staff-detail-item {
    display: flex;
    margin-bottom: 8px;
    font-size: 14px;
}

.concept .staff-detail-label {
    width: 100px;
    color: #8B7355;
    font-weight: 500;
}

.concept .staff-detail-value {
    color: #333;
    flex: 1;
}

.concept .staff-message {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    padding: 20px;
    background-color: #faf9f7;
    border-radius: 10px;
    margin-top: 20px;
}

/* 店内・設備紹介 */
.concept .interior-section {
    background-color: white;
    background-color: #f8f6f3;
}

.concept .interior-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.concept .interior-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background-color: #f8f6f3;
}

.concept .interior-image {
    width: 100%;
    height: 300px;
    background-color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .concept .interior-image {
        height: 50vw;
    }
}


.concept .interior-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.concept .interior-caption {
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    text-align: center;
}

.concept .interior-caption h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #222;
}

.concept .interior-caption p {
    font-size: 14px;
    color: #333;
    margin: 0;
}

/* CTA */
.concept .cta-section {
    background-color: #8B7355;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.concept .cta-title {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 20px;
}

.concept .cta-text {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 1;
}

.concept .cta-button {
    display: inline-block;
    background-color: white;
    color: #8B7355;
    padding: 18px 50px;
    border-radius: 35px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
}

.concept .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}


ul{
    padding-left: 1.6rem;
}


.w900{
    max-width: 900px;
}

.somrie-section{
    background-color: #f8f6f3;
}
.somrie-section h2{
    text-align: center;
    margin-bottom: 1em;
}
.somrie-section h3{
margin-top: 2em;
color: #c69c6d;
color: #FFF;
    margin-bottom: 1em;
    background-color: #c69c6d;
    padding: 0.3em;
    padding-left: 1rem;
    border-radius: 5px;
}

.somrie-section ul li{
font-weight: 600;
}







/* ===========================
   サロン情報ページ専用（salon-info）
   =========================== */

.salon-info .page-hero {
    /* 背景画像は動的に設定されます */
}

/* アクセス情報セクション */
.salon-info .access-section {
    background-color: white;
}

.salon-info .access-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* 地図 */
.salon-info .map-container {
    width: 100%;
    height: 500px;
    background-color: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.salon-info .map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
}

/* 店舗情報 */
.salon-info .info-container {
    background-color: #faf9f7;
    border-radius: 15px;
    padding: 40px;
}

.salon-info a.map-link{
    border: 1px solid #8B7355;
    border-radius: 100px;
    padding: 0.3rem 2rem;
    display: table;
    margin-top: 1rem;
    color: #8B7355;
    text-decoration: none;
    transition: all 0.3s;
}
.salon-info a.map-link:hover{
    background-color: #8B7355;
    color: white;
}

.salon-info .info-item.inn {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.salon-info .info-item.inn:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.salon-info .info-title {
    font-size: 18px;
    color: #8B7355;
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.salon-info .info-title1 {
    font-size: 1.6rem;
    color: #8B7355;
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.salon-info .info-item img {
   display: block;
   margin-bottom: 2rem;
   border-radius: 5px;
}

.salon-info .info-icon {
    width: 24px;
    height: 24px;
    background-color: #8B7355;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.salon-info .info-content {
    color: #333;
    font-size: 16px;
}

.salon-info .tel-link {
    color: #8B7355;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 10px;
    transition: opacity 0.3s;
}

.salon-info .tel-link:hover {
    opacity: 0.7;
}

.salon-info .tel-note {
    font-size: 14px;
    color: #999;
}

/* 営業時間テーブル */
.salon-info .hours-table.inn {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.salon-info .hours-table.inn td {
    padding: 8px 0;
    border-bottom: 1px dotted #e0e0e0;
    font-size: 15px;
}

.salon-info .hours-table.inn td:first-child {
    width: 120px;
    color: #333;
}

.salon-info .hours-table.inn td:last-child {
    color: #222;
}

.salon-info .closed {
    color: #e74c3c !important;
}

/* 支払い方法 */
.salon-info .payment-methods {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.salon-info .payment-method {
    background-color: white;
    border: 1px solid #e0e0e0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
}

/* アクセスガイドセクション */
.salon-info .access-guide-section {
    background-color: #f8f6f3;
}

.salon-info .access-guide-container {
    max-width: 1200px;
    margin: 0 auto;
}

.salon-info .access-guide-container .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .salon-info .access-guide-container .grid {
        grid-template-columns: 1fr;
    }
}




.salon-info .station-route {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.salon-info .route-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 20px;
    color: #222;
    font-weight: 500;
}

.salon-info .route-badge {
    background-color: #FFF;
    border: 1px solid #8B7355;
    line-height: 1.5;
    color: #8B7355;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .salon-info .route-badge {
        font-size: 12px;
        width: 8rem;
        margin-left: auto;
    }
}

.salon-info .route-steps {
    display: grid;
    gap: 30px;
}

.salon-info .route-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    align-items: start;
}

.salon-info .step-number {
    width: 60px;
    height: 60px;
    background-color: #8B7355;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
}



.salon-info .step-content {
    padding-top: 15px;
}
@media (max-width: 768px) {
    .salon-info .step-content {
        padding-top: 15px;
    }
}

.salon-info .step-description {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.salon-info .step-image {
    width: 100%;
    height: 200px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.salon-info .step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 駐車場情報 */
.salon-info .parking-info {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.salon-info .parking-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.salon-info .parking-icon {
    width: 60px;
    height: 60px;
    background-color: #8B7355;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.salon-info .parking-title {
    font-size: 18px;
    color: #222;
    margin-bottom: 10px;
    font-weight: 500;
}

.salon-info .parking-text {
    font-size: 15px;
    color: #333;
}

/* 予約CTA */
.salon-info .cta-section {
    background-color: #8B7355;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.salon-info .cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: center;
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
}

.salon-info .cta-grid h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}


@media (max-width: 768px) {
    .salon-info .cta-grid {
        grid-template-columns: 1fr;
    }
}



.salon-info .cta-title {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 20px;
}

.salon-info .cta-text {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 1;
}

.salon-info .cta-button {
    display: inline-block;
    background-color: white;
    color: #8B7355;
    padding: 18px 50px;
    border-radius: 35px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
}

.salon-info .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* ===========================
   プライバシーポリシーページ専用（privacy）
   =========================== */

.privacy .page-hero {
    /* 背景画像は動的に設定されます */
}

/* ===========================
   利用規約ページ専用（terms）
   =========================== */

.terms .page-hero {
    /* 背景画像は動的に設定されます */
}

/* ===========================
   レスポンシブデザイン
   =========================== */

@media (max-width: 768px) {
    /* 共通レスポンシブ */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-salon {
        padding-right: 0;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding-left: 0;
    }

    header .menu {
        display: none;
    }

    .reserve-btn {
        display: none;
    }

    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    section {
        padding: 60px 0;
    }

    .page-hero {
        height: 30vh;
        margin-top: 70px;
    }

    .page-title-en {
        font-size: 30px;
    }

    /* ホームページレスポンシブ */
    .home .hero {
        margin-top: 70px;
    }

    .home .hero-content {
        text-align: left;
        padding: 20px;
        max-width: 80%;
    }

    .home .features-grid {
        grid-template-columns: 1fr;
    }

    .home .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .home .ba-images {
        flex-direction: column;
        align-items: center;
    }

    .home .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* ブログ詳細ページレスポンシブ */
    .single-blog .article-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .single-blog .article-title {
        font-size: 24px;
    }

    .single-blog .article-content h2 {
        font-size: 22px;
    }

    .single-blog .article-content h3 {
        font-size: 18px;
    }

    .single-blog .related-grid {
        grid-template-columns: 1fr;
    }

    .single-blog .article-sidebar {
        position: relative;
        top: 0;
    }

    .single-blog .author-profile-card {
        flex-direction: column;
        text-align: center;
    }

    .single-blog .author-profile-image {
        align-self: center;
    }

    /* メニューページレスポンシブ */
    .menu .menu-item-content {
        grid-template-columns: 1fr;
    }

    .menu .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu .menu-item-info {
        flex-direction: column;
        gap: 10px;
    }

    /* お客様の声ページレスポンシブ */
    .voice .voices-grid {
        grid-template-columns: 1fr;
    }

    .voice .ba-images {
        grid-template-columns: 1fr;
    }

    /* コンセプトページレスポンシブ */
    .concept .concept-image {
        height: 50vw;
    }

    .concept .commitment-grid {
        grid-template-columns: 1fr;
    }

    .concept .staff-grid {
        grid-template-columns: 1fr;
    }

    .concept .interior-gallery {
        grid-template-columns: 1fr;
    }

    /* サロン情報ページレスポンシブ */
    .salon-info .access-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .salon-info .map-container {
        height: 300px;
    }

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

    .salon-info .route-step {
        grid-template-columns: 50px 1fr;
    }

    .salon-info .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* ========================================
   BA アーカイブページ（ビフォーアフター事例）
========================================== */

/* BA アーカイブページ専用スタイル */
.post-type-archive-ba_post .ba-archive-hero {
    height: 40vh;
    position: relative;
    margin-top: 70px;
    background: linear-gradient(rgba(139, 115, 85, 0.7), rgba(139, 115, 85, 0.7)), url('./images/main.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-type-archive-ba_post .ba-archive-hero .page-hero-content {
    text-align: center;
    color: white;
}

.post-type-archive-ba_post .ba-archive-hero .ba-title {
    font-size: 60px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-style: italic;
}

.post-type-archive-ba_post .ba-archive-hero .ba-subtitle {
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 300;
}

/* BA コンテンツセクション */
.post-type-archive-ba_post .ba-section {
    background-color: #f8f6f3;
    padding: 80px 0;
}

/* BA グリッドレイアウト（横2個ずつ） */
.post-type-archive-ba_post .ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.post-type-archive-ba_post .ba-item {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    /* border: 1px solid #B8860B50; */
}

.post-type-archive-ba_post .ba-title {
    font-size: 20px;
    color: #222;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.post-type-archive-ba_post .ba-images {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.post-type-archive-ba_post .ba-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    background-color: #f0f0f0;
}

.post-type-archive-ba_post .ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-type-archive-ba_post .ba-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(139, 115, 85, 0.9);
    color: white;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 15px;
    letter-spacing: 1px;
}

.post-type-archive-ba_post .ba-description {
    color: #333;
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}

/* ページネーション */
.post-type-archive-ba_post .pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.post-type-archive-ba_post .pagination a,
.post-type-archive-ba_post .pagination span {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #8B7355;
    border: 1px solid #8B7355;
    font-size: 16px;
    transition: all 0.3s;
}

.post-type-archive-ba_post .pagination .current {
    background-color: #8B7355;
    color: white;
}

.post-type-archive-ba_post .pagination a:hover {
    background-color: #8B7355;
    color: white;
}

/* 投稿が見つからない場合 */
.post-type-archive-ba_post .no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: #333;
    font-size: 18px;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .post-type-archive-ba_post .ba-archive-hero {
        height: 30vh;
        margin-top: 100px;
    }

    .post-type-archive-ba_post .ba-archive-hero .ba-title {
        font-size: 40px;
    }

    .post-type-archive-ba_post .ba-archive-hero .ba-subtitle {
        font-size: 16px;
    }

    .post-type-archive-ba_post .ba-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .post-type-archive-ba_post .ba-section {
        padding: 60px 0;
    }

    .post-type-archive-ba_post .ba-item {
        padding: 20px;
    }

    .post-type-archive-ba_post .ba-images {
        flex-direction: column;
        gap: 10px;
    }

    .post-type-archive-ba_post .ba-image {
        height: 50vw;
    }
}

@media (max-width: 480px) {
    .post-type-archive-ba_post .ba-grid {
        gap: 20px;
    }

    .post-type-archive-ba_post .ba-item {
        padding: 15px;
    }

    .post-type-archive-ba_post .ba-title {
        font-size: 18px;
    }

    .post-type-archive-ba_post .ba-image {
        height: 50vw;
    }

    .post-type-archive-ba_post .ba-description {
        font-size: 14px;
    }
}

/* ===========================
   単一投稿ページ専用（single.php）
   =========================== */

/* 記事セクション */
.single .article-section {
    background-color: white;
    padding: 60px 0;
}

.single .article-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

/* 記事メイン */
.single .article-main {
    background-color: white;
}

.single .article-header {
    margin-bottom: 40px;
}

.single .article-category {
    display: inline-block;
    background-color: #8B7355;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

.single .article-title {
    font-size: 32px;
    color: #222;
    line-height: 1.5;
    margin-bottom: 20px;
}

.single .article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #333;
    font-size: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.single .article-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* アイキャッチ画像 */
.single .article-image {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
}

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

/* 記事本文 */
.single .article-content {
    font-size: 16px;
    color: #222;
    line-height: 2;
}

.single .article-content h2 {
    font-size: 28px;
    color: #222;
    margin: 60px 0 30px;
    padding-bottom: 15px;
    line-height: 1.5;
    border-bottom: 3px solid #8B7355;
}
@media (max-width: 768px) {
    .single .article-content h2 {
        font-size: 21px;
    }
}

.single .article-content h3 {
    font-size: 22px;
    color: #222;
    margin: 40px 0 20px;
    padding-left: 15px;
    border-left: 5px solid #8B7355;
}
@media (max-width: 768px) {
    .single .article-content h3 {
        font-size: 18px;
    }
}

.single .article-content p {
    margin-bottom: 25px;
}

.single .article-content ul,
.single .article-content ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.single .article-content li {
    margin-bottom: 10px;
}

.single .article-content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background-color: #f8f6f3;
    border-left: 5px solid #8B7355;
    font-style: italic;
}

/* SNSシェアボタン */
.single .share-buttons {
    margin: 60px 0;
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.single .share-title {
    font-size: 18px;
    color: #222;
    margin-bottom: 20px;
}

.single .share-list {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.single .share-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.3s;
}

.single .share-button:hover {
    transform: translateY(-3px);
}

.single .share-twitter {
    background-color: #1DA1F2;
}

.single .share-facebook {
    background-color: #3B5998;
}

.single .share-line {
    background-color: #00B900;
}

/* 関連記事 */
.single .related-articles {
    margin-top: 60px;
}

.single .related-title {
    font-size: 21px;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
}

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

.single .related-card {
    background-color: #f8f6f3;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.single .related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.single .related-image {
    width: 100%;
    height: 180px;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

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

.single .related-date {
    font-size: 13px;
    color: #8B7355;
    margin-bottom: 10px;
}

.single .related-link {
    font-size: 16px;
    color: #222;
    text-decoration: none;
    display: block;
    line-height: 1.5;
    transition: color 0.3s;
}

.single .related-link:hover {
    color: #8B7355;
}

/* サイドバー */
.single .article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.single .sidebar-widget {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.single .widget-title {
    font-size: 18px;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #8B7355;
}

/* 人気記事 */
.single .popular-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.single .popular-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.single .popular-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background-color: #e0e0e0;
    flex-shrink: 0;
    overflow: hidden;
}

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

.single .popular-content {
    flex: 1;
}

.single .popular-title {
    font-size: 15px;
    color: #222;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    line-height: 1.4;
    transition: color 0.3s;
}

.single .popular-title:hover {
    color: #8B7355;
}

.single .popular-date {
    font-size: 13px;
    color: #999;
}

/* メニューボタン */
.single .menu-button {
    display: inline-block;
    background-color: #8B7355;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    text-align: center;
    width: 100%;
}

.single .menu-button:hover {
    background-color: #6d5940;
    transform: translateY(-2px);
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .single .article-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .single .article-title {
        font-size: 26px;
    }

    .single .article-image {
        height: 250px;
    }

    .single .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .single .article-sidebar {
        position: static;
    }

    .single .sidebar-widget {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .single .article-section {
        padding: 40px 0;
    }

    .single .article-title {
        font-size: 22px;
    }

    .single .share-list {
        gap: 10px;
    }

    .single .share-button {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* ===========================
   Contact Page Styles
   =========================== */

/* お問い合わせセクション */
.contact-section {
    background-color: white;
    padding: 80px 0;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* お問い合わせ選択 */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto;
}

.contact-method {
    background-color: #faf9f7;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.contact-method a{
    text-decoration: none;
    border: 1px solid #8B7355;
    padding: 15px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    color: #8B7355;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 16px;
    line-height: 1.3;
    min-height: 50px;
    box-sizing: border-box;
}

.contact-method a:hover{
    background-color: #8B7355;
    color: white;
    text-decoration: none;
}


.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.method-icon {
    width: 80px;
    height: 80px;
    background-color: #8B7355;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
}

.method-title {
    font-size: 20px;
    color: #222;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

.method-description {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}

.method-link {
    color: #8B7355;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s;
}

.method-link:hover {
    text-decoration: underline;
}

/* お問い合わせフォーム */
.contact-form-section {
    background-color: #f8f6f3;
    padding: 80px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 15px;
    padding: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 28px;
    color: #222;
    text-align: center;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-size: 16px;
    color: #222;
    margin-bottom: 10px;
    font-weight: 500;
}

.required {
    color: #e74c3c;
    margin-left: 5px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    color: #222;
    background-color: #faf9f7;
    transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: #8B7355;
    outline: none;
    background-color: white;
}

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

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%238B7355' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-checkbox-label {
    font-size: 15px;
    color: #333;
    cursor: pointer;
}

.form-note {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}

.form-submit {
    background-color: #8B7355;
    color: white;
    padding: 18px 60px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 40px auto 0;
}

.form-submit:hover {
    background-color: #6d5940;
    transform: translateY(-2px);
}

/* プライバシーポリシー */
.privacy-notice {
    background-color: #faf9f7;
    border-radius: 10px;
    padding: 20px;
    margin-top: 40px;
}

.privacy-notice p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.privacy-link {
    color: #8B7355;
    text-decoration: none;
}

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

/* FAQ セクション */
.faq-section {
    background-color: white;
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.faq-question {
    font-size: 18px;
    color: #222;
    font-weight: 500;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
@media (max-width: 768px) {
    .faq-question{
        font-size: 16px;
    }
}

.faq-question::after {
    content: "+";
    font-size: 24px;
    color: #8B7355;
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    padding-left: 20px;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 40px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-section,
    .contact-form-section,
    .faq-section {
        padding: 60px 0;
    }

    .method-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .method-title {
        font-size: 18px;
    }

    .contact-method a {
        padding: 12px 16px;
        font-size: 14px;
        white-space: normal;
        line-height: 1.4;
    }

    .contact-method {
        padding: 25px 20px;
    }

    .method-description {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .form-title {
        font-size: 24px;
    }
}




.wpforms-field-container input{
    width: 100%!important;
    max-width: 100%!important;
}



div.wpforms-container-full input[type=submit], div.wpforms-container-full button[type=submit], div.wpforms-container-full .wpforms-page-button, .wp-core-ui div.wpforms-container-full input[type=submit], .wp-core-ui div.wpforms-container-full button[type=submit], .wp-core-ui div.wpforms-container-full .wpforms-page-button{
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding: 1rem 2rem!important;
    height: auto!important;
    width: 100%!important;
    max-width: 300px!important;
    transition: all 0.3s;
    background-color: #8B7355!important;
    border-radius: 100px!important;
}

div.wpforms-container-full input[type=submit]:hover,
div.wpforms-container-full button[type=submit]:hover,
div.wpforms-container-full .wpforms-page-button:hover,
.wp-core-ui div.wpforms-container-full input[type=submit]:hover,
.wp-core-ui div.wpforms-container-full button[type=submit]:hover,
.wp-core-ui div.wpforms-container-full .wpforms-page-button:hover {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 100%!important;
    max-width: 300px!important;
    transition: all 0.3s;
}



.mobile-nav{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.mobile-nav ul{
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
}


.line_grid{
    width: 550px;
    justify-content: center;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 2rem;
}
@media (max-width: 768px) {
    .line_grid{
        grid-template-columns: 1fr;
        width: 100%;
    }
}
.line_grid p{
    margin-bottom: 10px;
}


@media (max-width: 768px) {
    .promo-section p{
        text-align: left;
        font-size: 14px;
    }
}



.reservation-button{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 91;
}

.reservation-button a{
    position: relative;
    text-align: center;
    line-height: 1.3;
    font-size: 21px;
    background-color: #B8860B;
    color: white;
    /* padding: 15px 30px; */
    text-decoration: none;
    font-weight: 600;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    width: 150px;
    height: 150px;
    border: 1px solid #B8860B;
}
.reservation-button a:hover{
    background-color: white;
    color: #B8860B;
}
.reservation-button a:after{
    content: "▶︎";
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
margin-left: -0.5em;
font-size: 10px;
}


@media (max-width: 768px) {

    .reservation-button{
        position: fixed;
        bottom: 10px;
        right: 10px;

    }

    .reservation-button a{
        width: 90px;
        height: 90px;
        font-size: 15px;
    }

    .reservation-button a:after{
        content: "▶︎";
        position: absolute;
        bottom: 1em;
        left: 50%;
        font-size: 9px;

    }
}
