/* ビジョンページ */
.vision_cover{
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-image: url("../img/header_background.png");
    background-size: cover;
    justify-content: end;
    padding:200px;
    box-sizing: border-box;
    font-size: 62.5%;
}

.vision_cover .vision_title{
    color:rgba(246, 244, 244, 1);
    font-size: clamp(24px, calc(2rem + 1vw), 64px);
    font-weight: 700;
    animation: fadeIn 1.5s ease-in-out forwards;
}

.vision_content{
    max-width:1400px;
    margin:0 auto;
}

.vision_content .section{
    display: flex;
    margin: 150px 0px;
    opacity: 0;
    transform: translateY(-50px);
}

.vision_content .section.is_show{
    opacity: 1;
    transition:  0.8s ease-in-out;
    transform: translateY(0);
}

.vision_content .section .text_area{
    width:calc(100%/3*2);
}

.vision_content .section .vision_section_title{
    font-size:24px;
    font-weight: 700;
    margin:30px 0px;
}

.vision_content .section .vision_section_title .red{
    color:rgba(192, 0, 0, 1);
    font-size:32px;
}

.vision_content .section .text_area .detail{
    color:rgba(62, 57, 57, 1);
    font-size: 18px;
}

.vision_content .section .text_area ul{
    list-style-type: none;
    padding:0px;
}

.vision_content .section .text_area ul li{
    padding:10px 0px;
    color:rgba(62, 57, 57, 1);
    font-size: 16px;
}

.vision_content .section .text_area ul li .sub_heading{
    font-weight: 700;
    font-size: 18px;
    color:rgba(192, 0, 0, 1);
}

.vision_content .section .img_area{
    display: flex;
    justify-content: center;
    align-items: center;
    width:calc(100%/3);
}

.vision_content .section:nth-child(3) .img_area{
    width:40%;
}

.vision_content .section .img_area img{
    width: 50%;
}

.vision_content .section:nth-child(3) .img_area img{
    width:70%;
}

.vision_content .section:last-child .img_area img{
    width:45%;
}

.vision_content .section:last-child .img_area img{
    width: 100%;
}

@media screen and (min-width: 821px) and (max-width: 1024px){
    .vision_cover{
        padding:150px;
    }
}

@media screen and (max-width: 820px) {
    .vision_cover{
        padding:50px;
        height:300px;
    }

    .vision_cover .vision_title{
        font-size: 24px;
    }

    .vision_content {
        padding:20px;
    }

    .vision_content .section{
        flex-direction: column-reverse;
        margin:80px 0px;
        position: relative;
    }

    .vision_content .section .img_area{
        width:auto;
        height:100px;
        position: absolute;
        top:0px;
        right:0px;
        align-items: end;
    }

    .vision_content .section .img_area img{
        max-height:100%;
        width: auto;
    }

    .vision_content .section .text_area{
        width:100%;
    }

    .vision_content .section .text_area .vision_section_title{
        margin-right:80px;
        font-size:14px;
    }

    .vision_content .section .text_area .vision_section_title .red{
        font-size:20px;
    }

    .vision_content .section .text_area .detail{
        font-size:14px;
    }

    .vision_content .section .text_area ul li .sub_heading{
        font-size: 14px;
    }

    .vision_content .section .text_area ul li{
        font-size:12px;
    }

    .vision_content .section:last-child .img_area{
        height:auto;
        position:static;
        transform: none;
    }
}
/* ビジョンページ終了 */