/* ----------------------------------------------------------------------
  共通
---------------------------------------------------------------------- */
/* ------------------------------------------
  sec_page_ttl
------------------------------------------ */
.sec_page_ttl .container {
    width: 90%;
    max-width: 1210px;
    margin: 0 auto;
    padding: 0;
}

.sec_page_ttl .page_ttl_wrap {
    border-radius: 32px;
    border: 2px solid #000;
}

.sec_page_ttl .page_ttl_wrap .inner {
    border-radius: 30px;
    text-align: center;
}

.sec_page_ttl .page_ttl_wrap .inner.event {
    border: 8px solid #4DAECB;
    padding: 15px 0 12px;
}
.sec_page_ttl .page_ttl_wrap .inner.now {
    border: 8px solid #9ED0BF;
    padding: 32px 0;
}
.sec_page_ttl .page_ttl_wrap .inner.news {
    padding: 40px 0;
}

.sec_page_ttl .page_ttl_wrap .inner .page_ttl {
    font-family: "Shippori Mincho", sans-serif;
    font-size: 2.187rem;
    line-height: calc(42/35);
}

.sec_page_ttl .page_ttl_wrap .inner .sub_ttl {
    margin-top: 10px;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: calc(27/18);
}

.sec_ttl_wrap.deco {
    position: relative;
}

