body{
	padding:0;
	margin:0;
}

/* =========================================
   ヘッダー (Header) - ペライチ完全再現版
========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    /* 画像から確認できる、境界を区切る明確な下線 */
    border-bottom: 1px solid #111111; 
    z-index: 1000;
}

.header-inner-wrap {
    display: flex;
    justify-content: center; /* 画像の通りテキストを中央寄せ */
    align-items: center;
    width: 100%;
    height: 60px;
	box-sizing:border-box;
}

/* PC用ナビゲーション */
.header__nav {
    display: block;
}

.header__nav-inner {
    display: flex;
    align-items: center;
}

.js-nav-link {
    text-decoration: none;
    color: #333333;
    font-size: 14px;
    font-family: 'Noto Serif JP', serif; /* 高級感のある明朝体を適用 */
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

/* HTMLを変更せず、CSSのみでリンクの間にスラッシュ（/）を挿入 */
.js-nav-link:not(:last-child)::after {
    content: '/';
    margin: 0 20px; /* スラッシュ左右の余白（画像のバランスを再現） */
    color: #666666; /* スラッシュはテキストより少しだけ色を落として品良く */
    font-weight: 300;
}

.js-nav-link:hover {
    color: #C5A059; /* 高級感を出すため、ホバー時のみブランドカラーに */
}

/* ハンバーガーボタン（PC時は非表示） */
.header__hamburger {
    display: none;
}

/* =========================================
   レスポンシブ対応（スマートフォン用）
   ※画像から判断できないため、前回のハンバーガーメニューの挙動を維持
========================================= */
@media screen and (max-width: 768px) {
    .header-inner-wrap {
        justify-content: flex-end; /* スマホ時はボタンを右寄せ */
        padding: 0 20px;
    }

    .header__hamburger {
        display: block;
        background: transparent;
        border: none;
        cursor: pointer;
        width: 32px;
        height: 20px;
        position: relative;
        z-index: 1001;
    }

    .header__hamburger span {
        display: block;
        position: absolute;
        width: 100%;
        height: 1px;
        background-color: #333333;
        transition: all 0.3s ease;
    }

    .header__hamburger span:nth-of-type(1) { top: 0; }
    .header__hamburger span:nth-of-type(2) { top: 50%; transform: translateY(-50%); }
    .header__hamburger span:nth-of-type(3) { bottom: 0; }

    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .header__nav.is-active {
        opacity: 1;
        visibility: visible;
    }

    .header__nav-inner {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    /* スマホの縦並びメニュー時はスラッシュを非表示にする */
    .js-nav-link:not(:last-child)::after {
        display: none;
    }

    .js-nav-link {
        font-size: 18px;
    }

    .header__hamburger.is-active span:nth-of-type(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    .header__hamburger.is-active span:nth-of-type(2) {
        opacity: 0;
    }
    .header__hamburger.is-active span:nth-of-type(3) {
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
    }
}

.lp_body{
	width:100%;
}
.lp_body img{
	width:100%;
}

/*■レスポンシブル*/ 
@media screen and (max-width: 1025px) 
{
	.lp_body
	{
		margin-top:60px;
	}
	
}

/* =========================================
   カルーセル (追加・修正部分)
========================================= */
.carousel {
    padding: 80px 0; /* 上下の余白で高級感を演出 */
    background-color: #FAFAFA; /* メインコンテンツと少し背景色を変えてメリハリを */
    overflow: hidden; /* 画面外のはみ出しを隠す */
}

.carousel h2 {
    text-align: center;
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    color: #111111;
}

.carousel h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: #C5A059; /* ゴールドのアクセント */
    margin: 16px auto 0;
}

.carousel-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    /* overflow: hidden; は削除し、下の余白を確保 */
    padding-bottom: 40px; 
}

/* 画像のはみ出しを隠す役割はこちらのラッパーに移動 */
.carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
    border-radius: 2px;
}

/* 矢印ボタンのエレガントな装飾 */
.carousel-btn {
    position: absolute;
    top: calc(50% - 20px); /* 画像の縦中央（下のドット余白分を考慮） */
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #E0E0E0;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.carousel-btn:hover {
    background-color: #C5A059;
    border-color: #C5A059;
}

/* 矢印アイコン（画像を使わずCSSのみでシャープに描画） */
.carousel-btn::before {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #333333;
    border-right: 2px solid #333333;
    transition: border-color 0.3s ease;
}

.carousel-btn:hover::before {
    border-color: #FFFFFF;
}

.prev-btn { left: -22px; }
.prev-btn::before {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.next-btn { right: -22px; }
.next-btn::before {
    transform: rotate(45deg);
    margin-right: 4px;
}

/* ドットインジケーター */
.carousel-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    background-color: #DDDDDD;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.carousel-dot:hover {
    background-color: #DFB96E;
}

.carousel-dot.is-active {
    background-color: #C5A059;
    transform: scale(1.3); /* 現在位置を少し大きくして上品に強調 */
}

/* 欠落していたカルーセル内部のレイアウト用CSS */
.carousel-track {
    display: flex;
    width: 100%;
}

.carousel-slide {
    flex: 0 0 100%; /* 1枚につきコンテナの100%の幅を取る */
    width: 100%;
    padding: 0 15px; /* 左右に少し余白を持たせる */
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* 高級感のある柔らかな影 */
}

/* スマホ表示時の矢印位置調整 */
@media screen and (max-width: 768px) {
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
}

