/* 全体のスタイル */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #dccbb4;
    color: #333;
    overflow-x: hidden;
}

/* ヘッダーのスタイル */
header {
    background-color: #333;
    color: #FFF;
    width: 100%;
    padding: 0.5px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
}

h1, h3, h5 {
    margin: 0;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ナビゲーションのスタイル */
nav ul {
    list-style-type: none;
    padding: 0;
    margin-top: 1rem;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FFD700;
}

/* メインコンテンツのスタイル */
main {
    margin: 0px 0px 50px 0px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* イベントリストのスタイル */
.events-area {
    background-color: #FFF;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 800px;
}

.events-area h2 {
    color: #FF6600;
    border-bottom: 2px solid #cd6319;
    padding-bottom: 0.5rem;
}

.events-area ul {
    list-style: none;
    padding: 0;
}

.events-area ul li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.events-area ul li strong {
    color: #333;
    font-weight: bold;
}

.events-area ul li:last-child {
    border-bottom: none;
}

/* ボタンのスタイル */
.button {
    display: inline-block;
    background-color: #cd6319;
    color: #FFF;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #FF6600;
}

/*-------------------------------------　バックボタン　------------------------------------------*/
.backBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.backBtn img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像のフィット方法を指定 */
}

.backBtn:hover {
    transform: scale(1.05); /* ホバー時に少し拡大するアニメーション */
}

/* スマートフォン対応 */
@media (max-width: 600px) {
    .backBtn {
        width: 80px;
        height: 80px;
    }
}


img{
    pointer-events: none !important;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}