@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
.puff-out-center {
  -webkit-animation: puff-out-center 2s cubic-bezier(0.165, 0.84, 0.44, 1) both;
  animation: puff-out-center 2s cubic-bezier(0.165, 0.84, 0.44, 1) both; }

@-webkit-keyframes puff-out-center {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1; }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0; } }
@keyframes puff-out-center {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1; }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0; } }
body {
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-feature-settings: "palt";
  color: #000; }

p {
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 1.65em;
  margin-bottom: 1em; }

h3 {
  font-size: 1.15em;
  font-weight: 700; }

h2 {
  font-size: 2em;
  font-weight: 700; }

body {
  width: 100%;
  overflow-x: hidden;
  position: relative; }
  body img {
    width: 100%;
    height: auto;
    display: block; }
  body.fixed {
    position: fixed; }

main {
  position: relative;
  z-index: 1;
  overflow-x: hidden; }

section {
  display: block;
  position: relative;
  z-index: 1; }

.inner-wrap {
  padding: 0 1em;
  width: calc(100% - 2em); }

.bg-wrap {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-image: url(../images/bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: 0; }

.popup {
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  background: rgba(0, 0, 0, 0.5); }
  .popup .popup-in {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 1024px;
    width: 100%;
    transform: translate(-50%, -50%); }
    .popup .popup-in video {
      width: 98%;
      display: block;
      margin: 0 auto; }

.dli-close {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 5em;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
  transform: rotate(45deg); }

.pop-btn {
  right: 1em;
  top: 1em;
  transition-duration: 0.3s;
  position: fixed;
  z-index: 5; }
  .pop-btn span {
    width: 30px;
    height: 30px;
    position: relative;
    display: block;
    transform: rotate(45deg);
    cursor: pointer; }
    .pop-btn span::before {
      content: "";
      transform: translate(-50%, -50%);
      top: 50%;
      background-color: #fff;
      width: 5px;
      height: 100%;
      position: absolute;
      left: 50%;
      transition-duration: .3s; }
    .pop-btn span::after {
      content: "";
      transform: translate(-50%, -50%);
      top: 50%;
      background-color: #fff;
      width: 100%;
      height: 5px;
      position: absolute;
      left: 50%;
      transition-duration: .3s; }
    .pop-btn span:hover::before, .pop-btn span:hover::after {
      background-color: #8a0000; }

.dli-close::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg); }

#loading {
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: #fff;
  z-index: 10;
  top: 0;
  bottom: 0; }
  #loading .load-bg {
    display: none;
    width: 100%;
    height: 100%;
    background-image: url(../images/bg2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    left: 0; }
  #loading .load-wrap {
    width: 90%;
    max-width: 860px;
    height: fit-content;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto; }
    #loading .load-wrap .step-1 {
      display: none;
      filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.5)); }
    #loading .load-wrap .step-2 {
      display: none;
      filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.5)); }

header {
  position: relative;
  height: 100vh; }

.copy {
  padding: 1em;
  width: calc(100% - 2em);
  max-width: calc(800px - 2em);
  margin: auto; }

.top-title {
  width: calc(100% - 2em);
  padding: 1em;
  height: calc(120px - 2em); }
  .top-title .logo {
    height: 100%;
    margin: auto;
    width: fit-content; }
    .top-title .logo img {
      width: auto;
      height: 100%; }

.contents-cover {
  width: 100%;
  display: flex; }
  .contents-cover .nav-block {
    width: 100%;
    height: calc(100vh - 200px);
    position: relative;
    background-color: #ddd; }
    .contents-cover .nav-block a {
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 3; }
    .contents-cover .nav-block .icon {
      width: 80%;
      height: fit-content;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
      z-index: 2;
      filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3)); }
    .contents-cover .nav-block .bg {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      margin: auto;
      background-image: url(../images/dummy.jpg);
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      mix-blend-mode: luminosity;
      opacity: 0.2;
      -webkit-transition: all 0.5s;
      -moz-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s; }
    .contents-cover .nav-block.wcs {
      background-color: #85a121; }
      .contents-cover .nav-block.wcs .bg {
        background-image: url(../images/image_wcs.jpg); }
    .contents-cover .nav-block.nem {
      background-color: #1d315f; }
      .contents-cover .nav-block.nem .bg {
        background-image: url(../images/image_nem.jpg); }
    .contents-cover .nav-block.dom {
      background-color: #7e0000; }
      .contents-cover .nav-block.dom .bg {
        background-image: url(../images/image_dom.jpg); }
    .contents-cover .nav-block:hover .bg {
      mix-blend-mode: initial;
      opacity: 1; }

.contents-wrap {
  margin: 10% auto; }
  .contents-wrap .contents-face {
    width: 160px;
    margin: auto;
    margin-bottom: 2em; }
  .contents-wrap .flex-box {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-between; }
    .contents-wrap .flex-box .img-box {
      width: 48%; }
    .contents-wrap .flex-box .desc-box {
      width: 48%; }
      .contents-wrap .flex-box .desc-box .title {
        margin-bottom: 1em; }
      .contents-wrap .flex-box .desc-box .text {
        margin-bottom: 1em; }
      .contents-wrap .flex-box .desc-box .term {
        color: #fff;
        text-align: center;
        font-weight: 700;
        padding: 0.5em 1em;
        margin-bottom: 1em; }
      .contents-wrap .flex-box .desc-box .link-bt a {
        display: block;
        padding: 0.5em;
        width: fit-content;
        margin-left: auto;
        font-weight: 700; }
  .contents-wrap#wcs .term {
    background-color: #85a121; }
  .contents-wrap#nem .term {
    background-color: #1d315f; }
  .contents-wrap#dom .term {
    background-color: #7e0000; }

footer {
  position: relative; }
  footer .credit {
    padding: 0.5em 1em;
    display: block;
    text-align: center;
    margin: auto;
    font-size: 0.7em; }

@media screen and (max-width: 768px) {
  .top-title {
    height: calc(100px - 2em); }

  .contents-cover {
    flex-direction: column;
    height: calc(100vh - 180px); }
    .contents-cover .nav-block .icon {
      width: auto;
      height: 100%; }
      .contents-cover .nav-block .icon img {
        width: auto;
        height: 100%;
        margin: auto; }
    .contents-cover .nav-block .bg {
      opacity: 0.8; }
    .contents-cover .nav-block:hover .bg {
      opacity: 0.8;
      mix-blend-mode: luminosity; }

  .contents-wrap .flex-box {
    flex-direction: column; }
    .contents-wrap .flex-box .img-box {
      width: 100%;
      margin-bottom: 1em; }
    .contents-wrap .flex-box .desc-box {
      width: 100%; } }

/*# sourceMappingURL=style.css.map */
