/* 基本設定 */
body, h1 { margin: 0; padding: 0; }
body { font-family: 'Noto Sans JP', sans-serif; color: #4a4540; line-height: 1.8; }
html { scroll-behavior: smooth; }

/* ヘッダー：余白を半分に調整 */
.site-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px; /* 余白削減 */
}

/* ロゴ：5倍サイズ */
.brand-logo img {
    height: 150px;
    width: auto;
    display: block;
}

/* メニュー */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}
.main-nav a {
    text-decoration: none;
    color: #4a4540;
    font-weight: 500;
}
.online-link { color: #a68966; }

/* スライダー全体の背景を少しグレーにすると余白が際立ちます */
.hero-section {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    background: #fdfdfd; /* 真っ白より少しだけ落とした色 */
}

/* スライダー内の等速設定（必須） */
.main-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* 画像自体の調整 */
.main-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* お好みで：少し角を丸くするとナチュラルな印象になります */
    /* border-radius: 4px; */ 
}

/* Instagramグリッドの余白も念のため調整 */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px; /* ここも広めに設定 */
    margin-top: 40px;
}

/* コンテンツエリア */
.section-container {
    padding: 10px 20px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
}

/* Instagramグリッド */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.insta-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

#scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: #4a4540;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
#scroll-top.visible {
    opacity: 0.7;
    pointer-events: auto;
}
#scroll-top:hover {
    opacity: 1;
}

.site-footer {
    padding: 200px 40px 40px;
    text-align: center;
    font-size: 0.8rem;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .header-container { padding: 10px 20px; flex-direction: column; gap: 10px; }
    .brand-logo img { height: 100px; }
    .main-nav ul { gap: 20px; }
    .insta-grid { grid-template-columns: repeat(2, 1fr); }
}