/* リセット & 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --light-color: #f5f5f5;
    --dark-color: #222222;
    --text-color: #333333;
    --text-light: #777777;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Playfair Display', serif;
    font-weight: 100; /* Thinウェイト */
    color: var(--text-color);
    background: var(--black);
    line-height: 1.8;
    overflow-x: hidden;
    padding-top: 88px
}


h1, h2, h3, h4 {
    font-weight: 100; /* Thinウェイト */
    line-height: 1.3;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}


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

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

/* ヘッダー */
.header {
    position: fixed;
    width: 100%;
    background:'rgba(255, 255, 255, 0.8)';
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    top: 0;
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 100;
    font-size: 18px;
    letter-spacing: 1px;
    padding-top: 0; /* 調整 */
    margin: 0; /* 余白をリセット */
}

.logo-leather {
   font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 100; /* Thinウェイト */
    color: var(--black);
    letter-spacing: 1px;
    padding-top: 8px;
}



/* ロゴコンテナスタイル */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ロゴ画像スタイル */
.logo-image {
    height: 40px; /* 適切なサイズに調整 */
    width: auto;
    transition: var(--transition);
}



/* ヘッダーのレイアウト調整 */
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px; /* 要素間の間隔 */
}




.nav ul {
    display: flex;
    list-style: none;
}

.nav li {
    margin-left: 30px;
}

.nav a {
    font-weight: 100; /* Thinウェイト */
    color: var(--black);
    font-family: 'Playfair Display', serif;
    position: relative;
    padding: 5px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--black);
    transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a.active {
    color: var(--black);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #000; /* バーを黒色に */
    margin: 5px 0;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ソーシャルアイコン */
.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: auto;
    padding-top: 5px;
}

.social-icon {
    color: var(--black);
    font-size: 2rem;
    transition: var(--transition);
}

.social-icon:hover {
    color: #060606;
    transform: translateY(-2px);
}

/* ヒーローセクション */
.hero {
    height: auto;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 0;
    padding-top: 70px;
    overflow: hidden;
}




.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

/* 既存のヒーローコンテンツスタイルはそのまま維持 */
.hero h2 {
    font-size: 4rem;
    font-weight: 100;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 3rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
    }
    
    .hero-video {
        object-position: center;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    
    .hero {
        min-height: 40vh;
    }
}

/* セクション共通スタイル */
.section {
    padding: 100px 0;
    position: relative;
    font-family: 'Playfair Display', serif;
    background-color: #fefdfd;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 60px;
    font-family: 'Playfair Display', serif;
    position: relative;
    color: var(--primary-color);
}

.section-title-hh {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 60px;
    font-family: 'Playfair Display', serif;
    position: relative;
    color: white;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    margin: 20px auto;
}

.bg-gray {
    background: var(--light-color);
}

/* ボタンスタイル */
.btn-special, .btn-plan, .btn-line-contact, 
.btn-portfolio-detail, .btn-price-detail, 
.btn-menu-list {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.btn-special:hover, .btn-plan:hover, 
.btn-line-contact:hover, .btn-portfolio-detail:hover, 
.btn-price-detail:hover, .btn-menu-list:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* コンテンツナビゲーションメニュー */
.content-nav {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 900;
}

.content-nav-menu ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
    margin: 0;
    padding: 0;
}

.content-nav-menu li {
    flex: 1;
    text-align: center;
}

.content-nav-menu a {
    display: block;
    padding: 15px 10px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.content-nav-menu a:hover,
.content-nav-menu a:focus {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
    transform: translateY(-3px);
}

.content-nav-menu i {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* 特別オファーセクション */
.special-content {
    display: flex;
    align-items: center;
    margin: 60px 0;
}

.special-content.reverse {
    flex-direction: row-reverse;
}

.special-image {
    flex: 1;
    overflow: hidden;
    text-align: center;
}

.special-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    transition: transform 0.5s ease;
    border: 1px solid #eee;
}

.special-image:hover img {
    transform: scale(1.03);
}

.special-text {
    flex: 1;
    text-align: center;
}

.special-text h3 {
    font-size: 4vw;
    color: var(--primary-color);
    margin-bottom: 20px;
   font-family: 'Playfair Display', serif;
}

.special-list {
    list-style: none;
    margin: 25px 0;
}

.special-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    color: var(--text-light);
}

.special-list i {
    color: var(--secondary-color);
    position: absolute;
    left: 30%;
    top: 3px;
}

/* フッター */
.simple-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px 0;
    font-size: 14px;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--white);
}

.footer-address,
.footer-tel,
.footer-hours {
    margin: 5px 0;
    color: var(--white);
}

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

.footer-links a {
    color: var(--white);
    margin: 0 10px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    color: #999;
    margin-top: 20px;
    font-size: 13px;
}