/* =========================================
  取扱店舗一覧
========================================= */
.store_list{
	width:60%;
	margin:0 auto;
}
.store_list h2{
	 text-align: center;
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    color: #111111;
}

.carousel h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: #C5A059; /* ゴールドのアクセント */
    margin: 16px auto 0;
}

.store_list h3{
	font-size:40px;
}
.area_list{
	width:80%;
	margin:0 auto;
}
.area_list:after{
	content				:"";
	display				:block;
	clear					:both;
}

.linkBox{
	float:left;
	position:relative;
	width:calc(100% / 4);
	text-align:center;
}
.linkBox img{
	width:30px;
	height:30px;
}
.linkBox p{
	font-size:10px;
}
.linkBox a{
	position:absolute;
	inset:0;
}


/* =========================================
   お問い合わせセクション (.contact)
========================================= */
.contact {
    /* 上下にたっぷりと余白を取り、優雅さを演出 */
    padding: 80px 20px;
    background-color: #FFFFFF;
    color: #333333;
	box-sizing:border-box;
}

.contact h2 {
    text-align: center;
    /* 読み込んでいるセリフ体フォントを適用して高級感を */
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    color: #111111;
}

/* 見出しの下に上品なゴールドのアクセントラインを配置 */
.contact h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: #C5A059;
    margin: 16px auto 0;
}

.contact p {
    text-align: center;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #666666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact form {
    /* フォーム幅を制限し、中央寄せに */
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333333;
    letter-spacing: 0.05em;
}

/* 入力エリアの共通スタイル */
.contact input[type="text"],
.contact input[type="email"],
.contact select,
.contact textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #E0E0E0;
    border-radius: 2px;
    background-color: #FAFAFA;
    font-family: inherit;
    transition: all 0.3s ease;
	box-sizing:border-box;
}

/* 入力時のフォーカス効果（ゴールドの枠線） */
.contact input[type="text"]:focus,
.contact input[type="email"]:focus,
.contact select:focus,
.contact textarea:focus {
    outline: none;
    border-color: #C5A059;
    background-color: #FFFFFF;
    box-shadow: 0 0 8px rgba(197, 160, 89, 0.15);
}

.contact textarea {
    min-height: 180px;
    resize: vertical; /* 縦方向のみリサイズ可能に */
}

/* 送信ボタン（ブランドカラーを引き立たせる） */
.contact button {
    margin-top: 30px;
    padding: 18px 40px;
    background-color: #111111;
    color: #FFFFFF;
    border: none;
    font-size: 16px;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 2px;
    width: 100%;
    max-width: 300px;
    align-self: center; /* ボタンを中央寄せ */
}

.contact button:hover {
    background-color: #C5A059; /* ホバー時にゴールドへ */
}

/* 必須マークのデザイン（上品なゴールドバッジ） */
.required::after {
    content: '必須';
    display: inline-block;
    background-color: #C5A059;
    color: #FFFFFF;
    font-size: 11px;
    padding: 2px 8px;
    margin-left: 12px;
    vertical-align: middle;
    border-radius: 2px;
    letter-spacing: 0.05em;
}

/* チェックボックスのラベル調整 */
.checkbox_label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    color: #555555;
    margin-bottom: 0;
}

.checkbox_label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #C5A059; /* チェック時の色をゴールドに */
    cursor: pointer;
}

footer{
	width:100%;
	text-align:center;
}

footer p{
	font-size:14px;
	line-height:1.6;
}

/* =========================================
   レスポンシブ対応（スマートフォン用：後半セクション）
========================================= */
@media screen and (max-width: 768px) {
    /* カルーセル・各セクション共通の見出し調整 */
    .carousel {
        padding: 60px 0; /* スマホでは上下の余白を少し詰める */
    }
    
    .carousel h2, 
    .store_list h2, 
    .contact h2 {
        font-size: 24px; /* 見出しサイズをスマホの画面幅に最適化 */
        margin-bottom: 24px;
    }

    /* 取扱店舗一覧のスマホ調整 */
    .store_list {
        width: 90%; /* PC版の60%から広げ、画面幅を有効活用 */
    }
    
    .store_list h3 {
        font-size: 20px; /* 40pxからスマホサイズへ調整 */
        text-align: center;
        margin-top: 30px;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid #E0E0E0; /* エリアごとに区切り線を入れて見やすく */
    }
    
    .area_list {
        width: 100%; /* PC版の80%から広げる */
        display: flex;
        flex-wrap: wrap; /* floatを解除し、要素が折り返すように設定 */
        margin-bottom: 40px;
    }
    
    .linkBox {
        float: none; /* PC版のfloatを無効化 */
        width: 50%; /* スマホでは2列（100%の半分）で表示 */
        padding: 0 10px 20px;
        box-sizing: border-box;
    }
    
    .linkBox img {
        margin-bottom: 8px; /* アイコンとテキストの間に余白を追加 */
    }
    
    .linkBox p {
        font-size: 12px; /* スマホで読みやすい文字サイズ */
        line-height: 1.6;
    }

    /* お問い合わせフォームのスマホ調整 */
    .contact {
        padding: 60px 20px;
    }
    
    .contact p {
        text-align: left; /* 長文の説明書きはスマホでは左揃えの方が可読性が高いです */
        margin-bottom: 40px;
    }
    
    .contact button {
        width: 100%;
        max-width: none; /* スマホではボタンを横幅いっぱいに広げて押しやすくする */
    }
}