@charset "utf-8";

html, body {
    margin: 0;
    padding: 0;
    height: 100%; /* 必ず100%にする */
    overflow: hidden; 
}

/* スクロールコンテナ */
.scroll-container {
    width: 100%;
    height: 100vh;
    overflow-y: auto; 
    scroll-snap-type: y proximity; 
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* 1. 背景画像を固定（Sticky） */
.top-img {
    background-image: url("../img/index-img/DSC03515.jpg");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    position: sticky;
    top: 0;
    z-index: 1; 
}

.top-img img {
    width: 350px; 
    max-width: 40%;
    position: absolute;
    top: 45%;
    right: 15%;
}

/* 2. 重なってくるセクション */
.section01 {
    position: relative;
    z-index: 10;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
}

/* スナップターゲット */
.snap-target {
    scroll-snap-align: start;
}
.section01-text {
    background-color: rgba(31, 12, 6, 0.85); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 90%;            
    height: auto;         
    min-height: auto;    
    margin: 0 auto;
    color: #fff;
    padding: 60px 30px;  
    box-sizing: border-box;
}

/* スマホ用調整 */
@media (max-width: 900px) {
    .section01-text { 
        width: 95%; 
        padding: 40px 20px;
        height: auto;      /* 80vh から auto に変更 */
        min-height: auto;  /* 念のため最小高さも解除 */
    }
    .section01-text h1 { 
        font-size: 1.8rem; 
    }
    .section01-text p {
        font-size: 1.3rem; /* スマホで読みやすいサイズに調整 */
        line-height: 1.8;
    }
}

.section01-text img {
    max-height: 100px;
    display: block;
    margin: 0 auto 30px;
}

.section01-text h1 {
    text-align: center;
    font-size: 2.8rem;
    line-height: 1.4;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
    margin-bottom: 40px;
    letter-spacing: 0.1em;
}

.section01-text p {
    text-align: center;
    font-size: 1.5rem;
    line-height: 2.5;
    font-weight: 400;
}

/*❎スクロールを促す動き*/
.scrolldown {
    position: absolute;
    bottom: 60px; 
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-family: serif;
    font-size: 2rem;
    letter-spacing: 0.2em;
    z-index: 9999; 
    transition: opacity 0.5s, visibility 0.5s;
}
/* スクロールした時に付与するクラス */
.scrolldown.fadeout {
    opacity: 0;
    visibility: hidden;
}

/* 縦線の描画 */
.scrolldown::after {
    content: "";
    position: absolute;
    top: 25px;
    left: 50%;
    width: 1px;
    height: 60px; /* 線の長さ */
    background: #fff;
    animation: scroll-line 2s infinite;
}

/* 線が伸び縮みするアニメーション */
@keyframes scroll-line {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    50.1% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* 文字のフェードイン・アウト（任意） */
.scrolldown span {
    display: block;
    animation: scroll-text 2s infinite;
}

@keyframes scroll-text {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* 3. section02以降（通常のスクロール） */
.section02 {
    position: relative;
    z-index: 11; /* section01よりさらに上か同等 */
     background-color: #E8E8E8;
    padding: 100px 0px 0;
}

/*❎写真スライド*/
.slide {
    width: 100%;
    overflow: hidden; /* 画面外を隠す */
    padding: 60px 0;
    position: relative;
    z-index: 11; /* 背景画像の上に重なるように設定 */
}

.slide-wrapper {
    display: flex; /* リストを横並びにする */
    width: fit-content;
}

.slide-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    animation: infinite-slider 60s linear infinite; /* 60秒かけて1周 */
}

.slide-list li {
    width: 300px; /* 写真の横幅 */
    margin: 0 10px; /* 写真同士の間隔 */
}

.slide-list li img {
    width: 100%;
    height: 200px; /* 高さを揃える */
    object-fit: cover; /* 比率を保って切り抜き */
    border-radius: 8px;
}

/* 無限ループアニメーションの設定 */
@keyframes infinite-slider {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%); /* 1組分左にスライドしたらリセット */
    }
}

