/*========================
コンテンツ
========================*/
.blog_wrapper{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 1.00rem;
}

.blog_contets {
	/* max-width: calc(100% - 3rem); */
	width: 100%;
	box-sizing: border-box;
	/* padding-right: 0.8rem; */
}
@media screen and (max-width: 499px) {
	.blog_contets {
		max-width: 100%;
		padding-right: 0;
	}
}

.blog_contets_list li {
	margin-bottom: 0.6rem;
}

.blog_contets_list a {
	text-decoration: none;
	display: block;
}

.blog_contets_list a:hover {
	opacity: 0.7;
}

.blog_contets_box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.blog_contets_box_img {
	max-width: 2.4rem;
	height: 1.6rem;
	width: 100%;
	box-sizing: border-box;
}
@media screen and (max-width: 499px) {
	.blog_contets_box_img {
		max-width: 1.2rem;
		height: 1.5rem;
	}
}
.blog_contets_box_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/*
@media screen and (max-width: 499px) {
	.blog_contets_box_img img{
		height: 1.7rem;
	}
}
*/

.blog_contets a .blog_contets_box_text {
	width: calc(100% - 2.65rem);
	box-sizing: border-box;
	padding-left: 0.20rem;
/*	padding-top: 0.3rem;*/
}
	@media screen and (max-width: 499px) {
		.blog_contets a .blog_contets_box_text {
			width: calc(100% - 1.25rem);
			box-sizing: border-box;
/*			padding-top: 0.3rem;*/
			
		}
	}

.blog_contets_box_text .date {
	font-size: 0.14rem;
	font-family: 'Jost', sans-serif;
	padding-bottom: 0.1rem;
	color: #8e8e8e;
}

.blog_contets_box_text .title {
	font-size: 0.16rem;
	color: #000;
	padding-bottom: 0.1rem;
	line-height: 1.6
}

.blog_contets_box_text .tag span {
	font-size: 0.11rem;
	color: #000;
	border: 1px solid #000;
	padding: 0.05rem 0.1rem;
	display: inline-block;
	margin-bottom: 0.1rem;
	margin-right: 0.05rem;
	text-decoration: none;
}

@media screen and (max-width: 499px) {
}


/*========================
シングル
========================*/
.blog_contets_single_box {
	margin-bottom: 0.6rem;
}

/*日付*/
.blog_contets_single_head .date {
	font-size: 0.14rem;
	font-family: 'Jost', sans-serif;
	padding-bottom: 0.3rem;
	color: #8e8e8e;
	display: block;
}

/*タイトル*/
.blog_contets_single_head {
	margin-bottom: 0.3rem;
}

.blog_contets_single_head .title {
	font-size: 0.26rem;
	line-height: 1.6;
	margin-bottom: 0.1rem;
}

/*カテゴリ*/
.blog_contets_single_head .category  ul {
	display: flex;
	flex-wrap: wrap;
}

.blog_contets_single_head .category li {
	font-size: 0.11rem;
	color: #000;
	border: 1px solid #000;
	padding: 0.05rem 0.1rem;
	display: inline-block;
	margin-right: 0.05rem;
}

.blog_contets_single_head .category li a {
	text-decoration: none;
	color: #000;
}

.blog_contets_single_head .category li a:hover{
	opacity: 0.7;
}


/*コンテンツ*/
.blog_contets_single_cont {
	margin-bottom: 1rem;
}

.blog_contets_single_cont h1{
	font-size: 0.22rem;
	font-weight: bold;
	line-height: 2;
}

.blog_contets_single_cont h2{
	font-size: 0.32rem;
	font-weight: bold;
	line-height: 2;
}

.blog_contets_single_cont h3{
	font-size: 0.22rem;
	font-weight: bold;
	line-height: 2;
}

.blog_contets_single_cont h4{
	font-size: 0.22rem;
	font-weight: bold;
	line-height: 2;
}

.blog_contets_single_cont h5{
	font-size: 0.2rem;
	font-weight: bold;
	line-height: 2;
}

.blog_contets_single_cont h6{
	font-size: 0.18rem;
	font-weight: bold;
	line-height: 2;
}

.blog_contets_single_cont p {
	font-size: 0.16rem;
	line-height: 2;
}

.blog_contets_single_cont p a {
	color: #111;
}

.blog_contets_single_cont p a:hover {
	text-decoration: none;
}

