/* リセット & 基本設定 */
* {
    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: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-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: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-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: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
    font-weight: 100;
    font-size: 18px;
    letter-spacing: 1px;
    padding-top: 0; /* 調整 */
    margin: 0; /* 余白をリセット */
    padding-left: 20px;
}

.logo-leather {
   font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-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: 15px;
}

/* ロゴ画像スタイル */
.logo-image {
    height: 60px; /* ロゴ文字とバランスが取れる高さに */
    width: auto;
    transition: var(--transition);
}

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

/* ロゴ文字スタイル */
.logo {
    font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
    font-weight: 100;
    font-size: 18px;
    letter-spacing: 1px;
    padding-top: 0;
    margin: 0;
    white-space: nowrap; /* 文字が折り返されないように */
}

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

/* スクロール時のロゴサイズ調整 */
.header.scrolled .logo-image {
    height: 60px;
}

.header.scrolled .logo {
    font-size: 16px;
}



@media (max-width: 768px) {
    .logo-container {
        gap: 10px;
    }
    
    .logo {
        font-size: 14px;
    }
    
  
    
   
}

@media (max-width: 480px) {
    .logo {
        font-size: 12px;
    }
    
    
    .logo-container {
        gap: 8px;
    }
}



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

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

.nav a {
    font-weight: 100; /* Thinウェイト */
    color: var(--black);
    font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-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: 0;
    padding-bottom: 56.25%; /* 16:9 アスペクト比 (9/16 = 0.5625) */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 0;
    padding-top: 0; /* 修正 */
    overflow: hidden;
}

/* ヒーロー動画コンテナを画像用に調整 */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* ヒーロー画像スタイル */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* ヒーローコンテンツの位置調整 */
.hero-content {
    position: absolute;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 動画関連のスタイルを非表示に */
.hero-video,
.video-fallback {
    display: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero {
        padding-bottom: 56.25%; /* モバイルでも16:9を維持 */
    }
}

@media (max-width: 480px) {
    .hero {
        padding-bottom: 56.25%; /* 小さな画面でも16:9を維持 */
    }
}




.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: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-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;
    }
    
   
}

@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: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
    background-color: #d2efff;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 60px;
    font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
    position: relative;
    color: var(--primary-color);
    padding-top: 50px;
}

.section-title-hh {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 60px;
   font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-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: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-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: 1200px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: 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;
    }

    .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: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
    font-weight: 100;
    font-size: 18px;
    letter-spacing: 1px;
    padding-top: 0; /* 調整 */
    margin: 0; /* 余白をリセット */
}
.logo-image {
        height: 30px; /* モバイルで少し小さく */
    }
}

@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;
    }
}














/* 目次セクションのスタイル */
        .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;
    }
        }






.fixed-scroll-content {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 600px;
    border: 1.5px solid #87CEEB;
    border-radius: 10px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.9);
}







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





.image-text-section1 {
    background-color: #eefaff;
    padding: 80px 0;
}





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

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

.image-text-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}



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

 .image-text-text h2 {
        font-size: 2rem;
    }


.image-text-text p {
    margin-bottom: 20px;
    color: black;
    line-height: 1.8;
    font-size: 1rem;
}

/* レスポンシブ対応 */
@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;
    }
}


/* ヒーロー画像下の追加画像セクション */
.hero-bottom-image {
    padding: 0;
    margin: 0;
    max-height: 600px;
}

.hero-bottom-image .container {
    padding: 0;
    max-width: 100%;
}

.responsive-hero-image {
    width: 100%;
    height: auto;
    display: block;
}



/* 横長背景画像セクション */
.full-width-banner {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
}

