@charset "utf-8";

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

.first-view-text {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  color:rgb(245, 245, 245);
}

.first-view-text h1 {
    display: flex;
    justify-content: center;
    font-size: 55px;
    text-shadow: 3px 3px 4px #000000;
    font-weight: 570;
}

.first-view-text p {
  display: flex;
  justify-content: center;
  font-size: 35px;
  text-shadow: 2px 2px 4px #000000;
  margin-top: 20px;
}

.highlighter {
  background: linear-gradient(transparent 80%,#804318 50%);
}

.first-view-text h2 a {
  font-weight: 600;
  font-style: italic;
  border-bottom: solid 1px #eeedec;
}

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

.lead p {
  line-height: 2;
  text-align: center;
  font-size:large;
  font-size: 21px;
  margin-top: 70px;
}

.lead p a {
  font-style: italic;
  border-bottom: solid 1px #050505;
}

.remake-knife-image{
  margin-top: 20px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

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

.link-button {
  background-color: #d2ab3f;
  box-shadow: 0 5px 0 #876c24;
  display: inline-block;
  min-width: 260px;
  line-height: 48px;
  border-radius: 24px;
  font-family: 'Yuji Syuku', serif;
  font-size: 18px;
  font-weight: bold;
}

.link-button:hover{
  box-shadow: none;
  transform: translateY(5px);
  background-color: #c9a646;
}

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

.link-button-top {
  display: block;
  font-size: 18px;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 260px;
	margin: auto;
	padding:0.8rem 1rem;
	font-weight: bold;
	border: 2px solid #5f5f5f;
	background: #d9d9d9;
	color: #000000;
  
	border-radius: 5px;
	transition: 0.5s;
	animation: move_d 2s infinite;
	box-shadow: 0px 5px 0 rgb(57, 57, 56);
	position: relative;
}

@keyframes move_d {
  0% {box-shadow:0px 5px 0 rgb(57, 57, 56); top: 0px;}
  10% {box-shadow:0 0 0 rgb(57, 57, 56); top: 5px;}
  20% {box-shadow:0px 5px 0 rgb(57, 57, 56); top: 0px;}
  30% {box-shadow:0 0 0 rgb(57, 57, 56); top: 5px;}
  40% {box-shadow:0px 5px 0 rgb(57, 57, 56); top: 0px;}
}
.link-button-top:hover {
color: #303030;
background: #fff;
border: 2px solid #5f5f5f;
}


.recommended{
  background-color: #f8f8f8;
  padding-top: 45px;
  padding-bottom: 55px;
}

.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;
  overflow: scroll;
}

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

.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: calc(90vh - 60px);
    background-image: url(../images/index/bg-main-mobile.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    align-items: center;
  }

  .first-view-text{
    padding-top: 0px;
  }

  .first-view-text h1  {
    font-size: 26px;
  }

  .first-view-text p {
    font-size: 18px;
    line-height: 1;
  }

  .first-view-text p1 {
    font-size: 17px;
  }


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

  .lead p {
    text-align: left;
    font-size: 17px;
  }

  .lead p a {
    font-style: italic;
    border-bottom: solid 1px #050505;
  }

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

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