body {

            font-family: 'Times New Roman', serif;
font-size: 16px; 
    line-height: 1.6;
            margin: 0;

            padding: 0;

            color: #333;

            background-color: #fff;

        }

        

@media screen and (max-width: 1023px) {

header {
        position: fixed;
        top: 0;
        left: 0;
    }

  body {

    padding-top: 55px; 

  }

}



        h2 {

    text-align: center;

    font-size: 28px; 

    text-align: center;

    color: #896161; 

    margin-bottom: 20px;

}



html.no-scroll {

    overflow-y: hidden; 

}



/* ヘッダー */

        header {
    background-color: #fcf7f7;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1002;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    box-sizing: border-box;
    width: 100%;

}





.header-flex-dummy {

    width: 50px;

    height: 1px; 

}



 .header-logo {

text-align: center;

 flex-grow: 0; 

    flex-shrink: 0;

        }



header-logo img {

    max-height: 50px; 

    width: auto;

}



        .header-nav-sp {

            display: flex;

            align-items: center;

width: 50px; 

    flex-shrink: 0; 

        }



        .header-nav-sp .search-icon,

        .header-nav-sp .menu-icon {

            margin-left: 0;

            width: 50px;

            cursor: pointer;

            padding: 5px;

        }



        .header-nav-pc {



            display: none; 

        }



        .header-nav-pc ul {

            list-style: none;

            padding: 0;

            margin: 0;

            display: flex;

        }



        .header-nav-pc ul li {

            font-size: 15px;

            margin-left: 30px;

            position: relative;

        }



        .header-nav-pc ul li a {

            text-decoration: none;

            color: #333;

            font-weight: bold;

            display: block;

            padding: 10px 0;

            transition: color 0.3s ease;

        }



        .header-nav-pc ul li a:hover {

            color: #7B3F00;

        }



        /* ドロップダウンメニュー */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background-color: #fcf7f7;
            min-width: 200px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            border-radius: 5px;
            padding: 15px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1001;
            border: 1px solid #e8e8e8;
        }

        .header-nav-pc ul li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }


        .dropdown-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: block;
        }

        .dropdown-menu ul li {
            margin: 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .dropdown-menu ul li:last-child {
            border-bottom: none;
        }

        .dropdown-menu ul li a {
            padding: 12px 20px;
            color: #555;
            font-weight: normal;
            font-size: 14px;
            white-space: nowrap;
            transition: all 0.2s ease;
        }

        .dropdown-menu ul li a:hover {
            background-color: #f5f5f5;
            color: #7B3F00;
            padding-left: 25px;
        }


 /* ハンバーガーメニュー */
        .hamburger-menu {
 padding-top: 60px;
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100%;
            background-color: #fcf7f7;
            box-shadow: -2px 0 10px rgba(0,0,0,0.1);
            z-index: 1001;
            transition: right 0.3s ease-in-out;
            overflow-y: auto;
        }

        .hamburger-menu.open {
            right: 0;
        }

        .hamburger-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 15px;
            padding: 15px 20px;
            border-bottom: 1px solid #e0e0e0;
            background-color: #f0f0f0;
        }

