@charset "utf-8";
main section {
    border-top: 2px solid var(--color-main);
    padding: 64px 0;
}

main section:first-child {
    border-top: none;
    padding-top: 42px;
}

main section:last-child {
    padding-bottom: 0;
}

main section .text_red {
    color: #E40000;
}

main section .text_bold {
    font-weight: bold;
}

.inner {
    width: 1200px;
    margin: 0 auto
}

.attention + .attention {
    margin-top: 64px;
}

.attention_lead {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 64px;
}

.attention_title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 28px;
}

.attentionBottom_lead {
    font-weight: bold;
    margin-bottom: 12px;
}

.cautionList {
    color: #666;
    font-size: 14px;
}

.cautionList > li > * {
    color: #666;
}

.cautionList > li {
    text-indent: -1.25em;
    padding-left: 1.25em;
}

/* アコーディオン */
.accordion > li + li {
    margin-top: 16px;
}

.accordion_head {
    position: relative;
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
    padding: 20px 40px;
    background: #F2F2F2;
    border-radius: 4px;
    cursor: pointer;
}

.accordion_head::after {
    background: transparent;
    border-right: solid 1.5px #333;
    border-top: solid 1.5px #333;
    bottom: 0;
    content: "";
    display: block;
    margin: auto;
    position: absolute;
    right: 48px;
    top: 0;
    width: 13px;
    height: 13px;
    transform: rotate(135deg);
    transition: 0.2s;
}

.accordion > li.-open .accordion_head::after {
    transform: rotate(-45deg);
    top: 10px;
}

.accordion_body {
    display: none;
    padding: 40px;
    border-bottom: 1px solid #AAAAAA;
}

.accordion_body h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.accordion_body h5 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
}

.accordion_body h4:not(:first-child) {
    margin-top: 40px;
}

.accordion_body h5:not(:first-child) {
    margin-top: 20px;
}

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

.paymentMethod + .paymentMethod {
    margin-top: 24px;
}

.paymentMethod_text {
    flex: 1;
    text-indent: -1.25em;
    padding-left: 1.25em;
}

.paymentMethod_image {
    display: flex;
    justify-content: center;
    width: 456px;
    padding: 40px;
    background: #F2F2F2;
}

.paymentMethod_cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.paymentMethod_cards img {
    width: auto;
    height: 44px;
}

.paymentMethod_cards img.visa {
    width: 70px;
}

.paymentMethod_image .paidy {
    width: auto;
    height: 80px;
}

.paymentMethod_image.-paidy {
    padding: 28px 40px;
}

.accordion_description > div {
    display: flex;
}

.accordion_list > li {
    text-indent: -1.25em;
    padding-left: 1.25em;
}

/* bottomBtns */
.bottomBtns {
    margin-top: 36px;
}

.bottomBtns .form_wrapper {
    margin-bottom: 48px;
}

.btn_row {
    margin-top: 82px;
}

.bottomBtns .btn_row {
    margin-top: 58px;
}

button.mobile-btn,
a.mobile-btn,
.general-btn {
    font-size: 20px;
    line-height: calc(64 / 20);
}