@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
/*メニュー*/
#menu_outer {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  width: 100vw;
  height: 100vh;
  position: fixed;
  transform: translateZ(0);
  display: none;
  background: black;
	font-family: 'Noto Sans JP', sans-serif;
}
#container_menu {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow-y: scroll;
  transform: translateZ(0);
}
#container_menu_contents {
	width: 1006px;
	margin: auto;
	padding: 62px 0;
	position: relative;
	display: flex;
	flex-direction: column;
}
/*題名*/
#koltd_logo img {
  width: 380px;
  margin-top: 70px;
}

.menu_list{
	margin-top: 70px;
	position: relative;
}
.menu_list img{
	height: 23px;
}
img.menu_new{
	height: 10px;
}


/*ボタン*/
.btn_menu {
  display: inline-block;
  margin: 20px;
}
.btn_index:hover {
  opacity: 1;
}






/*ECサイトへのリンク(ページ左下固定)*/
a.ec_button{
	position: fixed;
	width: 128px;
	background: white;
	text-align: center;
	bottom: 40px;
	right: 0px;
	transition: 0.5s;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
	z-index: 1;
	border: solid 4px #183d96;
	transform-origin: bottom right;
}
a.ec_button::after{
  content: '';
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  top: 30%;
  right: 13px;
  margin-top: -6px;
  transform: rotate(45deg);
  border-top: 2px solid #183d96;
  border-right: 2px solid #183d96;
  transition: right 0.3s;
}
a.ec_button:hover{
	transform: scale(1.2);
}
a.ec_button:hover::after{
	right: 6px;
}
a.ec_button p{
	color: #183d96;
	position: relative;
	margin: 10px 0;
}
a.ec_button img{
	width: 130px;
	vertical-align: top;
}