@charset "UTF-8";
/* CSS Document */
.main {
  background-color: #F6F7F9;
  overflow: hidden;
}
.section-image{
  margin: 100px 0 40px;
}
.section-image__image {
  max-width: 1040px;
  position: relative;
  margin: 0 auto;
}
.section-image img {
  width: 100vw;
  height: 450px;
  object-fit: cover;
  padding-left: 100px;
}
.section-image h2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Lato', sans-serif;
  font-family: 'Noto Serif JP', serif;
  font-size: 40px;
  line-height: 50px;
  color: #493314;
  background-color: #FFF;
  padding: 0 10px;
  margin: 0 24px;
}
@media (min-width:960px) {
  .section-image {
    margin: 130px 0 100px;
  }
  .section-image img {
    height: 500px;
  }
  .section-image h2 {
    font-size: 5.0rem;
    line-height: 60px;
   }
}
.section-product {
  padding: 0 24px 40px;
}
.section-product h2 {
  margin: 0 0 40px;
  position: relative;
  line-height: 3.6rem;
  font-family: 'Lato', sans-serif;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.1em;
}
.section-product h2::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #856519;
  display: block;
  position: absolute;
  left: 0;
  bottom: -17px;
}
.section-product ul {
  list-style: none;
}
.section-product ul li:hover {
  opacity: 0.6;
}
.section-product ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  max-width: 330px;
  height: 400px;
  margin: 0 auto 25px;
}
.section-product ul li img {
  width: 85%;
}
.section-product__modal{
  display: none;
  position: relative;
}
.section-product__modal img {
  width: 100%;
  height: auto;
}
.section-product__modal p {
  position: absolute;
  top: 50%;
  left: 50%;
}
.modaal-fullscreen .modaal-content-container{/*full画面の色設定*/
	background: #333;
	color: #fff;
	text-align: center;
}
.modaal-fullscreen .modaal-close{/*ボタンの色、位置*/
	background:none;
	right:20px;
}

/*クローズボタンの×の色変更*/
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}
.section-product__modal-close{
  background: rgba(100, 100, 100, 0.9);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.section-product__modal-content{
  left: 50%;
  padding: 40px;
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 70%;
}
@media (min-width:960px) {
  .section-product {
    max-width: 1040px;
    padding-bottom: 90px;
    margin: 0 auto;
  }
  .section-product h2 {
    margin: 0 0 50px;
    font-size: 3.0rem;
  }
  .section-product h2::before {
    content: "";
    width: 50px;
    height: 2px;
    background-color: #856519;
    display: block;
    position: absolute;
    left: 0;
    bottom: -22px;
  }
  .section-product ul {
    display: flex;
  }
  .section-product ul li a {
    margin: 0 25px 30px 0;
  }
}





