/*
  Skin Name: たぷたぷ2
  Description: 恰幅の良い彼のスキンです
  Author: 恰幅の良い彼
  Version: 2.0.0
  Priority: 9900000
*/
/*以下にスタイルシートを記入してください*/

#header {
    border-bottom: 5px solid #f8bb00;
}

.entry-card-title, .related-entry-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin: 0.5rem 0;
  line-height: 1.3;
  position: relative;
  padding: 0.7rem 0.5rem 0.6rem 1.1rem;
  transition: color 0.3s ease;
}

.entry-card-title::before, .related-entry-card-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 8px;
  height: 80%;
  background-color: #E0370B;
  border-radius: 2px;
}

.entry-card-title, .related-entry-card-title :hover {
  color: #E0370B;
  cursor: pointer;
}

.entry-title, .archive-title {
	font-size: 2rem;
	border-left: 12px solid #E0370B;
	padding: 1rem;
	margin: 2rem 0 1rem;
	font-family: 'Helvetica Neue', 'Segoe UI', sans-serif;
	background: linear-gradient(to right, #E0370B10, transparent);
	transition: color 0.3s ease, transform 0.3s ease;
}

.entry-title, .archive-title :hover {
  color: #B52A00;
  transform: translateX(3px);
  cursor: pointer;
}

.entry-content {
    margin-top: 3em;
    margin-bottom: 0em;
}

.sidebar h3 {
  font-size: 1.1rem;
  font-weight: bold;
  color: #f8bb00;
  background: linear-gradient(to right, #950008 0%, #5a0005 100%);
  padding: 0.6rem 1rem;
  border-left: 6px solid #f8bb00;
  border-radius: 4px;
  margin: 1.5rem 0 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
}

#footer {
    border-top: 5px solid #f8bb00;
}

.footer-bottom {
    margin-top: 0px;
}

/*以下コメント欄のカスタマイズ*/

.comment-list { /*全体の枠*/
  border: 2px solid #A8050E;
  padding: 0;
  border-radius: 10px 10px 0 0;
}
.comment-title { /*タイトルの装飾*/
  margin: 0;
  font-size: 24px;
  background: #A8050E;
  color: #fff;
  padding-left: 20px;
  font-weight: normal;
}
.comment-title:before { /*タイトルにアイコンを付ける*/
  font-family: FontAwesome;
  content: '\f27b';
  color: #fff;
  margin-right: 4px;
}
.commets-list {
  padding: 20px 20px 0 20px;
}
.commets-list > li {
  border-top: 2px dashed #f8bb00; /*スレッドを区切る点線*/
  margin: 30px 0;
  padding-top: 20px;
}
.commets-list > li:first-child {
  border: none;
  margin-top: 0;
  padding-top: 0;
}
.commets-list .children {
  border-left: 2px solid #ccc; /*返信コメントの左側のボーダー*/
  margin: 0;
}
.commets-list .avatar { /*アバターの位置調整*/
  float: left;
  border-radius: 50%;
  margin-right: 10px;
}
.comment-content { /*コメントの吹き出し*/
  background: #e2e2e2;
  padding: 2px 10px;
  margin: 10px 0 6px 0;
  border-radius: 10px;
  position: relative;
}
.comment-content::before { /*吹き出しの三角部分*/
  content: "";
  position: absolute;
  top: -14px;
  left: 50px;
  border-style: solid;
  border-color: transparent transparent #e2e2e2 transparent;
  border-width: 0 20px 20px 0;
}
.comment-content p { /*吹き出し内の文字を調整*/
  font-size: 14px;
  margin: 1em 0;
  line-height: 1.5em;
}
.comment-reply-link { /*返信ボタンの装飾*/
  color: #fff;
  border: none;
  border-radius: 20px;
  background: #A8050E;
  padding: 1px 12px;
  transition: 0.5s;
}
.comment-reply-link:hover { /*返信ボタンのマウスホバー時*/
  color: #fff;
  background: #49add1;
  transition: 0.5s;
}
.commets-list .comment-body {
  margin-bottom: 0;
}
