/*---------------------------------------- 
	importFont
------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Shippori+Mincho:wght@600&display=swap");
/*---------------------------------------- 
	setting Layout
------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* iframe,*/
html, body, div, span, applet, object,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}

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

html {
  -webkit-text-size-adjust: none;
}

body {
  font-size: 16px;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  background: url(../../images/bg.png);
}

/*-------------------------------------


///////////////////////////////////

* base 16px
********************

12px | 0.750em	13px | 0.813em
14px | 0.875em	15px | 0.938em
16px | 1.000em	17px | 1.063em
18px | 1.125em	19px | 1.188em
20px | 1.250em	21px | 1.313em
22px | 1.375em	23px | 1.438em
24px | 1.500em	25px | 1.563em
26px | 1.625em	27px | 1.688em
28px | 1.750em	29px | 1.813em
30px | 1.875em

34px | 2.125em	36px | 2.250em
40px | 2.500em

///////////////////////////////////

--------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

ol, ul, ul li, ol li {
  list-style: none;
}

iframe {
  /*	z-index:1;	*/
}

img {
  border: none;
  vertical-align: text-bottom;
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

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

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

a {
  color: #0044ff;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  text-decoration: none;
  transition: all 0.4s;
}
a:hover {
  opacity: 0.4;
}

a:hover,
a:active {
  color: #666;
}

a:focus {
  overflow: hidden;
  outline: none;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.red {
  color: #E60012;
}

.relative {
  position: relative;
}

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

blockquote, q {
  quotes: "" "";
}

option {
  padding-right: 10px;
}

.cf:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.slide_show_effect {
  position: relative;
  z-index: 1;
}
.slide_show_effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #222;
  opacity: 1;
}
.slide_show_effect * {
  opacity: 0;
}
.slide_show_effect {
  position: relative;
  z-index: 1;
}
.slide_show_effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 0;
  height: 100%;
  background: #444;
  opacity: 1;
}
.slide_show_effect * {
  opacity: 0;
}
.slide_show_effect.active::before {
  -webkit-animation-name: scrollSlide;
          animation-name: scrollSlide;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
}
.slide_show_effect.active * {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.effect_fade {
  opacity: 0;
}
.effect_fade.active {
  -webkit-animation-name: scrollFade;
          animation-name: scrollFade;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
}

.effect_scale {
  opacity: 0;
}
.effect_scale.active {
  -webkit-animation-name: scrollscale;
          animation-name: scrollscale;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
}

.delay_0 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.delay_1 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay_2 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay_3 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

@-webkit-keyframes scrollFade {
  0% {
    opacity: 0;
    transform: translate(0, 80px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes scrollFade {
  0% {
    opacity: 0;
    transform: translate(0, 80px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-webkit-keyframes scrollscale {
  0% {
    opacity: 0;
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
@keyframes scrollscale {
  0% {
    opacity: 0;
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
@-webkit-keyframes scrollSlide {
  0% {
    width: 0;
    opacity: 0;
  }
  45% {
    width: 100%;
    opacity: 1;
    left: 0;
  }
  55% {
    width: 100%;
    opacity: 1;
    left: 0;
  }
  100% {
    width: 0%;
    left: 100%;
    opacity: 0;
  }
}
@keyframes scrollSlide {
  0% {
    width: 0;
    opacity: 0;
  }
  45% {
    width: 100%;
    opacity: 1;
    left: 0;
  }
  55% {
    width: 100%;
    opacity: 1;
    left: 0;
  }
  100% {
    width: 0%;
    left: 100%;
    opacity: 0;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.text {
  font-family: "Lobster", cursive;
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  overflow: hidden;
  padding: 0 0.2em;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}
.text[data-animated=false] > ._character {
  opacity: 0;
}
.text[data-animated=true] > ._character {
  -webkit-animation: letter-animation 0.8s cubic-bezier(0.19, 1, 0.22, 1) both;
          animation: letter-animation 0.8s cubic-bezier(0.19, 1, 0.22, 1) both;
  opacity: 1;
}

@-webkit-keyframes letter-animation {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes letter-animation {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
/*# sourceMappingURL=style.css.map */