.thismonth-title {
  margin-bottom: 2.5rem;
  text-align: center;
}
.thismonth-title img {
  height: auto;
  width: calc(100% - 1.25rem);
}

.thismonth-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 2.5rem;
  margin-bottom: 4.5rem;
}
.thismonth-select > .title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}
.thismonth-select > .archive {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
.thismonth-select > .archive > .title {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}
.thismonth-select > .archive > .list {
  width: 100%;
}

.thismonth-list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.thismonth-list > .content {
  background-color: var(--color-white);
  border-radius: 70px 0 70px 0;
  border: 1px solid var(--color-black);
  display: grid;
  align-items: center;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  filter: drop-shadow(0px 4px 0px var(--color-black));
  padding: 4rem var(--margin-side-small) 3rem;
  position: relative;
}
.thismonth-list > .content > .text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.thismonth-list > .content > .text > .month {
  height: 5.813rem;
  margin: auto;
  position: absolute;
  top: -2.875rem;
  right: 0;
  left: 0;
  width: 5.813rem;
}
.thismonth-list > .content > .text > .month img {
  height: 5.813rem;
  width: 5.813rem;
}
.thismonth-list > .content > .text > .heading {
  font-size: 1.313rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 1.5rem 0;
  position: relative;
}
.thismonth-list > .content > .text > .heading::before, .thismonth-list > .content > .text > .heading::after {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 0.938rem;
  position: absolute;
  width: 1.125rem;
}
.thismonth-list > .content > .text > .heading::before {
  background-image: url(../../images/common/ornament_thismonth01.svg);
  top: 0;
  left: 0;
}
.thismonth-list > .content > .text > .heading::after {
  background-image: url(../../images/common/ornament_thismonth02.svg);
  right: 0;
  bottom: 0;
}
.thismonth-list > .content > .text > .description {
  font-size: 0.875rem;
  line-height: 1.9;
}
.thismonth-list > .content > .image {
  border-radius: 20px;
  line-height: 0;
  order: -1;
  overflow: hidden;
}