<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

/* Accordion side menu
---------------------------------------------------- */
.accordion dt  {
	display: inline-block;
	padding: 18px 20px;
	width: 100%;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	background:#2e82d0;
	cursor:pointer;
}

.accordion dd{ display:none}
.accordion dd ul {
	list-style: none;
	padding: 0px;
	margin:0px;
}
.accordion dd li {
	border-bottom: 1px solid #ccc;
	background-color: #fff;
}
.accordion dd li a {
	display: block;
	padding: 18px 1px 18px 60px;
	color: #333;
	font-size: 16px;
}

@media print, screen and (min-width: 768px){
.accordion dd li a {
	font-size: 17px;
	}
}

@media print, screen and (min-width:992px){
.accordion dd li a {
	font-size: 16px;
	}
}

@media print, screen and (min-width:1200px){
.accordion dd li a {
	font-size: 16.5px;
	}
}

.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 dt  {background-image:none; cursor:default;}
	 .accordion dt.active  { background-image:none;}
	 .accordion dd{ display: block}
   .hamburgerMenu { display: none;}
}

/* 追加 */

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

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

@media print, screen and (min-width: 768px){
	 .accordion dt  {background-image:none; cursor:default;}
	 .accordion dt.active  { background-image:none;}
	 .accordion dd{ display: block}
   .accordionIcon { display: none;}
}

@media print, screen and (min-width: 768px){
	.accordion dd ul {
	border-top:0px solid #99dded;
	border-left:0px solid #99dded !important;
	}	
	.accordion dd li {
	border-right:1px solid #99dded;
	border-bottom: 1px solid #99dded !important;
	background-color: #fff !important;
	font-size: 13px;
	float: left;
	width: 33%;
	}
}
@media print, screen and (min-width: 992px){
	.accordion dd li {
	width: 33%;
	}
}
@media print, screen and (min-width:1120px){
	.accordion dd li {
	width: 20%;
	}
}


/*   ===   END   ===   */


</pre></body></html>