@charset "UTF-8";
html,
body {
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333; /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  background-color: #E8E8E8;
}
.br{
	display: none;
}
@media screen and (max-width: 900px){
	.br{
	display: block;
}
}


/*❎共通TOPに戻るボタン*/
.page-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 100; /* ヘッダーやセクションより上に表示 */
    opacity: 0;   /* 最初は隠しておく */
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.page-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #fff; /* ロゴ背景色に合わせる */
    color: #1f0c06;
    text-decoration: none;
    border-radius: 50%; /* 円形 */
    font-size: 1.5rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.page-top a:hover {
    background-color: #4a2e26; /* ホバー時の色 */
}

/* クラス「active」がついた時に表示させる */
.page-top.active {
    opacity: 1;
    visibility: visible;
}

/*モバイルサイズは非表示に*/
@media (max-width: 900px) {
	
	.page-top{
		display: none;
	}
}


/*❎共通タイトル*/
.top-title {
    text-align: center;
    margin: 40px 0;
}

.top-title h1 {
    font-size: 2.5rem;
    color: #a67c52; 
    font-weight: 300; 
    letter-spacing: 0.1em; 
    margin: 0;
    position: relative;
    display: inline-block;
}

/* タイトルの下に短い線を入れる（アクセント） */
.top-title h1::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #e17b34; /* アクセントカラーのくすみブルー */
    margin: 10px auto 0;
}

/*❎共通TOPイメージ*/
.top-img{
	width: 100%;
	height: 40vh;
	object-fit: cover;
}




/*❎ヘッダー*/
header {
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;           
    top: 0;                 
    left: 0;                  
    width: 100%;               
    box-sizing: border-box;     
    z-index: 1000;            

    /* 通常時：白半透明 */
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.4s ease;
}

/* メニュー展開時：ヘッダー（ロゴ周辺）も黒半透明にする */
header.nav-open {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

main, .hero-section {
    margin-top: 80px; 
}

header img {
    height: 40px;
}

/* PCナビ */
header ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

header ul li a {
    color: #752100;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.1em;
    position: relative;
    transition: color 0.3s ease;
    padding: 5px 0;
}

/* メニュー展開時の文字色を白へ */
header.nav-open ul li a {
    color: #fff;
}

/* ✅ ホバーアニメーション（文字色） */
header ul li a:hover {
    color: #e6b17e !important;
}

/* ✅ ホバーアニメーション（オレンジのライン） */
header ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #e6b17e;
    transition: width 0.3s ease;
}

header ul li a:hover::after {
    width: 100%;
}

/* ===== ハンバーガー本体 ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
    transition: transform 0.4s ease;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background-color: #752100; 
    transform-origin: center;
    transition:
        transform 0.6s cubic-bezier(.68,-0.6,.32,1.6),
        opacity 0.4s ease,
        width 0.4s ease,
        background-color 0.3s ease;
}

.hamburger.active span {
    background-color: #ffffff; 
}

.hamburger.active { transform: rotate(90deg); }
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg) scaleX(1.15); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg) scaleX(1.15); }

/* ===== レスポンシブ ===== */
@media screen and (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    header ul {
        position: fixed;
        inset: 0;
        height: 100vh; /* 画面全体を覆う */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        
        /* 画面全体の背景色 */
        background: rgba(165, 143, 134, 0.98) !important; 
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);

        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden; 
        
        transition: 
            transform 0.5s cubic-bezier(.77,0,.18,1),
            opacity 0.5s ease,
            visibility 0.5s;
    }

    header ul.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    header ul li a {
        color: #fff !important; 
        font-size: 2.5rem;
    }
    
   
}

/*❎フッター*/
footer {background-image: url("../img/34227309_l.jpg");
  background-size: cover;
  
    color: #fff;
    margin: 0;
    padding: 40px 20px;
    text-align: left;
}

/* 見出し：両サイドにライン */
footer h3 {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer h3::before,
footer h3::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background: #fff;
    max-width: 100px;
}

footer h3::before {
    margin-right: 20px;
}

footer h3::after {
    margin-left: 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.company-info {
    margin-bottom: 30px;
}

.footer-shop {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* 各店舗セクション：上端揃えに設定 */
.shop-honten, .shop-daimaru {
    display: flex;
    gap: 20px;
    flex: 1 1 450px;
    align-items: flex-start; /* 地図とテキストの上端を揃える */
}

/* テキストエリア：pタグの余白を消して上端を合わせる */
.fshop-text {
    flex: 1;
    line-height: 1.6;
}

.fshop-text p {
    margin-top: 0; /* 👈 ブラウザ標準の余白を消して地図と揃える */
    margin-bottom: 15px;
}

/* 地図の調整 */
footer iframe {
    flex-shrink: 0;
    width: 100%;
    max-width: 250px; /* 画像のイメージに合わせ少し広めに調整 */
    height: 200px;    /* 高さを少し調整 */
    border: 0;
}

footer a {
    display: inline-block;
    margin-top: 0px;
    color: #fff;
    text-decoration: none;
    border: solid 1px #fff;
    padding: 4px 7px;
    transition: 0.3s;
    font-size: 1.2rem;
}

footer a:hover {
    background: #fff;
    color: #a58f86;
}

/* ショップ間の縦ライン (PC時) */
.shop-honten {
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    padding-right: 30px;
}

/* コピーライト */
.copyright {
    text-align: center;
    font-size: 12px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* --- レスポンシブ対応 --- */
@media (max-width: 900px) {
    .shop-honten {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        padding-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .shop-honten, .shop-daimaru {
        flex-direction: column;
        min-width: 100%;
    }
    
    footer iframe {
        max-width: 100%;
        height: 200px;
    }
}