@charset "utf-8";
/* CSS Document */
/*-----------------------------------------------------------*/
/*共通*/
section#pagetitle .titlebg {
    background: url("../image/activity/pagetitle.webp") center 0 / cover no-repeat;
}
:root {
    --contentswidth: 86.11%; /*620*/
}
/*-----------------------------------------------------------*/
/*絞り込み*/ :root {
    --nature: #05b085;
    --experience: #f28900;
    --history: #ad6f29;
    --eat: #eb6d80;
    --stay: #9370d0;
    --spa: #b8a305;
    --facility: #056ea3;
    --cycle: #ff7dcf;
}
#activityarchive .inner {
    width: var(--contentswidth);
    margin: 25px auto 0;
}
#activityarchive .inner .features {
    background-color: #ebeae1;
    border-radius: 8px;
    padding: 20px 25px;
}
#activityarchive .inner .features h3.hd {
    font-size: 15px;
    font-weight: 700;
    color: #00595c;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0 10px;
}
#activityarchive .inner .features .categores h3.hd::before {
    content: '';
    background: url("../image/common/features01.svg") 0 center / contain no-repeat;
    width: 23px;
    height: auto;
    aspect-ratio: 1 / 1;
}
#activityarchive .inner .features .areas h3.hd::before {
    content: '';
    background: url("../image/common/features02.svg") 0 center / contain no-repeat;
    width: 16px;
    height: auto;
    aspect-ratio: 16 / 23;
}
#activityarchive .categores {
    display: flex;
    flex-direction: column;
}
#activityarchive .areas {
    display: flex;
    flex-direction: column;
}
#activityarchive .inner .features .wrap {
    margin-top: 20px;
    flex: 1;
}
/*カテゴリー*/
#activityarchive .categores .wrap ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
}
#activityarchive .categores .wrap ul li {
    display: flex;
    box-sizing: border-box;
}
#activityarchive .categores .wrap li:nth-of-type(1) {
    grid-column: span 2 / span 2;
}
#activityarchive .categores .wrap li:nth-of-type(2) {
    grid-row-start: 2;
}
#activityarchive .categores .wrap li:nth-of-type(3) {
    grid-row-start: 2;
}
#activityarchive .categores .wrap li:nth-of-type(4) {
    grid-row-start: 3;
}
#activityarchive .categores .wrap li:nth-of-type(6) {
    grid-row-start: 4;
}
#activityarchive .categores .wrap li:nth-of-type(8) {
    grid-row-start: 5;
}
/*リンクボタン*/
#activityarchive .tab-btn {
    width: 100%;
    border: none;
    background: #fff;
    border-top: 1px solid #a7c9c9;
    border-left: 1px solid #a7c9c9;
    box-sizing: border-box;
    transition: all 0.5s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0 5px;
    color: #00595c;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 120.0%;
    letter-spacing: -0.03em;
    position: relative;
    padding: 10px 10px;
}
#activityarchive .tab-btn.all {
    border-right: 1px solid #a7c9c9;
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    justify-content: center;
}
#activityarchive .tab-btn.experience {
    padding: 10px 5px;
    border-right: 1px solid #a7c9c9;
}
#activityarchive .tab-btn.eat, #activityarchive .tab-btn.spa, #activityarchive .tab-btn.cycle {
    border-right: 1px solid #a7c9c9;
}
#activityarchive .tab-btn.facility, #activityarchive .tab-btn.cycle {
    border-bottom: 1px solid #a7c9c9;
}
#activityarchive .tab-btn.active.all {
    background-color: #06aed0;
}
#activityarchive .tab-btn:hover, #activityarchive .tab-btn.active {
    opacity: 1.0;
    color: #fff;
}
#activityarchive .tab-btn.all:hover, #activityarchive .tab-btn.active.all {
    background-color: #06aed0;
    /*border-color: #06aed0;*/
}
#activityarchive .tab-btn.nature:hover, #activityarchive .tab-btn.active.nature {
    background-color: var(--nature);
    /*border-color: var(--nature);*/
}
#activityarchive .tab-btn.experience:hover, #activityarchive .tab-btn.active.experience {
    background-color: var(--experience);
    /*border-color: var(--experience);*/
}
#activityarchive .tab-btn.history:hover, #activityarchive .tab-btn.active.history {
    background-color: var(--history);
    /*border-color: var(--history);*/
}
#activityarchive .tab-btn.eat:hover, #activityarchive .tab-btn.active.eat {
    background-color: var(--eat);
    /*border-color: var(--eat);*/
}
#activityarchive .tab-btn.stay:hover, #activityarchive .tab-btn.active.stay {
    background-color: var(--stay);
    /*border-color: var(--stay);*/
}
#activityarchive .tab-btn.spa:hover, #activityarchive .tab-btn.active.spa {
    background-color: var(--spa);
    /*border-color: var(--spa);*/
}
#activityarchive .tab-btn.facility:hover, #activityarchive .tab-btn.active.facility {
    background-color: var(--facility);
    /*border-color: var(--facility);*/
}
#activityarchive .tab-btn.cycle:hover, #activityarchive .tab-btn.active.cycle {
    background-color: var(--cycle);
    /*border-color: var(--cycle);*/
}
#activityarchive .tab-btn:not(.all)::before {
    content: '';
    display: block;
    width: 45px;
    height: auto;
}
#activityarchive .tab-btn.nature::before {
    background: url("../image/top/acicon01.svg") center / 25px auto no-repeat;
    aspect-ratio: 1 / 1;
}
#activityarchive .tab-btn.experience::before {
    background: url("../image/top/acicon02.svg") center / 45px 23px no-repeat;
    aspect-ratio: 55 / 28;
}
#activityarchive .tab-btn.history::before {
    background: url("../image/top/acicon03.svg") center / 25px 19px no-repeat;
    aspect-ratio: 32 / 25;
}
#activityarchive .tab-btn.eat::before {
    background: url("../image/top/acicon04.svg") center / 26px 23px no-repeat;
    aspect-ratio: 35 / 31;
}
#activityarchive .tab-btn.stay::before {
    background: url("../image/top/acicon05.svg") center / 24px auto no-repeat;
    aspect-ratio: 1 / 1;
}
#activityarchive .tab-btn.spa::before {
    background: url("../image/top/acicon06.svg") center / 26px 19px no-repeat;
    aspect-ratio: 35 / 27;
}
#activityarchive .tab-btn.facility::before {
    background: url("../image/top/acicon07.svg") center / 25px 20px no-repeat;
    aspect-ratio: 33 / 27;
}
#activityarchive .tab-btn.cycle::before {
    background: url("../image/top/acicon08.svg") center / 33px 22px no-repeat;
    aspect-ratio: 43 / 29;
}
#activityarchive .tab-btn.nature:hover::before, #activityarchive .tab-btn.nature.active::before {
    background: url("../image/top/acicon01h.svg") 0 center / contain no-repeat;
}
#activityarchive .tab-btn.experience:hover::before, #activityarchive .tab-btn.experience.active::before {
    background: url("../image/top/acicon02h.svg") 0 center / contain no-repeat;
}
#activityarchive .tab-btn.history:hover::before, #activityarchive .tab-btn.history.active::before {
    background: url("../image/top/acicon03h.svg") 0 center / contain no-repeat;
}
#activityarchive .tab-btn.eat:hover::before, #activityarchive .tab-btn.eat.active::before {
    background: url("../image/top/acicon04h.svg") 0 center / contain no-repeat;
}
#activityarchive .tab-btn.stay:hover::before, #activityarchive .tab-btn.stay.active::before {
    background: url("../image/top/acicon05h.svg") 0 center / contain no-repeat;
}
#activityarchive .tab-btn.spa:hover::before, #activityarchive .tab-btn.spa.active::before {
    background: url("../image/top/acicon06h.svg") 0 center / contain no-repeat;
}
#activityarchive .tab-btn.facility:hover::before, #activityarchive .tab-btn.facility.active::before {
    background: url("../image/top/acicon07h.svg") 0 center / contain no-repeat;
}
#activityarchive .tab-btn.cycle:hover::before, #activityarchive .tab-btn.cycle.active::before {
    background: url("../image/top/acicon08h.svg") 0 center / contain no-repeat;
}
/*エリア*/
#activityarchive .areas {
    margin-top: 23px;
}
#activityarchive .areas .wrap {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 20px 25px 30px 25px;
}
#activityarchive .areas .wrap::before {
    content: '';
    background: url("../image/common/features03.webp") 0 center / contain no-repeat;
    width: 15px;
    height: auto;
    aspect-ratio: 15 / 11;
    position: absolute;
    top: -8px;
    bottom: 0;
    margin: auto;
    right: 40px;
    pointer-events: none;
}
#activityarchive .areas select {
    border: 1px solid #333;
    width: 100%;
    height: 45px;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 1.3rem;
    padding: 0 15px;
}
#activityarchive .areas select option {
    width: 100%;
}
/*-----------------------------------------------------------*/
/*記事一覧*/
#activitylist .inner {
    max-width: var(--contentswidth);
    margin: 25px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
