@charset "UTF-8";
/*リセット
--------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*フォント
---------------------------------------------*/
.eu_ex {
  font-family: "eurostile-extended", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.gara {
  font-family: "garamond-premier-pro-display", serif;
  font-weight: 400;
  font-style: italic;
}

.tt_r {
  font-family: "tt-commons-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.tt_db {
  font-family: "tt-commons-pro", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/*メディアクエリー
---------------------------------------------*/
/*変数
---------------------------------------------*/
/* コンテンツ
---------------------------------------------*/
/*html {
  width: 100%;
  height: 100%;
}*/
body {
  font-family: "tt-commons-pro", "游ゴシック体", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-feature-settings: "palt";
  font-size: 14px;
  color: #000000;
  font-weight: normal;
  font-weight: 300;
  font-style: normal;
  scroll-snap-type: y mandatory;
  box-sizing: border-box;
}

img,
video {
  width: 100%;
  vertical-align: bottom;
  display: block;
}

a {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .sp_only {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }
}

#wrapper {
  width: 100%;
  margin: auto;
  overflow: auto;
  scroll-snap-type: y proximity;
  height: 100vh;
}

#loader {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #fff;
  z-index: 100;
}
#loader .logo_wrap {
  width: 150px;
  height: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 769px) {
  #loader .logo_wrap {
    width: 300px;
    height: 300px;
  }
}
#loader .logo_wrap .logo {
  position: relative;
  width: 100%;
  height: 100%;
}
#loader .logo_wrap .logo::after {
  content: "";
  display: block;
  background-image: url(../images/new_logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: 100;
}

.logo_small {
  opacity: 0;
  transform: translateY(50px);
}

.logo_small.translate {
  opacity: 1 !important;
  transform: translateY(0);
  transition: all 2s;
}

.scale {
  opacity: 1 !important;
  transform: scale(1) !important;
  transition: all 2s ease-in-out;
}

main {
  overflow: hidden;
}

#top {
  height: 100vh;
}
#top .top__inner {
  position: relative;
}
#top .top__inner .top__title {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 100%;
  text-align: center;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  #top .top__inner .top__title {
    top: 30px;
  }
}
#top .top__inner .top__title h1 {
  color: #FFFF00;
  font-size: 10px;
}
#top .top__inner .top__text {
  width: 71.46%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (min-width: 769px) {
  #top .top__inner .top__text {
    width: 26.9%;
  }
}
#top .top__inner .top__logo {
  width: 21.91%;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  #top .top__inner .top__logo {
    width: 8.2%;
    bottom: 110px;
  }
}
#top .top__inner .top__logo svg {
  fill: #FFFF00;
}
#top .top__inner .top__img .zoom {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
#top .top__inner .top__img .zoom.zoom_1 img {
  width: 100%;
  height: 100vh;
  animation: animationZoom1 5s ease-in-out forwards;
  -o-object-fit: cover;
     object-fit: cover;
}
@keyframes animationZoom1 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