/* アニメーション */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    0% { transform: translateX(-100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    0% { transform: translateX(100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.section {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.section:nth-child(1) { animation-delay: 0.2s; }
.section:nth-child(2) { animation-delay: 0.4s; }
.section:nth-child(3) { animation-delay: 0.6s; }

/* レスポンシブデザイン */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 3rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav ul {
        flex-direction: column;
    }
    
    .nav li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: block;
    }

    .special-content,
    .special-content.reverse {
        flex-direction: column;
    }

    .special-image {
        margin-bottom: 30px;
    }

    .special-text h3 {
        font-size: 1.8rem;
    }

    .content-nav-menu ul {
        flex-wrap: wrap;
    }
    
    .content-nav-menu li {
        flex: 0 0 50%;
        margin-bottom: 10px;
    }

    .content-nav-menu i {
        font-size: 0.8rem;
    }

    .content-nav-menu a {
        font-size: 0.8rem;
    }

    .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 100;
    font-size: 12px;
    letter-spacing: 1px;
    padding-top: 0; /* 調整 */
    margin: 0; /* 余白をリセット */
}
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .section-title-hh {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
}





/* ヒーロー画像コンテナ */
.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

/* 既存のヒーロービデオ関連スタイルは削除またはコメントアウト */
/*
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
*/









/* 目次セクションのスタイル */
        .toc-section {
            padding: 40px 0;
        }
        
        .toc-container {
            padding: 30px;
        }
        
        
        .toc-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 2px;
            background: #aba096;
            margin: 15px auto 0;
        }
        
        .toc-nav ul {
    display: flex;
    justify-content: center; /* 水平方向の中央揃え */
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-nav li {
    margin: 0 15px; /* リンク間の間隔 */
}
        
        .toc-link {
            display: flex;
            text-align: center;
            padding: 15px 20px;
        }
        
        .toc-link:hover {
            background: #f8f9fa;
            color: rgb(48, 48, 48);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(139, 107, 74, 0.3);
        }
        
        .toc-link i {
            font-size: 1.2rem;
            width: 20px;
        }
        
        /* アクティブな目次リンク */
        .toc-link.active {
            background: #8b6b4a;
            color: white;
            border-color: #8b6b4a;
        }
        
        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .toc-nav ul {
        align-items: center; /* 中央揃え */
    }
            
            .toc-container {
                padding: 20px;
            }

            .toc-nav li {
        margin: 10px 0; /* 上下のマージンを追加 */
    }
            
            .toc-link {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
        }


        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .toc-link {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
        }












/* 画像とテキストのセクション */
.image-text-section {
    padding: 80px  80px;
    background-color: #fefdfd;
}

.image-text-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 700px;
    margin: 0 auto;
}

.image-text-image {
    flex: 1;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-text-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-text-image:hover img {
    transform: scale(1.03);
}

.image-text-text {
    flex: 1;
}


.image-text-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.7rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .image-text-content {
        flex-direction: column;
        gap: 30px;
    }
    
    
    .image-text-text p {
        text-align: center;
        font-size: 0.6rem;
    }
    
    .btn-portfolio-detail {
        display: block;
        margin: 0 auto;
        text-align: center;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .image-text-section {
        padding: 60px 0;
    }
    
    .image-text-text h2 {
        font-size: 1.8rem;
    }
    
    .image-text-text p {
        font-size: 1rem;
    }
}




/* レスポンシブ対応のための追加スタイル */
.reverse-on-mobile {
    flex-direction: row-reverse;
}


/* モバイルサイズでの調整 */
@media (max-width: 768px) {
    .reverse-on-mobile {
        flex-direction: column;
    }
    
    .image-text-content {
        gap: 20px;
        text-align: center;
    }
    
    .image-text-text h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .image-text-text p {
        font-size: 0.8rem;
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .image-text-image {
        margin-bottom: 20px;
    }
}

/* 小さなモバイルデバイス用の調整 */
@media (max-width: 480px) {
    .image-text-section {
        padding: 40px 20px;
    }
    
    .image-text-text h2 {
        font-size: 1.2rem;
    }
    
    .image-text-text p {
        font-size: 0.75rem;
    }
}


/* シンプルな画像セクション */
.single-image-section {
    padding: 60px 0;
    background-color: #fefdfd;
}

.single-image-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.single-image-content img {
    width: 80%;
    max-width: 600px;
    height: auto;
    transition: transform 0.5s ease;
}

.single-image-content img:hover {
    transform: scale(1.02);
}

.image-caption {
    margin-top: 20px;
    padding: 0 20px;
}

.image-caption p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .single-image-section {
        padding: 40px 0;
    }
    
    .single-image-content img {
        max-width: 90%;
    }
    
    
    .image-caption p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .single-image-section {
        padding: 30px 0;
    }
    
    .single-image-content img {
        max-width: 95%;
    }
    
    .image-caption {
        margin-top: 10px;
        padding: 0 10px;
    }
    
   
}

































/* ポートフォリオ41. 3枚表示スライダー（ループ機能付き・常時3枚表示） */
.slider-section{
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
}


.slider-triple {
    position: relative;
    max-width: 100%;
    margin: 3rem auto;
    overflow: hidden;
    padding: 0 50px;
}

.triple-track {
    display: flex;
    transition: transform 0.5s ease;
    margin: 0 -5px;
}

.triple-slide {
    flex: 0 0 calc(33.333% - 10px);
    min-width: 0; /* 追加: スマホで縮小されないように */
    margin: 0 5px;
    transition: transform 0.3s ease;
}

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

.triple-slide:hover {
    transform: translateY(-5px);
}

.slider-triple button {
    position: absolute;
    top: 50%;
    transform: translateY(-70%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.2rem;
    z-index: 10;
}

.slider-triple button:hover {
    background: rgba(0,0,0,0.8);
}

.slider-triple .triple-prev {
    left: 10px;
}

.slider-triple .triple-next {
    right: 10px;
}

.triple-dots {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    gap: 10px;
}

.triple-dots span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.triple-dots span.active {
    background: #3498db;
    transform: scale(1.2);
}
/* ポートフォリオ詳細ボタンスタイル */
.portfolio-detail-btn-container {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.btn-portfolio-detail {
    display: inline-block;
    padding: 12px 30px;
    background: var(--white);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(45, 90, 45, 0.1);
    text-decoration: none;
}

.btn-portfolio-detail:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(45, 90, 45, 0.2);
}

/* スマホでも3枚表示を維持するための調整 */
@media (max-width: 480px) {
    .triple-slide {
        flex: 0 0 calc(33.333% - 10px);
    }
    
    .triple-slide img {
        height: 100px;
    }
    
    .slider-triple {
        padding: 0 30px;
    }
    
    .slider-triple button {
        padding: 8px 12px;
        font-size: 1rem;
    }
}















/* ======================== */
/* 画像セクション全体のスタイル */
/* ======================== */
.image-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 80px;
    background-color: #fefdfd;
    overflow: hidden;
}

/* ======================== */
/* 上部の横並び2枚画像スタイル */
/* ======================== */
.top-row {
    display: flex;
    gap: 5px;
    margin: 5px 0;
    width: 100%;
}

.wide-image {
    flex: 2; /* 広い画像 (2:1の比率) */
    aspect-ratio: 2 / 1; /* 横長画像の比率を固定 */
    overflow: hidden;
    position: relative;
}

.narrow-image {
    flex: 1; /* 狭い画像 */
    aspect-ratio: 1 / 1; /* 正方形の比率を固定 */
    overflow: hidden;
    position: relative;
}

/* ======================== */
/* メイン画像コンテナスタイル */
/* ======================== */
.image-container {
    display: flex;
    gap: 5px;
    margin: 5px 0;
}

/* 左カラム (広い方) */
.left-column {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* 右カラム (狭い方) */
.right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* ======================== */
/* 左カラム内要素スタイル */
/* ======================== */
.horizontal-image {
    aspect-ratio: 2 / 1; /* 横長画像 */
    overflow: hidden;
    position: relative;
}

.vertical-images {
    display: flex;
    gap: 5px;
}

.vertical-image {
    flex: 1;
    aspect-ratio: 1 / 1.5; /* 縦長画像 */
    overflow: hidden;
    position: relative;
}

/* ======================== */
/* 右カラム内要素スタイル */
/* ======================== */
.vertical-image-single {
    aspect-ratio: 1 / 1.5; /* 縦長画像 */
    overflow: hidden;
    position: relative;
}

.horizontal-image-right {
    aspect-ratio: 100/ 98; /* 横長画像 */
    overflow: hidden;
    position: relative;
}

/* ======================== */
/* 横並び3枚画像スタイル */
/* ======================== */
.triple-horizontal {
    display: flex;
    gap: 5px;
    margin: 5px 0;
    width: 100%;
}

.horizontal-item {
    flex: 1;
    aspect-ratio: 1 / 1; /* 正方形 */
    overflow: hidden;
    position: relative;
}

/* ======================== */
/* 共通画像スタイル */
/* ======================== */
.wide-image img,
.narrow-image img,
.horizontal-image img,
.vertical-image img,
.vertical-image-single img,
.horizontal-image-right img,
.horizontal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* ======================== */
/* ホバーエフェクト */
/* ======================== */
.wide-image:hover img,
.narrow-image:hover img,
.horizontal-image:hover img,
.vertical-image:hover img,
.vertical-image-single:hover img,
.horizontal-image-right:hover img,
.horizontal-item:hover img {
    transform: scale(1.03);
}

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

/* ======================== */
/* レスポンシブデザイン */
/* ======================== */
@media (max-width: 768px) {
    .image-section {
        padding: 20px 10px;
    }

    

    /* モバイルでもアスペクト比を維持 */
    .wide-image,
    .narrow-image,
    .horizontal-image,
    .vertical-image,
    .vertical-image-single,
    .horizontal-image-right,
    .horizontal-item {
        width: 100%;
        
    }

}

@media (max-width: 480px) {
    .image-section {
        padding: 10px 5px;
    }
}














/* Aboutセクション */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    overflow: hidden;

   
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.8s ease;
}

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

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}













/* 動画紹介セクション */
.video-section {
    padding: 80px 0;
    background-color: #fefdfd;
}

.video-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.video-player {
    flex: 1;
    overflow: hidden;
  
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-player video {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.video-player:hover video {
    transform: scale(1.02);
}

.video-text {
    flex: 1;
    padding: 0 20px;
}

.video-text h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.video-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.btn-video-inquiry {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    margin-top: 20px;
}

.btn-video-inquiry:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .video-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .video-text {
        padding: 0;
        text-align: center;
    }
    
    .video-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 60px 0;
    }
    
    .video-text h3 {
        font-size: 1.3rem;
    }
}















/* 料金表 */

.price-table {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.price-table th, .price-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.price-table th {
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 500;
}

.price-table tr:nth-child(even) {
    background: rgba(139, 107, 74, 0.05);
}

.price-table tr:hover {
    background: rgba(139, 107, 74, 0.1);
}


/* 料金詳細ボタンスタイル */
.price-detail-btn-container {
    text-align: center;
    margin-top: 30px;
}

.btn-price-detail {
    display: inline-block;
    padding: 12px 30px;
    background: var(--white);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(45, 90, 45, 0.1);
    text-decoration: none;
}

.btn-price-detail:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(45, 90, 45, 0.2);
}

/* 料金表のレスポンシブ対応 */
.price-table {
    max-width: 100%;
    overflow-x: auto;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    font-size: 1rem; /* 基本のフォントサイズ */
}

.price-table th, .price-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.price-table th {
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 500;
}

.price-table tr:nth-child(even) {
    background: rgba(139, 107, 74, 0.05);
}

.price-table tr:hover {
    background: rgba(139, 107, 74, 0.1);
}

/* タブレットサイズでの調整 */
@media (max-width: 768px) {
    .price-table table {
        font-size: 0.9rem;
    }
    
    .price-table th, .price-table td {
        padding: 12px 15px;
    }
}

/* スマホサイズでの調整 */
@media (max-width: 480px) {
    .price-table table {
        font-size: 0.8rem;
    }
    
    .price-table th, .price-table td {
        padding: 10px 12px;
    }
    
    /* 長いプラン名の改行を許可 */
    .price-table td:first-child {
        word-break: keep-all;
        overflow-wrap: break-word;
    }
}

/* 非常に小さいデバイス用の調整 */
@media (max-width: 360px) {
    .price-table table {
        font-size: 0.7rem;
    }
    
    .price-table th, .price-table td {
        padding: 8px 10px;
    }
}












/*specifics*/
/* コンテンツナビゲーションメニュー */
.content-nav {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 900;
}

.content-nav-menu ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
    margin: 0;
    padding: 0;
}

.content-nav-menu li {
    flex: 1;
    text-align: center;
}

.content-nav-menu a {
    display: block;
    padding: 15px 10px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.content-nav-menu a:hover,
.content-nav-menu a:focus {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
    transform: translateY(-3px);
}

.content-nav-menu i {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .content-nav-menu ul {
        flex-wrap: wrap;
    }
    
    .content-nav-menu li {
        flex: 0 0 50%;
        margin-bottom: 10px;
    }
    .content-nav-menu i {
    margin-right: 8px;
    font-size: 0.8rem;
}
.content-nav-menu a {
    font-size: 0.8rem;
   
}
}











/* 特別オファーセクション */
.special-content {
    display: flex;
    align-items: center;
   margin: 60px 0;
}

.special-content.reverse {
    flex-direction: row-reverse; /* 画像とテキストの順序を反転 */
}


.special-image {
    flex: 1;
    overflow: hidden;
    text-align: center
}

.special-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    transition: transform 0.5s ease;
    
    
}

.special-image:hover img {
    transform: scale(1.03);
}

.special-text {
    flex: 1;
    text-align: center;
}

.special-text h3 {
    font-size: 4vw;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.special-list {
    list-style: none;
    margin: 25px 0;
}

.special-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    color: var(--text-light);
}

.special-list i {
    color: var(--secondary-color);
    position: absolute;
    left: 30%;
    top: 3px;
}

.btn-special {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(139, 107, 74, 0.3);
}

.btn-special:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 107, 74, 0.4);
}

