@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600&display=swap");
* {
  box-sizing: border-box;
}

body {
  font-family: "Noto Serif JP", serif;
  margin: 0;
  overflow-x: hidden;
}

header {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 0;
}
header .header-content img {
  height: 40px;
  width: auto;
}
header .header-content .nav {
  display: flex;
}
header .header-content .nav a {
  text-decoration: none;
  color: #fff;
  padding: 0 10px;
}
header .header-content .nav a:hover {
  opacity: 0.6;
}
header .header-content .icon1 {
  color: #fff;
  display: none;
}
header .header-content .icon2 {
  color: #fff;
  display: none;
}

.sp-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  z-index: 150;
  top: 70px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px;
  transform: translateX(-100%);
}
.sp-nav p {
  width: 80%;
  padding: 0px;
  margin: 14px;
  border-bottom: 1px solid #ccc;
}
.sp-nav p a {
  text-decoration: none;
  color: #fff;
}

.header-main {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/mainimg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.header-main:before {
  z-index: 0;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
}
.header-main p {
  font-size: 30px;
  color: #fff;
  position: relative;
  z-index: 100;
  text-align: center;
}

main {
  width: 100%;
  margin-bottom: 100px;
}
main .contents {
  width: 80%;
  max-width: 1180px;
  margin: 50px auto;
  text-align: center;
  padding: 0;
}
main .contents .title {
  font-family: "Times New Roman", Times, serif;
  margin: 30px 0;
}
main .contents .title span {
  font-size: 13px;
  color: #aaa;
  font-weight: normal;
}
main .contents .title h2 {
  margin: 0;
  font-size: 31px;
  font-weight: normal;
}
main .contents .text {
  padding: 0;
  margin: 50px 0;
}
main .contents .text h3 {
  color: #26425b;
  font-size: 20px;
  margin: 0;
}
main .contents .text img {
  width: 100px;
  height: auto;
  margin: 20px 0;
}
main .contents .text .c_blue {
  color: #0067ff;
  font-weight: bold;
  font-size: 18px;
  margin: 10px 0;
}
main .contents .text p {
  font-size: 16px;
  margin: 0;
  line-height: 1.8;
}
main .contents .text p.link {
  margin-top: 30px;
}
main .contents .text p.link a {
  text-decoration: none;
  padding: 10px 50px;
  background-color: #47b2e4;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  font-weight: bold;
  position: relative;
}
main .contents .text p.link a:hover {
  background-color: rgba(71, 178, 228, 0.85);
}
main .contents .text p.link a::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
main .contents .table {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
main .contents .table ul {
  padding: 0;
}
main .contents .table ul li {
  list-style: none;
}
main .contents .table ul li dl {
  border-bottom: 1px solid #ccc;
  padding: 20px;
  margin: 0;
}
main .contents .table ul li dl:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: "";
  clear: both;
  height: 0;
}
main .contents .table ul li dl dt {
  width: 20%;
  float: left;
  font-weight: bold;
}
main .contents .table ul li dl dd {
  width: 74%;
  float: left;
  margin: 0;
}

.tokushoho-content {
  width: 80%;
  margin: 0 auto;
}
.tokushoho-content h3 {
  margin-bottom: 10px;
}
.tokushoho-content h3:nth-of-type(2) {
  margin-top: 60px;
}
.tokushoho-content table {
  width: 100%;
  border-collapse: collapse;
}
.tokushoho-content th, .tokushoho-content td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
  font-weight: 400;
}
.tokushoho-content th {
  background-color: #f2f2f2;
  width: 30%;
}
.tokushoho-content td {
  width: 70%;
}
.tokushoho-content ul {
  list-style-type: none;
  padding: 0;
}
.tokushoho-content li {
  line-height: 1.6;
}

footer {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
}
footer a {
  margin-left: 20px;
  padding: 10px 20px;
  background-color: #44c457;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
}

@media (max-width: 980px) {
  header .header-content img {
    height: 30px;
  }
  header .header-content .nav {
    display: none !important;
  }
  header .header-content .icon1.on {
    display: block !important;
  }
  header .header-content .icon2.on {
    display: block !important;
  }
  .sp-nav.show {
    transform: translateX(0);
    animation-name: modalopen;
    animation-duration: 1s;
  }
  @keyframes modalopen {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0);
    }
  }
  main .contents {
    width: 90% !important;
    margin: 20px auto;
  }
  main .contents .title span {
    font-size: 13px;
  }
  main .contents .title h2 {
    font-size: 25px;
  }
  main .contents .text h3 {
    font-size: 16px;
  }
  main .contents .text .c_blue {
    font-size: 16px;
  }
  main .contents .text p {
    font-size: 13px;
  }
  main .contents .table {
    width: 100% !important;
    margin: 0 !important;
    font-size: 13px;
  }
  main .contents .table ul li dl {
    padding: 15px;
  }
  main .contents .table ul li dl dt {
    width: 28% !important;
  }
  main .contents .table ul li dl dd {
    width: 65% !important;
  }
  .tokushoho-content {
    width: 90%;
  }
  .tokushoho-content h3 {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .tokushoho-content h3:nth-of-type(2) {
    margin-top: 40px;
  }
  .tokushoho-content th, .tokushoho-content td {
    font-size: 13px;
  }
}
.pp {
  width: 100%;
  margin: 30px 0;
}
.pp .title {
  text-align: center;
  margin: 30px 0;
  font-family: "Times New Roman", Times, serif;
}
.pp .title span {
  font-size: 13px;
  font-weight: normal;
  color: #aaa;
}
.pp .title h2 {
  margin: 0;
  font-size: 28px;
  font-weight: normal;
}
.pp .container {
  width: 100%;
}
.pp .container .center-block {
  font-size: 16px;
  max-width: 740px;
  margin: 0 auto;
}
.pp .container .center-block p {
  margin: 0 0 10px;
}
.pp .container .center-block .mgb0 {
  margin: 0;
  line-height: 1.8;
}
.pp .container .center-block h2 {
  position: relative;
  margin-top: 45px;
  padding-left: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
}

@media (max-width: 600px) {
  .pp .title span {
    font-size: 11px;
  }
  .pp .title h2 {
    font-size: 18px;
  }
  .pp .container .center-block {
    font-size: 13px;
    width: 90%;
  }
  .pp .container .center-block h2 {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */