body {
    margin: 0;
    font-family: "Helvetica Neue",
        Arial,
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
}

.opacity-50{
    opacity: 0.5;
}

.section {
    height: 100vh;
    width: 100%;
}

.sectionBody {
    width: 85%;
    height: 100%;
    margin: 0 auto;
}

.sectionTitle {
    height: 15vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sectionTitle.delighter {
    transition: all 0.5s ease-out;
    transform: translateX(-100%);
    opacity: 0;
}

.sectionTitle.delighter.started {
    transform: none;
    opacity: 1;
}

.sectionContent {
    height: 85vh;
    display: flex;
    align-items: center;
}

.sectionTitleEng {
    font-size: 3rem;
    line-height: 3rem;
    letter-spacing: 1.5rem;
    margin-bottom: 0.25rem;
}

.sectionTitleJpn {
    font-size: 1.0rem;
    line-height: 1.0rem;
    letter-spacing: 0.5rem;
    font-weight: bold;
}

.textWhite {
    color: #ffffff;
}

.textPink {
    color: #D93D93;
}

.textYellow {
    color: #CFDC28;
}

.textBlue {
    color: #2AA8DA;
}

.textGreen {
    color: #05B900;
}

.textBold {
    font-weight: bold;
}

.textShadow {
    text-shadow: 0.5px 1px 1.5px #444444;
}

.btnShadow,
.inputShadow {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.inputShadow {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.overflowHidden {
    overflow: hidden !important;
}

.comingSoon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;
    transform: rotate(-5deg);
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px;
    /* background-color: #CFDC28; */
    background-color: #BDB178;
    color: #000000;
    margin: auto;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.linkRequest {
    font-size: 1.05em !important;
    color: #222222 !important;
    position: relative;
    padding: 0.5rem 1rem;
    letter-spacing: 0.05rem;
    background: linear-gradient(225deg, transparent 0.25rem, #CFDC28 0.25rem);
    background-position: top right;
    background-repeat: no-repeat;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.linkRequest::before {
    content: '';
    display: block;
    background: linear-gradient(225deg, transparent 0.25rem, #eaf823 0.25rem);
    width: 0.5rem;
    height: 0.5rem;
    position: absolute;
    right: 0px;
    top: 0px;
}


.pace-running .wrap {
    display: none;
}

.whiteScreen{
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 2;
}


/* ============================================================

    SP対応

============================================================ */
/* @media screen and (max-width: 768px){ */
@media screen and (max-width: 1279px) {

    body,
    .container {
        overflow-x: hidden;
    }

    .section {
        height: auto;
        width: 100%;
    }

    .sectionBody {
        width: 90%;
        height: 100%;
        margin: 0 auto;
    }

    .sectionTitle {
        padding-top: 1vh;
    }


    .sectionTitleEng {
        font-size: 2rem;
        line-height: 2rem;
        letter-spacing: 0.75rem;
    }

    .sectionTitleJpn {}

    .sectionContent {
        height: auto;
    }
}

/*
    タブレット
*/
@media screen and (max-width: 1279px) and (min-width: 769px) {
    html {
        font-size: 18px;
    }
}

/*
    スマホ
*/
@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

/* ============================================================

    大画面対応

============================================================ */
@media screen and (min-width: 1919px) {
    html {
        font-size: 22px;
    }
}