@charset "UTF-8";

/*

ThemeColor
	main #;
	sub #;
	
*/
/*=================================
	common
=================================*/
html {
    background: #000;
}
body {
    margin: 0;
    padding: 0;
    color: #222;
    font-size: 14px;
	font-weight: 300;
	word-wrap: break-word;
	word-break: break-all;
	animation: fadeIn 1.0s ease 0s 1 normal;
    font-family: "Noto Serif JP", serif;
	background: #000;
}
.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
    display: inline-block;
    vertical-align: middle;
}
*:focus {
  outline: none !important;
}
a{
  outline:none;
  color: #0570DE;
  font-weight: 600;
}
a:hover{
  outline:none;
}
a:active{
  outline:none;
}
a:link{
  outline:none;
}
a:visited{
  outline:none;
}
table {
	word-break: break-all;
}
dt, dd {
	word-break: break-all;
}
img {
	width: auto\9;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
	border: 0;
	-ms-interpolation-mode: bicubic;
}
.clear {
	clear: both;
}
/*=================================
	#keyframe
=================================*/
.slideUp {
    animation-name: slideUp;
    animation-duration: 1s;
    animation-timing-function: ease;
}

.fadein {
	animation: fadeIn 1.2s ease 0s 1 forwards;
}
.fadeinSlow {
	animation: fadeInSlow 2s ease 0s 1 normal;
}

