@charset "UTF-8";
/* ---------- common ---------- */
section {
  margin-bottom: 60px;
}

.main-img {
  position: relative;
  height: 230px;
  background: url(../images/bg_main.jpg) center 0 no-repeat;
  background-size: cover;
}
.main-img h2 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 158px;
  height: 33px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .main-img {
    height: 120px;
  }
  .main-img h2 {
    width: 79px;
    height: 16px;
  }
}
/* ---------- .sec ---------- */
.sec::after {
  content: "";
  display: block;
  width: 48px;
  height: 16px;
  margin: 0 auto;
  background: url(../images/icon_square.svg) center 0 no-repeat;
}

.sec h3 {
  margin-bottom: 35px;
  text-align: center;
}

.sec h3 img {
  width: auto;
}

.sec .photo {
  margin-bottom: 35px;
}

.sec table {
  width: 100%;
  margin-bottom: 50px;
  text-align: left;
  line-height: 1.5;
}

.sec table tr {
  border-bottom: 1px solid #ddebff;
}

.sec table tr:first-of-type {
  border-top: 1px solid #ddebff;
}

.sec table th {
  width: 15%;
  padding: 15px 20px;
  background-color: #6494d5;
  color: #fff;
  font-size: 1.6rem;
  font-weight: normal;
  box-sizing: border-box;
}

.sec table td {
  padding: 15px 20px;
  box-sizing: border-box;
  font-size: 1.3rem;
}

.sec table td p {
  margin-bottom: 10px;
}

.sec table td p:last-of-type {
  margin-bottom: 0;
}

.sec table td p strong,
.sec table td .spec h4 {
  font-size: 1.4rem;
  font-weight: bold;
}

.sec table td p strong::after,
.sec table td .spec h4::after {
  content: "\a0/\a0";
}

.sec table td .spec {
  margin-bottom: 10px;
}

.sec table td .spec ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sec table td .spec ul li {
  flex-basis: 49%;
  text-indent: -1em;
  padding-left: 1em;
  box-sizing: border-box;
}

.sec table td .spec ul li::before {
  content: "\25CB";
}

@media screen and (max-width: 768px) {
  .sec .photo {
    margin-bottom: 0;
  }

  .sec table tr {
    border: none;
  }

  .sec table th,
  .sec table td {
    display: block;
    width: 100%;
  }

  .sec table th {
    position: relative;
    border-bottom: 1px solid #ddebff;
  }

  .sec table td {
    position: relative;
    background-color: #e0edf7;
  }

  .sec table th::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5%;
    width: 8px;
    height: 8px;
    margin: auto;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(135deg);
    transition: all 0.25s linear;
  }

  .sec table th.open::after {
    transform: rotate(-45deg);
  }

  .sec table td .spec ul {}

  .sec table td .spec ul li {
    flex-basis: 100%;
  }
}
