*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

a{
    text-decoration-line: none;
    color: black;
}

p{
    font-family: "Noto Sans JP", sans-serif;
}

/*---------------------------------------
記事全体
----------------------------------------*/
.articleSinglePage{
    margin:200px;
}


.single-header .imageA{
    width: 100%;
    height:450px;
    border-radius: 30px;
    object-fit: cover;
    object-position: top;
}

.article-single .imageB{
    width: 420px;
    height:240px;
    border-radius: 10px;
    margin: 30px 0;
    object-fit: cover;
    object-position: top;
}



/*---------------------------------------
single-header　記事ヘッダー部分
----------------------------------------*/
.single-header{
    display: flex;
    flex-direction: column;
    gap:10px
}

.category-day{
    display: flex;
    gap:30px;
    align-items: end;
}
/*--------------category------------*/
.single-header .category{
    position: relative;
    display: flex;
    gap:10px;
    align-items: end;
}

.single-header .category .circle{
    position: absolute;
    width: 50px;
    height: 25px;
    top:0px;
    left: -25px;
    border-radius: 120%;
    z-index: -10;
    transform: rotate(-50deg);
    background-color: #F5AB00;
}

.single-header .category .category-main{
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
}

.single-header .category .category-sub{
    font-weight: 300;
    letter-spacing: 2px;
}


/*--------------day------------*/
.single-header .day p{
    letter-spacing: 2px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
}

/*--------------title------------*/
.single-header h3{
    font-size: 32px;
}


/*--------------tag------------*/
.single-header .tag{
    display: flex;
    gap:10px;
    font-size: 14px;
}


/*--------------image------------*/




/*---------------------------------------
single-textarea　テキストエリア部分
----------------------------------------*/
.single-textarea{
    display: flex;
    flex-direction: column;
    gap:30px;
}
/*--------------title------------*/
.single-textarea .title{
    display: flex;
    gap:20px;
}

.single-textarea .title .square{
    width: 12px;
    background-color:#F5AB00;
}

.single-textarea .title p{
    font-size: 28px;
    font-weight: 500;
}

/*--------------text-----------*/
.single-textarea .text{
    line-height: 2;
}

/*--------------annotation-----------*/
.single-textarea .annotation {
    line-height: 2;
    font-size:12px ;
    font-weight: 300;
}


/*---------------------------------------
patternA　パターンA　画像２つ
----------------------------------------*/
.patternA{
    display: flex;
    justify-content: space-between;
}


/*---------------------------------------
patternB　パターンB　画像＆ボックス大１つ
----------------------------------------*/
.patternB{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.patternB .textarea{
    background-color: antiquewhite;
    width: 420px;
    max-height: 240px;
    border-radius: 10px;
}

.patternB .textarea p{
    height: auto;
    padding:20px 30px;
    line-height: 2.2;
    font-size: 20px;
    font-weight: 500;
}

/*---------------------------------------
patternC　パターンC　ボックス＆画像
----------------------------------------*/
.patternC{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.patternC .textarea{
    display: flex;
    flex-direction: column;
    gap:15px;
}

.patternC .textarea p{
    background-color: antiquewhite;
    width: 400px;
    height: auto;
    padding:15px 30px;
    line-height: 2;
    font-size: 20px;
    font-weight: 500;
    border-radius: 10px;
}

/*---------------------------------------
btnareaA　ボタン１つ
----------------------------------------*/
.btnareaA{
    text-align: center;
}

.btnareaB{
    display: flex;
    justify-content: center;
    gap:30px;
}


.btnareaA img,
.btnareaB img{
    width: 350px;
    height: auto;
    transition: 0.4s ease;
}

.btnareaA img{
    margin: 0 auto;
}

.btnareaA:hover img,
.btnareaB img:hover{
    opacity: 0.6;
}

/*---------------------------------------
single-footer　投稿記事フッター
----------------------------------------*/
.single-footer{
    display: flex;
    gap:30px;
    flex-direction: column;
}

/*--------------titlearea----------*/
.single-footer .titlearea{
    display: flex;
    gap:10px;
    align-items: center;
}

.single-footer .titlearea .circle{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #F5AB00;
}

.single-footer .titlearea .select{
    font-size: 22px;
    font-weight: 600;
}


/*--------------textarea----------*/
.single-footer{
    padding: 30px 50px;
    border: #F5AB00 4px solid;
    border-radius: 30px;
}

.single-footer .textarea{
    display: flex;
    flex-direction: column;
    gap:10px;
}

.single-footer .textarea .group{
    display: flex;
}

.single-footer .textarea .group .title{
    width: 100px;
    font-weight: 500;
}

.single-footer .textarea .group .name{
line-height: 1.8;
}