@charset "utf-8";


        /* リセットCSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family:   Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
            color: #333;
            line-height: 1.6;
        }
        
        /* ヘッダー */
        header {
            background-color: #fff;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 50px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #d6c8a8; /* ベージュ */
        }
        
        .logo a {
            text-decoration: none;
            color: #d6c8a8; /* ベージュ */
        }
        
        .header-container nav ul {
            display: flex;
            list-style: none;
        }

        nav li {
            margin-left: 20px;
            white-space: nowrap;
        }
        
        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 300;
            position: relative;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: #d6c8a8; /* ベージュ */
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #d6c8a8; /* ベージュ */
            transition: width 0.3s;
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        /* メインビジュアル */
        .main-visual {
            height: 100vh;
            background-color: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin-top: 70px;
        }
        
        .main-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .main-visual-content {
            position: absolute;
            text-align: center;
            color: #fff;
            z-index: 10;
        }
        
        .main-visual-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            letter-spacing: 2px;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
        }
        
        .main-visual-content p {
            font-size: 18px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        /* セクション共通 */
        .section {
            padding: 80px 50px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 32px;
            color: #d6c8a8; /* ベージュ */
            margin-bottom: 10px;
        }
        
        .section-title p {
            font-size: 16px;
            color: #888;
        }
        
        /* サービス紹介 */
        .services {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .service-item {
            width: calc(50% - 20px);
            margin-bottom: 40px;
            background-color: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .service-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #d6c8a8; /* ベージュ */
        }
        
        .service-content p {
            font-size: 14px;
            margin-bottom: 15px;
            color: #666;
        }
        
        .more-btn {
            display: inline-block;
            padding: 8px 20px;
            background-color: #d6c8a8; /* ベージュ */
            color: #fff;
            text-decoration: none;
            border-radius: 3px;
            font-size: 14px;
            transition: background-color 0.3s;
        }
        
        .more-btn:hover {
            background-color: #c4ac76; /* ベージュより少し明るい */
        }
        
        /* 理念 */
        .philosophy {
            background-color: #f9f9f9;
            text-align: center;
        }
        
        .philosophy-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .philosophy-item {
            margin-bottom: 30px;
        }
        
        .philosophy-item h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #d6c8a8; /* ベージュ */
        }
        
        .philosophy-item p {
            font-size: 15px;
            line-height: 1.8;
        }
        
        /* ニュース */
        .news-list {
            margin-bottom: 30px;
        }
        
        .news-item {
            display: flex;
            border-bottom: 1px solid #eee;
            padding: 15px 0;
        }
        
        .news-date {
            width: 120px;
            color: #999;
        }
        
        .news-category {
            width: 120px;
        }
        
        .news-category span {
            display: inline-block;
            background-color: #d6c8a8; /* ベージュ */
            color: #fff;
            padding: 2px 10px;
            font-size: 12px;
            border-radius: 3px;
        }
        
        .news-title {
            flex: 1;
        }
        
        .news-title a {
            text-decoration: none;
            color: #333;
            transition: color 0.3s;
        }
        
        .news-title a:hover {
            color: #d6c8a8; /* ベージュ */
        }
        
        .news-more {
            text-align: center;
            margin-top: 20px;
        }
        
        .news-more a {
            display: inline-block;
            padding: 10px 30px;
            border: 1px solid #d6c8a8; /* ベージュ */
            color: #d6c8a8; /* ベージュ */
            text-decoration: none;
            transition: background-color 0.3s, color 0.3s;
        }
        
        .news-more a:hover {
            background-color: #d6c8a8; /* ベージュ */
            color: #fff;
        }
        
        /* お問い合わせ */
        .contact {
            text-align: center;
            background-color: #f9f9f9;
        }
        
        .contact p {
            margin-bottom: 30px;
            font-size: 16px;
        }
        
        .contact-btn {
            display: inline-block;
            padding: 15px 50px;
            background-color: #d6c8a8; /* ベージュ */
            color: #fff;
            text-decoration: none;
            border-radius: 3px;
            font-size: 16px;
            transition: background-color 0.3s;
        }
        
        .contact-btn:hover {
            background-color: #c4ac76; /* ベージュより少し明るい */
        }
        
        /* フッター */
        footer {
            background-color: #7f7f7f;
            color: #fff;
            padding: 50px 0 20px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 50px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .footer-info {
            width: 300px;
        }
        
        .footer-info h2 {
            font-size: 18px;
            margin-bottom: 20px;
        }
        
        .footer-info p {
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .footer-nav {
            display: flex;
        }
        
        .footer-nav-group {
            width: 200px;
            margin-right: 30px;
        }
        
        .footer-nav-group h3 {
            font-size: 16px;
            margin-bottom: 20px;
            color: #ffffff; /* ベージュ */
        }
        
        .footer-nav-group ul {
            list-style: none;
        }
        
        .footer-nav-group li {
            margin-bottom: 10px;
        }
        
        .footer-nav-group a {
            text-decoration: none;
            color: #ccc;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .footer-nav-group a:hover {
            color: #fff;
        }
        
        .copyright {
            text-align: center;
            font-size: 12px;
            color: #999;
            padding: 20px 0;
            border-top: 1px solid #444;
        }
        
        /* レスポンシブ対応 */
        @media (max-width: 1024px) {
            .header-container {
                padding: 15px 30px;
            }
            
            .section {
                padding: 60px 30px;
            }
            
            .service-item {
                width: 100%;
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 0;
            }
            
            .logo {
                margin-bottom: 0;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav li {
                margin: 0 10px 10px;
            }
            
            .main-visual {
                margin-top: 78px;
                height: 60vh;
            }
            
            .main-visual-content h1 {
                font-size: 32px;
            }
            
            .main-visual-content p {
                font-size: 16px;
            }
            
            .section {
                padding: 50px 20px;
            }
            
            .footer-info, .footer-nav-group {
                width: 100%;
                margin-bottom: 30px;
            }
            
            .footer-nav {
                flex-direction: column;
            }
        }



#sp-nav {
    display: none
}

@media only screen and (max-width: 960px) {
    #sp-nav {
        display:block;
        top: 20px;
        right: 10px;
        position: fixed;
        z-index: 9999
    }
}

#nav-drawer {
    position: relative
}

.nav-unshown {
    display: none
}

#nav-open {
    display: inline-block;
    width: 25px;
    height: 20px;
    vertical-align: middle;
    background: #fff;
    padding: 5px;
}

