@charset "utf-8";
/* CSS Document */
/*-----------------------------------------------------------*/
/*共通*/
section#pagetitle .titlebg {
    background: url("../image/news/pagetitle.webp") -150px 0 / cover no-repeat;
}
:root {
    --contentswidth: 86.11%; /*620*/
}
/*-----------------------------------------------------------*/
/*絞り込み*/
#news-option .inner {
    width: var(--contentswidth);
    margin: 25px auto 0;
}
#news-option .inner .features {
    background-color: #ebeae1;
    border-radius: 8px;
    padding: 20px 25px;
}
#news-option .inner .features h3.hd {
    font-size: 15px;
    font-weight: 700;
    color: #00595c;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0 10px;
}
#news-option .inner .features h3.hd.category::before {
    content: '';
    background: url("../image/common/features01.svg") 0 center / contain no-repeat;
    width: 23px;
    height: auto;
    aspect-ratio: 1 / 1;
}
#news-option .inner .features h3.hd.archive::before {
    content: '';
    background: url("../image/common/features04.svg") 0 center / contain no-repeat;
    width: 25px;
    height: auto;
    aspect-ratio: 25 / 23;
}
#news-option .areas {
    display: flex;
    flex-direction: column;
}
#news-option .areas:not(:first-of-type) {
    margin-top: 23px;
}
#news-option .inner .features .wrap {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 20px;
    background-color: #fff;
    padding: 20px 25px;
    flex: 1;
}
#news-option .inner .features .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;
}
#news-option .inner .features .wrap select {
    border: 1px solid #333;
    width: 100%;
    height: 45px;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 13px;
    padding: 0 15px;
}
#news-option .inner .features .wrap select option {
    width: 100%;
}
/*-----------------------------------------------------------*/
/*一覧*/
#news-archive .inner {
    width: var(--contentswidth);
    margin: 25px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px 0;
}
#news-archive .inner > article {
    border: 1px solid #a7c9c9;
    box-sizing: border-box;
    border-radius: 8px;
    position: relative;
    padding: 15px;
    /**/
    display: grid;
    grid-template-columns: 41.44% 1fr; /*230*/
    grid-template-rows: auto 1fr auto;
    column-gap: 20px;
    row-gap: 8px;
    align-items: start;
}
#news-archive article a.article-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}
#news-archive article .thumb {
    grid-column: 1;
    grid-row: 1 / 3;
	width: 100%;
	height: auto;
	aspect-ratio: 230 / 164;
}
#news-archive article .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
#news-archive article .thumb.portrait img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
#news-archive article a.category {
    grid-column: 1;
    grid-row: 3 / 4;
    z-index: 2;
    width: calc(100% - 10px);
    padding: 4px 5px;
    line-height: 1.2;
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    background-color: #06a7d8;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}
#news-archive article .date {
    grid-column: 2;
    grid-row: 1 / 2;
    color: #069bd0;
    font-weight: 500;
    text-align: left;
    letter-spacing: 0.05em;
    line-height: 100%;
}
#news-archive article .title {
    grid-column: 2;
    grid-row: 2 / 4;
    font-size: 13px;
    font-weight: 500;
    text-align: justify;
    line-height: 134.61%;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
}
/*ページャー*/
#news-archive .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;
}
#news-archive .wp-pagenavi {
    display: flex;
    gap: 0 9px;
}
#news-archive .wp-pagenavi .previouspostslink, #news-archive .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;
}
#news-archive .wp-pagenavi .previouspostslink {
    left: 14px;
}
#news-archive .wp-pagenavi .nextpostslink {
    right: 14px;
    transform: scale(-1, 1);
}
#news-archive .wp-pagenavi a, #news-archive .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: 15px;
    color: #06aed0;
    background-color: #ebeae1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#news-archive .wp-pagenavi span.current {
    background-color: #fff;
}
/*-----------------------------------------------------------*/
/*詳細ページ*/
#news-single .inner {
    width: var(--contentswidth);
    margin: 0 auto 0;
}
#news-single .postInfo {
    margin: 48px auto 0;
}
#news-single .postInfo > dl {
    margin: 0 auto 13px;
    display: flex;
    justify-content: space-between;
	align-items: center;
}
#news-single .postInfo > dl dt {
    font-size: 20px;
    color: #06A7D8;
    font-weight: 500;
    letter-spacing: 0.05em;
}
#news-single .postInfo > dl dd {
    display: flex;
    gap: 0 10px;
}
#news-single .postInfo > dl dd a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 115px;
    height: 20px;
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.05em;
    background-color: #06A7D8;
    border-radius: 10px;
}
#news-single .postInfo h2.hd {
    border-top: 1px solid #00595c;
    border-bottom: 1px solid #00595c;
    padding: 18px 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 150%;
    text-align: justify;
}
#news-single .postWrap {
    margin: 25px auto 0;
}
#news-single .postWrap p:not([class]) {
    line-height: 166.66%;
    text-align: justify;
}
#news-single .postWrap h2 {
    font-size: 17px;
    font-weight: 700;
    color: #06a7d8;
    line-height: 124%;
    text-align: justify;
    padding-bottom: 12px;
    position: relative;
	margin-bottom: 20px;
}
#news-single .postWrap h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 4px;
    background-color: #06a7d8;
    position: absolute;
    bottom: 0;
}
#news-single .postWrap h3 {
    font-size: 16px;
    font-weight: 500;
    color: #00595c;
    line-height: 136.36%;
    text-align: justify;
    padding: 12px 16px 12px 31px;
    background-color: #efefef;
    position: relative;
	margin-bottom: 20px;
}
#news-single .postWrap h3::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #00595c;
    position: absolute;
    top: 17px;
    left: 9px;
}
#news-single .postWrap h4 {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    line-height: 140%;
    text-align: justify;
    padding-left: 26px;
    position: relative;
	margin-bottom: 20px;
}
#news-single .postWrap h4::after {
    content: '';
    display: block;
    width: 17px;
    height: 4px;
    background-color: #06a7d8;
    position: absolute;
    top: 8px;
    left: 0;
}
#news-single .postWrap ul[style*="list-style-type: circle"] {
	display: flex;
	flex-direction: column;
	gap: 1em 0;
}
#news-single .postWrap ul[style*="list-style-type: circle"] > li{
	list-style-type: none;
	padding-left: 2em;
	position: relative;
}
#news-single .postWrap ul[style*="list-style-type: circle"] > li::before{
	content: '';
	width: 1em;
	height: 1em;
	background-color: #06a7d8;
	border-radius: 50%;
	position: absolute;
	top: 5px;
	left: 0;
}
#news-single .postWrap ol {
	counter-reset: listnum;
	display: flex;
	flex-direction: column;
	gap: 1em 0;
}
#news-single .postWrap ol > li{
	list-style-type: none;
	position: relative;
}
#news-single .postWrap ol > li::before{
	counter-increment: listnum;
	content: counter(listnum) "."; /* 半角スペースを入れて""の中にピリオドを追加 */
	padding-right: 1em;
	font-size: 15px;
	color: #06a7d8;
	font-weight: 500;
}
#news-single .postWrap img.aligncenter{
	display: block;
	margin-left: auto;
	margin-right: auto;
}
#news-single .postWrap a:has(img.aligncenter) {
    display: block;
    text-align: center;
}
#news-single .postWrap a{
	color: #069bd0;
	text-decoration: underline;
}
/*ACF読み込みコンテンツ*/
#news-single .optionWrap {
    margin-top: 50px;
}
#news-single .optionWrap h3.hd {
    font-size: 17px;
    font-weight: 500;
    color: #00595c;
    line-height: 100%;
    padding-left: 13px;
    position: relative;
}
#news-single .optionWrap h3.hd::before {
    content: '';
    display: block;
    width: 4px;
    height: 25px;
    background-color: #00595c;
    position: absolute;
    top: -4px;
    left: 0;
}
#news-single .optionWrap ul {
    display: flex;
    flex-direction: column;
    gap: 8px 0;
}
#news-single .optionWrap.links ul{
    margin-top: 10px;
}
#news-single .optionWrap.flies ul{
    margin-top: 25px;
}
#news-single .optionWrap.links ul li {
    border-bottom: 1px solid #a7c9c9;
    box-sizing: border-box;
}
#news-single .optionWrap ul li a {
    display: flex;
    align-items: center;
    gap: 0 12px;
    color: #069bd0;
    text-decoration: underline;
}
#news-single .optionWrap.links ul li a {
    padding: 20px 47px 20px 13px;
}
#news-single .optionWrap.links ul li a::after {
    content: '';
    background: url("../image/common/icontab.svg") 0 center / contain no-repeat;
    width: 18px;
    height: auto;
    aspect-ratio: 1 / 1;
}
#news-single .optionWrap.flies ul li {
    border: 1px solid #a7c9c9;
    box-sizing: border-box;
    border-radius: 3px;
}
#news-single .optionWrap.flies ul li a {
    padding: 20px 47px 20px 13px;
    position: relative;
}
#news-single .optionWrap.flies ul li a::after {
    content: '';
    background: url("../image/common/icondl.svg") 0 center / contain no-repeat;
    width: 18px;
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 13px;
}
#news-single .pagerWrap {
    width: var(--contentswidth);
    height: 85px;
    margin: 40px auto 100px;
    background-color: #ebeae1;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
#news-single .pagerWrap .previouspostslink, #news-single .pagerWrap .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;
}
#news-single .pagerWrap .previouspostslink {
    left: 16px;
}
#news-single .pagerWrap .nextpostslink {
    right: 16px;
    transform: scale(-1, 1);
}
#news-single .pagerWrap .tolist > a {
	min-width: 170px;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 25px;
    border: 1px solid #00595c;
    box-sizing: border-box;
    font-weight: 700;
    color: #00595c;
    padding-left: 25px;
    position: relative;
}
#news-single .pagerWrap .tolist > a::after {
    content: '';
    background: url("../image/common/pager02.svg") 0 center / contain no-repeat;
    width: 25px;
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 13px;
}
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/