

body{
    font-family: "a-otf-jun-pro", sans-serif;
    font-weight: 300;
    font-style: normal;
    overflow: scroll;
}

#news a {
    color: #666;
    text-decoration: underline;
}
/*main { padding-top: 56px; }
*/

h1{
    margin: .5rem 0;

}
h3{
    margin: .25rem 0;
}

p :not(#news){
    font-size: 1em;
    margin: 1rem 0;
}

/* 404 */
.error-404{
    height: 60vh;
    display: flex; /* Flexboxを有効にする */
    flex-direction: column; /* 子要素を縦に並べる */
    justify-content: center; /* 子要素を上下方向に中央揃えにする */
    align-items: center; /* 子要素を左右方向に中央揃えにする */
    text-align: center; /* 文章を中央揃えにする */
}

/* Other Campas */
#area-6 .card-img-top{
    height: 200px;
    object-fit: contain;
}



.marker{
    background: linear-gradient(transparent 70%, #21ff00 70%);}

.fa {
    font-family: "Font Awesome 5 Free"; /*←ココ！！！！！！！*/
}

/* 状態ごとの背景色 */
.bg-planned {
    background-color: #e0f7e0 !important; /* 淡い緑 */
}

.bg-changed {
    background-color: #fff4cc !important; /* 淡い黄色 */
}

.bg-cancelled {
    background-color: #fde0e0 !important; /* 淡い赤 */
}

.thank-you-section {
    background-color: #f9f9f9;  /* 淡い背景色 */
    color: #333;
}
/* 全体設定 */
.gallery-carousel {
    position: relative;
    padding: 20px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

/* カルーセルの外枠 */
.carousel-container {
    width: 100%;
    overflow: hidden;
}

/* 画像を横並びに配置 */
.carousel-track {
    display: flex;
    gap: 10px;
    transition: transform 0.5s ease-out; /* スムーズなスクロール */
}

.carousel-track img {
    height: 200px;
    width: auto;
    object-fit: contain;
    background-color: #ddd;
    border-radius: 8px;
    pointer-events: none;
    user-select: none;
}

/* 「さらにみる」ボタン */
.more-button-container {
    position: absolute;
    bottom: 10px;
    right: 20px;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .carousel-track img {
        height: 120px;
    }
}
