@charset "UTF-8";
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Yu Gothic', '游ゴシック', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f8f8;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .shop-section {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            display: flex;
            min-height: 500px;
        }

        .shop-image {
            flex: 1;
            position: relative;
            overflow: hidden;
        }

        .shop-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .shop-image:hover img {
            transform: scale(1.05);
        }

        .shop-info {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .shop-title {
            font-size: 28px;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 8px;
            letter-spacing: 1px;
			font-family: Libre Baskerville, "Noto Serif JP", Yu Mincho, 游明朝, YuMincho, 游明朝体, ヒラギノ明朝 Pro W3, Hiragino Mincho Pro, HiraMinProN-W3, HGS明朝E, ＭＳ Ｐ明朝, MS PMincho, serif, Helvetica Neue, -apple-system, BlinkMacSystemFont;
        }

        .shop-subtitle {
            font-size: 16px;
            color: #7f8c8d;
            margin-bottom: 30px;
            font-weight: 300;
        }

        .button-group {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .btn {
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-primary {
            background-color: #8d7935;
            color: white;
        }

        .btn-primary:hover {
            background-color: #e4ae01;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: #ecf0f1;
            color: #2c3e50;
            border: 1px solid #bdc3c7;
        }

        .btn-secondary:hover {
            background-color: #d5dbdb;
            transform: translateY(-2px);
        }

        .info-section {
            margin-bottom: 25px;
        }

        .info-title {
            font-size: 18px;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 10px;
            border-bottom: 2px solid #aa6604;
            padding-bottom: 5px;
            display: inline-block;
			font-family:Libre Baskerville,"Noto Serif JP",Yu Mincho,游明朝,YuMincho,游明朝体,ヒラギノ明朝 Pro W3,Hiragino Mincho Pro,HiraMinProN-W3,HGS明朝E,ＭＳ Ｐ明朝,MS PMincho,serif,Helvetica Neue,-apple-system,BlinkMacSystemFont;	
        }

        .info-content {
            color: #555;
            line-height: 1.8;
				font-size:1.4rem;
        }

        .address-link {
            color: #3498db;
            text-decoration: none;
            font-weight: 500;
        }

        .address-link:hover {
            text-decoration: underline;
        }

        .hours-info {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 5px;
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .shop-section {
                flex-direction: column;
            }

            .shop-image {
                height: 300px;
            }

            .shop-info {
                padding: 30px 20px;
            }

            .shop-title {
                font-size: 24px;
            }

            .button-group {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }
        }

        /* 固定予約ボタン */
        .floating-reservation {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #8d7935;
            color: white;
            border: none;
            border-radius: 50px;
            padding: 15px 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(157, 91, 16, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .floating-reservation:hover {
            background-color: #e4ae01;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(157, 91, 16, 0.4);
        }
			
/* プライスリスト風スタイル */
.menu-section {
  max-width: 600px;
  margin: 0 auto 2em;
  padding: 1em;
  font-family:Libre Baskerville,"Noto Serif JP",Yu Mincho,游明朝,YuMincho,游明朝体,ヒラギノ明朝 Pro W3,Hiragino Mincho Pro,HiraMinProN-W3,HGS明朝E,ＭＳ Ｐ明朝,MS PMincho,serif,Helvetica Neue,-apple-system,BlinkMacSystemFont;
				font-size:1.4rem;
}

.menu-section h3 {
  font-size: 5.8rem; 
  font-weight: bold;
  color: #333;
  text-align: center;
  padding-bottom: 0.5em;
  position: relative;
  letter-spacing: 0.05em;
  border-bottom: none; 
	font-family:Libre Baskerville,"Noto Serif JP",Yu Mincho,游明朝,YuMincho,游明朝体,ヒラギノ明朝 Pro W3,Hiragino Mincho Pro,HiraMinProN-W3,HGS明朝E,ＭＳ Ｐ明朝,MS PMincho,serif,Helvetica Neue,-apple-system,BlinkMacSystemFont;
}

.menu-section h3::after {
  content: "";
  display: block;
  height: 3px;
  background-color: #aa6604;
  margin: 0.5em auto 0;
}

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

.menu-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.6em 0;
  border-bottom: 1px dashed #ddd;
}

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

.menu-name {
  font-size: 1.05em;
  color: #555;
}

.menu-price {
  font-size: 1.05em;
  color: #111;
  font-weight: bold;
}

/* レスポンシブ対応 */
@media (max-width: 480px) {
  .menu-section {
    padding: 0.8em;
  }
  .menu-section h3 {
    font-size: 1.2em;
  }
  .menu-list li {
    flex-direction: column;
    align-items: flex-start;
  }
  .menu-price {
    margin-top: 0.3em;
  }
}
			
.menu-category-label {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  background-color: #8d7935;
  display: inline-block;
  padding: 0.4em 1em;
  border-radius: 20px;
  margin: 3em 0 0.5em;
  text-align: center;
}			
			
