/* 記事ページのメインコンテンツ */
.article-main {
    max-width: 900px;
    margin: 120px auto 50px; /* 上部余白を確保 */
    padding: 20px;
    text-align: center;
}

/* 記事タイトル */
.article-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* 記事の画像コンテナ */
.article-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* 記事の画像 */
.article-image {
    max-width: 640px;
    height: auto;
    border-radius: 8px;
   // box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* 記事本文 */
.article-content {
    font-size: 20px;
    line-height: 1.8;
    text-align: left;
    margin-top: 20px;
}


/* シェアセクション */
.share-section {
    text-align: center;
    margin-top: 40px;
    padding: 40px;
    border-top: 2px solid #ddd;
}

/* シェアボタンのリンク */
.share-button {
    display: inline-block;
    margin: 10px;
    transition: transform 0.2s ease-in-out;
}
/* リンク要素の設定 */
.article-content a {
    color: #222288;
    text-decoration: none;
}

/* 引用部分の設定 */
.article-content blockquote{

    position:relative;
    border:1px solid #8BC0B8;
    border-radius:10px;
    padding:20px;
	background-color:#F5F2F2;

}
/*テーブルタグ　*/
.article-content table{
 	border-radius: 10px;
    border-spacing: 0;
    border: none;
    border-left: 1px solid #bbccee;
    border-top: 1px solid #bbccee;

}.article-content tbody{
 	border-radius: 10px;


}
.article-content tr>* {
 padding: 5px 10px;
    border: none;
    border-right: 1px solid #bbccee;
    border-bottom: 1px solid #bbccee;
 }
.article-content tr:first-child>*:first-child{
    border-radius: 10px 0 0 0;
}
.article-content tr:first-child>*:last-child{
    border-radius: 0 10px 0 0;
}
.article-content tr:last-child>*:first-child{
    border-radius: 0 0 0 10px;
}
.article-content tr:last-child>*:last-child{

	border-radius: 0 0 10px 0;
}

/*HR水平線タグ*/
.article-content hr {
height: 1px;
width: 90%;
background-color: #ccbbbb;
border: none;
}

.share-button img {
    width: 50px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
/* ボックス */
.article-content div {

 justify-content: center;
    border:1px solid #FFF500;
    width: 90%; 
padding: 10px;
margin:20px 5px 0px 20px;
background-color: #Fff8f3;

border-radius: 10px;
}

/*リスト装飾*/
ul {
  /*2px 水色 破線を指定*/
  border: 2px skyblue dashed; 
}
/* シェアボタンのホバーエフェクト */
.share-button:hover {
    transform: scale(1.1);
}

/* X（Twitter）ボタン */
.x-button img {
   /*  background-color: #1DA1F2; X（旧Twitter）のブランドカラー */
    padding: 5px;
    border-radius: 8px;
}

/* Facebook ボタン */
.facebook-button img {
    background-color: #1877F2; /* Facebook のブランドカラー */
    padding: 5px;
    border-radius: 8px;
}