#nav-open span,#nav-open span:before,#nav-open span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #868686;
    display: block;
    content: '';
    cursor: pointer
}

#nav-open span:before {
    bottom: -8px
}

#nav-open span:after {
    bottom: -16px
}

#nav-close {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: .3s ease-in-out
}

#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 90%;
    max-width: 330px;
    height: 100%;
    background: #ffffff;
    transition: .3s ease-in-out;
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%)
}

#nav-input:checked~#nav-close {
    display: block;
    opacity: .5
}

#nav-input:checked~#nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    box-shadow: 6px 0 25px rgba(0,0,0,.15)
}

#nav-content h1 {
    background: #ffffff;
    padding: 4% 2% 2%;
    text-align: center
}

#nav-content h1 img {
    width: 100%;
}

#nav-content ul {
    padding: 1% 0;
    margin: 1% 0;
    display: block;
}

#nav-content ul li {
    list-style: none;
    color: #757575;
    /* margin: 1%; */
    /* padding: 1%; */
    font-family: Georgia,游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
}

#nav-content ul li a {
    display: block;
    margin: 0;
    padding: 0;
    color: #0c0c0c;
}
#nav-content ul li.sns_youtube a {
    font-size:140%;
    color: #f00;
}

#nav-content ul li.cpay_btn a{
    padding:5px 30px 5px 10px;
    border:solid 1px #d71318;
    background:#d71318;
    display:inline-block;
    margin:0;
    color:#fff;
}
#nav-content ul li.cpay_btn a:hover{
    padding:5px 30px 5px 10px;
    border:solid 1px #d71318;
    background:#ff6165;
    display:inline-block;
    margin:0;
    color:#fff;
}
#nav-content ul li.contact_btn a{
    padding:5px 30px 5px 10px;
    border:solid 1px #000;
    display:inline-block;
    margin:0;
}
#nav-content ul li.contact_btn a:hover{
    padding:5px 30px 5px 10px;
    border:solid 1px #000;
    display:inline-block;
    margin:0;
    background:#fcfcfc;
    opacity:0.7;
}
#nav-content ul li a:hover {
    background: #f1f1f1;
    opacity: 1
}