.banner-image {
    width: 100%;
    height: 100%;
    background-image: url('images/wave-haikei\ \(2\).png'); /* 横長の背景画像パス */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.corner-image {
    position: absolute;
    bottom: 60px; /* 下端からの距離 */
    right: 20px; /* 右端からの距離 */
    width: 300px; /* 画像サイズ */
    height: auto; /* アスペクト比を保持 */
    z-index: 10; /* 必要に応じて */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .full-width-banner {
        height: 300px;
    }

    .corner-image {
        width: 250px;
        bottom: 40px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .full-width-banner {
        height: 200px;
    }
}





/* 横長背景画像セクション */
.full-width-banner2 {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
}

.banner-image2 {
    width: 100%;
    height: 100%;
    background-image: url('images/wave-haikei (3).png'); /* 横長の背景画像パス */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.corner-image2 {
    position: absolute;
    bottom: 1px; /* 下端からの距離 */
    left: 20px; /* 右端からの距離 */
    width: 300px; /* 画像サイズ */
    height: auto; /* アスペクト比を保持 */
    z-index: 10; /* 必要に応じて */
}


/* レスポンシブ対応 */
@media (max-width: 768px) {
    .full-width-banner2 {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .full-width-banner2 {
        height: 200px;
    }
}

/* 横長背景画像セクション */
.full-width-banner3 {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
}

.banner-image3 {
    width: 100%;
    height: 100%;
    background-image: url('images/wave-haikei\ \(3\)のコピー.png'); /* 横長の背景画像パス */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .full-width-banner3 {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .full-width-banner3 {
        height: 200px;
    }
}


/* レスポンシブ対応のための追加スタイル */
.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: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-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 200px;
    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: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-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: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-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);
}


/* 動画フォールバックスタイル */
.video-fallback {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* 動画コンテナのスタイル強化 */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #000; /* 読み込み中の背景色 */
}

/* 動画読み込み中のスタイル */
.hero-video.loading {
    opacity: 0;
}

.hero-video.loaded {
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* レスポンシブ対応 */
@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;
    }
}






/* 料金表の横スクロール対応 */
.price-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* iOSでスムーズスクロール */
}

.price-table {
    min-width: 600px; /* 最小幅を設定して横スクロールを発生させる */
}

/* スマホサイズでの調整 */
@media (max-width: 768px) {
    .price-table-container {
        margin: 0 -20px; /* コンテナの余白を拡張 */
        padding: 0 20px; /* 内側の余白を追加 */
    }
    
    .price-table {
        min-width: 700px; /* スマホでは少し広めに */
        font-size: 0.8rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 10px 12px;
        white-space: nowrap; /* テキストを折り返さない */
    }
    
    /* 長いセルのテキストを折り返す設定 */
    .price-table td:nth-child(3) {
        white-space: normal; /* 詳細列だけ折り返し可能に */
        min-width: 150px;
    }
}

/* 非常に小さいデバイス用の調整 */
@media (max-width: 480px) {
    .price-table {
        min-width: 650px;
        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: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-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;
}

}





        
        .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: #0a22d4;
            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;
    }

    .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            font-size: 1rem;
        }




        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 20px;
            font-size: 0.8rem;
        }


    
    .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: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-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: 40px;
}

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

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



.plan-details {
    flex: 1;
}

.plan-details h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
   font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
}


.plan-details h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
   font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
}

.plan-price {
    font-size: 1rem;
    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: 0.8rem;
    color: var(--text-light);
    font-weight: normal;
}

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

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

.plan-features li {
    margin-bottom: 4px;
    position: relative;
    padding-left: 30px;
    color: var(--text-light);
    font-size: 0.65rem;
}

.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: 85px;
    font-size: 0.65rem;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}


.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);
}





.plan-description p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.8rem;
    margin: 0;
}




.plan-details p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.8rem;
}

.plan-details .btn-detail {
    margin-top: 10px;
    padding: 8px 15px;
    font-size: 0.7rem;
}



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

    .plan-details h4 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .plan-price {
        text-align: center;
        font-size: 1rem;
    }


    .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;
    }

    
    .plan-description {
        margin-top: 15px;
        padding-top: 15px;
    }
    
    .plan-description p {
        font-size: 0.75rem;
        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: 1rem;
}

.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: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-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: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-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;
}



















/* エリアセクションスタイル */
.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: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-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: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-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: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-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: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
    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);
}



.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: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-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: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-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: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-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;
    }
}



























/* 固定左側・スクロール右側の料金表セクション */
.fixed-scroll-section {
    padding: 20px 0;
    background-color: #eefaff;
}

.fixed-scroll-content {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 600px;
}










.fixed-content {
    position: relative;
    padding: 30px 0;
}

.fixed-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 100px; /* 背景を100px右に移動 */
    width: calc(100% - 100px); /* 幅を調整 */
    height: 100%;
    background-color: #f6f4f2;
    z-index: -1; /* 文字の背後に表示 */
}

.fixed-content::before {
    top: 0;
}












/* 固定左側 */
.fixed-side {
    flex: 0 0 350px;
    position: sticky;
    top: 100px;
    height: fit-content;
   padding-bottom: 60px;
    padding-top: 200px;
   
}

.fixed-content h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
   font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
}

