#top h2 {
    font-size: 27px;
    letter-spacing: 4px;
}
#top .ttl p {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    width: fit-content;
    font-size: 15px;
    letter-spacing: 1.5px;
    color: #fff;
}

@media screen and (max-width: 768px) {
    #top h2 {
        font-size: 20px;
        letter-spacing: 2px;
    }
}

#mv {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    overflow: hidden;
}
#mv h1 {
    width: 100%;
    position: absolute;
    top: 36%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    color: #fff;
    font-family: "Jost", sans-serif;
    font-size: 90px;
}
#mv .left, 
#mv .right {
    width: 50%;
    height: 100vh;
}
#mv .swiper {
    width: 100%;
    height: 100vh;
}
#mv .swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}
#mv .swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    transition: transform 2s ease;
}
#mv .swiper .swiper-slide::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(17, 57, 97, 0.4);
}
#mv .swiper-slide-active img {
    transform: scale(1.05); /* ズーム倍率 */
}
#mv .swiper-slide .block {
    position: absolute;
    z-index: 10;
    opacity: 0;
    color: #fff;
    left: 60px;
    margin-right: 60px;
    transition: 2s;
}
#mv .left .swiper-slide .block {
    bottom: 135px;
}
#mv .right .swiper-slide .block {
    bottom: 95px;
}
#mv .swiper-slide-active .block {
    opacity: 1;
}
#mv .left .swiper-slide-active .block {
    transform: translateY(20px);
}
#mv .right .swiper-slide-active .block {
    transform: translateY(-20px);
}
#mv .swiper-slide .block h2 {
    margin-bottom: 5px;
    letter-spacing: 1.5px;
}
#mv .swiper-slide .block p {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
#mv .swiper-slide .block .gradi_link {
    width: 200px;
    font-size: 13px;
    font-weight: 600;
}
#mv .pagination-container {
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 20px; /* ページネーションの垂直位置 */
    z-index: 10;
    gap: 20px;
}
#mv .swiper-pagination {
    position: relative;
    display: flex;
}
#mv .swiper-pagination-sp {
    position: relative;
    display: none;
}
.swiper-pagination-vertical.swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 0);
}
.prev-btn, .next-btn {
    font-family: "Jost", sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
#mv .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0 5px;
    background-color: #fff;
    opacity: 1;
}
#mv .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
    background: linear-gradient(90deg, #113961, #004FAD);
    border: 1px solid #fff;
}
@media screen and (max-width: 768px) {
    #mv {
        height: calc(100vh - 50px);
        border-bottom: 1px solid #004FAD;
        display: block;
    }
    #mv h1 {
        width: 100%;
        position: absolute;
        top: 36%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 10;
        color: #fff;
        font-family: "Jost", sans-serif;
        font-size: 55px;
    }
    #mv .sp {
        width: 100%;
        height: calc(100vh - 60px);
    }
    #mv .left, 
    #mv .right {
        display: none;
    }
    #mv .swiper-slide .block {
        left: 0px;
        margin-right: 40px;
    }
    #mv .sp .swiper-slide .block {
        bottom: 115px;
    }
    #mv .swiper-slide-active .block {
        opacity: 1;
    }
    #mv .sp .swiper-slide-active .block {
        transform: translate(30px, 0);
    }
    #mv .sp .swiper-slide .block h2 {
        font-size: 22px;
        margin-bottom: 18px;
    }
    #mv .sp .swiper-slide .block p {
        font-size: 12px;
        margin-bottom: 30px;
    }
    #mv .swiper-slide .block .gradi_link {
        width: 170px;
        font-size: 12px;
        padding: 10px 0;
    }
    #mv .pagination-container {
        width: fit-content;
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
        gap: 10px;
    }
    #mv .swiper-pagination {
        display: none;
    }
    #mv .swiper-pagination-sp {
        display: flex;
        justify-content: center;
        bottom: 0;
    }
    .prev-btn, .next-btn {
        margin-bottom: 0;
    }
}

#top-concept {
    position: relative;
    text-align: center;
    padding-top: 155px;
}
#top-concept .block h2 {
    line-height: 2.1;
    margin-bottom: 70px;
}
#top-concept .block p {
    font-size: 13px;
    line-height: 2.1;
    font-weight: 600;
    letter-spacing: 1.5px;
} 
#top-concept .mark_v {
    top: 0;
    right: 60px;
}
#top-concept .mark_h {
    top: 210px;
    right: 0;
}
@media screen and (max-width: 768px) {
    #top-concept {
        padding-top: 125px;
    }
    #top-concept .block h2 {
        font-size: 18px;
        margin-bottom: 45px;
    }
    #top-concept .block p {
        font-size: 12px;
        line-height: 2.5;
        font-weight: 600;
        letter-spacing: 1.5px;
    } 
    #top-concept .mark_v {
        top: 0;
        right: 110px;
    }
    #top-concept .mark_h {
        top: 40px;
        right: 0;
    }
}

