/* CSS Document */

.blogList.flex {
	align-items: stretch;
}
.blogList li {	
	margin-bottom: 80px;
	overflow: hidden;
	transition: 0.3s;
}
.blogList li:hover {
	opacity: 0.8;
}
.blogList .img {
	position: relative;
	z-index: 0;
}
.blogList .img img {
	object-fit: cover;
	font-family: 'object-fit: cover;';
	height: 250px;
	width: 100%;
}
.blogList .img .tag {	
	position: absolute;
	top: 0;
	left:0;
}
.blogList .txt {
	background: #fff;
	padding: 10px 0 10px;
}
.blogList .txt .ttl{
	color: #022202;
	display: block;
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 10px;
}
.blogList .txt p {
	line-height: 1.9;
}

@media screen and (max-width: 767px) {
	.blogList li {
		margin-top: 30px;
	}
	.blogList .img img {
		height: 200px;
	}
	.blogList .txt {
		padding :10px 3%;
	}
	.blogList .txt .ttl {
		font-size: 1.8rem;
		margin-bottom: 10px;
	}
}

/*詳細*/
.blogHead {
	/*width: 1024px;*/
	margin: 0 auto 20px;
}
.blogHead p.date {
	font-size: 1.2rem;
	line-height: 2;
}
.blogHead .ttl {
	color: #022202;
	font-size: 2.4rem;
	font-weight: 500;
	margin: 10px 0 15px;
	padding-bottom: 10px;
	position: relative;
}

.blogHead .ttl:before {
	background: #7BA327;
	content: '';
	display: block;
	width: 100px;
	height:3px;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
} 
.blogHead .ttl:after {
	background: #707070;
	content: '';
	display: block;
	width: 480px;
	height:1px;
	position: absolute;
	left: 100px;
	bottom: 1px;
} 

.blogHead p {
	line-height: 1.85;
}
@media screen and (max-width: 767px) {
	.blogHead {
		width: 100%;
	}
	.blogHead .ttl {
		font-size: 2rem;
	}
	.blogHead .ttl:before {
		width: 20%;
	}
	.blogHead .ttl:after {
		width: 70%;
		left: 0;
	}
}

/*
.featureList {
	margin: 90px 0;
}
.featureList .unit .img {
	width: 580px;
}
.featureList .unit .txt {
	width: 580px;
}
.featureList .unit .txt .ttl {
	color: #6C8042;
}
.featureList .unit .txt .ttl:after {
	background: #634A3C;
}

@media screen and (max-width: 767px) {
	.featureList {
		margin: 60px 0;
	}
	.featureList .unit .img {
		width: 100%;
	}
	.featureList .unit .txt {
		width: 100%;
	}
}
*/

.blogBody {
	margin: 0 auto;
	width: 1024px;
}
.blogBody h3 {
	border-left: 4px solid #7BA327;
	color: #7BA327;
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 0;
	padding-left: 20px;
}
.blogBody h4 {
	color: #7BA327;
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 60px;
	position: relative;
}
.blogBody h4:before {
	content: '■';
}

.blogBody table {
	margin-bottom: 0;
}
.blogBody table th {
	background: #E4EDD3;
}
.blogBody p{
	margin-bottom: 0;
}
section.footMessage{
	margin-top: 100px;
}
.blogBody h2:nth-of-type(1){
	margin-top: 0;
}
.post li a{
	    color: #7BA327;
    text-decoration: underline;
    transition: 0.3s;
}
@media screen and (max-width: 767px) {
	.blogBody {
		width: 100%;
	}

	.blogBody table {
	display: block;
  overflow-x: scroll;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
	}
	
	.blogBody table th,
	.blogBody table td {
		display: table-cell;
	}	
}


