:root :where(.is-layout-constrained) > :first-child{
    margin-block-start: unset;
}
.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){
    max-width: unset ;
    margin-left: unset ;
    margin-right: unset ;
}
:root :where(.is-layout-constrained) > * {
    margin-block-start: unset ;
    margin-block-end: unset ;
}
.has-global-padding {
    padding-right: unset !important;
    padding-left: unset !important;
}
:where(.wp-site-blocks *:focus){
    outline: none;
}


header{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 16px;
    border-bottom: 1px solid #8cc14d;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
    z-index: 999;
}
.header_link_a{
    display: inline-block;
    font-size: 16px;
    color: #2196f3;
    margin-left: 25px;
    margin-top: 2px;
}
header a:focus{
    outline: none;
}
header .logoImg{
    width: 300px;
}
header a{
    transition: .3s;
}
header a:hover{
    opacity: .7;
}

.container_lp{
    margin: 0 auto;
    margin-top: 115px;
    width: 100%;
    max-width: 980px;
    padding: 80px 20px;
    font-family: "Noto Sans JP", sans-serif;
    box-sizing: border-box;
}
.container_lp ul.listBox{
    display: flex;
    gap: 80px 32px;
    flex-wrap: wrap;
}
.container_lp ul.listBox li{
    width: calc((100% - 32px) / 2);
}
.container_lp  ul.listBox .imgBox{
    margin-bottom: 16px;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 2px 2px 12px 0 rgba(36, 24, 6, .06);
}
.container_lp  ul.listBox .imgBox img{
    width: 100%;
    transition: 0.5s;
}
.container_lp ul.listBox a{
        color: #111111;
    text-decoration: none;
}
.container_lp ul.listBox a:hover img{
    transform: scale(1.05);
}
.container_lp  ul.listBox h2{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.5;
}
.container_lp  ul.listBox .date{
    opacity: .8;
    font-size: 14px;
}
.container_lp  ul.pagingBox{
    margin-top: 80px;
    text-align: center;
}
.container_lp  ul.pagingBox li{
    display: inline-block;
}
.container_lp  ul.pagingBox li + li{
    margin-left: 40px;
}
.container_lp  ul.pagingBox button{
    border-radius: 50%;
    border: 1px solid #4e4e4e;
    width: 50px;
    height: 50px;
    color: #4e4e4e;
    font-size: 16px;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
}
.container_lp  ul.pagingBox button:hover{
    opacity: .8;
    color: #fff;
    border: none;
    background-color: #F44336;
}
.container_lp  ul.pagingBox button:disabled{
       background: #e2e2e2;
    border: none;
    color: #c6c6c6;
    cursor: default;
     pointer-events: none
}

footer{
    text-align: center;
    padding: 24px;
    box-sizing: border-box;
    background-color: #8cc14d;
    color: #fff;
    font-size: 14px;
}


@media screen and (max-width: 768px) {
    .container_lp  ul.listBox li{
        width: calc((100% - 32px));
    }
}
@media screen and (max-width: 500px) {
    header{
        align-items: center;
        padding-bottom: 10px;
        height: 85px;
    }
    header .logoImg{
        width: 200px;
    }
    .header_link_a{
	    margin-top: -5px;
	}
    .container_lp{
            margin-top: 85px;
    padding: 32px 20px;
    }
    .container_lp ul.listBox{
            justify-content: center;
    }
}