/* ============================================================================== */
/* ブログページの設定
================================================================================= */
/************************************
* 共通設定
*************************************/
/* 画像のトリミング枠 */
.blog_image_zoom{
    margin-bottom: 5px;
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 100 / 52.5;
}

.blog_image_zoom a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog_image_zoom img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100% !important;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.5s ease;
}

.blog_image_zoom:hover img {
    transform: scale(1.05);
}

/* テーブル */
table.table_three_column *{
    box-sizing: border-box;
}

table.table_three_column{
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

table.table_three_column tbody tr th,
table.table_three_column tbody tr td{
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    padding: 10px;
}

table.table_three_column tbody tr th{
    width: 120px;
}

table.table_three_column tbody tr td{
    width: calc((100% - 120px) / 2);
}

/*table.table_three_column tbody tr:nth-child(odd) th,
table.table_three_column tbody tr:nth-child(odd) td {
    background-color: #FFF;
}*/

table.table_three_column tbody tr:nth-child(even) th,
table.table_three_column tbody tr:nth-child(even) td {
    background-color: #F5F5F5;
}

/************************************
* カテゴリーアーカイブページ
*************************************/
.blog_category .search_area{
    margin-bottom: 15px;
}

.blog_category .search_area .col-1{
    background-color: #e8f7ef;
    width: 100%;
    padding: 30px 20px;
    box-sizing: border-box;
}

.blog_category .search_area .col-1 form{
    width: 1100px;
    display: block;
    margin:0 auto;
}

.blog_category .search_area .col-1 form *{
    vertical-align: middle;
}

.blog_category .search_area .col-1 input[type="text"]{
    width: 900px;
    margin-right: 5px;
    height: 30px;
    border: 1px solid #888888;
    -webkit-border-radius : 0;
    -webkit-appearance : none;
    -webkit-tap-highlight-color : rgba(0,0,0,0);
}

.blog_category .search_area .col-1 input[type="submit"]{
    width: 180px;
    height: 32px;
    border-style: none;
    color: #FFF;
    background-color: #888888;
    font-weight: 700;
    font-size: 1.5rem;
    -webkit-appearance: none;
}

.blog_category .search_area .col-1 input[type="submit"]:hover{
    background-color: #000;
    cursor: pointer;
}

.blog_category .tag_area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 0 80px;
}

.blog_category .tag_area a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 32px;
    padding: 2px 20px;
    border: 1px solid #00a84d;
    border-radius: 5px;
    background-color: #00a84d;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
}

.blog_category .tag_area a:hover {
    color: #000;
    border-color: beige;
    background-color: beige;
}

.blog_category .article_area{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 100px;
}

.blog_category .article_area::after{
    content: "";
    display: block;
    width: calc((100% - 60px) / 3);
}

.blog_category .article_area .col-1{
    width: calc((100% - 60px) / 3);
    margin: 0 0 30px;
}

.blog_category .article_area .col-1 a{
    display: block;
    margin-bottom: 5px;
}

.blog_category #followUsArea{
    margin: 0 auto;
    border: 5px solid #F5F5F5;
    text-align: center;
    padding: 30px 20px 50px;
    width: 600px;
}

.blog_category #followUsArea p{
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.blog_category #followUsArea .iconArea{
    width: 350px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 0 auto;
}

.blog_category #followUsArea .iconArea > a{
    display: block;
    width: calc((100% - 80px) / 5);
}


/************************************
* タグアーカイブページ
*************************************/
.blog_tag h2{
    font-size: 2.4rem !important;
    margin: 0 0 10px 0 !important;
}

.blog_tag .description_area{
    margin: 0 0 60px;
}

.blog_tag .article_area{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 100px;
}

.blog_tag .article_area .col-1{
    width: calc((100% - 30px) / 2);
    margin: 0 0 30px;
}

.blog_tag .article_area .col-1 a{
    display: block;
    margin-bottom: 5px;
}

#main_block.blog_tag .searchArea{
    margin: 0;
}

/************************************
* 投稿ページ
*************************************/
#blog{
    width:calc(100% - 380px);
    float: left;
    margin:30px 60px 180px 0;
}  
    
#blog h2{
    font-size: 2.4rem;
    margin: 0 0 10px;
}

