*,
*:before,
*:after {
  padding: 0;
  margin: 0;
}

#menu {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}

ol,
ul {
  list-style: none;
}
.cp_menu{
  position: fixed;

  overflow-y: scroll;
  overflow-x: hidden;
}

#menu li {
	width:180px;
  margin-right: 20px;
}
#menu li a {
	color:#fff;
	display: block;
	padding:10px 5px 10px 15px;
}


.cp_menu > a {
  text-decoration: none;
  color: inherit;
}
.cp_menu > ul > li > a:hover {
  background-color: #f00;
}
.cp_cont {
  height: 65vh;
}
.cp_offcm01 {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-block;
}
/* menu */
.cp_offcm01 .cp_menu {
  position: fixed;
  top: 0;
  right: 0vw;
  width: 200px;
  height: calc(100vh - 50px);
  -webkit-transition: 0.53s transform;
  transition: 0.53s transform;
  -webkit-transition-timing-function: cubic-bezier(0.38, 0.52, 0.23, 0.99);
  transition-timing-function: cubic-bezier(0.38, 0.52, 0.23, 0.99);
  background-color: #8CA3CF;
  opacity: 1;
  z-index: 9999;
}
.cp_offcm01 .cp_menu ul {
  margin: 0;
  padding: 0;
}
.cp_offcm01 .cp_menu li {
  list-style: none;
}
.cp_offcm01 .cp_menu li a {
  display: block;
  padding: 20px;
  text-decoration: none;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}

.cp_offcm01 #cp_toggle01 {
  position: absolute;
  display: block;
  opacity: 0;
  margin-right: 200px;
  border: none;
}
.cp_offcm01 #cp_toggle01:checked ~ .cp_menu {
  -webkit-transform: translateX(0vw);
  transform: translateX(0vw);
  right: -200px;
}
/* menu toggle */
.cp_offcm01 #cp_toggle01 ~ label {
  display: block;
  padding: 0em;
  cursor: pointer;
  -webkit-transition: 0.5s transform;
  transition: 0.5s transform;
  -webkit-transition-timing-function: cubic-bezier(0.61, -0.38, 0.37, 1.27);
  transition-timing-function: cubic-bezier(0.61, -0.38, 0.37, 1.27);
  text-align: center;
  background-color: #336699;
  color: #fefefe;
  margin: 30px 180px 0 0;
}
.cp_offcm01 #cp_toggle01:checked ~ label {
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
}
.cp_offcm01 #cp_toggle01 ~ label::before {
  padding: 5px 10px 5px 10px;
  font-size: 1.5em;
  content: "\0bb";
}
.cp_offcm01 #cp_toggle01:checked ~ label::before {
  padding: 5px 10px 5px 10px;
  font-size: 1.5em;
  content: "\0ab";
}

/* contents */
.cp_contents {
  color: #333333;
  text-align: center;
}

#accordion {
  /* margin-top:-12px; */
}
.accordion-container .accordion-title {
  position: relative;
  margin: 0;
  padding: 15px 23px 15px 23px;
  background-color: #172959;
  font-size: 0.7em;
  font-weight: normal;
  color: #fff;
  cursor: pointer;
  border-top: 0.5px #fff solid;
  /* width:150px; */
}
.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-title.open {
  background-color: #00aaa7;
  border-top: 0.5px #fff solid;
}
/*
.accordion-container .accordion-title::after {
  content: "";
  position: absolute;
  top: 50ï¼…;
  right: 0px;
  width: 0;
  height: 0;
  border: 2px solid transparent;
  border-top-color: #fff;

  transform: rotate(90deg);
  background: #fff;
  transition: all .3s ease-in-out;

}
.accordion-container .accordion-title.open::after {
  content: "";
  position: absolute;
  top: 0px;
  border: 2px solid transparent;
  border-bottom-color: #fff;

  width: 15px;
  height: 2px;
  background: #fff;
  transition: all .2s ease-in-out;
}
*/

.accordion-container .accordion-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  width: 10px;
  height: 2px;
  /*ç¸¦ç·šã«*/
  transform: rotate(90deg);
  background: #fff;
  transition: all 0.3s ease-in-out;
}
.accordion-container .accordion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  /*æ¨ªç·š*/
  width: 10px;
  height: 2px;
  background: #fff;
  transition: all 0.2s ease-in-out;
}

.accordion-container .accordion-title.open::before {
  transform: rotate(180deg);
}

.accordion-container .accordion-title.open::after {
  opacity: 0;
}

.accordion-content {
  display: none;
  padding-left: 0px;
  border: 1px solid #0079c1;
}
.accordion-container {
  width: 200px;
  margin: 0 auto;
}

#exinfo_obi {
  text-align: center;
  padding: 5px;
  color: #fefefe;
  font-size: 0.9em;
  background: #172959;
  /* background: #FFFFCC; */
  font-weight: bold;
}

.line-1 {
  position: relative;
  margin: 0 auto;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
}
/* Animation */
.anim-typewriter {
  animation: typewriter 4s infinite steps(14);
}
@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 200px;
  }
}
div.accordion-container img {
  transition: transform 0.5s ease, opacity 0.5s ease; /* トランジション効果 */
}

div.accordion-container img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
.menu_footer_container {
bottom: 0;
}

.accordion-container div.waku {
  text-align: center;
}