#top-service {
    padding-top: 80px;
}
#top-service .ttl {
    text-align: center;
    margin-bottom: 65px;
}
#top-service .ttl h2 {
    margin-bottom: 5px;
}
#top-service .ttl p {
    margin: auto;
    padding: 3px 40px;
}
#top-service .block {
    width: 85%;
    max-width: 1090px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#top-service .block .item {
    position: relative;
    width: 48.6%;
    margin-bottom: 30px;
    cursor: pointer;
    overflow: hidden;
    transform: 2s;
}
#top-service .block .item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(17, 57, 97, 0.4);
}
#top-service .block .item:hover:after {
    content: "";
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(17, 57, 97, 0.4);
    border: 15px solid #113961;
    opacity: 0.6;
    box-sizing: border-box;
}
#top-service .block .item img {
    width: 100%;
    aspect-ratio: 53 / 36;
    object-fit: cover;
    transition: transform .5s ease;
}
#top-service .block .item:hover img {
    transform: scale(1.05); /* ズーム倍率 */
}
#top-service .block .item:last-child {
    width: 100%;
}
#top-service .block .item:last-child img {
    aspect-ratio: 218 / 73;
}
#top-service .block .item .txt {
    position: absolute;
    z-index: 99;
    pointer-events: none;
    left: 15px;
    bottom: 20px;
    color: #fff;
    padding-right: 30px;
}
#top-service .block .item .txt h3 {
    letter-spacing: 4px;
    font-size: 27px;
    margin-bottom: 15px;
}
#top-service .block .item .txt p {
    font-size: 13px;
    line-height: 2.1;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-align: justify;
}
#top-service .block .item .txt.vr {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 35px;
    padding-left: 30px;
    top: 0;
    left: 0;
}
#top-service .block .item .txt.vr .sub_ttl {
    margin-bottom: 10px;
}
#top-service .block .item .txt.vr a {
    display: block;
    width: fit-content;
    padding: 7.5px 35px;
    border: 1px solid #fff;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
    #top-service {
        padding-top: 60px;
    }
    #top-service .block {
        width: 100%;
        padding: 0 20px;
    }
    #top-service .ttl {
        margin-bottom: 37px;
    }
    #top-service .ttl h2 {
        margin-bottom: 15px;
        font-size: 22px;
    }
    #top-service .ttl p {
        font-size: 12px;
        padding: 3px 35px;
    }
    #top-service .block .item {
        width: 100%;
        margin-bottom: 20px;
    }
    #top-service .block .item .txt {
        padding-right: 15px;
    }
    #top-service .block .item .txt.vr {
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
        bottom: 0;
    }
    #top-service .block .item .txt.vr .top {
        padding: 0 15px 15px 15px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 100%;
    }
    #top-service .block .item .txt h3 {
        letter-spacing: 2px;
        font-size: 22px;
        margin-bottom: 10px;
    }
    #top-service .block .item .txt.vr .sub_ttl {
        margin-bottom: 20px;
        line-height: 1;
    }
    #top-service .block .item .txt p {
        font-size: 12px;
        line-height: 1.6;
    }
    #top-service .block .item:last-child img {
        aspect-ratio: 35 / 33;
    }
    #top-service .block .item .txt.vr .bottom {
        padding: 17px 0;
        background: linear-gradient(90deg, #113961, #004FAD);
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #top-service .block .item .txt.vr .bottom a {
        padding: 7.5px 38px;
        margin-bottom: 10px;
        font-size: 12px;
    }
    #top-service .block .item .txt.vr .bottom p {
        letter-spacing: 0;
    }
}

#top-news {
    position: relative;
    padding-top: 105px;
    padding-bottom: 120px;
}
#top-news .block {
    width: 85%;
    max-width: 1090px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    padding: 0 9.1%;
}
#top-news .block .ttl h2 {
    margin-bottom: 10px;
}
#top-news .block .ttl p {
    padding: 3px 20px;
}
#top-news .block .post-list {
    width: 76.4%;
    margin-top: 40px;
}
#top-news .block .post-list li {
    padding-bottom: 30px;
    margin-bottom: 25px;
    border-bottom: 1px solid #113961;
}
#top-news .block .post-list li a {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
#top-news .block .post-list li a .txt p {
    font-size: 12px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.5px;
}
#top-news .block .post-list li a .txt h3 {
    font-size: 16px;
    letter-spacing: 1px;
}
#top-news .block .post-list li a .nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: #113961;
    border: 1px solid #113961;
}
#top-news .block .post-list li a .nav img {
    width: 30px;
}
#top-news .nav_link {
    display: block;
    width: fit-content;
    margin: auto;
    padding: 15px 50px;
    border: 1px solid #113961;
    color: #113961;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
#top-news .mark_v {
    bottom: 0;
    left: 60px;
}
#top-news .mark_h {
    bottom: 210px;
    left: 0;
}
@media screen and (max-width: 768px) {
    #top-news {
        padding-top: 50px;
        padding-bottom: 95px;
    }
    #top-news .block {
        width: 100%;
        padding: 0 30px;
        display: block;
        margin-bottom: 50px;
    }
    #top-news .block .ttl h2 {
        font-size: 22px;
    }
    #top-news .block .ttl p {
        font-size: 12px;
    }
    #top-news .block .post-list {
        width: 100%;
        margin-top: 20px;
    }
    #top-news .block .post-list li {
        padding-bottom: 15px;
        margin-bottom: 25px;
    }
    #top-news .block .post-list li a .txt h3 {
        font-size: 12px;
        letter-spacing: 1px;
    }
    #top-news .block .post-list li a .txt p {
        font-size: 10px;
        letter-spacing: 0;
    }
    #top-news .nav_link {
        padding: 10px 35px;
        margin-bottom: 20px;
    }
    #top-news .mark_v {
        left: 110px;
    }
    #top-news .mark_h {
        bottom: 40px;
    }
}

#top-garally {
    display: flex;
    justify-content: space-between;
}
#top-garally .item {
    width: 33.3%;
}
#top-garally .item img {
    width: 100%;
    aspect-ratio: 43 / 38;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
    #top-garally {
        flex-wrap: wrap;
    }
    #top-garally .item {
        width: 49.7%;
    }
    #top-garally .item:first-child {
        width: 100%;
        margin-bottom: 2px;
    }
    #top-garally .item img {
        aspect-ratio: 19 / 15;
    }
    #top-garally .item:first-child img {
        aspect-ratio: 39 / 20;
    }
}