:root {
    --color-primary: #0080B1;
    --color-secondary: #1c1c1e;
    --color-tertiary: #c5c5c5;
    --color-quaternary: #f2f2f7;
    --color-quinary: #e5e5ea;
    --color-senary: #ffffff;
    --color-septenary: #000000;
    --color-octonary: hsl(62, 100%, 72%);
    --color-nonary: #ffcc00;
    --color-decimal: #34c759;
    --color-cta-button: #555;
    --color-h2: #333;
    --color-h3: #333;
    --color-p: #333;
  
    --font-size-h2: 36px;
    --font-weight-h2: 700;
    --line-height-h2: 42px;
  
    --font-size-h3: 24px;
    --font-weight-h3: 700;
    --line-height-h3: 30px;
  
    --font-size-p: 18px;
    --font-weight-p: 400;
    --line-height-p: 24px;
  
    --font-size-intro: 18px;
    --font-weight-intro: 400;
    --line-height-intro: 24px;
  
    --font-size-subtext: 18px;
    --font-weight-subtext: 400;
    --line-height-subtext: 24px;
  
    --font-size-summary: 24px;
    --font-weight-summary: 400;
    --line-height-summary: 30px;
  
    --sp-font-size-h2: 1.8rem;
    --sp-font-weight-h2: 700;
    --sp-line-height-h2: 1.3;
  
    --sp-font-size-h3: 1.2rem;
    --sp-font-weight-h3: 700;
    --sp-line-height-h3: 1.5;
  
    --sp-font-size-p: 1rem;
    --sp-font-weight-p: 400;
    --sp-line-height-p: 1.6;
  
    --sp-font-size-intro: 1rem;
    --sp-font-weight-intro: 400;
    --sp-line-height-intro: 1.6;
  
    --sp-font-size-subtext: 1rem;
    --sp-font-weight-subtext: 400;
    --sp-line-height-subtext: 1.6;
  
    --sp-font-size-summary: 1rem;
    --sp-font-weight-summary: 400;
    --sp-line-height-summary: 1.6;
  
    --section-padding-top: 80px;
    --section-padding-bottom: 80px;
    --site-width: 1275px;
    --hedding-block-margin-bottom: 60px;
    --intro-margin-bottom: 30px;
    --subtext-margin-top: 30px;
    --content-bolock-margin-bottom: 0;
    --summary-block-margin-bottom: 0;
}
  
body {
    font-family: 'Noto Sans JP', 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}
  
section {
    padding-top: var(--section-padding-top);
    padding-bottom: var(--section-padding-bottom);
}
h2 {
    margin: 0;
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-h2);
    line-height: var(--line-height-h2);
    color: var(--color-h2)
}
h2 span {
    background: none;
    display: unset;
    font-weight: unset;
    padding: unset;
}
h3 {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-h3);
    line-height: var(--line-height-h3);
    color: var(--color-h3)
}
p {
    margin: 0;
    font-size: var(--font-size-p);
    font-weight: var(--font-weight-p);
    line-height: var(--line-height-p);
    color: var(--color-p)
}
table th {
    border: none;
    text-align: center;
}
table td {
    border: none;
  
}
a {
    text-decoration: unset;
}
a:hover, a:hover * {
    text-decoration: unset;
}
  
