﻿.blogcard {
	padding: 1rem;
	color: #666;
	position: relative;
	border-color: #68d6cb !important; /* 枠線の色を変更 */
}

a.blogcard-wrap:hover{
	background-color: transparent!important;
	opacity: 0.8;
}

a.blogcard-wrap:hover img.blogcard-thumb-image{
	transform: scale(1.1);
	transition: .3s;
}

.blogcard-thumbnail {
	line-height: 0;
	margin-right: 1rem;
	overflow: hidden;
}

.blogcard-title{
	margin-bottom: .5rem;
}

.blogcard-snipet{
	font-size: 70%;
	line-height: 1.7;
	padding-right: 10%;
}

@media screen and (max-width: 480px){
	.blogcard-thumbnail{
		width: 40%;
	}
	.blogcard-snipet{
		display: none;
	}
}

.internal-blogcard-footer{
	display: none; /* 内部ブログカードのアイコンとURLを非表示 */
}

.blogcard::before{
	content: 'あわせて読みたい'; /* タイトルの文言 */
	position: absolute;
	top: -.8rem;
	left: auto;
	font-size: 60%;
	background-color: #68d6cb; /* タイトルの背景色 */
	padding: .6em 1em;
	font-weight: bold;
	color: #fff;  /* タイトルの文字色 */
	border-radius: 2px;
}

.internal-blogcard::after{
	content: '続きを読む \00bb'; /* 内部リンク右下枠の文言 */
	position: absolute;
	bottom: .5rem;
	right: 1rem;
	font-size: 70%;
	background-color: #ffd242; /* 内部リンク右下枠の背景色 */
	padding: .4em 3em;
	font-weight: bold;
	color: #fff; /* 内部リンク右下枠の文字色 */
	border-radius: 2px;
}

/* ▼ ボタン（通常） */
.button,
.btn {
  background-color: #98C9B9 !important; /* ミント */
  color: #ffffff !important;
  border-radius: 6px;
}

/* ▼ ボタン（ホバー時） */
.button:hover,
.btn:hover {
  background-color: #A65D5D !important; /* 赤茶 */
  color: #ffffff !important;
}

/* ▼ H2 見出し */
.article h2 {
  background-color: #98C9B9 !important; /* ミント */
  color: #ffffff !important;
  padding: 12px 16px;
  border-radius: 4px;
}

/* ▼ H3 見出し */
.article h3 {
  border-left: 4px solid #A65D5D !important; /* 赤茶 */
  padding-left: 12px;
}

/* ▼ リンク色 */
.article a {
  color: #98C9B9; /* ミント */
}
.article a:hover {
  color: #A65D5D; /* 赤茶 */
}

/* ▼ 背景をほんのり薄グレーに */
body {
  background-color: #F7F9F8 !important;
}