@charset "utf-8";

.title {
	height: 310px;
	background-image: url(../images/shop/gardening.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;
  color: #fff;
  font-weight: bold;
  background-color: rgb(97, 94, 94, 0.7);
}

.shop-contents {
  width: 1080px;
  max-width: 90%;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.shop-item {
  flex-grow: 1;
  max-width: 765px;
}

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

.shop-item h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000;
  margin-top: 20px;
}

.item-list {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit,220px);
  column-gap: 20px;
  row-gap: 40px;
}

.item-list a {
  display: block;
  transition-duration: 0.2s;
}

.item-list a:hover {
  transform: scale(1.05);
}

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

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

.item-list dd {
	font-size: 13px;
	line-height: 20px;
	margin-top: 10px;
	margin-left: 0px; /* ddの左マージンを無くす*/
}

.shop-menu {
  flex-shrink: 0;
  margin-right: 60Px;
  position: relative;
  /*
  background-color: rgb(222, 245, 198, 0.8);
  */
  background-color: #f5f5f5;
  padding: 20px 50px 100px 20px;
  border-radius: 10px;
}

.shop-menu-inner {
  position: sticky;
  width: 100%;
  top: 30px;
  left: 0;
}

.shop-menu-inner h2 {
  font-size: 18px;
  font-weight: bold;
}

.shop-menu-inner ul {
  list-style: disc;
  margin-top: 20px;
  margin-left: 20px;
}

.shop-menu-inner li {
  font-size: 14px;
  margin-top: 15px;
}

.item-area {
  margin-top: 20px;
  display: flex;
}

.item-area img {
  width: 50%;
  max-width: 380Px;
}

.about-item {
  margin-left: 30px;
}

.about-item .item-text {
  font-size: 14px;
  line-height: 1.75;
}

.about-item .item-price {
  font-weight: bold;
  margin-top: 20px;
}

.about-item a {
	background-color: #f4dd64;
	display: inline-block;
	min-width: 180px;
	line-height: 48px;
	border-radius: 24px;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
  text-align: center;
  margin-top: 30px;
}

.about-item a:hover {
	background-color: #d8b500;
}

.recommended {
  margin-top: 60px;
}

.footer {
  margin-top: 100px;
}

@media (max-width:800px) {

  .shop-contents {
    display: block;
    max-width: 100%;
    margin-top: 60px;
  }

  .shop-item {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .item-list {
    grid-template-columns: repeat(2,1fr);
    column-gap: 35pX;

  }

 .shop-menu {
    background-color: #f5f5f5;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 60px;
    margin-right: 0;
 }

 .shop-menu-inner {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
 }

 .item-area {
    display: block;
 }

 .item-area img {
    width: 100%;
    max-width: 100%;
 }

 .about-item {
    margin-top: 20px;
    margin-left: 0;
 }

 .about-item a {
  width: 100%;
 }

 .footer {
    margin-top: 0;
 }

}


