@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;
  opacity: 1;
}
#loading-screen:after {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
  background-color: rgb(250, 250, 250);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 1;
  -webkit-transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#loading-screen.active:after {
  opacity: 0;
}
#loading-screen #logoWr {
  width: 12.5vw;
  margin-inline: auto;
  overflow: hidden;
  position: relative;
  z-index: 5000;
}
@media (max-width:1024px) {
  #loading-screen #logoWr {
    width: 35vw;
    margin-bottom: max(calc(48 / 600 * 100vw), 48px);
  }
}
#loading-screen #logoWr:has(.active) {
  overflow: visible;
}
#loading-screen #logo {
  -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-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s;
  z-index: 9999;
  position: relative;
  opacity: 1;
}
#loading-screen #logo.active {
  opacity: 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-animation: unset;
          animation: unset;
}
#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スタイル */
.fv.active .fv__contentsWr:after {
  top: 0 !important;
  left: 0 !important;
}
.fv.active .fv__contentsWr:before {
  bottom: 0 !important;
  right: 0 !important;
}
.fv.active .fv__contents__texts {
  opacity: 1 !important;
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
  -webkit-transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s;
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s;
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s;
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s;
}
.fv__contentsWr:after {
  top: -3% !important;
  left: -2% !important;
  -webkit-transition: top 4.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), left 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: top 4.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), left 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width:1024px) {
  .fv__contentsWr:after {
    -webkit-transition: top 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), left 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: top 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), left 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    top: -8% !important;
    left: -6% !important;
  }
}
.fv__contentsWr:before {
  bottom: -3% !important;
  right: -2% !important;
  -webkit-transition: bottom 4.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), right 4.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: bottom 4.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), right 4.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width:1024px) {
  .fv__contentsWr:before {
    -webkit-transition: bottom 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), right 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: bottom 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), right 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    bottom: -8% !important;
    right: -6% !important;
  }
}
.fv__contents__texts {
  opacity: 0 !important;
  -webkit-transform: scale(0.95) !important;
          transform: scale(0.95) !important;
}/*# sourceMappingURL=loading.css.map */