@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300;400;500;600;700;800;900&family=Varela+Round&display=swap");
@import url("http://fonts.googleapis.com/earlyaccess/notosansjp.css");
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600&family=Noto+Sans+JP:wght@100;200;300;400;500;700;800;900&display=swap");
* {
  scroll-behavior: smooth;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.2;
}

a {
  transition: all 0.3s ease;
}
a:hover {
  transition: all 0.3s ease;
  opacity: 0.5;
}

p, span {
  text-align: justify;
}

/*---------------------------
  変数
---------------------------*/
/*---------------------------
  関数
---------------------------*/
/*---------------------------
  extend / mixin
---------------------------*/
/*---------------------------
  parts
---------------------------*/
.b-300 {
  font-weight: 300;
}

.b-400 {
  font-weight: 400;
}

.b-500 {
  font-weight: 500;
}

.b-600 {
  font-weight: 600;
}

.b-700 {
  font-weight: 700;
}

.b-800 {
  font-weight: 800;
}

.b-900 {
  font-weight: 900;
}

.yellow {
  color: #f6ff00;
}

.blue {
  color: #254494;
}

.red {
  color: #e7006a;
}

.white {
  color: #fff;
}

.borderYellow {
  background: linear-gradient(transparent 70%, #f6ff00 30%);
}

.bgBlue {
  background-color: #254494;
}

.bgWhite {
  background-color: #fff;
}

.border {
  border: 1px solid #000;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 10px;
  word-break: break-word;
}
@media only screen and (max-width: 800px) {
  html {
    font-size: 10px;
  }
}

main {
  padding: 5rem 0;
}
@media only screen and (max-width: 800px) {
  main {
    padding: 5rem 0 40px;
  }
}
main h4 {
  font-size: 4rem;
  color: #707070;
  text-align: center;
  margin-bottom: 4%;
}
@media only screen and (max-width: 800px) {
  main h4 {
    font-size: 4rem;
    margin-bottom: 20px;
  }
}
main table {
  padding: 0 20px;
  max-width: 1040px;
  margin: 0 auto;
  font-size: 1.5rem;
  width: 90%;
}
@media only screen and (max-width: 800px) {
  main table {
    padding: 0 40px;
    font-size: 3rem;
  }
  main table tr {
    display: flex;
    flex-direction: column;
    border-top: none;
  }
  main table tr:last-child {
    border-bottom: 1px solid #ccc;
  }
}
main table td, main table th {
  border: 1px solid #ccc;
  padding: 1em;
  color: #707070;
  line-height: 1.8;
}
@media only screen and (max-width: 800px) {
  main table td, main table th {
    width: 100% !important;
    border-collapse: collapse;
  }
}
main table th {
  background-color: #f2f2f2;
  text-align: center;
  width: 40%;
  min-width: 4em;
  position: relative;
  font-weight: 400;
  vertical-align: middle;
}
@media only screen and (max-width: 800px) {
  main table th {
    border-bottom: none;
  }
}
@media only screen and (max-width: 800px) {
  main table td {
    border-bottom: none;
  }
}/*# sourceMappingURL=style.css.map */