@charset "utf-8";
/* CSS Document */

/* Accordion side menu
---------------------------------------------------- */
.accordion {
	border: 1px solid #5cb2b3;
	position: relative;
	z-index: 2;
}
.accordion dt  {
	display: inline-block;
	padding: 15px 20px;
	width: 100%;
	font-size: 110%;
	line-height: 1.4em;
	/*font-weight: 700;*/
	color: #fff;
	background:#5cb2b3 ;
	cursor:pointer;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	border-bottom: 1px solid #5cb2b3;
}


.accordion dd{ display:none;}

.accordion dd ul {
	list-style: none;
	padding: 0px;
	margin:0px;
}
.accordion dd li {
	border-bottom: 1px solid #ccc;
	/*background-color: #f3f3f3;*/
}
.accordion dd li a {
	display: block;
	/*padding: 18px 20px;*/
	color: #000;
	padding: 10px;
	/*font-size: 14px;*/
	/*ゆっくり動かす（ポイントはhoverではなくaの箇所のcssに記載）*/
	-webkit-transition: 0.8s;
	-moz-transition: 0.8s;
	-o-transition: 0.8s;
	-ms-transition: 0.8s;
	transition: 0.8s;
	/*ここまで*/
	text-decoration: none;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
.accordion dd li a:before{
	font-family: bootstrap-icons;
	font-weight: 700;
	content: "\F285";
	margin-right: 5px;
	font-size: 80%;
}
.accordion dd li a:hover,
.accordion dd li.navi-on a{
	background-color: #000;
	color: #fff;
	opacity: 1;
}
@media print, screen and (min-width: 768px){
}

.hamburgerMenu,
.hamburgerMenu span{display: inline-block;
  transition: all .4s;
  box-sizing: border-box;}

.hamburgerMenu {
  position: relative;
  width: 24px;
  height: 24px;
  float: right;
  display: block;
  background: none;
  border: none;
}
.hamburgerMenu:focus{ outline: none;}
.hamburgerMenu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
}
.hamburgerMenu span:nth-of-type(1) {
  top: 0;
}
.hamburgerMenu span:nth-of-type(2) {
  top: 11px;
}
.hamburgerMenu span:nth-of-type(3) {
  bottom: 0;
}
.active .hamburgerMenu span:nth-of-type(1) {
  -webkit-transform: translateY(11px) rotate(-315deg);
  transform: translateY(11px) rotate(-315deg);
}
.active .hamburgerMenu span:nth-of-type(2) {
  opacity: 0;
}
.active .hamburgerMenu span:nth-of-type(3) {
  -webkit-transform: translateY(-11px) rotate(315deg);
  transform: translateY(-11px) rotate(315deg);
}

@media print, screen and (min-width: 768px){
	.accordion {border: none;}
	 .accordion dt  {
		 background:none;
		 padding: 10px;
		 cursor:default;
		 color: #000;
		 border-bottom: 1px solid #000;
	}
	 .accordion dt.active  { background-image:none;}
	 .accordion dd{ display: block; padding-bottom: 20px; line-height: 1.6em;}
   .hamburgerMenu { display: none;}
	.accordion dd li a{
		padding: 15px 10px 0 10px;
	/*ゆっくり動かす（ポイントはhoverではなくaの箇所のcssに記載）*/
	-webkit-transition: 0.8s;
	-moz-transition: 0.8s;
	-o-transition: 0.8s;
	-ms-transition: 0.8s;
	transition: 0.8s;
	/*ここまで*/
	}
	.accordion dd li a:hover, .accordion dd li.navi-on a {
	  background: none;
		color: #5cb2b3;
	}
	.accordion dd li {border-bottom: none;}
}
@media print, screen and (min-width: 1600px){
	 .accordion dd{ padding-bottom: 30px;}
}

/*   ===   END   ===   */