.fadeout {
	animation: fadeOut 1s ease 0s 1 normal;
}
@keyframes slideUp {
    0% {
        transform: translateY(16px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes slideDown44 {
    0% {
        transform: translateY(-44px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

@keyframes fadeInSlow {
	0% {opacity: 0}
	100% {opacity: 1}
}

@keyframes fadeOut {
	0% {opacity: 1}
	100% {opacity: 0}
}
.bound {
  animation: bound 3s infinite;
}
 
@keyframes bound {
  0% { transform:translateY(0) }
  5% { transform:translateY(0) }
  10% { transform:translateY(0) }
  20% { transform:translateY(-8px) }
  25% { transform:translateY(0) }
  30% { transform:translateY(-4px) }
  50% { transform:translateY(0) }
  100% { transform:translateY(0) }
}
.swing {
    animation: swing 3s .45s;
}

@keyframes swing {
    0%,100% { 
        -webkit-transform-origin: bottom center; 
    }
    10% { -webkit-transform: rotate(-15deg); }  
    20% { -webkit-transform: rotate(10deg); }
    30% { -webkit-transform: rotate(-5deg); }   
    40% { -webkit-transform: rotate(5deg); }    
    50% { -webkit-transform: rotate(-3deg); }

    60% { -webkit-transform: rotate(2deg); }
    70% { -webkit-transform: rotate(-2deg); }
    80% { -webkit-transform: rotate(1deg); }
    90% { -webkit-transform: rotate(-1deg); }
    100% { -webkit-transform: rotate(0deg); }
}

.swing-reverse {
    animation: swing-reverse 3s .45s;
}

@keyframes swing-reverse {
    0%,100% { 
        -webkit-transform-origin: top center; 
    }
    10% { -webkit-transform: rotate(-15deg); }  
    20% { -webkit-transform: rotate(10deg); }
    30% { -webkit-transform: rotate(-5deg); }   
    40% { -webkit-transform: rotate(5deg); }    
    50% { -webkit-transform: rotate(-3deg); }

    60% { -webkit-transform: rotate(2deg); }
    70% { -webkit-transform: rotate(-2deg); }
    80% { -webkit-transform: rotate(1deg); }
    90% { -webkit-transform: rotate(-1deg); }
    100% { -webkit-transform: rotate(0deg); }
}

.zoomIn {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.rotateY {
	animation: rotateY 1.5s ease 0s 1 normal;
}

/* Y軸回転アニメーション */
@keyframes rotateY {
  0% {
    transform: rotateY(235deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
/*=================================
	#animation
=================================*/
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-up {
  transform: translateY(30px);
}

.slide-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-scale {
  transform: scale(0.95);
}

.fade-in-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

.slide-down {
  transform: translateY(-30px);
}

.slide-down.in-view {
  opacity: 1;
  transform: translateY(0);
}

#contents_menu .menu-item.animate-on-scroll.horizontal-item,
ul.info-bn-lists > li.animate-on-scroll.horizontal-item {
  opacity: 0 !important;
  visibility: hidden;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  pointer-events: none;
}

/* 個別の遅延時間を設定 */
#contents_menu .menu-item.animate-on-scroll.item1.in-view,
ul.info-bn-lists > li.animate-on-scroll.item1.in-view {
  opacity: 1 !important;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0.2s; /* 最初の要素は少し遅らせる */
}

#contents_menu .menu-item.animate-on-scroll.item2.in-view,
ul.info-bn-lists > li.animate-on-scroll.item2.in-view {
  opacity: 1 !important;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0.4s; /* 2番目の要素はさらに遅らせる */
}

#contents_menu .menu-item.animate-on-scroll.item3.in-view,
ul.info-bn-lists > li.animate-on-scroll.item3.in-view {
  opacity: 1 !important;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0.6s; /* 3番目の要素はさらに遅らせる */
}

#contents_menu .menu-item.animate-on-scroll.item4.in-view,
ul.info-bn-lists > li.animate-on-scroll.item4.in-view {
  opacity: 1 !important;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0.8s; /* 4番目の要素は最も遅らせる */
}

#contents_menu .menu-item.animate-on-scroll.item5.in-view,
ul.info-bn-lists > li.animate-on-scroll.item5.in-view {
  opacity: 1 !important;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 1.0s; /* 5番目の要素は最も遅らせる */
}
/*=================================
    first view
=================================*/
.first-block {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #000;
}

/* 背景画像とオーバーレイ */
.first-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
}

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

.first-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 5;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* 基本は透明 */
    z-index: 1;
    clip-path: inset(0 0 0 100%);
    filter: blur(20px);
    /* opacityの遷移をなくすか、clip-pathより早くすることで暗くなるのを防ぐ */
    transition: clip-path 1.4s cubic-bezier(0.65, 0, 0.35, 1),
                filter 1.8s ease-out;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 画像自体は動かさない（固定感） */
    transform: scale(1.05); /* ほんの少し大きくしておくと高級感が出ます */
}

/* アクティブ（今まさに上から重なってくる画像） */
.slide-item.is-active {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    filter: blur(0);
    z-index: 3; /* 最前面 */
}

/* 直前の画像（新しい画像が重なるまで、そのままの状態で下に居座る） */
.slide-item.is-prev {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    filter: blur(0);
    z-index: 2; /* is-activeのすぐ下 */
}

/* それ以外の待機中の画像（次に備えて右側にこっそり戻しておく） */
/* transitionをnoneにして瞬時に右側へ戻すのがコツ */
.slide-item:not(.is-active):not(.is-prev) {
    transition: none;
    clip-path: inset(0 0 0 100%);
    opacity: 0;
}

.first-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10; /* ここを十分に大きくする */
}

.square-box {
    width: 480px; /* 正方形のサイズ */
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

/*=================================
    main layout
=================================*/
.container {
    margin: 0 auto;
    max-width: 1440px;
}
#main {
    /* border-top: 3px solid #000; */
}
#main_contents {
    margin: 0;
    padding: 0;
    background: #000;
}
/*=================================
    Contents Summary
=================================*/
#contents_summary {
    /* display: flex;
    justify-content: center;
    align-items: center; */
    width: 100%;
    height: 100%;
    /* padding: 60px 0;
    padding-bottom: 0; */
    color: #fff;
    /* background: url("../img/common/back_black_v3.png") bottom center no-repeat; */
    background: #111;
    background-size: cover;
}

.summary-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%; /* テキストと画像の間の距離 */
}

/* 縦書きテキストエリア */
.summary-text-box {
    width: 30%;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.3em;
    text-shadow: 0 1px 10px #000;
}

.summary-text-box h2 {
    margin: 0;
    margin-right: 20px;
    margin-left: 20px;
    padding: 0;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.5;
    /* writing-mode: vertical-rl; */
}
.summary-text-box h2 span {
    color: #d4b67b;
}

.summary-catch {
    font-size: 1.2rem;      /* 文字サイズ（適宜調整） */
    line-height: 1.5;      /* 行間を広めに取ると和風らしくなります */
    margin: 0;
}

/* 画像エリア */
.summary-image-box {
    width: 70%; /* 幅の指定 */
    max-height: 600px;
    overflow: hidden;
}
    .summary-image-box img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        /* border-radius: 2px;
        border: 1px solid rgba(0,0,0,0.5);
        box-shadow: 0 10px 30px 0 rgba(0,0,0,0.3); */
    }

.summary-image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
/*=================================
    Contents Menu
=================================*/
#contents_menu {
    height: 100%;
    padding: 60px 0;
    color: #fff;
    background: url("../img/common/back_black_v2.png") bottom center no-repeat;
    background-size: cover;
}

/* セクションタイトル（お品書き） */
.menu-main-title {
    font-size: 2.5rem;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 32px;
    letter-spacing: 0.3em;
    color: #fff; /* ゴールド系のアクセントカラー #d4b67b */
    /* writing-mode: vertical-rl; */
    text-orientation: mixed;
}

.menu-catch {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.5;
    margin: 0;
    margin-bottom: 16px;
}

/* メニューリスト（3カラム） */
.menu-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 16px;
}

.menu-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    /* background: rgba(0,0,0, 0.5); */
    border: 1px solid rgba(212, 182, 123, 0.3); /* 薄い金の境界線 */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px 0 rgba(0,0,0,0.3);
}