/* 特別オファーセクション（モバイル対応） */
@media (max-width: 768px) {
    .special-content {
        flex-direction: column;
    }

    .special-content,
    .special-content.reverse {
        flex-direction: column; /* スマホでは常に上画像・下テキスト */
    }
    
    .special-image {
        width: 100%;
        margin-bottom: 30px; /* 画像とテキストの間隔 */
    }
    
    .special-text {
        width: 100%;
        order: 1; /* テキストを強制的に下に配置 */
        font-size: 0.8rem;
    }
    .special-text h3 {
       font-size: 1.8rem;
    }
}











/* アニメーション定義 */
@keyframes slideInLeft {
    0% {
        transform: translateX(-100px) rotate(-5deg);
        opacity: 0;
    }
    100% {
        transform: translateX(0) rotate(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100px) rotate(5deg);
        opacity: 0;
    }
    100% {
        transform: translateX(0) rotate(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

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

/* アニメーション適用クラス */
.special-content.animated {
    animation: none; /* JavaScriptで個別に制御 */
}

.special-content.animated .special-image {
    animation: fadeInUp 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.special-content:not(.reverse).animated .special-text {
    animation: slideInRight 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 1.5s;
}

.special-content.reverse.animated .special-text {
    animation: slideInLeft 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 1.5s;
}

.special-content.animated .special-list li {
    animation: fadeInUp 2s ease-out forwards;
}

.special-content.animated .special-list li:nth-child(1) { animation-delay: 1s; }
.special-content.animated .special-list li:nth-child(2) { animation-delay: 1.5s; }
.special-content.animated .special-list li:nth-child(3) { animation-delay: 2s; }
.special-content.animated .special-list li:nth-child(4) { animation-delay: 2.5s; }

.btn-special {
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.special-content.animated .btn-special {
    animation: scaleIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 1.3s;
}












/* 持ち物リストセクションの背景画像設定 */
.belongings-section {
    background-image: url('image/tate/250518047.jpeg'); /* 背景画像のパスを指定 */
    background-size: cover; /* 背景画像をカバーサイズに */
    background-position: center center; /* 背景画像を中央に配置 */
    background-attachment: fixed; /* 背景を固定してスクロール時に動かないように */
    background-repeat: no-repeat; /* 背景画像の繰り返しを無効に */
    padding: 80px 0; /* セクションの余白 */
    position: relative; /* 子要素の絶対配置の基準に */
    color: #fff; /* テキストカラーを白に */
}

/* オーバーレイ（背景画像の上に半透明のレイヤーを追加） */
.belongings-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* 半透明の黒いオーバーレイ */
    z-index: 1;
}

/* コンテンツをオーバーレイの上に表示 */
.belongings-section .container {
    position: relative;
    z-index: 2;
}

/* 持ち物リストのスタイル */
.belongings-list {
    background-color: rgba(255, 255, 255, 0.1); /* 半透明の背景 */
    backdrop-filter: blur(5px); /* 背景をぼかす効果 */
    border-radius: 10px;
    padding: 30px;
    margin: 20px 0;
}

.belongings-list ul {
    list-style-type: none;
    padding: 0;
}

.belongings-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
}

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

.belongings-list li::before {
    content: '✓';
    margin-right: 10px;
    color: #fff;
    font-weight: bold;
}





@media (max-width: 768px) {

    .belongings-list li {
   font-size: 0.7rem;
}

}




/* Q&Aセクションのスタイル */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            border-bottom: 1px solid #eee;
            margin-bottom: 15px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .faq-question span {
            color: #8b6b4a;
            margin-right: 10px;
            font-weight: 700;
        }
        
        .faq-question i {
            margin-left: auto;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 20px;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 20px 20px;
        }
        
        .faq-answer p {
            color: #666;
            line-height: 1.6;
        }
        
        .faq-pagination {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }
        
        .page-btn {
            width: 40px;
            height: 40px;
            border: 1px solid #ddd;
            background: white;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .page-btn.active {
            background: #8b6b4a;
            color: white;
            border-color: #8b6b4a;
        }
        
        /* 2ページ目以降の質問は非表示 */
        .faq-item[data-page="2"] {
            display: none;
        }





/* お客様のお声セクション */
#testimonials {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    padding: 80px 0;
}

.testimonial-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.section-subtitle{
    text-align: center;
    padding: 0 40px;
}

.tab-btn {
    padding: 12px 24px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active, .tab-btn:hover {
    background: #333;
    color: white;
    border-color: #333;
}

.testimonial-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.testimonial-item {
    display: flex;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.testimonial-item:last-child {
    border-bottom: none;
}

.client-photo {
    flex: 0 0 80px;
}

.client-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f1f1f1;
}

.testimonial-details {
    flex: 1;
}

.client-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.client-name {
    font-weight: bold;
    font-size: 18px;
}

.client-category {
    background: #f0f0f0;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 14px;
}

.review-date {
    color: #777;
    font-size: 14px;
}

.rating {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 10px;
}

.testimonial-text {
    line-height: 1.7;
    color: #555;
}

.add-review {
    text-align: center;
    margin-top: 40px;
}

.btn-primary {
    background: #4a6bff;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* モーダルスタイル */
.modal {
    display: none;
    position: fixed;
    /* モーダルスタイル続き */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .testimonial-item {
        flex-direction: column;
    }
    
    .client-photo {
        margin-bottom: 15px;
    }
}











/* シンプルフッター */
.simple-footer {
  background-color: #ffffff;
  color: #fff;
  padding: 30px 0;
  font-size: 14px;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000000;
}

.footer-address,
.footer-tel {
  margin: 5px 0;
  color: #000000;
}

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

.footer-links a {
  color: #000000;
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  color: #999;
  margin-top: 20px;
  font-size: 13px;
}








/* アニメーション */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.section:nth-child(1) { animation-delay: 0.2s; }
.section:nth-child(2) { animation-delay: 0.4s; }
.section:nth-child(3) { animation-delay: 0.6s; }
.section:nth-child(4) { animation-delay: 0.8s; }
.section:nth-child(5) { animation-delay: 1s; }

/* ライトボックス */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border: 15px solid var(--white);
    border-radius: 5px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

.close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.close:hover {
    opacity: 1;
}

/* レスポンシブ */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav ul {
        flex-direction: column;
    }
    
    .nav li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-steps {
        flex-direction: column;
    }
    
    .step {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
}










/* メニューセクション */
.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-category {
    margin-bottom: 60px;
}

.menu-category-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
    display: flex;
    align-items: center;
}

.menu-icon {
    margin-right: 15px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 常に2列 */
    gap: 30px;
}

.menu-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.menu-item-image {
    height: 200px;
    overflow: hidden;
}

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

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

.menu-item-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}


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

.menu-item-title {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin: 0; /* デフォルトのマージンをリセット */
    font-weight: 600;
}

.price {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0; /* デフォルトのマージンをリセット */
}

.menu-item-desc {
    color: var(--text-light);
    margin-bottom: 15px;
    flex-grow: 1;
}

.menu-item-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.menu-item-label {
    background: var(--light-color);
    color: var(--secondary-color);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .menu-items {
        gap: 20px;
    }
    
    .menu-item-image {
        height: 150px;
    }
    
    .menu-category-title {
        font-size: 0.8rem;
    }
    .menu-item-header {
        flex-direction: column;
        gap: 5px;
    }
    .price {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .menu-item {
        flex-direction: column;
    }
    
    .menu-item-title {
        font-size: 0.8rem;
    }
    
    .price {
        font-size: 1rem;
    }
}





/*cafe*/



















/* メニュー一覧ボタンスタイル */
.btn-menu-list {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(45, 90, 45, 0.3);
    text-decoration: none;
}

.btn-menu-list:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 90, 45, 0.4);
}




/* 42. レザーメニュー表（タッチスクロール対応版） */
.slider-news-touch {
    position: relative;
    max-width: 1000px;
    margin: 2rem auto;
    touch-action: pan-y; /* 垂直スクロールのみ許可 */
}

.news-slides-touch {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 20px;
    padding: 20px 0;
    cursor: grab;
}

.news-slides-touch:active {
    cursor: grabbing;
}

.news-slides-touch::-webkit-scrollbar {
    display: none;
}

.news-slide-touch {
    scroll-snap-align: start;
    flex: 0 0 calc(50% - 20px);
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    user-select: none;
    max-width: 300px; /* 最大幅を300pxに設定 */
    max-height: 450px;
}

.news-slide-touch:hover {
    transform: translateY(-5px);
}

.news-image {
    position: relative;
    overflow: hidden;
}

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

.news-slide-touch:hover .news-image img {
    transform: scale(1.05);
}

.news-date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
}

.news-content {
    max-width: 300px; /* 最大幅を300pxに設定 */
    margin: 0 auto; /* 中央揃え */
    padding: 1rem;
}

.news-content h3 {
    margin: 0 0 0.5rem;
    font-size: 0.8rem;
}

.news-content h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.news-content h3 a:hover {
    color: #3498db;
}

.news-content p {
    color: #666;
    font-size: 0.6rem;
    margin-bottom: 0.2rem;
}

.news-soldout {
    color: red;
    font-size: 0.6rem;
    margin-bottom: 1rem;
}

.read-more {
    color: #3498db;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: bold;
}

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

.news-nav-touch {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.news-prev-touch,
.news-next-touch {
    pointer-events: auto;
   background-color:transparent;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-slides-touch {
    will-change: transform; /* ハードウェアアクセラレーションを有効化 */
    user-select: none; /* テキスト選択を防止 */
}

.news-slide-touch {
    pointer-events: none; /* 子要素のイベントを無効化 */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .news-slide-touch {
        flex: 0 0 calc(80% - 20px);
    }
    .news-content {
        max-width: 100%; /* 小さい画面では幅を100%に */
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .news-slide-touch {
        flex: 0 0 calc(90% - 20px);
    }
    
    
    .news-content {
        padding: 1rem;
    }
}






















/* 撮影プランタブスタイル */
.plan-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.plan-tab-btn {
    padding: 12px 24px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--secondary-color);
}

.plan-tab-btn.active, .plan-tab-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}






.plan-tab-content {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.plan-tab-panel {
    display: none;
}

.plan-tab-panel.active {
    display: block;
}

.plan-content {
    display: flex;
    gap: 40px;
    align-items: center;
    padding-bottom: 200px;
}

.plan-image {
    flex: 1;
    overflow: hidden;
}

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



.plan-details {
    flex: 1;
}

.plan-details h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.plan-price {
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.plan-title {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.plan-title span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: normal;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: normal;
}

.plan-features {
    list-style: none;
    margin: 25px 0;
}

.plan-features li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    color: var(--text-light);
}

.plan-features i {
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 3px;
}

.plan-description {
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.btn-plan {
        display: block;
        margin: 0 auto;
        width: 80%;
        max-width: 250px;
        text-align: center;
        border-radius: 30px;
    }

.btn-plan:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(57, 57, 57, 0.4);
}



/* スマホサイズでの調整 */
@media (max-width: 768px) {
    .plan-content {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
        padding-bottom: 100px;
    }
    
    .plan-image, 
    .plan-details {
        width: 100%;
        flex: none;
    }
    
    .plan-details h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .plan-price {
        text-align: center;
        font-size: 1.5rem;
    }


    .plan-title {
        text-align: center;
        font-size: 1rem;
    }

    
    
    .plan-features {
        margin: 15px 0;
    }
    
    .plan-features li {
        padding-left: 25px;
        font-size: 0.9rem;
    }
    
    .plan-description {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .btn-plan {
        display: block;
        margin: 0 auto;
        width: 80%;
        max-width: 250px;
        text-align: center;
    }
}

/* 非常に小さいデバイス用の調整 */
@media (max-width: 480px) {
    .plan-content {
        padding: 10px;
    }
    
    .plan-details h3 {
        font-size: 1.3rem; 
    }
    
    .plan-price {
        font-size: 1.3rem;
    }
    
    .btn-plan {
        width: 100%;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}


/* 外側タブメニュースタイル */
.outer-plan-tabs {
    display: flex;
    justify-content: flex-start; /* 左寄せに変更 */
    flex-wrap: nowrap; /* 折り返さない */
    gap: 5px;
    margin: 30px 0;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    overflow-x: auto; /* 横スクロール可能に */
    white-space: nowrap; /* テキストを折り返さない */
    -webkit-overflow-scrolling: touch; /* iOSでスムーズスクロール */
    scrollbar-width: none; /* Firefoxでスクロールバー非表示 */
    -ms-overflow-style: none; /* IE/Edgeでスクロールバー非表示 */
}

.outer-plan-tabs::-webkit-scrollbar {
    display: none; /* Chrome/Safariでスクロールバー非表示 */
}

.outer-plan-tab-btn {
    padding: 8px 16px;
    background: #fefdfd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 0.9rem;
    position: relative;
    flex: 0 0 auto; /* 自動サイズ調整 */
    display: inline-block; /* 横並びを維持 */
    white-space: nowrap; /* テキストを折り返さない */
}

.outer-plan-tab-btn.active, 
.outer-plan-tab-btn:hover {
    color: var(--primary-color);
}

.outer-plan-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgb(168, 168, 168);
}

/* 非常に小さいデバイス用の調整 */
@media (max-width: 480px) {
    .outer-plan-tabs {
        padding-bottom: 10px;
    }
    
    .outer-plan-tab-btn {
        padding: 6px 12px;
        font-size: 0.9rem;
    }


.outer-plan-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
}


}


/* 非常に小さいデバイス用の調整 */
@media (max-width: 480px) {
    .outer-plan-tabs {
        justify-content: flex-start; /* 左寄せ */
        padding-bottom: 10px;
    }
    
    .outer-plan-tab-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}





/* 内側タブメニュースタイル */
.inner-plan-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 30px;
}

.inner-plan-tab-btn {
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 0.9rem;
    border-radius: 30px;
}

.inner-plan-tab-btn.active, 
.inner-plan-tab-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

/* タブコンテンツスタイル */
.outer-plan-tab-panel {
    display: none;
}

.outer-plan-tab-panel.active {
    display: block;
}

.inner-plan-tab-panel {
    display: none;
}

.inner-plan-tab-panel.active {
    display: block;
}


















/* 流れのセクション */

/* アコーディオンスタイル */
.accordion {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-btn {
    width: 100%;
    padding: 20px 25px;
    background: var(--white);
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--primary-color);
}

.accordion-btn:hover {
    background: rgba(45, 90, 45, 0.05);
}

.accordion-btn.active {
    background: rgba(45, 90, 45, 0.1);
}

.accordion-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 15px;
    font-weight: 700;
}

.accordion-title {
    flex-grow: 1;
    font-size: 1.1rem;
}

.accordion-btn i {
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.accordion-btn.active i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--white);
}