.fixed-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.plan-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(139, 107, 74, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(139, 107, 74, 0.1);
    transform: translateX(5px);
}

.highlight-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    width: 30px;
}

.highlight-item span {
    font-weight: 500;
    color: var(--primary-color);
}

/* スクロール右側 */
.scroll-side {
    flex: 1;
    overflow-y: auto;
    max-height: 600px;
}

.price-table-container {
    padding: 40px;
   
}








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

.price-table th {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
}

.price-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    color: var(--text-color);
    font-size: 0.7rem;
}

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

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

.price-notes {
    background: rgba(139, 107, 74, 0.05);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.price-notes h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    margin-top: 15px;
   font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
}

.price-notes p {
    color: var(--secondary-color);
   font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
    margin-top: 8px;
    font-size: 0.7rem;
}

.price-notes ul {
    list-style: none;
    padding-left: 0;
}

.price-notes li {
    margin-bottom: 8px;
    color: var(--text-light);
    position: relative;
    padding-left: 15px;
}

.price-notes li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-contact, .btn-detail {
    padding: 10px 25px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
   
}

.btn-contact {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(139, 107, 74, 0.3);
}

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

/* btn-detail スタイルの修正 */
.btn-detail {
   
     background: #ffffff;
    color: #000000; /* 薄い茶色 */
    border: 1px solid #003278; /* 薄い茶色 */
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.btn-detail:hover {
     background: #0a4374; /* 薄い茶色 */
    color: white;
  
    transform: translateY(-3px);
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .fixed-scroll-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .fixed-side {
        flex: none;
        position: static;
        width: 100%;
    }
    
    .scroll-side {
        max-height: none;
        overflow-y: visible;
    }
}

@media (max-width: 768px) {
    .fixed-scroll-section {
        padding: 60px 0;
    }
    
    .price-table-container {
        padding: 20px;
    }
    
    .price-table {
        font-size: 0.9rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 10px 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-contact,
    .btn-detail {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .fixed-side {
        padding: 30px 20px;
    }
    
    .price-table {
        font-size: 0.8rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 8px 12px;
    }
    
    .highlight-item {
        padding: 12px;
    }
    
    .highlight-item i {
        font-size: 1.3rem;
    }
}













/* 固定スクロールセクション内の画像とテキスト */
.fixed-scroll-version {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    padding: 30px;
}

.fixed-scroll-version .image-text-image {
    flex: 1;
    overflow: hidden;
}

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

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

.fixed-scroll-version .image-text-text {
    flex: 1;
}

.fixed-scroll-version .image-text-text h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
   font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
}

.fixed-scroll-version .image-text-text p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9rem;
}

.image-text-price {
     margin-bottom: 15px;
    color: var(--secondary-color);
    line-height: 1.7;
    font-size: 1.2rem;
}


/* レスポンシブ対応 */
@media (max-width: 768px) {
    .fixed-scroll-version {
        flex-direction: column;
        gap: 25px;
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .fixed-scroll-version .image-text-text h3 {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .fixed-scroll-version .image-text-text p {
        text-align: center;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .fixed-scroll-version {
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .fixed-scroll-version .image-text-text h3 {
        font-size: 1.2rem;
    }
}












/* お問い合わせ後の流れセクション */
.contact-flow-section {
    padding: 80px 0;
    background-color: #fefdfd;
}

.flow-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.flow-container::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
    z-index: 1;
}

.flow-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.flow-number {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 100;
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
   font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.flow-content {
    flex: 1;
    background: var(--white);
    padding: 25px;
    border-left: 2px solid var(--secondary-color);
}

.flow-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
   font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
    font-weight: 100;
}

.flow-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9rem;
}

.flow-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.flow-cta p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 25px;
   font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
}

.btn-contact-flow {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-contact-flow:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .contact-flow-section {
        padding: 60px 0;
    }
    
    .flow-container::before {
        left: 30px;
    }
    
    .flow-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }
    
    .flow-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .flow-content {
        margin-left: 0;
        width: 100%;
    }
    
    .flow-content h3 {
        font-size: 1.2rem;
    }
    
    .flow-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .flow-cta p {
        font-size: 1rem;
    }
    
    .btn-contact-flow {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .flow-content {
        padding: 20px;
    }
    
    .flow-content h3 {
        font-size: 1.1rem;
    }
    
    .flow-content p {
        font-size: 0.8rem;
    }
    
    .flow-cta {
        padding: 20px 15px;
    }
}
















/* 画像スライダーセクション */
.image-slider-section {
    padding: 80px 0;
    background-color: #fefdfd;
    overflow: hidden;
}

/* インフィニティスライダー */
.slider-infinity {
    max-width: 100%;
    overflow: hidden;
    margin: 2rem 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;
    transition: transform 0.3s ease;
}

.infinity-slide:hover img {
    transform: scale(1.05);
}

/* 左から右へのアニメーション */
.slider-infinity.left-to-right .infinity-track {
    animation: infinityScrollLeftToRight 30s linear infinite;
}

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

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

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

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .image-slider-section {
        padding: 60px 0;
    }
    
    .infinity-slide {
        width: 250px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .infinity-slide {
        width: 200px;
        height: 120px;
    }
}














/* ヒーロービデオコンテナ */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

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

/* ヒーロー画像コンテナのスタイルは削除またはコメントアウト */
/*
.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-content {
    position: relative;
    z-index: 2;
}









/* 横スクロールギャラリー用スタイル */
.horizontal-scroll-gallery {
    overflow: hidden;
    position: relative;
}

.scroll-gallery-container {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    white-space: nowrap;
    padding: 10px 0;
    cursor: grab;
    
}

.scroll-gallery-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.scroll-gallery-track {
    display: inline-flex;
    gap: 10px;

    padding: 0 10px;
}

.scroll-gallery-item {
    flex: 0 0 auto;
    width: 200px;
    height: 150px;
    overflow: hidden;
   
}



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



/* レスポンシブ対応 */
@media (max-width: 768px) {
    .scroll-gallery-item {
        width: 220px;
        height: 160px;
    }
    
    .scroll-gallery-track {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .scroll-gallery-item {
        width: 180px;
        height: 130px;
    }
}



/* 画像とテキストのセクション（左テキスト・右横スクロール画像） */
.image-text-section1 .image-text-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 0 auto;
}

/* 左側のテキストコンテンツ - 1の比率 */
.image-text-section1 .image-text-text {
    flex: 1; /* 1の比率 */
}

/* 右側の画像コンテンツ - 2の比率 */
.image-text-section1 .image-text-image {
    flex: 2; /* 2の比率 */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .image-text-section1 .image-text-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .image-text-section1 .image-text-text,
    .image-text-section1 .image-text-image {
        flex: none;
        width: 100%;
    }
}



/* 既存のスタイルはそのまま維持 */
.image-text-section1 .image-text-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 0 auto;
}

/* 左側のテキストコンテンツ - 1の比率 */
.image-text-section1 .image-text-text {
    flex: 1; /* 1の比率 */
}

/* 右側の画像コンテンツ - 2の比率 */
.image-text-section1 .image-text-image {
    flex: 2; /* 2の比率 */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .image-text-section1 .image-text-content {
        flex-direction: column;
        gap: 30px;
    }

    
    .image-text-section1 .image-text-text,
    .image-text-section1 .image-text-image {
        flex: none;
        width: 100%;
    }
}










/* 背景固定のセクション */
.fixed-background-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('image/230524012.jpeg') center/cover fixed;
    display: flex;
    align-items: flex-end; /* 下部に配置 */
    justify-content: flex-start; /* 左側に配置 */
    text-align: left; /* 左揃え */
    color: var(--white);
    padding: 40px; /* 余白を追加 */
}

