.first-view__form-title {
    font-family: "Zen Old Mincho", serif;
    font-size: 20px;
    margin: 0;
    padding: 0;
}

.imageset__col2--text h2 {
    font-family: "Zen Old Mincho", serif;
    font-size: 32px;
    line-height: 1.4;
    padding-bottom: 25px;
}


@media only screen and (max-width: 375px) {
    .imageset__col2--text h2 {
        font-size: max(5.8666666667vw, 12px);
    }
}

@media only screen and (max-width: 767px) {
    .imageset__col2--text h2 {
        font-size: 22px;
    }
}

.footer__item-clm {
    font-size: 24px;
}


.footer__item-clm-feat-item {
    list-style-type: disc;
    margin-left: 16px;
}


.footer__link {
    gap: 80px;
}

.blue-bg {
    background: #333A56;
    position: relative;
    overflow: hidden;
    padding: 122px 0 32px 0;
}

.blue-bg::after {
    background: url("../image/top/header_bg.png") no-repeat right bottom #333a56;
    background-size: contain;
    position: absolute;
    right: 0;
    left: unset;
    bottom: 0;
    height: 600px;
    width: 600px;
}

.first-view__main--banner p img {
    width: auto;
    height: 100%;
}

.first-view__main--banner p img:nth-of-type(2) {
    max-height: 50px;
}

.first-view__main--banner p img:nth-of-type(3) {
    max-height: 50px;
}

.first-view__main--banner p img:nth-of-type(4) {
    max-height: 50px;
}

.first-view__main--banner p {
    gap: 8px;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 767px) {
    .first-view__main--banner p img:nth-of-type(1) {
        width: 100%;
        max-height: 67px;
        object-fit: contain;
    }

    .first-view__main--banner p img:nth-of-type(2) {
        max-height: 38px;
    }

    .first-view__main--banner p img:nth-of-type(3) {
        max-height: 38px;
    }

    .first-view__main--banner p img:nth-of-type(4) {
        max-height: 38px;
    }
}

.first-view__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}



.first-view__cta p {
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
}

.first-view__cta p span {
    color: #BF9F70;
    font-weight: 700;
}

.first-view__main.center  {
    text-align: center;
}

.first-view__main--catchphrase.center {
    width: 100%;
    text-align: center;
    display: inline-block;
    color: #BF9F70;
    font-family: 'Noto Sans JP', sans-serif;
    text-shadow: unset;
}

.firs-view__img {
    max-width: 75%;
    margin: 0 auto;
}

.first-view__head {
    width: 100%;
    text-align: center;
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.4;
    margin: 20px 0;
}

.scroll-logo {
    position: relative;
    z-index: 2;
}

.first-view__wrap.fv__top {
    width: 90%;
    margin: 0 auto 30px;
    align-items: flex-start;
}

@media only screen and (max-width: 1080px) { 
    .first-view__main--catchphrase {
        font-size: 16px;
    }
    .first-view__main {
        width: 100%;
        max-width: 90%;
    }
    .first-view__wrap {
        flex-direction: column;
    }

    .first-view__cta p br {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .first-view__main {
        width: 100%;
        max-width: 100%;
    }

    .first-view__head {
        font-size: 30px;
    }

    .first-view__cta {
        max-width: 90%;
        margin: 30px auto;
        flex-direction: column;
    }

    .first-view__cta p br {
        display: none;
    }

    .scroll-logo {
        margin-top: 30px;
    }
}


li.has-dropdown {
    position: relative;
}
ul.dropdown {
    position: absolute;
    background: #fff;
    padding: 20px 24px;
    margin: 10px 0;
    width: 260px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease-in-out;
}
ul.dropdown li a.dropdown-item {
    color: #333A56!important;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.dropdown li a.dropdown-item::after {
    content: '';
    display: inline-block;
    background: url("../image/icon_arrow.svg") no-repeat;
    width: 26px;
    height: 26px;
}


.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
}