@charset "UTF-8";
*{
    font-size: 10px;
    box-sizing: border-box;
    font-feature-settings: "palt";
    letter-spacing: 0.1em;
}
p,
a,
small{
    color: #909090;
    font-family: "yu-gothic-pr6n", sans-serif;
    font-weight: 400;
    font-style: normal;
}
p,
a{
    font-size: 1.2rem;
    line-height: 1.8;
}
@media screen and (min-width: 768px){
    p{
        font-size: 1.4rem;
        line-height: 2;
    }
}

/* --パーツ--------------------------------------------- */

.pc{
    display: none;
}
@media screen and (min-width: 768px){
    .pc{
        display: block;
    }
    .sp{
        display: none;
    }
}
#shizuku{
    background-color: #000;
    position: relative;
    height: 100%;
}
.topspace{
    margin-top: 1.5em;
}
.gbtn{
    display: inline-block;
    border-bottom: 0.5px solid #909090;
    cursor: pointer;
}
.gbtn:hover{
    color: #909090;
}
@media screen and (min-width: 768px){
    .gbtn{
        margin-top: .75em;
    }
}

/* --グラデーション--------------------------------------------- */

#shizuku::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background:
    radial-gradient(1500px 1000px at 25% 30%,
      rgba(120,150,180,0.14) 0%,
      rgba(120,150,180,0.05) 40%,
      rgba(120,150,180,0.00) 70%),
    radial-gradient(1300px 900px at 75% 70%,
      rgba(120,150,180,0.12) 0%,
      rgba(120,150,180,0.04) 45%,
      rgba(120,150,180,0.00) 75%);

  opacity: 0;
  filter: blur(14px);  /* ←段差殺し */
  transform: translate3d(0,0,0);

  animation: bgGlowBlue 18s ease-in-out infinite;
}

@keyframes bgGlowBlue{
  0%   { opacity: 0.00; }
  30%  { opacity: 0.60; }
  60%  { opacity: 0.42; }
  100% { opacity: 0.00; }
}

/* --アニメ--------------------------------------------- */

.anime{
    opacity:0;
    filter: blur(10px);
    transform: translateY(8px);
    will-change: transform, opacity, filter;
}


/* --ヘッダー--------------------------------------------- */

.mainlogo{
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding-top: 30px;
}
.mainlogo h1{
    z-index: 99;
}
.mainlogo img{
    display: block;
    width: 60px;
    height: auto;
}
@media screen and (min-width: 768px){
    .mainlogo{
        justify-content: left;
        padding-top: 75px;
    }
    .mainlogo img{
        width: 108px;
    }
}

/* --イメージ--------------------------------------------- */

.mv.swiper{
  position: relative;
  overflow: hidden;
  background:#000;
  isolation: isolate;
  height: 60vh;
  min-height: 320px;
  width: 90%;
  margin: 50px auto;
}

@media (min-width:768px){
  .mv.swiper{
    position: fixed;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 455px;
    height: 640px;
    z-index: 1;
    margin: 0;
  }
}

.mv .swiper-wrapper,
.mv .swiper-slide{ height:100%; }

.mv .swiper-slide img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.08);
  transition: transform 6.5s cubic-bezier(.2,.8,.2,1);
}
.mv .swiper-slide-active img{ transform: scale(1); }

/* 暗転レイヤー */
.mv.swiper::after{
  content:"";
  position:absolute;
  inset:0;
  background:#000;
  opacity:0;
  pointer-events:none;
  z-index: 10;
  transition: opacity 2.5s ease;
}
.mv.swiper.is-black::after{ opacity: .75; }



/* --メイン--------------------------------------------- */

.text{
  position: relative;
  z-index: 99;
}
.addres,
.time{
    width: 90%;
    margin: 4em auto 0;
}
.timeen{
    width: 90%;
    margin: 2em auto 0;
}
@media screen and (min-width: 768px){
    .addres{
        margin-top: 16em;
    }
    .timeen p{
        font-size: 1.2rem;
        line-height: 1.8;
    }
}

/* --フッター--------------------------------------------- */

footer{
    width: 90%;
    margin: 7em auto 0;
    padding-bottom: 4em;
}
.ft{
    display: flex;
    flex-direction: column;
    align-items: flex-start;

}
.copylight{
    margin-top: 2em;
    font-size: .7rem;
    font-weight: 100;
}
@media screen and (min-width: 768px){
    footer{
        margin: 5em auto 3em;
    }
    .ft{
        flex-direction: row;
        align-items: flex-end;
    }
    .copylight{
        margin: 0 0 0 2em;
        line-height: 1;
    }
}
