@charset "Windows-31j";
/*--------------------------------------------------
  box-toggle
--------------------------------------------------*/

.hdg-4 {
  font-size: 2.0rem;
  padding-left: 5px;
}

.box-toggle {
  border-bottom: 1px solid #d9d9d9;
}

.box-toggle.no-border {
  border-bottom: 0;
}

.box-toggle > .hdg-toggle {
  position: relative;
  padding-right: 70px;
  margin-top: 20px;
  padding-top: 0;
  padding-bottom: 0;
}

.box-toggle > .hdg-toggle .hdg-H3 {
  margin-bottom: 0;
}

.box-section > .inner > .box-toggle:first-child {
  margin-top: -20px;
}

.box-toggle .toggle {
  width: 27px;
  height: 27px;
  background: #003b92;
  border-radius: 4px;
  display: inline-block;
  overflow: hidden;
  border: none;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
  .box-toggle .toggle {
    right: 13px;
  }
}

.box-toggle .toggle::before, .box-toggle .toggle::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background: #fff;
  position: absolute;
}

.box-toggle .toggle::before {
  height: 1px;
  top: calc(50% - 1px);
  right: 0;
  left: 7px;
}

.box-toggle .toggle::after {
  width: 1px;
  top: 7px;
  left: 13px;
}

.box-toggle .toggle > span {
  display: inline-block;
  position: relative;
  z-index: -1;
  display: none;
}

.box-toggle > .contents {
  padding: 20px .8em 0;
}

.box-toggle > .contents > p {
  margin-top: 0.5em;
}

.box-toggle > .contents > :first-child {
  margin-top: 0;
}

.box-toggle.is-open .toggle {
  background: #d9d9d9 !important;
}

.box-toggle.is-open .toggle::before {
  background: #008eed !important;
}

.box-toggle.is-open .toggle::after {
  display: none;
}