@charset "UTF-8";

/* ----------
一覧
---------- */
.low_clm2_ttl {
	border-top: 1px solid var(--color-border1);
}
.low_clm2_ttl p {
	margin: 1.5em 0 2em;
}
.news_filter li {
	margin-bottom: .8em;
}
.news_filter a {
	font-size: var(--font-size15px);
	color: var(--color-brandGr);
	border: 1px solid var(--color-brandGr);
	padding: .4em .8em;
	border-radius: 99px;
	display: inline-block;
	line-height: 1.2;
}
.news_filter .current a {
	background-color: var(--color-brandGr);
	color: #fff;
}
@media (min-width: 1024px) {
	.news_filter a:hover {
		background-color: var(--color-brandGr);
		color: #fff;
	}
}
@media (max-width: 750px) {
	.news_filter {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.news_filter li {
    	width: calc(50% - 2vw);
		margin-bottom: 4vw;
	}
	.news_filter a {
		width: 100%;
		text-align: center;
		padding: .7em;
	}

}


/* ----------
詳細
---------- */
.info_detail .subpage_heading {
	max-width: calc(800px + max(48px, 8vw));
	text-align: center;
}
.info_detail .subpage_heading h1 {
	line-height: 1.4;
	letter-spacing: 0.1em;
}
.info_detail .subpage_heading .flexBox {
	justify-content: center;
	gap: 1em;
	margin-top: 1em;
}
.info_detail .subpage_heading .flexBox .info_cate {
	font-size: var(--font-size14px);
	color: var(--color-brandGr);
	border: 1px solid;
	border-radius: 99px;
	padding: 0em 0.5em;
}
.info_detail .subpage_heading .flexBox .info_date {
	font-size: var(--font-size16px);
	color: #777;
}
.info_detail .subpage_heading .flexBox .info_date * {
	font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.08em;
}



.detail_style * {
	color: inherit;
}
.detail_style > *:not(:last-child) {
	margin-bottom: 2.5rem;
}
.detail_style img {
	max-width: 100%;
}

.detail_style p strong,
.detail_style strong,
.detail_style strong * {
	font-weight: 700;
}

/*　見出し　*/
.detail_style h2 ,.detail_style h3 ,.detail_style h4 {
 line-height: 1.5;
}
.detail_style h2 {
	font-size: var(--font-size24px);
	margin-bottom: 1.333em!important;

}
.detail_style h3 {
	font-size: var(--font-size20px);
	margin-bottom: 1.2em!important;
}
.detail_style h4 {
	font-size: var(--font-size18px);
	margin-bottom: 0.888em!important;
}

/*　テキストリンク　*/
.detail_style p a {
   color: var(--color-brandGr);
   text-decoration: underline;
}

/* ボタン */
.detail_style .wp-block-button__link {
    color: #fff;
    background-color: var(--color-brandGr);
	border: 1px solid var(--color-brandGr);
    border-radius: 2px;
    box-shadow: none;
    text-decoration: none;
    padding: calc(.667em + 2px) calc(1.333em + 2px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.detail_style .wp-block-button__link::after {
	content: "";
	background-image: url(../img/icon/icon_arw_wh.svg);
	background-size: 90%;
	background-repeat: no-repeat;
	background-position: center;
	min-width: 1em;
	width: 1em;
	height: 1em;
	margin-left: 1em;
}
.detail_style .wp-block-buttons.is-content-justification-center {
    justify-content: center;
}
.detail_style .wp-block-buttons.is-content-justification-right {
    justify-content: flex-end;
}
@media (min-width: 1024px) {
	.detail_style .wp-block-button__link:hover {
		color: var(--color-brandGr);
		background-color: transparent;
	}
	.detail_style .wp-block-button__link:hover::after {
		background-image: url(../img/icon/icon_arw_gr.svg);
	}
}

/* 画像 */
.detail_style .wp-element-caption {
	line-height: 1.5;
	margin-top: 1em;
}

/* 動画 */
.detail_style .wp-block-embed {
   width: 100%;
 }
.detail_style  .wp-block-embed .wp-block-embed__wrapper {
   width: 100%;
   padding-top: 56.25%;
}
.detail_style .wp-block-embed .wp-block-embed__wrapper iframe {
   max-width: 100%;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
 }

 /* ダウンロード */
.detail_style .wp-block-file__button {
	background: #61885c;
	color: #fff;
	text-decoration: none;
	display: inline-block;
	padding: 0.5em 2.5em 0.5em 1.5em;
	position: relative;
}
.detail_style .wp-block-file__button::after {
	content: "";
    width: 0.4em;
    height: 0.4em;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: 40%;
    right: 1em;
}

 /* 区切り線 */
.detail_style .wp-block-separator {
   border-width: 1px;
   color: #949494;
}

/*　番号つきリスト　*/
.detail_style ol {
    list-style: decimal;
	margin-bottom: 2.5em;
	padding-left: 1em;
}
.detail_style ol li {
	margin-bottom: .5em;
    padding-left: .5rem;
}
.detail_style ol li:last-child {
	margin-bottom: 0;
}
/*　番号なしリスト　*/
.detail_style ul {
    list-style: disc;
	margin-bottom: 2.5em;
	padding-left: 1.5em;
}
.detail_style ul li {
	margin-bottom: .5em;
}
.detail_style ul li:last-child {
	margin-bottom: 0;
}
.detail_style ul ::marker {
    color: var(--color-brandGr);
    font-size: 1.3em;
    line-height: 1;
}

/*　引用　*/
.detail_style .wp-block-quote {
	background-color: #F5F1EB;
    padding: 1.5em;
	position: relative;
}
.detail_style .wp-block-quote::before {
	content: "“";
    position: absolute;
    top: -0.2em;
    left: 0.4em;
    font-size: 2em;
    color: var(--color-brandGr);
    line-height: 1;
}
.detail_style .wp-block-quote::after {
	content: "”";
	position: absolute;
    bottom: -0.6em;
    right: 0.4em;
    font-size: 2em;
    color: var(--color-brandGr);
    line-height: 1;
}

/*　テーブル表　*/
.detail_style .wp-block-table {
	background-color: #fff;
}
.detail_style .wp-block-table td, 
.detail_style .wp-block-table th {
    border: 1px solid #ccc;
}

/* メディアとテキスト */
@media (max-width: 600px) {
	.detail_style .wp-block-media-text__content {
		padding: 5% 0 0;
	}
}

/* グループ */
.detail_style .wp-block-group .wp-block-buttons {
	width: 100%;
}

.content.btn_bgGr a {
	margin: auto;
}