/* 基本設定 */
body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

/* 全体コンテナ */
.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    box-sizing: border-box;
}

/* ロゴ（ヘッダー） */
.header h1 {
    font-size: clamp(40px, 12vw, 80px); 
    font-weight: bold;
    margin-bottom: 60px;
    letter-spacing: -2px;
}

.header h1 img {
    max-width: 100%;
    height: auto;
}

/* コンテンツエリア */
.contents {
    max-width: 440px; 
    width: 100%;
    margin: 0 auto;
}

/* コンセプト */
.concept {
    margin-bottom: 60px;
    font-size: 14px;
    text-align: left;
    line-height: 1.8;
}

.concept p {
    margin-bottom: 1.5em;
    word-break: break-all;
}

/* リンクエリア */
.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin-bottom: 100px;
}

ul.sns-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-left: 0;
    list-style: none;
}

ul.sns-icons a:hover {
   opacity: 0.8;
}


.sns-icons img {
    width: 36px;
    height: 36px;
}

.online-shop-btn {
    border: 1px solid #333;
    padding: 8px 25px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

/* アクセス */
.access {
    text-align: left;
    width: 100%;
    margin: 0 auto;
}

.access h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: normal;
    padding-bottom: 10px;
}

/* マップエリア */
.map-area img {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
}

/* 店舗情報 */
.info h3 {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.info dl {
    margin: 0;
}

.info dt {
    font-size: 14px;
    margin-top: 15px;
}

.info dd {
    font-size: 14px;
    line-height: 1.8;
    margin-left: 0;
    margin-bottom: 10px;
}

.info a {
    color: #333;
}

/* フッター */
.footer {
    padding: 60px 20px;
    text-align: center;
    font-size: 12px;
    border-top: 1px solid #f5f5f5;
}

/* --- スマホ専用の微調整 --- */
@media (max-width: 480px) {
    .container {
        padding: 40px 20px;
    }
    
    .header h1 {
        margin-bottom: 40px;
    }
    
    .links {
        margin-bottom: 60px;
    }
}