@charset "UTF-8";

/* --------------------------------------------------
  message
-------------------------------------------------- */

#message {
  margin-bottom: 100px;
}
#message .inner {
  display: flex;
  gap: 45px;
}
#message figure {
  width: 390px;
  flex-shrink: 0;
}
#message figure img {
  margin-bottom: 15px;
}
#message figcaption {
  padding: 0 5px;
  font-size: 2.4rem;
  line-height: 1;
  display: flex;
  align-items: end;
  justify-content: end;
  gap: 12px;
}
#message figcaption span {
  font-size: 1.6rem;
}
#message strong {
  margin-bottom: 30px;
  font-size: 2.5rem;
  font-weight: 400;
  display: block;
}
#message strong rt {
  transform: translateY(5px);
}
#message p {
  margin: 20px 0;
}

@media screen and (max-width: 768px) {
  #message {
    margin-bottom: 50px;
  }
  #message .inner {
    flex-direction: column;
    gap: 30px;
  }
  #message figure {
    width: 100%;
    text-align: center;
  }
  #message figure img {
    margin: 0 auto 10px;
    max-width: 240px;
  }
  #message figcaption {
    font-size: 1.8rem;
    display: block;
  }
  #message figcaption span {
    margin-right: 10px;
    font-size: 1.5rem;
  }
  #message strong {
    margin-bottom: 20px;
    font-size: 2rem;
  }
  #message strong br {
    display: none;
  }
}

/* --------------------------------------------------
  policy
-------------------------------------------------- */

#policy {
  margin-bottom: 100px;
}
#policy ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#policy ol > li {
  padding: 60px 35px;
  background: var(--primary-color);
  border-radius: 10px;
  color: #fff;
  display: flex;
  align-items: center;
}
#policy li span {
  width: 55px;
  font-size: 2.4rem;
  font-weight: 700;
  display: block;
  flex-shrink: 0;
}
#policy li strong {
  width: 225px;
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
#policy li strong::before {
  content: attr(data-title);
  font-size: 4.5rem;
}
#policy li p {
  font-size: 1.8rem;
}
#policy li ul {
  margin-top: 5px;
  margin-left: 24px;
  font-size: 1.8rem;
  list-style: disc;
}
#policy li ul:nth-of-type(1) {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #policy {
    margin-bottom: 50px;
  }
  #policy ol > li {
    padding: 30px 20px;
    flex-direction: column;
    justify-content: center;
  }
  #policy li span {
    width: auto;
  }
  #policy li strong {
    margin-bottom: 20px;
    width: auto;
    align-items: center;
  }
  #policy li strong::before {
    font-size: 3.6rem;
  }
  #policy li p {
    font-size: 1.6rem;
  }
  #policy li ul {
    font-size: 1.6rem;
  }
}

/* --------------------------------------------------
  overview
-------------------------------------------------- */

#overview table {
  width: 100%;
  border-collapse: collapse;
}
#overview tr {
  border-bottom: solid 1px #a7a3a3;
}
#overview th, #overview td {
  padding: 20px 0;
  vertical-align: top;
}
#overview th {
  padding-right: 100px;
  text-align: left;
  white-space: nowrap;
}
#overview td {
}
#overview td ul {
  margin-bottom: 10px;
  list-style: none;
  display: flex;
  gap: 10px;
}
#overview td iframe {
  margin: 20px 0;
  width: 100%;
  height: 500px;
}
#overview td table {
  width: auto;
  flex-basis: 100px;
}
#overview td tr {
  border-bottom: none;
}
#overview td th, #overview td td {
  padding: 0;
  vertical-align: top;
}
#overview td th {
  padding-right: 20px;
  font-weight: normal;
}
#overview td td {
  width: 100%;
}
#overview .access {
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  #overview th, #overview td {
    width: 100%;
    display: block;
  }
  #overview th {
    padding-bottom: 20px;
    border-bottom: none;
    font-size: 1.8rem;
  }
  #overview td {
    padding-top: 0;
  }
  #overview td iframe {
    height: 300px;
  }
  #overview td th {
    font-size: 1.6rem;
  }
  #overview td td {
    padding-bottom: 10px;
  }
}