.accordion-content.active {
    padding: 0 25px 25px;
    max-height: 500px;
}

.accordion-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.accordion-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.accordion-content li {
    margin-bottom: 8px;
    color: var(--text-light);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .accordion-btn {
        padding: 15px 20px;
    }
    
    .accordion-number {
        width: 25px;
        height: 25px;
        line-height: 25px;
        margin-right: 10px;
    }
    
    .accordion-title {
        font-size: 1rem;
    }
}






/* 13. インフィニティスライダー */
.slider-infinity {
    max-width: 100%;
    overflow: hidden;
    margin: 1rem 0;
    position: relative;
}

.infinity-track {
    display: flex;
    width: max-content;
    animation: infinityScroll 30s linear infinite;
}

.infinity-slide {
    width: 300px;
    height: 200px;
    margin-right: 15px;
    flex-shrink: 0;
}

.infinity-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

@keyframes infinityScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.slider-infinity:hover .infinity-track {
    animation-play-state: paused;
}


















/* 実績セクション */
.portfolio-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.portfolio-tab-btn {
    padding: 12px 24px;
    background: var(--white);
    border: 1px solid var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--secondary-color);
    flex: 0 0 auto; /* 自動サイズ調整 */
    margin: 0 5px; /* ボタン間の間隔 */
}





