@charset "UTF-8";

/* グッズ画像ギャラリー */
.img-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.img-gallery-item {
    width: 48%;
}

.img-gallery-item img {
    width: 100%;
	 display: block;
    height: auto;
    border-radius: 5px;
}
.item_image.img-box {
	width: 80%;
	margin: 0 auto;
}

.goods-item {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.h3-region {
  margin: 0 0 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
  background-color: #67a1c9;
  padding: 10px 7px;
  border-radius: 5px;

}
.h3-goods {
  line-height: 1.5em;
  font-size: 1.1em;
}


/* --------------------------------------
   　PC style
-------------------------------------- */
@media screen and (min-width: 1028px) {
	.img-gallery {
		gap: 5px;
  }
  .item_image.img-box {
	width: 100%;
  }
  .item_image.item_image_pamphlet {
    width: 50%;
  }

  .goods-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
  }

  .goods-item {
    width: 47%;
  }
  .goods-item p {
    font-size: 0.9em;
    line-height: 1.5em;
  }

}
