@charset "utf-8";

.not_newslt_bin {
	margin: 1em auto;
}

.not_newslt_advice .not_newslt_kyakbtn {
	cursor: pointer;
	color: #fff;
    background: #091246;
    padding: 0.3em 0.8em;
    font-weight: 600;
    position: relative;
}

.not_newslt_advice .not_newslt_kyakbtn::before,
.not_newslt_advice .not_newslt_kyakbtn::after {
  content: '';
  display: block;
  background-color: #fff;
  position: absolute;
  top: 50%;
  width: 15px;
  height: 2px;
  right: 25px;
}

.not_newslt_advice .not_newslt_kyakbtn::after {
  transform: rotate(90deg);
  transition-duration: .3s;
}

.not_newslt_advice .not_newslt_kyakbtn:hover,
.not_newslt_advice .not_newslt_kyakbtn:active,
.not_newslt_advice .not_newslt_kyakbtn.is-active { 
  /* background-color: #155e6a; */
  background: #335c8c;
}

.not_newslt_advice .not_newslt_kyakbtn.is-active::before {
  opacity: 0;
}

.not_newslt_advice .not_newslt_kyakbtn.is-active::after {
  transform: rotate(0);
}

.not_newslt_advice .not_newslt_mc {
  /* border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  padding: 0 1.5em;
  line-height: 0;
  height: 0; */
  height: 0;
  overflow: hidden;
  opacity: 0;
  /* transition:all 0.5s ease-in-out; */
  transition-duration: .3s;
}

.not_newslt_advice .not_newslt_mc.is-open {
  border: 1px solid #335c8c;
  padding: .625em 1.5em;
  line-height: normal; /* numberに書き換える*/
  height: auto;
  opacity: 1;
}

/* アコーディオン収縮時 */
/* .not_newslt_advice .not_newslt_mc {
  display: none;
  height: 0;
  transition:all 0.5s ease-in-out;
  transition-duration: .3s;
} */

/* アコーディオン展開時 */
/* .not_newslt_advice .not_newslt_mc.is-open {
  display: block;
  height: auto;
} */

/* .not_newslt_advice .not_newslt_kyakbtn .not_newslt_mc {
	overflow: hidden;
	opacity: 0;
	transition-duration: 0.4s;
}

.not_newslt_advice .not_newslt_kyakbtn .not_newslt_mc.is-open {
  opacity: 1;
}

.not_newslt_advice .not_newslt_kyakbtn .not_newslt_mc:hover,
.not_newslt_advice .not_newslt_kyakbtn .not_newslt_mc.is-active {
  background-color: black;
} */


* {
  margin: 0;
  padding: 0;
}

/* CSS for CodePen */
.accordion{
  margin-top: 10px;
}

.accordion__container {
  width: 300px;
  margin: 0 auto;
}

.accordion__title {
  background-color: #000;
  border: 1px solid transparent;
  color: #fff;
  font-size: 1.25em;
  padding: .625em .625em .625em 2em;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.accordion__title::before, .accordion__title::after {
  content: '';
  display: block;
  background-color: #fff;
  position: absolute;
  top: 50%;
  width: 15px;
  height: 2px;
  right: 25px;
}

.accordion__title::after {
  transform: rotate(90deg);
  transition-duration: .3s;
}

.accordion__title:hover,
.accordion__title:active,
.accordion__title.is-active { 
  background-color: #00aaa7;
}

.accordion__title.is-active::before {
  opacity: 0;
}

.accordion__title.is-active::after {
  transform: rotate(0);
}

.accordion__content {
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  padding: 0 1.5em;
  line-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition-duration: .3s;
}

.accordion__content.is-open {
  border: 1px solid #00aaa7;
  padding: .625em 1.5em;
  line-height: normal; /* numberに書き換える*/
  height: auto;
  opacity: 1;
}