a:active, a:active * {
    text-decoration: unset;
}
@media screen and (max-width: 994px) {
    .JS #Contents {
      padding: 0;
    }
}
.wrapper {
    max-width: var(--site-width);
    margin: 0 auto;
}
.hedding-block {
    margin-bottom: var(--hedding-block-margin-bottom);
}
.hedding-block h2,
.hedding-block .intro,
.hedding-block .subtext {
    text-align: center;
}
.hedding-block h2.underline::after {
    content: "";
    display: block;
    width: 102px;
    height: 6px;
    background: #2F7C31;
    border-radius: 3px;
    margin: 30px auto 0;
}
.hedding-block h2.line-left {
    text-align: left;
}
.hedding-block h2.line-left::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.5em;
    background-color: var(--color-tertiary);
    margin-right: 12px;
    vertical-align: middle;
}
.hedding-block .intro {
    margin-bottom: var(--intro-margin-bottom);
    font-size: var(--font-size-intro);
    font-weight: var(--font-weight-intro);
    line-height: var(--line-height-intro);
}
.hedding-block .subtext {
    margin-top: var(--subtext-margin-top);
    font-size: var(--font-size-subtext);
    font-weight: var(--font-weight-subtext);
    line-height: var(--line-height-subtext);
}
.content-block {
    margin-bottom: var(--content-bolock-margin-bottom);
}
.summary-block {
    text-align: center;
    margin-bottom: var(--summary-block-margin-bottom);
}
.summary {
    font-size: var(--font-size-summary);
    font-weight: var(--font-weight-summary);
    line-height: var(--line-height-summary);
    color: var(--color-summary);
}
.sp-only {
    display: none;
}
@media screen and (max-width: 767px) {
    h2 {
        font-size: var(--sp-font-size-h2);
        font-weight: var(--sp-font-weight-h2);
        line-height: var(--sp-line-height-h2);
    }
    h3 {
        font-size: var(--sp-font-size-h3);
        font-weight: var(--sp-font-weight-h3);
        line-height: var(--sp-line-height-h3);
    }
    p {
        font-size: var(--sp-font-size-p);
        font-weight: var(--sp-font-weight-p);
        line-height: var(--sp-line-height-p);
    }
    .wrapper {
        padding: 0 20px;
        overflow: hidden;
    }
    .hedding-block .intro {
        font-size: var(--sp-font-size-intro);
        font-weight: var(--sp-font-weight-intro);
        line-height: var(--sp-line-height-intro);
    }
    .hedding-block .subtext {
        font-size: var(--sp-font-size-subtext);
        font-weight: var(--sp-font-weight-subtext);
        line-height: var(--sp-line-height-subtext);
    }
    .summary {
        font-size: var(--sp-font-size-summary);
        font-weight: var(--sp-font-weight-summary);
        line-height: var(--sp-line-height-summary);
    }
    .pc-only {
        display: none;
    }
    .sp-only {
        display: block;
    }
}



/* ボタン */
a.button-white,
a.button-red {
    width: 306px;
    padding: 19px 32px 21px 20px;
    display: inline-block;
    box-sizing: border-box;
    position: relative;

    border-radius: 200px;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; 

    transition: all 0.3s ease;
}
a.button-white {
    color: #C02;
    border: 2px solid #C02;
    background: #FFF;
}
a.button-red {
    color: #fff;
    border: 2px solid #C02;
    background: #C02;
}
a.button-white::after,
a.button-red::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 22px;
    translate: 0 -50%;
    width: 9px;
    height: 9px;
    transform: rotate(225deg);
    transition: all 0.3s ease;
}
a.button-white::after {
    border-bottom: 2px solid #C02;
    border-left: 2px solid #C02;
}
a.button-red::after {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
}
a.button-white:hover {
    color: #fff;
    border: 2px solid #C02;
    background: #C02;
}
a.button-white:hover::after {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
}
a.button-red:hover {
    color: #C02;
    border: 2px solid #C02;
    background: #FFF;
}
a.button-red:hover::after {
    border-bottom: 2px solid #C02;
    border-left: 2px solid #C02;
}

/* 追従フッター */
.sticky-footer {
    background-color: rgba(95, 95, 95, 0.9);
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
    display: none;
    box-sizing: border-box;
}
.sticky-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}
.sticky-footer ul li a.button-white,
.sticky-footer ul li a.button-red {
    padding: 9px 19px;
}
@media screen and (max-width: 767px) {
    .sticky-footer {
        padding: 10px;
    }
    .sticky-footer ul {
        gap: 10px;
    }
    .sticky-footer ul li a.button-white,
    .sticky-footer ul li a.button-red {
        padding: 9px 0;
        width: 160px;
        font-size: 1rem;
    }
    .sticky-footer ul li a.button-white::after,
    .sticky-footer ul li a.button-red::after {
        right: 14px;
        width: 8px;
        height: 8px;
    }
}