@charset "utf-8";
.page_title {
  &::before {
    background: url(../img/page_title.png) no-repeat left bottom;
    background-size: cover;
  }
  @media screen and (max-width: 767px) {
    &::before {
      background: url(../img/page_title_sp.png) no-repeat left bottom;
      background-size: cover;
    }
    p {
      font-size: min(9rem, 15vw);
    }
  }
}

.info_outer {
  padding-bottom: 88px;
  @media screen and (max-width: 767px) {
    padding-bottom: 64px;
  }
}
.info_outer--list {
  width: 90%;
  max-width: 1024px;
  margin: 0 auto;
  border-top: 1px solid #68B3FF;
  article {
    width: 100%;
    border-bottom: 1px solid #68B3FF;
  }
  a, div {
    position: relative;
    width: 100%;
    padding: 24px;
    padding-left: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 4px 32px;
    color: #000;
  }
  a:hover {
    opacity: 0.6;
  }
  h2 {
    font-size: 1.6rem;
    letter-spacing: 0.8px;
    font-weight: 500;
  }
  @media screen and (max-width: 767px) {
    a, div {
      padding: 16px;
    }
  }
}

/* 詳細ページ */
.info_ttl {
  color: var(--dark-blue);
  font-size: 3.2rem;
  letter-spacing: 3.2px;
  border-bottom: 3px solid var(--dark-blue);
  padding-bottom: 24px;
  margin-bottom: 16px;
  & + time {
    display: block;
    margin-bottom: 32px;
  }
  @media screen and (max-width: 767px) {
    font-size: 2.4rem;
    letter-spacing: 2.4px;
  }
}
.info_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px 64px;
  figure {
    width: 100%;
    max-width: 330px;
  }
  @media screen and (max-width: 767px) {
    flex-direction: column;
    align-items: center;
  }
}
.cmn_link.cmn_link--info {
  margin-top: 72px;
  @media screen and (max-width: 767px) {
    margin-top: 56px;
  }
}