#nav-content ul li a:before {
    content: "・"
}

#nav-content ul li em {
    padding: 2%;
    font-size: 80%
}

#nav-content form {
    padding: 1%;
    margin: 0 5%
}



.pc {
    display: block
}

@media only screen and (max-width: 960px) {
    .pc {
        display:none
    }
}

.sp {
    display: none
}
@media only screen and (max-width: 960px) {
    .sp {
        display:block
    }
}
        @media only screen and (max-width: 960px) {
     .header-container nav ul.pc {
        display:none
    }
    
}

#page-top {
    right: -2px;
    bottom: 80px;
    position: fixed;
    z-index: 99999
}
#page-top a {
    display: block;
    background: #4e4e4e;
    padding: 10px;
    font-size: 80%;
    text-align: center;
    border: solid 1px #8c8c8c;
    color: #fff;
    text-decoration: none;
}


        
        /* 会社概要テーブル */
        .company-info {
            max-width: 900px;
            margin: 0 auto 80px;
        }
        
        .company-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .company-table th, 
        .company-table td {
            padding: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .company-table th {
            width: 30%;
            text-align: left;
            font-weight: bold;
            color: #d6c8a8; /* ベージュ */
            vertical-align: top;
        }
        
        .company-table td {
            width: 70%;
        }
        
        /* 企業理念 */
        .philosophy {
            background-color: #f9f9f9;
            padding: 80px 50px;
            text-align: center;
        }
        
        .philosophy-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .philosophy-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 50px;
        }
        
        .philosophy-item {
            width: calc(33.333% - 20px);
            background-color: #fff;
            padding: 40px 30px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .philosophy-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .philosophy-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background-color: #f0f0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d6c8a8; /* ベージュ */
            font-size: 30px;
        }
        
        .philosophy-item h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #d6c8a8; /* ベージュ */
        }
        
        .philosophy-item p {
            font-size: 14px;
            color: #666;
            text-align: left;
        }
        
        /* 代表メッセージ */
        .message {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 80px;
        }
        
        .message-content {
            width: 60%;
        }
        
        .message-title {
            font-size: 24px;
            color: #d6c8a8; /* ベージュ */
            margin-bottom: 20px;
        }
        
        .message-text {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .message-name {
            font-size: 16px;
            text-align: right;
            font-weight: bold;
        }
        
        .message-image {
            width: 35%;
        }
        
        .message-image img {
            width: 100%;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* アクセス */
        .access {
            background-color: #f9f9f9;
            padding: 80px 50px;
        }
        
        .access-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .access-map {
            width: 100%;
            height: 450px;
            margin-bottom: 40px;
            background-color: #eee;
        }
        
        .access-map img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .access-info {
            display: flex;
            justify-content: space-between;
        }
        
        .access-info-item {
            width: 48%;
        }
        
        .access-info-title {
            font-size: 18px;
            color: #d6c8a8; /* ベージュ */
            margin-bottom: 15px;
            border-left: 3px solid #d6c8a8; /* ベージュ */
            padding-left: 10px;
        }
        
        .access-info-text {
            font-size: 15px;
            line-height: 1.8;
        }
        
        /* お問い合わせ */
        .contact {
            text-align: center;
        }
        
        .contact p {
            margin-bottom: 30px;
            font-size: 16px;
        }
        
        .contact-btn {
            display: inline-block;
            padding: 15px 50px;
            background-color: #d6c8a8; /* ベージュ */
            color: #fff;
            text-decoration: none;
            border-radius: 3px;
            font-size: 16px;
            transition: background-color 0.3s;
        }
        
        .contact-btn:hover {
            background-color: #c4ac76; /* ベージュより少し明るい */
        }
                /* レスポンシブ対応 */
        @media (max-width: 1024px) {

            
            .section, .philosophy, .access {
                padding: 60px 30px;
            }
            
            .breadcrumb-container {
                padding: 0 30px;
            }
            
            .philosophy-item {
                width: calc(50% - 15px);
            }
            
            .message {
                flex-direction: column;
            }
            
            .message-content, .message-image {
                width: 100%;
            }
            
            .message-image {
                margin-top: 30px;
                order: -1;
            }
            
            .access-info {
                flex-direction: column;
            }
            
            .access-info-item {
                width: 100%;
                margin-bottom: 30px;
            }
        }
        @media (max-width: 768px) {

            

            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav li {
                margin: 0 10px 10px;
            }
            
            .page-header {
                margin-top: 120px;
                height: 200px;
            }
            
            .page-header-content h1 {
                font-size: 28px;
            }
            
            .section, .philosophy, .access {
                padding: 50px 20px;
            }
            
            .breadcrumb-container {
                padding: 0 20px;
            }
            
            .company-table th, 
            .company-table td {
                display: block;
                width: 100%;
            }
            
            .company-table th {
                padding-bottom: 5px;
            }
            
            .company-table td {
                padding-top: 5px;
            }
            
            .philosophy-item {
                width: 100%;
            }
            
            .footer-info, .footer-nav-group {
                width: 100%;
                margin-bottom: 30px;
            }
            
            .footer-nav {
                flex-direction: column;
            }
        }
/* ページヘッダー */
.page-header {
    height: 300px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 70px;
    background-image: url('/api/placeholder/1920/400');
    background-size: cover;
    background-position: center;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.page-header-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 10;
}
.page-header-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.page-header-content p {
    font-size: 16px;
}
/* パンくずリスト */
.breadcrumb {
    background-color: #f9f9f9;
    padding: 15px 0;
}
.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}


        /* 概要セクション */
        .overview {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 80px;
        }
        
        .overview-content {
            width: 55%;
        }
        
        .overview-content h3 {
            font-size: 24px;
            color: #d6c8a8; /* ベージュ */
            margin-bottom: 20px;
        }
        
        .overview-content p {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .overview-image {
            width: 40%;
        }
        
        .overview-image img {
            width: 100%;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* 商品リスト */
        .products {
            margin-bottom: 80px;
        }
        
        .product-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .product-item {
            width: calc(33.333% - 20px);
            margin-bottom: 40px;
            background-color: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .product-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .product-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-item:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: #d6c8a8; /* ベージュ */
            color: #fff;
            padding: 5px 10px;
            font-size: 12px;
            border-radius: 3px;
        }
        
        .product-content {
            padding: 25px;
        }
        
        .product-content h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #d6c8a8; /* ベージュ */
        }
        
        .product-content p {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
            height: 60px;
            overflow: hidden;
        }
        
        .product-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .price {
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }
        
        .price small {
            font-size: 12px;
            color: #999;
            font-weight: normal;
        }
        
        .cart-btn {
            display: inline-block;
            padding: 8px 20px;
            background-color: #d6c8a8; /* ベージュ */
            color: #fff;
            text-decoration: none;
            border-radius: 3px;
            font-size: 14px;
            transition: background-color 0.3s;
        }
        
        .cart-btn:hover {
            background-color: #c4ac76; /* ベージュより少し明るい */
        }
        
        /* カテゴリー */
        .categories {
            background-color: #f9f9f9;
            padding: 80px 50px;
        }
        
        .categories-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .category-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .category-item {
            width: calc(25% - 15px);
            margin-bottom: 30px;
            text-align: center;
        }
        
        .category-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background-color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d6c8a8; /* ベージュ */
            font-size: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .category-item h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #d6c8a8; /* ベージュ */
        }
        
        .category-item p {
            font-size: 14px;
            color: #666;
        }
        
        /* レビュー */
        .reviews {
            margin-bottom: 80px;
        }
        
        .review-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .review-item {
            width: calc(50% - 15px);
            margin-bottom: 30px;
            background-color: #fff;
            border-radius: 5px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        .review-item::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 60px;
            color: #f0f0f0;
            font-family: 'Georgia', serif;
            line-height: 1;
        }
        
        .review-content {
            position: relative;
            z-index: 1;
        }
        
        .review-text {
            font-size: 15px;
            color: #666;
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .review-author {
            display: flex;
            align-items: center;
        }
        
        .review-author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .review-author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .review-author-info h4 {
            font-size: 16px;
            color: #333;
            margin-bottom: 5px;
        }
        
        .review-author-info p {
            font-size: 13px;
            color: #999;
        }
        
        /* ECリンク */
        .ec-link {
            text-align: center;
            background-color: #f9f9f9;
            padding: 80px 50px;
        }
        
        .ec-link-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .ec-link h2 {
            font-size: 32px;
            margin-bottom: 20px;
            color: #d6c8a8; /* ベージュ */
        }
        
        .ec-link p {
            font-size: 16px;
            margin-bottom: 30px;
            color: #666;
        }
        
        .ec-btn {
            display: inline-block;
            padding: 15px 50px;
            background-color: #d6c8a8; /* ベージュ */
            color: #fff;
            text-decoration: none;
            border-radius: 3px;
            font-size: 16px;
            transition: background-color 0.3s;
        }
        
        .ec-btn:hover {
            background-color: #c4ac76; /* ベージュより少し明るい */
        }
        
        /* FAQ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #eee;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background-color: #f9f9f9;
            font-weight: bold;
            cursor: pointer;
            position: relative;
        }
        
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
            color: #d6c8a8; /* ベージュ */
        }
        
        .faq-answer {
            padding: 20px;
            border-top: 1px solid #eee;
            display: none;
        }
        
        /* フッター */
        footer {
            background-color: #7f7f7f;
            color: #fff;
            padding: 50px 0 20px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 50px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .footer-info {
            width: 300px;
        }
        
        .footer-info h2 {
            font-size: 18px;
            margin-bottom: 20px;
        }
        
        .footer-info p {
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .footer-nav {
            display: flex;
        }
        
        .footer-nav-group {
            width: 200px;
            margin-right: 30px;
        }
        
        
        .footer-nav-group ul {
            list-style: none;
        }
        
        .footer-nav-group li {
            margin-bottom: 10px;
        }
        
        .footer-nav-group a {
            text-decoration: none;
            color: #ccc;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .footer-nav-group a:hover {
            color: #fff;
        }
        
        .copyright {
            text-align: center;
            font-size: 12px;
            color: #999;
            padding: 20px 0;
            border-top: 1px solid #444;
        }
        
        /* レスポンシブ対応 */
        @media (max-width: 1024px) {
            .header-container {
                padding: 15px 30px;
            }
            
            .section, .categories, .ec-link {
                padding: 60px 30px;
            }
            
            .breadcrumb-container {
                padding: 0 30px;
            }
            
            .product-item {
                width: calc(50% - 15px);
            }
            
            .category-item {
                width: calc(50% - 15px);
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 0;
            }
            
            nav > ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav > ul > li {
                margin: 0 10px 10px;
            }
            
            .service-dropdown {
                position: static;
                width: 100%;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding: 0;
                margin-top: 10px;
                display: none;
            }
            
            .service-dropdown.active {
                display: block;
            }
            
            .service-dropdown a {
                padding: 8px 0 8px 20px;
            }

            
            .page-header-content h1 {
                font-size: 28px;
            }
            
            .section, .categories, .ec-link {
                padding: 50px 20px;
            }
            
            .breadcrumb-container {
                padding: 0 20px;
            }
            
            .overview {
                flex-direction: column;
            }
            
            .overview-content, .overview-image {
                width: 100%;
            }
            
            .overview-image {
                margin-top: 30px;
                order: -1;
            }
            
            .product-item {
                width: 100%;
            }
            
            .category-item {
                width: 100%;
            }
            
            .review-item {
                width: 100%;
            }
            
            .footer-info, .footer-nav-group {
                width: 100%;
                margin-bottom: 30px;
            }
            
            .footer-nav {
                flex-direction: column;
            }
        }

        /* 概要セクション */
        .overview {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 80px;
        }
        
        .overview-content {
            width: 55%;
        }
        
        .overview-content h3 {
            font-size: 24px;
            color: #d6c8a8; /* ベージュ */
            margin-bottom: 20px;
        }
        
        .overview-content p {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .overview-image {
            width: 40%;
        }
        
        .overview-image img {
            width: 100%;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* 特徴セクション */
        .features {
            background-color: #f9f9f9;
            padding: 80px 50px;
        }
        
        .features-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .features-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .feature-item {
            width: calc(33.333% - 20px);
            background-color: #fff;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background-color: #f0f0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d6c8a8; /* ベージュ */
            font-size: 30px;
        }
        
        .feature-item h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #d6c8a8; /* ベージュ */
        }
        
        .feature-item p {
            font-size: 14px;
            color: #666;
        }
        
        /* サービス詳細 */
        .service-details {
            margin-top: 60px;
        }
        
        .service-item_03 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 80px;
        }
        
        .service-item_03:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .service-item-content {
            width: 50%;
        }
        
        .service-item-content h3 {
            font-size: 24px;
            color: #d6c8a8; /* ベージュ */
            margin-bottom: 20px;
        }
        
        .service-item-content p {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #666;
        }
        
        .service-item-image {
            width: 45%;
        }
        
        .service-item-image img {
            width: 100%;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* CTA */
        .cta {
            text-align: center;
            padding: 80px 50px;
            background-color: #f5f5f5;
        }
        
        .cta-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta h2 {
            font-size: 32px;
            margin-bottom: 20px;
            color: #d6c8a8; /* ベージュ */
        }
        
        .cta p {
            font-size: 16px;
            margin-bottom: 30px;
            color: #666;
        }
        
        .cta-btn {
            display: inline-block;
            padding: 15px 50px;
            background-color: #d6c8a8; /* ベージュ */
            color: #fff;
            text-decoration: none;
            border-radius: 3px;
            font-size: 16px;
            transition: background-color 0.3s;
        }
        
        .cta-btn:hover {
            background-color: #c4ac76; /* ベージュより少し明るい */
        }
        
        /* FAQ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #eee;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background-color: #f9f9f9;
            font-weight: bold;
            cursor: pointer;
            position: relative;
        }
        
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
            color: #d6c8a8; /* ベージュ */
        }
        
        .faq-answer {
            padding: 20px;
            border-top: 1px solid #eee;
            display: none;
        }

        /* レスポンシブ対応 */
        @media (max-width: 1024px) {
   
            
            .section, .features, .cta {
                padding: 60px 30px;
            }
            
            .breadcrumb-container {
                padding: 0 30px;
            }
            
            .feature-item {
                width: calc(50% - 15px);
            }
            
            .service-item, .service-item:nth-child(even) {
                flex-direction: column;
            }
            
            .service-item-content, .service-item-image {
                width: 100%;
            }
            
            .service-item-image {
                margin-bottom: 30px;
            }
            
            .service-item:nth-child(even) .service-item-image {
                margin-bottom: 30px;
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
    
            nav > ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav > ul > li {
                margin: 0 10px 10px;
            }
            
            .service-dropdown {
                position: static;
                width: 100%;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding: 0;
                margin-top: 10px;
                display: none;
            }
            
            .service-dropdown.active {
                display: block;
            }
            
            .service-dropdown a {
                padding: 8px 0 8px 20px;
            }
            
            .page-header {
                margin-top: 78px;
                height: 200px;
            }
            
            .page-header-content h1 {
                font-size: 28px;
            }
            
            .section, .features, .cta {
                padding: 50px 20px;
            }
            
            .breadcrumb-container {
                padding: 0 20px;
            }
            
            .overview {
                flex-direction: column;
            }
            
            .overview-content, .overview-image {
                width: 100%;
            }
            
            .overview-image {
                margin-top: 30px;
                order: -1;
            }
            
            .feature-item {
                width: 100%;
            }
            
            .footer-info, .footer-nav-group {
                width: 100%;
                margin-bottom: 30px;
            }
            
            .footer-nav {
                flex-direction: column;
            }
        }