@charset "UTF-8";
.mainContent {
    color: #222222;
    background-color: #FFFFFF;
    line-height: 1;
    font-size: 16px;
    font-family: 'Roboto', 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
}

.allArea {
    position: relative;
}

.headArea {
    background-color: #EDF2F7;
}

.headArea h1 {
    width: 760px;
    margin: 0 auto;
    padding: 64px 0;
    overflow: hidden;
    font-size: 44px;
    text-align: center;
    line-height: 1.4;
}

.campaignArea__ttl,
.contactArea__ttl {
    display: flex;
    margin-bottom: 7px;
    font-size: 24px;
    font-weight: 600;
    text-align: left;
    line-height: 1.1;
}

.campaignArea__ttl::before,
.contactArea__ttl::before {
    counter-increment: h2;
    content: counter(h2);
    width: 25px;
    height: 25px;
    margin-right: 7px;
    line-height: 1.3;
    font-size: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    background-color: #222222;
    color: #ffffff;
    text-align: center;
}

.campaignArea__ttl__center,
.contactArea__ttl__center {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.campaignArea__ttlsub,
.contactArea__ttlsub {
    margin: 18px 0;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    line-height: 1.2;
}

.campaignArea__inner {
    width: 760px;
    margin: 0 auto;
    padding: 65px;
    background-color: #fff;
    border-radius: 30px;
    counter-reset: h2;
}

.campaignArea__content {
    margin-bottom: 45px;
}

.campaignArea__content.-first {
    margin-bottom: 65px;
}

.campaignArea__content.-schedule {
    margin: 65px 0;
}

.campaignArea__content.-disclaimer {
    margin-bottom: 0;
}

.campaignArea__content.-disclaimer .campaignArea__txt__wrapper {
    margin-bottom: 0;
}

.campaignArea__content.-disclaimer .campaignArea__txt {
    font-size: 18px;
}

.campaignArea__content.-disclaimer .campaignArea__txt:last-child {
    margin-bottom: 0;
}

.campaignArea__txt {
    margin-bottom: 15px;
    font-size: 16px;
    text-align: left;
    line-height: 1.5;
    color: #222222;
}

.campaignArea__txt__wrapper {
    margin: 0 0 8px 24px;
}

.campaignArea__txt a {
    color: #008CFF;
}

.campaignArea__txt a:hover {
    color: #0144ff;
    text-decoration: none;
    transition: .3s;
}

.campaignArea .-strong {
    font-weight: bold;
}

.campaignArea__table {
    margin: 0 auto;
    width: 760px;
}

.campaignArea__table__head {
    width: 240px;
    text-align: left;
    font-weight: 400;
    color: #ffffff;
    background-color: #222222;
}

.campaignArea__table__head, .campaignArea__table__data {
    padding: 16px 25px;
    border: 1px solid #D3D3D3;
    font-size: 16px;
}

.campaignArea__table__data {
    width: 501px;
    color: #222222;
    background-color: #ffffff;
    line-height: 1.2;
}

.campaignArea__table__data .campaignArea__txt {
    margin-bottom: 5px;
}

.campaignArea .-num {
    list-style-type: decimal;
}

.campaignArea .-abc {
    list-style-type: lower-alpha;
    margin-bottom: 0px;
}

.campaignArea__note {
    margin-top: 15px;
    font-size: 12px;
    line-height: 1.5;
}

.campaignArea__schedule {
    margin: 0 auto;
}

.campaignArea__image {
    width: 760px;
}

.contactArea {
    min-width: 760px;
    background-color: #EDF2F7;
}

.contactArea__inner {
    width: 760px;
    margin: 0 auto;
    padding: 60px 0 50px;
}

.contactArea__text {
    margin-bottom: 25px;
    font-size: 24px;
    text-align: center;
    line-height: 1.4;
    font-weight: 600;
}

.contactArea__wrapper {
    display: flex;
    justify-content: space-between;
}

.content__button > a {
    width: 355px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 17.25px 35px 17.25px 24px;
    font-size: 16px;
    border-radius: 9999px;
    box-sizing: border-box;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.5s ease, background 0.5s ease, border-color 0.5s ease;
}

.content__button > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.content__button > a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.content__button > a::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 0.6em;
    height: 0.6em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%) translateX(-25%) rotate(45deg);
    transition: border-color 0.5s ease, color 0.5s ease;
    z-index: 1;
}

.content__button__text {
    position: relative;
    z-index: 1;
    font-weight: 500;
    font-size: 16px;
}

.content__button__common {
    background: #ffffff;
    color: #222222;
    border: 1px solid #222222;
}

.content__button__common::before {
    background: #222222;
}

.content__button__common:hover {
    color: #ffffff;
}

.trackingArea {
    position: fixed;
    width: 100%;
    z-index: 9999;
}

.trackingArea.is-display {
    bottom: 0;
    visibility: visible;
}

.trackingArea.is-static {
    position: absolute;
    bottom: 0;
    visibility: visible;
}

.button__scrollTop {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: inline;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border: 2px solid #222222;
    border-radius: 40px;
    box-sizing: border-box;
    z-index: 9999;
}

.button__scrollTop::before, .button__scrollTop::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    width: 4px;
    height: 17px;
    margin-left: -7px;
    margin-top: -9px;
    background-color: #222222;
    transform: rotate(45deg);
}

.button__scrollTop::after {
    margin-left: 3px;
    transform: rotate(-45deg);
}
