@charset "utf-8";@charset "UTF-8";

/* --- 1. 不要パーツの非表示 --- */
#header, .keyword-box, .crumbsList, .footer, 
#header .header__nav, #header .header__inner, #header .header__nav--bottom {
    display: none;
}

/* --- 2. 全体レイアウト --- */
.hello-summer-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('/photo/page/20260312/soffitto-back-banner5.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hello-summer-container {
    max-width: 430px;
    margin: 0 auto;
    background-color: #fff;
    height: auto; 
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

.hs-section {
    width: 100%;
}

.hs-section img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* --- 3. セクション別・余白調整 --- */
.hs-top img {
    width: 100%;
}

.hs-content-padding {
    padding: 60px 10px;
}

.hs-design-title {
    width: 100%;
    margin-bottom: 30px;
}

.hs-mid-img-wrapper {
    width: 80%;
    margin: 0 auto 20px;
}

.hs-middle img {
    width: 90%;
    margin-bottom: 5%;
}

/* 2枚写真レイアウト (ITEM 03) */
.hs-new-layout {
    padding-bottom: 80px; 
}

.hs-layout-img-up {
    width: 100%;
    margin: 0 auto 30px;
}

.hs-layout-img-down {
    width: 90%;
    margin: 0 0 15px 10%; 
}

/* --- 4. スライダー設定 --- */
.hs-slider-wrapper {
    position: relative;
    background: #fff;
}

.hs-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.hs-slider::-webkit-scrollbar {
    display: none;
}

.hs-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
}

.hs-slide img {
    width: 80%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.hs-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #ddd;
    border-radius: 50%;
}

.dot.active {
    background-color: #333;
}

/* --- 5. 価格・BUYボタン (共通設定) --- */
.hs-price-info {
    font-size: 12px;
    font-weight: bold;
    color: #e73828;
    line-height: 1.6;
    text-align: right; 
    padding-right:5%; 
    box-sizing: border-box;
}

.hs-price-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-family: "impact", sans-serif;
    font-weight: 200;
    font-size: 1.3em;
    color: #e73828;
}

/* スライダー用価格調整 */
.hs-slider-price {
    width: 100% !important;
    margin: 15px auto 40px;
}

/* 2枚写真用価格調整 */
.hs-layout-price {
    margin-top: 0;
}

.hs-price-info a {
    display: inline-block;
    color: #e73828;
    text-decoration: none;
    border: 1px solid #e73828;
    padding: 0 12px;
    height: 20px;
    line-height: 18px;
    margin-left: 10px;
    border-radius: 10px;
    font-size: 12px;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.hs-price-info a:hover {
    background-color: #e73828;
    color: #fff !important;
}

/* --- 6. フッター (Hello Summer) --- */
.hs-footer {
    width: 100%;
    background-color: #fff;
    padding: 100px 0 40px;
    border-top: 1px solid #eee;
    position: relative;
    font-family: "Optima", "Playfair Display", serif;
}

.hs-footer-inner {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: 
        "nav top"
        "copy copy";
    align-items: end;
}

.hs-footer-nav {
    grid-area: nav;
}

.hs-footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hs-footer-nav li {
    margin-bottom: 20px;
}

.hs-footer-nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    letter-spacing: 0.1em;
    transition: opacity 0.3s;
}

.hs-footer-nav a:hover {
    opacity: 0.6;
}

.hs-back-to-top {
    grid-area: top;
    writing-mode: vertical-rl;
    text-align: right;
}

.hs-back-to-top a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    letter-spacing: 0.2em;
    font-weight: 500;
    display: block;
}

.hs-copyright {
    grid-area: copy;
    margin-top: 80px;
    font-size: 10px;
    letter-spacing: 0.05em;
    color: #999;
}

/* --- 7. レスポンシブ --- */
@media screen and (max-width: 767px) {
    .hello-summer-container {
        max-width: 100%;
    }
    .hs-footer {
        padding: 60px 0 30px;
        margin-top: 0; /* 背景切れ防止 */
    }
    .hs-footer-inner {
        padding: 0 20px;
        grid-template-columns: 1fr 40px;
    }
    .hs-footer-nav a {
        font-size: 14px;
    }
    .hs-copyright {
        margin-top: 60px;
    }
}