.hamburger-header form {
    display: flex;
    align-items: center;
    gap: 5px; 
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
        .close-menu {
            font-size: 25px;
            cursor: pointer;
            color: #666;
            padding: 5px;
        }

        .hamburger-nav {
            padding: 20px 0;
        }

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

        .hamburger-nav ul li {
            border-bottom: 1px solid #e8e8e8;
        }

        .hamburger-nav ul li a {
            display: block;
            padding: 15px 20px;
            text-decoration: none;
            color: #333;
            font-weight: bold;
            font-size: 16px;
            transition: background-color 0.2s ease;
            position: relative; /* for arrow icon */
        }

        .hamburger-nav ul li a:hover {
            background-color: #f5f5f5;
            color: #7B3F00;
        }

        /* ハンバーガーメニュー内のITEMカテゴリ用スタイル */
        .hamburger-nav .item-category-list {
            list-style: none;
            padding: 0;
            margin: 0;
            background-color: #fdfdfd; /* カテゴリ背景色 */
            max-height: 0; /* 初期状態で非表示 */
            overflow: hidden;
            transition: max-height 0.3s ease-out; /* アニメーション */
        }

        .hamburger-nav .item-category-list li {
            border-bottom: 1px solid #f0f0f0; /* カテゴリ内の区切り線 */
        }

        .hamburger-nav .item-category-list li:last-child {
            border-bottom: none;
        }

        .hamburger-nav .item-category-list a {
            padding: 10px 30px; /* 親リンクよりインデント */
            font-size: 14px;
            font-weight: normal; /* 親リンクと区別 */
            color: #555;
        }

        .hamburger-nav .item-category-list a:hover {
            background-color: #f0f0f0;
            color: #7B3F00;
        }

        .hamburger-nav .item-has-submenu.open .item-category-list {
            max-height: 500px; /* 開いた時の最大高さ */
        }

        /* アイテムリンクの矢印 */
        .hamburger-nav .item-has-submenu > a::after {
            content: '▼';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%) rotate(0deg);
            transition: transform 0.3s ease;
            font-size: 12px;
            color: #999;
        }

        .hamburger-nav .item-has-submenu.open > a::after {
            transform: translateY(-50%) rotate(180deg);
        }

        /* メニューオーバーレイ */
        .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999; 
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: pointer; 
}

        .menu-overlay.open {
            opacity: 1;
            visibility: visible;
        }


       

        /* コンセプト */
        .concept-section {
            padding: 60px 20px;
            text-align: center;
            background-color: #fff;
        }

     

        .concept-section p {
            font-size: 16px;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }



        .item-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .item-card {
            background-color: #fff;
            border: 1px solid #ddd;
            padding: 15px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            border-radius: 5px;
        }

        .item-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            margin-bottom: 10px;
        }

        .item-card p {
            margin: 5px 0;
            font-size: 15px;
        }

        .item-card .item-name {
            font-weight: bold;
            color: #555;
        }

        .item-card .item-price {
            color: #D62F64; /* ピンク系 */
            font-size: 16px;
        }


 .columnol {
display: flex;
justify-content: center;
flex-direction: column;
    align-items: center; 
  }

  .columnollist {
font-size: 15px;
flex-direction: column;
width: 90%;
 height: auto;
    margin: 10px 0; 
  }


        /* 最新情報　 */
         .news-section {
            width: 100%;
            max-width: 600px; 
            margin: 20px auto;
            background-color: #fff;
            padding: 20px;
            
        }

        
        

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

        .news-item {
            border-bottom: 1px solid #eee;
            font-size: 16px;
            padding: 10px 0;
        }

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

        details {
            margin-bottom: 10px;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            background-color: #fff;
        }

        summary {
            font-weight: bold;
            padding: 15px;
            padding-right: 40px;
            cursor: pointer;
            background-color: #fff;
            border-radius: 5px;
            outline: none; /* フォーカス時の点線を除去 */
            display: block; /* 矢印を制御しやすくするため */
            position: relative;
            cursor: pointer;
            transition: 0.2s; /* 変化を滑らかに */
        }

        /* ホバー時のスタイル */
        summary:hover {
            cursor: pointer; /* カーソルを指マークに */
            background-color: #f0f0f0;
        }

        /* 矢印のスタイル */
        summary::marker {
            display: none; /* デフォルトの矢印を非表示 */
        }

        summary::before {
            content: '▼'; /* 閉じたときの矢印 */
            position: absolute;
            right: 20px;
            font-size: 0.8em;
            transition: transform 0.2s ease-in-out;
        }

        details[open] summary::before {
            content: '▲'; /* 開いたときの矢印 */
            transform: rotate(0deg); /* 必要に応じて回転を調整 */
        }

        .news-content {
            padding: 15px;
            line-height: 1.6;
            color: #555;
            background-color: #fff;
            border-top: 1px solid #e0e0e0;
        }

         /* リンクのスタイル */
         .news-content a {
             color: #e0479a;
             text-decoration: none; /* 下線を消す */
        }

         .news-content a:hover {
             text-decoration: underline; /* ホバー時に下線を表示 */
}

        /* 最新情報のレスポンシブ対応 */
        @media (max-width: 768px) {


 .news-section {
        margin: 10px; /* 左右のmarginを調整 */
        padding: 15px;
        width: auto; /* 幅を自動調整 */
        max-width: none; /* 最大幅を解除 */
    }

    

    summary {
        padding: 12px;
        padding-right: 45px;
    }

    .news-content {
        padding: 12px;
    }


}