.sec_ttl_wrap.deco::before {
    display: block;
    content: "";
    background-color: #000000;
    height: 1px;
    width: 100%;
    top: 50%;
    left: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

.sec_ttl_wrap.deco .sec_ttl {
    display: table;
    margin: 0 auto;
    padding: 0 25px;
    background-color: #fff;
    font-family: "Shippori Mincho", sans-serif;
    font-weight: normal;
    font-size: 1.125rem;
    color: #4daecb;
}


@media screen and (max-width: 767px) {
    .sec_page_ttl .container {
        width: calc(100% - 30px);
    }
    
    .sec_page_ttl .page_ttl_wrap {
        border-radius: 30px;
        border: 1px solid #000;
    }
    
    .sec_page_ttl .page_ttl_wrap .inner {
        border-radius: 28px;
    }

    .sec_page_ttl .page_ttl_wrap .inner.event {
        border: 5px solid #4DAECB;
        padding: 35px 20px 23px;
    }
    .sec_page_ttl .page_ttl_wrap .inner.now {
        border: 5px solid #9ED0BF;
        padding: 52px 0;
    }
    .sec_page_ttl .page_ttl_wrap .inner.news {
        padding: 60px 0 50px;
    }
    
    .sec_page_ttl .page_ttl_wrap .inner .page_ttl {
        font-size: 1.562rem;
        line-height: calc(30/25);
    }
    
    .sec_page_ttl .page_ttl_wrap .inner .sub_ttl {
        font-size: 1rem;
        line-height: calc(24/16);
        margin-top: 13px;
    }

    .sec_ttl_wrap .sec_ttl {
        padding: 0 15px;
        font-size: 1rem;
    }
}

/* ----------------------------------------------------------------------
  イベント
---------------------------------------------------------------------- */
/* ------------------------------------------
  sec_event_slider
------------------------------------------ */
.sec_event_slider {
    margin-top: 55px;
}

.sec_event_slider .swiper-slide {
    display: block;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  height: 40px;
  width: 40px;
  top: 41%;
}

.swiper-button-prev {
    left: 17%;
}
.swiper-button-next {
    right: 17%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 40px;
  margin: auto;
  width: 40px;
}

.swiper-button-prev::after {
    background-image: url(../images/event/prev_arrow.png);
}
.swiper-button-next::after {
    background-image: url(../images/event/next_arrow.png);
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

.sec_event_slider .desc {
    margin-top: 21px;
    text-align: center;
}

.sec_event_slider .desc .info {
    font-size: 1rem;
    line-height: calc(24/16);
}

.sec_event_slider .desc .event_ttl {
    margin-top: 5px;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: calc(24/16);
}

@media screen and (max-width: 767px) {
    .sec_event_slider {
        margin-top: 20px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
      top: 31%;
    }
    
    .swiper-button-prev {
        left: 4%;
    }
    .swiper-button-next {
        right: 4%;
    }
    
    .sec_event_slider .desc {
        margin-top: 14px;
    }
    
    .sec_event_slider .desc .info {
        font-size: 0.812rem;
        line-height: calc(20/14);
    }
    
    .sec_event_slider .desc .event_ttl {
        margin-top: 5px;
        font-size: 1rem;
    }
    
}

/* ------------------------------------------
  sec_past_events
------------------------------------------ */
.sec_past_events {
    margin-top: 70px;
}

.sec_past_events .sec_past_events_list {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 55px 7.3%;
    padding-bottom: 72px;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
}

.sec_past_events .sec_past_events_list_item {
    display: flex;
    column-gap: 17px;
    width: calc((100% - 7.3%) / 2);
}

.sec_past_events .sec_past_events_list_item .img {
    width: 49%;
    height: 100%;
    flex-shrink: 0;
    aspect-ratio: 250/220;
    border-radius: 5px;
    overflow: hidden;
}

.sec_past_events .sec_past_events_list_item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec_past_events .sec_past_events_list_item .desc .date {
    font-size: 1rem;
}

.sec_past_events .sec_past_events_list_item .desc .ttl {
    font-size: 1rem;
    font-weight: bold;
    line-height: calc(24/16);
    margin-top: 5px;
}

@media screen and (max-width: 767px) {
    .sec_past_events {
        margin-top: 41px;
    }
    
    .sec_past_events .sec_past_events_list {
        margin-top: 15px;
        flex-direction: column;
        gap: 0;
        padding-bottom: 0;
        margin-bottom: 32px;
    }
    
    .sec_past_events .sec_past_events_list_item {
        column-gap: 15px;
        width: auto;
        padding: 18px 0;
    }

    .sec_past_events .sec_past_events_list_item:not(:first-child) {
        border-top: 1px solid #707070;
    }
    
    .sec_past_events .sec_past_events_list_item .img {
        width: 47.7%;
        aspect-ratio: 165/145;
    }
    
    .sec_past_events .sec_past_events_list_item .desc .date {
        font-size: 0.875rem;
        line-height: calc(20/14);
    }
    
    .sec_past_events .sec_past_events_list_item .desc .ttl {
        font-size: 0.875rem;
        line-height: calc(20/14);
        margin-top: 13px;
    }
    
}


/* ----------------------------------------------------------------------
  かたしなのイマ！
---------------------------------------------------------------------- */
/* ------------------------------------------
  sec_now_archive_main
------------------------------------------ */
.sec_now_archive_main {
    margin-top: 38px;
}

.sec_now_archive_main .sec_ttl {
    text-align: center;
    font-weight: 500;
    font-size: 1.125rem;
}

.sec_now_archive_main .sec_now_list {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 55px 7.3%;
    padding-bottom: 72px;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
}

.sec_now_archive_main .sec_now_list_item {
    display: flex;
    column-gap: 17px;
    width: calc((100% - 7.3%) / 2);
}

.sec_now_archive_main .sec_now_list_item .img {
    width: 49%;
    height: 100%;
    flex-shrink: 0;
    aspect-ratio: 250/220;
    border-radius: 5px;
    overflow: hidden;
}

.sec_now_archive_main .sec_now_list_item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec_now_archive_main .sec_now_list_item .desc .date {
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1;
}

.sec_now_archive_main .sec_now_list_item .desc .ttl {
    font-size: 1rem;
    line-height: calc(24/16);
    margin-top: 5px;
}

.sec_now_archive_main .sec_now_list_item .desc .tag span {
    color: #818181;
    line-height: calc(24/16);
}

.sec_now_archive_main .sec_now_list_item .desc .tag span + span {
    margin-left: 10px;
}

@media screen and (max-width: 767px) {
    .sec_now_archive_main {
        margin-top: 15px;
    }
    
    .sec_now_archive_main .sec_ttl {
        font-size: 1rem;
    }
    
    .sec_now_archive_main .sec_now_list {
        margin-top: 5px;
        flex-direction: column;
        gap: 0;
        padding-bottom: 0;
        margin-bottom: 32px;
    }
    
    .sec_now_archive_main .sec_now_list_item {
        column-gap: 15px;
        width: auto;
        padding: 18px 0;
    }

    .sec_now_archive_main .sec_now_list_item:not(:first-child) {
        border-top: 1px solid #707070;
    }
    
    .sec_now_archive_main .sec_now_list_item .img {
        width: 33.3%;
        aspect-ratio: 113/100;
    }
    
    .sec_now_archive_main .sec_now_list_item .desc .date {
        font-size: 0.75rem;
        line-height: calc(20/14);
    }
    
    .sec_now_archive_main .sec_now_list_item .desc .ttl {
        margin-top: 3px;
    }
    
    .sec_now_archive_main .sec_now_list_item .desc .tag span {
        line-height: calc(20/14);
        font-size: 0.875rem;
    }
    
    .sec_now_archive_main .sec_now_list_item .desc .tag span + span {
        margin-left: 5px;
    }
    
}

/* ----------------------------------------------------------------------
  お知らせ
---------------------------------------------------------------------- */
/* ------------------------------------------
  sec_news_archive_main
------------------------------------------ */
.sec_news_archive_main {
    margin-top: 42px;
}

.sec_news_archive_main .sec_ttl.news {
    font-weight: 500;
    font-size: 1.125rem;
    text-align: center;
    line-height: calc(27/18);
    border-bottom: 2px solid #000;
    display: table;
    margin: 0 auto;
    padding: 0 10px 5px;
}

.sec_news_archive_list {
    margin-top: 35px;
    padding-bottom: 66px;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
}

.sec_news_archive_list_item {
    display: flex;
    padding: 30px 60px 30px 30px;
    border: 1px solid #000;
    transition: .5s ease;
    background-repeat: no-repeat;
    background-size: 29px 29px;
    background-position: right 20px center;
    background-image: url(../images/common/icon_sec_news_archive_list_item.png);
}

.sec_news_archive_list_item + .sec_news_archive_list_item {
    margin-top: 20px;
}

.sec_news_archive_list_item:hover {
    background-color: #F8F8E7; 
    opacity: 1;
}

.sec_news_archive_list_item .date {
    font-weight: bold;
    font-size: 0.875rem;
    line-height: 23px;
    border-radius: 4px;
    text-align: center;
    padding: 0 8px;
    transition: .5s ease;
    background-color: #F8F8E7;
    border: 1px solid #000;
    flex-shrink: 0;
    margin-right: 18px;
}

.sec_news_archive_list_item:hover .date {
    background-color: #000;
    text-align: center;
    color: #fff;
}


.sec_now_archive_archive.news .sec_ttl_wrap .sec_ttl {
    color: #000;
}

@media screen and (max-width: 767px) {  
    .sec_news_archive_main {
        margin-top: 15px;
    }
    
    .sec_news_archive_main .sec_ttl.news {
        font-size: 1rem;
        line-height: calc(24/16);
        padding: 0 10px 3px;
    }
    
    .sec_news_archive_list {
        margin-top: 20px;
        padding-bottom: 22px;
        margin-bottom: 33px;
    }
    
    .sec_news_archive_list_item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 40px 15px 15px;
        background-position: right 10px center;
    }

    .sec_news_archive_list_item .date {
        margin-right: 0;
    }
    
    .sec_news_archive_list_item .ttl {
        margin-top: 8px;
        font-size: 0.875rem;
        line-height: calc(24/14);
    }
    
}



/* ------------------------------------------
  sec_now_archive_tag
------------------------------------------ */
.sec_now_archive_tag {
    margin-top: 90px;
}

.sec_now_archive_tag .sec_ttl_wrap .sec_ttl {
    color: #328468;
    padding: 0 35px;
}

.sec_now_archive_tag .tag_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 38px;
}