.fixed-bg-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.fixed-bg-text {
    max-width: 600px; /* テキストの最大幅を制限 */
}

.fixed-bg-text h2 {
    font-size: 2.5rem;
    font-weight: 100;
    margin-bottom: 20px;
   font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.fixed-bg-text p {
    font-size: 1.2rem;
    margin-bottom: 0; /* 下部の余白を削除 */
    line-height: 1.6;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}


/* レスポンシブ対応 */
@media (max-width: 768px) {
    .fixed-background-section {
        height: 60vh;
        padding: 30px; /* モバイルで余白を調整 */
    }
    
    .fixed-bg-text h2 {
        font-size: 2rem;
    }
    
    .fixed-bg-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .fixed-background-section {
        height: 50vh;
        padding: 20px; /* 小さな画面で余白を調整 */
    }
    
    .fixed-bg-text h2 {
        font-size: 1.5rem;
    }
    
    .fixed-bg-text p {
        font-size: 0.9rem;
    }
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 200px;
}

.feature-item i {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-item span {
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}










/* 横並び3コンテンツセクション（横スクロール対応版） */
.three-column-section {
    background-color: #d2efff;
    position: relative;
}

/* セクションの上下に線を追加 */
.three-column-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(to right, transparent, #e0e0e0, transparent);
}

.three-column-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(to right, transparent, #e0e0e0, transparent);
}

/* 横スクロールコンテナ */
.three-column-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding: 20px 0;
    margin: 0 -20px;
    cursor: grab;
}

.three-column-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.three-column-scroll-container:active {
    cursor: grabbing;
}

/* 横スクロールコンテンツ */
.three-column-scroll-content {
    display: inline-flex;
    gap: 30px;
    padding: 0 20px;
    min-width: min-content;
}

.column-item-link {
    flex: 0 0 300px; /* 各アイテムの幅を固定 */
    text-decoration: none;
    color: inherit;
}

.column-item {
    background: var(--white);
    height: 400px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    /* 線の枠組み */
    border: 8px solid #ffffff;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
}



.column-item:hover::before {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 1px var(--secondary-color);
}

.column-item:hover {
    transform: translateY(-8px);
}

.column-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

/* 画像の下に線を追加 */
.column-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, #e8e8e8, transparent);
}

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

