@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP&display=swap");
body {
  font-family: "Noto Serif JP", serif;
  line-height: 1.8;
  font-size: 16px;
}
@media (max-width: 767.98px) {
  body {
    font-size: 14px;
  }
}

.indent-text {
  text-indent: -19.2px;
  text-indent: -1.2rem;
  margin-left: 19.2px;
  margin-left: 1.2rem;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  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;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
  background: linear-gradient(135deg, #051436 0%, #1e445c 100%);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 9999;
}
.loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, .3);
  border-top: 4px solid white;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin-bottom: 20px;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.loading-text {
  color: white;
  font-size: 19.2px;
  font-size: 1.2rem;
  font-family: Arial, sans-serif;
  margin-bottom: 10px;
}

.progress-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, .3);
  border-radius: 2px;
  overflow: hidden;
}
.progress-bar .progress-fill {
  height: 100%;
  background: white;
  width: 0%;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

#mv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  opacity: 0;
}
#mv.loaded {
  opacity: 1;
}

.mainContentsWrap {
  background-image: url("../img/bg.png");
}

.indexContentsWrap {
  margin-top: 100vh;
  min-height: 100vh;
}

.greetingsWrap {
  background: #ffffff;
  padding: 192px 64px 64px;
  padding: 12rem 4rem 4rem;
  border: #BFD0DF solid 1px;
  border-radius: 10px;
  position: relative;
  margin-top: 240px;
  margin-top: 15rem;
  font-size: 20px;
  font-size: 1.25rem;
}
.greetingsWrap .greetingsHeader {
  position: absolute;
  top: -90px;
  left: -70px;
  width: 480px;
}
.greetingsWrap .h4 {
  font-size: 24px;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .greetingsWrap {
    padding: 12rem 1rem 4rem;
    font-size: 1.1428571429rem;
  }
  .greetingsWrap .greetingsHeader {
    top: -60px;
    left: 0;
    width: 100%;
  }
}

.messageWrap {
  background: #ffffff;
  padding: 192px 64px 64px;
  padding: 12rem 4rem 4rem;
  border-top: #BFD0DF solid 1px;
  border-bottom: #BFD0DF solid 1px;
  font-size: 20px;
  font-size: 1.25rem;
}
.messageWrap .container {
  position: relative;
}
.messageWrap .container .messageHeader {
  position: absolute;
  top: -315px;
  left: -70px;
  width: 480px;
}
.messageWrap .container .h4 {
  font-size: 24px;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .messageWrap {
    padding: 12rem 1rem 4rem;
    font-size: 1.1428571429rem;
  }
  .messageWrap .container .messageHeader {
    top: -280px;
    left: 0;
    width: 100%;
  }
}

.btn-xl {
  font-size: 32px;
  font-size: 2rem;
  border-radius: 10px;
}

.movieHeader {
  position: relative;
  display: inline-block;
  padding: 0 80px;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
}
.movieHeader:before, .movieHeader:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 65px;
  height: 2px;
  background-color: #BFD0DF;
}
.movieHeader:before {
  left: 0;
}
.movieHeader:after {
  right: 0;
}

.conceptWrap {
  background: url("../img/concept_bg.png");
  background-size: cover;
  background-position: top right;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .conceptWrap {
    height: 65vh;
  }
}

#footerMv {
  width: 100%;
  height: 110vh;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-in;
  transition: opacity 0.8s ease-in;
  background: #051436;
}
#footerMv.loaded {
  opacity: 1;
}
@media (max-width: 768px) {
  #footerMv {
    height: 60vh;
  }
}

section:has(#footerMv) {
  position: relative;
  overflow: hidden;
  /*  &::before {
      content: "Footer Video Section";
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(255, 0, 0, 0.7);
      color: white;
      padding: 5px 10px;
      font-size: 12px;
      z-index: 10;
      border-radius: 3px;
    }*/
}

header {
  background: #051436;
  padding: 16px;
  padding: 1rem;
}

footer {
  background: #E3E7EE;
  position: relative;
  z-index: 1;
}
footer .copyRight {
  color: #ffffff;
  background: #051436;
  text-align: center;
  padding: 16px 0;
  padding: 1rem 0;
}

.historyWrap {
  padding-top: 64px;
  padding-top: 4rem;
  background: url("../img/history_bg_logo.png") no-repeat top right 20%;
  background-size: 30%;
}
@media (max-width: 767.98px) {
  .historyWrap {
    background-size: 60%;
    background-position: top right;
  }
}

.historyListWrap .historyYearblock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.historyListWrap .historyYearblock .historyYear {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  font-weight: bold;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1em;
}
.historyListWrap .historyYearblock .historyLists {
  width: 100%;
  position: relative;
}
.historyListWrap .historyYearblock .historyLists::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #bfd0df;
}
.historyListWrap .historyYearblock .historyLists .historyList {
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.historyListWrap .historyYearblock .historyLists .historyList .historyContents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.historyListWrap .historyYearblock .historyLists .historyList .historyContents:before {
  font-family: "Font Awesome 6 Free";
  content: "\f111";
  font-weight: 900;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75px;
          flex: 0 0 75px;
  color: #004681;
  z-index: 2;
}
.historyListWrap .historyYearblock .historyLists .historyList .important01 {
  font-weight: bold;
}
.historyListWrap .historyYearblock .historyLists .historyList .important01:before {
  color: #dc3545;
}
.historyListWrap .historyYearblock .historyLists .historyList .important02 {
  font-weight: bold;
}
.historyListWrap .historyYearblock .historyLists .historyList .important02:before {
  color: #28a745;
}
.historyListWrap .historyYearblock .historyLists .historyList .historyImage {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 160px;
          flex: 0 0 160px;
  margin-left: 24px;
  margin-left: 1.5rem;
}
.historyListWrap .historyYearblock:first-of-type .historyLists::before {
  top: 0.5em;
}
.historyListWrap .historyYearblock:last-child .historyLists::before {
  bottom: 112px;
  bottom: 7rem;
}
@media (max-width: 767.98px) {
  .historyListWrap .historyYearblock .historyYear {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
            flex: 0 0 80px;
    font-size: 1.2rem;
  }
  .historyListWrap .historyYearblock .historyLists .historyList {
    display: block;
  }
  .historyListWrap .historyYearblock .historyLists .historyList .historyContents:before {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50px;
            flex: 0 0 50px;
  }
  .historyListWrap .historyYearblock .historyLists .historyList .historyImage {
    margin-left: 50px;
    margin-top: 1em;
  }
  .historyListWrap .historyYearblock:last-child .historyLists::before {
    bottom: 93%;
  }
}
/*# sourceMappingURL=maps/style.css.map */
