@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;700;800&display=swap";
:root {
  --clr-primary: #ff64d2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  background-color: #f5e6ee;
}
body::before {
  display: block;
  width: 100%;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, #71badd 40%, #a69fc1 55%, #e18bad 70%);
}

.container {
  margin: auto;
  background-color: #fff;
}
@media (width > 783px) {
  .container {
    width: min(100%, 750px);
  }
}

/* HandsUpのデフォルトcssを上書き */
.handsup-cms-scope .module-stream-room-display {
  padding: 0 !important;
}

.handsup-cms-scope .desktop .module-stream-room-display,
.handsup-cms-scope .desktop .module-product-list-display {
  width: 100% !important;
}

/* ヘッダー */
.handsup-cms-scope .stream-pip--sub-stream {
  display: none;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 55px;
  padding-right: 15px;
  padding-left: 15px;
}

.header_title {
  font-weight: 800;
}
.header_title_sub {
  font-size: 14px;
}

/* スペシャル告知エリア */
.topics {
  position: relative;
  padding: 35px 15px 86px;
  background: url(../img/bg_topics.jpg) no-repeat center/cover;
}
.topics::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 107px;
  height: 130px;
  content: "";
  background: url(../img/lady.png) no-repeat center/contain;
}

.topics_title {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-primary);
  text-align: center;
}

.topics_start {
  position: relative;
  margin-bottom: 15px;
}
.topics_start::before {
  position: absolute;
  bottom: -15px;
  left: calc(50% - 126px);
  width: 252px;
  height: 79px;
  content: "";
  background: url(../img/fukidashi_shadow.png) no-repeat center/contain;
}

.topics_start_fukidashi {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 250px;
  height: 77px;
  padding-right: 40px;
  padding-left: 40px;
  margin: auto;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  background-color: var(--clr-primary);
  border-radius: 40px;
}
.topics_start_fukidashi::after {
  position: absolute;
  top: 100%;
  left: calc(50% - 9px);
  content: "";
  border-color: var(--clr-primary) transparent transparent;
  border-style: solid;
  border-width: 9px 9px 0;
}
.topics_start_fukidashi .datetime {
  display: block;
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #fff;
}

.topics_content {
  padding: 20px;
  background-color: #fff;
  border-radius: 19px;
}
.topics_content .title {
  padding-bottom: 10px;
  margin-bottom: 13px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--clr-primary);
}
.topics_content .sentence {
  line-height: 1.5;
}
.topics_content .image_block_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 18px;
}
.topics_content .image_block img {
  display: block;
  width: 100%;
  height: auto;
}

/* フッター */
.footer {
  padding-right: 35px;
  padding-left: 35px;
  margin-top: 24px;
  text-align: center;
}

.footer_banner {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 15px;
}
.footer_banner a,
.footer_banner img {
  display: block;
}
.footer_banner img {
  height: auto;
}

.footer_enquete .catch,
.footer_enquete .link_btn {
  font-size: 14px;
  color: #b96931;
}
.footer_enquete .catch {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10px;
  font-weight: 600;
  line-height: 1.2857142857;
  letter-spacing: 0.02em;
}
.footer_enquete .catch::before, .footer_enquete .catch::after {
  position: absolute;
  bottom: -4px;
  display: block;
  width: 28.5px;
  height: 25.5px;
  content: "";
  background: url(../img/deco_enquete.png) no-repeat center/contain;
}
.footer_enquete .catch::before {
  right: calc(100% + 2px);
}
.footer_enquete .catch::after {
  left: calc(100% + 2px);
  transform: scaleX(-1);
}
.footer_enquete .link_btn {
  display: grid;
  place-items: center;
  width: 197.5px;
  height: 58.5px;
  margin: auto;
  font-weight: 700;
  background-color: #faebaa;
  border: 1px solid #c7753b;
  border-radius: 30px;
}
.footer_enquete .link_btn:hover {
  text-decoration: none;
}

.footer_copyright {
  padding-top: 15px;
  padding-bottom: 18px;
}
.footer_copyright small {
  font-size: 10px;
  color: #9d9d9d;
}