@charset "utf-8";
/* CSS Document */

.pagetop, .reserve-content {
    position: fixed;
    bottom: -50px; /* 初期状態で隠す */
    opacity: 0; /* 初期状態で透明にする */
    transition: bottom 0.5s ease, opacity 0.5s ease; /* アニメーションの設定 */
}

.pagetop.show, .reserve-content.show {
    bottom: 0; /* 表示時に下から表示 */
    opacity: 1; /* 表示時に透明度を戻す */
}

.pagetop {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 40px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 0 10px;
    z-index: 9999;
    background: #000;
    overflow-y: hidden;
    display: flex; /* 子要素をフレックスボックスで配置 */
    align-items: center; /* 子要素を垂直方向に中央揃え */
    justify-content: center; /* 子要素を水平方向に中央揃え */
	border: 2px #eee solid;
	border-bottom: none;
}

.pagetop a {
    color: #fff;
    text-align: center;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    line-height: 48px; /* ボタンの高さに合わせて中央揃え */
	cursor: pointer; /* カーソルをポインターに変更 */
}


.reserve-content {
    position: fixed;
    bottom: 10px; /* .page-top の上に表示されるように調整 */
    right: 10px;
    height: 235px;
    z-index: 999; /* .page-top よりも後ろに表示 */
    overflow-y: hidden; /* 縦スクロールを非表示にする */
}

.circle {
  width: 70px;
  height: 70px;
  background-color: #000000;
  border: 2px #eee solid;
  border-radius: 50%;
  display: block;
  line-height: 18px;
  font-size:160%;
  text-align: center;
  padding-top: 12px;
  margin: 4px 2px 0px 2px;
  color: #fff;
  transition: background-color 0.3s, color 0.3s;
}

.circle span{
	font-size:84%;
	}

.circle.t2 {
  background-color: #000;
}

.circle:hover {
  background-color: #eee;
  color:#000;
  text-decoration: none;
}

.hamburger-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
}

.hamburger {
    font-size: 30px;
    margin: 5px 10px;
    cursor: pointer;
    position: relative;
    z-index: 1001; /* メニューの上に表示 */
    color: #BEA67F;
    transition: color 0.5s;

    padding: 10px 10px; /* 垂直方向のpaddingを大きくする */
    display: inline-block; /* テキストの背景と枠を適用するためにブロック要素にする */
    line-height: 30px; /* フォントサイズと同じ高さに設定 */
    text-align: center; /* テキストを中央に配置 */
}




.hamburger.open {
    color: #fff; /* メニューが表示されたときに白に変更 */
    font-size: 20px;
}

.menu-content {
    position: fixed;
    top: 0; /* 上から0pxに設定 */
    right: -100%;
    width: 30%;
    height: 100%;
    background-color: #BEA67F;
	opacity: 0.9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: 0.5s;
    z-index: 999;
    padding-top: 50px; /* メニューボタンの高さを確保するためにpaddingを設定 */
    overflow-y: auto; /* 縦スクロールを許可 */
}

.menu-content p {
    width: 95%;
    margin: -35px auto 5px auto;
    text-align: center;
}

.menu-content p img {
    width: 50%;
    display: inline-block;
}

.menu-content ul {
    list-style-type: none; /* デフォルトのリストスタイルを消す */
    padding: 0; /* パディングを消す */
    margin: 0 auto 15px auto; /* マージンを消す */
    width: 90%;
    z-index: 999;
}

.menu-content li a {
    display: block;
	width:100%;
    box-sizing: border-box; /* パディングとボーダーを幅に含める */
    border-bottom: 1px #fff dotted;
    padding: 12px 0px 12px 8px;
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
}

.menu-content ul::after {
    content: "";
    display: table;
    clear: both; /* フロートをクリアする */
}

.menu-content ul li:nth-of-type(2n + 3) {
    clear: left; /* 3つ目のアイテムから次の行に移動 */
}

.menu-content ul li a:hover {
    background-color: #fff; /* ホバー時の背景色 */
    color: #BEA67F;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 998;
}

body.no-scroll {
    overflow: hidden;
}

.page-top {
    position: fixed;
    text-align: center;
    bottom: 120px;
    right: 0px;
    line-height: 0.9em;
    background-color: rgba(40, 167, 69, 0.7);
    color: white;
    padding: 10px 13px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* 文字に影をつけて見やすくする */
}


@media (max-width: 599px) {
    .hamburger {
        padding: 10px 10px; /* スマホ用の垂直方向のpaddingを調整 */
        font-size: 40px; /* フォントサイズを調整 */
        line-height: 40px; /* フォントサイズと同じ高さに設定 */
    }
	
.menu-content {
    position: fixed;
    top: 0; /* 上から0pxに設定 */
    right: -100%;
    width: 85%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: 0.5s;
    z-index: 999;
    padding-top: 50px; /* メニューボタンの高さを確保するためにpaddingを設定 */
    overflow-y: auto; /* 縦スクロールを許可 */
}
	
}
