@charset "utf-8";

.first-view {
   height: 800px;
   background-image: url(../img/index/bg-main.jpg);
   background-repeat: no-repeat;
   background-position: center center;
   background-size: cover;
   display: flex;
   align-items: center;
   overflow: hidden;

}

.first-view-text {
   width: 500px;
   max-width: 90%;
   margin-top: 20px;
   margin-left: auto;
   margin-right: auto;
   color: #ffffff;
   font-weight: bold;
   text-shadow: 1px 1px 10px #4b2c14;
}
.first-view-text h1 {
   font-family: 'Montserrat', sans-sefif;
   font-size: 26px;
   line-height: 30px;
}

.first-view-text p {
   font-size: 18px;
   margin-top: 20px;
}

.info {
   width: 400px;
   max-width: 90%;
   margin-top: 20px;
   margin-left: auto;
   margin-right: auto;
   display: grid;
   grid-template-columns: repeat(1,350px);
}

.info dt {
   font-size: 16px;
   margin-top: 18px;
   color: yellow;
   text-shadow: 3px 3px 3px #000000;
}

.info dd {
   font-size: 14px;
   margin-top: 6px;
   margin-left: 0;
   marign-right: auto;
   color: skyblue;
   text-shadow: 3px 3px 3px #000000;
}

.link {
   display: grid;
   margin-top: 10px;
   margin-left: 10%;
   margin-right: auto;
}

.link a {
   text-decoration: underline;
}

.link dt {
   padding-top: 20px;
   padding-bottom: 10px;
   color: green;
   text-shadow: 1px 1px 3px #ffffff;
}

.link dd {
   padding-top: 3px;
   padding-left: 10px;
   color: #63B0FC;
   text-shadow: 1px 1px 3px #ffffff;
}

.lead {
   max-width: 1200px;
   margin: 60px auto;
}

.lead p {
   line-height: 2;
   text-align: center;
}

.link-button-area {
   text-align: center;
   margin-top: 40px;
   margin-bottom: 40px;
}

.link-button {
   background-color: #f4dd64;
   display: inline-block;
   min-width: 180px;
   line-height: 38px;
   border-radius: 24px;
   font-family: 'Montserrat', sans-serif;
   font-size: 14px;
}

.link-button:hover {
   background-color: #d8b500;
}

.recommended {
   background-color: skyblue;
   padding-top: 45px;
   padding-bottom: 55px;
}

.recommended h2 {
   font-size: 22px;
   font-weight: bold;
   text-align: center;
}

.recommended h2::after {
   content: '';
   display: block;
   width: 70px;
   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;
   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;
}


@media (max-width: 800px) {
   .first-view {
      height: 700px;
   }
   
   .first-view-text {
      padding-top: 10px;
      padding-left: 20px;
   }
   
   .first-view-text h1 {
      font-size: 20px;
      line-height: 28px;
   }
   
   .first-view-text p {
      font-size: 14px;
      margin-top: 15px;
   }

   .info {
      margin-left: 0;
      margin-right: auto;
   }

   .info dt {
      font-size: 14px;
      margin-top: 16px;
   }

   .info dd {
      font-size: 12px;
      margin-top: 4px;
   }

   .info p {
      font-size: 12px;
      margin-top: 1px;
   }

   .lead {
      padding-left: 20px;
      padding-right: 20px;
   }
   
   .lead p {
      text-align: left;
   }
   
   .link {
      margin-left: 0;
      margin-right: auto;
   }
   .link dt {
      font-size: 14px;
      padding-top: 10px;
      padding-bottom: 0;
   }

   .link dd {
      font-size: 12px;
      padding-top: 4px;
   }

   .item-list {
      padding-left: 20px;
      padding-right: 20px;
   }
   
   .item-list li {
      wigth: 220px;
      margin-left: 30px;
   }
}