.portfolio-tab-btn.active, .portfolio-tab-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.portfolio-tab-content {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.portfolio-tab-panel {
    display: none;
}

.portfolio-tab-panel.active {
    display: block;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item {
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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






.portfolio-tab-btn {
    flex: 0 0 auto; /* 自動サイズ調整 */
    padding: 12px 24px;
    margin: 0 5px; /* ボタン間の間隔 */
}

/* 実績グリッド - 常に3列 */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-bottom: 20px;
}

/* 画像のアスペクト比を維持 */
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3; /* 任意のアスペクト比に調整可能 */
}



/* 実績タブのレスポンシブ対応 */
@media (max-width: 768px) {
    .portfolio-tabs {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .portfolio-tab-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
        margin: 5px 0;
        font-size: 0.5rem;
    }
    

}

















/* 公式LINEお問い合わせセクション */
.line-contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.line-contact-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.line-contact-image {
    flex: 1;
    text-align: center;
}

.line-contact-image img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.line-contact-text {
    flex: 1;
}

.line-contact-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;}

.line-contact-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.line-contact-list {
    list-style: none;
    margin: 25px 0;
}

.line-contact-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    color: var(--text-light);
}

.line-contact-list i {
    color: #00B900; /* LINEの緑色 */
    position: absolute;
    left: 0;
    top: 3px;
}