#blog .tag_area{
    margin: 0 0 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#blog .tag_area > a{
    display: block;
    font-size: 1.4rem;
    color: #FFF;
    background-color: #00a84d;
    box-sizing: border-box;
    border-radius: 5px;
    padding: 2px 8px;
    text-decoration: none;
}

#blog .tag_area > a:hover{
    color: #000;
    background-color: beige;
}

#blog .entry_content .post_thumbnail_frame {
    width: 100%;
    padding: 30px;
    margin-bottom: 30px;
    background: #f5f5f5;
    box-sizing: border-box;
}

#blog .entry_content .post_thumbnail_frame img {
    display: block;
    max-width: calc(100% - 60px);
    width: 100%;
    height: auto;
    margin: 0 auto;
}

#blog .entry_content h3{
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 12px;
}

#blog .entry_content h3::after{
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 6px;
    border-top: 2px solid #45a76d;
    border-bottom: 1px solid #45a76d;
}

#blog .entry_content h4{
    font-size: 1.8rem;
    border-left: 4px solid #45a76d;
    padding-left: 10px;
    line-height: 2.8rem;
}

#blog .entry_content ul{
    list-style-type: disc;
    margin-left: 2.0rem;
}

#blog .entry_content ul li::marker {
    color: #008000;
}

#blog .entry_content ol{
    margin-left: 2.4rem;
}

#blog .entry_content .bk1{
    font-size: 1.8rem;
    padding: 10px 20px;
    background-color: #f0fff0;
}

#blog .entry_content .gray_background{
    padding: 20px;
    background-color: #f5f5f5;
}

#blog .entry_content .item_recommend_block{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    background: #f5f5f5;
    padding:30px 0;
}

#blog .entry_content .item_recommend_block .image{
    width: 300px;
    text-align: center;
    box-sizing: border-box;
}

#blog .entry_content .item_recommend_block .image img{
    width: 200px;
    margin: 0;
}

#blog .entry_content .item_recommend_block .text{
    width: calc(100% - 200px);
    text-align: center;
    box-sizing: border-box;
}

#blog .entry_content .item_recommend_block .text p{
    font-size: 2.0rem;
    margin-bottom: 30px;
}

#blog .entry_content .shop_info a.button{
    display: block;
    width: 400px;
    background-color: rgba(204,0,0,1.0);
    color: #FFF;
    text-align: center;
    padding: 10px 0;
    margin: 0 auto;
    text-decoration: none;
}

#blog .entry_content .shop_info a.button:hover,
#blog .entry_content .shop_info a.button:visited{
    color: #FFF;
}

#blog .entry_content .shop_info a.button:hover{
    background-color:rgba(204,0,0,0.5);
}

/*#blog #followUsArea{
    margin: 100px 0 40px;
    border: 5px solid #F5F5F5;
    text-align: center;
    padding: 30px 20px 50px;
}

#blog #followUsArea p{
    font-size: 1.8rem;
    margin-bottom: 20px;
}

#blog #followUsArea .iconArea{
    width: 350px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 0 auto;
}

#blog #followUsArea .iconArea > a{
    display: block;
    width: calc((100% - 80px) / 5);
}*/

#blog .next_article_area h3{
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

#blog .next_article_area h3::after{
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 6px;
    border-top: 2px solid #45a76d;
    border-bottom: 1px solid #45a76d;
}

#blog .next_article_area .article_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
}

#blog .next_article_area .article_list::after{
    content: "";
    display: block;
    width: calc((100% - 40px) / 3);
}

#blog .next_article_area .article_list .col-1{
    width: calc((100% - 40px) / 3);
    margin-bottom: 20px;
}

#blog .next_article_area .article_list .col-1 p{
    font-size: 1.4rem;
}


/************************************
* サイドバー
*************************************/
.blog_recommend_block {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 0 0 20px;
}

.blog_recommend_block .image {
    position: relative;
    width: 45%;
}

.blog_recommend_block .image a {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.blog_recommend_block .image img {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
}

.blog_recommend_block .rank_badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #ecd357;
    color: #FFF;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
}

.blog_recommend_block .rank_badge.second {
    background: #a9c6d5;
}

.blog_recommend_block .rank_badge.third {
    background: #c58459;
}

.blog_recommend_block .rank_badge.other {
    background: #bfbfbf;
}

.blog_recommend_block .text {
    width: calc(55% - 10px);
}

.blog_recommend_block .text a {
    font-size: 1.4rem;
}