.menu-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 182, 123, 1);
}

/* 画像エリア */
.menu-image {
    width: 100%;
    aspect-ratio: 3 / 4; /* 画像を縦長に保つ */
    overflow: hidden;
}

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

/* テキストエリア */
.menu-info {
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.menu-title {
    font-size: 1.2rem;
    margin: 0;
    margin-bottom: 15px;
    padding: 0;
    letter-spacing: 0.1em;
}

.menu-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* 詳しく見るボタン */
#contents_menu .btn-more {
    display: inline-block;
    padding: 12px 40px;
    background-color: #8c7042; /* 茶・金系のボタン色 */
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: background-color 0.3s;
    border: 1px solid transparent;
    box-shadow: 0 10px 30px 0 rgba(0,0,0,0.3);

    position: relative;
    z-index: 10;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.btn-more:hover {
    background-color: #b3945a;
}

.menu-item.in-view {
    pointer-events: auto !important;
}

/*=================================
    Media Query
=================================*/
@media all and (max-width: 992px) {
    #contents_menu {
        padding-bottom: 0;
    }
    .menu-main-title {
        margin-bottom: 16px;
        font-size: 2rem;
    }
    .menu-list {
        flex-direction: column;
        gap: 50px;
    }

    .menu-item {
        max-width: 500px;
        margin: 0 auto;
    }

    .menu-image {
        aspect-ratio: 16 / 9; /* スマホでは横長の方が見やすい */
    }
}

/*=================================
    Menu Modal Animation & Style
=================================*/
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999; /* 最前面に */
}

/* モーダル表示時のふわっとしたアニメーション */
.modal.is-active {
    display: flex !important;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.4s ease-out forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* 背景を少し暗めに */
    cursor: pointer;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 95vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #000;
    z-index: 10000;
}

