@charset "UTF-8";
#logoWr {
  display: block !important;
}

/*
see: http://html5doctor.com/html-5-reset-stylesheet/
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

.filter-img {
  position: relative;
  overflow: hidden;
}
.filter-img:after {
  content: "";
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 500;
  width: 100%;
  height: 100%;
  display: inline-block;
  mix-blend-mode: screen;
  background-color: rgb(196, 24, 30);
}

/* ローディング画面のスタイル */
#loading-screen {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-clip-path 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-clip-path 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: clip-path 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: clip-path 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-clip-path 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-color: rgb(254, 254, 254);
  -webkit-clip-path: circle(100% at 50% 50%);
          clip-path: circle(100% at 50% 50%);
}
@media (max-width:1024px) {
  #loading-screen {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
  }
}
#loading-screen.active {
  -webkit-clip-path: circle(0% at 50% 50%);
          clip-path: circle(0% at 50% 50%);
}
@media (max-width:1024px) {
  #loading-screen.active {
    -webkit-clip-path: circle(0% at 50% 65%);
            clip-path: circle(0% at 50% 65%);
  }
}
#loading-screen #logoWr {
  width: 15vw;
  margin-inline: auto;
  overflow: hidden;
}
@media (max-width:1024px) {
  #loading-screen #logoWr {
    width: 40vw;
  }
}
#loading-screen #logoWr:has(.active) {
  overflow: visible;
}
#loading-screen #logo {
  width: 100%;
  height: 100%;
  -webkit-animation: appearlogo 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation: appearlogo 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.75, -0.6, 0.15, 0.9) 0.2s;
  transition: -webkit-transform 0.6s cubic-bezier(0.75, -0.6, 0.15, 0.9) 0.2s;
  transition: transform 0.6s cubic-bezier(0.75, -0.6, 0.15, 0.9) 0.2s;
  transition: transform 0.6s cubic-bezier(0.75, -0.6, 0.15, 0.9) 0.2s, -webkit-transform 0.6s cubic-bezier(0.75, -0.6, 0.15, 0.9) 0.2s;
  z-index: 9999;
  position: relative;
}
#loading-screen #logo.active {
  -webkit-transform: translateY(100%) !important;
          transform: translateY(100%) !important;
  -webkit-animation: unset;
          animation: unset;
}
@media (max-width:1024px) {
  #loading-screen #logo.active {
    -webkit-transform: translateY(150%) !important;
            transform: translateY(150%) !important;
  }
}
#loading-screen #logo img {
  width: 100%;
  height: 100%;
}

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

@keyframes appearlogo {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
.fv.active .fv__contents__middle .middle__catch__text {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.fv__contents__middle .middle__catch__textWr {
  overflow: hidden;
}
.fv__contents__middle .middle__catch__text {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: opacity 0.1s cubic-bezier(0.75, -0.3, 0.15, 0.9) 1s, -webkit-transform 0.6s cubic-bezier(0.75, -0.3, 0.15, 0.9) 0.3s;
  transition: opacity 0.1s cubic-bezier(0.75, -0.3, 0.15, 0.9) 1s, -webkit-transform 0.6s cubic-bezier(0.75, -0.3, 0.15, 0.9) 0.3s;
  transition: transform 0.6s cubic-bezier(0.75, -0.3, 0.15, 0.9) 0.3s, opacity 0.1s cubic-bezier(0.75, -0.3, 0.15, 0.9) 1s;
  transition: transform 0.6s cubic-bezier(0.75, -0.3, 0.15, 0.9) 0.3s, opacity 0.1s cubic-bezier(0.75, -0.3, 0.15, 0.9) 1s, -webkit-transform 0.6s cubic-bezier(0.75, -0.3, 0.15, 0.9) 0.3s;
}
.fv__contents__middle .middle__catch__text.inactive {
  -webkit-transform: translateY(-105%) !important;
          transform: translateY(-105%) !important;
  opacity: 1;
}
.fv__contents__middle .middle__catch__text.disactive {
  -webkit-transform: translateY(105%) !important;
          transform: translateY(105%) !important;
  opacity: 0;
}/*# sourceMappingURL=loading.css.map */