@charset "utf-8";
/* CSS Document */
@media print, screen and (min-width: 1000px) { /*ウィンドウ幅が1000px以上の場合に適用*/
  #menu {
    width: 200px;
    margin-bottom: 30px;
    padding: 10px;
    border: 1px solid #4b82be;
    background-color: rgba(75, 130, 190, 0.65);
    border-radius: 10px;
    float: left;
  }
  #menu li {
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
  }
  #menu li a {
    text-decoration: none;
    width: 200px;
    padding: 12px 10px 12px 10px;
    color: #4b82be;
    align-items: center;
    line-height: 130%;
    background-color: #fff;
    border-radius: 6px;
	  position: relative;
  }
  #menu li a:hover {
    transition: 0.3s;
    border-radius: 6px;
	  background-color:#B4CDE9;
	  color: #fff;
  }
  #menu li:last-child {
    margin-bottom: 0;
  }

  #menu li a:before {
    content: "";
    position: absolute;
    top: 17.5px;
    right: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4b82be;
  }
  #menu li a:after {
    content: "";
    position: absolute;
    top: 21.5px;
    right: 14px;
    box-sizing: border-box;
    width: 5px;
    height: 5px;
    border: 0;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    transform: rotate(45deg);
  }
}
.drawer_menu a {
  color: inherit;
  text-decoration: none;
}
.drawer_menu a:visited {
  color: inherit;
}
.drawer_menu {
  display: none;
}
  /*+++ Default Button Color +++*/
  .drawer_menu .drawer_button {
    color: #fff;
    /* ハンバーガーメニュー文字色 */
    display: none;
  }
  .drawer_menu .drawer_button .drawer_bar {
    background-color: #fff;
    /* ハンバーガーメニュー三本線の色 */
}
/* 999px以下 */
@media (max-width: 999px) {
  #menu {
    display: none;
  }
  /*body.fixed {
    width: 100%;
    height: 100%;
    position: fixed;
  }*/
  .drawer_menu {
    display: block;
  }
  .drawer_menu .drawer_bg {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
    background-color: #4b82be;
    display: none;
    top: 0;
    left: 0;
  }
  .drawer_menu .drawer_button {
    display: block;
    background-color: #4b82be;
    border: none;
    padding: 5px 10px;
    width: 50px;
    letter-spacing: 0.1em;
    cursor: pointer;
    /*position: fixed;*/
	position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1001;
    text-align: center;
    outline: none;
    border-radius: 5px;
  }
  .drawer_menu .drawer_button.active .drawer_bar {
    width: 32px;
  }
  .drawer_menu .drawer_button.active .drawer_bar1 {
    transform: rotate(45deg);
	margin-left: 2px;
  }
  .drawer_menu .drawer_button.active .drawer_bar2 {
    opacity: 0;
  }
  .drawer_menu .drawer_button.active .drawer_bar3 {
    transform: rotate(-45deg);
	margin-left: 0px;
  }
  .drawer_menu .drawer_bar {
    display: block;
    height: 3px;
    margin: 8px 0px;
    transition: all 0.2s;
    transform-origin: 0 0;
    border-radius: 3px;
  }
  .drawer_menu .drawer_nav_wrapper {
    width: 100%;
    height: 100%;
    transition: all 0.2s;
    transform: translate(100%);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    /*background-color: #;*/
    /* ドロワーメニュー内背景色 */
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .drawer_menu .drawer_nav {
    display: block;
    position: relative;
    margin: 85px 10px 0 10px
  }
  /*	#g-nav-list ul li:nth-of-type(2)::before{
		content: "NEW";
		padding: 3px;
		font-size: 10px;
		line-height: 100%;
		color: #FFFFFF;
		background-color: #cc2b61;
		border-radius: 2px;
		display: inline-block;
		position: absolute;
		top: 67px;
		right: 10px;
	}*/
  .drawer_menu .drawer_nav li {
    font-size: 17px;
    font-weight: bold;
    display: flex;
    align-items: center;
    position: relative;
  }
  .drawer_menu .drawer_nav li a {
    text-decoration: none;
    width: 320px;
    padding: 20px 0 20px 15px;
    color: #fff;
    align-items: center;
    display: flex;
    margin: 0 auto;
    position: relative;
    line-height: 150%;
	border-bottom: 1px dotted #fff;
  }
  .drawer_menu .drawer_nav li:before {
    content: "";
    position: absolute;
    top: 24px;
    right: 15px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #fff;
  }
  .drawer_menu .drawer_nav li:after {
    content: "";
    position: absolute;
    top: 28.5px;
    right: 19.5px;
    box-sizing: border-box;
    width: 7px;
    height: 7px;
    border: 0;
    border-top: solid 1px #4b82be;
    border-right: solid 1px #4b82be;
    transform: rotate(45deg);
  }
  .drawer_menu .drawer_nav_wrapper.open {
    transform: translate(0);
  }
  .drawer_menu.left .drawer_button {
    right: auto;
    left: 32px;
  }
  .drawer_menu.left .drawer_nav_wrapper {
    transform: translate(-250px);
    right: auto;
    left: 0;
  }
  .drawer_menu.left .drawer_nav_wrapper.open {
    transform: translate(0);
  }
}