/* 閉じるボタン（×）の配置用コンテナ */
#menu_modal .modal-close {
    position: absolute;
    top: 15px; /* バナーの端から少し離す */
    right: 15px;
    width: 40px; /* ボタンのサイズ */
    height: 40px;
    background-color: rgba(0, 0, 0, 1.0); /* 透明な黒い丸背景を作る */
    color: #fff; /* バツ印の色 */
    border: 1px solid rgba(212, 182, 123, 0.5); /* 薄い金の丸枠を追加 */
    border-radius: 50%; /* 丸くする */
    font-size: 32px; /* バツ印の大きさ */
    line-height: 38px; /* 垂直方向の中央揃え（widthより少し小さく） */
    text-align: center; /* 水平方向の中央揃え */
    cursor: pointer;
    z-index: 10001; /* バナーの上に */
    transition: all 0.3s ease; /* アニメーション用 */
    backdrop-filter: blur(2px); /* 背景をうっすらぼかす（モダンなブラウザ向け） */
}

/* ホバー（またはスマホでのタップ）時のデザイン */
#menu_modal .modal-close:hover {
    background-color: #fff; /* 背景をテーマカラーの金にする */
    color: #000; /* バツ印を黒にする */
    border-color: #fff;
    transform: rotate(90deg) scale(1.1); /* 90度回転しながら少し大きく */
}

.modal-close:hover {
    transform: scale(1.2);
    color: #d4b67b;
}

/* .modal-header {
    position: relative;
    width: 100%;
    height: 70px;
    background-color: #1a1a1a;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#modal_banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
} */

.modal-header {
    width: 100%;
    flex-shrink: 0;
}
    .modal-header img {
        width: 100%;
    }

/* バックアップ用テキストタイトル */
.modal-title-text {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.2em;
    /* 万が一画像が読み込まれなくても、このテキストが中央に見える */
}

/* スマホではバナーを少し低くする */
@media screen and (max-width: 768px) {
    .modal-header {
        min-height: 70px !important;
    }
    .modal-title-text {
        font-size: 18px;
    }
}

.modal-body {
    flex-grow: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
}

/* スマホ対応（画面いっぱい） */
@media screen and (max-width: 768px) {
    .modal-content {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border: none;
    }
    
    .modal-body {
        padding: 10px;
    }

    #menu_modal .modal-close {
        top: 7px; /* スマホ用に位置を微調整 */
        right: 10px;
        width: 40px; /* 少し大きくしてタップしやすく */
        height: 40px;
        font-size: 28px;
        line-height: 38px;
        background-color: rgba(0, 0, 0, 0.7); /* スマホでは背景を少し濃く */
    }
}
@media all and (max-width: 576px) {
    .modal-header {
        min-height: 70px !important;
    }
}
/*=================================
    Contents Footer (店舗概要 & インフォ)
=================================*/
#contents_footer {
    position: relative;
    color: #fff;
    border-top: 1px solid #d4b67b;
}

/* --- ビジュアルエリア --- */
.shop-summary-visual {
    position: relative;
    padding: 60px 0;
    height: 100%;
    text-align: center;
    background: url("../img/top/footer_visual_image_v2.png") center center no-repeat;
    background-size: cover;
}

.visual-title {
    font-size: 2.5rem;
    margin: 0;
    margin-bottom: 30px;
    letter-spacing: 0.3em;
    color: #fff;
    text-shadow: 0 1px 0 #000;
}

.visual-catch {
    font-size: 2rem;
    /* font-weight: 600; */
    line-height: 2;
    text-shadow: #000 1px 0 10px;
    /* margin-bottom: 120px; */
    letter-spacing: 0.1em;
}

.visual-logo {
    width: 120px;
    margin: 0 auto;
    margin-bottom: 16px;
}
    .visual-logo img {
        width: 100%;
    }

.visual-info {
    padding: 32px 16px;
    color: #fff;
    font-size: 1.1rem;
    line-height: 2.0;
    background: rgba(0,0,0,0.15);
}

/*=================================
    Shop Gallery (Grid Layout)
=================================*/
#shop_gallery {
    padding: 30px 0;
    background: url("../img/common/body.jpg") center center repeat;
    /* background: #000; */
    /* background: #fff; */
}