/*記事*/
#activitylist .article {
    width: calc((100% - (15px * 1)) / 2);
    border: 1px solid #00595c;
    background-color: #fff;
    border-radius: 8px;
    box-sizing: border-box;
    position: relative;
    padding: 16px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}
#activitylist .article-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}
#activitylist .article .thumb {
    position: relative;
    width: calc(100% - 20px);
    margin: 0 auto;
    height: 76px;
    overflow: hidden;
}
#activitylist .thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#activitylist .article .cityCat {
    z-index: 2;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 81px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 5px;
    width: fit-content;
    height: 20px;
    padding: 0 17px;
    border-radius: 10px;
    background-color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}
#activitylist .article .cityCat::before {
    content: '';
    background: url("../image/top/icon_pins.svg") 0 center / contain no-repeat;
    width: 8px;
    height: auto;
    aspect-ratio: 8 / 12;
}
#activitylist .article .labelCat {
    z-index: 2;
    background: #7f9dfb;
    clip-path: polygon(0 0, 100% 0, 100% 0, calc(100% - 5px) 50%, 100% 100%, 0 100%);
    display: flex;
    align-items: center;
    color: #fff;
    letter-spacing: 0.2em;
    width: fit-content;
}
#activitylist .article .labelCat {
    height: 18px;
    padding: 0 10px 0 7px;
    font-size: 1.0rem;
    position: absolute;
    top: 8px;
    left: 8px;
}
#activitylist .article .txts {
    flex: 1;
}
#activitylist .article dl {
    width: calc(100% - 20px);
    margin: 10px auto 13px;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}