.btn-line-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: #00B900; /* LINEの緑色 */
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 185, 0, 0.3);
    text-decoration: none;
}

.btn-line-contact i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.btn-line-contact:hover {
    background: #009900;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 185, 0, 0.4);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .line-contact-content {
        flex-direction: column;
        padding: 30px;
    }
    
    .line-contact-image {
        margin-bottom: 30px;
    }
    
    .line-contact-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .line-contact-content {
        padding: 20px;
    }
    
    .line-contact-text h3 {
        font-size: 1.3rem;
    }
    
    .btn-line-contact {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}














/* インフィニティスライダーの方向制御 */
.slider-infinity.left-to-right .infinity-track {
    animation: infinityScrollLeftToRight 30s linear infinite;
}

.slider-infinity.right-to-left .infinity-track {
    animation: infinityScrollRightToLeft 30s linear infinite;
}

@keyframes infinityScrollLeftToRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@keyframes infinityScrollRightToLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
















/* Instagramアカウント紹介セクション */
.instagram-accounts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.instagram-card {
    background: var(--white);
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.instagram-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.instagram-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.instagram-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.btn-instagram i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.3);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .instagram-accounts {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 580px) {
    .instagram-accounts {
        grid-template-columns: 1fr;
    }
}





/* マップコンテナのスタイル */
.map-container {
    margin-top: 30px;
    position: relative;
    padding-bottom: 56.25%; /* 16:9アスペクト比 */
    height: 0;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


















/*menu.htmlのcss*/

/* ポリシーセクションスタイル */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.policy-item {
    margin-bottom: 30px;
}

.policy-item h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-item h3 i {
    font-size: 1.5rem;
}

.policy-list {
    list-style: none;
    padding-left: 20px;
}

.policy-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: var(--text-light);
}

