@charset "UTF-8";
/* CSS Document */
/**************************************************
*制作：Shinichi Yamazaki
*Created Date：2022/07
*https://design-momonga.jp/
 レスポンシブレイアウトモバイルファーストでの記述。
***************************************************/

.contents-wrapper{
    width: 85%;
    margin: 0 auto 0 auto;
    padding: 30px 0;
}
main{
    line-height:1.5;
}
ul.prev-next {
    width: 85%;
    margin: 0 auto 25px auto;
    display: flex;
    justify-content: space-between;
}
ul.prev-next li{
    text-align:center;
    width:33.333%;
    letter-spacing: 0.04rem;
}
#post-date {
    margin-bottom: 5px;
    font-weight: 500;
    color:#666;
}
.category-name{
    margin-right: 7px;
    color: #e50012;
    font-weight: 500;
    font-size: 1.2rem;
}
.category-name:last-child{
    margin-right: 0;
}
.head-line1 {
    font-size: 1.6rem;
    font-weight: 500;
    padding-bottom: 15px;
    border-bottom: 1px dotted #333;
    margin: 0 0 15px 0;
    line-height: 1.3;
    letter-spacing: 0.05rem;
}
#post-body p,
#post-body ul,
#post-body ol,
#post-body dl,
#post-body h1,
#post-body h2,
#post-body h3,
#post-body h4,
#post-body h5,
#post-body h6
{
    margin: 15px 0;
    line-height: 1.5;
}
#post-body p{
    text-align: justify;
}
/*********************************************
*タブレット（600px以上の場合）
**********************************************/
@media screen and (min-width:600px){
	
}
/*********************************************
*PC（960px以上の場合）
**********************************************/
@media screen and (min-width:960px){

	.contents-wrapper{
        max-width: 1120px;
        margin: 0 auto 0 auto;
        padding: 45px 0;
    }
    ul.prev-next {
      width: 35%;
      margin: 0 auto 35px auto;
    }
    main{
        max-width: 80%;
        margin: 0 auto;
    }
    .category-name{
    margin-right: 7px;
        font-size: 1.4rem;
    }
    .head-line1 {
      font-size: 2rem;
    }
    #post-body p{
        line-height: 1.8;
    }
}