@charset "utf-8";

/* section1 */
.section1.mobile{
    display: none;
}

.section1{
    margin-top: 5.20vw;
    width: 100vw;
    height: 20.60vw;
    position: relative;
    display: flex;
    flex-direction: column;
}
.section1 .bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.section1 .bg figure{
    width: 100%;
    height: 100%;
}
.section1 .bg figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section1 .text{
    margin-top: 3.5vw;
    position: relative;
    text-align: center;
    color: #fff
}
.section1 .text p{
    font-size: 0.93vw;
    font-weight: 700;
    letter-spacing: 1.11vw;
}
.section1 .text h1{
    font-family: 'jalnan';
    font-size: 2.08vw;
    margin-top: 1.56vw;
    padding-bottom: 2.08vw;
    margin-bottom: 2.08vw;
    position: relative;
    font-weight: 700;
}
.section1 .text h1::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 7.81vw;
    height: 1px;
    background-color: #fff;
}
.section1 .text span{
    font-size: 1.04vw;
    line-height: 1.5;
}
.section1 .menu{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 53.125vw;
    height: 2.60vw;
}
.section1 .menu ul{
    width: 100%;
    height: 100%;
    display: flex;
}
.section1 .menu ul li{
    width: calc(100% / 4);
    height: 100%;
}
.section1 .menu ul li a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #153F91;
    font-size: 1.04vw;
    font-weight: 600;
    font-family: 'jalnan';
    border-radius: 10px;

}
.section1 .menu ul li a.on{
    background-color: #153F91;
    color: #fff;
}
/* section1 */



/* section2 */
.section2.mobile{
    display: none;
}

.section2{
    width: 85.93vw;
    height: 26.04vw;
    border-radius: 20px;
    overflow: hidden;
    margin: 5.20vw auto;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 5.20vw 7.81vw;
}
.section2 .bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}
.section2 .bg figure{
    width: 100%;
    height: 100%;
}
.section2 .bg figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section2 .up{
    position: relative;
    text-align: right;
}
.section2 .up h1{
    font-family: 'jalnan';
    font-size: 3.125vw;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.04vw;
}
.section2 .up p{
    font-size: 1.04vw;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 800;
    letter-spacing: 0.104vw;
}
.section2 .down{
    position: relative;
    display: flex;
    align-items: flex-end;
}
.section2 .down p{
    color: #fff;
    width: max-content;
    font-size: 1.56vw;
    letter-spacing: 0.15vw;
    line-height: 1.5;
}
.section2 .down p span{
    font-weight: 700
}
/* section2 */



@media screen and (max-width:500px) {
        /* section1 */
        .section1.pc{
            display: none;
        }
        .section1.mobile{
            display: flex;
        }
    
        .section1{
            margin-top: 50px;
            height: 80vw;
        }
        .section1 .text{
            margin-top: 20.5vw;
        }
        .section1 .menu ul li a{
            font-size: 2.3vw;
        }
        .section1 .menu{
            width: 100%;
            height: 35px;
        }
        .section1 .text p{
            font-size: 2.4vw;
            letter-spacing: 1.92vw;
        }
        .section1 .text h1{
            font-size: 6vw;
            margin-top: 3vw;
            padding-bottom: 4vw;
            margin-bottom: 4vw;
        }
        .section1 .text h1::after{
            width: 20vw;
        }
        .section1 .text span{
            font-size: 3.2vw;
        }
        /* section1 */
    
    
        /* section2 */
        .section2.pc{
            display: none;
        }
        .section2.mobile{
            display: flex;
        }

        .section2{
            width: calc(100% - 40px);
            height: max-content;            
            padding: 100px 0;
            flex-direction: column;
            align-items: center;
            margin: 0 auto;
            margin-top: 100px;

        }
        .section2 .up{
            order: -1;
            margin-bottom: 8vw;
            z-index: 1;
            text-align: center;
        }
        .section2 .up h1{
            font-size: 8vw;
            margin-bottom: 6vw;
        }
        .section2 .up p{
            font-size: 3.2vw;
            letter-spacing: 0.32vw;
        }
    
    
        .section2 .down p{
            text-align: center;
            font-size: 3.6vw;
            line-height: 2;
        }
        .section2 .down{
            align-items: flex-start;
            height: max-content;
        }
        /* section2 */
    
}