.modal {
  background: rgba(0, 0, 0, 0.8);
  width: calc(100% + 17px);
  height: 100%;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.3s, visibility 0s 0.3s;
  transition: opacity 0.3s, visibility 0s 0.3s;
  visibility: hidden;
  overflow-y: scroll;
  opacity: 0;
  z-index: 100; }
  .modal.is-active {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.3s, visibility 0s 0s;
    transition: opacity 0.3s, visibility 0s 0s; }
  .modal__faq {
    background: #ffffff;
    width: 100%;
    max-width: 940px;
    margin: 20px auto;
    padding: 70px 86px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 20px;
    z-index: 40;
    position: relative; }
    .modal__faq__container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      min-height: 100%;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
    .modal__faq__close {
      position: absolute;
      top: 16px;
      right: 16px;
      display: block;
      width: 32px;
      height: 32px;
      z-index: 2;
      cursor: pointer; }
    .is-active .modal__faq {
      display: block; }
    .modal__faq__inner h3 {
      background: #f3d6c6;
      height: 60px;
      color: #073190;
      font-size: 16px;
      font-weight: bold;
      line-height: 60px;
      text-align: center; }
    .modal__faq__inner dl {
      display: block;
      margin-top: 2px;
      padding: 20px;
      border-radius: 0; }
      .modal__faq__inner dl dt {
        padding: 0;
        font-size: 14px;
        line-height: 1.8;
        cursor: inherit; }
      .modal__faq__inner dl dd {
        display: block;
        background: none;
        padding: 0;
        font-size: 14px;
        line-height: 1.8; }
        .modal__faq__inner dl dd ul li {
          padding-left: 1em;
          text-indent: -1em; }
    .modal__faq__inner img {
      margin-top: 10px; }
    .modal__faq.announcement {
      padding: 60px 40px 50px; }
  .modal__contents__title.announcement {
    width: 64.81481%;
    max-width: 525px;
    margin: 0 auto 40px; }
  .modal__contents__sub-title {
    margin-bottom: 15px;
    color: #073190;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.4; }
  .modal__contents__read {
    background: #d9efeb;
    margin-bottom: 40px;
    padding: 20px 25px;
    border-radius: 10px; }
    .modal__contents__read p {
      color: #073190;
      font-size: 16px;
      line-height: 1.875;
      text-align: center; }
  .modal__contents__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px; }
    .modal__contents__box dt {
      background: #073190;
      border-radius: 15px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      width: 70px;
      height: 30px;
      color: #ffffff;
      font-size: 16px;
      line-height: 1.0; }
    .modal__contents__box dd {
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1;
      padding-top: 2px;
      padding-left: 15px; }
    .modal__contents__box.last {
      margin-bottom: 0; }
    .modal__contents__box-bottom {
      margin-top: -15px;
      margin-bottom: 50px;
      padding: 0 20px; }
      .modal__contents__box-bottom.last {
        margin-bottom: 0; }
  .modal__contents__text {
    font-size: 18px;
    line-height: 1.6; }
    .modal__contents__text-blue {
      margin-top: 10px;
      color: #073190;
      font-size: 16px; }
    .modal__contents__text-bold {
      font-weight: bold;
      font-size: 14px; }
    .modal__contents__text-small {
      margin-top: 5px;
      font-size: 14px; }
  .modal__contents__notes {
    margin-top: 10px; }
    .modal__contents__notes li {
      text-indent: -1em;
      padding-left: 1em;
      margin-bottom: 6px;
      font-size: 12px;
      line-height: 1.6; }
      .modal__contents__notes li:last-of-type {
        margin-bottom: 0; }
  .modal__contents__table {
    background: #ffffff;
    margin-top: 5px;
    border-right: 1px solid #3c3c3c;
    border-bottom: 1px solid #3c3c3c; }
    .modal__contents__table thead td {
      text-align: center; }
    .modal__contents__table th, .modal__contents__table td {
      font-size: 14px;
      line-height: 1.4;
      vertical-align: middle;
      border-top: 1px solid #3c3c3c;
      border-left: 1px solid #3c3c3c; }
    .modal__contents__table th {
      background: #d2e7e5;
      width: 150px;
      padding: 8px 10px;
      font-weight: bold;
      text-align: center; }
    .modal__contents__table td {
      padding: 8px 15px; }
    .modal__contents__table small {
      font-size: 12px; }
  .modal__contents__bg-green {
    background: #bfe1db;
    margin: 0 -10px;
    padding: 35px 25px 25px; }

.js__modal__faq {
  color: #073190;
  text-decoration: underline;
  cursor: pointer; }
  .js__modal__faq:hover {
    text-decoration: none; }

@media screen and (max-width: 767px) {
  .modal {
    width: 100%;
    padding: 0 10px; }
    .modal__faq {
      margin: 10px auto;
      padding: 40px 10px 25px;
      border-radius: 10px; }
      .modal__faq__close {
        top: 10px;
        right: 10px;
        width: 22px;
        height: 22px; }
      .modal__faq__inner h3 {
        height: 32px;
        font-size: 12px;
        line-height: 32px; }
      .modal__faq__inner dl {
        margin-top: 2px;
        padding: 10px;
        border-radius: 0; }
        .modal__faq__inner dl dt {
          padding: 0;
          font-size: 12px;
          line-height: 1.6; }
        .modal__faq__inner dl dd {
          padding: 0;
          font-size: 12px;
          line-height: 1.6; }
      .modal__faq__inner img {
        margin-top: 10px; }
      .modal__faq.announcement {
        padding: 40px 15px 25px; }
    .modal__contents__title.announcement {
      width: 80.76923%;
      margin: 0 auto 20px; }
    .modal__contents__sub-title {
      margin-bottom: 10px;
      font-size: 16px; }
    .modal__contents__read {
      margin-bottom: 20px;
      padding: 15px;
      border-radius: 5px; }
      .modal__contents__read p {
        font-size: 11px;
        line-height: 1.5;
        text-align: left; }
    .modal__contents__box {
      display: block;
      margin-bottom: 20px; }
      .modal__contents__box dt {
        border-radius: 15px;
        width: 55px;
        height: 30px;
        margin-bottom: 10px;
        font-size: 12px; }
      .modal__contents__box dd {
        padding-top: 0;
        padding-left: 0; }
      .modal__contents__box-bottom {
        margin-top: -5px;
        margin-bottom: 25px;
        padding: 0; }
    .modal__contents__text {
      font-size: 12px;
      line-height: 1.5; }
      .modal__contents__text-blue {
        font-size: 12px; }
      .modal__contents__text-bold {
        font-size: 12px; }
      .modal__contents__text-small {
        font-size: 11px; }
    .modal__contents__notes {
      margin-top: 10px; }
      .modal__contents__notes li {
        font-size: 10px;
        line-height: 1.5; }
    .modal__contents__table thead td {
      text-align: left; }
    .modal__contents__table th, .modal__contents__table td {
      font-size: 11px;
      line-height: 1.4; }
    .modal__contents__table th {
      width: 85px;
      padding: 5px; }
    .modal__contents__table td {
      padding: 5px 10px; }
    .modal__contents__table small {
      font-size: 10px; }
    .modal__contents__bg-green {
      margin: 0;
      padding: 25px 15px 15px; } }