footer {
            background-color: #fcf7f7;
            color: #ffebf0;
            padding: 40px 20px;
            text-align: center;
margin-top: auto;
        }

        .footer-sns-links a {
            margin: 0 15px;
            font-size: 30px; /* アイコンサイズ */
            color: #7B3F00;
            text-decoration: none;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 20px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px 30px; /* 行間の調整と列間の調整 */
        }

        .footer-links ul li a {
            text-decoration: none;
            color: #7B3F00;
            font-size: 14px;
        }

        .copyright {
            color: #7B3F00;
            margin-top: 20px;
            font-size: 12px;
        }

        /* レスポンシブ対応 */
        @media (min-width: 1023px) {
            header {
               text-align: right;
                 padding: 0 50px;
                height: 80px; /* PC版ヘッダーの高さ */
            }

            .header-logo {
                flex-grow: 0;
            }

            .header-nav-sp {
                display: none; /* PC版では非表示 */
            }

            .header-nav-pc {
                display: block; /* PC版で表示 */
            }




            .menu-overlay {
                display: none; /* PC版では非表示 */
            }

            .main-visual {
                margin-top: 80px; /* PC版ヘッダーの高さ分下げる */
            }

            .concept-section,
            .preorder-items,
            .latest-news {
                padding: 80px 50px;
            }

           

            .item-list {
                grid-template-columns: repeat(4, 1fr); /* PC版では4列 */
            }


.columnol {

        flex-direction: row; 

        gap: 20px;
    }

  
    .columnollist {
        width: 400px; 
    }


  
  }


/* PC用検索エリアのスタイル */
.pc-search-area {
    background-color: #fcf7f7; 
    padding: 10px 0 20px 0;    
    text-align: center;        
    border-bottom: 1px solid #e0e0e0; 
    
}

.search-form {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccc;
    background: #fff;
    padding: 5px 10px;
    border-radius: 3px; /* 少し角丸に */
}

.search-form input {
    border: none;
    outline: none;
    font-family: 'Times New Roman', serif;
    font-size: 14px;
    width: 200px;
    padding: 5px;
    color: #333;
}

.search-form button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Times New Roman', serif;
    color: #896161; 
    font-weight: bold;
    font-size: 14px;
    transition: color 0.3s;
}

.search-form button:hover {
    color: #7B3F00; 
}

@media screen and (max-width: 1023px) {
    .pc-search-area {
        display: none;
    }
}


.fs-c-button--send.fs-c-button--primary,
.fs-c-button--confirmRegister.fs-c-button--primary {
    background-color: #5e4c41; 
    color: #fff;
    border: 1px solid #5e4c41;
    padding: 15px 60px;
    font-family: inherit;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 2px; 
}

.fs-c-button--send.fs-c-button--primary:hover,
.fs-c-button--confirmRegister.fs-c-button--primary:hover {
    background-color: #fff;
    color: #5e4c41;
}

.menu-icon {
    width: 50px;
    cursor: pointer;
    margin-left: 0;  
}

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

.search-button {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}
