

/* セクション横余白 */
.container1440 {
    position: relative;
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
}
.container {
    max-width: 1080px;
    margin: 0 auto;
}
@media (max-width:1120px) {
    .container {
        padding: 0 20px;
    }
}

/* タイトル下のコンテンツ */
.contents {
    margin-top: 80px;
}
@media (max-width:767px) {
    .contents {
        margin-top: 40px;
    }
}

.inter {
    font-family: var(--font-en);
}

.for-sp {
    display: none;
}
/* SP */
@media (max-width: 767px) {
    .for-sp {
        display: inline-block;
    }
    .for-pc {
        display: none;
    }
}

/* ================== */
/* 共通白ボタン */
/* ================== */
.button {
    display: flex;
    height: 60px;
    min-width: 260px;
    padding: 10px 50px;
    justify-content: center;
    align-items: center;
    gap: 11px;
    border-radius: 50px;
    color: var(--colorBlack);
    background-color: #fff;
    font-weight: 500;
    position: relative;
    border: 1px solid var(--colorRead-theme);
    width: max-content;
    box-shadow: 0 4px 0 0 rgba(0 0 0 / .1);
}
.button::before {
    content: "";
    background-color: var(--colorRead-theme);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}
.button::after {
    content: "";
    background: url(../images/common/arrow-right-white.svg) no-repeat center center / contain;
    width: 9.14px;
    height: 10.42px;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
/* 共通白ボタン:hover */
.button:hover {
    background-color: #FFC7C7;
    border: 1px solid var(--colorRead-theme);
}

/* ================== */
/* 共通赤ボタン */
/* ================== */
.button.red {
    background: var(--colorRead-theme);
    color: #fff;
}
.button.red::before {
    background-color: #fff;
}
.button.red::after {
    background: url(../images/common/arrow-right-red.svg) no-repeat center center / contain;
}
/* 共通赤ボタン:hover */
.button.red:hover {
    background-color: #B20600;
    border: 1px solid #B20600;
}


.sectionTitle {
    text-align: center;
}
.sectionTitle__en {
    color: var(--colorRead-theme);
    line-height: 1.8;
}
.sectionTitle__img {
    margin-right: auto;
    margin-left: auto;
    padding: 16px 0;
}
@media (max-width:767px) {

}