.policy-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.policy-list strong {
    color: var(--primary-color);
    font-weight: 600;
}

.policy-note {
    background: rgba(139, 107, 74, 0.05);
    padding: 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* エリアセクションスタイル */
.area-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.area-map {
    flex: 1;
    overflow: hidden;
}

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

.area-details {
    flex: 1;
}

.area-details h3 {
    color: var(--secondary-color);
    margin: 25px 0 15px;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.area-details h3 i {
    font-size: 1.3rem;
}

.area-list {
    list-style: none;
}


.area-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: var(--text-light);
}

.area-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.area-list strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* style.cssに追加 */
.area-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
    filter: grayscale(1);
}

@media (max-width: 768px) {
    .area-map iframe {
        height: 300px;
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .area-content {
        flex-direction: column;
    }
    
    .policy-item h3, 
    .area-details h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: 20px;
    }
    
    .policy-list li, 
    .area-list li {
        font-size: 0.9rem;
    }
}

















/* お問い合わせページ専用スタイル */

/* ヒーローセクション */
.hero-contact {
    height: 60vh;
    background: url('images/メイン写真/スクリーンショット\ 2025-09-10\ 15.47.11.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 0;
    padding-top: 70px;
}

.hero-contact h2 {
    font-size: 3.5rem;
    font-weight: 100;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-contact p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* 会社紹介セクション */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-text {
    flex: 1;
    padding: 0 20px;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-list {
    list-style: none;
    margin: 30px 0;
}

.about-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
    color: var(--text-light);
}

.about-list i {
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 1.2rem;
}

/* お問い合わせフォーム */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 107, 74, 0.1);
}

