/* stylelint-disable */
/* stylelint-enable */
.diary-container {
  position: relative;
  z-index: 0;
  padding: 85px 0 60px;
  font-family: "Zen Old Mincho", serif;
  background: #fcf1f1;
}
.diary-container::before, .diary-container::after {
  position: absolute;
  z-index: -1;
  content: "";
}
.diary-container::before {
  top: -50px;
  right: -55px;
  width: 136px;
  height: 175px;
  background: url("/assets/images/pages/learning_step/common/mv_deco1.svg") no-repeat center/cover;
}
.diary-container .diary-head {
  position: relative;
  margin-bottom: 26px;
}
.diary-container .typography {
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.diary-container .hdg {
  margin-bottom: 35px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: var(--heavyColor);
  letter-spacing: -0.02em;
}
.diary-container .lead-text {
  font-size: 14px;
  line-height: 1.92;
}
.diary-container .instagram {
  display: flex;
  align-items: center;
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
}
.diary-container .instagram a {
  text-decoration: underline;
}
.diary-container .instagram::before {
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  content: "";
  background: url("/assets/images/pages/b-diary/instagram.png") no-repeat center/contain;
}
.diary-container .diaryList {
  position: relative;
  margin-bottom: 30px;
}
.diary-container .diaryList:where(:not(.is-full-loaded))::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  height: 90px;
  pointer-events: none;
  content: "";
  background: linear-gradient(to top, #fcf1f1, transparent);
}
.diary-container .diaryList:empty::before {
  content: none;
}
.diary-container .more {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 64px;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
  background: #fff;
  border-radius: 64px;
}
.diary-container .more::before, .diary-container .more::after {
  position: absolute;
  top: 0;
  right: 29px;
  bottom: 0;
  display: block;
  width: 12px;
  height: 2px;
  margin: auto;
  content: "";
  background: #e52d8a;
  border-radius: 2px;
  transition: background-color 0.4s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.diary-container .more::after {
  transform: rotate(90deg);
}
.diary-container .archive-button {
  margin-top: 20px;
}
.diary-container .archive-button a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 64px;
  font-size: 16px;
  font-weight: 500;
  background: #fff;
  border-radius: 64px;
}
.diary-container .archive-button a::after {
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  display: block;
  width: 7px;
  height: 11px;
  margin: auto;
  content: "";
  background: url("/assets/images/pages/common/icon_arw.svg") no-repeat center/contain;
  transition: filter 0.4s cubic-bezier(0.47, 0, 0.745, 0.715);
}
@media (min-width: 768px) {
  .diary-container {
    padding: 120px 0 60px;
  }
  .diary-container::before {
    top: -28px;
    right: 20px;
    width: 215px;
    height: 276px;
  }
  .diary-container::after {
    top: 110px;
    left: -58px;
    width: 314px;
    height: 284px;
    background: url("/assets/images/pages/learning_step/common/mv_deco2.svg") no-repeat center/cover;
  }
  .diary-container .diary-head {
    margin-bottom: 53px;
  }
  .diary-container .typography {
    margin-bottom: 5px;
  }
  .diary-container .typography img {
    width: 344px;
    height: auto;
  }
  .diary-container .hdg {
    margin-bottom: 30px;
    font-size: 20px;
  }
  .diary-container .instagram {
    position: absolute;
    right: 0;
    bottom: 3px;
    margin-top: 31px;
    font-size: 14px;
  }
  .diary-container .instagram a:hover {
    text-decoration: none;
  }
  .diary-container .instagram::before {
    width: 21px;
    height: 21px;
  }
  .diary-container .diaryList {
    margin-bottom: 55px;
  }
  .diary-container .diaryList:where(:not(.is-full-loaded))::before {
    height: 230px;
  }
  .diary-container .more {
    width: 400px;
    margin: 55px auto 0;
    transition: 0.4s cubic-bezier(0.47, 0, 0.745, 0.715);
    transition-property: color, background-color;
  }
  .diary-container .more:hover {
    color: #fff;
    background-color: #e52d8a;
  }
  .diary-container .more:hover::before, .diary-container .more:hover::after {
    background-color: #fff;
  }
  .diary-container .archive-button {
    margin-top: 30px;
  }
  .diary-container .archive-button a {
    width: 400px;
    margin: 0 auto;
    transition: 0.4s cubic-bezier(0.47, 0, 0.745, 0.715);
    transition-property: color, background-color;
  }
  .diary-container .archive-button a:hover {
    color: #fff;
    background-color: #e52d8a;
  }
  .diary-container .archive-button a:hover::after {
    filter: brightness(0) invert(1);
  }
}