@charset "UTF-8";
@import url(//use.fontawesome.com/releases/v5.7.2/css/all.css);
.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
}
.fadein.fadein-bottom {
  transform: translate(0, 30px);
}
.fadein.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

#main {
  height: 2716px;
  background: url(../images/main_bg.jpg);
  background-position-x: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  #main {
    height: 1500px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media only screen and (max-width: 450px) {
  #main {
    height: 900px;
  }
}
#main > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#main > div img {
  width: 90%;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  display: block;
}
#main > div img.sp {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  #main > div img.pc {
    display: none !important;
  }
  #main > div img.sp {
    display: block !important;
  }
}
#main .metos {
  width: 50%;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  display: block;
}
#main .mt300 {
  margin-top: 300px;
}
@media only screen and (max-width: 768px) {
  #main .mt300 {
    margin-top: 100px;
  }
}
#main .container_01 {
  margin: 0;
  padding: 0;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #main .container_01 {
    display: none;
  }
}
#main .container_01 a:hover {
  opacity: 0.7;
}
#main .scroll-down_01 {
  position: relative;
  width: 200px;
  height: 200px;
  color: #fff;
  font-family: serif;
  text-decoration: none;
}
#main .circle-text_01 {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}
#main .circle-text_01 span {
  position: absolute;
  left: 50%;
  font-size: 16px;
  transform-origin: 0 100px;
}
#main .arrow_01 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 50px;
  transform: translate(-50%, -50%);
  animation: scroll_01 3s infinite;
}
#main .arrow_01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 1px;
  background-color: #fff;
  transform: translateX(-50%);
}
#main .arrow_01::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-bottom: 1px solid #fff;
  transform: translateX(-50%) rotate(-45deg);
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scroll_01 {
  0% {
    transform: translate(-50%, -50%) translateY(-10px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) translateY(10px);
    opacity: 0;
  }
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background: #1f286f;
}
nav img {
  width: 90%;
  max-width: -moz-max-content;
  max-width: max-content;
}

section .wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

#sec01 {
  /*アニメーション*/
}
#sec01 .slide_1 {
  position: relative;
  z-index: 100;
  background-size: cover;
  width: 100%;
  background: url(../images/slide.jpg) repeat-x 50% 50%;
  height: 386px;
  overflow: hidden;
  animation: loop1 70s linear infinite normal;
  padding-left: -10px;
}
@keyframes loop1 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2252px 0;
  }
}

#sec02 dl {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1000px) {
  #sec02 dl {
    width: 90%;
    margin: 0 auto;
  }
}
#sec02 dl dt {
  font-size: 1.4em;
  margin-bottom: 10px;
  width: 100px;
  font-weight: 700;
}
@media only screen and (max-width: 1000px) {
  #sec02 dl dt {
    width: 100%;
    font-size: 1.3em;
  }
}
#sec02 dl dd {
  font-size: 1.25em;
  margin-bottom: 10px;
  width: calc(100% - 100px);
}
@media only screen and (max-width: 1000px) {
  #sec02 dl dd {
    width: 100%;
    font-size: 1.2em;
  }
}
#sec02 dl dd ul li {
  font-size: 1rem;
  padding-left: 1em;
  text-indent: -1em;
}
@media only screen and (max-width: 1000px) {
  #sec02 dl dd ul li {
    font-size: 0.9rem;
  }
}

#sec03 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  text-align: center;
}/*# sourceMappingURL=style.css.map */