@charset "UTF-8";


.info_box>div.content h2 {
  margin: 0 0 60px;
}

.info_box>div>div:nth-of-type(1) {
  display: flex;
  justify-content: center;
  gap: 50px 100px;
  margin: 0 0 50px;
}

.info_box>div>div:nth-of-type(2) {
  display: flex;
  flex-flow: column;
  gap: 50px;
}

.info_box section>h3 {
  justify-content: center;
  padding: 0;
  margin: 0 0 40px;
}

.info_box section>h3::before {
  display: none;
}

.info_box section:nth-of-type(-n+2)>dl {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px 0;
  border-bottom: 1px solid;
  padding: 0 0 30px;
  margin: 0 0 30px;
}

.info_box section:nth-of-type(-n+2)>dl>dt {
  font-weight: bold;
  white-space: nowrap;
}

.info_box section:nth-of-type(2)>dl:nth-of-type(4) p:nth-of-type(1) {
  margin: 0 0 20px;
}


.info_box section:nth-of-type(3)>dl {
  max-width: 800px;
  margin: 0 auto 30px;
}

.info_box section:nth-of-type(3)>dl {
  max-width: 800px;
  margin: 0 auto 30px;
}

.info_box section:nth-of-type(3)>dl:last-of-type {
  margin: 0 auto;
}

.info_box section:nth-of-type(3)>dl>dt {
  display: flex;
  align-items: center;
  border: 1px solid #707070;
  position: relative;
  cursor: pointer;
  padding: 10px;
}

.info_box section:nth-of-type(3)>dl>dt::before {
  content: "";
  width: 12px;
  height: 2px;
  background: #707070;
  position: absolute;
  right: 30px;
}

.info_box section:nth-of-type(3)>dl>dt::after {
  content: "";
  width: 2px;
  height: 12px;
  background: #707070;
  position: absolute;
  right: 35px;
}

.info_box section:nth-of-type(3)>dl>dt.active::after {
  opacity: 0;
  transform: rotate(45deg);
}

.info_box section:nth-of-type(3)>dl>dd {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s;
}

.info_box section:nth-of-type(3)>dl>dt.active+dd {
  height: auto;
  opacity: 1;
  padding: 20px 0 0;
}

.info_box section>dl:nth-of-type(3)>dd ul li {
  list-style: disc;
  margin: 0 0 0 25px;
}

.info_box section>dl:nth-of-type(5)>dd ul {
  display: flex;
  flex-flow: column;
  gap: 50px;
}

.info_box section>dl:nth-of-type(5)>dd ul {
  max-width: 350px;
  display: flex;
  flex-flow: column;
  gap: 50px;
  margin: 0 0 30px;
}

.info_box section>dl:nth-of-type(5)>dd ul li {
  display: flex;
  justify-content: center;
  background: #F1F1F1;
  position: relative;
  padding: 10px;
}

.info_box section>dl:nth-of-type(5)>dd ul li::after {
  content: "";
  width: 25px;
  height: 20px;
  background: #B10F41;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -35px;
}

.info_box section>dl:nth-of-type(5)>dd ul li:last-of-type::after {
  display: none;
}

@media (max-width: 1024px) {

  .info_box section:nth-of-type(3)>dl>dt,
  .info_box section:nth-of-type(3)>dl>dd {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .info_box>div>div:nth-of-type(1) {
    flex-flow: column;
  }

  .info_box section:nth-of-type(-n+2)>dl {
    grid-template-columns: 1fr;
  }
}