#activitylist .article dl dt.title {
    font-size: 1.4rem;
    color: #056b6e;
    font-weight: 700;
    position: relative;
}
#activitylist .article dl dt.title::before {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background-color: #056b6e;
    position: absolute;
    bottom: -10px;
    left: 0;
}
#activitylist .article dl dd.comment {
	font-size: 1.3rem;
    line-height: 130.0%;
    text-align: justify;
}
#activitylist .article .totxts {
    border-top: 1px solid #00595c;
    width: calc(100% - 20px);
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    background-color: #fff;
}
#activitylist .article .totxts p {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    color: #00595c;
}
#activitylist .article .totxts p::after {
    content: '';
    background: url("../image/common/icontab.svg") 0 center / contain no-repeat;
    width: 17px;
    height: auto;
    aspect-ratio: 1 / 1;
}
#activitylist .article:hover .totxts {
    background-color: #e9f5f5;
}
#activitylist .inner #nopost{
    width: 100%;
	display: flex;
	justify-content: center;
	font-size: 1.6rem;
	color: #00595c;
}
/*ページャー*/
#activitylist .pagenaviWrap {
    width: var(--contentswidth);
    height: 70px;
    margin: 50px auto 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 9px;
    background-color: #ebeae1;
    border-radius: 8px;
    position: relative;
}
#activitylist .wp-pagenavi {
    display: flex;
    gap: 0 9px;
}
#activitylist .wp-pagenavi .previouspostslink, #activitylist .wp-pagenavi .nextpostslink {
    content: '';
    background: url("../image/common/pager01.svg") 0 center / contain no-repeat;
    width: 30px;
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 0;
    font-size: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
#activitylist .wp-pagenavi .previouspostslink {
    left: 14px;
}
#activitylist .wp-pagenavi .nextpostslink {
    right: 14px;
    transform: scale(-1, 1);
}
#activitylist .wp-pagenavi a, #activitylist .wp-pagenavi span {
    width: 30px;
    height: auto;
    aspect-ratio: 1 / 1;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.5rem;
    color: #06aed0;
    background-color: #ebeae1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#activitylist .wp-pagenavi span.current {
    background-color: #fff;
}
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/