.btn-shop-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.btn-shop-header:hover {
    background-color: #6d1616;
    color: #fff;
}

/* --- ヒーローセクション --- */
.hero {
    height: 600px;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/fv.jpeg'); /* ※ここに実際の牛たん画像を入れます */
    background-size: cover;
    background-position: center 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero-content p {
    font-size: 1.2rem;
    font-family: 'Zen Old Mincho', serif;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

/* --- こだわり --- */
.kodawari {
    padding: 80px 0;
}

.kodawari-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

/* 流儀用に追加スタイル（画像位置変更用） */
.kodawari-wrapper.reverse {
    flex-direction: row-reverse;
}

.kodawari-img {
    flex: 1;
    min-width: 300px;
    aspect-ratio: 1.2/1;
    border-radius: 10px;
}

.kodawari-img1 {
    background: url(../images/kodawari1.png);
    background-size: cover;
    background-position: 46% center;
    background-repeat: no-repeat;
}

.kodawari-img2 {
    background: url(../images/kodawari2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.kodawari-img5 {
    background: url(../images/kodawari5.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 30% 70%;
}

.kodawari-img img {
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.kodawari-text {
    flex: 1;
    min-width: 300px;
}

.kodawari-text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

/* --- WEBショップ --- */
.webshop {
    background-color: #f2efe9;
    padding: 80px 0;
    text-align: center;
}

.shop-banner {
    background: #fff;
    padding: 40px;
    border: 1px solid #ddd;
    max-width: 800px;
    margin: 0 auto;
}

.btn-main {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    margin-top: 20px;
    font-family: 'Zen Old Mincho', serif;
}

.btn-main:hover {
    background-color: #6d1616;
    transform: translateY(-2px);
}

/* --- 店舗情報 --- */
.access {
    padding: 80px 0;
}

.shop-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.shop-details h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.shop-details table {
    width: 100%;
    border-collapse: collapse;
}

.shop-details th, .shop-details td {
    text-align: left;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.shop-details th {
    width: 100px;
    color: var(--primary-color);
}

.pickup-badge {
    display: inline-block;
    background-color: #8a1c1c;
    color: #fff;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 4px;
    margin-left: 10px;
    vertical-align: 2px;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* --- 会社概要 --- */
.company {
    padding: 60px 0;
    background-color: #333;
    color: #ccc;
}

.company .section-title {
    color: #fff;
}

.company-table {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    border-top: 1px solid #555;
}

.company-table dl {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #555;
    margin: 0;
    padding: 15px 0;
}

.company-table dt {
    width: 30%;
    font-weight: bold;
    color: #fff;
}

.company-table dd {
    width: 70%;
    margin: 0;
}

#kurotan {
    padding-bottom: 150px;
}

.kodawari .container {
    position: relative;
}

.kodawari-wrapper {
    position: relative;
}

.kodawari-fade {
    max-height: 220px;
    overflow: hidden;

    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,1) 60%,
        rgba(0,0,0,0)
    );
    mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,1) 60%,
        rgba(0,0,0,0)
    );
}

.kodawari-more {
    margin-top: -20px; /* フェードに少しかぶせる */
    text-align: center;
}

.more-btn {
    position: absolute;
    left: 50%;
    bottom: -80px;
    transform: translateX(-50%);

    padding: 12px 32px;
    background: #fff;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    z-index: 2;

    transition: all 0.3s ease;
}

.more-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .kodawari-img {
        width: 100%;
    }
    .nav-menu { margin-top: 15px; gap: 15px; font-size: 0.9rem; }
    .shop-info-grid { grid-template-columns: 1fr; }
    .kodawari-wrapper.reverse { flex-direction: column; }
    .kodawari-text {
        width: 100%;
    }
    .company-table dt, .company-table dd { width: 100%; display: block; }
    .company-table dt { margin-bottom: 5px; color: var(--accent-gold); }
}