
:root {
    --accent-color: #6F6EAD;
    --main-width: 1300px;
    --over-width: 1720px
}

body {
    background-color: #fff;
    min-width: 320px;
    max-width: 100vw;
}

main {
    overflow-x: hidden;
}

main * {
    box-sizing: border-box;
}

input {
    margin: 0;
}

input:-webkit-autofill,
select:-webkit-autofill {
  transition: background-color 10000s ease-in-out 0s;
}

._spOnly {
    display: none;
}
@media screen and (max-width:400px) {
    ._spOnly {
        display: block;
    }
}

._mdOnly {
    display: none;
}
@media screen and (max-width:768px) {
    ._mdOnly {
        display: block;
    }
}

._lgOnly {
    display: none;
}
@media screen and (max-width:980px) {
    ._lgOnly {
        display: block;
    }
}

._lspOnly {
    display: none;
}
@media screen and (max-width:465px) {
    ._lspOnly {
        display: block;
    }
}

.-overSm {
    display: block;
}
@media screen and (max-width:520px) {
    .-overSm {
        display: none;
    }
}

._bold {
    font-weight: bold;
}

._underline {
    text-decoration: underline;
}

._hide {
    display: none;
}

/*
|--------------------------------------------------------------------------
| content-header
|--------------------------------------------------------------------------
*/

.content-header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 114px;
    width: 100%;
}
@media screen and (max-width:768px) {
    .content-header {
        height: 80px;
    }
}
@media screen and (max-width:400px) {
    .content-header {
        height: 60px;
    }
}

.content-header p {
    line-height: 1;
    font-size: 24px;
}
@media screen and (max-width:400px) {
    .content-header p {
        font-size: 20px;
    }
}


.content-header p .brand {
    font-style: italic;
}

/*
|--------------------------------------------------------------------------
| section-container
|--------------------------------------------------------------------------
*/

.section-container > .container-header {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 16px;
    margin: 0 auto;
    margin-bottom: 16px;
    height: 100px;
    width: 100%;
    max-width: var(--over-width);
}
@media screen and (max-width:768px) {
    .section-container > .container-header {
        height: 60px;
    }
}
@media screen and (max-width:400px) {
    .section-container > .container-header {
        height: 60px;
    }
}

.container-header > .title-box {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
}

.container-header > .title-box > .label {
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.3em;
    line-height: 1;
    text-align: center;
    color: var(--accent-color);
}
@media screen and (max-width:400px) {
    .container-header > .title-box > .label {
        font-size: 12px;
    }
}

.container-header > .title-box > .title {
    font-weight: 600;
    font-size: 34px;
    padding: 0 16px;
    letter-spacing: 0.1em;
    line-height: 1;
}
@media screen and (max-width:768px) {
    .container-header > .title-box > .title {
        font-size: 24px;
    }
}
@media screen and (max-width:400px) {
    .container-header > .title-box > .title {
        font-weight: 600;
        font-size: 20px;
        letter-spacing: 0.1em;
        line-height: 1;
    }
}

.container-header > .title-box::after {
    display: block;
    content: "";
    border-bottom: 2px solid var(--accent-color);
    height: 2px;
    width: 40px;
    margin: 0 auto;
}

.container-header > .icon {
    height: 100%;
    width: auto;
}

.section-container > .explainText,
.explain-texts > .explainText,
.promotionItems-wrap > .explainText {
    display: block;
    margin: 0 auto;
    width: fit-content;
    font-size: 18px;
    padding: 0 16px;
}

@media screen and (max-width:768px) {
    .section-container > .explainText {
        text-align: center;
    }
}

.explain-texts {
    margin: 0 auto;
    width: fit-content;
}
