/* ------------------------------

    トップ

------------------------------ */

.top{
    border-top: 0.75rem solid #CFDC28;
}

.sectionTop{
    
}

.sectionTopBody{
    position: relative;
    height: 80vh;
}

.topMessageWrapeer{
    position: absolute;
    width: fit-content;
    height: fit-content;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.topMessage{
    margin: auto;
    font-size: 8rem;
}

.ityped-cursor {
    font-size: 4rem;
    opacity: 1;
    animation: flash 1.25s linear infinite;
    color: #fff;
   }
   @keyframes flash {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}
}

/* ------------------------------

    ヘッダー

------------------------------ */
header{
    position: sticky;
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headerPadding{
    padding: 0 2vw;
}

.headerLeft{
    width: 10%;
}

.headerRight{
    width: 10%;
    display: flex;
    justify-content: end;
}

.headerCenter{
    width: 80%;
    display: flex;
    justify-content: center;
}

.logoHeaderBody{
    position: absolute;
    top: 0;
    left: 0;
    width: 12rem;
    height: 6rem;
    border-bottom-right-radius: 1rem;
    background-color: #CFDC28;
}

.logoHeaderImg{
    position: absolute;
    height: 3rem;
    top: 1.4rem;
    left: 1.8rem;
}

.navigation{
    display: flex;
    align-items: center;
}

.navItem{
    font-size: 0.9rem;
    text-decoration: none;
    margin-left: 1.5vw;
    margin-right: 1.5vw;
    cursor: pointer;
}

.linkRequestForSp{
    display: none;
}

.btnLogin{
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 0.9rem;
    transition: 0.25s;
}

.btnLogin:hover{
    opacity: 0.5;
}

.subHeader{
    height: 5vh;
}

.btnSnsGroup {
    width: fit-content;
    margin-left: auto;
}

.btnSns {
    border-radius: 50%;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
    font-size: 0.9rem;
    transition: 0.25s;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

.btnSns:hover{
    opacity: 0.5;
}

.btnSns a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.btnSns i {
    font-size: 1.3rem;
}

.btnSnsLine {
    background-color: #00B900;
}

.btnSnsTwitter {
    background-color: #1DA1F2;
}

.btnSnsInstagram {
    background-color: #e1306c;
}


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

    SP対応

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

        ヘッダー

    ------------------------------ */
    header{
        display: block;
        height: 5rem;
    }

    .headerLeft, .headerCenter{
        display: none;
    }

    .headerRight{
        margin-left: auto;
        margin-top: 3vh;
        width: 100%;
    }

    .topMessage{
        margin: auto;
        font-size: 3rem;
    }

    .linkRequestForSp{
        display: block;
    }

    .sectionTopBody{
        height: 65vh;
        margin-bottom: 10vh;
    }
}