.zoomImg {
  overflow: hidden;
}

.zoomImg__img {
  transition-duration: 0.3s;
}

.zoomImg:hover .zoomImg__img {
  transform: scale(1.1);
  transition-duration: 0.3s;
}

.relatedContent {
  padding: 60px 0;
}

@media screen and (max-width: 768px) {
  .relatedContent {
    padding: 20px 0 15px;
  }
}

.related {
  max-width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .related {
    margin: 0 20px;
  }
}

.related--small {
  display: flex;
  flex-direction: column-reverse;
}

@media screen and (max-width: 768px) {
  .related--small {
    display: block;
  }
}

.related__snsList {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .related__snsList {
    display: block;
    margin-bottom: 22px;
    padding: 0;
  }
}

.related__snsList--small {
  justify-content: center;
  margin-bottom: 0;
}

.related__snsList--small .related__item {
  flex-grow: 0;
}

.related__item {
  display: flex;
  margin-right: 28px;
  flex-grow: 1;
}

@media screen and (max-width: 768px) {
  .related__item {
    border-bottom: 1px solid #231815;
    margin: 0;
  }
}

.related__item:last-of-type {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .related__item:last-of-type {
    border-bottom: none;
  }
}

.related__item--line::after {
  content: '';
  display: inline-block;
  margin-left: 36px;
  width: 1px;
  height: 67px;
  background-color: #008d54;
}

@media screen and (max-width: 768px) {
  .related__item--line::after {
    display: none;
  }
}

.related__item--line:last-of-type::after {
  content: none;
}

@media screen and (max-width: 768px) {
  .related__item--small {
    display: none;
  }
}

.related__link {
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.8;
  color: #000;
}

@media screen and (max-width: 768px) {
  .related__link {
    width: 100%;
    padding: 15px 2.143em;
    font-size: 1.4rem;
  }
}

.related__link:hover::before {
  opacity: 0.6;
}

.related__link::before {
  content: '';
  display: inline-block;
  width: 42px;
  height: 40px;
  margin-right: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.3s;
}

.related__link--line::before {
  background-image: url(/img/line_icon.png);
}

.related__link--youtube::before {
  background-image: url(/img/youtube_icon.png);
}

@media screen and (max-width: 768px) {
  .related__link--youtube::before {
    margin-right: 6.5%;
  }
}

.related__link--instagram::before {
  background-image: url(/img/instagram_icon.png);
}

.relatedBanner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .relatedBanner {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}

.relatedBanner__item {
  display: block;
  overflow: hidden;
  width: 22.77778%;
}

@media screen and (max-width: 768px) {
  .relatedBanner__item {
    width: 48%;
    margin-bottom: 15px;
  }
}

.relatedBanner__img {
  display: block;
  width: 100%;
}

.relatedBanner__item:hover .relatedBanner__img {
  transform: scale(1.1);
  transition-duration: 0.3s;
}
