@import url("https://fonts.googleapis.com/css2?family=Satisfy&display=swap");
.idx_headline,
.idx_service-headline {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 55px;
  gap: 15px;
}
.idx_headline .en,
.idx_service-headline .en {
  position: relative;
  padding-inline: 16px;
  font-size: 72px;
  font-family: "Satisfy", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  color: #18b2de;
  background-image: url(../images/common/headline-underline-yellow.svg);
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.idx_headline .ja,
.idx_service-headline .ja {
  font-size: 16px;
  font-weight: bold;
  margin: 15px 0 0;
  letter-spacing: 0.25em;
}

.idx_service-headline .en {
  font-size: 64px;
  background: none;
}
@media screen and (max-width: 767px) {
  .idx_service-headline .en {
    font-size: 48px;
  }
}
.idx_service-headline .ja {
  color: #ffffff;
}

.story.story--light {
  color: inherit;
  background-color: #fff;
}
.story.story--light .story_post time {
  color: #888;
}

/*
  TOP story post: card improvements
---------------------*/

/* PC: ホバー効果 */
@media screen and (min-width: 768px) {
  .story_post a {
    display: block;
    transition: opacity 0.2s ease;
  }
  .story_post a:hover {
    opacity: 0.65;
  }
}

/* SP: 1列・横並びカードレイアウト（CSS Grid） */
@media screen and (max-width: 767px) {
  .story .flex_post {
    flex-direction: column;
  }
  .story .story_post {
    width: 100% !important;
    margin: 0 !important;
  }
  .story .story_post a {
    display: grid;
    grid-template-columns: 96px 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .story .story_post .c_ofi {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 96px;
    height: 72px;
    padding-top: 0 !important;
  }
  .story .story_post time {
    grid-column: 2;
    grid-row: 1;
    font-size: 11px;
    margin: 0 0 5px;
  }
  .story .story_post .story_txt {
    grid-column: 2;
    grid-row: 2;
    font-size: 1.35rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  /* コラムセクション（白背景）用の区切り線 */
  .story.story--light .story_post a {
    border-bottom-color: rgba(0, 0, 0, 0.1);
  }
  /* Moreボタン上の余白 */
  .story .c_btn {
    margin-top: 24px !important;
  }
}
/*# sourceMappingURL=new-front.css.map */