#lead {
  margin: 80px 0 125px;
}
#lead .inner {
  position: relative;
}
#lead .inner .lead__text {
  font-size: 46px;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 24px;
}
#lead .inner .lead__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.sec {
  margin: 65px auto 80px;
}
@media screen and (min-width: 769px) {
  .sec {
    max-width: 1000px;
    margin: 125px auto 200px;
    position: relative;
  }
}
.sec .inner {
  position: relative;
}
.sec .inner h2 {
  color: #FFFF00;
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 100%;
  text-align: center;
  z-index: 2;
  font-size: 16px;
}
.sec .inner h2 span {
  display: block;
  font-size: 32px;
}
.sec .sec__item {
  margin-bottom: 40px !important;
}
@media screen and (min-width: 769px) {
  .sec .sec__item.sec_item__1 .no_slides {
    display: flex;
    margin: 0 auto;
    justify-content: center;
  }
  .sec .sec__item.sec_item__1 .no_slides div {
    width: 400px;
    height: 560px;
    overflow: hidden;
  }
}
.sec .credit {
  width: 90%;
  margin: auto;
  margin-top: 5.3333333333%;
}
@media screen and (min-width: 769px) {
  .sec .credit {
    width: 80%;
  }
}
.sec .credit .inner {
  width: 55%;
}
@media screen and (min-width: 769px) {
  .sec .credit .inner {
    width: 25.6%;
  }
}
.sec .credit .inner .credit__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  letter-spacing: 0.01em;
  line-height: 1.769;
}
@media screen and (min-width: 769px) {
  .sec .credit .inner .credit__item {
    font-size: 14px;
  }
}
.sec .credit .inner .credit__item .credit__detail {
  margin-left: 5%;
}
.sec .credit .inner .credit__item .credit__btn {
  width: 28px;
  height: 16px;
  margin-left: 15px;
  border: 1px solid #000;
  border-radius: 50%;
  background-color: #FFFF00;
  text-align: center;
  font-size: 9px;
}
.sec#sec__1 .sec__item.sec_item__2 {
  position: relative;
  width: 100%;
}
.sec#sec__1 .sec__item.sec_item__2::before {
  content: "";
  display: block;
  padding-top: 140.2666666667%;
}
@media screen and (min-width: 769px) {
  .sec#sec__1 .sec__item.sec_item__2::before {
    padding-top: 58%;
  }
}
.sec#sec__1 .sec__item.sec_item__2 .left {
  width: 58.6%;
  position: absolute;
  top: 0;
}
@media screen and (min-width: 769px) {
  .sec#sec__1 .sec__item.sec_item__2 .left {
    width: 28%;
    left: 22%;
  }
}
.sec#sec__1 .sec__item.sec_item__2 .right {
  width: 43.1%;
  position: absolute;
  bottom: 0;
  right: 10.9%;
  border: 2px solid #FFF;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .sec#sec__1 .sec__item.sec_item__2 .right {
    width: 28%;
    right: 16%;
  }
}
.sec#sec__1 .sec__item.sec_item__3 {
  margin-bottom: 0 !important;
}
@media screen and (min-width: 769px) {
  .sec#sec__1 .sec__item.sec_item__3 {
    width: 48%;
    margin: 0 auto;
  }
}
.sec#sec__2 .sec__item.sec_item__2 {
  width: 42.6%;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .sec#sec__2 .sec__item.sec_item__2 {
    width: 28.8%;
  }
}
.sec#sec__2 .sec__item.sec_item__3 {
  position: relative;
  width: 100%;
  margin-bottom: 0 !important;
}
.sec#sec__2 .sec__item.sec_item__3::before {
  content: "";
  display: block;
  padding-top: 150.6666%;
}
@media screen and (min-width: 769px) {
  .sec#sec__2 .sec__item.sec_item__3::before {
    padding-top: 78%;
  }
}
.sec#sec__2 .sec__item.sec_item__3 .left {
  width: 80%;
  position: absolute;
  top: 0;
}
@media screen and (min-width: 769px) {
  .sec#sec__2 .sec__item.sec_item__3 .left {
    width: 49.9%;
  }
}
.sec#sec__2 .sec__item.sec_item__3 .right {
  width: 80%;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 769px) {
  .sec#sec__2 .sec__item.sec_item__3 .right {
    width: 38.8%;
  }
}
@media screen and (min-width: 769px) {
  .sec#sec__2 .credit {
    position: absolute;
    left: 10%;
    bottom: 0;
  }
}
.sec#sec__3 .sec__item.sec_item__2 {
  width: 74.6%;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .sec#sec__3 .sec__item.sec_item__2 {
    width: 30%;
  }
}
.sec#sec__3 .sec__item.sec_item__3 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0 !important;
}
@media screen and (min-width: 769px) {
  .sec#sec__3 .sec__item.sec_item__3 {
    justify-content: flex-end;
  }
}
.sec#sec__3 .sec__item.sec_item__3 .left,
.sec#sec__3 .sec__item.sec_item__3 .right {
  width: 48%;
}
@media screen and (min-width: 769px) {
  .sec#sec__3 .sec__item.sec_item__3 .left,
  .sec#sec__3 .sec__item.sec_item__3 .right {
    width: 35.6%;
  }
}
@media screen and (min-width: 769px) {
  .sec#sec__3 .sec__item.sec_item__3 .left {
    margin-right: 18.8%;
  }
}
.sec#sec__4 .sec__item.sec_item__2 {
  position: relative;
  width: 100%;
}
.sec#sec__4 .sec__item.sec_item__2::before {
  content: "";
  display: block;
  padding-top: 213.0666666667%;
}
@media screen and (min-width: 769px) {
  .sec#sec__4 .sec__item.sec_item__2::before {
    padding-top: 86%;
  }
}
.sec#sec__4 .sec__item.sec_item__2 .left {
  width: 58.6%;
  position: absolute;
  top: 0;
}
@media screen and (min-width: 769px) {
  .sec#sec__4 .sec__item.sec_item__2 .left {
    width: 32%;
  }
}
.sec#sec__4 .sec__item.sec_item__2 .right {
  width: 80%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .sec#sec__4 .sec__item.sec_item__2 .right {
    width: 42.5%;
    top: 34.1%;
    left: 57.5%;
    transform: none;
  }
}
.sec#sec__4 .sec__item.sec_item__3 {
  width: 80%;
  margin: auto;
  margin-bottom: 0 !important;
}
@media screen and (min-width: 769px) {
  .sec#sec__4 .sec__item.sec_item__3 {
    width: 42.5%;
    position: absolute;
    top: 51.9%;
    right: 0;
  }
}
@media screen and (min-width: 769px) {
  .sec#sec__4 .sec__item.sec_item__3::before {
    content: "";
    display: block;
    padding-top: 42.5%;
  }
}
.sec#sec__5 .sec__item.sec_item__2 {
  position: relative;
  width: 100%;
  margin-bottom: 0 !important;
}
.sec#sec__5 .sec__item.sec_item__2::before {
  content: "";
  display: block;
  padding-top: 202.9333333333%;
}
@media screen and (min-width: 769px) {
  .sec#sec__5 .sec__item.sec_item__2::before {
    padding-top: 121.2%;
  }
}
.sec#sec__5 .sec__item.sec_item__2 .right {
  width: 62.4%;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 769px) {
  .sec#sec__5 .sec__item.sec_item__2 .right {
    width: 39.3%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
.sec#sec__5 .sec__item.sec_item__2 .left {
  width: 80%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 769px) {
  .sec#sec__5 .sec__item.sec_item__2 .left {
    width: 38%;
    left: 52%;
  }
}
@media screen and (min-width: 769px) {
  .sec#sec__5 .credit {
    position: absolute;
    left: 10%;
    bottom: 0;
  }
}
.sec#sec__6 .sec__item.sec_item__2 {
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .sec#sec__6 .sec__item.sec_item__2 {
    width: 42%;
    position: absolute;
    left: 0;
  }
}
.sec#sec__6 .sec__item.sec_item__3 {
  position: relative;
  width: 100%;
  margin-bottom: 0 !important;
}
.sec#sec__6 .sec__item.sec_item__3::before {
  content: "";
  display: block;
  padding-top: 103.2%;
}
@media screen and (min-width: 769px) {
  .sec#sec__6 .sec__item.sec_item__3::before {
    padding-top: 76%;
  }
}
.sec#sec__6 .sec__item.sec_item__3 .right {
  width: 48%;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 769px) {
  .sec#sec__6 .sec__item.sec_item__3 .right {
    width: 25.3%;
  }
}
.sec#sec__6 .sec__item.sec_item__3 .left {
  width: 48%;
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 769px) {
  .sec#sec__6 .sec__item.sec_item__3 .left {
    width: 25.3%;
    right: 0;
  }
}
@media screen and (min-width: 769px) {
  .sec#sec__6 .credit {
    position: absolute;
    left: 10%;
    bottom: 0;
  }
}
.sec#sec__7 .sec__item.sec_item__2 {
  position: relative;
  width: 100%;
  margin-bottom: 0 !important;
}
.sec#sec__7 .sec__item.sec_item__2::before {
  content: "";
  display: block;
  padding-top: 213.6%;
}
@media screen and (min-width: 769px) {
  .sec#sec__7 .sec__item.sec_item__2::before {
    padding-top: 50.8%;
  }
}
.sec#sec__7 .sec__item.sec_item__2 .right {
  width: 41.6%;
  position: absolute;
  top: 0;
  right: 10.6%;
  border: 2px solid #FFF;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .sec#sec__7 .sec__item.sec_item__2 .right {
    width: 16%;
    left: 42%;
    top: 18.3%;
  }
}
.sec#sec__7 .sec__item.sec_item__2 .left {
  width: 58.6%;
  position: absolute;
  top: 24.7%;
}
@media screen and (min-width: 769px) {
  .sec#sec__7 .sec__item.sec_item__2 .left {
    width: 33.9%;
    top: 0;
  }
}
.sec#sec__7 .sec__item.sec_item__2 .right_02 {
  width: 62.1%;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 769px) {
  .sec#sec__7 .sec__item.sec_item__2 .right_02 {
    width: 35%;
  }
}
.sec#sec__8 .sec__item.sec_item__2 {
  position: relative;
  width: 100%;
}
.sec#sec__8 .sec__item.sec_item__2::before {
  content: "";
  display: block;
  padding-top: 200%;
}
@media screen and (min-width: 769px) {
  .sec#sec__8 .sec__item.sec_item__2::before {
    padding-top: 68.4%;
  }
}
.sec#sec__8 .sec__item.sec_item__2 .left {
  width: 53.3%;
  position: absolute;
  top: 0;
  left: 10.13%;
}
@media screen and (min-width: 769px) {
  .sec#sec__8 .sec__item.sec_item__2 .left {
    width: 34.6%;
    top: 22.66%;
    left: 68.4%;
  }
}
.sec#sec__8 .sec__item.sec_item__2 .right {
  width: 89.6%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .sec#sec__8 .sec__item.sec_item__2 .right {
    width: 33.6%;
    top: 0;
    left: 6.84%;
    transform: none;
  }
}
@media screen and (min-width: 769px) {
  .sec#sec__8 .credit {
    position: absolute;
    left: 10%;
    bottom: 0;
  }
}
.sec#sec__9 .sec__item.sec_item__2 {
  position: relative;
  width: 100%;
}
.sec#sec__9 .sec__item.sec_item__2::before {
  content: "";
  display: block;
  padding-top: 202.6666666667%;
}
@media screen and (min-width: 769px) {
  .sec#sec__9 .sec__item.sec_item__2::before {
    padding-top: 70.9%;
  }
}
.sec#sec__9 .sec__item.sec_item__2 .right {
  width: 48%;
  position: absolute;
  top: 0;
  left: 52.26%;
}
@media screen and (min-width: 769px) {
  .sec#sec__9 .sec__item.sec_item__2 .right {
    width: 35.6%;
    top: 0;
    left: 10%;
  }
}
.sec#sec__9 .sec__item.sec_item__2 .left {
  width: 74.6%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .sec#sec__9 .sec__item.sec_item__2 .left {
    width: 34%;
    top: 24.68%;
    left: 54.4%;
    transform: none;
  }
}
@media screen and (min-width: 769px) {
  .sec#sec__9 .credit {
    position: absolute;
    left: 10%;
    bottom: 0;
  }
}
.sec#sec__10 .sec__item.sec_item__2 {
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .sec#sec__10 .sec__item.sec_item__2 {
    width: 26.9%;
    position: relative;
    left: 35.5%;
    margin: 0;
  }
}
.sec#sec__10 .sec__item.sec_item__3 {
  width: 100%;
  margin: auto;
  margin-bottom: 0 !important;
}
@media screen and (min-width: 769px) {
  .sec#sec__10 .sec__item.sec_item__3 {
    width: 59.5%;
    position: relative;
    left: 35.5%;
    margin: 0;
  }
}
.sec#sec__11 .sec__item.sec_item__2 {
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .sec#sec__11 .sec__item.sec_item__2 {
    width: 30%;
    position: relative;
    left: 41%;
    margin: 0;
  }
}
.sec#sec__11 .sec__item.sec_item__3 {
  width: 100%;
  margin: auto;
  margin-bottom: 0 !important;
}
@media screen and (min-width: 769px) {
  .sec#sec__11 .sec__item.sec_item__3 {
    width: 59.4%;
  }
}

