/*
Theme Name: Nuke tta
Theme URI: https://example.com/nuketta-theme
Author: Your Name
Author URI: https://example.com
Description: 美容電気脱毛サロン Nuke tta（ヌケッタ）のWordPressテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: nuketta
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

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

/* Nuke tta - 美容電気脱毛サロン用CSS */

/* Main Visual */
#main-visual {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 10;
}

#main-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 10;
}

/* ブログセクション */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 60px;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.blog-slider-container {
    margin-top: 60px;
    overflow: hidden;
}

.blog-swiper {
    overflow: visible;
}

.blog-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.blog-swiper .swiper-slide {
    width: auto;
}

.blog-item {
    text-decoration: none;
    color: inherit;
    display: block;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.blog-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-item:hover .blog-img img {
    transform: scale(1.05);
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    padding: 25px;
    line-height: 1.7;
    color: #fff;
}

.blog-date {
    font-size: 14px;
    color: #999;
    padding: 0 25px 25px;
}

.blog-link {
    text-align: center;
    margin-top: 40px;
}

.btn-more {
    display: inline-block;
    padding: 15px 50px;
    background: #222;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-more:hover {
    background: #444;
}

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

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

    .blog-slider-container {
        margin-left: -20px;
        margin-right: -20px;
        padding: 0 20px;
    }
}

/* MESSAGEセクション */
.message-content {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 60px;
    align-items: start;
    background: transparent;
    border-radius: 8px;
    padding: 60px;
    margin-top: 50px;
}

.therapist-photo {
    width: 100%;
}

.therapist-photo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.therapist-title {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.therapist-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.therapist-credential {
    border: 2px solid #1e3a8a;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    background: #FFF9F0;
}

.therapist-credential p {
    font-size: 14px;
    color: #fff;
    margin: 0;
    text-align: center;
    font-weight: 500;
}

.therapist-message {
    font-size: 15px;
    line-height: 2;
    color: #fff;
    margin-bottom: 15px;
}

.message-subtitle {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.6;
}

.message-text p {
    font-size: 16px;
    line-height: 2;
    color: #fff;
    margin-bottom: 20px;
}

.message-text strong {
    color: #fff;
    font-weight: 700;
}

.message-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #fff;
}

.message-concerns {
    background: #f5f0eb;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.message-concerns h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.message-concerns ul {
    list-style: none;
    padding-left: 0;
}

.message-concerns li {
    font-size: 15px;
    line-height: 2;
    color: #fff;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.message-concerns li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: 700;
}

.message-features {
    list-style: none;
    padding-left: 0;
}

.message-features li {
    font-size: 15px;
    line-height: 2;
    color: #fff;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.message-features li:before {
    content: '●';
    position: absolute;
    left: 0;
    color: #fff;
}

.message-img {
    border-radius: 8px;
    overflow: hidden;
}

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

@media (max-width: 767px) {
    .message-content {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        gap: 40px;
    }
}

/* CONCERNSセクション */
.concerns-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-left: 50px;
    padding-right: 50px;
    position: relative;
    min-height: 480px;
    max-width: 1110px;
    margin-left: auto;
    margin-right: auto;
}

.concern-item {
    background: #1a1a1a;
    border: 2px solid #8B7355;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
}

/* 上段左：白髪、うぶ毛もなくしたい */
.concern-item:nth-child(1) {
    top: 0;
    left: 20%;
}

/* 上段右：日焼けした黒い肌でも脱毛したい */
.concern-item:nth-child(2) {
    top: 0;
    right: 20%;
}

/* 下段左：VIOの毛もなくしたい */
.concern-item:nth-child(3) {
    bottom: 0;
    left: 5%;
}

/* 下段中央：部分的に残っている毛をなくしたい */
.concern-item:nth-child(4) {
    bottom: 0;
    left: calc(50% - 150px);
}

/* 下段右：髭のデザインをしたい */
.concern-item:nth-child(5) {
    bottom: 0;
    right: 5%;
}

.concern-item h3 {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.7;
    color: #fff;
    padding: 40px;
}

.concerns-solution {
    text-align: center;
    margin-top: 60px;
    padding: 50px 30px;
    background: #222;
    border-radius: 8px;
}

.solution-text {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.6;
}

.solution-text strong {
    font-size: 40px;
    color: #f5f0eb;
}

@media (max-width: 1024px) {
    .concerns-grid {
        min-height: 450px;
    }

    .concern-item {
        width: 220px;
        height: 220px;
    }

    .concern-item h3 {
        font-size: 15px;
        padding: 25px;
    }

    .concern-item:nth-child(1) {
        left: 12%;
    }

    .concern-item:nth-child(2) {
        right: 12%;
    }

    .concern-item:nth-child(3) {
        left: 0%;
    }

    .concern-item:nth-child(5) {
        right: 0%;
    }
}

@media (max-width: 767px) {
    .concerns-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        min-height: auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    .concern-item {
        position: static;
        width: 180px;
        max-width: 180px;
        height: 180px;
        margin: 0 auto;
        transform: none !important;
    }

    .concern-item h3 {
        font-size: 12px;
        padding: 0;
    }
}
    
    .solution-text {
        font-size: 24px;
    }
    
    .solution-text strong {
        font-size: 28px;
    }


/* CONCEPTセクション */
#concept {
    background-image: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

#concept::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 1;
}

#concept .inner {
    position: relative;
    z-index: 2;
}

.concept-content {
    padding: 40px 20px;
    margin-top: 0;
    text-align: center;
}

.concept-lead {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.8;
}

.concept-text {
    max-width: 1000px;
    margin: 0 auto;
}

.concept-text p {
    font-size: 16px;
    line-height: 2;
    color: #fff;
    margin-bottom: 20px;
}

.concept-text strong {
    color: #fff;
    font-weight: 700;
}

.concept-highlight {
    background: #f5f0eb;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
}

.concept-highlight p {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

.concept-img {
    border-radius: 8px;
    overflow: hidden;
}

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

@media (max-width: 767px) {
    .concept-content {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        gap: 40px;
    }
    
    .concept-lead {
        font-size: 18px;
    }
    
    .concept-highlight p {
        font-size: 20px;
    }
}

/* 全セクションのinner */
section .inner {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

.reason-items-wrapper {
    width: 100%;
}

.reason-item {
    margin: 0 0 30px 0;
    background: #fff;
    border-radius: 0;
    padding: 0;
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 50px;
    max-width: 70%;
    transition: transform 0.3s ease, border-radius 1s ease;
}

.reason-item:hover {
    transform: translateX(-10px);
}

.reason-item:nth-child(odd) {
    flex-direction: row;
    margin-left: auto;
    margin-right: 0;
    border-radius: 0;
}

.reason-item:nth-child(odd).started {
    border-radius: 50px 0 0 50px;
}

.reason-item:nth-child(odd):hover {
    transform: translateX(-10px);
}

.reason-item:nth-child(even) {
    flex-direction: row-reverse;
    margin-left: 0;
    margin-right: auto;
    border-radius: 0;
}

.reason-item:nth-child(even).started {
    border-radius: 0 50px 50px 0;
}

.reason-item:nth-child(even):hover {
    transform: translateX(10px);
}

.reason-number {
    display: none;
}

.reason-content {
    flex: 1;
}

.reason-img {
    flex: 0 0 400px;
    max-width: 400px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.reason-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
    transition: border-radius 1s ease;
}

.reason-item:nth-child(odd).started .reason-img img {
    border-radius: 50px 0 0 50px;
}

.reason-item:nth-child(even).started .reason-img img {
    border-radius: 0 50px 50px 0;
}

.reason-item:nth-child(odd) .reason-content {
    padding: 30px 100px 30px 0;
}

.reason-item:nth-child(even) .reason-content {
    padding: 30px 100px 30px 50px;
}

.reason-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

.reason-text {
    margin-bottom: 30px;
}

.reason-text p {
    font-size: 16px;
    line-height: 2;
    color: #000;
    margin-bottom: 15px;
}

.reason-text strong {
    color: #000;
    font-weight: 700;
}

.reason-highlight {
    background: #f5f0eb;
    padding: 20px 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.reason-highlight strong {
    font-size: 17px;
}

.reason-img {
    border-radius: 8px;
    overflow: hidden;
    flex: 0 0 45%;
    max-width: 45%;
}

.reason-img img {
    width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .reason-item {
        padding: 60px 30px 40px 30px;
        flex-direction: column !important;
        max-width: 90%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .reason-items-wrapper .reason-item:nth-child(1),
    .reason-items-wrapper .reason-item:nth-child(3) {
        margin-left: auto !important;
        margin-right: 0 !important;
    }

    .reason-items-wrapper .reason-item:nth-child(2) {
        margin-left: 0 !important;
        margin-right: auto !important;
    }

    .reason-number {
        left: 0;
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 24px;
    }

    .reason-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .reason-img {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .reason-title {
        font-size: 22px;
    }
}

/* MENUセクション */
.menu-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 50px;
}

.menu-intro p {
    font-size: 15px;
    line-height: 1.8;
    color: #fff;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

/* Menu page specific - vertical layout */
.page-template-page-menu .menu-grid {
    grid-template-columns: 1fr;
}

.price-card {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 30px 40px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price-card-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: #fff;
}

.price-card-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    flex: 1;
}

.price-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: #f5f0eb;
    border-radius: 6px;
    gap: 20px;
}

.price-label {
    font-size: 17px;
    font-weight: 600;
    color: #000;
    flex: 1;
}

.price-time {
    font-size: 15px;
    font-weight: 600;
    color: #666;
    flex-shrink: 0;
    width: 50px;
    text-align: right;
    display: none;
}

.price-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.price-note {
    text-align: center;
    margin-top: 15px;
    font-size: 12px;
    color: #999;
}

.payment-info {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.payment-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    text-align: center;
}

.payment-description {
    font-size: 14px;
    color: #000;
    line-height: 1.8;
    text-align: center;
    padding: 20px 15px;
    background: #f5f0eb;
    border-radius: 6px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

.payment-method {
    padding: 20px;
    background: #f5f0eb;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.payment-method p {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.payment-brands {
    font-size: 12px;
    color: #fff;
    text-align: center;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .price-card,
    .payment-info {
        padding: 40px 30px;
    }
    
    .price-card-content {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
}

/* FLOWセクション */
.flow-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding: 0 60px;
}

.flow-step {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 30px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.flow-step-number {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background: #f5f0eb;
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.flow-step-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.flow-step-text {
    font-size: 13px;
    line-height: 1.7;
    color: #fff;
}

.flow-step-text strong {
    color: #fff;
    font-weight: 700;
}

@media (max-width: 767px) {
    .flow-step {
        padding: 100px 30px 30px;
    }
    
    .flow-step-number {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ACCESSセクション */
.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 50px;
    margin-top: 50px;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.access-details {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px 30px;
    align-items: center;
}

.access-details dt {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

.access-details dd {
    font-size: 15px;
    line-height: 2;
    color: #fff;
    margin-bottom: 0;
}

.access-details dd a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.3s;
}

.access-details dd a:hover {
    opacity: 0.6;
}

.access-map iframe {
    border-radius: 8px;
}

@media (max-width: 767px) {
    .access-content {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        gap: 30px;
    }
}

/* CONTACTセクション */
.contact-intro {
    text-align: center;
    margin-bottom: 40px;
}

.contact-intro p {
    font-size: 16px;
    line-height: 2;
    color: #fff;
}

.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    color: #333;
    line-height: 1.7;
    background-color: #1e3a8a !important;
    overflow-x: hidden;
    font-size: 15px;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

.sp-inline {
    display: none !important;
}

@media (max-width: 767px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
    .sp-inline {
        display: inline !important;
    }
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1001;
    box-shadow: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#header.scrolled {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

#header-in {
    max-width: 1600px;
    margin: 0 auto;
    padding: 18px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header h1 {
    font-size: 18px;
    font-family: 'Italiana', serif;
    font-weight: 400;
    letter-spacing: 3px;
}

#header h1 a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease, opacity 0.3s;
}

#header.scrolled h1 a {
    color: #000;
}

#header h1 a:hover {
    opacity: 0.6;
}

#header-nav {
    flex: 1;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
}

.header-nav-ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.header-nav-ul li {
    position: relative;
}

.header-nav-ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease, opacity 0.3s;
    white-space: nowrap;
    letter-spacing: 0.05em;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

#header.scrolled .header-nav-ul li a {
    color: #000;
}

.nav-ja {
    text-align: left;
}

.nav-en {
    font-size: 10px;
    font-family: 'Italiana', serif;
    letter-spacing: 0.08em;
    color: #888;
    transition: color 0.3s ease;
}

#header.scrolled .nav-en {
    color: #888;
}

.header-nav-ul li a:hover {
    opacity: 0.5;
}

.nav-instagram {
    display: none;
}

.nav-contact {
    display: none;
}

@media (max-width: 767px) {
    .nav-contact {
        display: block;
    }
}

#header-nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

#header-counseling-appointment {
    background: transparent;
    color: #fff;
    padding: 13px 30px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid #fff;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.08em;
    line-height: 1.4;
}

#header.scrolled #header-counseling-appointment {
    background: transparent;
    color: #000;
    border: 1px solid #000;
}

#header-counseling-appointment:hover {
    opacity: 0.7;
}

#menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    position: relative;
}

#menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s;
    border-radius: 1px;
}

#header.scrolled #menu-btn span {
    background: #222;
}

#menu-btn.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

#menu-btn.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* Inner Container */
.inner {
    max-width: 100%;
    margin: 0;
    padding: 0;
    border: none;
}

/* Section */
section {
    padding: 120px 0;
    margin: 0;
    border: none;
}


.bg-1 {
    background: transparent;
}

.bg-2 {
    background-color: #1e3a8a !important;
}

#access.bg-2 {
    background-color: #1a1a1a !important;
}

.bg-f {
    background: #1a1a1a;
}

#message.bg-f {
    background: #1e3a8a;
}

.bg-accent {
    background: transparent;
}

/* Headings */
.h-1 {
    text-align: left;
    margin-bottom: 90px;
    position: relative;
    padding-top: 60px;
}

#concept .h-1 {
    margin-bottom: 40px;
}

.h-1 {
    padding-left: 50px;
}

#concept .h-1 {
    padding-left: 0;
    text-align: center;
}

#concept .h-1-bg {
    left: 50%;
    transform: translateX(-50%);
}

.h-1-bg {
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Italiana', serif;
    font-size: 150px;
    letter-spacing: 0.15em;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
    line-height: 1;
    text-shadow: none;
    opacity: 0.3;
}

.h-1-text {
    position: relative;
    z-index: 2;
    display: block;
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

/* Reasons Section */
.reasons-wrap {
    display: flex;
    flex-direction: column;
    gap: 120px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.reasons-content {
    display: block;
}

.reasons-content-inner {
    display: flex;
    gap: 100px;
    align-items: center;
    width: 100%;
}

.reasons-content-left .reasons-content-inner {
    flex-direction: row;
}

.reasons-content-right .reasons-content-inner {
    flex-direction: row-reverse;
}

.reasons-content-img {
    flex: 0 0 48%;
    max-width: 48%;
}

.reasons-content-img img {
    width: 100%;
    height: auto;
    display: block;
}

.reasons-content-text {
    flex: 1;
}

.reasons-content-title {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.7;
    letter-spacing: 0.03em;
}

.reasons-content-text-inner {
    padding: 0;
}

.reasons-content-text-inner p {
    font-size: 15px;
    line-height: 2.1;
    color: #fff;
    letter-spacing: 0.03em;
}

.reasons-content-text-inner em {
    font-style: normal;
    font-weight: 700;
    color: #fff;
}

.notice {
    list-style: none;
    margin-top: 24px;
}

.notice li {
    font-size: 12px;
    color: #999;
    line-height: 1.9;
    letter-spacing: 0.02em;
}

.notice li::before {
    content: '※';
    margin-right: 4px;
}

/* Plan Section */
.plan-section {
    background: #fafafa;
}

.plan-content-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 70px;
}

.plan-content {
    background: #1a1a1a;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.plan-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.plan-content-img {
    width: 100%;
    height: 340px;
    background: linear-gradient(135deg, #f5f0eb 0%, #ebe6e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.plan-content-text {
    padding: 42px 35px 45px;
}

.plan-content-text-header {
    margin-bottom: 28px;
}

.plan-content-text-header-notice {
    margin-bottom: 16px;
}

.plan-content-text-header-notice-inner {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 7px 22px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.plan-content-text-header-notice-inner em {
    font-style: normal;
    font-size: 19px;
    font-weight: 800;
    margin: 0 4px;
}

.plan-content-text h3 {
    font-size: 25px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.5;
}

.plan-content-text-price {
    margin: 32px 0;
    text-align: center;
}

.plan-content-text-price img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.plan-content-text-link {
    margin-top: 32px;
    text-align: center;
}

.plan-content-notice {
    list-style: none;
    margin-top: 24px;
}

.plan-content-notice li {
    font-size: 10px;
    color: #aaa;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.link-wrap {
    text-align: center;
}

.a-1 {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    padding: 16px 45px;
    border: 2px solid #222;
    transition: all 0.3s;
    letter-spacing: 0.08em;
}

.a-1:hover {
    background: #222;
    color: #fff;
}

.a-icon-wrap::after {
    content: '→';
    margin-left: 10px;
    font-size: 15px;
}

.bottom-link {
    margin-top: 70px;
}

/* Doctor Section */
.r-box-1 {
    padding: 110px 0;
}

.top-r-box-1 {
    position: relative;
    background: #fafafa;
    padding: 0;
}

.top-doctor-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 90px 70px;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}

.top-doctor-content-inner {
    flex: 1;
}

.top-doctor-content-inner h2 {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.9;
    margin-bottom: 35px;
    color: #fff;
    letter-spacing: 0.04em;
}

.top-doctor-content-inner h2 em {
    font-style: normal;
    font-weight: 700;
}

.top-doctor-content-inner h2 span {
    display: block;
}

.top-doctor-content-inner p {
    font-size: 15px;
    line-height: 2.1;
    color: #fff;
    letter-spacing: 0.03em;
}

.doctor-img {
    flex: 0 0 420px;
}

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

/* Differences */
.differences {
    padding: 90px 0;
    background: #fafafa;
}

.differences-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.differences-content img {
    width: 100%;
    height: auto;
}

/* Charge Info */
.charge-info-content {
    padding: 110px 0;
    background: #f5f0eb;
}

.charge-content-h {
    text-align: center;
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 70px;
    color: #fff;
    line-height: 1.8;
    letter-spacing: 0.04em;
}

.charge-info-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
    max-width: 950px;
    margin: 0 auto 50px;
}

.charge-info-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.charge-info-list li img {
    height: 90px;
    width: auto;
}

.charge-info-list li div {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.7;
    letter-spacing: 0.04em;
}

.charge-number-content {
    max-width: 950px;
    margin: 70px auto 0;
}

.charge-number-notice {
    background: #1a1a1a;
    padding: 45px 50px;
}

.charge-number-notice p {
    font-size: 14px;
    line-height: 2.1;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: 0.03em;
}

.charge-number-notice p:last-child {
    margin-bottom: 0;
}

.notice-p {
    font-size: 12px;
    color: #999;
}

/* Flow Section */
.flow {
    padding: 120px 0;
    background: #fafafa;
}

.flow-slider {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0 -12px;
}

.flow-slider li {
    flex: 1;
    padding: 0 12px;
}

.flow-content-wrap {
    background: #1a1a1a;
    height: 100%;
}

.flow-in {
    padding: 48px 32px 52px;
}

.flow-content-title {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.flow-number {
    display: block;
}

.flow-number img {
    height: 55px;
    width: auto;
}

.flow-title-text {
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    line-height: 1.6;
    letter-spacing: 0.04em;
}

.flow-content-img {
    margin: 32px 0;
}

.flow-content-img img {
    width: 100%;
    height: auto;
}

.flow-content-text p {
    font-size: 13px;
    line-height: 2.1;
    color: #fff;
    letter-spacing: 0.03em;
}

.flow-content-text-link {
    margin-top: 28px;
}

/* Fixed Sidebar Buttons */
.fixed-sidebar-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fixed-button-header {
    background: #fff;
    color: #000;
    padding: 10px 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px 6px 0 0;
    writing-mode: horizontal-tb;
    line-height: 1.6;
    font-family: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', serif;
    letter-spacing: 0.05em;
}

.fixed-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    min-height: auto;
    font-family: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', serif;
    gap: 10px;
}

.fixed-button-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.15em;
    font-size: 13px;
}

.fixed-button-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    writing-mode: horizontal-tb;
}

.fixed-button-line {
    background: #06C755;
    color: #fff;
}

.fixed-button-line:hover {
    background: #05b04b;
    transform: translateX(-5px);
}

.fixed-button-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.fixed-button-instagram:hover {
    opacity: 0.9;
    transform: translateX(-5px);
}

.fixed-button-contact {
    background: #4a4a4a;
    color: #fff;
    border-radius: 0 0 8px 8px;
}

.fixed-button-contact:hover {
    background: #5a5a5a;
    transform: translateX(-5px);
}

@media (max-width: 1024px) {
    .fixed-sidebar-buttons {
        right: 10px;
    }

    .fixed-button {
        padding: 10px 5px;
        font-size: 10px;
    }

    .fixed-button-header {
        padding: 6px 5px;
        font-size: 10px;
    }
}