.blogFoot {
	margin: 130px auto 90px;
	width: 1024px;
}
.blogFoot .img img {
	object-fit: cover;
	font-family: 'object-fit: cover;';
	height: 477px;
	width: 100%;
}
.blogFoot .txt {
	margin: 30px 0;
}
.blogFoot .txt .ttl {
	font-size: 2.4rem;
	color: #6C8042;
	margin-bottom: 20px;
	padding-bottom: 15px;
	position: relative;
}
.blogFoot .txt .ttl:before, .blogFoot .txt .ttl:after {	
	content:'';
	display: block;
	position: absolute;
	left: 0;
}
.blogFoot .txt .ttl:before {	
	background: #707070;
	height: 1px;
	bottom: 0;
	width: 100%;
}
.blogFoot .txt .ttl:after {
	background: #634A3C;
	height: 3px;
	width: 99px;
	bottom:-1px;
}

.blogFoot .txt p {
	line-height: 2.8rem;
}

@media screen and (max-width: 767px) {
	.blogFoot {
		margin: 60px 0;
		width: 100%;
	}
	.blogFoot .txt .ttl {
		font-size: 1.8rem;
	}
	.blogFoot .img img {
		height: 250px;
	}
}

.blogRecommend {
	margin: 100px 0 180px;
}
.blogRecommend .headline {
	color: #6C8042;
	font-size: 3.2rem;
	font-weight: 700;
	padding-bottom: 30px;
	position: relative;
}
.blogRecommend .headline:after {
	background: #634A3C;
	content: '';
	display: block;
	position: absolute;
	height:7px;
	width: 52px;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: 0;
}

.blogRecommend .blogList li {
	margin-top: 40px;
}

@media screen and (max-width: 767px) {
	.blogRecommend {
		margin: 60px 0;
	}
	.blogRecommend .headline {
		font-size: 2.4rem;
		padding-bottom: 18px;
	}
}

.linkcard-portal {
    margin: 20px 0 0 0 !important;
}
@media screen and (max-width: 600px) {
    .linkcard-portal {
        margin: 14px 0 0 0!important;
    }
}
.linkcard-portal .smb-panels__item {
    box-shadow: none;
    border-bottom: 1px solid #7BA327;
    border-top: 1px solid #7BA327;
}

.linkcard-portal .smb-panels__item:hover {
    background-color: #F7F7F7;
}

.linkcard-portal .smb-panels__item .smb-panels__item__body {
    padding: 15px;
}

@media screen and (max-width: 600px) {
    .linkcard-portal .smb-panels__item .smb-panels__item__body {
        padding: 10px;
    }
}

.linkcard-portal .smb-panels__item .smb-panels__item__body .wp-block-media-text {
    grid-template-columns: 25% 1fr;
}

@media screen and (max-width: 600px) {
    .linkcard-portal .smb-panels__item .smb-panels__item__body .wp-block-media-text {
        grid-template-columns: 25% 1fr;
    }
}

.linkcard-portal .smb-panels__item .smb-panels__item__body .wp-block-media-text .wp-block-media-text__media {
    padding: 0;
}

.linkcard-portal .smb-panels__item .smb-panels__item__body .wp-block-media-text .wp-block-media-text__media img {
    margin: 0;
	aspect-ratio: 4 / 3;  /* アスペクト比を固定 */
    object-fit: cover;  /* はみ出した分をカット */
}

.linkcard-portal .smb-panels__item .smb-panels__item__body .wp-block-media-text .wp-block-media-text__content {
    position: relative;
    padding: 0 15% 0 5%;
}

@media screen and (max-width: 600px) {
    .linkcard-portal .smb-panels__item .smb-panels__item__body .wp-block-media-text .wp-block-media-text__content {
        padding-right: 5%;
    }
}

.linkcard-portal .smb-panels__item .smb-panels__item__body .wp-block-media-text .wp-block-media-text__content p {
    font-size: 16px;
}

.linkcard-portal .smb-panels__item .smb-panels__item__body .wp-block-media-text .wp-block-media-text__content .linkcard-portal-title {
    font-size: 20px;
    color: #7BA327;
    font-weight: 700;
    margin: 0;
    line-height: 1.5;
}

@media screen and (max-width: 600px) {
    .linkcard-portal .smb-panels__item .smb-panels__item__body .wp-block-media-text .wp-block-media-text__content .linkcard-portal-title {
        font-size: 14px;
    }
}

