@charset "UTF-8";
.pict {
  width: 100%;
}
.container {
  overflow: auto;
  scroll-snap-type: y mandatory;
  height: 100dvh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.area {
  scroll-snap-align: start;
  height: 100dvh;
  align-items: center;
  display: flex;
}
/*kv
----------------------------------------*/
#kv {
  background: #8ebbd2;
  padding: 3em 5%;
  display: flex;
  text-align: center;
  gap: 2em;
  align-items: center;
  justify-content: center;
}
#kv .txt_box {
  color: #fff;
}
#kv .txt_box h1 {
  margin-bottom: 1em;
}
#kv .txt_box h1 img {
  width: 50%;
}
#kv .txt_box img.feat {
  width: 35%;
  margin-top: 2em;
}
@media screen and (min-width:769px) {
  #kv {}
  #kv > div {
    flex: 1;
  }
  #kv .pict img {
    max-height: 80dvh;
  }
}
@media screen and (max-width:768px) {
  #kv {
    flex-direction: column;
  }
  #kv > div {
    flex-grow: 1;
  }
  #kv .pict img {
    max-height: 50dvh;
  }
}
/*cm
----------------------------------------*/
#cm {}
.shortmovie {
  position: relative;
  width: 100%;
  height: 100dvh;
}
.shortmovie iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.swipe-handler {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: transparent;
  cursor: pointer;
}
/* クラスがついたらクリックを透過させる */
.swipe-handler.is-playing {
  pointer-events: none;
}
/*feat_box
----------------------------------------*/
.profile .area {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.feat_box .item {
  position: sticky;
  width: 100%;
  height: 100dvh;
  top: 0;
  z-index: 2;
}
.feat_box .item img {
  position: absolute;
  bottom: 4em;
  left: 0;
  animation: floating-y 4s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(5%) rotate(-10deg);
  }
}
.feat_box .btn_box a {
  border: none;
  position: absolute;
  bottom: 1em;
  right: 5%;
  background: #84aac1;
  color: #fff;
}
.feat_box .item p {
  color: #555;
  font-weight: bold;
  position: absolute;
  left: 3%;
  bottom: 0.5em;
  filter: drop-shadow(0 0 1em #fff);
}
.feat_box .item p span {
  filter: drop-shadow(0 0 0.1em #fff);
  mix-blend-mode: difference;
}
.message {
  position: absolute;
  width: 65%;
  bottom: 4em;
  text-align: center;
}
.message h3 {
  font-size: 1.2em;
  font-weight: normal;
  color: #666;
  margin-bottom: 0.5em;
  filter: drop-shadow(0 0 1em rgba(255, 255, 255, 1));
  mix-blend-mode: difference;
}
.message h3 strong {
  display: none;
}
.comment {}
@media screen and (min-width:769px) {
  .feat_box .area {
    position: relative;
  }
  .feat_box .item img {
    width: 200px;
    margin-bottom: 1em;
  }
  .message {
    left: 220px;
    width: 22em;
  }
  .profile {
    flex: 1;
  }
  .profile .area {
    gap: 5%;
  }
}
@media screen and (max-width:768px) {
  .feat_box .item {
    padding: 1em 5%;
    display: flex;
    align-items: center;
  }
  .feat_box .item img {
    width: 35%;
    filter: drop-shadow(0.5em 1em 1em rgba(0, 0, 0, 0.2));
  }
  .profile .area {
    flex-direction: column;
  }
  .message {
    right: 5%;
  }
  .comment {
    max-height: 16dvh;
  }
  .feat_box .btn_box a {
    min-width: auto;
    width: 8em;
    font-size: 0.8em;
  }
}
.totop {
  margin: 5dvh 0;
}
#link {
  text-align: center;
}
#link .pict {
  margin-bottom: 3em;
}
#link .pict img {
  width: 220px;
  max-width: 40%;
}
#link p {
  line-height: 2;
}
#link .totop a {
  background: none;
  border: 1px solid #999;
  box-shadow: none;
}
.footer {
  padding: 3em 0;
}