@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;
}

* {
  box-sizing: border-box;
}

/* HTML5
-------------------------------------------------- */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

/* embed
-------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

/* all
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
  font-size: 14px;
  line-height: 1.4;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  overflow-wrap: break-word;
  word-break: normal;
  color: #000000;
  overflow: hidden;
  line-height: 23px;
  letter-spacing: 0.067em;
}

a {
  -webkit-transition: all ease-in-out .3s;
          transition: all ease-in-out .3s;
}

a:focus, a:active, a:hover {
  outline: 0;
}

* {
  box-sizing: border-box;
}

.wrap {
  widows: 100%;
  max-width: 1024px;
  box-sizing: border-box;
  margin: 0 auto;
  *zoom: 1;
}

.pc {
  display: inline-block;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  body {
    min-width: 320px;
    font-size: 3.17vw;
  }

  .wrap {
    width: 100%;
    padding: 0 10px;
  }

  .pc {
    display: none;
  }

  .sp {
    display: inline-block;
  }
}

/* clear
-------------------------------------------------- */
.clear {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

.clearfix:before {
  display: inline-table;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* font setting
-------------------------------------------------- */
a {
  text-decoration: none;
  color: #000000;
}

a:hover {
  text-decoration: none;
  cursor: pointer;
}

/* loading
-------------------------------------------------- */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 10;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 2.5s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__logo {
  opacity: 0;
  animation: logo_fade 2s 0.5s forwards;
  width: 158px;
}

@keyframes logo_fade {
  0% {
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* front page
-------------------------------------------------- */
#home div#content {
  position: relative;
}

/* 横スクロールセクション */
.side-scroll-list {
  display: flex;
  width: 300vw;
  height: 100dvh;
}

#home video {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

#home section.panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  overflow: hidden;
  text-align: center;
  background: #FFFFFF;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.5s, filter 0.5s;
}

#home section.panel.active {
  z-index: 1;
  opacity: 1;
  filter: blur(0px);
}

#home section.home-main {
  background: transparent;
  text-align: left;
}

#home section.home-main h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 22ch;
  font-size: 2.73vw;
  line-height: 2;
  color: #FFFFFF;
  filter: drop-shadow(0 0 2px rgb(0 0 0 / 25%));
  text-transform: uppercase;
}

#home section.home-main h2 .title {
  position: relative;
  opacity: 0;
}

#home section.home-main h2 .title span {
  position: relative;
}

#home section .h-cont {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: justify;
  text-justify: inter-ideograph;
  text-justify: inter-character;
}

#home section .h-info__list .h-info__listItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  line-height: 2;
}

#home section .h-info__list .h-info__listItem.info__listItem_compName {
  justify-content: center;
  width: 400px;
  margin-bottom: 50px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 30px;
}

#home section .h-info__list .h-info__listItem a {
  text-decoration: underline;
}

#home section .h-info__list .h-info__listItem .i-title {
  width: 10ch;
}

#home section .h-info__list .h-info__listItem .i-desc {
  margin-bottom: 20px;
}

@media screen and (max-aspect-ratio: 1219/685) {
  #home section.home-main video {
    width: auto;
    height: 100dvh;
  }
}

@media screen and (max-width: 768px) {
  #home section.home-main h2 {
    font-size: 4.41vw;
  }

  #home section .h-cont {
    white-space: nowrap;
  }

  #home section .h-info__list .h-info__listItem.info__listItem_compName {
    width: auto;
    font-size: 6vw;
  }
}