@charset "utf-8";

#mainImg{
	position: relative;
	overflow: hidden;
	width: 100%;
}

#mainImg img {
	width: 100%;
}

#app-mess {
  position: absolute;
  width: 100%;
  top: 3cqh;
  left: 70%;
  transform: translate(-10%, 0%);
  margin: 20px auto;
  padding: 10px;
  font-family:"Hiragino Sans";
  color:#e0ffff;
  text-shadow:6px 6px 6px #000000;
  backgroud-color:#e6e6fa;
  opacity: 70;
}

#app-mess .text-box{
  font-size: 32.36pt;
  line-height: 1.5em;
  backgroud-color:#e6e6fa;
  opacity: 80;
}

/*===========    フェードイン表示Y方向の指定       ===========*/
.fadeinY span {
  transition: 1s;
  opacity: 0;
  transform: translateY(3%);
  display: block;
}
.fadeinY span:first-child {
  animation: fadeinY_anime 1.4s forwards 0.5s;　
}
.fadeinY span:nth-child(2) {
  animation: fadeinY_anime 1.4s forwards 1.5s;
}
.fadeinY span:nth-child(3) {
  animation: fadeinY_anime 1.4s forwards 3s;
}
.fadeinY span:nth-child(4) {
  animation: fadeinY_anime 1.4s forwards 4.5s;
}
.fadeinY span:nth-child(5) {
  animation: fadeinY_anime 1.4s forwards 7s;
}
.fadeinY span:nth-child(6) {
  animation: fadeinY_anime 1.4s forwards 9s;
}

@keyframes fadeinY_anime {
  0% {
    transform: translateY(3px);
  }
   100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*-----------    end  フェードイン表示Y方向の指定  -----------*/

.first-view {
  height: calc(100vh - 110px);
  background-image: url(../images/index/bg-main.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
}

.first-view-text {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-bottom: 80px;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 1px 1px 10px #4b2c14;
}

.first-view-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  line-height: 72px;
}

.first-view-text p {
  font-size: 18px;
  margin-top: 20px;
  padding-right: 10px;
}





.lead {
  max-width: 1200px;
  margin: 60px auto;
}

.lead p {
  font-size: 16pt;
  line-height: 1.5em;
  text-align: center;
}

.link-button-area {
  text-align: center;
  margin-top: 40px;
}

.link-button {
  background-color: #f4dd64;
  display: inline-block;
  min-width: 180px;
  line-height: 48px;
  border-radius: 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

.link-button:hover {
  background-color: #d8b500;
}

.recommended {
  background-color: #f8f8f8;
  padding-top: 20px;
  padding-bottom: 20px;
  justify-content: space-between;
  align-items: center;
}

.recommended h2 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.recommended h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000000;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.item-list {
  display: flex;
  padding-top: 40px;
  padding-bottom: 10px;
  padding-left: 60px;
  padding-right: 60px;
  justify-content: center;
  align-items: center;
  overflow: auto;
  /*overflow: scroll;*/
}

.item-list li {
  flex-shrink: 0;
  width: 260px;
  margin-left: 75px;
}

.item-list li:first-child {
  margin-left: 0;
}

.item-list dl {
  margin-top: 20px;
}

.item-list dt {
  font-weight: bold;
}

.item-list dd {
  font-size: 13px;
  line-height: 20px;
  margin-top: 10px;
}

.item-list .price {
  font-weight: bold;
  margin-top: 15px;
}

.item-list .explain {
  font-size: 12.944pt;
  line-height: 1.2em;
  padding-right: 10px;
}

.item-list img {
  width: 40%;
  aspect-ratio: 1 / 0.434;
  margin: 10px auto 20px auto;

}

@media (max-width: 1280px) {
  #app-mess {
    width: 100%;
    left: 60%;
  }
  
  #app-mess .text-box{
    font-size: 28.36pt;
  }
}


@media (max-width: 992px) {
  #app-mess {
    width: 100%;
    left: 55%;
  }
  
  #app-mess .text-box{
    font-size: 24.36pt;
  }
}


@media (max-width: 768px) {
  #app-mess {
    width: 100%;
    left: 45%;
  }
  
  #app-mess .text-box{
    font-size: 18.36pt;
  }

  .first-view {
    height: calc(100vh - 50px);
    background-image: url(../images/index/bg-main-sp.jpg);
    align-items: flex-start;
  }

  .first-view-text {
    padding-top: 60px;
    padding-left: 20px;
  }

  .first-view-text h1 {
    font-size: 36px;
    line-height: 48px;
  }

  .first-view-text p {
    font-size: 14px;
    margin-top: 15px;
  }

  .lead {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lead p {
    text-align: left;
  }

  .item-list {
    padding-left: 20px;
    padding-right: 20px;
  }

  .item-list li {
    width: 220px;
    margin-left: 30px;
  }
}