.column-item:hover .column-image img {
    transform: scale(1.08);
}

.column-text {
    padding: 20px;
    text-align: center;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.column-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
   font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
    font-weight: 100;
    position: relative;
    padding-bottom: 12px;
}


/* タイトルの下に線を追加 */
.column-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30%;
    right: 30%;
    height: 1px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.column-item:hover .column-text h3::after {
    left: 20%;
    right: 20%;
}

.column-text p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.8rem;
    margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .three-column-section {
        padding: 60px 0;
    }
    
    .three-column-section::before,
    .three-column-section::after {
        left: 3%;
        right: 3%;
    }
    
    .three-column-scroll-container {
        margin: 0 -15px;
    }
    
    .three-column-scroll-content {
        gap: 20px;
        padding: 0 15px;
    }
    
    .column-item-link {
        flex: 0 0 280px; /* モバイルでは少し小さく */
    }
    
    .column-item {
        height: 380px;
    }
    
    .column-image {
        height: 180px;
    }
    
    .column-text {
        padding: 15px;
    }
    
    .column-text h3 {
        font-size: 1.1rem;
    }
    
    .column-text p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .three-column-section {
        padding: 40px 0;
    }
    
    .column-item-link {
        flex: 0 0 260px;
    }
    
    .column-item {
        height: 350px;
    }
    
    .column-image {
        height: 160px;
    }
    
    .column-text h3 {
        font-size: 1rem;
    }
    
    .column-text p {
        font-size: 0.7rem;
    }
    
    .column-text h3::after {
        left: 25%;
        right: 25%;
    }
    
    .column-item:hover .column-text h3::after {
        left: 15%;
        right: 15%;
    }
}

/* スクロール可能な場合の視覚的インジケーター */
.three-column-scroll-container.scrollable::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.8));
    pointer-events: none;
}













/* トップ動画下の文字だけセクション */
.hero-text-section {
    padding: 60px 0;
    background-color: #eefaff;
    text-align: center;
}

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

.hero-text-content h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
  font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
    font-weight: 100;
    line-height: 1.4;
}

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

/* ヒーローテキストセクション内の画像 */
.hero-text-image {
    margin: 30px auto;
    max-width: 400px;
    width: 100%;
    aspect-ratio: 2/1; /* 画像の比率を調整 */
    overflow: hidden;
}

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


/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero-text-image {
        max-width: 300px;
        margin: 25px auto;
    }
}

@media (max-width: 480px) {
    .hero-text-image {
        max-width: 250px;
        margin: 20px auto;
    }
}






/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero-text-section {
        padding: 40px 0;
    }

    .hero-text-content {
        padding: 80px 60px;
    }
    
    .hero-text-content h2 {
        font-size: 1.2rem;
    }
    
    .hero-text-content p {
        font-size: 0.6rem;
    }

    .hero-text-content .btn-detail {
        padding: 8px 10px;
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .hero-text-section {
        padding: 30px 0;
    }
    
    .hero-text-content h2 {
        font-size: 1rem;
    }
    
    .hero-text-content p {
        font-size: 0.55rem;
    }
    
}