.sec_now_archive_tag .tag_list a {
    padding: 14px 18px;
    min-width: 85px;
    line-height: 1;
    border: 2px solid;
    border-radius: 5px;
    font-size: 0.875rem;
    text-align: center;
    transition: background-color 0.5s ease;
}

.sec_now_archive_tag .tag_list a:hover {
    background-color: #FFFF00;
    opacity: 1;
}

@media screen and (max-width: 767px) {
    .sec_now_archive_tag {
        margin-top: 40px;
    }
    
    .sec_now_archive_tag .sec_ttl_wrap .sec_ttl {
        padding: 0 20px;
        font-size: 1rem;
    }
    
    .sec_now_archive_tag .tag_list {
        margin-top: 25px;
    }    
}

/* ------------------------------------------
  sec_now_archive_archive
------------------------------------------ */
.sec_now_archive_archive {
    margin-top: 73px;
}

.sec_now_archive_archive .sec_ttl_wrap .sec_ttl {
    color: #328468;
    padding: 0 35px;
}

.sec_now_archive_archive .archive_select_list {
    margin: 32px auto 0;
    width: 285px;
    border: 2px solid;
    border-radius: 5px;
    transition: background-color 0.5s ease;
    position: relative;
}

.sec_now_archive_archive .archive_select_list::after {
    content: "";
    position: absolute;
    mask-image: url(../images/common/icon_select_arrow.svg);
    mask-position: 50% 50%;
    mask-repeat: no-repeat;
    mask-size: contain;
    background-color: black;
    width: 8px;
    height: 100%;
    right: 10px;
}

.sec_now_archive_archive .archive_select_list:hover {
    background-color: #FFFF00;
}

.sec_now_archive_archive .archive_select_list select {
    width: 100%;
    font-family: "Shippori Mincho", sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    text-align: center;
    color: #000;
    line-height: 44px;
}

@media screen and (max-width: 767px) {
    .sec_now_archive_archive {
        margin-top: 40px;
    }
    
    .sec_now_archive_archive .sec_ttl_wrap .sec_ttl {
        padding: 0 20px;
        font-size: 1rem;
    }
    
    .sec_now_archive_archive .archive_select_list {
        margin: 25px auto 0;
    }    
}

/* ------------------------------------------
  sec_now_archive_tag
------------------------------------------ */