.required {
    color: #e74c3c;
    font-size: 0.9rem;
}

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

.btn-contact {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(45, 90, 45, 0.3);
}

.btn-contact:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 90, 45, 0.4);
}

/* 連絡先情報 */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.info-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.info-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.info-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.info-item p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.btn-line {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #06C755;
    color: white;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-line:hover {
    background: #05a346;
    transform: translateY(-3px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero-contact h2 {
        font-size: 2.5rem;
    }
    
    .hero-contact p {
        font-size: 1.2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        padding: 0;
    }
    
    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-contact h2 {
        font-size: 2rem;
    }
    
    .hero-contact p {
        font-size: 1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}














/* 送信完了ページスタイル */
.thank-you-message {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 50px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.thank-you-message i {
    font-size: 5rem;
    color: #2ecc71;
    margin-bottom: 30px;
}

.thank-you-message h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.thank-you-message p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(84, 84, 84, 0.3);
    text-decoration: none;
}

.btn-home:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(69, 69, 69, 0.4);
}

/* エラーメッセージスタイル */
.error-message {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background: #fff3f3;
    border: 1px solid #ffcccc;
    border-radius: 5px;
    color: #d9534f;
}

.error-message h3 {
    margin-bottom: 20px;
}

.error-message ul {
    margin: 20px 0;
    padding-left: 20px;
}

.error-message a {
    display: inline-block;
    margin-top: 20px;
    color: #337ab7;
    text-decoration: none;
}

.error-message a:hover {
    text-decoration: underline;
}












/* Instagramアカウント紹介セクション */
.instagram-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.instagram-accounts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.instagram-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.instagram-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.instagram-icon {
    width: 80px;
    height: 80px;
    background: rgb(205, 205, 205);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.instagram-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.instagram-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: rgb(126, 126, 126);
    color: white;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;

}

.btn-instagram i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(151, 151, 151, 0.3);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .instagram-accounts {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .instagram-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .instagram-section {
        padding: 60px 0;
    }
    
    .instagram-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .instagram-card h3 {
        font-size: 1.3rem;
    }
}















/* 動画セクション */
.video-section {
    padding: 80px 0;
    background-color: #fefdfd;
}

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

.video-item {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.video-player {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-caption {
    padding: 20px;
    text-align: center;
}

.video-caption h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.video-caption p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-player {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 60px 0;
    }
    
    .video-caption h3 {
        font-size: 1.1rem;
    }
    
    .video-caption p {
        font-size: 0.8rem;
    }
}