/* 共通 */
.swiper {
    height: fit-content !important;
}

.swiper-slide {
    text-align: center;
    color: #555555;
    background-color: #ffffff;
    cursor: pointer;
    height: auto;
}

.swiper-wrapper {
    height: auto;
    background-color: #fafafa;
}

/* カレンダースライダー */
.swip-calendar {
    display: none;
    width: 100%;
    background-color: #FFFFFF;
}

.show-swip-calendar {
    display: flex !important;
}

.calendar-slider {
    height: 50px !important;
    background-color: #ffffff;
}

.before-month {
    border: none;
    border-radius: 50%;
    background-color: #fafafa;
    height: 50px;
    width: 50px;
    position: absolute;
    z-index: 10;
    left: 0;
}

.after-month {
    border: none;
    border-radius: 50%;
    background-color: #fafafa;
    height: 50px;
    width: 50px;
    position: absolute;
    z-index: 10;
    right: 0;
}

.calendar {
    background-color: #FFFFFF;
}

.calendar-slider .swiper-slide {
    margin: 7px 6px;
    background: #fafafa;
    color: #A6A6A6;
    border-radius: 40px;
    text-align: center;
    height: 36px;
    font-size: 15px;
    width: 75px;
}

.calendar-slider .date-text {
    background-color: unset;
    text-align: center;
    padding: 6px 13px;
}

.date-colorchange {
    background-color: #89C750 !important;
}

.calendar-slider .date-colorchange .date-text {
    color: #FFFFFF;
}

/* カテゴリースライダー */
.tab-menu {
    height: 5%;
    background-color: #fafafa;
}

.tab-menu .swiper-slide:hover {
    color: #000;
    text-decoration: underline;
}

.tab-menu .swiper-slide:active {
    color: red !important;
}

.tab-menu .swiper-slide {
    height: 25px;
    width: auto;
    padding: 10px 25px 0px;
    background: #fafafa;
    opacity: 75%;
    color: #A6A6A6;
    font-size: 12px;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 550px) {
    .tab-menu .swiper-slide {
        height: 30px;
        padding: 10px 25px 0px;
        font-size: 12px;
    }
}

.tab-menu .swiper-slide-thumb-active {
    opacity: 1;
    z-index: 1;
    color: #FFFFFF !important;
    border-bottom: 1px solid #528721;
    background-color: #89C750;
}

/* PC カテゴリー一覧 */
.category-title {
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #575555;
}

.category-list {
    font-size: 12px;
    padding-top: 20px;
    position: sticky;
    align-self: baseline;
    text-align: center;
}

@media screen and (max-width: 1100px) {
    .category-list {
        display: none;
    }
}

.category-list .categories {
    padding: 6px;
    background-color: #fff;
}

.categories ul {
    background-color: #fff;
    text-align: left;
    display: flex;
    list-style: none;
}

.categories li {
    display: inline-block;
    margin-bottom: 8px;
    background-color: #fff;
    width: 101px;
}

.categories a {
    margin-bottom: 8px;
    background-color: #fff;
    color: #A6A6A6;
}

.category-list a:active {
    color: red !important;
}

.category-list a.category.active {
    color: #89C750 !important;
    pointer-events: none;
}


/* イベント一覧 */
.tab-content .swiper-slide {
    justify-content: space-between;
    min-height: 120vh !important;
    overflow: scroll !important;
    /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
    -ms-overflow-style: none;
    /*Firefoxへの対応*/
    scrollbar-width: none;
}

/*Google Chrome、Safariへの対応*/
.tab-content .swiper-slide::-webkit-scrollbar {
    display: none;
}

.tab-content .swiper-slide .post {
    width: calc(94% / 3);
    margin: 0 0 28px 0;
    background-color: #ffffff;
}

.tab-content .swiper-slide .post a {
    display: block;
    text-decoration: none;
}

.tab-content .swiper-slide .post img {
    width: 100%;
}

.tab-content .swiper-slide .post h2 {
    padding: 10px;
    color: #555555;
    font-size: 1.14rem;
    font-weight: bold;
}

.tab-content .swiper-slide .post p {
    padding: 0 10px 10px 10px;
    color: #555555;
}

.recommend-event {
    width: 92%;
    margin: auto;
}

.recommend-event-title {
    width: 100%;
    border-bottom: 4px solid #44CD00;
}

/* 一覧範囲 */
.events {
    height: 650px !important;
}

@media screen and (max-width: 1100px) {
    .events {
        height: unset !important;
    }
}

/* 記事ごと */
.event {
    display: flex;
    height: 160px;
    border-bottom: 1px solid #EEEEEE;
    background-color: #ffffff;
    padding: 25px 0 20px 0;
}

@media screen and (max-width: 550px) {
    .event {
        height: 140px;
        width: 100vw;
    }
}