.gallery-floor {
    max-width: 1440px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.gallery-container {
    display: grid;
    /* PC: 基本は4列 */
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px; /* 1行の高さ */
    gap: 1px;
    max-width: 1440px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

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

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

.gallery-address {
    margin-top: 30px;
}

/* --- PC用の特殊な配置 --- */

/* 横に2つ分使う画像（一番上のティーカップなど） */
.item-large-horiz {
    grid-column: span 2;
}

/* 縦に2つ分使う画像（右側の急須など） */
.item-tall {
    grid-row: span 2;
}

/* 中央の大きな画像（お肉など） */
.item-large-square {
    grid-column: span 2;
    grid-row: span 2;
}

/*=================================
    Responsive (Mobile)
=================================*/
@media all and (max-width: 768px) {
    #shop_gallery {
        padding: 1px;
    }
    .gallery-container {
        /* スマホ: 2列に変更 */
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px; /* スマホ用に高さを調整 */
        gap: 1px;
    }

    .gallery-address {
        margin-top: 0;
    }

    /* スマホでは特殊な結合を解除、または調整する */
    .item-large-horiz {
        grid-column: span 2; /* スマホでも1段目は横長を維持 */
    }

    .item-tall {
        grid-row: span 2; /* 右側の急須は縦長を維持 */
    }

    .item-large-square {
        grid-column: span 2;
        grid-row: span 2;
    }
}

/*=================================
    Lightbox Style
=================================*/
.lightbox {
    display: none; /* 通常は隠す */
    position: fixed;
    z-index: 2000; /* ヘッダーより上に */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox.is-active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border: 2px solid #000;
}

/* 閉じるボタン */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

/* 前へ・次へボタン */
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 20px 15px;
    cursor: pointer;
    font-size: 24px;
    transition: background 0.3s;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(212, 182, 123, 0.5);
}

.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

/* アニメーションの定義 */
@keyframes lightboxFade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 画像に適用 */
#lightbox_img {
    /* JSで制御するため、ここでは初期設定のみ */
    transition: opacity 0.3s ease;
}

/* タッチ操作を考慮し、ボタンを少し大きく、押しやすくするとベターです */
@media screen and (max-width: 768px) {
    .lightbox-prev, .lightbox-next {
        padding: 30px 20px;
        background: rgba(0, 0, 0, 0.3); /* スマホでは少し背景を濃く */
    }
}

/* スマホ対応：ボタンを画像の中に配置 */
@media screen and (max-width: 768px) {
    .lightbox-prev { left: 0; }
    .lightbox-next { right: 0; }
}

/* --- インフォメーションバー --- */
.shop-info-bar {
    background: url("../img/common/back_black_v3.png") bottom center no-repeat;
    background-size: cover;
    border-top: 1px solid #d4b67b;
    padding: 60px 8px;
}

.info-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-logo {
    flex: 1;
    margin: 0 auto;
    text-align: center;
}

.info-logo img {
    max-width: 220px;
}

.info-bn {
    flex: 1;
    padding: 16px;
}

