@charset "UTF-8";
/* CSS Document */

article > h1{
  max-width: 1000px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.2em;
  margin: 0 auto 25px;
  padding: 0 20px;
  box-sizing: border-box;
}

article > h1 span{
  font-family: 'Noto Serif JP',"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 11px;
  letter-spacing: normal;
  color: #b9b9b9;
  padding-left: 10px;
}

.mv{
  margin: 0 20px;
  height: 640px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 961px) {
  .mv img{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
  }
}

.info{
  position: relative;
  padding-top: 115px;
  margin-bottom: 460px;
}

.info::before{
  content: "";
  width: 60vw;
  min-width: 700px;
  height: 700px;
  background: #f7f7f7;
  position: absolute;
  top: -150px;
  left: 0;
}

.info div{
  padding-left: 80px;
}

.info h2{
  font-size: 22px;
  line-height: 1;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}

.info h2::before{
  content: "";
  width: 80px;
  height: 2px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}

.info p{
  width: 520px;
  font-size: 16px;
  line-height: 2.2;
}

.about{
  padding-bottom: 60px;
}

.about img{
  width: 445px;
  position: absolute;
  bottom: 0;
  right: 10px;
}

.about div{
  width: 455px;
  margin-left: 15px;
}

@media screen and (max-width: 960px) {
  .about div{
    width: 350px;
  }  
}

.about h2{
  font-size: 18px;
  line-height: 1;
  letter-spacing: .2em;
  margin-bottom: 15px;
}

.about h2 span{
  font-size: 13px;
  padding-right: .5em;
  display: inline-block;
}

.about p{
  font-size: 14px;
  line-height: 2;
}

.about p.note{
  font-size: 12px;
  line-height: 2;
  margin-top: 10px;
}

.about p a{
  vertical-align: bottom;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.about p a::before{
  content: "";
  width: 100%;
  height: 1px;
  background: #9b9b9b;
  position: absolute;
  bottom: 2px;
  left: 0;
  transition: .3s;

}

.about p a:hover::before{
  animation-name: hoverAni;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function:ease;
  animation-delay: 0;
  animation-direction:normal;
}

@keyframes hoverAni{
  0% {
     transform: translateX(0);
  }
  
  30% {
    transform: translateX(100%);
    opacity: 1;
  }
  
  31% {
    transform: translateX(100%);
    opacity: 0;
  }
  
  32% {
    transform: translateX(-100%);
    opacity: 0;
  }
  
  60% {
    transform: translateX(-100%);
    opacity:1;
  }
  
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


@media screen and (max-width: 860px) {
  
  article > h1{
    font-size: 5vw;
    line-height: 1;
    letter-spacing: 0.1em;
    margin: 0 auto 5vw;
    padding: 0 6vw;
  }

  article > h1 span{
    font-size: 3vw;
    padding-left: 1em;
  }

  .mv{
    margin: 0;
    height: auto;
    background: none;
  }

  .mv img{
    display: block;
  }

  .info{
    padding: 10vw 4vw 20vw;
    margin-bottom: 0;
  }

  .info::before{
    min-width: inherit;
    top: 0;
    width: 90%;
    height: 100%;
  }

  .info div{
    padding-left: 0;
  }

  .info h2{
    font-size: 4.5vw;
    line-height: 1;
    padding-bottom: 4vw;
    margin-bottom: 4vw;
    position: relative;
  }

  .info h2::before{
    content: "";
    width: 10vw;
    height: 1px;
    background: #000;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .info p{
    width: 95%;
    font-size: 3.6vw;
    line-height: 2;
  }

  .about{
    padding-bottom: 0;
    text-align: right;
  }

  .about img{
    width: 70%;
    position: static;
    bottom: auto;
    right: auto;
    margin-top: -8vw;
    margin-right: -6vw;
  }

  .about div{
    width: 100%;
    margin-left: 0;
    margin-top: 8vw;
    text-align: left;
  }

  .about h2{
    font-size: 4.3vw;
    line-height: 1;
    letter-spacing: .2em;
    margin-bottom: 5vw;
  }

  .about h2 span{
    font-size: 3vw;
    padding-right: .5em;
    display: inline-block;
  }

  .about p{
    font-size: 3.3vw;
    line-height: 1.8;
  }
  
  .about p.note{
    font-size: 3vw;
    line-height: 1;
    margin-top: 4vw;
  }
}






