@charset "UTF-8";
.wrapper {
  max-width: 1100px;
  width: 95%;
  margin-top: 80px;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left: auto;
  text-align: justify;
  /* utility */
}

.wrapper * {
  box-sizing: border-box;
}

.wrapper h1 {
  font-size: 34px;
  color: #333;
  letter-spacing: 0.1em;
  border-bottom: solid 3px #333;
}

.wrapper h2 {
  font-size: 24px;
}

.wrapper h3 {
  font-size: 20px;
}

.wrapper table {
  width: 100%;
}

.wrapper table,
.wrapper tr {
  font-size: 14px;
  border: solid 2px;
}

@media screen and (max-width: 768px) {
  .wrapper table,
  .wrapper tr {
    font-size: 10px;
  }
}
.wrapper th,
.wrapper td {
  border: solid 2px;
  padding: 1em;
}

.wrapper th {
  background: #f1f1f1;
}

.wrapper th:nth-child(1) {
  width: 25%;
}

.wrapper th:nth-child(2) {
  width: 45%;
}

.wrapper th:nth-child(3) {
  width: 30%;
}

.wrapper p {
  font-size: 14px;
  margin-bottom: 0.5rem;
}

.wrapper li {
  font-size: 14px;
  margin-bottom: 0.5rem;
}

.wrapper strong {
  font-size: 16px;
}

.wrapper img {
  width: 100%;
  height: auto;
}

.wrapper .qanda li {
  margin-bottom: 1px;
}

.wrapper .qanda li img {
  margin-bottom: 16px;
  max-width: 760px;
  display: block;
  border: 5px solid #ededed;
  padding: 12px;
  border-radius: 10px;
}

.wrapper .question {
  padding: 0.5em;
  color: #002e7b;
  margin-bottom: 1px;
}

.wrapper .title .accordion {
  margin: 3em auto;
  width: 100%;
}

.wrapper .toggle {
  display: none;
}

.wrapper .option {
  position: relative;
  margin-bottom: 1em;
}

.wrapper .title,
.wrapper .content {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.wrapper .title {
  border-bottom: solid 1px #002e7b;
  padding: 1em;
  display: block;
  color: #333;
  font-weight: bold;
  padding-right: 15%;
}

.wrapper .title::after,
.wrapper .title::before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 1.25em;
  width: 2px;
  height: 0.75em;
  background: #333;
  color: #333;
  transition: all 0.3s;
}

.wrapper .title::after {
  transform: rotate(90deg);
}

.wrapper .content {
  max-height: 0;
  overflow: hidden;
}

.wrapper .content p {
  margin: 0;
  padding: 0.5em 1em 1em;
  font-size: 0.9em;
  line-height: 1.5;
}

.wrapper .link-list:first-child {
  margin-top: 16px;
}

.wrapper .link-list:last-child {
  margin-bottom: 24px;
}

.wrapper .toggle:checked + .title + .content {
  max-height: 1500px;
  transition: all 1.5s;
}

.wrapper .toggle:checked + .title::before {
  transform: rotate(90deg) !important;
  color: #002e7b;
}

.wrapper .toggle:checked + .title {
  color: #002e7b;
}

.wrapper .flexcontents {
  display: flex;
}

.wrapper .card {
  width: 35%;
  border: 2px solid #333;
  border-left: none;
}

.wrapper .card.card--left {
  width: 30%;
  border-left: 2px solid #333;
}

.wrapper .card__title {
  text-align: center;
  font-size: 16px;
  background: #f1f1f1;
  padding: 1em 0;
  display: block;
  font-weight: bold;
  border-bottom: 2px solid #333;
}

.wrapper .card__contents p, .wrapper .card__contents ul {
  padding: 0.5em;
  min-height: 64px;
}

@media screen and (max-width: 500px) {
  .wrapper .flexcontents {
    flex-direction: column;
  }
  .wrapper .card {
    width: 100%;
    border: 2px solid #333;
    border-bottom: none;
  }
  .wrapper .card__title {
    border-bottom: none;
  }
  .wrapper .card.card--left {
    width: 100%;
  }
  .wrapper .card.card--right {
    border-bottom: 2px solid #333;
  }
  .wrapper .card__title, .wrapper .card__contents {
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
  }
  .wrapper .card__title::before { /*タイトル横の矢印*/
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 3px);
    right: 20px;
    transform: rotate(135deg);
  }
  .wrapper .card__contents {
    max-height: 0;
    overflow: hidden;
  }
  .wrapper .toggle:checked + .card__title + .card__contents {
    max-height: 1500px;
    transition: all 1.5s;
  }
  .wrapper .toggle:checked + .card__title::before {
    transform: rotate(-45deg);
  }
  .wrapper .toggle:checked + .card__title {
    border-bottom: 2px solid #333;
  }
}
.wrapper .mb-64 {
  margin-bottom: 64px;
}

.wrapper .mb-32 {
  margin-bottom: 32px;
}

.wrapper .mb-16 {
  margin-bottom: 16px;
}

.wrapper .mb-8 {
  margin-bottom: 8px;
} /*# sourceMappingURL=style.css.map */