.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -1%;
  text-align: center;
}
.flex-control-nav li {
  margin: 0;
}

.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 24px;
  display: inline-block;
  content: "〈 ";
  color: #FFFF00;
  text-shadow: none !important;
}

.flex-direction-nav a.flex-next:before {
  content: "〉";
}

.flex-control-paging li a {
  width: 20px;
  height: 8px;
  display: block;
  background: #000;
  cursor: pointer;
  text-indent: -9999px;
  -o-box-shadow: inset 0 0 3px rgb(255, 255, 255);
  box-shadow: inset 0 0 3px rgb(255, 255, 255);
  border-radius: 0;
}

.flex-control-paging li a.flex-active {
  background: #FFFF00;
  cursor: default;
}

#footer {
  background-color: #D8D8D8;
  color: #FFFF00;
  text-align: center;
}
#footer .inner .link {
  width: 90%;
  margin: 0 auto;
  padding: 115px 0;
}
#footer .inner .link .msg {
  font-size: 40px;
  margin-bottom: 115px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
#footer .inner .link .footer__logo {
  width: 32.4%;
  margin: 0 auto 50px;
}
@media screen and (min-width: 769px) {
  #footer .inner .link .footer__logo {
    width: 10.958%;
  }
}
#footer .inner .link .footer__logo svg {
  fill: #FFFF00;
}
#footer .inner .link .insta a {
  font-size: 12px;
  color: #FFFF00;
}
#footer .inner .link .insta a span {
  font-size: 18px;
  line-height: 1.333;
  letter-spacing: 0.04em;
}
#footer .inner .note {
  background-color: #FFFF7E;
  color: #000;
}
#footer .inner .note .inner {
  width: 90%;
  margin: 0 auto;
  padding: 30px 0;
}
#footer .inner .note .inner .credit {
  font-size: 9px;
  line-height: 2;
  letter-spacing: 0.03em;
  margin-bottom: 100px;
}
#footer .inner .note .inner .credit span {
  display: block;
}
#footer .inner .note .inner .copy {
  font-size: 10px;
  letter-spacing: 0.03em;
}

