@charset "utf-8";

.title {
  height: 310px;
  background-image: url(../images/products/bg-main.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-shadow: 1px 1px 10px #4b2c14;
}

.title h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: bold;
}

.title p {
  font-size: 14px;
  margin-top: 15px;
}


.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;
}

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

.lead p {
  line-height: 2;
  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 {
  width: 90%;
  background-color: #f8f8f8;
  margin-left: 5%;
  padding-top: 45px;
  padding-bottom: 55px;
  align-content: center;
  justify-content: center;
}

.recommended h2 {
  font-size: 180%;
  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: grid;
  width: 100%;
  grid-template-columns: 32% 32% 32%;
  grid-template-rows: repeat(auto-fit, 1fr);
  gap: 10px 20px;
  margin-top: 30px;
  align-content: flex-start;
  justify-content: flex-start;
}


.item-list li {
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 30px;
}

.item-list li img{
  width: 460px;
  margin: 0 auto;
  filter: drop-shadow(5px 5px 5px #008080);
  overflow: hidden;
  cursor: pointer;
  transition-duration: 1s;
}

.item-list li img:hover{
  transform: scale(1.2) rotate(-3deg);
  transition-duration: 1s;
}

.item-list li .caption {
  font-family: 'YuGothic';
	font-size:		11.326pt;
	color:			#184B18;
	padding-top:		10px;
	text-align: 		center;
}

.item-list li .mask {
	width:			100%;
	height:			50px;
	position:		absolute;
	top:			-50px;	/* 枠の上に置いて表示しない */
	left:			0;
	background-color:	rgba(0,0,0,0.4);
	-webkit-transition:	all 0.4s ease;
	transition:		all 0.4s ease;
}

.item-list li:hover .mask {
	top:		0px;	/* 下に降りてくるように見せる */
}
 
.item-list li .ttl-en {
  font-family: 'Courier New', Courier, monospace;
  font-size: 21.034pt;
  font-weight: 800;
  color: #000080;
  margin-top: 10px;
}

.item-list li .ttl-ja {
  font-family: 'Hiragino Gothic Sans';
  font-size: 12.944pt;
  font-weight: 800;
  
}

.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;
}

.catalog {
  width: 60%;
  height: 3em;
  font-size: 14.562pt;
  margin-left:20%;
  margin-top: 20px;
  padding-top: 1em;
  padding-bottom: auto;
  background-color: #adff2f;
	box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5), 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
  text-align: center;
  align-content: center;
  cursor: pointer;
}




.feature {
  display: flex;
  width: 70%;
  margin-top: 30px;
  margin-left: 15%;
  margin-right: auto;
  margin-bottom: 30px;
  align-items: flex-start;
}

.feature-text {
  float: left;
  width: 60%;
  margin:auto 10px auto 10px;
  align-content: flex-start;
  justify-content: flex-start;
}

.feature img {
  float: left;
  width: 35%;
  margin:auto 10px auto 10px;
}

.feature-text h2 {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
}

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

.feature-text p {
  font-size: 15px;
  line-height: 28px;
  margin-top: 25px;
}

.reverse {
  flex-direction: row-reverse;
}

.reverse .feature-text {
  margin-left: 40px;
  margin-right: 0;
}


.method-list {
  display: grid;
  grid-template-columns: 32% 32% 32%;
  grid-template-rows: repeat(auto-fit, 1fr);
  gap: 10px 20px;

}

.method-list .box {
  display: block;
  width: 100%;
  
}

.method-list img {
  width: 460px;
}

.method-list .p {
  width: 140%;
  font-family: 'Hiragino Gothic sans';
  font-size: 90%;
  line-height: 1em;
  margin: 5px;
  padding: auto 20px auto 20px;
}


@media (max-width: 1280px) {
  .item-list {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    grid-template-rows: repeat(auto-fit, 1fr);
    gap: 10px 20px;
  }

  .item-list li img{
    width: 320px;
  }

  .method-list {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    grid-row: repeat(auto-fill, 1fr);
    gap: 10px 2%;
  
  }

  .method-list li img{
    width: 320px;
  }


}


@media (max-width: 992px) {
  .item-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(auto-fit, 1fr);
    gap: 10px 20px;

  }

  .item-list li img{
    width: 340px;
  }

  .method-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row: repeat(auto-fill, 1fr);
    gap: 5px 2%;
    
  }

  .method-list li img{
    width: 340px;
  }


}

@media (max-width: 768px) {
  .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;
  }


  .feature {
    display: block;
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
    margin-bottom: 10px;
  }

  .feature img {
    width: 100%;
    margin:auto 10px auto 10px;
  }
  
  .feature-text {
    width: 100%;
    margin:auto auto auto auto;
    padding: auto 10px auto 10px;
  }
 
  .item-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(auto-fit, 1fr);
    gap: 10px 20px;

  }

  .item-list li img{
    width: 320px;
  }

  .method-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-row: repeat(auto-fill, 1fr);
    gap: 5px 2%;
    
  }

  .method-list li img{
    width: 320px;
  }


}

