/* ==========================================
   Prose
========================================== */

.c-prose {
    color: var(--color-text-body);
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 32px;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .c-prose {
        padding-inline: 15px;
    }
}

/* ------------------------------------------
   Heading
------------------------------------------ */

.c-prose h2 {
    font-size: 2em;  /* 32px */
    line-height: 1.4;
    margin: 64px 0 24px;
    margin-bottom: 1em;
}

.c-prose h3 {
    font-size: 1.5em;  /* 24px */
    line-height: 1.5;
    margin: 48px 0 16px;
}

.c-prose h4 {
    font-size: 1.25em;  /* 20px */
    line-height: 1.5;
    margin: 32px 0 12px;
}

.c-prose h5,
.c-prose h6 {
    font-size: 1.125em;  /* 18px */
    line-height: 1.5;
    margin: 24px 0 12px;
}

@media (max-width: 1023px) {

    .c-prose h2 {
        font-size: 1.75;  /* 26.25px */
        margin: 48px 0 20px;
    }

    .c-prose h3 {
        font-size: 1.4em;  /* 21px */
        margin: 40px 0 16px;
    }

    .c-prose h4 {
        font-size: 1.2em;  /* 18px */
    }
    .c-prose h5,
    .c-prose h6 {
        font-size: 1.1em;  /* 16.5px */
    }
}

/* ------------------------------------------
   Text
------------------------------------------ */

.c-prose p {
    font-size: 1em;
    line-height: 1.75;
    margin-bottom: 1.5em;
}

.c-prose strong {
    font-weight: 700;
}

/* ------------------------------------------
   List
------------------------------------------ */

.c-prose ul,
.c-prose ol {
  margin: 1rem 0;
}

.c-prose li {
  font-size: 1em;
  line-height: 2;
}

.c-prose li:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .c-prose li {
    font-size: 1em;
    line-height: 1.8;
  }
}

/* ------------------------------------------
   Link
------------------------------------------ */

.c-prose a {
    color: var(--color-key);
    text-decoration: underline;
}

.c-prose a:hover {
    opacity: .8;
}

/* ------------------------------------------
   Image
------------------------------------------ */

.c-prose img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 32px auto;
}

/* ------------------------------------------
   Table
------------------------------------------ */

.c-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    margin: 2em 0;
}

.c-prose th,
.c-prose td {
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 1em;
}

.c-prose th {
    font-weight: 700;
}

/* ------------------------------------------
   Blockquote
------------------------------------------ */

.c-prose blockquote {
    padding: 24px;
    margin: 32px 0;
    border-left: 4px solid var(--color-secondary);
    background: #f8f8f8;
}

/* ------------------------------------------
   Divider
------------------------------------------ */

.c-prose hr {
    margin: 48px 0;
    border: 0;
    border-top: 1px solid #ddd;
}

/* ------------------------------------------
   Hero
------------------------------------------ */

/* タイトル左寄せ */
.renewal-subpage-hero .c-page-title {
    text-align: left;
}

/* パンくずリスト左寄せ */
.renewal-subpage-breadcrumb .c-breadcrumb {
    justify-content: flex-start;
}

.renewal-subpage-breadcrumb .c-breadcrumb__list {
    justify-content: flex-start;
}