/*テキストアニメーション
_______________________________________*/
/* ANIMATION
--------------------------------------*/
.fuwatAnime {
  animation-fill-mode: both;
  animation-duration: 0.6s;
  animation-name: fuwatAnime;
  visibility: visible !important;
}
@keyframes fuwatAnime {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fuwatAnimeFromTop {
  animation-fill-mode: both;
  animation-duration: 1.5s;
  animation-name: fuwatAnimeFromTop;
  visibility: visible !important;
}
@keyframes fuwatAnimeFromTop {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.blink {
  animation: blink 2s ease 0s infinite normal;
  -webkit-animation: blink 2s ease 0s infinite normal;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.inviewfadeIn {
  opacity: 0;
  transition: 2s;
}

.fadeIn {
  opacity: 1;
}

/*===========
inview（左から）
===========*/
.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 2s;
}

.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/*===========
inview（右から）
===========*/
.fadeIn_right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 2s;
}

.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.scroll_container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.scroll_container .scroll_wrap {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}
.scroll_container .scroll_wrap .slide_img {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.nav_paging {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.nav_paging .block {
  width: 20px;
  height: 8px;
  display: block;
  background: #000;
  cursor: pointer;
  text-indent: -9999px;
  -o-box-shadow: inset 0 0 3px rgb(255, 255, 255);
  box-shadow: inset 0 0 3px rgb(255, 255, 255);
  border-radius: 0;
}

/* loading
--------------------------------------*/
#loader-bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #FFF;
  z-index: 1;
  z-index: 99999;
}
#loader-bg #loading {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  #loader-bg #loading {
    width: 100%;
    margin: auto;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  #loader-bg #loading {
    width: 100%;
    margin: auto;
    height: 100%;
  }
}
@media screen and (min-width: 769px) {
  #loader-bg #loading div {
    width: 20%;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  #loader-bg #loading div {
    width: 40%;
    margin: auto;
  }
}

/*jQueryのCSS
--------------------------------------*//*# sourceMappingURL=style.css.map */