body {
    font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
}

h1 {
    font-size: 20px;
}

h2 {
    font-size: 18px;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

header a img {
    width: 10vw;
    max-width: 100px;
    min-width: 20px;
    height: auto;
}

nav {
    margin-top: 10px;
    margin-right: 10px;
    font-size: 16px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
}

nav ul li {
    display: inline;
    padding: 5px;
    padding-right: 5px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

nav ul li img {
    width: 25vw;
    max-width: 120px;
    min-width: 80px;
}

/* 言語切替ボタン */

.language-selector {
    display: flex;
    position: fixed;
    justify-content: center;
    width: 100%;
    bottom: 0;
    z-index: 900;
}

.language-selector button {
    margin: 0;
    padding: 5px 10px;
    color: #fff;
    background-color: #cc6666;
    font-size: 16px;
    cursor: pointer;
    border: 0;
}

.language-selector button:hover {
    background-color: rgb(226, 121, 121);
}

/* ご利用方法ボタン */

.hidden {
    display: none;
}

li:hover > #extraButtons {
    display: block;
}

#toggleButton {
    color: #fff;
    font-size: 16px;
    background-color: #333;
    border: none;
    text-decoration: none;
    padding: 0;
}

#extraButtons {
    display: none; /* 初期状態で非表示 */
    position: absolute; /* 絶対位置に配置 */
    z-index: 1000; /* 他の要素より前面に表示するためのz-index */
}

#extraButtons button {
    width: 150px;
    text-decoration: none;
    background-color: #666;
    border: none;
    padding: 10px;
}

#extraButtons button:hover {
    background-color: #888;
}

li:hover #extraButtons {
    display: block;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative; /* 必要に応じてスタイルを調整 */
}

nav ul li {
    display: inline-block; /* インラインブロック表示 */
    position: relative; /* 相対位置 */
}

/* 本文 *//* 本文 *//* 本文 */

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.lodge {
    display: flex;
    justify-content: center;
    gap: 0px;
    margin: 20px 0;
}

.lodge-item {
    text-align: center;
}

.lodge-item img {
    max-width: 50vw;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.lodge-item h2 {
    margin-top: 10px;
    font-size: 1.5em;
    color: #333;
}

/* 地図埋込み *//* 地図埋込み *//* 地図埋込み */

#map {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    background-color: #fff;
}

#map h2 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

.map-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-container iframe {
    border: 0;
    width: 80%;
    height: 450px;
    max-width: 1000px;
}

.map-address {
    background-color: #666;
    color: #fff;
    display: flex;
    flex-direction: column; /* セットを縦に並べる */
    align-items: center;
    gap: 10px;
    padding: 10px;
    margin: 20px 0;
}

.set {
    display: flex;
    gap: 20px;
}

.set h3 {
    margin: 0;
}

.set p {
    margin: 0;
}

.map-access {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 10px;
}

.set2 {
    display: flex;
    justify-content: space-between; /* 上下左右に均等に配置 */
    gap: 20px;
    width: 90%; /* 要素が横幅いっぱいに広がるように */
}

.set-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 90%;
}

.set-item h3{
    margin: 0;
}

.set-item p {
    margin: 0;
}

.set-item img {
    width: 40vw;
    max-width: 400px;
    min-width: 200px;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.additional-info {
    text-align: left;
    
}

.contact {
    padding-bottom: 50px;
    text-align: center;
}