@media (max-width: 767px) {
    .fixed-sidebar-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: space-around;
        background: #1a1a1a;
        padding: 0;
        gap: 0;
        z-index: 1000;
    }

    .fixed-button-header {
        display: none;
    }

    .fixed-button {
        flex: 1;
        padding: 10px 0;
        font-size: 10px;
        flex-direction: column;
        gap: 0;
    }

    .fixed-button-icon {
        width: 24px;
        height: 24px;
    }

    .fixed-button-text {
        font-size: 9px;
        writing-mode: horizontal-tb;
        text-orientation: mixed;
    }

    .fixed-button-contact {
        border-radius: 0;
    }

    .fixed-button:hover,
    .fixed-button-line:hover,
    .fixed-button-instagram:hover,
    .fixed-button-contact:hover {
        transform: none;
    }
}

/* Concerns Section */
.concerns-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1200px;
    margin: 30px auto;
}

.concern-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    padding: 40px 0;
    background: transparent;
    border-radius: 12px;
    max-width: 1200px;
    margin: 0;
}

.concern-icon {
    font-size: 60px;
    flex-shrink: 0;
    width: 80px;
    text-align: center;
}

.concern-image {
    flex-shrink: 0;
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.concern-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.concern-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.concern-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

.concern-text p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.8;
    margin: 0;
}

.concern-solution {
    text-align: center;
    max-width: 800px;
    margin: 15px auto 30px;
    padding: 40px 30px;
    background: #1a1a1a;
    border-radius: 12px;
}

.concern-solution p {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 15px;
}

.concern-solution p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .concerns-list {
        display: block;
        position: relative;
        min-height: 380px;
        padding: 0 20px;
        margin-bottom: 0;
    }

    .home .concern-card {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 320px;
    }

    .page .concern-card {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
        position: relative;
        margin-bottom: 30px;
    }

    .page .concern-card:nth-child(2) {
        flex-direction: column-reverse;
    }

    .concern-icon {
        font-size: 50px;
    }

    .concern-image {
        width: 100%;
    }

    .concern-image img {
        max-width: 100%;
    }

    .concern-text h3 {
        font-size: 16px;
        text-align: center;
    }

    .concern-text p {
        font-size: 12px;
    }

    .concern-solution p {
        font-size: 15px;
    }
}

/* Section Link Button */
.section-link-btn {
    text-align: center;
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 50px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    letter-spacing: 0.05em;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Before/After Gallery */
.ba-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding: 0 40px;
}

.ba-item {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
}

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

.ba-before,
.ba-after {
    flex: 1;
    position: relative;
}

