



/* ここからINDEX------------------------------------- */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 0.85;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 0.6;
        transform: translateY(0);
    }
}

.topper h1 {
    font-weight: 300;
    text-align: center;
    margin: 120px auto 100px;
    font-family: 'Noto Serif JP', serif;
    color: #5a5048;
    text-shadow: none;
    opacity: 0.85;
    font-size: 48px;
    letter-spacing: 8px;
    border: none;
    position: relative;
    padding-bottom: 20px;
    background: linear-gradient(90deg, transparent 0%, rgba(90, 80, 72, 0.4) 50%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 1s ease-out;
}

.topper h1 br.break-title {
    display: none;
}

.message p br.break-message {
    display: none;
}

.topper h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 45%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(160, 145, 130, 0.7) 3%, transparent 100%);
    opacity: 0.4;
    animation: fadeInUp 1s ease-out both;
}
  
.message {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 10px;

}
  
.message p {
    opacity: 0.6;
    font-size: 1rem;
    line-height: 3.9;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 100%);
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    font-family: 'Noto Serif JP', serif;
    color: #4a4540;
    border: 1px solid rgba(160, 145, 130, 0.12);
    backdrop-filter: blur(12px);
    letter-spacing: 1.5px;
    animation: fadeInUp 1s ease-out;

}

.spot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 150px;
  justify-content: center;
  margin-top: 150px;
  padding: 40px 0;
}

.spot-card-link {
    text-decoration: none;
    color: inherit; /* リンク色を親に合わせる */
    margin: 30px;
}

.spot-card {
    background: transparent;
    width: 300px;
    padding: 15px;
    box-shadow: 0 1px 17px rgba(0, 0, 0, 0.03);
    transition: all 0.8s;
    opacity: 0.95;
    overflow: hidden;
}
  
.spot-card:hover {
    box-shadow: 0 20px 90px rgba(0, 0, 0, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(18px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
}
  
.spot-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
  border-bottom: 1px solid rgba(100, 90, 80, 0.15);
  padding-bottom: 5px;
}

/* スポットカードのタイトル */
h3{
    font-family: 'Noto Serif JP', serif;
    color: #3d3835;
    text-shadow: 1px 2px 30px rgba(0, 0, 0, 0.08);
    padding: 10px 20px ;
    margin-top: 18px;
    margin-bottom: 22px;
    font-size: 18px;
    font-weight: 400;
    opacity: 0.8;
    transition: all 0.3s ease;
    line-height: 1.0;
}

.spot-card:hover h3 {
    opacity: 1;
}

/* スポットカード内の名前 */
.spot-card p {
    font-family: 'Noto Serif JP', serif;
    color: #7a7070;
    font-size: 0.85em;
    letter-spacing: 1px;
    margin: 0;
    padding: 0px 30px;
    opacity: 0.75;
    font-weight: 400;
    transition: all 0.3s ease;
    text-align: right;
}

.spot-card:hover p {
    opacity: 1;
}
  

@media screen and (max-width: 920px) {

.topper h1 br.break-title {
    display: block;
}

}

@media screen and (max-width: 560px) {

.topper h1 {
    font-size: 25px;
    margin: 70px auto 80px;
}

.message p br.break-message {
    display: block;
}

.message p {
    font-size: 14px;
    line-height: 1.9;
    padding: 30px;
    border-radius: 2px;

}



}















@import "pages/top";
