@charset "utf-8";

.title {
  height: 310px;
  background-image: url(../images/common/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: 4px 5px 15px #2e1607;
}

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

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

.item-list-2 {
  width: 930px;
  max-width: 90%;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, 240px);
  column-gap: 95px;
  row-gap: 70px;
  justify-content: center;
}

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

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

.item-list-2 dd {
  font-size: 13px;
  line-height: 20px;
  margin-top: 10px;
}

.item-list-2 .price {
  font-weight: bold;
  margin-top: 15px;
}

.item-list-2 li {
  position: relative;
}

.item-list-2 .item-label {
  position: absolute;
  top: 0;
  left: calc(100% + 18px);
  font-size: 12px;
  font-weight: lighter;
  white-space: nowrap;
  transform-origin: top left;
  transform: rotate(90deg);
}

.sns-contents {
  width: 1080px;
  max-width: 90%;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.sns-item {
  flex-grow: 1;
  max-width: 765px;
  margin-left: auto;
  margin-right: auto;
}

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

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


.item-list a {
  display: block;
  transition-duration: 0.2s;
  padding-left: 25%;
  padding-right: 25%;
}

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

.item-list dl {
  margin-top: 20px;
  text-align: center;
  padding-bottom: 20px;
}

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

.item-list dd {
  font-size: 13px;
  line-height: 20px;
  margin-top: 10px;
}

.footer {
  margin-top: 100px;
}


@media (max-width: 800px) {
  .item-list {
    margin-top: 45px;
    row-gap: 40px;
  }
}