@charset "UTF-8";
.accordion-type-1 > dt > button {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  font-size: 1.3rem;
  font-weight: 500;
  color: #06171f;
  padding: 24px 32px 24px 0;
  margin: 0;
  border-bottom: 1px solid #bdbab9;
  transition: 0.3s;
  cursor: pointer;
}
.accordion-type-1 > dt > button:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  left: auto;
  margin: auto;
  width: 16px;
  height: 2px;
  background-color: #bdbab9;
  transition: 0.2s;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
.accordion-type-1 > dt > button:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  left: auto;
  margin: auto;
  width: 16px;
  height: 2px;
  background-color: #bdbab9;
  transition: 0.3s;
}
.accordion-type-1 > dt > button:hover {
  color: #0068b6;
}
.accordion-type-1 > dt > button[aria-expanded=true] {
  border-bottom: none;
}
.accordion-type-1 > dt > button[aria-expanded=true]:before {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.accordion-type-1 > dt > button[aria-expanded=true]:after {
  background-color: transparent;
}
.accordion-type-1 > dt > button + dd + dt {
  margin-top: -1px;
}
.accordion-type-1 > dt:first-of-type {
  border-top: 1px solid #bdbab9;
}
.accordion-type-1 > dd {
  display: none;
  border-bottom: 1px solid #bdbab9;
}
.accordion-type-1 > dd.open {
  display: block;
  padding: 0 0 24px;
}
.accordion-type-1 > dd + dt {
  margin-top: -2px;
}

.accordion-type-2 dt {
  position: relative;
  font-size: 2.4rem;
  font-weight: 500;
  cursor: pointer;
}
.accordion-type-2 dt:after {
  position: absolute;
  content: "";
  background: url(/common/img/icon/icon_accordion_03.svg) no-repeat;
  width: 48px;
  height: 48px;
}
.accordion-type-2 dt.open:after {
  background: url(/common/img/icon/icon_accordion_04.svg) no-repeat;
}

ul.accordion-type-1-opend {
  margin-top: 24px;
  padding: 24px 0 24px;
  border-top: 1px solid #bdbab9;
  border-bottom: 1px solid #bdbab9;
}

ul.accordion-type-1-opend .period {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.accordion-type-1-opend + .accordion-type-1-opend {
  margin-top: 0;
  border-top: none;
}

@media screen and (max-width: 768px) {
  .accordion-type-1 > dd + dt {
    padding: 0;
  }
  .accordion-type-1 > dt button:before, .accordion-type-1 > dt button:after {
    width: 12px;
  }
  .accordion-type-2 dt {
    font-size: 1.8rem;
  }
  .accordion-type-2 dt:after {
    width: 24px;
    height: 24px;
  }
}
/* ここまでjsともにhttps://testwww.meiji.com/template/control.htmlからの引用 */

.pd-0 {
  padding: 0px !important;
}
.accordion-border {
	border-left: solid 5px #0068b6;
	padding-left: 10px;
}