.event:hover .name {
    text-decoration: underline;
}

/* .event {
    position: relative;
    overflow: hidden;
}

.event::before,
.event::after {
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    margin: auto;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
    opacity: 0;
}

.event::before {
    background: rgba(137, 199, 80, 0.8);
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: translate3d(-100%, 0, 0);
    transition: .3s;
    pointer-events: none;
}

.event::after {
    color: #fff;
    content: "Read More";
    font-size: 22px;
    font-weight: bold;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    bottom: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
}

.event:hover::before,
.event:hover::after {
    opacity: 10;
    z-index: 3;
    transform: translate3d(0%, 0, 0);
} */

/* イベント情報 */
.event_img-area {
    background-color: #ffffff;
    width: 175px;
    margin: 0 15px;
    border: 0.7px solid #A6A6A6;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 550px) {
    .event_img-area {
        width: 120px;
        min-width: 107px;
    }
}

.event_img-box {
    max-height: 157px;
    overflow: hidden;
}

.event_img {
    width: 100%;
}

.event_text-box {
    background-color: #ffffff;
    text-decoration: none;
    padding-right: 15px;
    width: 79%;
}

@media screen and (max-width: 550px) {
    .event_text-box {
        width: calc(100vw - 130px);
        min-width: 200;
        padding-right: 20px;
    }
}

.category_name {
    background-color: #89C750 !important;
    color: #FFFFFF;
    width: fit-content;
    padding: 3px 8px;
    font-size: 11px;
    letter-spacing: 0.7;
    font-family: 'Noto Sans JP,Regular';
    display: inline-block;
    float: left;
    margin-right: 10px;
}

@media screen and (max-width: 550px) {
    .category_name {
        font-size: 12px;
        letter-spacing: 0.6;
        padding: 1px 8px;
    }
}

.field {
    text-align: left;
    background-color: #ffffff;
    display: flex;
    width: 100%;
}

.field p {
    margin-top: 3px;
    background-color: #ffffff;
    color: #A6A6A6;
    font-size: 13px;
    font-family: 'Roboto,Regular';
    letter-spacing: 0.7;
}

.field i {
    margin-top: 5px;
    margin-right: 5px;
    background-color: #FFFFFF;
}

a,
a:hover {
    color: inherit;
}

@media screen and (max-width: 550px) {
    .field p {
        font-size: 12px;
    }
}

.name {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
    text-align: left;
    color: black !important;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 15.5px !important;
    font-weight: bold;
    font-family: 'Noto Sans JP' !important;
    letter-spacing: 0.9 !important;
}

@media screen and (max-width: 550px) {
    .name {
        font-size: 13px !important;
    }
}

.eventDate,
.address {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100;
}

.tag {
    float: left;
    background-color: #ffffff;
    margin-top: 12px;
    color: #89C750;
    text-decoration: none;
    padding-right: 10px;
    font-size: 13px;
    font-family: 'Noto Sans JP,Regular';
    letter-spacing: 0.7;
    z-index: 1;
}

.tag:hover {
    text-decoration: underline;
}

.tag:active {
    color: red;
}

.tag i {
    background-color: #FFFFFF;
}

@media screen and (max-width: 550px) {
    .tag {
        margin-top: 15px;
        font-size: 12px;
        letter-spacing: 0.55;
    }
}

.event tr {
    display: block;
    text-align: left;
    background-color: #ffffff;
}

/* イベントない時 */
.non_event {
    margin-top: 2%;
    overflow: hidden;
    background-color: #ffffff;
}

.head_fixed {
    top: 0;
    left: 0;
    z-index: 10;
    position: sticky;
}

/* ページトップ */
.pagetop {
    font-size: 77%;
    z-index: 9;
    background-color: unset;
    bottom: 14px;
    position: absolute;
    right: 10px;
}

@media screen and (max-width: 1100px) {
    .pagetop {
        position: fixed;
    }
}

.pagetop img {
    background-color: unset;
}

.today_title {
    font-size: 1.8rem;
    padding: 7px 0;
    font-weight: bold;
    text-align: center;
}

.next_load {
    font-size: 1rem;
    font-weight: 700;
    line-height: 0.5;
    position: relative;
    display: inline-block;
    padding: 1rem 1rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    color: #212529;
    border-radius: 0;
    margin: 5px;
}

.next_load:before,
.next_load:after {
    position: absolute;
    width: 100%;
    height: 2px;
    content: '';
    -webkit-transition: all .3s;
    transition: all .3s;
    background: #000;
}

.next_load:before {
    top: 0;
    left: 0;
}

.next_load:after {
    right: 0;
    bottom: 0;
}

.next_load:hover:before,
.next_load:hover:after {
    width: 0;
}