@charset "UTF-8";
.web_font01 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.object-fit-img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: contain;";
}

.bg_dot {
  display: block;
  content: "";
  background: url("../images/bg_dot.png") center repeat;
  background-size: 6px 9px;
  position: absolute;
  z-index: 20;
  opacity: 0.4;
}

@media screen and (max-width: 736px) {
  .bg_dot {
    background: url("../images/bg_dot.png") center repeat;
    background-size: 4px 6px;
  }
}
/* function が使える */
/*------------------------------------------------------------
ローディング
------------------------------------------------------------*/
#load_anm {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#load_anm .box1 {
  z-index: 2;
  background-color: rgb(255, 255, 255);
  color: #131834;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#load_anm .box1.animation {
  -webkit-animation: FullAnime2 0.8s cubic-bezier(0, 0.49, 0.08, 1) 0.6s both;
          animation: FullAnime2 0.8s cubic-bezier(0, 0.49, 0.08, 1) 0.6s both;
}
#load_anm .logo1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#load_anm .logo1 p {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#load_anm .logo1 p.animation {
  -webkit-animation: FullAnime3 0.8s cubic-bezier(0, 0.49, 0.08, 1) 0.6s both;
          animation: FullAnime3 0.8s cubic-bezier(0, 0.49, 0.08, 1) 0.6s both;
}
#load_anm .logo1 p.animation img {
  -webkit-animation: FullAnime4 0.4s cubic-bezier(0, 0.49, 0.08, 1) 0s both;
          animation: FullAnime4 0.4s cubic-bezier(0, 0.49, 0.08, 1) 0s both;
}
#load_anm .logo1 p span {
  display: inline-block;
  overflow: hidden;
}
#load_anm .logo1 p img {
  width: auto;
  height: 56px;
  opacity: 0;
  transform: translate(0px, 100%);
}
#load_anm .box2 {
  background-color: rgb(0, 0, 0);
  color: #131834;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#load_anm .box2.animation {
  -webkit-animation: FullAnime2 0.8s cubic-bezier(0, 0.49, 0.08, 1) 2s both;
          animation: FullAnime2 0.8s cubic-bezier(0, 0.49, 0.08, 1) 2s both;
}
#load_anm .logo2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow: hidden;
}
#load_anm .logo2 p {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#load_anm .logo2 p.animation {
  -webkit-animation: FullAnime3 0.8s cubic-bezier(0, 0.49, 0.08, 1) 2s both;
          animation: FullAnime3 0.8s cubic-bezier(0, 0.49, 0.08, 1) 2s both;
}
#load_anm .logo2 p span {
  display: inline-block;
  overflow: hidden;
}
#load_anm .logo2 p img {
  width: auto;
  height: 56px;
}

@media screen and (max-width: 736px) {
  #load_anm .logo1 p img, #load_anm .logo2 p img {
    height: 32px;
  }
}
@keyframes FullAnime2 {
  0% {
    transform: translate(0px, 0px);
  }
  100% {
    transform: translate(0px, -100%);
  }
}
@-webkit-keyframes FullAnime2 {
  0% {
    transform: translate(0px, 0px);
  }
  100% {
    transform: translate(0px, -100%);
  }
}
@keyframes FullAnime3 {
  0% {
    transform: translate(0px, 0px);
  }
  100% {
    transform: translate(0px, 100%);
  }
}
@-webkit-keyframes FullAnime3 {
  0% {
    transform: translate(0px, 0px);
  }
  100% {
    transform: translate(0px, 100%);
  }
}
@keyframes FullAnime4 {
  0% {
    opacity: 0;
    transform: translate(0px, 100%);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
@-webkit-keyframes FullAnime4 {
  0% {
    opacity: 0;
    transform: translate(0px, 100%);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}