/* ヒーローテキストセクション内の小さな画像 */
.hero-small-image {
    margin: 25px auto;
    max-width: 100px;
    width: 100%;
    aspect-ratio: 4/2; /* 正方形を保証 */
    overflow: hidden;
}

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



/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero-small-image {
        max-width: 80px;
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .hero-small-image {
        max-width: 60px;
        margin: 15px auto;
    }
}



/* CYANタイトルとサブタイトルのスタイル */
.title-container {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
}

.title-container h2 {
    margin-bottom: 0;
    font-size: 2rem;
}

.subtitle {
    font-size: 0.8rem;
    color: #4c4b4b; /* 薄い灰色 */
    font-weight: 300;
    letter-spacing: 1px;
   font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .title-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .title-container h2 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 0.7rem;
    }
}







/* 会社概要とGoogleマップセクション */
.company-map-section {
    padding: 60px 0;
    background-color: #fff;
 
    border-bottom: 1px solid #e0e0e0;
}

.company-map-section1 {
    padding: 60px 0;
   
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.company-map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    min-height: auto;
}

.company-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    padding-left: 50px;
    padding-top: 30px;
}

.company-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
    font-weight: 100;
    position: relative;
    padding-bottom: 10px;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* 会社概要の情報行スタイル */
.info-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-row strong {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 100px;
    flex-shrink: 0;
}

.info-row span {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}

.map-container {
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: flex-start;
    background-color: transparent;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;

}



/* レスポンシブ対応 */
@media (max-width: 768px) {
    .company-map-section {
        padding: 40px 0;
    }
    
    .company-map-content {
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: stretch;
    }
    
    .company-info {
        justify-content: flex-start;
        
    }
    
    .map-container {
        height: 250px;
        align-items: flex-start;
    }
    
    .company-info h3 {
        font-size: 1.3rem;
    }
    
    .info-row {
        flex-direction: column;
        gap: 5px;
        padding-bottom: 15px;
    }
    
    .info-row strong {
        min-width: auto;
        font-size: 0.85rem;
    }
    
    .info-row span {
        font-size: 0.85rem;
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .company-map-section {
        padding: 30px 0;
    }
    
    .map-container {
        height: 200px;
    }
    
    .company-info h3 {
        font-size: 1.2rem;
    }
    
    .info-row strong,
    .info-row span {
        font-size: 0.8rem;
    }
}








/* キャンセルポリシーセクション */
.policy-section {
    padding: 80px 0;
    background-color: #fefdfd;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
  
    padding: 30px;
   
}

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

.policy-item:last-child {
    margin-bottom: 0;
}

.policy-item h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
   font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-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);
}

.policy-note p {
    margin-bottom: 8px;
}

.policy-note p:last-child {
    margin-bottom: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .policy-section {
        padding: 60px 0;
    }
    
    .policy-content {
        padding: 20px;
    }
    
    .policy-item h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 0;
    }
    
    .policy-content {
        padding: 15px;
    }
    
    .policy-list li {
        font-size: 0.9rem;
    }
}









.simple-section {
    margin: 30px 0;
    padding: 0;
}

.simple-section h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

.simple-list {
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
}

.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

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

.area-name, .option-name {
    flex: 1;
    color: #333;
}

.area-price, .option-price {
    font-weight: bold;
    color: #000000;
    margin-left: 15px;
}

.note {
    padding: 10px 15px;
    font-size: 0.9em;
    color: #666;
    background-color: #f8f8f8;
    line-height: 1.4;
}









/* 右下固定インスタボタン */
.fixed-insta-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.insta-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background-color: white;
    color: rgb(122, 121, 121);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
    border: 0.1px solid rgb(0, 0, 0);
}

.insta-button:hover {
    transform: translateY(-3px);
    color: rgb(14, 14, 14);
}

.insta-button i {
    font-size: 24px;
    flex-shrink: 0;
}

.insta-button span {
    white-space: nowrap;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .fixed-insta-button {
        bottom: 20px;
        right: 20px;
    }
    
    .insta-button {
        padding: 12px 16px;
        font-size: 12px;
    }
    
    .insta-button i {
        font-size: 20px;
    }
    
    .insta-button span {
        white-space: normal;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .fixed-insta-button {
        bottom: 15px;
        right: 15px;
    }
    
    .insta-button {
        padding: 10px 14px;
        font-size: 11px;
        gap: 8px;
    }
    
    .insta-button i {
        font-size: 18px;
    }
}





/* ご質問セクションの説明文スタイル */
.faq-description {
    margin-top: 20px;
}

.faq-description p {
    color: black;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.faq-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
    padding-bottom: 80px;
}

.faq-category {
    padding: 15px;
    background: white;
    border-radius: 8px;
    transition: var(--transition);
}

.faq-category:hover {
    background: rgba(139, 107, 74, 0.1);
    transform: translateY(-3px);
}

.faq-category h4 {
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 0.9rem;
   font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
}

.faq-category p {
    color: var(--text-light);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.5;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .faq-categories {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-category {
        padding: 12px;
    }
    
    .faq-description p {
        font-size: 0.8rem;
    }
}








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

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    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: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
    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);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
    }
}















