@charset "utf-8";

/* --------------- Top 文字をランダムに出現させる --------------- */

.TextRandomAnime span {
  opacity: 0;
}

.TextRandomAnime.appearRandomtext span {
  animation: text_randomanime_on 4s ease-out forwards;
}

/*アニメーションで透過を0から1に変化させる*/
@keyframes text_randomanime_on {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.TextRandomAnime.appearRandomtext span:nth-child(2n) {
  animation-delay: .5s;
  /* spanのついた2の倍数の文字列の変化を0.5秒遅らせる*/
}

.TextRandomAnime.appearRandomtext span:nth-child(3n+1) {
  animation-delay: .15s;
  /* spanのついた3の倍数＋1の文字列の変化を0.15秒遅らせる*/
}

.TextRandomAnime.appearRandomtext span:nth-child(5n) {
  animation-delay: .75s;
  /* spanのついた5の倍数の文字列の変化を0.75秒遅らせる*/
}

/* --------------- top じわっと出現させる --------------- */

.delayed-image {
  /* じわっと画像が表示される */
  animation: fadeIn 5s ease 0s 1 normal;
  -webkit-animation: fadeIn 5s ease 0s 1 normal;
}

/* じわっと画像が表示される ---------  一度追加していたら不要*/
@keyframes fadeIn {

  /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
  0% {
    opacity: 0
  }

  /* 始め */
  100% {
    opacity: 1
  }

  /* 終わり */
}

/*古いブラウザ用  ---------  一度追加していたら不要*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

/* --------------- About じわっと出現させる --------------- */

.blur {
  animation-name: blurAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

/* .blurTrigger {
  opacity: 0;
} */

/* --------------- Top 花びらを散らせる --------------- */
.fall.PC {
  display: none;
}

.fall {
  position: absolute;
  top: 0;
  padding-top: 20px;
  margin: 0;
  width: 100%;
  height: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.fall li {
  list-style: none;
  position: absolute;
  top: -50px;
}

.fall li img {
  width: 15px;
  /* animation: fall 6s linear infinite, sway1 2s ease-in-out infinite alternate; */
  animation: fall 6s linear infinite;
  opacity: 0;
}

@keyframes fall {
  to {
    top: 120%;
  }

  0% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  90% {
    opacity: .8;
  }

  100% {
    opacity: 0;
  }
}

@keyframes sway1 {
  from {
    transform: translateX(0px) rotate(0deg);
  }

  to {
    transform: translateX(100px) rotate(-45deg);
  }
}

@keyframes sway2 {
  from {
    transform: translateX(100px) rotate(-45deg);
  }

  to {
    transform: translateX(0px) rotate(0deg);
  }
}

.fall li:nth-child(1) {
  left: 0;
  animation: fall 10s linear infinite, sway1 3s ease-in-out infinite alternate;
}

.fall li:nth-child(2) {
  left: 5vw;
  animation: fall 15s linear infinite, sway1 2s ease-in-out infinite alternate;
}

.fall li:nth-child(3) {
  left: 15vw;
  animation: fall 9s linear infinite, sway1 3.5s ease-in-out infinite alternate;
}

.fall li:nth-child(4) {
  left: 30vw;
  animation: fall 8s linear infinite, sway2 4s ease-in-out infinite alternate;
}

.fall li:nth-child(5) {
  left: 40vw;
  animation: fall 10s linear infinite, sway1 4s ease-in-out infinite alternate;
}

.fall li:nth-child(6) {
  left: 55vw;
  animation: fall 11s linear infinite, sway2 3s ease-in-out infinite alternate;
}

.fall li:nth-child(7) {
  left: 65vw;
  animation: fall 7s linear infinite, sway2 3.5s ease-in-out infinite alternate;
}

@media(min-width:700px) {
  .fall.PC {
    display: block;
    height: 30%;
  }

  .fall.SP {
    display: none;
  }
}

@media(min-width:1440px) {
  .fall.PC {
    height: 55%;
  }

  .fall li img {
    width: 20px;
  }

  .fall li:nth-child(3) {
    left: 50vw;
  }

  .fall li:nth-child(6) {
    left: 70vw;
  }

  .fall li:nth-child(7) {
    left: 90vw;
  }
}

/* --------------- Top もみじを散らせる --------------- */
.fall.momiji.PC {
  display: none;
}

.fall.momiji {
  position: absolute;
  top: 0;
  padding-top: 20px;
  margin: 0;
  width: 100%;
  height: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.fall.momiji li {
  list-style: none;
  position: absolute;
  top: -50px;
}

.fall.momiji li img {
  width: 25px;
}

@media(min-width:700px) {
  .fall.momiji.PC {
    display: block;
    height: 30%;
  }

  .fall.momiji.SP {
    display: none;
  }

  @keyframes sway1 {
    from {
      transform: translateX(0px) rotate(0deg);
    }

    to {
      transform: translateX(60px) rotate(-45deg);
    }
  }

  @keyframes sway2 {
    from {
      transform: translateX(70px) rotate(-45deg);
    }

    to {
      transform: translateX(0px) rotate(0deg);
    }
  }

  .fall.momiji.PC li:nth-child(3) {
    left: 80vw;
  }

  .fall.momiji.PC li:nth-child(6) {
    left: 85vw;
  }
}

@media(min-width:1040px) {
  .fall.momiji.PC li img {
    width: 30px;
  }
}

@media(min-width:1440px) {
  .fall.momiji.PC {
    height: 55%;
  }

  .fall.momiji.PC li img {
    width: 50px;
  }
}

/* --------------- Top 雪を散らせる --------------- */
.fall.snow.PC {
  display: none;
}

.fall.snow {
  position: absolute;
  top: 0;
  padding-top: 20px;
  margin: 0;
  width: 100%;
  height: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.fall.snow li {
  list-style: none;
  position: absolute;
  top: -50px;
}

.fall.snow li img {
  width: 30px;
}

@media(min-width:700px) {
  .fall.snow.PC {
    display: block;
    height: 30%;
  }

  .fall.snow.SP {
    display: none;
  }

  @keyframes sway1 {
    from {
      transform: translateX(0px) rotate(0deg);
    }

    to {
      transform: translateX(60px) rotate(-45deg);
    }
  }

  @keyframes sway2 {
    from {
      transform: translateX(70px) rotate(-45deg);
    }

    to {
      transform: translateX(0px) rotate(0deg);
    }
  }

  .fall.snow.PC li:nth-child(3) {
    left: 80vw;
  }

  .fall.snow.PC li:nth-child(6) {
    left: 85vw;
  }
}

@media(min-width:1040px) {
  .fall.snow.PC {
    height: 55%;
  }

  .fall.snow.PC li img {
    width: 40px;
  }
}

@media(min-width:1440px) {
  .fall.snow.PC li img {
    width: 50px;
  }
}


/* --------------- Suggest ボタンアニメーション --------------- */

/* ボタン共通設定 */
.suggest-btn-tate {
  /*影の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  height: 70px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background: transparent;
  border-radius: 8px;
  border: solid 1px #191b28;
  outline: none;
  /*アニメーションの指定*/
  transition: all 0.2s ease;
}

/*hoverをした後のボタンの形状*/
.suggest-btn-tate:hover {
  border-color: transparent;
}

/*ボタンの中のテキスト*/
.suggest-btn-tate span {
  position: relative;
  z-index: 2;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  /*テキストの形状*/
  display: block;
  padding: 23px 5px;
  border-radius: 8px;
  background: #d9ead8;
  color: #191b28;
  font-size: 1.4rem;
  font-family: "EB Garamond", serif;
  /*アニメーションの指定*/
  transition: all 0.3s ease;
}

.suggest-btn-tate.C span {
  background: #f5dac5;
}

/*== 下に押し込まれる（立体が平面に） */
/*影の設定*/
.pushdown:before {
  content: "";
  /*絶対配置で影の位置を決める*/
  position: absolute;
  z-index: -1;
  top: -1px;
  left: 3px;
  /*影の形状*/
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background-color: #abe7a8;
  border: 1px solid #191b28;
}

.pushdown.C::before {
  background-color: #f4be92;
}

/*hoverの際にX軸に4pxずらす*/
.pushdown:hover span {
  background-color: #abe7a8;
  color: #fff;
  transform: translateX(4px);
}

.pushdown.C:hover span {
  background-color: #f4be92;
}

@media(min-width:414px) {
  .suggest-btn-tate {
    border-radius: 10px;
  }

  .suggest-btn-tate span {
    padding: 23px 8px;
    border-radius: 10px;
  }

  .pushdown:before {
    border-radius: 10px;
  }
}

@media(min-width:600px) {
  .suggest-btn-tate {
    height: 105px;
    border-radius: 10px;
  }

  .suggest-btn-tate span {
    padding: 40.5px 10px;
    font-size: 1.6rem;
    border-radius: 10px;
  }

  .pushdown:before {
    left: 4px;
    border-radius: 10px;
  }
}

@media(min-width:1040px) {
  .suggest-btn-tate {
    border-radius: 15px;
    height: 165px;
  }

  .suggest-btn-tate span {
    padding: 70.5px 20px;
    border-radius: 15px;
    font-size: 2.4rem;
  }

  .pushdown:before {
    left: 5px;
    border-radius: 15px;
  }
}

/* 横ver */

/* ボタン共通設定 */
.suggest-btn-yoko {
  /*影の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  width: 75%;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background: transparent;
  border-radius: 8px;
  border: solid 1px #191b28;
  outline: none;
  /*アニメーションの指定*/
  transition: all 0.2s ease;
}

/*hoverをした後のボタンの形状*/
.suggest-btn-yoko:hover {
  border-color: transparent;
}

/*ボタンの中のテキスト*/
.suggest-btn-yoko span {
  position: relative;
  z-index: 2;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  /*テキストの形状*/
  display: block;
  background: #f8ebfd;
  border-radius: 8px;
  color: #191b28;
  font-size: 1.4rem;
  font-family: "EB Garamond", serif;
  /*アニメーションの指定*/
  transition: all 0.3s ease;
}

.suggest-btn-yoko.B span {
  background: #bce2e8;
}

.suggest-btn-yoko.C span {
  background: #f5dac5;
}

/*== 下に押し込まれる（立体が平面に） */
/*影の設定*/
.suggest-btn-yoko.pushdown:before {
  content: "";
  /*絶対配置で影の位置を決める*/
  position: absolute;
  z-index: -1;
  top: 3px;
  left: -1px;
  /*影の形状*/
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background-color: #e6acfc;
}

.suggest-btn-yoko.pushdown.B::before {
  background-color: #81d7e5;
}

.suggest-btn-yoko.pushdown.C::before {
  background-color: #f4be92;
}

/*hoverの際にY軸に3pxずらす*/
.suggest-btn-yoko.pushdown:hover span {
  background-color: #e6acfc;
  color: #fff;
  transform: translateY(3px);
}

.suggest-btn-yoko.pushdown.B:hover span {
  background-color: #81d7e5;
}

.suggest-btn-yoko.pushdown.C:hover span {
  background-color: #f4be92;
}

@media(min-width:414px) {
  .suggest-btn-yoko {
    border-radius: 10px;
  }

  .suggest-btn-yoko span {
    border-radius: 10px;
  }

  .suggest-btn-yoko.pushdown:before {
    border-radius: 10px;
  }
}

@media(min-width:600px) {
  .suggest-btn-yoko {
    width: 125px;
  }

  .suggest-btn-yoko span {
    padding: 5px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .suggest-btn-yoko.pushdown:before {
    top: 4px;
    border-radius: 10px;
  }
}

@media(min-width:1040px) {
  .suggest-btn-yoko {
    border-radius: 15px;
    width: 200px;
  }

  .suggest-btn-yoko span {
    padding: 15px;
    border-radius: 15px;
    font-size: 2.4rem;
  }

  .suggest-btn-yoko.pushdown:before {
    top: 6px;
    border-radius: 15px;
  }
}

/* --------------- product 波紋 --------------- */

.ripples div {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  /* #b8b8b8 */
  border: solid 1px #a1d8e2;
  border-radius: 50%;
  opacity: 0;
  animation: ripples_anim 3s linear infinite;
}

.ripples div::before {
  content: '';
  position: absolute;
  left: 20%;
  top: 30%;
  width: 0;
  height: 0;
  border: solid 2px #a1d8e2;
  border-radius: 50%;
  opacity: 0;
  animation: ripples_anim 3s linear infinite 0.1s;
}

.ripples div::after {
  content: '';
  position: absolute;
  left: 20%;
  top: 30%;
  width: 0;
  height: 0;
  border: solid 1px #a1d8e2;
  border-radius: 50%;
  opacity: 0;
  animation: ripples_anim 3s linear infinite 0.2s;
}

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

  50% {
    transform: translate(-50px, -50px);
    width: 100px;
    height: 100px;
    opacity: 0;
  }
}

.ripples div:nth-of-type(1) {
  left: 20%;
  top: 30%;
  animation-delay: 0s;
  z-index: 3;
}

.ripples div:nth-of-type(2) {
  left: 10%;
  top: 50%;
  animation-delay: 3.5s;
}

.ripples div:nth-of-type(3) {
  left: 30%;
  top: 10%;
  animation-delay: 2.5s;
  z-index: 3;
}

.ripples div:nth-of-type(4) {
  left: 75%;
  top: 20%;
  animation-delay: 0.5s;
  z-index: 3;
}

.ripples div:nth-of-type(5) {
  /* left: 70%;
	top: 50%;
	animation-delay: 2.1s;
  z-index:3; */
  display: none;
}

.ripples div:nth-of-type(6) {
  left: 60%;
  top: 40%;
  animation-delay: 3.0s;
  z-index: 3;
}

.ripples div:nth-of-type(7) {
  left: 70%;
  top: 80%;
  animation-delay: 4.1s;
}

.ripples div:nth-of-type(8) {
  left: 80%;
  top: 70%;
  animation-delay: 1.0s;
}

@media(min-width:700px) {
  @keyframes ripples_anim {
    0% {
      opacity: 1;
    }

    50% {
      transform: translate(-100px, -100px);
      width: 200px;
      height: 200px;
      opacity: 0;
    }
  }

  .ripples div:nth-of-type(1) {
    display: none;
  }

  .ripples div:nth-of-type(2) {
    display: none;
  }

  .ripples div:nth-of-type(3) {
    display: none;
  }

  .ripples div:nth-of-type(4) {
    left: 40%;
    top: 20%;
    animation-delay: 1.5s;
    z-index: 3;
  }

  .ripples div:nth-of-type(5) {
    left: 50%;
    top: 30%;
    animation-delay: 2.5s;
    z-index: 3;
  }

  .ripples div:nth-of-type(6) {
    left: 85%;
    top: 40%;
    animation-delay: 3.0s;
  }

  .ripples div:nth-of-type(7) {
    left: 50%;
    top: 65%;
    animation-delay: 4.1s;
    z-index: 3;
  }

  .ripples div:nth-of-type(8) {
    left: 80%;
    top: 70%;
    animation-delay: 1.0s;
  }
}

@media(min-width:1040px) {
  .ripples div:nth-of-type(1) {
    display: block;
    left: 12%;
    top: 40%;
    animation-delay: 0s;
    z-index: 3;
  }

  .ripples div:nth-of-type(2) {
    display: block;
    z-index: 3;
    left: 10%;
    top: 60%;
    animation-delay: 3.5s;
  }

  .ripples div:nth-of-type(3) {
    display: block;
    z-index: 3;
    left: 40%;
    top: 40%;
    animation-delay: 2.0s;
  }

  .ripples div:nth-of-type(4) {
    left: 40%;
    top: 20%;
    animation-delay: 1.5s;
  }

  .ripples div:nth-of-type(5) {
    left: 50%;
    top: 30%;
    animation-delay: 2.5s;
  }

  .ripples div:nth-of-type(6) {
    left: 85%;
    top: 40%;
    animation-delay: 3.0s;
  }

  .ripples div:nth-of-type(8) {
    left: 80%;
    top: 70%;
    animation-delay: 1.0s;
  }
}

@media(min-width:1440px) {
  .ripples div:nth-of-type(3) {
    top: 45%;
  }

  .ripples div:nth-of-type(4) {
    left: 60%;
    top: 50%;
    animation-delay: 1.5s;
  }

  .ripples div:nth-of-type(8) {
    left: 85%;
    top: 85%;
  }
}

/* --------------- suggest 順番にfade up --------------- */

.box {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}