html {
    scroll-behavior: smooth;
    scroll-padding-top: 107.8px;
    width: 100vw;
    overflow-x: hidden;
}

@media screen and (max-width: 1440px) {
    html {
        scroll-padding-top: 7.486vw;
    }
}

@media screen and (max-width: 760px) {
    html {
        scroll-padding-top: 10.667vw;
    }
}

body {
    font-family: "Noto Sans JP", sans-serif;
    width: 100vw;
    background-color: white;
}

img {
    width: 100%;
    height: 100%;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

.pc-inline {
    display: inline;
}

@media screen and (max-width: 760px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .pc-inline {
        display: none;
    }
}

/* 下層ページの FV */
.sub-hero {
    width: 100%;
    position: relative;
    margin-top: 113px;
    background-image: url('../images/common/sub-hero-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.sub-hero__container {
    width: 1440px;
    height: 340px;
    margin: 0 auto;
    padding-top: 111px;
    padding-left: 160px;
}

.sub-hero__title {
    color: white;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 72px;
    line-height: 1;
    letter-spacing: 0.01em;
}

.sub-hero__text {
    color: white;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0;
    margin-top: 0;
}

@media screen and (max-width: 1440px) {
    .sub-hero {
        width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        position: relative;
        margin-top: 7.47vw;
    }
    
    .sub-hero__container {
        width: 100vw;
        height: 23.611vw;
        margin: 0 auto;
        padding-top: 7.708vw;
        padding-left: 11.111vw;
    }
    
    .sub-hero__title {
        font-size: 5vw;
    }
    
    .sub-hero__text {       
        font-size: 1.388vw;
        margin-top: 0;
    }
   
}

@media screen and (max-width: 760px) {
    .sub-hero {
        width: 100%;
        margin-top: 86px;
    }
    
    .sub-hero__container {
        width: 100%;
        height: 66.667vw;
        margin: 0 auto;
        padding-top: 24vw;
        padding-left: 10vw;
    }
    
    .sub-hero__title {
        font-size: 46px;
    }
    
    .sub-hero__text {
        font-size: 24px;
        margin-top: 0;
    }
}

.header {
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, .25);
    transition: background-color 0.3s ease-in-out;
    padding: 0;
}

.header.scroll {
    background-color: rgba(255, 255, 255, 1);
}

.header__main {
    width: 100vw;
    height: 113px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 60px;
    padding-right: 60px;
    position: relative;
}

.header__logo {
    width: 315px;
    height: 65px;
}

.header__menu-wrap {
    width: 884.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    width: 524px;
}

.header__menu-item {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 0;
    color: black;
}

.header__menu-item:last-child {
    border-right: none;
}

.header__menu-item a {
    text-decoration: none;
    color: black;
}

.header__contact-btn {
    color: white;
    width: 240px;
    height: 56px;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding-left: 50px;
    font-size: 18px;
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.75;
    letter-spacing: 0;
    position: relative;
    background-color: #F26F11;
}

.header__contact-btn::after {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    top: 16px;
    right: 50px;
    background-image: url('../images/common/btn-arrow-right.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media screen and (max-width: 1440px) {
    .header {
        padding: 0;
    }
    
    .header__main {
        width: 100vw;
        height: 7.847vw;
        margin: 0 auto;
        display: flex;
        align-items: center;
        padding-left: 4.167vw;
        padding-right: 4.167vw;
        position: relative;
    }

    .header__logo {
        width: 21.875vw;
        height: 4.514vw;
    }

    .header__menu-wrap {
        width: 61.42vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header__menu {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 36.389vw;
    }

    .header__menu-item {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.111vw;
    }

    .header__contact-btn {
        width: 16.667vw;
        height: 3.889vw;
        display: flex;
        align-items: center;
        text-decoration: none;
        padding-left: 3.472vw;
        font-size: 1.25vw;
        position: relative;
    }

    .header__contact-btn::after {
        position: absolute;
        content: "";
        width: 1.667vw;
        height: 1.667vw;
        top: 1.111vw;
        right: 3.472vw;
    }
}

@media screen and (max-width: 760px) {
    
    .header {
        background-color: rgba(255,255,255, 1);
    }

    .header.scroll {
        background-color: rgba(255,255,255, 1);
    }

    .header__main {
        width: 100%;
        height: 86px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        padding-left: 20px;
        padding-right: 20px;
        position: relative;
    }

    .header__logo {
        width: 270px;
        height: 55.71px;
    }

    .header__menu-wrap {
        display: none;
    }
}



.hamburger-btn {
    display: none;
}

@media screen and (max-width: 760px) {
    .hamburger-btn {
        position: fixed;
        top: 40px;
        right: 30px;
        width: 20px;
        height: 16px;
        z-index: 200;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        row-gap: 2px;
        transition: transform .3s ease-in-out;
        cursor: pointer;
    }
}

.hamburger-btn__line {
    width: 20px;
    height: 2px;
    background-color: #003571;
    transition: transform .3s ease-in-out;
}

.hamburger-btn.active .hamburger-btn__line:first-child {
    transform: rotate(45deg) translate(4px, 5.6px);
    background-color:  #003571;
}

.hamburger-btn.active .hamburger-btn__line:nth-child(2) {
    opacity: 0;
    background-color:  #003571;
} 

.hamburger-btn.active .hamburger-btn__line:last-child {
    transform: rotate(-45deg) translate(4px, -5.6px);
    background-color: #003571;
}

.main {
    width: 100vw;
    background-color: white;
    overflow: hidden;
}

@media screen and (max-width: 760px) {
    .main {

        padding-bottom: 10.667vw;
    }
}

.breadcrumbs {
    color: #4c4c4c;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: 0.08em;
    margin-bottom: 80px;
}

@media screen and (max-width: 760px) {
    .breadcrumbs {
        margin-bottom: 10.667vw;
    }
}

.content {
    width: 100vw;
    background-color: white;
}

.container {
    width: 77.78%;
    max-width: 1120px;
    min-width: 350px;
    margin: 0 auto;
    padding: 16px 0 80px;
}

@media screen and (max-width: 760px) {
    .container {
        padding: 10.667vw 0 0;
    }
}

.breadcrumbs a {
    color: #4c4c4c;
}

.footer {
    width: 100vw;
    background-color: #003571;
}

.footer__main {
    padding: 39px 0;
}

.footer__container {
    width: 1124px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 354px;
    position: relative;
}

.footer__logo {
    width: 286px;
    height: 60px;
}

.footer__address {
    color: white;
    padding: 10px 12px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0;
}

.footer__text {
    color: #ffffff;
    text-align: left;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    flex: 1;
}

.footer__menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: fit-content;
    list-style: none;
}

.footer__menu-item {
    width: fit-content;
    padding: 8px 16px;
    border-right: 1px solid rgba(255,255,255,1);
}

.footer__menu-item:last-child {
    border-right: none;
}

.footer__menu-text{
    color: white;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.125;
    text-decoration: none;
}

.footer__copyright {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.footer__copyright-text {
    color: #003571;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.04em;
}

@media screen and (max-width: 1440px) {
    
    .footer__main {
        padding: 2.708vw 0;
    }
    
    .footer__container {
        width: 78.056vw;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer__content {
        display: flex;
        flex-direction: column;
        gap: 0.833vw;
        align-items: flex-start;
        justify-content: flex-start;
        flex-shrink: 0;
        width: 24.583vw;
        position: relative;
    }
    
    .footer__logo {
        width: 19.861vw;
        height: 4.17vw;
    }
    
    .footer__address {
        padding: 0.694vw 0.833vw;
        font-size: 1.111vw;
    }
    
    .footer__text {
        text-align: left;
        font-size: 1.111vw;
        position: relative;
        flex: 1;
    }
    
    .footer__menu {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: fit-content;
        list-style: none;
    }
    
    .footer__menu-item {
        width: fit-content;
        padding: 0.556vw 1.111vw;
    }
    
    .footer__menu-text{
        font-size: 1.111vw;
    }
    
    .footer__copyright {
        width: 100%;
        margin: 0 auto;
        padding: 1.389vw 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .footer__copyright-text {
        font-size: 0.972vw;
    }

}

@media screen and (max-width: 760px) {
    .footer__main {
        padding: 40px 0;
    }
    
    .footer__container {
        width: 93.333vw;
        height: unset;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        row-gap: 5.333vw;
    }
    
    .footer__content {
        display: flex;
        flex-direction: column;
        gap: 3.2vw;
        align-items: flex-start;
        justify-content: flex-start;
        flex-shrink: 0;
        width: 93.333vw;
        position: relative;
    }

    .footer__logo {
        width: 286px;
        height: 60px;
    }
    
    .footer__address {
        padding: 2.667vw 3.2vw 2.667vw 3.2vw;
        font-size: 4.267vw;
        position: relative;
    }
    
    .footer__text {
        font-size: 3.73vw;
        position: relative;
        flex: 1;
    }
    
    .footer__menu {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 70vw;
        list-style: none;
        row-gap: 2.667vw;
        margin-left: 3.2vw;
    }

    .footer__menu-item {
        width: 50%;
        border-right: none;
    }
    
    .footer__menu-text{
        font-size: 4.267vw;
    }

    .footer__copyright {
        width: 100%;
        margin: 0 auto;
        padding: 20px 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer__copyright-text {
        font-size: 12px;
    }
}


.sp-menu {
    display: none;
}

@media screen and (max-width: 760px) {
    .sp-menu {
        display: none;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        right: 0;
        width: 60vw;
        height: 100vh;
        z-index: 100;
        background-color: rgba(255,255,255, .9);
    }

    .sp-menu.active {
        display: flex;
    }

    .sp-menu__wrap {
        width: 75%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .sp-menu__text {
        color: #030303;
        font-size: 18px;
        font-family: "Noto Sans JP", sans-serif;
        font-weight: bold;
        text-align: center;
    }

    .sp-menu__text a {
        text-decoration: none;
        color: unset;
    }

    .sp-menu__btn {
        background: linear-gradient(90deg, rgba(232, 167, 2, 1) 0%, rgba(234, 118, 23, 1) 100%);
        color: white;
        width: 100%;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        font-size: 20px;
        font-family: "Noto Sans JP", sans-serif;
        font-weight: bold;
    }
}

.content__title {
    width: 100%;
    height: 53px;
    padding: 0 37px;
    position: relative;
    background-color: #3579C5;
    color: white;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 28px;
    line-height: 1.4;
    letter-spacing: 0.12em;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.content__title::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 12px;
    width: 5px;
    height: 41px;
    background-color: #EAF3FA;
}

.content__subtitle {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 21px;
    line-height: 1.4;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    padding-left: 29px;
    position: relative;
}

.content__subtitle::before {
    content: "";
    position: absolute;
    top: 4.5px;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #0265DC;
}

@media screen and (max-width: 1440px) {
    .content__title {
        width: 100%;
        height: 3.681vw;
        padding: 0 2.569vw;
        position: relative;
        font-size: 1.944vw;
        display: flex;
        align-items: center;
        margin-top: 5.556vw;
    }
    
    .content__title::before {
        content: "";
        position: absolute;
        top: 0.417vw;
        left: 0.833vw;
        width: 0.347vw;
        height: 2.847vw;
    }
    
    .content__subtitle {
        font-size: 1.458vw;
        line-height: 1.4;
        letter-spacing: 0.06em;
        display: flex;
        align-items: center;
        padding-left: 2.014vw;
        position: relative;
    }
    
    .content__subtitle::before {
        content: "";
        position: absolute;
        top: 0.312vw;
        left: 0;
        width: 1.389vw;
        height: 1.389vw;
    }
    
}

@media screen and (max-width: 760px) {
    .content__title {
        width: 100%;
        height: 53px;
        padding: 0 37px;
        position: relative;
        font-size: 28px;
        display: flex;
        align-items: center;
        margin-top: 40px;
    }
    
    .content__title::before {
        content: "";
        position: absolute;
        top: 6px;
        left: 12px;
        width: 5px;
        height: 41px;
    }
    
    .content__subtitle {
        font-size: 24px;
        display: flex;
        align-items: center;
        padding-left: 29px;
        position: relative;
    }
    
    .content__subtitle::before {
        content: "";
        position: absolute;
        top: 7px;
        left: 0;
        width: 20px;
        height: 20px;
    }
    
}

.tel__link {
    color: unset;
    text-decoration: none;
    pointer-events: none;
}

@media screen and (max-width: 760px) {

    .tel__link {
        pointer-events: auto;
    }
}