header {
    background-color: #FFFFFF;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    width: 60%;
    margin: 0 auto;
}

header .logo {
    width: 400px;
    height: 50px;
}

header .logo img {
    width: 100%;
    height: 100%;
}

.nav-links {
    display: flex;
    justify-content: end;
    width: 500px;
    height: 50px;
    padding-right: 40px;
}

header .nav-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    margin: 0 10px;
}

header .nav-links img {
    object-fit: cover;
    width: 100%;
    height: auto;
}

header .nav-links a:last-child img {
    height: 130%;
    transform: translateY(-7px);
}

@media screen and (max-width: 1260px) { 
    nav {
        width: 80%;
    }
}

@media screen and (max-width: 1000px) { 
    nav {
        width: 95%;
    }

    header .logo {
        margin-left: 40px;
    }
}

@media screen and (max-width: 670px) {
    nav {
        width: 100%;
        margin: 0 auto;
        justify-content: center;
    }

    header .logo {
        margin-left: 0;
        width: 80%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-links {
        /* width: 300px;
        height: auto;
        padding-right: 0; */
        display: none;
    }

    /* header .nav-links a {
        width: 30px;
        height: 30px;
    }

    header .nav-links a:last-child img {
        transform: translateY(-5px);
    } */
}

@media screen and (max-width: 450px) {
    nav {
        height: 80px;
    }

    header .logo img {
        width: 70%;
        height: 50%;
    }
}

/* ハンバーガーメニュー */
.burger {
    display: none;
    cursor: pointer;
}

.burger .line1,
.burger .line2,
.burger .line3 {
    width: 25px;
    height: 3px;
    background-color: #1E3A8A;
    margin: 5px;
    transition: all 0.5s ease-in-out;
    margin-left: 30px;
}

.toggle .line1 {
    transform: translate(0px, 8px) rotate(45deg);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: translate(0px, -8px) rotate(-45deg);
}


/* @media screen and (max-width: 1400px) {
    .nav-links {
        padding-right: 80px;
        width: 50%;
    }
}

@media screen and (max-width: 920px) {
    .contact-btn {
        padding: 12px 18px;
        border-radius: 28px;
        font-size: 14px;
    }

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

    nav {
        margin: 0;
        justify-content: space-between;
    }

    .nav-links {
        display: none;
    }

    header .logo{
        width: 24%;
        padding-left: 32px;
    }

    header .burger{
        padding-right: 32px;
    }
}

@media screen and (max-width: 540px) {
    header .logo {
        width: 30%;
    }
} */

/* お問合せボタン */
.contact-btn {
    width: 100%;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    margin: 32px 0;
    padding: 0 24px;
}

.contact-wrapper a {
    display: inline-block;
    width: 47%;
    height: 100%;
    margin: 0 auto;
}

.contact-btn.black {
    background-color: black;
    border: 1px solid black;
}

.contact-btn.black:hover {
    background-color: white;
    transition: 0.5s;
}

.contact-btn.yellow {
    background-color: #fff182;
    border: 1px solid #fff182;
}

.contact-btn.yellow:hover {
    background-color: #FFFFFF;
}

.contact-btn p {
    width: 90%;
    font-size: 45px;
    font-family: "NotoSans";
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 3px;
}

.contact-btn:hover p {
    color: black;
    transition: 0.5s;
}

.contact-btn.yellow p {
    color: black;
}

.contact-btn.yellow:hover p {
    color: #fff182;
    transition: 0.5s;
}

.contact-btn .circle {
    width: 80px;
    height: 80px;
    border-radius: 64px;
    background-color: #FFFFFF;
    display: flex;
    position: relative;
    border: 1px solid black;
}

.contact-btn.yellow .circle {
    border: 1px solid #fff182;
}

.contact-btn:hover .circle {
    background-color: black;
    transform: 1s;
}

.contact-btn.yellow:hover .circle {
    background-color: #fff182;
    border: 1px solid #fff182;
    transition: 0.5s;
}

.contact-btn img {
    position: absolute;
    top: 25%;
    right: 15%;
    width: 60%;
    height: auto;
    transform: rotate(90deg);
}

.contact-btn.black img {
    filter: invert(50%) sepia(0%) saturate(11%) hue-rotate(143deg) brightness(101%) contrast(93%);
}

.contact-btn.black:hover img {
    transition: filter 2s ease;
    filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
}

.contact-btn.yellow img {
    filter: invert(75%) sepia(81%) saturate(633%) hue-rotate(359deg) brightness(100%) contrast(85%);
}

.contact-btn.yellow:hover img {
    transition: filter 2s ease;
    filter: brightness(0);
}

@media screen and (max-width: 1750px) {
    .contact-btn p {
        font-size: 48px;
    }
}

@media screen and (max-width: 1700px) {
    .contact-wrapper a {
        width: 60%;
    }

    .contact-btn p {
        font-size: 40px;
    }
}

@media screen and (max-width: 1400px) {
    .contact-wrapper a {
        width: 70%;
    }
}

@media screen and (max-width: 1000px) {
    .contact-wrapper a {
        width: 95%;
    }

    .contact-btn {
        height: 100px;
    }

    .contact-btn p {
        width: 100%;
    }

    .contact-btn .circle {
        width: 80px;
        height: 70px;
        border-radius: 50px;
    }

    .contact-btn img {
        top: 30%;
        right: 20%;
        width: 50%;
    }
}

@media screen and (max-width: 870px) {
    .contact-btn p {
        text-align: center;
    }
}

@media screen and (max-width: 770px) {
    .contact-btn p {
        font-size: 27px;
        line-height: 0;
    }

    .contact-btn {
        height: 75px;
        padding: 0 10px;
    }

    .contact-btn .circle {
        width: 60px;
        height: 55px;
    }
}

@media screen and (max-width: 550px) {
    .contact-btn p {
        font-size: 20px;
        line-height: 0;
    }

    .contact-btn {
        height: 50px;
        padding: 0 5px;
    }

    .contact-btn .circle {
        width: 40px;
        height: 35px;
    }
}

/* 青かっこ */
.left-literal {
    display: inline-block;
    width: 20px;
    height: 40px;
    background-color: #006cb8;
    margin-right: 24px;
    background: linear-gradient(90deg, #006cb8 0%, #006cb8 50%, #FFFFFF 50%, #FFFFFF 80%, #006cb8 80%, #006cb8 100%);
}

.right-literal {
    display: inline-block;
    width: 20px;
    height: 40px;
    background-color: #006cb8;
    margin-left: 24px;
    background: linear-gradient(90deg, #006cb8 0%, #006cb8 20%, #FFFFFF 20%, #FFFFFF 50%, #006cb8 50%, #006cb8 100%);
}

.left-literal.promotion-literal {
    background: linear-gradient(90deg, #006cb8 0%, #006cb8 50%, #e5e8e9 50%, #e5e8e9 80%, #006cb8 80%, #006cb8 100%);
}

.right-literal.promotion-literal {
    background: linear-gradient(90deg, #006cb8 0%, #006cb8 20%, #e5e8e9 20%, #e5e8e9 50%, #006cb8 50%, #006cb8 100%);
}

@media screen and (max-width: 1300px) {
    .promotion-content .left-literal {
        height: 32px;
    }

    .promotion-content .right-literal {
        height: 32px;
    }
}

@media screen and (max-width: 1000px) {
    .promotion-content .left-literal {
        height: 112px;
    }

    .promotion-content .right-literal {
        height: 112px;
    }

    .personal-desc .left-literal {
        display: block;
        height: 90px;
        background: linear-gradient(90deg, #ffffffc2 0%, #ffffffc2 50%, #231815 50%, #231815 80%, #ffffffc2 80%, #ffffffc2 100%);
    }

    .personal-desc .right-literal {
        display: block;
        height: 90px;
        background: linear-gradient(90deg, #ffffffc2 0%, #ffffffc2 20%, #231815 20%, #231815 50%, #ffffffc2 50%, #ffffffc2 100%);
    }
}

@media screen and (max-width: 870px) {
    .personal-desc .left-literal {
        width: 15px;
        height: 75px;
    }

    .personal-desc .right-literal {
        width: 15px;
        height: 75px;
    }
}

@media screen and (max-width: 670px) {
    .promotion-content .left-literal {
        height: 72px;
    }

    .promotion-content .right-literal {
        height: 72px;
    }

    .qa-content .left-literal {
        width: 10px;
        height: 32px;
    }

    .qa-content .right-literal {
        width: 10px;
        height: 32px;
    }

    .access-wrapper .left-literal {
        width: 10px;
        height: 35px;
    }

    .access-wrapper .right-literal {
        width: 10px;
        height: 35px;
    }
}

@media screen and (max-width: 600px) {
    .personal-desc .left-literal {
        height: 60px;
        margin-right: 16px;
    }

    .personal-desc .right-literal {
        height: 60px;
        margin-left: 16px;
    }

    .training-desc .left-literal {
        margin-right: 0;
    }

    .training-desc .right-literal {
        margin-left: 0;
    }
}

@media screen and (max-width: 550px) {
    .promotion-content .left-literal {
        width: 10px;
        height: 56px;
    }

    .promotion-content .right-literal {
        width: 10px;
        height: 56px;
    }

    .access-wrapper .left-literal {
        width: 5px;
        height: 20px;
    }

    .access-wrapper .right-literal {
        width: 5px;
        height: 20px;
    }
}

@media screen and (max-width: 500px) {
    .qa-content .left-literal {
        height: 24px;
        margin-right: 7px;
    }

    .qa-content .right-literal {
        height: 24px;
        margin-left: 7px;
    }
}

@media screen and (max-width: 450px) {
    .promotion-content .left-literal {
        height: 48px;
    }

    .promotion-content .right-literal {
        height: 48px;
    }

    .personal-desc .left-literal {
        width: 6px;
        height: 48px;
    }

    .personal-desc .right-literal {
        width: 6px;
        height: 48px;
    }
}

/* フッター */
footer {
    background-color: #006cb8;
    width: 100vw;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .logo p {
    font-size: 36px;
    color: #FFFFFF;
}

@media screen and (max-width: 670px) {
    footer .logo p {
        font-size: 24px;
    }
}

@media screen and (max-width: 450px) {
    footer {
        height: 90px;
    }

    footer .logo p {
        font-size: 20px;
    }
}