/* 上下点線付きセクション */
.image-text-section.dotted-border {
    position: relative;
    padding: 80px 0;
}

.image-text-section.dotted-border::before {
    content: '';
    position: absolute;
    top: 0;
   left: 15%;
    right: 15%;
    height: 5px;
    background: repeating-linear-gradient(
        to right,
        transparent,
        transparent 5px,
        #023cfb 5px,
        #ffffff 10px
    );
}




/* レスポンシブ対応 */
@media (max-width: 768px) {
    .image-text-section.dotted-border::before,
    .image-text-section.dotted-border::after {
        left: 3%;
        right: 3%;
    }
}










/* ビフォーアフターセクション */
.before-after-section {
    padding: 80px 0;
    background-color: #fefdfd;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.before-after-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.before-after-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.comparison-container {
    overflow: hidden;
    border-radius: 8px;
   
}

.image-wrapper {
    display: flex;
    width: 100%;
}

.image-box {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.image-box .label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.before .label {
    background: rgba(231, 76, 60, 0.8); /* 赤系 */
}

.after .label {
    background: rgba(46, 204, 113, 0.8); /* 緑系 */
}

.before-after-text {
    text-align: center;
    padding: 0 20px;
}

.before-after-text h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
}

.before-after-text p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9rem;
}

.before-after-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: rgba(139, 107, 74, 0.05);
    border-radius: 10px;
}

.before-after-cta p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 25px;
    font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .before-after-section {
        padding: 60px 0;
    }
    
    .before-after-container {
        gap: 40px;
    }
    
    .image-wrapper {
        flex-direction: column;
    }
    
    .image-box img {
        height: 200px;
    }
    
    .before-after-text {
        padding: 0 10px;
    }
    
    .before-after-text h3 {
        font-size: 1.3rem;
    }
    
    .before-after-cta {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .before-after-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .before-after-section {
        padding: 40px 0;
    }
    
    .before-after-container {
        gap: 30px;
    }
    
    .image-box img {
        height: 180px;
    }
    
    .before-after-text h3 {
        font-size: 1.2rem;
    }
    
    .before-after-text p {
        font-size: 0.8rem;
    }
    
    .before-after-cta {
        padding: 20px 15px;
    }
    
    .before-after-cta p {
        font-size: 0.9rem;
    }
}











/* 既存の five-images-section スタイルを維持 */
.five-images-section {
    padding: 60px 0;
    background-color: #eefaff;
}

.five-images-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  
    margin: 0 auto;
}

.image-item {
    overflow: hidden;
    aspect-ratio: 16/13;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 30px;
    }
    
    .title-with-button {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .section-title {
        font-size: 1.8rem;
        white-space: normal; /* モバイルでは折り返し許可 */
    }
    
    .five-images-section {
        padding: 40px 0;
    }
    
    .five-images-content {
        grid-template-columns: repeat(5, 1fr);
       
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn-portfolio {
        padding: 6px 16px;
        font-size: 0.75rem;
    }
    
    .five-images-section {
        padding: 30px 0;
    }
    
    .five-images-content {
        grid-template-columns: repeat(5, 1fr);
        
    }
}






/* リフォーム種類アイコンセクション */
.reform-types-section {
    padding: 60px 0;
    background-color: #eefaff;
   
}

.reform-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.reform-type-item {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
}

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

.reform-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: var(--transition);
}

.reform-type-item:hover .reform-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.reform-type-item h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
    font-weight: 100;
}

.reform-type-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .reform-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .reform-type-item {
        padding: 20px 15px;
    }
    
    .reform-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .reform-type-item h3 {
        font-size: 1rem;
    }
    
    .reform-type-item p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .reform-types-grid {
       grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .reform-types-section {
        padding: 40px 0;
    }

     .reform-type-item p {
        font-size: 0.6rem;
    }
}









