/* General Body Styles */
body {
    font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f7f3e9;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}
.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
.hero-title {
    font-size: 3em;
    font-weight: bold;
    margin: 0;
}
.hero-subtitle {
    font-size: 1.5em;
    margin-top: 10px;
}

/* Layout */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Content Sections */
.content-section {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.section-title {
    font-size: 1.8em;
    color: #4b3832;
    border-bottom: 3px solid #805e46;
    padding-bottom: 5px;
}
.section-title.with-margin {
    margin-bottom: 30px;
}
.text-indent {
    text-indent: 1em;
}
.list-item {
    margin-bottom: 10px;
}

/* Product List */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.product-card {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-content {
    text-align: center;
}
.product-image {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 5px;
    margin: 0 auto;
}
.product-name {
    font-size: 1.2em;
    color: #4b3832;
    margin-top: 15px;
    margin-bottom: 5px;
}
.product-distillery {
    font-size: 0.8em;
    color: #666;
    margin-bottom: 5px;
}
.product-price {
    font-size: 1em;
    color: #805e46;
    font-weight: bold;
    margin-bottom: 10px;
}
.product-price.large {
    font-size: 1.2em;
}
.product-description {
    font-size: 0.9em;
    margin-bottom: 10px;
}

/* Buttons */
.button-container {
    padding-top: 15px;
}
.btn {
    display: block;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9em;
    text-align: center;
    transition: background-color 0.3s;
}
.btn-official {
    padding: 10px 15px;
    background-color: #d35400;
    color: #ffffff;
    margin-bottom: 8px;
    border: 2px solid #e67e22;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.btn-official:hover {
    background-color: #e67e22;
}
.badge-off {
    font-size: 0.8em;
    background-color: #fff;
    color: #d35400;
    padding: 1px 4px;
    border-radius: 3px;
    margin-left: 5px;
}
.ec-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.btn-ec {
    padding: 8px 15px;
    background-color: #805e46;
    color: #ffffff;
}
.btn-ec:hover {
    background-color: #9a7c66;
}


.container .header {
	float: left;
	width: 240px;
}
.container .navbtn {
	float: left;
	width: 500px;
}
.container .navbtn ul{

}
.container .navbtn ul li{
	float: left;
	list-style-position: outside;
	list-style-type: none;
}
.container .navbtn ul li a{
	padding-right: 10px;
	padding-left: 10px;
	list-style-type: none;
	text-decoration: none;
	font-size: 12px;	
}

@media (max-width: 999px) {
.container .navbtn {
	float: left;
	width: 100%;
}
.container .navbtn ul li {
	padding-right: 5px;
	padding-left: 5px;
}

}
.text12{
	font-size: 12px;
}