.ba-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.ba-before img,
.ba-after img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.ba-title {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

@media (max-width: 1024px) {
    .ba-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .ba-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ba-item {
        padding: 15px;
    }

    .ba-images {
        gap: 10px;
    }
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 60px;
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 60px;
}

.footer-logo-section {
    padding-right: 20px;
}

.footer-logo {
    font-size: 32px;
    font-family: 'Italiana', serif;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #c9a05f;
    font-weight: 500;
}

.footer-description {
    font-size: 13px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.03em;
}

.footer-logo-info {
    margin-top: 20px;
}

.footer-logo-salon {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.footer-logo-info p {
    font-size: 13px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-logo-tel {
    margin-top: 15px;
    font-weight: 500;
}

.footer-logo-tel a {
    color: #c9a05f;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-logo-tel a:hover {
    opacity: 0.8;
}

.footer-logo-access {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 8px;
}

.footer-section h4 {
    font-size: 14px;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #fff;
    border-bottom: 2px solid #c9a05f;
    padding-bottom: 12px;
}

.footer-section ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
}

.footer-section ul li {
    margin-bottom: 0;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
    letter-spacing: 0.04em;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #c9a05f;
    transform: translateX(5px);
}

.footer-section p {
    font-size: 13px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-salon-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-tel {
    margin-top: 15px;
    font-weight: 500;
}

.footer-tel a {
    color: #c9a05f;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-tel a:hover {
    opacity: 0.8;
}

.footer-access {
    font-size: 12px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-business-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.small-text {
    font-size: 12px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
    background: #0f0f0f;
    padding: 30px 30px 25px;
    text-align: center;
}

.footer-bottom-links {
    margin-bottom: 15px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
    letter-spacing: 0.05em;
}

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

.footer-bottom-links .separator {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.08em;
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1.5fr 1.5fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    footer {
        padding: 50px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px 40px;
    }

    .footer-logo {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .footer-tagline {
        font-size: 14px;
    }

    .footer-section:last-child {
        grid-column: auto;
    }

    .footer-section ul {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        padding: 25px 20px 20px;
    }

    .footer-bottom-links {
        font-size: 11px;
    }

    .footer-bottom-links .separator {
        margin: 0 10px;
    }
}

.tac {
    text-align: center;
}

/* Animations */
.delighter {
    opacity: 1;
}

.delighter.started {
    opacity: 1;
}

/* Blog Section */
.blog-carousel-wrapper {
    overflow: hidden;
    margin: 50px 0 0 0;
    padding: 0 14px;
    width: 100%;
}

.blog-list {
    display: flex !important;
    gap: 30px;
    flex-wrap: nowrap !important;
    margin: 0;
    width: fit-content;
}

.blog-list.blog-carousel {
    /* JavaScript handles animation */
}

.blog-list:not(.blog-carousel) {
    justify-content: center;
}

.blog-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 0 0 350px;
    min-width: 350px;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 163, 0.2);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.blog-card-content {
    padding: 20px;
}

.blog-card-date {
    display: block;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.5;
}

.blog-card-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-title a:hover {
    color: #ffd7a3;
}

.blog-card-excerpt {
    font-size: 14px;
    color: #ccc;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    color: #fff;
    stroke-width: 3;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thanks-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.thanks-message {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
}

.thanks-message p {
    font-size: 16px;
    line-height: 2;
    color: #fff;
    margin-bottom: 15px;
}

.thanks-message p:last-child {
    margin-bottom: 0;
}

.thanks-note {
    margin-bottom: 40px;
}

.thanks-note p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 8px;
}

.thanks-buttons {
    margin-bottom: 60px;
}

.thanks-contact-info {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 40px;
    margin-top: 60px;
}

.thanks-contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.contact-method {
    background: #0a0a0a;
    border-radius: 8px;
    padding: 30px;
}

.contact-method h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffd7a3;
    margin-bottom: 15px;
}

.contact-method p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-tel {
    font-size: 24px !important;
    font-weight: 700;
}

.contact-tel a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-tel a:hover {
    color: #ffd7a3;
}

.contact-hours {
    font-size: 13px !important;
    color: #aaa !important;
}

.btn-line {
    display: inline-block;
    background: #06c755;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s;
}

.btn-line:hover {
    background: #05b04c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 199, 85, 0.3);
}

/* Contact Form */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 50px;
}

.contact-intro p {
    font-size: 15px;
    line-height: 2;
    color: #fff;
    letter-spacing: 0.03em;
}

.contact-form {
    background: #1a1a1a;
    padding: 50px 60px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

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

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}

.required {
    color: #e74c3c;
    font-size: 12px;
    font-weight: 700;
    margin-left: 6px;
}

.optional {
    color: #999;
    font-size: 12px;
    font-weight: 500;
    margin-left: 6px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #fff;
    background: #1a1a1a;
    transition: border-color 0.3s, box-shadow 0.3s;
    letter-spacing: 0.02em;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(255, 215, 163, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23fff' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
    padding-right: 45px;
    color: #fff !important;
}

.form-group select option {
    color: #fff !important;
    background: #1a1a1a !important;
}

.form-group select option[value=""] {
    color: #aaa !important;
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
    line-height: 1.8;
}

.checkbox-group {
    margin: 35px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label span {
    font-size: 14px;
    color: #fff;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.checkbox-label a {
    color: #fff;
    text-decoration: underline;
}

.checkbox-label a:hover {
    text-decoration: none;
}

.form-submit {
    text-align: center;
    margin-top: 45px;
}

.submit-btn {
    background: #222;
    color: #fff;
    border: none;
    padding: 16px 60px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Noto Sans JP', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
    letter-spacing: 0.1em;
}

.submit-btn:hover {
    background: #1e3a8a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 163, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 25px;
    padding: 18px 25px;
    border-radius: 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .header-nav-ul {
        gap: 24px;
    }

    .reasons-content-inner {
        gap: 60px;
    }

    .plan-content-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .charge-info-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 767px) {
    /* Force white background when menu is open */
    #header.menu-open {
        background: #1a1a1a !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
    }

    #header.menu-open h1 a {
        color: #fff !important;
    }

    #header.menu-open #menu-btn span {
        background: #222 !important;
    }

    #header-in {
        padding: 16px 20px;
    }

    #header h1 {
        font-size: 15px;
        letter-spacing: 2px;
    }

    #header-nav {
        display: none;
        position: fixed;
        top: 47px;
        left: 0;
        width: 100vw;
        height: calc(100vh - 47px);
        background: #1a1a1a;
        border-top: none;
        box-shadow: none;
        z-index: 998;
        overflow-y: auto;
        padding-top: 0;
    }

    #header-nav ul {
        flex-direction: column;
        padding: 0;
        gap: 0;
        margin: 0;
        justify-content: flex-start;
        align-items: stretch;
    }

    #header-nav ul li {
        margin: 0;
        border-bottom: 1px solid #f5f5f5;
        width: 100%;
    }

    #header-nav ul li a,
    #header-nav ul li a span,
    #header-nav ul li a .nav-ja,
    #header-nav ul li a .nav-en {
        color: #fff !important;
    }

    #header-nav ul li a {
        display: flex !important;
        align-items: baseline !important;
        justify-content: flex-start !important;
        gap: 8px !important;
        padding: 18px 20px 18px 30px;
        font-size: 15px;
        transition: background 0.3s;
        width: 100%;
        text-align: left;
    }

    #header-nav ul li a .nav-ja {
        text-align: left;
        flex-shrink: 0;
    }

    #header-nav ul li a .nav-en {
        font-size: 11px;
        flex-shrink: 0;
    }

    .nav-instagram a.instagram-banner {
        padding: 0 !important;
    }

    #header-nav ul li a.active {
        background: #f9f9f9;
        color: #c9a05f;
        font-weight: 500;
    }

    #header-nav ul li a:hover {
        background: #f9f9f9;
    }

    .nav-instagram {
        display: block;
        margin-top: 30px;
        padding: 0;
    }

    .instagram-banner {
        display: block;
        position: relative;
        width: 100%;
        height: 250px;
        border-radius: 0;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        padding: 0;
    }

    .instagram-banner:hover {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        transform: translateY(-2px);
    }

    .instagram-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .instagram-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
        display: flex;
        align-items: flex-end;
        padding: 0;
    }

    .instagram-content {
        color: #fff;
        padding: 20px 25px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .instagram-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .instagram-icon {
        color: #fff;
        flex-shrink: 0;
    }

    .instagram-title {
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        letter-spacing: 0.02em;
    }

    .instagram-description {
        font-size: 13px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.95);
        margin: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        max-width: 100%;
    }

    #header-counseling-appointment.pc {
        display: none !important;
    }

    #menu-btn {
        display: flex;
    }

    #main-visual {
        height: auto;
        min-height: 0;
        max-height: none;
    }

    section {
        padding: 70px 0;
    }

    .inner {
        padding: 0;
        margin: 0;
    }

    .h-1 {
        margin-bottom: 55px;
        padding-top: 50px;
    }

    #concept .h-1 {
        padding-left: 0;
    }

    .h-1-bg {
        font-size: 70px;
        top: 0;
        letter-spacing: 0.1em;
    }

    .h-1-text {
        font-size: 28px;
        letter-spacing: 0.04em;
    }

    .reasons-wrap {
        gap: 70px;
        padding: 0 20px;
    }

    .reasons-content-inner {
        flex-direction: column !important;
        gap: 35px;
    }

    .reasons-content-img {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .reasons-content-text {
        max-width: 100%;
    }

    .reasons-content-title {
        font-size: 23px;
        margin-bottom: 24px;
    }

    .reasons-content-text-inner p {
        font-size: 14px;
        line-height: 2;
    }

    .plan-content-wrap {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 50px;
    }

    .plan-content-img {
        height: 260px;
    }

    .plan-content-text {
        padding: 35px 28px 38px;
    }

    .top-doctor-content {
        flex-direction: column;
        padding: 60px 25px;
        gap: 45px;
    }

    .doctor-img {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .top-doctor-content-inner h2 {
        font-size: 26px;
        margin-bottom: 28px;
    }

    .top-doctor-content-inner p {
        font-size: 14px;
    }

    .charge-content-h {
        font-size: 26px;
        margin-bottom: 50px;
    }

    .charge-info-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 24px;
    }

    .charge-info-list li img {
        height: 75px;
    }

    .charge-info-list li div {
        font-size: 12px;
    }

    .charge-number-notice {
        padding: 32px 24px;
    }

    .charge-number-notice p {
        font-size: 13px;
    }

    .flow-slider {
        flex-direction: column;
        gap: 30px;
        margin: 0;
    }

    .flow-slider li {
        padding: 0;
    }

    .flow-in {
        padding: 38px 26px 42px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 42px;
        margin-bottom: 50px;
    }

    .bottom-link {
        margin-top: 50px;
    }

    .contact-form {
        padding: 35px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

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

    .submit-btn {
        width: 100%;
        padding: 16px 30px;
    }
}

/* Page Header */
.page-header {
    margin-top: 0;
    margin-bottom: 0;
    background: #1e3a8a;
    position: relative;
    padding: 160px 20px 80px;
    text-align: center;
    border-bottom: none;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.page-header + section,
.page-header + #voice,
.page-header + .bg-f {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
}

.page-title {
    position: relative;
    z-index: 1;
}

.page-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.page-title-en {
    font-family: 'Italiana', serif;
    font-size: 48px;
    letter-spacing: 4px;
    color: #fff;
}

.page-title-ja {
    font-size: 16px;
    letter-spacing: 4px;
    color: #fff;
}

@media (max-width: 767px) {
    .page-header {
        margin-top: 0;
        padding: 120px 20px 60px;
    }

    .page-title-en {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .page-title-ja {
        font-size: 14px;
        letter-spacing: 3px;
    }
}

/* About Page */
.about-intro {
    text-align: center;
    margin-bottom: 40px;
}

.about-intro-text {
    font-size: 16px;
    line-height: 2;
    color: #fff;
    margin-top: 30px;
}

.philosophy-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.philosophy-item {
    text-align: center;
    padding: 40px 30px;
    background: #1a1a1a;
    border-radius: 8px;
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin: 0 auto 25px;
    background: #f5f0eb;
    border-radius: 50%;
    font-family: 'Italiana', serif;
    font-size: 20px;
    color: #fff;
}

.philosophy-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.philosophy-item p {
    font-size: 14px;
    line-height: 1.9;
    color: #fff;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.facility-item {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.facility-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.facility-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.facility-item:hover .facility-img img {
    transform: scale(1.05);
}

.facility-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 25px 20px 15px;
    color: #fff;
}

.facility-item p {
    font-size: 14px;
    line-height: 1.9;
    color: #fff;
    margin: 0 20px 25px;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 50px;
}

.staff-item {
    display: flex;
    gap: 30px;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    padding: 30px;
}

.staff-img {
    flex-shrink: 0;
    width: 200px;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
}

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

.staff-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.staff-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.staff-position {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.staff-description {
    font-size: 14px;
    line-height: 1.9;
    color: #fff;
}

@media (max-width: 1024px) {
    .philosophy-content,
    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 767px) {
    .philosophy-content,
    .facility-grid,
    .staff-grid {
        grid-template-columns: 1fr;
    }

    .staff-item {
        flex-direction: column;
        padding: 0;
    }

    .staff-img {
        width: 100%;
        height: 300px;
    }

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

/* Menu Page */
.menu-intro {
    text-align: center;
    margin-bottom: 40px;
}

.menu-intro-text {
    font-size: 16px;
    line-height: 2;
    color: #fff;
    margin-top: 30px;
}

.menu-category-description {
    text-align: center;
    margin-bottom: 40px;
}

.menu-category-description p {
    font-size: 16px;
    line-height: 2;
    color: #fff;
}

.price-table-wrapper {
    margin-bottom: 50px;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 40px;
}

.price-table-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    text-align: center;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table thead {
    background: #f5f0eb;
}

.price-table th {
    padding: 18px 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border-bottom: 2px solid #ddd;
}

.price-table td {
    padding: 18px 20px;
    font-size: 15px;
    color: #fff;
    border-bottom: 1px solid #eee;
}

.price-table tbody tr:hover {
    background: #fafafa;
}

.price-cell {
    font-weight: 600;
    color: #fff;
    text-align: right;
}

.payment-info {
    text-align: center;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.payment-method-item {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 8px;
}

.payment-method-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.payment-method-item p {
    font-size: 14px;
    line-height: 1.9;
    color: #fff;
}

.menu-notes {
    text-align: center;
}

.notes-list {
    list-style: none;
    text-align: left;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 40px;
    background: #1a1a1a;
    border-radius: 8px;
}

.notes-list li {
    font-size: 14px;
    line-height: 2;
    color: #fff;
    padding-left: 20px;
    position: relative;
    margin-bottom: 15px;
}

.notes-list li:before {
    content: '※';
    position: absolute;
    left: 0;
    color: #fff;
}

@media (max-width: 1024px) {
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .price-table-wrapper {
        padding: 30px 20px;
        overflow-x: auto;
    }

    .price-table {
        min-width: 500px;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }
}

/* Reservation Page */
.reservation-intro {
    text-align: center;
    margin-bottom: 40px;
}

.reservation-intro-text {
    font-size: 16px;
    line-height: 2;
    color: #fff;
    margin-top: 30px;
}

.reservation-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.reservation-notes {
    text-align: center;
    margin-top: 60px;
}

.reservation-contact {
    text-align: center;
    margin-top: 60px;
}

.phone-reservation {
    margin-top: 30px;
}

.phone-number {
    margin-bottom: 15px;
}

.phone-number a {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
}

.phone-hours {
    font-size: 16px;
    color: #fff;
}

.form-group select,
.form-group input[type="date"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    background-color: #1a1a1a;
    transition: border-color 0.3s;
}

.form-group select:focus,
.form-group input[type="date"]:focus {
    outline: none;
    border-color: #fff;
}

.optional {
    background: #f5f0eb;
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 5px;
}

@media (max-width: 767px) {
    .phone-number a {
        font-size: 28px;
    }
}

/* Voice Page */
.voice-intro {
    text-align: center;
    margin-bottom: 40px;
}

.voice-intro-text {
    font-size: 16px;
    line-height: 2;
    color: #fff;
    margin-top: 30px;
}

.voice-item {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
}

.voice-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f5f0eb;
}

.voice-customer {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.voice-treatment {
    font-size: 14px;
    color: #fff;
}

.voice-rating {
    flex-shrink: 0;
}

.star {
    color: #ffc107;
    font-size: 18px;
}

.voice-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.voice-content p {
    font-size: 15px;
    line-height: 2;
    color: #fff;
}

@media (max-width: 767px) {
    .voice-item {
        padding: 30px 20px;
    }

    .voice-header {
        flex-direction: column;
        gap: 15px;
    }
}

/* Access Page */
.access-intro {
    text-align: center;
    margin-bottom: 40px;
}

.access-intro-text {
    font-size: 16px;
    line-height: 2;
    color: #fff;
    margin-top: 30px;
}

.clinic-detail {
    margin-bottom: 60px;
}

.clinic-name {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.clinic-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 40px;
}

.clinic-map iframe {
    border-radius: 8px;
}

.clinic-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.clinic-details dt {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.clinic-details dd {
    font-size: 15px;
    line-height: 2;
    color: #fff;
}

.clinic-details dd a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.clinic-details dd a:hover {
    opacity: 0.6;
}

.access-notes {
    text-align: center;
}

@media (max-width: 767px) {
    .clinic-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
}

/* FAQ Page */
.faq-intro {
    text-align: center;
    margin-bottom: 40px;
}

.faq-intro-text {
    font-size: 16px;
    line-height: 2;
    color: #fff;
    margin-top: 30px;
}

.faq-list {
    max-width: 70%;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question:hover h3 {
    color: #000;
}

.faq-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #f5f0eb;
    border-radius: 50%;
    font-weight: 600;
    font-size: 16px;
    color: #000;
}

.faq-question h3 {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.faq-question h4 {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.faq-toggle {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 24px;
    color: #fff;
    transition: transform 0.3s;
    margin-left: auto;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 30px 25px;
}

.faq-answer .faq-icon {
    float: left;
    margin-right: 20px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 2;
    color: #fff;
    padding-left: 60px;
}

@media (max-width: 767px) {
    .faq-question,
    .faq-answer {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* About Page - Additional Styles */
.history-content {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.history-text p {
    font-size: 15px;
    line-height: 2;
    color: #fff;
    margin-bottom: 20px;
}

.history-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 50px;
    width: 2px;
    height: 30px;
    background: #ddd;
}

.timeline-year {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #f5f0eb;
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.timeline-desc {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.equipment-intro {
    text-align: center;
    margin-bottom: 50px;
}

.equipment-intro p {
    font-size: 16px;
    line-height: 2;
    color: #fff;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.equipment-item {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.equipment-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.equipment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.equipment-item:hover .equipment-img img {
    transform: scale(1.05);
}

.equipment-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 25px 20px 10px;
    color: #fff;
}

.equipment-name {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    margin: 0 20px 10px;
}

.equipment-desc {
    font-size: 14px;
    line-height: 1.9;
    color: #fff;
    margin: 0 20px 25px;
}

.staff-qualifications {
    margin-top: 20px;
    padding: 20px;
    background: #fafafa;
    border-radius: 4px;
}

.staff-qualifications p {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.staff-qualifications ul {
    list-style: none;
    padding-left: 0;
}

.staff-qualifications li {
    font-size: 13px;
    color: #fff;
    padding-left: 15px;
    position: relative;
    margin-bottom: 6px;
}

.staff-qualifications li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #fff;
}

.commitment-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.commitment-item {
    text-align: center;
    padding: 40px 30px;
    background: #1a1a1a;
    border-radius: 8px;
}

.commitment-icon {
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commitment-icon svg {
    width: 60px;
    height: 60px;
}

.commitment-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.commitment-item p {
    font-size: 14px;
    line-height: 1.9;
    color: #fff;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.number-item {
    text-align: center;
    padding: 50px 30px;
    background: #1a1a1a;
    border-radius: 8px;
}

.number-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.number-label {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

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

@media (max-width: 1024px) {
    .history-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

@media (max-width: 767px) {
    .history-content {
        padding: 30px 20px;
    }

    .equipment-grid,
    .commitment-content,
    .numbers-grid {
        grid-template-columns: 1fr;
    }

    .number-value {
        font-size: 36px;
    }
}

/* Blog Page Styles */
.blog-list {
    max-width: 1000px;
    margin: 0 auto;
}

.blog-article {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 60px;
}

.blog-article-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.blog-article-content {
    padding: 40px 50px;
}

.blog-article-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

.blog-article-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.6;
}

.blog-article-text p {
    font-size: 16px;
    line-height: 2;
    color: #fff;
    margin-bottom: 20px;
}

.blog-article-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #fff;
}

.blog-article-text strong {
    color: #fff;
    font-weight: 700;
}

@media (max-width: 767px) {
    .blog-article-img {
        height: 250px;
    }
    
    .blog-article-content {
        padding: 30px 25px;
    }
    
    .blog-article-title {
        font-size: 22px;
    }
}

/* Page Templates - Additional Styles */
.page-content {
    max-width: 1200px;
    margin: 0 auto;
}

.content-text {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 20px;
}

.content-text p {
    font-size: 16px;
    line-height: 2;
    color: #fff;
    margin-bottom: 20px;
}

.content-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 40px 0 20px;
}

.content-text strong {
    color: #fff;
    font-weight: 600;
}

/* Features List */
.features-list {
    max-width: 900px;
    margin: 40px auto 30px;
    padding: 0 20px;
}

.features-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
}

.features-list li {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px 30px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.features-list li:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Features Grid Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto 40px;
    padding: 0 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.5;
}

.feature-text {
    font-size: 15px;
    line-height: 1.8;
    color: #ddd;
}

/* Flow Section */
.flow-section {
    max-width: 900px;
    margin: 40px auto;
}

.flow-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 20px;
}

.flow-number {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.flow-step {
    font-size: 12px;
    color: #fff;
    letter-spacing: 1px;
}

.flow-num {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #f5f0eb;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.flow-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.flow-content p {
    font-size: 14px;
    line-height: 1.9;
    color: #fff;
}

/* Profile Section */
.profile-section {
    max-width: 1000px;
    margin: 40px auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.profile-image {
    flex-shrink: 0;
    width: 400px;
}

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

.profile-content {
    flex: 1;
}

.profile-title {
    font-size: 14px;
    font-weight: 400;
    color: #ccc;
    margin-bottom: 5px;
    letter-spacing: 0.2em;
}

.profile-name {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.profile-text {
    font-size: 15px;
    line-height: 1.9;
    color: #fff;
    margin-bottom: 20px;
}

.profile-text:last-child {
    margin-bottom: 0;
}

/* Guide Gallery Section */
.guide-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    max-width: 1200px;
    margin: 40px auto;
    position: relative;
}

.guide-item {
    position: relative;
}

.guide-item:not(:nth-child(3n)):not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #fff;
    font-weight: bold;
}

.guide-image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

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

.guide-text {
    font-size: 14px;
    line-height: 1.8;
    color: #fff;
    text-align: left;
}

.guide-number {
    font-weight: 700;
    color: #fff;
    margin-right: 5px;
}

/* Hair Cycle Section */
.hair-cycle-section {
    max-width: 900px;
    margin: 40px auto;
}

.hair-cycle-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.hair-cycle-section p {
    font-size: 15px;
    line-height: 2;
    color: #fff;
    margin-bottom: 20px;
}

.hair-cycle-section ul {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.hair-cycle-section ul li {
    font-size: 15px;
    line-height: 2;
    color: #fff;
    margin-bottom: 10px;
    padding-left: 0;
}

.hair-cycle-section ul li strong {
    color: #fff;
}

.note-text {
    font-size: 13px;
    color: #fff;
    margin-top: 30px;
    font-style: italic;
}

/* Blog Archive */
.blog-list {
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.blog-item {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.blog-thumbnail {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-item:hover .blog-thumbnail img {
    transform: scale(1.05);
}

.blog-content {
    padding: 30px;
}

.blog-date {
    display: block;
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #f5f0eb;
}

.blog-excerpt {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.blog-more {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-more:hover {
    color: #f5f0eb;
}

/* Blog Single Post */
.single-post {
    max-width: 100%;
    margin: 0 auto;
}

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

.single-date {
    display: block;
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.single-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
}

.single-thumbnail {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.single-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.single-content {
    font-size: 16px;
    line-height: 2;
    color: #fff;
    margin-bottom: 60px;
}

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

.single-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 40px 0 20px;
}

.single-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 30px 0 15px;
}

.single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.single-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 1px solid #333;
}

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

.nav-previous a,
.nav-next a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-previous a:hover,
.nav-next a:hover {
    color: #f5f0eb;
}

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

.single-back {
    text-align: center;
}

/* Pagination */
.pagination {
    margin: 60px 0 0;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.pagination a,
.pagination .current {
    display: inline-block;
    padding: 10px 15px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.pagination a:hover {
    background: #333;
}

.pagination .current {
    background: #f5f0eb;
    color: #000;
}

/* Comparison Table */
.comparison-table {
    max-width: 900px;
    margin: 40px auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table thead {
    background: #f5f0eb;
}

.comparison-table th {
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-align: center;
}

.comparison-table td {
    padding: 20px 15px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid #333;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #fff;
}

.comparison-table strong {
    color: #f5f0eb;
}

/* Option List */
.option-list {
    max-width: 900px;
    margin: 40px auto;
}

.option-item {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
}

.option-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.option-price {
    font-size: 24px;
    font-weight: 600;
    color: #f5f0eb;
    margin-bottom: 10px;
}

.option-desc {
    font-size: 14px;
    line-height: 1.9;
    color: #fff;
}

/* Note List */
.note-list {
    max-width: 900px;
    margin: 40px auto;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 40px;
}

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

.note-list li {
    font-size: 14px;
    line-height: 1.9;
    color: #fff;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.note-list li:last-child {
    margin-bottom: 0;
}

.note-list li:before {
    content: "・";
    position: absolute;
    left: 0;
    color: #f5f0eb;
    font-weight: 600;
}

/* Voice List */
.voice-list {
    max-width: 900px;
    margin: 40px auto;
}

.voice-item {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
}

.voice-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.voice-meta {
    display: flex;
    gap: 15px;
}

.voice-age,
.voice-area {
    font-size: 13px;
    padding: 5px 15px;
    background: #f5f0eb;
    border-radius: 20px;
    color: #000;
    font-weight: 600;
}

.voice-content p {
    font-size: 15px;
    line-height: 2;
    color: #fff;
}

/* Contact Tel */
.contact-tel {
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 40px;
}

.tel-number {
    margin-bottom: 20px;
}

.tel-number a {
    font-size: 32px;
    font-weight: 600;
    color: #f5f0eb;
    text-decoration: none;
}

.tel-number a:hover {
    opacity: 0.7;
}

.tel-hours {
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
}

.tel-note {
    font-size: 13px;
    line-height: 1.8;
    color: #fff;
}

/* Contact Line */
.contact-line {
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 40px;
}

.contact-line p {
    font-size: 15px;
    line-height: 2;
    color: #fff;
    margin-bottom: 30px;
}

.line-button {
    margin-top: 30px;
}

/* Responsive for Page Templates */
@media (max-width: 767px) {
    .blog-list {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 20px auto;
        padding: 0 15px;
    }

    .blog-item {
        margin: 0;
    }

    .blog-thumbnail {
        height: auto !important;
        width: 100% !important;
        text-align: center !important;
        display: block !important;
        overflow: visible !important;
    }

    .blog-thumbnail a {
        display: inline-block !important;
        width: auto !important;
    }

    .blog-thumbnail img {
        width: auto !important;
        height: 180px !important;
        max-width: 100% !important;
        object-fit: contain !important;
        display: inline-block !important;
    }

    .blog-content {
        padding: 20px 15px;
    }

    .blog-title {
        font-size: 16px;
        margin-bottom: 12px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .blog-date {
        font-size: 12px;
        padding-bottom: 0;
    }

    .blog-excerpt {
        font-size: 14px;
        line-height: 1.6;
    }

    .blog-more {
        font-size: 13px;
    }

    .single-post {
        padding: 0;
    }

    .single-header {
        padding: 0 15px;
    }

    .single-title {
        font-size: 20px;
    }

    .single-date {
        font-size: 12px;
    }

    .single-thumbnail {
        max-width: 300px;
        margin: 30px auto;
        padding: 0 15px;
    }

    .single-content {
        font-size: 14px;
        line-height: 1.8;
        padding: 0 15px;
    }

    .single-content h2 {
        font-size: 20px;
        margin: 30px 0 15px;
    }

    .single-content h3 {
        font-size: 18px;
        margin: 25px 0 12px;
    }

    .single-navigation {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        margin-top: 40px;
    }

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

    .pagination {
        margin: 40px 15px 0;
    }

    .pagination a,
    .pagination .current {
        padding: 8px 12px;
        font-size: 14px;
    }

    .guide-gallery {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .guide-item:not(:last-child)::after {
        content: '↓';
        right: auto;
        left: 50%;
        top: auto;
        bottom: -30px;
        transform: translateX(-50%);
    }

    .profile-section {
        flex-direction: column;
        gap: 30px;
    }

    .profile-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .flow-item {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
    }

    .flow-number {
        flex-direction: row;
        gap: 10px;
    }

    .comparison-table {
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
    }

    .option-item,
    .note-list,
    .voice-item,
    .contact-tel,
    .contact-line {
        padding: 25px 20px;
        margin: 30px 15px;
    }

    .tel-number a {
        font-size: 24px;
    }
}


.price-tax {
    font-size: 12px;
    font-weight: 400;
    color: #666;
    margin-left: 8px;
}

/* ========================================
   Voice Archive & Single Post Styles
   ======================================== */

/* Voice Archive List */
.voice-list {
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.voice-item {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.voice-before-after {
    display: flex;
    gap: 0;
}

.voice-image-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.voice-before-after .voice-image-wrapper:first-child {
    border-radius: 8px 0 0 8px;
}

.voice-before-after .voice-image-wrapper:last-child {
    border-radius: 0 8px 8px 0;
}

.voice-image-wrapper img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.voice-before-after .voice-image-wrapper:first-child img {
    border-radius: 8px 0 0 8px;
}

.voice-before-after .voice-image-wrapper:last-child img {
    border-radius: 0 8px 8px 0;
}

.voice-item:hover .voice-image-wrapper img {
    transform: scale(1.05);
}

.voice-label {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.voice-label.before {
    background: rgba(255, 99, 71, 0.9);
}

.voice-label.after {
    background: rgba(46, 204, 113, 0.9);
}

.voice-thumbnail {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.voice-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.voice-item:hover .voice-thumbnail img {
    transform: scale(1.05);
}

.voice-content {
    padding: 30px;
}

.voice-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 15px;
}

.voice-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.voice-title a:hover {
    color: #e89b75;
}

.voice-excerpt {
    font-size: 15px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.voice-more {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #e89b75;
    text-decoration: none;
    transition: all 0.3s ease;
}

.voice-more:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Voice Single Post */
.single-voice-header {
    margin-bottom: 40px;
    text-align: center;
}

.single-voice-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    margin: 0;
}

.single-voice-before-after {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    position: relative;
}

.voice-arrow {
    font-size: 48px;
    color: #fff;
    font-weight: bold;
    flex-shrink: 0;
    line-height: 1;
}

.single-voice-image-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.single-voice-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.single-voice-label {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.single-voice-label.before {
    background: rgba(255, 99, 71, 0.9);
}

.single-voice-label.after {
    background: rgba(46, 204, 113, 0.9);
}

.single-voice-thumbnail {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.single-voice-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.single-voice-content {
    font-size: 16px;
    line-height: 2;
    color: #fff;
    margin-bottom: 60px;
}

.single-voice-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #fff;
}

.single-voice-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #fff;
}

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

.single-voice-content ul,
.single-voice-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

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

/* Responsive for Voice Pages */
@media (max-width: 767px) {
    .voice-list {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 20px auto;
        padding: 0 15px;
    }

    .voice-item {
        margin: 0 auto;
        border-radius: 0 !important;
    }

    .voice-before-after {
        flex-direction: row;
        gap: 0;
        justify-content: center;
    }

    .voice-before-after .voice-image-wrapper:first-child,
    .voice-before-after .voice-image-wrapper:last-child {
        border-radius: 0 !important;
    }

    .voice-before-after .voice-image-wrapper:first-child img,
    .voice-before-after .voice-image-wrapper:last-child img {
        border-radius: 0 !important;
    }

    .voice-image-wrapper {
        border-radius: 0 !important;
    }

    .voice-image-wrapper img {
        height: 150px;
    }

    .voice-content {
        padding: 20px 15px;
    }

    .voice-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .voice-more {
        font-size: 13px;
    }

    .voice-thumbnail {
        height: auto !important;
        width: 100% !important;
        max-width: 100%;
        text-align: center !important;
        display: block !important;
        margin: 0 auto;
        overflow: visible !important;
    }

    .voice-thumbnail a {
        display: inline-block !important;
        max-width: 100%;
        width: auto !important;
    }

    .voice-thumbnail img {
        width: auto !important;
        height: 200px !important;
        max-width: 100% !important;
        object-fit: contain !important;
        display: inline-block !important;
        margin: 0 auto;
    }

    .single-voice-header {
        padding: 0 15px;
    }

    .single-voice-title {
        font-size: 20px;
    }

    .single-voice-before-after {
        flex-direction: row;
        gap: 10px;
        padding: 0 15px;
    }

    .voice-arrow {
        font-size: 24px;
        margin: 0;
    }

    .single-voice-label {
        font-size: 12px;
        padding: 6px 12px;
        top: 10px;
        left: 10px;
    }

    .single-voice-content {
        font-size: 14px;
        line-height: 1.8;
        padding: 0 15px;
    }

    .single-voice-content h2 {
        font-size: 20px;
        margin: 30px 0 15px;
    }

    .single-voice-content h3 {
        font-size: 18px;
        margin: 25px 0 12px;
    }

    .voice-customer-section,
    .voice-staff-section {
        padding: 20px 15px;
        margin: 30px 15px;
        border-radius: 8px;
    }

    .voice-section-title {
        font-size: 20px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .voice-customer-content,
    .voice-staff-content {
        font-size: 14px;
        line-height: 1.8;
    }

    .single-navigation {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        margin-top: 40px;
    }

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

    .single-back {
        text-align: center;
        margin-top: 30px;
        padding: 0 15px;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Voice Customer & Staff Sections */
.voice-customer-section,
.voice-staff-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    background: #1a1a1a;
    border-radius: 12px;
}

.voice-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #e89b75;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e89b75;
}

.voice-customer-content,
.voice-staff-content {
    font-size: 16px;
    line-height: 2;
    color: #fff;
}

.voice-customer-preview {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border-left: 3px solid #e89b75;
}

.voice-customer-preview strong {
    color: #e89b75;
    display: block;
    margin-bottom: 8px;
}

/* ========================================
   Additional Responsive Styles for Mobile (max-width: 767px)
   ======================================== */

@media (max-width: 767px) {
    /* Base Typography */
    body {
        font-size: 14px;
    }

    /* Inner Container */
    .inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Page Content */
    .page-content {
        padding: 0 15px;
    }

    /* Content Text */
    .content-text {
        padding: 0 15px;
    }

    .content-text p {
        font-size: 12px;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    /* Features List Responsive */
    .features-list {
        margin: 30px auto 20px;
        padding: 0 15px;
    }

    .features-list ul {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .features-list li {
        padding: 15px 20px;
        font-size: 14px;
    }

    /* Features Grid Responsive */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 40px auto 30px;
        padding: 0 15px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .feature-icon img {
        max-width: 40px;
        max-height: 40px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-text {
        font-size: 14px;
    }

    .content-text h3 {
        font-size: 18px;
        margin: 30px 0 15px;
    }

    /* Headings */
    .h-1 {
        margin-bottom: 30px;
        padding-left: 20px !important;
    }

    .h-1-bg {
        font-size: 48px;
        letter-spacing: 2px;
        left: 20px;
    }

    .h-1-text {
        font-size: 20px;
        letter-spacing: 2px;
        padding: 0 10px;
        padding-left: 20px;
        margin-top: -35px;
    }

    /* Buttons */
    .btn-primary {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }

    .section-link-btn {
        margin-top: 30px;
        padding: 0 15px;
    }

    /* Concern Solution */
    .concern-solution {
        margin-top: 0;
        padding: 0 20px;
    }

    .concern-solution p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    /* Main Visual */
    #main-visual {
        height: auto;
        min-height: 50vh;
    }

    #main-visual img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Menu Grid */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .menu-intro {
        padding: 0 20px;
    }

    .menu-intro p {
        font-size: 14px;
    }

    /* Price Card */
    .price-card {
        padding: 30px 20px;
    }

    .price-card-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .price-item {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        padding: 15px 0;
    }

    .price-label {
        font-size: 14px;
    }

    .price-value {
        font-size: 24px;
    }

    .price-time {
        font-size: 12px;
    }

    .payment-description {
        font-size: 13px;
    }

    /* Flow Content - Responsive Grid */
    .flow-content {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }

    .flow-step {
        padding: 80px 20px 25px;
    }

    .flow-step-number {
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 12px;
    }

    .flow-step-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .flow-step-text {
        font-size: 13px;
        line-height: 1.7;
    }

    /* Access Map */
    .access-map iframe {
        height: 300px;
    }

    .access-content {
        max-width: 100%;
        padding: 30px 20px;
        gap: 25px;
    }

    .access-details {
        gap: 15px 20px;
    }

    .access-details dt {
        font-size: 14px;
    }

    .access-details dd {
        font-size: 14px;
        line-height: 1.8;
    }

    /* Blog Section */
    .blog-carousel-wrapper {
        margin-top: 30px;
    }

    .blog-list {
        gap: 20px;
    }

    .blog-card {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-card-content {
        padding: 15px;
    }

    .blog-card-title {
        font-size: 16px;
    }

    .blog-card-excerpt {
        font-size: 13px;
    }

    /* Thanks Page */
    .thanks-container {
        padding: 40px 15px;
    }

    .thanks-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .thanks-icon svg {
        width: 40px;
        height: 40px;
    }

    .thanks-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .thanks-message {
        padding: 25px 20px;
    }

    .thanks-message p {
        font-size: 15px;
    }

    .thanks-note p {
        font-size: 13px;
    }

    .thanks-contact-info {
        padding: 25px 20px;
        margin-top: 40px;
    }

    .thanks-contact-info h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-method {
        padding: 20px;
    }

    .contact-tel {
        font-size: 20px !important;
    }

    /* Contact Form */
    .contact-form-container {
        padding: 0 15px;
    }

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

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .form-group {
        width: 100%;
    }

    .form-group.full-width {
        width: 100%;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
        padding: 12px 15px;
    }

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

    .form-submit {
        padding: 0;
    }

    .form-submit button,
    .submit-btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
    }

    .success-message,
    .error-message {
        font-size: 14px;
        padding: 15px;
        margin-bottom: 20px;
    }

    .required,
    .optional {
        font-size: 11px;
        padding: 2px 6px;
    }

    /* FAQ List */
    .faq-list {
        max-width: 100%;
        padding: 0 15px;
    }

    .faq-item {
        margin-bottom: 15px;
    }

    .faq-question {
        padding: 20px 15px;
        padding-right: 50px;
        gap: 0;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative !important;
        display: flex !important;
    }

    .faq-icon {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
        margin-right: 12px;
    }

    .faq-question h3 {
        font-size: 14px;
        line-height: 1.6;
    }

    .faq-toggle {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 20px;
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .faq-item.active .faq-toggle {
        transform: translateY(-50%) rotate(45deg) !important;
    }

    .faq-answer {
        padding: 0 15px 20px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.8;
        padding-left: 50px;
    }

    /* Price Table */
    .price-table-wrapper {
        padding: 25px 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .price-table {
        min-width: 500px;
        font-size: 13px;
    }

    .price-table th,
    .price-table td {
        padding: 12px 10px;
        font-size: 13px;
    }

    /* Comparison Table - Horizontal Scroll */
    .comparison-table {
        margin: 30px 0;
        padding: 0 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table table {
        min-width: 100%;
        font-size: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 12px;
        line-height: 1.5;
    }

    .comparison-table thead th:first-child {
        width: 25%;
    }

    .comparison-table thead th {
        font-size: 13px;
        padding: 12px 6px;
    }

    .comparison-table tbody td:first-child {
        font-weight: 600;
        white-space: nowrap;
    }

    .comparison-table tbody td:not(:first-child) {
        text-align: center;
    }

    .comparison-table tbody td .symbol {
        display: block;
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 3px;
    }

    .comparison-table tbody td .text {
        display: block;
        font-size: 11px;
    }

    /* Note List */
    .note-list {
        padding: 30px 20px;
        margin: 30px 15px;
    }

    .note-list li {
        font-size: 13px;
        line-height: 1.8;
        margin-bottom: 12px;
        padding-left: 20px;
    }

    /* Voice Items */
    .voice-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    .voice-age,
    .voice-area {
        font-size: 12px;
        padding: 4px 12px;
    }

    /* BA Gallery */
    .ba-gallery {
        padding: 0 15px;
    }

    .ba-item {
        padding: 15px;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateX(-30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .ba-item.started {
        opacity: 1;
        transform: translateX(0);
    }

    .ba-images {
        flex-direction: row;
        gap: 10px;
    }

    .ba-before,
    .ba-after {
        flex: 1;
    }

    .ba-before img,
    .ba-after img {
        width: 100%;
        height: auto;
    }

    .ba-label {
        font-size: 12px;
        padding: 6px 12px;
        top: 10px;
        left: 10px;
    }

    .ba-title {
        font-size: 14px;
        line-height: 1.7;
        padding: 15px 10px;
    }

    /* Reason Items */
    .reason-img {
        width: 100%;
        max-width: 100%;
    }

    .reason-img img {
        width: 100%;
        height: auto;
    }

    .reason-content {
        padding: 0;
    }

    .reason-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .reason-text {
        font-size: 14px;
        line-height: 1.8;
    }

    /* Profile */
    .profile-section {
        padding: 0 15px;
    }

    .profile-name {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .profile-text {
        font-size: 14px;
        line-height: 1.8;
    }

    /* Guide Gallery */
    .guide-gallery {
        padding: 0 15px;
    }

    .guide-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .guide-number {
        font-size: 14px;
    }

    /* Hair Cycle Section */
    .hair-cycle-section {
        padding: 0 15px;
    }

    .hair-cycle-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .hair-cycle-section p {
        font-size: 14px;
        line-height: 1.8;
    }

    .hair-cycle-section ul li {
        font-size: 14px;
        line-height: 1.8;
    }

    /* Contact Intro */
    .contact-intro {
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .contact-intro p {
        font-size: 14px;
    }

    /* Contact Tel/Line */
    .contact-tel,
    .contact-line {
        padding: 30px 20px;
        margin: 30px 15px;
    }

    .tel-number a {
        font-size: 26px;
    }

    .tel-hours {
        font-size: 14px;
    }

    .tel-note {
        font-size: 12px;
    }

    /* Payment Info */
    .payment-info {
        padding: 30px 20px;
    }

    .payment-info h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    /* Checkbox */
    .checkbox-group {
        font-size: 13px;
    }

    .checkbox-group label {
        line-height: 1.6;
    }

    /* Sections Background */
    section {
        padding: 50px 0;
    }

    .bg-f,
    .bg-2 {
        padding: 50px 0;
    }

    /* Footer Adjustments */
    .footer-content {
        display: none !important;
    }

    .footer-bottom {
        display: block !important;
    }

    footer {
        padding: 30px 0 !important;
    }

    .footer-logo-info {
        font-size: 13px;
        line-height: 1.8;
    }

    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-section ul li a {
        font-size: 13px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    /* Touch-friendly Tap Targets */
    a,
    button,
    input[type="submit"],
    input[type="button"],
    .faq-question,
    .btn-primary {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Form inputs touch-friendly */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    select,
    textarea {
        min-height: 44px;
    }

    /* Prevent text from being too small */
    p,
    li,
    dd,
    span {
        font-size: 14px;
        line-height: 1.7;
    }

    /* Images Responsive */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Table Overflow */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Horizontal Scrolling Container */
    .scroll-x {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Voice Section Specific */
    .voice-section-title {
        font-size: 18px;
    }

    .voice-customer-content,
    .voice-staff-content {
        font-size: 14px;
    }

    /* Single Back Button */
    .single-back {
        padding: 0 15px;
    }

    /* Menu Intro */
    .menu-intro-text,
    .about-intro-text,
    .reservation-intro-text,
    .voice-intro-text,
    .access-intro-text,
    .faq-intro-text {
        font-size: 14px;
        padding: 0 15px;
    }

    /* Philosophy/Facility/Staff Grids */
    .philosophy-content,
    .facility-grid,
    .staff-grid {
        padding: 0 15px;
    }

    .philosophy-item,
    .facility-item {
        padding: 30px 20px;
    }

    .philosophy-item h3,
    .facility-item h3 {
        font-size: 18px;
    }

    .philosophy-item p,
    .facility-item p {
        font-size: 14px;
    }

    /* Staff Info */
    .staff-info {
        padding: 25px 20px;
    }

    .staff-name {
        font-size: 18px;
    }

    .staff-role {
        font-size: 13px;
    }

    .staff-desc {
        font-size: 14px;
    }

    /* Equipment Grid */
    .equipment-grid {
        padding: 0 15px;
    }

    .equipment-item h4 {
        font-size: 16px;
    }

    .equipment-desc {
        font-size: 13px;
    }

    /* Blog Article */
    .blog-article-content {
        padding: 25px 20px;
    }

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

    .blog-article-text p {
        font-size: 14px;
    }

    /* Commitment/Numbers */
    .commitment-item,
    .number-item {
        padding: 30px 20px;
    }

    .commitment-item h4 {
        font-size: 16px;
    }

    .commitment-item p {
        font-size: 13px;
    }

    .number-value {
        font-size: 36px;
    }

    .number-label {
        font-size: 14px;
    }

    .number-desc {
        font-size: 13px;
    }

    /* History Content */
    .history-content {
        padding: 25px 20px;
    }

    .history-text p {
        font-size: 14px;
    }

    .timeline-year {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 14px;
    }

    .timeline-desc {
        font-size: 14px;
    }

    /* Clinic Info Grid */
    .clinic-info-grid {
        padding: 25px 20px;
    }

    .clinic-name {
        font-size: 22px;
        padding: 0 15px;
    }

    .clinic-details dt {
        font-size: 14px;
    }

    .clinic-details dd {
        font-size: 14px;
    }

    /* Option Items */
    .option-item {
        padding: 25px 20px;
    }

    .option-item h3 {
        font-size: 18px;
    }

    .option-price {
        font-size: 20px;
    }

    .option-desc {
        font-size: 13px;
    }

    /* Better spacing for mobile */
    section + section {
        margin-top: 0;
    }

    /* Ensure proper line breaks */
    br.sp {
        display: block !important;
    }

    br.pc {
        display: none !important;
    }

    /* Max width containers */
    .faq-list,
    .note-list,
    .contact-tel,
    .contact-line,
    .voice-list {
        max-width: 100%;
    }
}



/* Blog page specific styles */
#blog-list .inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* GeneratePress Grid System */
.grid-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
}

.grid-container:before,
.grid-container:after {
    content: " ";
    display: table;
}

.grid-container:after {
    clear: both;
}

.grid-parent {
    padding-left: 0;
    padding-right: 0;
}

.grid-25,
.grid-75 {
    float: left;
    position: relative;
    box-sizing: border-box;
}

.grid-75 {
    width: 75%;
    padding-right: 40px;
}

.grid-25 {
    width: 25%;
}

.grid-100 {
    width: 100%;
}

/* Content Area */
.content-area {
    background-color: #fff;
}

.site-main {
    margin: 40px 0;
}

/* Sidebar Styles */
.sidebar .widget {
    background: transparent;
    padding: 40px;
    margin-bottom: 30px;
    color: #ffffff;
}

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

.widget-title,
.widget .wp-block-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #ffffff;
}

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

.widget ul li {
    padding-bottom: 5px;
    list-style-type: none;
    position: relative;
    color: #ffffff;
}

.widget ul li:last-child {
    padding-bottom: 0;
}

.widget a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.widget a:hover {
    color: #cccccc;
}

/* 検索フォームのスタイル */
.widget .wp-block-search__label {
    color: #ffffff;
}

.widget .wp-block-search__input {
    color: #333333;
    background-color: #ffffff;
    border: 1px solid #cccccc;
}

.widget .wp-block-search__button {
    color: #ffffff;
    background-color: #1e3a8a;
    border: none;
}

/* コメントウィジェットのスタイル */
.widget .wp-block-latest-comments,
.widget .no-comments {
    color: #ffffff;
}

.widget {
    margin: 0 0 30px;
    box-sizing: border-box;
    font-size: 17px;
}

/* Search Form in Widget */
.widget_search .search-field {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.widget_search .search-submit {
    display: none;
}

/* Tablet Layout */
@media (max-width: 1024px) {
    .tablet-grid-75 {
        width: 75%;
        padding-right: 40px;
    }

    .tablet-grid-25 {
        width: 25%;
    }
}

/* Mobile Layout */
@media (max-width: 768px) {
    .mobile-grid-100 {
        width: 100%;
        padding-right: 0;
        float: none;
    }

    .grid-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sidebar .widget {
        padding: 30px 20px;
    }
}
/*
 * GeneratePress-style Blog Styles for Nuketta Theme
 * This file contains blog-specific styles inspired by GeneratePress
 */

/* ================================================
   Two Column Layout Container
   ================================================ */

.site-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

/* ================================================
   Content Area - GeneratePress Style
   ================================================ */

#primary.content-area {
	flex: 1;
	min-width: 0;
}

.site-main {
	padding: 0;
}

/* ================================================
   Article Styles
   ================================================ */

article {
	margin-bottom: 40px;
}

.inside-article {
	padding: 0;
}

/* Post Image */
.post-image {
	float: left;
	margin: 0 30px 20px 0;
	max-width: 400px;
	line-height: 0;
}

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

/* Clear float after content */
.entry-content::after {
	content: "";
	display: table;
	clear: both;
}

footer.entry-meta {
	clear: both;
}

/* ================================================
   Entry Header
   ================================================ */

.entry-header {
	margin-bottom: 20px;
	word-wrap: break-word;
}

.entry-title {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 15px;
	color: #fff;
	font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.entry-title a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.entry-title a:hover {
	color: #ddd;
}

/* Archive Entry Title (h2) */
article h2.entry-title {
	font-size: 24px;
	margin-bottom: 10px;
}

/* ================================================
   Entry Meta
   ================================================ */

.entry-meta {
	font-size: 14px;
	margin-top: 10px;
	margin-bottom: 20px;
	line-height: 1.5;
	color: #ccc;
}

.entry-meta > * {
	display: inline-block;
	margin-right: 15px;
}

.entry-meta time,
.entry-meta .cat-links,
.entry-meta .tags-links {
	display: inline-block;
}

.entry-meta a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.entry-meta a:hover {
	color: #fff;
}

footer.entry-meta {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #e0e0e0;
}

/* Icons */
.gp-icon {
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.gp-icon svg {
	width: 100%;
	height: 100%;
	vertical-align: top;
}

/* ================================================
   Entry Content
   ================================================ */

.entry-content,
.entry-summary {
	font-size: 17px;
	line-height: 1.7;
	color: #fff;
	margin-bottom: 20px;
}

.entry-content p,
.entry-summary p {
	margin-bottom: 1.5em;
}

.entry-content p:last-child,
.entry-summary p:last-child {
	margin-bottom: 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	margin: 30px 0 15px;
	font-weight: 700;
	line-height: 1.4;
}

.entry-content h2 {
	font-size: 26px;
}

.entry-content h3 {
	font-size: 22px;
}

.entry-content ul,
.entry-content ol {
	margin: 0 0 1.5em 1.5em;
	padding: 0;
}

.entry-content li {
	margin-bottom: 0.5em;
}

.entry-content img {
	max-width: 100%;
	height: auto;
}

.entry-content a {
	color: #88c0ff;
	text-decoration: none;
}

.entry-content a:hover {
	color: #fff;
	text-decoration: underline;
}

/* ================================================
   Read More Link
   ================================================ */

.read-more {
	display: inline-block;
	color: #1e73be;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.read-more:hover {
	color: #0d5a9e;
}

/* ================================================
   Page Header (Archive Title)
   ================================================ */

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

.page-header .page-title {
	font-size: 32px;
	font-weight: 700;
	margin: 0;
	color: #fff;
}

.taxonomy-description {
	margin-top: 15px;
	font-size: 16px;
	color: #ccc;
}

/* ================================================
   Post Navigation
   ================================================ */

.post-navigation {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
	padding: 20px 0;
	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
	flex: 1;
	max-width: 48%;
}

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

.post-navigation a {
	color: #ccc;
	text-decoration: none;
	font-size: 14px;
	display: block;
	transition: color 0.3s ease;
}

.post-navigation a:hover {
	color: #fff;
}

.post-navigation .prev::before {
	content: "← ";
}

.post-navigation .next::after {
	content: " →";
}

/* ================================================
   Pagination
   ================================================ */

.paging-navigation {
	margin-top: 40px;
	text-align: center;
}

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

.page-numbers {
	display: inline-block;
	padding: 8px 15px;
	margin: 0 2px;
	background: #f5f5f5;
	color: #333;
	text-decoration: none;
	border-radius: 3px;
	transition: all 0.3s ease;
	font-size: 14px;
}

.page-numbers:hover,
.page-numbers.current {
	background: #1e73be;
	color: #fff;
}

.page-numbers.dots {
	background: none;
}

/* ================================================
   No Results
   ================================================ */

.no-results {
	text-align: center;
	padding: 60px 20px;
}

.no-results .page-header {
	border-bottom: none;
}

.no-results .page-content {
	font-size: 18px;
	color: #ccc;
}

/* ================================================
   Sidebar & Widgets
   ================================================ */

.widget-area.sidebar {
	width: 320px;
	flex-shrink: 0;
}

.widget {
	padding: 0 0 30px 0;
	margin-bottom: 30px;
	border-bottom: 1px solid #e0e0e0;
}

.widget:last-child {
	margin-bottom: 0;
}

.widget-title {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 20px;
	padding-bottom: 0;
	border-bottom: none;
	color: #fff;
}

/* Search Widget */
.widget_search .search-form {
	display: flex;
	gap: 5px;
}

.widget_search .search-field {
	flex: 1;
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: 3px;
	font-size: 14px;
}

.widget_search .search-submit {
	padding: 10px 20px;
	background: #333;
	color: #fff;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	font-size: 14px;
	transition: background 0.3s ease;
}

.widget_search .search-submit:hover {
	background: #1e73be;
}

/* Widget Lists */
.widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget ul li {
	padding: 8px 0;
	border-bottom: none;
	color: #ccc;
}

.widget ul li a {
	color: #ccc;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
	display: block;
}

.widget ul li a:hover {
	color: #fff;
}

/* Recent Posts Widget */
.widget_recent_entries ul li {
	padding-left: 0;
}

/* Recent Comments Widget */
.widget_recent_comments ul li {
	font-size: 14px;
	line-height: 1.6;
}

/* Archive Widget */
.widget_archive select {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
	font-size: 14px;
}

/* Categories Widget */
.widget_categories ul li {
	display: flex;
	justify-content: space-between;
}

/* ================================================
   Responsive Styles
   ================================================ */

@media (max-width: 968px) {
	.site-container {
		flex-direction: column;
	}

	.widget-area.sidebar {
		width: 100%;
		max-width: 600px;
		margin: 40px auto 0;
	}
}

@media (max-width: 768px) {
	.site-container {
		padding: 20px 15px;
	}

	/* Make image full width on mobile */
	.post-image {
		float: none;
		max-width: 100%;
		margin: 0 0 20px 0;
	}

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

	article h2.entry-title {
		font-size: 20px;
	}

	.entry-content,
	.entry-summary {
		font-size: 16px;
	}

	.page-header .page-title {
		font-size: 26px;
	}

	.post-navigation {
		flex-direction: column;
		gap: 15px;
	}

	.post-navigation .nav-previous,
	.post-navigation .nav-next {
		max-width: 100%;
		text-align: left;
	}

	.entry-meta > * {
		display: block;
		margin-bottom: 5px;
	}
}
/*
 * Contact Form 7 Custom Styles
 * Nuketta Theme - nuketta87.com と完全に同じデザイン
 */

/* フォームコンテナの背景 */
.contact-form-container {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(30, 30, 30, 0.9);
    padding: 60px 70px 70px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Contact Form 7 フォーム全体 */
.wpcf7 {
    max-width: 100%;
    margin: 0;
    background: transparent;
}

.wpcf7-form {
    display: block;
    background: transparent;
}

/* フォーム行 */
.wpcf7-form p {
    margin-bottom: 30px;
}

/* テーブルレイアウト */
.wpcf7-form table.inquiry {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.wpcf7-form table.inquiry th {
    text-align: left;
    padding: 15px 20px;
    vertical-align: middle;
    width: 200px;
}

.wpcf7-form table.inquiry td {
    padding: 15px 20px;
}

.wpcf7-form table.inquiry th span.must {
    display: inline-block;
    background: #ff5252;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    margin-right: 10px;
}

.wpcf7-form table.inquiry th span:not(.must) {
    color: #e0e0e0;
    font-size: 15px;
    font-weight: 500;
}

.wpcf7-form table.inquiry tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wpcf7-form table.inquiry tr:last-child {
    border-bottom: none;
}

/* ラベル */
.wpcf7-form label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #e0e0e0;
    letter-spacing: 0.3px;
}

/* 必須マーク */
.wpcf7-form .required,
.wpcf7-form abbr {
    color: #ff5252;
    font-size: 14px;
    margin-left: 4px;
    text-decoration: none;
    font-weight: 600;
}

/* 入力フィールド共通 */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    padding: 16px 22px;
    font-size: 15px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #f5f5f5;
    transition: all 0.25s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    box-sizing: border-box;
    line-height: 1.5;
}

.wpcf7-form input[type="text"]::placeholder,
.wpcf7-form input[type="email"]::placeholder,
.wpcf7-form input[type="tel"]::placeholder,
.wpcf7-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

/* テキストエリア */
.wpcf7-form textarea {
    min-height: 180px;
    resize: vertical;
    line-height: 1.7;
}

/* セレクトボックス */
.wpcf7-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10'%3E%3Cpath fill='%23f5f5f5' d='M0 0l8 10 8-10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 22px center;
    background-size: 12px;
    padding-right: 55px;
}

.wpcf7-form select option {
    background: #2a2a2a;
    color: #ffffff;
}

/* 2カラムレイアウト */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

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

/* 送信ボタン */
.wpcf7-form input[type="submit"],
.wpcf7-form button[type="submit"] {
    display: block;
    width: auto;
    max-width: 400px;
    margin: 40px auto 0;
    padding: 20px 60px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.8px;
}

.wpcf7-form input[type="submit"]:hover,
.wpcf7-form button[type="submit"]:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.65);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.wpcf7-form input[type="submit"]:active,
.wpcf7-form button[type="submit"]:active {
    transform: translateY(0);
}

/* 成功メッセージ */
.wpcf7-response-output {
    margin: 20px 0;
    color: #ffffff;
    font-size: 15px;
    text-align: center;
    padding: 15px 20px;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
}

.wpcf7-mail-sent-ok {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

/* エラーメッセージ */
.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.wpcf7-not-valid-tip {
    font-size: 14px;
    color: #ff6b6b;
    margin-top: 5px;
    display: block;
}

/* スピナー */
.wpcf7-spinner {
    margin-left: 10px;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 30px 20px;
        border-radius: 8px;
    }

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

    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form select,
    .wpcf7-form textarea {
        font-size: 16px; /* iOS zoom prevention */
    }

    .wpcf7-form input[type="submit"],
    .wpcf7-form button[type="submit"] {
        width: 100%;
        max-width: 100%;
    }
}

/* Placeholder */
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

/* チェックボックス・ラジオボタン */
.wpcf7-form .wpcf7-list-item {
    margin: 0 0 10px 0;
}

.wpcf7-form input[type="checkbox"],
.wpcf7-form input[type="radio"] {
    margin-right: 8px;
    width: auto;
}

.wpcf7-form .wpcf7-list-item-label {
    color: #fff;
    font-weight: normal;
}

/* アクセプタンス（スパム防止チェックボックス） */
.wpcf7-form .wpcf7-acceptance,
.wpcf7-form .wpcf7-acceptance *,
.wpcf7-form p.wpcf7-acceptance,
.wpcf7-form span.wpcf7-acceptance,
.wpcf7-form .spam1 {
    margin: 25px 0;
    color: #ffffff !important;
    font-size: 14px;
}

.wpcf7-form .wpcf7-acceptance label,
.wpcf7-form .wpcf7-acceptance label * {
    display: flex;
    align-items: center;
    color: #ffffff !important;
    font-size: 14px;
}

.wpcf7-form .wpcf7-acceptance .wpcf7-list-item,
.wpcf7-form .wpcf7-acceptance .wpcf7-list-item * {
    color: #ffffff !important;
}

.wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label,
.wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label * {
    color: #ffffff !important;
}

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

/* spam1クラス専用 */
.wpcf7-form .spam1,
.wpcf7-form span.spam1,
.wpcf7-form .spam1 label,
.wpcf7-form .spam1 * {
    color: #ffffff !important;
}

/* pタグのacceptance */
.wpcf7-form p.spam1,
.contact-form-container p.spam1,
body .wpcf7-form p.spam1,
body .contact-form-container p.spam1 {
    color: #ffffff !important;
}

/* より強力なセレクタ */
.contact-form-container .wpcf7-form p,
.contact-form-container .wpcf7 p {
    color: #ffffff !important;
}

/* ファイルアップロード */
.wpcf7-form input[type="file"] {
    padding: 8px 0;
    border: none;
    background: transparent;
    color: #fff;
}

/* 無効化状態 */
.wpcf7-form input:disabled,
.wpcf7-form textarea:disabled,
.wpcf7-form select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.6;
}