.info-bn ul.info-bn-lists {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .info-bn ul.info-bn-lists > li {
        margin-bottom: 16px;
    }
    .info-bn ul.info-bn-lists > li:last-child {
        margin-bottom: 0;
    }
    .info-bn ul.info-bn-lists > li {
        max-width: 400px;
    }

.info-bn ul.info-bn-lists > li a,
.info-bn ul.info-bn-lists > li .btn-more {
    position: relative;
    z-index: 10;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.info-bn ul.info-bn-lists > li .in-view {
    pointer-events: auto !important;
}

.info-address {
    flex: 1;
    padding: 16px;
}

.info-label {
    font-size: 1rem;
    font-weight: 600;
    color: #d4b67b;
    margin-bottom: 8px;
    text-align: center;
}

.info-tel {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.info-bn-yoyaku {
    margin-bottom: 15px;
}

.info-tel a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.info-address, .info-time, .info-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #ccc;
    text-align: center;
}

/*=================================
    SNS Icon Style
=================================*/
.info-sns {
    padding: 20px 0;
}

/* SNSリスト全体のスタイル */
.sns-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sns-list li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

/* アイコン部分の調整 */
.sns-list li a i {
    font-size: 30px; /* アイコンの大きさ */
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.sns-list li a .sns-name {
    font-size: 11px;
    letter-spacing: 0.1em;
}

/* ホバー時の挙動（お品書きボタン等と統一） */
.sns-list li a:hover {
    color: #d4b67b;
}

.sns-list li a:hover i {
    border-color: #d4b67b;
    background-color: rgba(212, 182, 123, 0.1);
    transform: scale(1.1);
}

/*=================================
    Media Query
=================================*/
@media all and (max-width: 992px) {
    #contents_footer {
        border-top: none;
    }
    .shop-info-bar {
        padding: 30px 8px;
        border-top: none;
    }
    #shop_gallery {
        padding: 0;
        background: #000;
    }
    .gallery-floor {
        margin-bottom: 1px;
    }
    .visual-inner, .info-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .visual-title {
        font-size: 2rem;
    }

    .visual-catch {
        padding: 0 16px;
        font-size: 1.5rem;
    }

    .visual-text, .visual-image {
        width: 100%;
    }

    .visual-image img {
        height: 250px;
    }

    .shop-info-bar {
        gap: 40px;
        display: flex;
        flex-direction: column;
    }
    
    .info-inner {
        gap: 0px;
    }

    .info-logo img {
        margin-bottom: 0;
        max-width: 100px;
    }

    .info-bn {
    flex: 1;
        padding: 0;
    }

    .info-bn ul.info-bn-lists > li img {
        /* max-width: 300px; */
    }
}
/*=================================
    footer
=================================*/
#footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0;
    width: 100%;
}

.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

/* メニューの横並び設定 */
.footer-nav {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
    flex-wrap: wrap; /* 折り返し許可 */
}

.footer-nav li {
    margin: 0 15px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease; /* ホバー時のふわっとした変化 */
}

.footer-nav a:hover {
    opacity: 0.6; /* マウスを載せた時に少し透かす */
}

/* コピーライト */
.copyright {
    font-size: 0.8rem;
    color: #aaa; /* 少しグレーにして視認性とデザイン性を両立 */
    letter-spacing: 0.1em;
}

/*=================================
    media query
=================================*/
/* タブレット・スマホサイズ（1024px以下） */
@media all and (max-width: 1024px) {
    .summary-catch {
        font-size: 1.5rem;
    }
    .square-box {
        width: 70%; /* スマホ時は画面幅に合わせて少し縮小 */
        max-width: 250px;
    }
    #contents_summary {
        padding: 32px 0;
        padding-bottom: 0;
    }
    .summary-inner {
        flex-direction: column; /* 縦並びに変更 */
        gap: 30px;
    }

    .summary-text-box {
        width: 100%;
        text-align: center; /* スマホでは中央揃えが綺麗です */
        margin-bottom: -100px;
        margin-right: 50%;
        z-index: 10;
    }
    .summary-text-box h2 {
        font-size: 2rem;
    }

    .summary-catch {
        font-size: 1.2rem;
        line-height: 1.8;
    }

    .summary-image-box {
        width: 100%;
    }

    .menu-catch {
        font-size: 0.85rem;
    }
    
    .menu-list {
        gap: 16px;
    }
    #footer {
        padding: 40px 0;
    }
    .footer-nav {
        flex-direction: column; /* 縦並びにする */
        align-items: center;
        gap: 15px; /* メニュー間の余白 */
    }
    .footer-nav li {
        margin: 0;
    }
}
@media all and (max-width: 768px) {

}
@media all and (max-width: 576px) {

}