﻿/*ヘッダー スライド*/
.header_slide{
/*    width: 1296px;   */
    width: 100%;   
    display: block;
}
.header_slide img{
/*    max-width: 1296px;*/
    max-width: 100%;
}
.header_slide{}
.header_logo{
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    z-index: 10;
}
.main_imgBox {
    height: 70vh;
    overflow: hidden;
    position: relative;
    left: 0;
    top: 0;
}
.main_img {
    z-index:1;
    opacity: 0;
    width: 100%;
    height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: anime 42s 0s infinite;
    animation: anime 42s 0s infinite;
}
.main_img:nth-of-type(2){
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}
.main_img:nth-of-type(3){
    -webkit-animation-delay: 12s;
    animation-delay: 12s;
}
.main_img:nth-of-type(4){
    -webkit-animation-delay: 18s;
    animation-delay: 18s;
}
.main_img:nth-of-type(5){
    -webkit-animation-delay: 24s;
    animation-delay: 24s;
}
.main_img:nth-of-type(6) {
    -webkit-animation-delay: 30s;
    animation-delay: 30s;
}
.main_img:nth-of-type(7) {
    -webkit-animation-delay: 36s;
    animation-delay: 36s;
}
.main_img:nth-of-type(8) {
    -webkit-animation-delay: 42s;
    animation-delay: 42s;
}
@keyframes anime {
    0% {opacity: 0;}
    8% {opacity: 1;}
    17% {opacity: 1;}
    25% {
        opacity: 0;
        transform: scale(1.2) ;
        z-index: 9;
    }
    100% {opacity: 0}
}
/*ヘッダー スライド*/
/*メイン*/
.pick_up_wrap{
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pick_up_wrap p{
    font-family: 'Noto Sans JP', sans-serif;
}
.eve_news{
    width: 960px;
    max-width: 100%;
}
.eve_news h1{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 2em;
	text-align:center;
    padding: 2rem 0 3rem 0;
}
.eve_news h4{
    width:20%;
    height: 3rem;
    display: table;
    padding-bottom: 50px;
}
.eve_news h4 div{
    background: rgba(255,255,255,0.6);
    border: solid 1px #000000;
    font-family: 'Noto Sans JP', sans-serif;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.eve_con{
    /* width: 75%; */
    display: flex;
    flex-direction:row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 0 5px;
}
/*
.eve_con_01{order: 1;}
.eve_con_02{order: 2;}
.eve_con_03{order: 3;}
*/
.eve_item{
/*    width: 48%;*/
    margin: 0 0 50px 0;
    text-align: left;
    display: flex;
/*    flex-wrap: wrap;*/
    align-items:flex-end;
    justify-content:flex-end;
    border: solid 1px #000000;
    background: rgba(255,255,255,0.6);
	box-shadow:2px 2px 2px 0 rgba(0,0,0,0.4);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.7rem;
}
.eve_index{
}
.eve_thumb{
/*    width: 82%;*/
    width:272px;
    height:191px;
    object-fit: cover;
    background-color: #ffffff;
    margin: 3% 0 0 3%;
    padding: 0.5%;
    text-align: center;
	box-shadow:2px 2px 5px 0 rgba(0,0,0, .4);
}
.eve_date{
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    margin: 3% 0 0 5%;
}
.eve_comment{
    height: 3rem;
    margin: 0 0 0 5%;
}
.eve_to_syosai{
/*    width:10%;*/
    height: 3rem;
    margin: 0;
    margin-top: 14.7rem;
    padding: 0 0.3rem 0 0.3rem;
    background-color: #dddddd;
    display: table;
}
.eve_to_syosai p{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
/*メイン*/
/*画面の横幅が640pxまで*/
@media screen and (max-width: 768px){
    .pick_up div p{
        display: block;
        font-size: 0.9em;
    }
    .eve_news h1{
        font-size: 1.5m;
    }
    .eve_con {
        width: 85%;
        margin: auto;
    }
    .eve_news h4{
        width: 30%;
        margin: auto;
    }
}
/*画面の横幅が640pxまで*/