/*❎ショップ*/
/* ショップ全体のコンテナ */
.shop {
    max-width: 1500px;
    margin: 100px auto;
    padding: 0 20px;
}
.tenpo-logo{
	max-width: 250px;
	margin: 30px auto 0;
}
/* メインタイトル (SHOP) */
.shop-main-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
    color: #6a1917;
}

/* 中央の下線 */
.shop-main-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background-color: #6a1917;
    border-radius: 2px;
}

/* リスト（横並び設定） */
.shop-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* 店舗ごとのカード */
.shop-card {
    width: calc((100% - 100px) / 3); 
    min-width: 400px;
    box-sizing: border-box; 
    padding: 20px;
    border: 1px solid #6a1917;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    scroll-margin-top: 100px; 
}

/* 店舗名 */
.shop-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #6a1917;
    padding-left: 15px;
    line-height: 1.4;
    text-align: center;
}

/* マップと住所を包むエリア */
.info-box {
    display: flex;
    flex-direction: column; /* 縦並び */
    flex-grow: 1;          /* カード内で余った隙間を埋めるように伸びる */
}
.info-box img{
    max-height: 250px;
    object-fit: cover;
}

/* マップのレスポンシブ対応 */
.map-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border-radius: 4px;
}

/* 住所などのテキスト */
.address-text {
    text-align: left;
    font-size: 1.5rem; 
    line-height: 1.8;
    color: #6a1917;
    margin-bottom: 25px;
    flex-grow: 1; 
}

.tel {
    font-weight: bold;
    color: #333;
}

/* 詳細を見るボタン */
.btn-more {
    display: block;
    text-align: center;
    padding: 15px;
    background: #6a1917;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.5rem;
    transition: background 0.3s;
    
    /* ボタン自体は伸び縮みしないように固定 */
    flex-shrink: 0; 
}

.btn-more:hover {
    background: #6f5436;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .shop-list {
        gap: 30px;
    }
    .shop-card {
        padding: 20px;
        min-width: 100%;
    }
    .shop-main-title {
        font-size: 2rem;
    }
}
/* フッター*/
footer {
    position: relative;
    z-index: 11;
    padding-bottom: 50px;
}

/*❎SNS*/
.sns img {
    max-width: 300px;
    transition: 0.3s;
}

.sns img:hover {
    transform: translateY(-5px); /* 5px上に移動 */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* 影をつける */
}

/*❎SDGs*/
.sdgs{
    background-color: #fff;
    padding: 100px 0;
}
.sdgs h1{
    font-size: 2rem;
    color: #1f0c06;
}
.sdgs-logo{
    max-width: 400px;
    width: 80%;
}
.sdgs-list{
    width: 80%;
    margin: 50px auto;
    display:flex;
    flex-wrap: wrap;
    gap:15px;
    list-style: none;
}
.sdgs-list img{
    max-width: 100px;
	
}
/* セクション全体 */
.limeland-sdgs {
    text-align: center;
    padding: 50px 20px;
    color: #1f0c06;
}

.limeland-sdgs h2 {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

/* 2つのグループを横並びにする設定 */
.limeland-sdgs-list {
    display: flex;
    justify-content: center; /* 中央寄せ */
    flex-wrap: wrap;       /* 画面が狭い時は折り返す */
    gap: 40px;             /* グループ間の間隔 */
    margin-bottom: 30px;
}

/* 各グループ（アイコン＋文字）の幅調整 */
.sdgs-item {
    flex: 1;
    max-width: 400px; /* 広がりすぎ防止 */
    min-width: 300px; /* 狭くなりすぎ防止 */
}

/* アイコン並びの調整 */
.limeland-sdgs00 {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
    margin: 0 auto 15px;
    list-style: none;
}

/* 画像のサイズ */
.limeland-sdgs00 img {
    width: 100%;
    max-width: 120px;
    height: auto;
    display: block;
}

/* グループごとの見出し */
.limeland-sdgs-list h3 {
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.4;
      color: #1f0c06;
}
@media screen and (max-width: 900px){
    .sdgs-list{
    width: 80%;
		margin: 0 auto;
    gap:0px;
    }
}