.blog_contets_single_cont ul {
	list-style-position: inside;
}

.blog_contets_single_cont li {
	font-size: 0.16rem;
	line-height: 2;
}

.blog_contets_single_cont ul li::before {
	content:  "";
	width:  10px;
	height:  2px;
	display:  inline-block;
	background-color: #000;
	border-radius:  50%;
	vertical-align: middle;
	margin-right: 0.1rem;
}

.blog_contets_single_cont ol {
	padding-left: 0;
	list-style-position: inside;
}

/*fix image size and caption text 20210413 start*/
.blog_contets_single_cont img{
    height: auto;
}
.blog_contets_single_cont .wp-block-image figcaption{
    text-align: center;
    font-size: 0.16rem;
}
/*fix image size and caption text 20210413 end*/

@media screen and (max-width: 499px) {
	.blog_contets_single_cont .wp-block-image{
		margin-left: 0.1rem;
    	margin-right: 0.1rem;
	}
}


/*
ページネーション
*/
.blog_contets_single_pager {
	margin-bottom: 1.3rem;
}

.blog_contets_single_pager ul {
	display: flex;
	flex-wrap: wrap;
}

.blog_contets_single_pager li {
	width: calc(100% / 3) ;
	box-sizing: border-box;
}

.blog_contets_single_pager li.prev {
	text-align: left;
}

.blog_contets_single_pager li.list {
	text-align: center;
}

.blog_contets_single_pager li.next {
	text-align: right;
}

.blog_contets_single_pager li a {
	font-size: 0.16rem;
	color: #000;
	text-decoration: none;
}

.blog_contets_single_pager li a:hover {
	opacity: 0.7;
}

/*
吹き出し調整 add 20210330
*/

.liquid-speech-balloon-wrap {
    margin-bottom: 0.4rem;
}
.liquid-speech-balloon-text p{
	line-height: 1.6;
}

/*
記事出力
*/

/* ▼ カード一覧全体 */
.local-articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* スマホ：2カラム */
    gap: 10px;
    padding: 20px 0;
}

/* PCで4カラムへ */
@media screen and (min-width: 900px) {
    .local-articles {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ▼ カード全体 */
.local-article {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.local-article:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.13);
}

.local-article a {
    color: inherit;
    text-decoration: none;
    display: block;
    height: 100%;
}

/* ▼ サムネイル */
.local-thumb img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

/* ▼ 日付 */
.local-article time {
    display: block;
    font-size: 0.1rem;
    color: #777;
    padding: 12px 12px 0;
}

/* ▼ タイトル */
.local-title {
    font-size: .15rem;
    font-weight: 700;
    padding: 6px 12px;
    line-height: 1.4;
}

/* ▼ 本文冒頭 */
.local-excerpt {
    font-size: 0.13rem;
    color: #555;
    padding: 0 12px 12px;
    line-height: 1.6;
}

/*=============================
イントロ
=============================*/
#intro_wrap {
	padding-top: 1.20rem;
}

@media screen and (max-width: 499px) {
	#intro_wrap {
		padding-top: 0.80rem;
	}

	#intro_wrap .in {
		padding: 0;
	}
}

#intro_wrap .intro_box {
	position: relative;
	padding-bottom: 1.0rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

@media screen and (max-width: 499px) {
	#intro_wrap .intro_box {
		padding-bottom: 0.25rem;
	}
}

#intro_wrap .intro_box:nth-child(even) {
	flex-direction: row-reverse;
}

#intro_wrap .intro_box .ph_wrap {
	width: 100%;
	max-width: 5.50rem;
	height: 4.50rem;
	position: relative;
}

@media screen and (max-width: 499px) {
	#intro_wrap .intro_box .ph_wrap {
		width: calc(100% - 0.20rem);
		height: auto;
		padding-bottom: 0.24rem;
	}
}

#intro_wrap .intro_box .ph_wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#intro_wrap .intro_box .ph_wrap .ph_main {
	width: 100%;
	height: 100%;
	max-width: 6.40rem;
	max-height: 4.00rem;
	margin-left: -0.60rem;
	position: relative;
	z-index: 0;
	overflow: hidden;
}

@media screen and (max-width: 499px) {
	#intro_wrap .intro_box .ph_wrap .ph_main {
		width: 80vw;
		height: 58.66vw;
		margin-left: 0;
	}
}

#intro_wrap .intro_box:nth-child(even) .ph_wrap .ph_main {
	margin-left: 0.60rem;
}

