@import url("https://fonts.googleapis.com/css2?family=M+PLUS+2:wght@100..900&display=swap");
/*----------------------------------*/
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  border-radius: unset;
  box-sizing: border-box;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.nowrap {
  white-space: nowrap;
}

.pc {
  display: initial !important;
}

.sp {
  display: none !important;
}

b,
em {
  font-style: normal;
}

a {
  color: #0066cc;
}

/*----------------------------------*/
html {
  overflow: hidden;
}

body {
  font-family: "M PLUS 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  background: #00377b;
}

#container {
  display: flex;
  align-items: stretch;
  width: 100vw;
  height: 100vh;
  position: fixed;
}

#header {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 3vw;
}
#header .logo img {
  width: 100%;
  height: auto;
  max-width: 475px;
}

#main {
  width: 50%;
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 55, 122, 0.7);
  padding: 3vw;
  overflow-y: auto;
}
#main h2 {
  margin-bottom: 2vw;
  background: #00377b;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 6px;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
  position: relative;
}

#footer {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #00377b;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 13px;
}

a {
  color: #fff;
}

.contents .officeinfo {
  width: 90%;
  margin: 0 auto;
}
.contents .officeinfo dl {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
}
.contents .officeinfo dl dt {
  width: 25%;
  font-size: 13px;
  padding: 20px 30px 20px 0;
  white-space: nowrap;
}
.contents .officeinfo dl dd {
  width: 75%;
  font-size: 16px;
  padding: 20px 0 20px 30px;
  border-left: 1px solid #6688ac;
}

.entry-content .article {
  width: 93%;
  margin: 0 auto 40px;
}
.entry-content h3 {
  margin-bottom: 10px;
}
.entry-content .sub-cnt {
  margin-bottom: 20px;
}
.entry-content .sub-title {
  margin-bottom: 10px;
}

video.fullscreen {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 750px) {
  html {
    overflow: auto;
  }
  #container {
    flex-direction: column;
    position: static;
  }
  #header {
    width: 100%;
    padding: 50% 9vw;
  }
  #main {
    width: 100%;
    overflow-y: unset;
    padding: 12vw 3vw;
  }
  .contents .officeinfo dl dt {
    width: 28%;
  }
  .contents .officeinfo dl dd {
    width: 72%;
  }
}/*# sourceMappingURL=base.css.map */