@charset "UTF-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


body {
  margin: 0;
  color: #222;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", "YuGothic", sans-serif;
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

.pc-none {
  display: none;
}

.fv {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  aspect-ratio: 1920 / 1080;
  background-color: #fff;
}

/* 背景 */
.fv::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image: url(../img/pre-fv.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  opacity: 0;

  animation: fvFadeIn 1.5s ease forwards;
  animation-delay: 0.5s;

  z-index: 0;
}

/* 中身を前面へ */
.fv > * {
  position: relative;
  z-index: 1;
}

@keyframes fvFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes copyFadeIn {
  to {
    opacity: 1;
  }
}

.fv__title {
  margin: 0 auto;
  width: 27%;
  cursor: pointer;
  opacity: 0;

  animation: copyFadeIn 1.5s ease forwards;
  animation-delay: 1s;
}

.scroll_down{
  position:absolute;
  bottom: 0px;
  right: 40px;
  opacity: 0;

  animation: copyFadeIn 1.5s ease forwards;
  animation-delay: 1s;
}

.scroll_down a{
  position: absolute;
  left: 10px;
  bottom: 45px;
  color: #fff;
  font-size: 10px;
  font-family: "Shippori Mincho", serif;
  letter-spacing: .2em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background:#fff;
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove{
  0%{bottom:100px;}
  100%{bottom:0px;}
}

@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}

.scroll_down:after{
  content:"";
  position: absolute;
  bottom:0;
  left:0;
  width:1px;
  height: 100px;
  background:#fff;
}

.info {
  background-image: linear-gradient(0deg, #000000, #070c17);
  justify-content: center;
  display: flex;
  padding: 0 30px;
}

.info .section__inner {
  width: 100%;
}

.info-wrap {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  max-width: 1000px;
  margin: 80px auto 20px;
}

.info-head {
  display: flex;
  align-items: center;
  background: #bfa673;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  padding: 0 30px;
  font-size: 21px;
}

.info-day {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #999;
  font-size: 1rem;
  letter-spacing: 2px;
}

.info-detail {
  display: flex;
  flex-direction: column;
  background: #fff;
  width: 100%;
  gap: 0;
  padding: 30px;
}

.info-title {
  font-size: 24px;
  margin: 0;
}

.day {
  background: #0d0d1d;
  border-top: solid 2px #bfa673;
  border-bottom: solid 2px #bfa673;
}

.day-wrap {
  gap: 60px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin: 60px auto;
  padding: 0 40px;
  max-width: 1280px;
}

.site-footer {
  background: #000;
  color: #fff;
}

.company {
  color: #fff;
  max-width: 1200px;
  display: flex;
  gap: 80px;
  margin: 0 auto;
}

.shoulder {
    font-size: 12px;
}

.company-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.copyright {
    margin: 0;
    text-align: right;
    font-size: 12px;
}

.company-wrap {
    padding: 30px 30px 10px;
}

@media screen and (max-width: 768px) {
 .fv {
    min-height: 100vh;
    width: auto;
    aspect-ratio: initial;
  }

  .fv::before {
    background-image: url(../img/pre-fv_sp.webp);
    background-size: cover;
    background-position: center;
  }

.fv__title {
    margin: 0 auto;
    width: 290px;
    margin-bottom: 40px;
}

.day-wrap {
  flex-direction: column;
  gap: 35px;
  margin: 40px 30px;
  padding: 0;
}

.pc-none {
  display: inline-block;
}

.info-head {
  font-size: 12px;
  padding: 0 15px;
}

.info-title {
  font-size: 15px;
}

.info-detail {
  padding: 30px 15px;
}

.info-wrap {
  width: 100%;
  margin: 40px auto 20px;
}

.info-day {
  font-size: 0.8rem;
}

.company {
  gap: 20px;
  flex-direction: column;
}

.company-list {
    font-size: 12px;
}

}