@charset "utf-8";

/* -----------------------------------------------------------------
.sec_cont
----------------------------------------------------------------- */
.sec_cont {
  position: relative;
  z-index: 1;
}
.sec_cont .sec_ttl {
  margin-top: var(--margin_size_S);
}
.sec_cont .box_entry_body {
  margin-top: var(--margin_size_S);
}
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 500px) {
}


/* -----------------------------------------------------------------
.use_component 追加スタイル
----------------------------------------------------------------- */
.use_component img {
  border-radius: var(--round_size_50);
}
.use_component img.not_round{
  border-radius: 0;
}


/* ***************************************************************** */
/*.つなぐストーリー */
/* ----------------------------------------------------------------- */
.page_stories_post .g_main {
  overflow: unset;
}
/* -----------------------------------------------------------------
.つなぐストーリー
----------------------------------------------------------------- */
.page_stories_post .sec_cont_hd {
  
}
.page_stories_post .sec_cont_hd .sec_ttl_sub {
  display: flex;
  gap:1rem;
  align-items: center;
  font-weight: 900;
}
.page_stories_post .sec_cont_hd .sec_ttl_sub .ttl {
  
}
.page_stories_post .sec_cont_hd .sec_ttl_sub .num {
  font-size: 1.5rem;
}
.page_stories_post .sec_cont_hd .img_wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin-top: var(--margin_size_XS);
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--round_size_50);
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.page_stories_post .sec_cont_hd .img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page_stories_post .sec_cont_body {
  display: flex;
  gap:4vw;
  align-items: flex-start
}
.page_stories_post .sec_cont_label {
  margin-top: var(--margin_size_S);
  padding: 2.8rem 2.3rem;
  border-radius: var(--round_size_50);
  background: #fff;
}
.page_stories_post .sec_cont_label dt {
  font-weight: bold;
  font-size: .85rem;
  color: #666;
}

.page_stories_post .sec_cont_label dd {
  word-break: break-word;
  font-weight: 700;
}

@media screen and (min-width: 500px) and (max-width: 1100px) {
  .page_stories_post .sec_cont_body {
    flex-direction: column;
    gap:0;
  }
  .page_stories_post .sec_cont_label {
    padding:  3vw 2.8rem;
  }
  .page_stories_post .sec_cont_label dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .page_stories_post .sec_cont_label dt {
    width: 5rem;
  }
  .page_stories_post .sec_cont_label dd {
    width: calc(50% - 5rem);
    padding-right: 1rem;
  }
}
@media screen and (max-width: 499px) {
  .page_stories_post .sec_cont_body {
    flex-direction: column;
  }
  .page_stories_post .sec_cont_label {
    width: 100%;
    padding: 8vw;
  }
  .page_stories_post .sec_cont_label dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
  }
  .page_stories_post .sec_cont_label dt {
    grid-column: 1;
  }
  .page_stories_post .sec_cont_label dd {
    grid-column: 2;
  }
}

@media screen and (min-width: 1101px) {
  .page_stories_post .sec_cont_label {
    position: sticky;
    top: 2rem;
    align-self: flex-start;
    width: 32%;
    min-width: 300px;
    max-width: 420px;
  }
  .page_stories_post .sec_cont_label dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
  }
  .page_stories_post .sec_cont_label dt {
    grid-column: 1;
  }
  .page_stories_post .sec_cont_label dd {
    grid-column: 2;
  }
  .page_stories_post .sec_cont_body .box_entry_body {
    width: calc(100% - 28% - 5vw);
  }
}


