/* CSS Document */

button {
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}
/**************** 以下、ハンバーガーボタンのスタイリング ****************/
.btn {
	/*display: none;*/
	
	/* ボタンの配置位置  */
	position: fixed;
	top: 30px;
	right: 30px;
	/* 最前面に */
	z-index: 99999;
	/* ボタンの大きさ  */
	width: 45px;
	height: 45px;
}
/***** 真ん中のバーガー線 *****/
.btn-line {
	display: block;
	/* バーガー線の位置基準として設定 */
	position: relative;
	/* 線の長さと高さ */
	width: 100%;
	height: 4px;
	/* バーガー線の色 */
	background-color: #fff;
	transition: .2s;
}
/***** 上下のバーガー線 *****/
.btn-line::before , .btn-line::after {
	content: "";
	/* 基準線と同じ大きさと色 */
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #fff;
	transition: .5s;
}
.btn-line::before {
	/* 上の線の位置 */
	transform: translateY(-16px);
}
.btn-line::after {
	/* 下の線の位置 */
	transform: translateY(16px);
}
/***** メニューオープン時 *****/
.btn-line.open {
	/* 真ん中の線を透明に */
	background-color: transparent;
}
.btn-line.open::before , .btn-line.open::after {
	content: "";
	background-color: #333;
	transition: .2s;
}
.btn-line.open::before {
	/* 上の線を傾ける */
	transform: rotate(45deg);
	background-color: #fff;
}
.btn-line.open::after {
	/* 上の線を傾ける */
	transform: rotate(-45deg);
	background-color: #fff;
}
/**************** ここまで、ハンバーガーボタンのスタイリング ****************/
/**************** 以下、メニューのスタイリング ****************/
.menu {
    /* 画面に対して完全に固定する */
    position: fixed;
    top: 0;
    right: -130%; /* 初期状態は画面外 */
    width: 30%;   /* PC表示時のメニューの幅（お好みで調整） */
    height: 100vh; /* 画面の高さ100%に固定 */
    background-color: rgba(27, 64, 142, .9); /* 青色。少し濃いめにしました */
    color: #efefef;
    transition: right 0.4s ease; /* アニメーションを滑らかに */
    z-index: 99990;
    
    /* 中身が縦にはみ出した場合は、メニュー内だけでスクロールさせる */
    overflow-y: auto;
    /* スクロールバーのデザイン調整（Chrome等） */
    scrollbar-width: thin;
}

.menu-sitemap {
    display: flex;
    padding: 80px 40px 40px; /* 上は閉じるボタンのために空ける */
    min-height: 100%; /* 中身が少なくても高さを保つ */
}

/* リンククリック時に裏の画面がスクロールしないようにするクラス（JSと連動） */
body.no-scroll {
    overflow: hidden;
}

.menu-sitemap-2{
	/*width:calc(100% / 2 - 180px);*/
	width:calc(100% / 2);
	margin-right:60px;
	padding-top:20px;
}

.menu-sitemap-2:first-child{
	/*margin-right:170px;*/
	/*margin-right:30px;*/
}

.menu-sitemap-2 a{
	display: block;
	color: #fff;
	text-decoration: none;
	font-family: var(--header-hamburger-font);
	font-weight: bold;
	font-size:18px;
	margin-bottom: 40px;
}

.menu-sitemap-2 a.onlinestore{
	color:#FBF006;
}

.menu-sitemap-waku{
	position: relative;
	border:3px solid #fff;
	-webkit-border-radius: 10px;
       -moz-border-radius: 10px;
         -o-border-radius: 10px;
            border-radius: 10px;
	
	padding: 10px 25px 0;
	margin-bottom:60px;
}

.menu-sitemap-waku a{
	margin-bottom:14px;
}

.menu-sitemap-waku a.menu-sitemap-waku-title{
	position: absolute;
	top:-14px;
	left:-5px;
	background-color:rgba(0, 0, 0, .8);
	padding:0 10px 0 5px;
}

.menu-sitemap-waku ul{
	margin-bottom: 30px;
	font-size:14px;
}

.menu-sitemap-waku li{
	margin-bottom:10px;
}

.menu-sitemap-waku li a{
	margin-bottom:0;
	font-weight: normal;
	font-size:14px;
}


.menu-sitemap-2 ul.gaiyou{
	margin:0;
}

.menu-sitemap-2 ul.gaiyou li{
	list-style-type: none;
	margin-bottom: 10px;
}

.menu-sitemap-2 ul.gaiyou li a{
	margin-bottom:0;
	font-weight: normal;
	font-size:14px;
}



.menu-list {
	/* メニューテキスト位置をリスト内中心に */
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.menu-list:hover {
	background-color: rgba(255, 255, 255, .5);
	color: #333;
	cursor: pointer;
	transition: .3s;
}
/***** メニューオープン時位置0にして画面内に *****/
.menu.open {
    right: 0; /* 画面内（右端）にスライドイン */
}



/* 1016px以下はハンバーガーボタンヘッダー固定 */
@media (max-width: 1016px) {
	.btn {
		display: block;
		/* ボタンの配置位置  */
		top: 20px;
		right: 20px;
	}
	
	.menu {
        width: 40%;
    }
    .menu-sitemap-2 {
        width: 100%; /* 幅を広げる */
    }
}

/* 740px以下はメニュー1列 */
@media (max-width: 740px){
	.menu {
        /*width: calc(100% - 120px);*/ /* スマホでは画面全幅（または calc(100% - 80px)などお好みで） */
        width: 70%;
    }

	
	
	
	.menu-sitemap {
        display: block;
        padding: 80px 20px 40px;
    }

	.menu-sitemap-2{
		width:100%;
		margin: 0 auto;
	}
	
	.menu-sitemap-2:first-child{
		margin-right:0;
	}
}

/* 430px以下の場合のハンバーガーボタン位置 */
@media (max-width: 430px) {
	.btn {
		display: block;
		/* ボタンの配置位置  */
		top: 18px;
		right: 20px;
		/* ボタンの大きさ  */
		width: 30px;
		height: 30px;
	}
	
	.btn-line::before {
		/* 上の線の位置 */
		transform: translateY(-12px);
	}
	.btn-line::after {
		/* 下の線の位置 */
		transform: translateY(12px);
	}
}
/**************** ここまで、メニューのスタイリング ****************/