@charset "utf-8";
/* CSS Document */

.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: #02a6a7;*/
	color: #2BA4CD;
    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: #2BA4CD; /* 透明化を少し追加 */
    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: 15px 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: #2BA4CD;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

body.no-scroll {
    overflow: hidden;
}

.page-top {
    position: fixed;
    text-align: center;
    bottom: 0px;
    right: 10px;
    line-height: 0.9em;
    background-color: #2BA4CD;
	opacity: 0.8;
    color: white;
    padding: 15px 13px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    transform: translateY(100%);
    visibility: hidden;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* 文字に影をつけて見やすくする */
}

.reserve-tel {
    position: fixed;
    text-align: center;
    bottom: 120px;
    right: 10px;
    background-color: #00B900;
	color:#fff;
	font-size:130%;
	line-height: 130%;
	opacity: 0.8;
    padding: 10px 12px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    transform: translateY(100%);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* 文字に影をつけて見やすくする */
	width:55px;
	font-weight: bold;
}

.reserve-line {
    position: fixed;
    text-align: center;
    bottom: 180px;
    right: 10px;
    background-color: #FF9326;
	color:#fff;
	font-size:130%;
	line-height: 130%;
	opacity: 0.8;
    padding: 10px 12px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    transform: translateY(100%);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* 文字に影をつけて見やすくする */
	width:55px;
	font-weight: bold;
}


@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%;
    background-color: #2BA4CD; /* 透明化を少し追加 */
	opacity: 0.9;
	color:#fff;
    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; /* 縦スクロールを許可 */
}
	
}
