@charset "UTF-8";
/* CSS Document */
* {
    min-height: 0vw;
}
.KVBlock{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
}
.KVBlock h1{
    border: none;
    width: 100%;
    height: auto;
    aspect-ratio: 1000/800;
    background: url("../images/LP/KV.jpg") no-repeat center center;
    background-size: contain;
    text-indent: -999em;
    z-index: -1;
}
.KVBlock h1::after{
    display: none;
}
.KVBlock ul{
    position: absolute;
    list-style: none;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.KVBlock ul li{
    position: absolute;
    display: block;
}
.KVBlock ul li a{
    width: 100%;
    height: 100%;
    display: flex;
    text-indent: -999em;
}
.KVBlock ul li:nth-of-type(1){
    width: 22.5%;
    height: 28.125%;
    left:2.85%;
    top:33%;
}
.KVBlock ul li:nth-of-type(2){
    width: 22.5%;
    height: 28.125%;
    left:22.46%;
    top:65%;
}
.KVBlock ul li:nth-of-type(3){
    width: 20%;
    height: 25%;
    left:38.3656%;
    top:34.6437%;
}
.KVBlock ul li:nth-of-type(4){
    width: 20%;
    height: 25%;
    left:50.0748%;
    top:67%;
}
.KVBlock ul li:nth-of-type(5){
    width: 22.5%;
    height: 28.125%;
    left:73.5481%;
    top:32%;
}
.KVBlock ul li:nth-of-type(6){
    width: 20%;
    height: 25%;
    left:76.2784%;
    top:64%;
}
.AboutBlock{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:1em;
    position: relative;
    margin-top: 2em;
}
.AboutBlock figure{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45%;
    height: auto;
    aspect-ratio: 1/1;
    position: relative;
}
.AboutBlock figure img{
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
}
.AboutBlock .TextBlock{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-flow: column;
    width: calc( 55% - 2em);
}
.AboutBlock .TextBlock h2{
    border: none;
    margin: 0;
    padding: 0;
    font-size: 200%;
    line-height: 125%;
    font-weight: 700;
    color: #047149;
}
.AboutBlock .TextBlock h2 span{
    font-size: 60%;
    white-space: nowrap;
}
.AboutBlock .TextBlock h3{
    border: none;
    margin: 0.5em 0 0 !important;
    padding: 0 !important;
    font-size: 125%;
    line-height: 125%;
    font-weight: 700;
}
.AboutBlock .TextBlock .LinkText a{
    text-decoration: none;
    position: relative;
    padding-left: 1em;
    background: url("../images/global/icn_arrow_r_g.png") no-repeat left center;
    background-size: 1em;
}
/*タブレット*/
@media screen and (min-width:768px) and (max-width:999px) {
}
/*スマホ*/
@media screen and (max-width: 767px) {
	@media screen and (max-aspect-ratio: 11/10) {
	/* 縦向きの場合のスタイル */
		.AboutBlock{
            justify-content: center;
            align-items: center;
            flex-flow: column;
        }
        .AboutBlock figure{
            order: 1;
            width: 80%;
            height: auto;
            aspect-ratio: 1/1;
        }
        .AboutBlock .TextBlock{
            order: 2;
            width: 80%;
        }
	}
}