@media screen and (max-width: 499px) {
	#intro_wrap .intro_box:nth-child(even) .ph_wrap .ph_main {
		margin-left: auto;
	}
}

#intro_wrap .intro_box .ph_wrap .ph_sub {
	width: 100%;
	height: 100%;
	max-width: 2.0rem;
	max-height: 2.0rem;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
	overflow: hidden;
}

@media screen and (max-width: 499px) {
	#intro_wrap .intro_box .ph_wrap .ph_sub {
		width: 26.66vw;
		height: 26.66vw;
	}
}

#intro_wrap .intro_box:nth-child(even) .ph_wrap .ph_sub {
	right: inherit;
	left: 0;
}

#intro_wrap .intro_box .textbox {
	width: 100%;
	max-width: 5.20rem;
}

@media screen and (max-width: 499px) {
	#intro_wrap .intro_box .textbox {
		padding: 0.40rem 0.20rem 0.20rem;
	}
}

#intro_wrap .intro_box .textbox .title {
	font-size: 0.24rem;
	font-weight: 700;
	line-height: 1.66;
	letter-spacing: 0.10em;
	margin-bottom: 0.30rem;
}

@media screen and (max-width: 499px) {
	#intro_wrap .intro_box .textbox .title {
		font-size: 0.20rem;
		line-height: 1.50;
		margin-bottom: 0.20rem;
	}
}

#intro_wrap .intro_box .textbox .text {
	font-size: 0.15rem;
	line-height: 2;
	letter-spacing: 0.10em;
}

@media screen and (max-width: 499px) {
	#intro_wrap .intro_box .textbox .text {
		font-size: 0.14rem;
		letter-spacing: 0.02em;
	}
}

#intro_wrap .intro_box .textbox .more_btn {
	padding-top: 1.70rem;
}

@media screen and (max-width: 499px) {
	#intro_wrap .intro_box .textbox .more_btn {
		padding-top: 0.40rem;
		width: 2.30rem;
		margin: auto;
	}
}

#intro_wrap .intro_box .textbox .more_btn a {
	display: block;
	width: 2.30rem;
	padding: 0.16rem 0;
	font-family: 'Jost', sans-serif;
	font-size: 0.12rem;
	letter-spacing: 0.20em;
	position: relative;
	color: #111;
	text-decoration: none;
	border-bottom: 1px solid #CCC;
}

#intro_wrap .intro_box .textbox .more_btn a::before {
	content: "";
	width: 0.12rem;
	height: 0.10rem;
	position: absolute;
	right: 0.06rem;
	top: 36%;
	background-image: url(../img/link_arrow.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: all 0.3s ease;
}

#intro_wrap .intro_box .textbox .more_btn a:hover::before {
	right: 0.02rem;
}

#intro_wrap .intro_box .textbox .more_btn a::after {
	content: "";
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: -1px;
	left: 0;
	display: block;
	background-color: #111;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

#intro_wrap .intro_box .textbox .more_btn a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}

.sec_title{
	margin-bottom: 0.20rem;
}

#local_list .local_title{
	text-align: center;
	margin-bottom: 0.3rem;
}

#local_list .local_title h2{
	font-size:.24rem;
	font-weight: bold;
}

/* 詳しく見るボタン */

#local_list .more_btn {
	padding-top: .50rem;
	padding-bottom: 1rem;
	text-align: center;

}

@media screen and (max-width: 499px) {
	#local_list .more_btn {
		padding-top: 0.40rem;
		width: 2.30rem;
		margin: auto;
	}
}

#local_list .more_btn a {
	display: inline-block;
	width: 2.30rem;
	padding: 0.16rem 0;
	font-family: 'Jost', sans-serif;
	font-size: 0.12rem;
	letter-spacing: 0.20em;
	position: relative;
	color: #111;
	text-decoration: none;
	border-bottom: 1px solid #CCC;
}

#local_list .more_btn a::before {
	content: "";
	width: 0.12rem;
	height: 0.10rem;
	position: absolute;
	right: 0.06rem;
	top: 36%;
	background-image: url(../img/link_arrow.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: all 0.3s ease;
}

#local_list .more_btn a:hover::before {
	right: 0.02rem;
}

#local_list .more_btn a::after {
	content: "";
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: -1px;
	left: 0;
	display: block;
	background-color: #111;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

#local_list .more_btn a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}