.flow_design07 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background-color: #eefaff;
}

.flow07 {
  padding-left: 0;
}

.flow07 > li {
  list-style-type: none;
  display: flex;
}

.flow07 > li:not(:last-child) {
  margin: 0 0 50px;
}

.flow07 > li .icon07 {
  width: 90px;
  box-sizing: border-box;
  padding: 20px 10px 10px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  background: #1f5bb5;
  border-radius: 5px 5px 0 0;
  position: relative;
  line-height: 125%;
  margin: 0;
}
.flow07 > li .icon07::after {
  content: ' ';
  width: 0;
  height: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-top: 20px solid #1f5bb5;
  position: absolute;
  bottom: -20px;
  left: 0;
}

.flow07 > li dl {
  padding: 0 0 0 30px;
  width: calc(100% - 115px);
}

.flow07 > li dl dt {
  padding: 0 0 5px;
  margin: 0 0 15px;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 4px solid #CCCCCC;
  position: relative;
}
.flow07 > li dl dt::after {
  content: '';
  width: 20%;
  height: 4px;
  position: absolute;
  bottom: -4px;
  left: 0;
  background-color: #1f5bb5;
}

.flow07 > li dl dd {
  margin: 0;
}


















/* 左下固定画像 */
.fixed-bottom-left-image {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    width: 200px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fixed-bottom-left-image:hover {
    transform: translateY(-20px);
}

.fixed-bottom-left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .fixed-bottom-left-image {
        bottom: 20px;
        left: 20px;
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .fixed-bottom-left-image {
        bottom: 15px;
        left: 15px;
        width: 100px;
        height: 100px;
    }
}









/* 求人ページ専用スタイル */

/* 求人情報スタイル */
.job-info {
    margin: 20px 0;
}

.job-info .info-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.job-info .info-row:last-child {
    border-bottom: none;
}

.job-info .info-row strong {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 100px;
    flex-shrink: 0;
}

.job-info .info-row span {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}

/* 福利厚生リスト */
.benefits-list {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(139, 107, 74, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(139, 107, 74, 0.1);
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    width: 30px;
    flex-shrink: 0;
    margin-top: 5px;
}

.benefit-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1rem;
    font-family: "Zen Maru Gothic", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

/* 求人コンテンツのホバー効果 */
.job-content {
    transition: var(--transition);
}

.job-content:hover {
    transform: translateY(-5px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .job-info .info-row {
        flex-direction: column;
        gap: 5px;
        padding: 10px 0;
    }
    
    .job-info .info-row strong {
        min-width: auto;
        font-size: 0.85rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .benefit-item i {
        margin-top: 0;
    }
}

/* フォームスタイル調整 */
.contact-form-section {
    background-color: #eefaff;
}

.contact-form {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}






/* 料金表セクション */
.price-section {
    padding: 80px 0;
    background-color: #d2efff;
}

.price-table-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.price-table th {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
}

.price-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    color: var(--text-color);
}

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

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

.price-notes {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.price-notes h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-family: "Zen Maru Gothic", sans-serif;
}

.price-notes ul {
    list-style: none;
    padding-left: 0;
}

.price-notes li {
    margin-bottom: 8px;
    color: var(--text-light);
    position: relative;
    padding-left: 15px;
}

.price-notes li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-contact, .btn-detail {
    padding: 12px 25px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    border-radius: 30px;
}

.btn-contact {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(139, 107, 74, 0.3);
}

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

.btn-detail {
    background: #ffffff;
    color: #000000;
    border: 1px solid #003278;
    font-size: 0.9rem;
}

.btn-detail:hover {
    background: #0a4374;
    color: white;
    transform: translateY(-3px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .price-table {
        font-size: 0.9rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 10px 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-contact,
    .btn-detail {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .price-table {
        font-size: 0.8rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 8px 12px;
    }
}




/* 縦1：横5のヒーロー画像セクション */
.hero-image-section {
    width: 100%;
   /* ヘッダーの高さ分の余白 */
}

.hero-image-container {
    width: 100%;
    height: 0;
    padding-bottom: 20%; /* 縦1：横5の比率 (1/5 = 0.2 = 20%) */
    position: relative;
    overflow: hidden;
}

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

/* レスポンシブ対応 */
@media (max-width: 768px) {
   .hero-image-container {
   
    padding-bottom: 40%; /* 縦1：横5の比率 (1/5 = 0.2 = 20%) */
  
}

}