.ay_visual {
    width: 100%;
    height: calc(100vh - 100px);
    /* height: 100vh; */

    /* background: var(--color-point3); */
    color: var(--color-light1);
    overflow: hidden;
    position: relative;
}

.ay_visual_bg {
    width: 100%;
    height: 100%;

    position: absolute;
}

.ay_visual_bg::after {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--color-dim);
    position: absolute;
    top: 0;
    left: 0;
}

.ay_visual_bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ay_visual_bg .mo {
    display: none;
}

.ay_visual_desc {
    width: 100%;
    display: grid;
    gap: 30px;

    position: relative;
    z-index: 2;
    margin-top: 186px;
}

.ay_visual_tit {
    font-size: 58px;
    font-weight: 500;
}

.ay_visual_tit span {
    font-weight: 700;
}

.ay_visual_txt {
    font-size: 24px;
    font-weight: 500;
}

@media screen and (max-width:768px) {
    .ay_visual_bg .pc {
        display: none;
    }
    
    .ay_visual_bg .mo {
        display: block;
    }

    .ay_visual_desc {
        gap: 16px;
        padding: 40px 0 90px;
    }

    .ay_visual_tit {
        font-size: 32px;
    }

    .ay_visual_txt {
        font-size: 18px;
    }
}




.ay_section01_content {
    display: grid;
    gap: 40px;
}

.ay_section01_desc_group {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.ay_section01_img_group {
    width: 80%;
    display: flex;
    gap: 30px;

    margin-left: auto;
}

.ay_section01_img {
    width: 100%;
    height: 368px;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ay_section01_img.img01 {
    margin-top: 50px;

    background-image: url("../../assets/img/main/section1_bg01.png");
}

.ay_section01_img.img02 {
    background-image: url("../../assets/img/main/section1_bg02.jpg");
}

@media screen and (max-width:1080px) {
    .ay_section01_desc_group {
        display: grid;
    }
}

@media screen and (max-width:768px) {
    .ay_section01_img_group {
        width: 100%;
        gap: 15px;
    }

    .ay_section01_img {
        height: 210px;
    }
}







.ay_section02 {
    background-image: url(../../assets/img/main/section2_bg07.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    color: var(--color-light1);
}

.ay_section02_content {
    display: grid;
    gap: 40px;
}

.ay_section02 .com_desc_stit {
    color: var(--color-light1);
}

.ay_section02_item_group {
    width: 100%;
    display: flex;
    gap: 20px;
}

.ay_section02_item_flex {
    width: 100%;
    display: flex;
    gap: 20px;
}

.ay_section02_item {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    width: 100%;
    height: 350px;
    
    outline: 3px solid transparent;
    border-radius: 100px;
    overflow: hidden;

    position: relative;
}

.ay_section02_item:after {
    content: '';

    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;

    width: 100%;
    height: 80%;

    background-image: linear-gradient(transparent, #000);
}

.ay_section02_item:hover {
    outline: 3px solid var(--color-light1);
}

.ay_section02_item:nth-child(even) {
    margin-top: 102px;
}

.ay_section02_item.one {
    background-image: url(../../assets/img/main/section2_bg01.png);
}

.ay_section02_item.two {
    background-image: url(../../assets/img/main/section2_bg02.png);
}

.ay_section02_item.three {
    background-image: url(../../assets/img/main/section2_bg03.png);
}

.ay_section02_item.four {
    background-image: url(../../assets/img/main/section2_bg04.png);
}

.ay_section02_item.five {
    background-image: url(../../assets/img/main/section2_bg05.png);
}

.ay_section02_item.six {
    background-image: url(../../assets/img/main/section2_bg06.png);
}

.ay_section02_item_desc {
    display: grid;
    gap: 24px;

    position: absolute;
    bottom: 58px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;

    padding: 0 12px;
}

.ay_section02_item_txt {
    font-size: 22px;
    font-weight: 600;

    white-space: nowrap;
}

.ay_section02_item_arrow {
    width: 44px;
    height: 16px;

    background-image: url(../../assets/img/com/btn_long_arrow_right_white.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    margin: auto;

    visibility: hidden;
	opacity: 0;
	transition: all ease-in-out 300ms;
}

.ay_section02_item:hover .ay_section02_item_arrow{
    visibility: visible;
	opacity: 1;
}

@media screen and (max-width:1200px) {
    .ay_section02_item_txt {
        font-size: 18px;
    }
}

@media screen and (max-width:1080px) {
    .ay_section02_item_group {
        display: grid;
    }

    .ay_section02_item {
        height: 290px;
    }

    .ay_section02_item:nth-child(even) {
        margin-top: 0;
    }
}






.ay_section03_content {
    display: grid;
    gap: 40px;
}

.ay_section03_vgd_group {
    display: flex;
    align-items: start;
    gap: 80px;
}

.ay_section03_video {
    width: 40%;
    display: grid;
    gap: 20px;
}

.ay_section03_video_thum {
    border-radius: 20px;
    overflow: hidden;
    
    position: relative;
}

.ay_section03_video_thum:after {
    content: '';

    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    background: var(--color-dim);
}

.ay_section03_video_play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-light1);

    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50% , -50%);
}

.ay_section03_video_play::after {
    content: '';

    width: 10px;
    height: 10px;
    background-image: url(../../assets/img/com/ico_play_black.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    z-index: 2;
    /* backdrop-filter: ; */
}

.ay_section03_gd_group {
    width: 60%;
    display: grid;
    gap: 30px;
}

.ay_section03_gallery {
    display: grid;
    gap: 20px;
}

.ay_section03_gallery_group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ay_section03_gallery_item {
    width: 100%;
    display: grid;
    gap: 12px;
}

.ay_section03_gallery_thum {
    width: 100%;
    max-height: 120px;

/*    background: var(--color-point1);*/
    border-radius: 10px;
}

.ay_section03_gallery_tit {
    font-size: 15px;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.ay_section03_download {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    font-size: 16px;
}

.ay_section03_tit {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
}

.ay_section03_download_group {
    display: grid;
    gap: 20px;
}

@media screen and (max-width:1358px) {
    .ay_section03_vgd_group {
        display: grid;
        gap: 30px;
    }

    .ay_section03_video {
        width: 100%;
    }

    .ay_section03_gd_group {
        width: 100%;
        gap: 30px;
    }
}

@media screen and (max-width:768px) {
    .ay_section03_download {
        display: grid;
    }

    .ay_section03_video_thum::before {
        width: 60px;
        height: 60px;
    }
}

@media screen and (max-width:500px) {
    .ay_section03_gallery_item:last-child {
        display: none;
    }
}





.ay_section04 {
    background-image: url("../../assets/img/main/section04_bg01.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ay_section04 .ay_section04_content {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.ay_section04 .com_desc {
    color: var(--color-light1);
}

.ay_section04 .com_desc_stit {
    color: var(--color-light1);
}

@media screen and (max-width:768px) {
    .ay_section04 .ay_section04_content {
        display: grid;
    }
}