.linkcard-portal .smb-panels__item .smb-panels__item__body .wp-block-media-text .wp-block-media-text__content::after {
    position: absolute;
    content: "";
    background-image: url(https://www.idea-h.net/wp/wp-content/uploads/2025/03/linkcard-portal-btn.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 29px;
    height: 29px;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 600px) {
    .linkcard-portal .smb-panels__item .smb-panels__item__body .wp-block-media-text .wp-block-media-text__content::after {
        display: none;
    }
}

.linkcard-portal:nth-last-child(1){
    margin-bottom: 40px!important;
}




.article-meta {
	background-color: #F6F7F6;
	padding: 24px 60px;
	margin-top: 80px;
	display: flex;
	width: 100%;
}

@media screen and (max-width: 768px) {
	.article-meta {
		padding: 30px 20px;
		display: block;
	}
}

.article-meta .author-block {
	padding-right: 26px;
	border-right: 1px solid #7BA327;
	text-align: center;
	display: flex;
	
}
@media screen and (max-width: 768px) {
	.article-meta .author-block {
		border-right: none;
		display: block;
		border-bottom: 1px solid #7BA327;
		padding-bottom: 30px;
		margin-bottom: 30px;
	}
}
.article-meta .author-block .author-face .author-img {
	width: 134px;
	height: 134px;
}

.article-meta .author-block .author-face .author-img img {
	width: 134px;
	height: 134px;
}
@media screen and (max-width: 768px) {
	.article-meta .author-block .author-face .author-img {
		width: 90px;
		height: 90px;
	}
	.article-meta .author-block .author-face .author-img img {
		width: 90px;
		height: 90px;
	}

}

.article-meta .author-block .author-face .name {
	color: #7BA327;
	font-size: 14px;
	font-weight: 700;
	padding-top: 12px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.article-meta .author-block .author-face .name {
		font-size: 12px;
	}
}
@media screen and (min-width: 769px) {
	.article-meta .author-block .author-face .name span {
		display: none;
	}
}


.article-meta .author-block .author-info {
	padding-left: 28px;
}

.article-meta .author-block .author-info .label{
	font-size: 20px;
	font-weight: 700;
	color: #7BA327;
}

.article-meta .author-block .author-info .desc{
	font-size: 14px;
	padding-top: 12px;
}


.article-meta .supervisor-block {
	padding-left: 26px;
	text-align: center;
	display: flex;
}

@media screen and (max-width: 768px) {
	.article-meta .supervisor-block {
		display: block;
		padding-left: 0;
	}
}

.article-meta .supervisor-block .supervisor-face .supervisor-img {
	width: 134px;
	height: 134px;
}
.article-meta .supervisor-block .supervisor-face .supervisor-img img {
	width: 134px;
	height: 134px;
}
@media screen and (max-width: 768px) {
	.article-meta .supervisor-block .supervisor-face .supervisor-img {
		width: 90px;
		height: 90px;
	}
	.article-meta .supervisor-block .supervisor-face .supervisor-img img {
		width: 90px;
		height: 90px;
	}
}
.article-meta .supervisor-block .supervisor-face .name {
	text-align: center;
}

.article-meta .supervisor-block .supervisor-face .name {
	color: #7BA327;
	font-size: 14px;
	font-weight: 700;
	padding-top: 12px;
}
@media screen and (max-width: 768px) {
	.article-meta .supervisor-block .supervisor-face .name {
		font-size: 12px;
	}
}

.article-meta .supervisor-block .supervisor-info {
	padding-left: 28px;
}

.article-meta .supervisor-block .supervisor-info .label{
	font-size: 20px;
	font-weight: 700;
	color: #7BA327;
}

.article-meta .supervisor-block .supervisor-info .desc{
	font-size: 14px;
	padding-top: 12px;
}

.author-block,
.supervisor-block {
  width: 50%; /* 横幅1:1 */
  box-sizing: border-box;
}

/* 画面幅600px以下で縦並び */
@media screen and (max-width: 768px) {
  .author-block,
  .supervisor-block {
    width: 100%;
  }
}

/* author-face と supervisor-face を常に横並びにしたい場合 */
.article-meta > .author-block,
.article-meta > .supervisor-block {
  display: flex; /* このflexは face と info を横並びにするためのもの */
  flex-direction: row; /* 常に横方向 */
}