/*
Theme Name: wp-yutaka-new
Theme URI: https://e-kobo.co.jp
Description: ユタカ造園の新しいWordPressテーマ - 新サイトとの統一感を持たせたデザイン
Author: Yutaka Landscape
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: wp-yutaka-new
*/

/* 新サイトのスタイルをインポート */
@import url('../../assets/css/style.css');

/* WordPressテーマ専用の調整スタイル */
body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

/* WordPressコンテンツエリアの調整 */
.site-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* 記事コンテンツのスタイル */
.entry-content {
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: #2c3e50;
    margin-top: 2em;
    margin-bottom: 1em;
    font-weight: 700;
}

.entry-content h1 { font-size: 2rem; }
.entry-content h2 { font-size: 1.8rem; }
.entry-content h3 { font-size: 1.6rem; }
.entry-content h4 { font-size: 1.4rem; }
.entry-content h5 { font-size: 1.2rem; }
.entry-content h6 { font-size: 1rem; }

.entry-content p {
    margin-bottom: 1.5em;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5em;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 0.5em;
}

.entry-content blockquote {
    border-left: 4px solid #007bff;
    padding-left: 20px;
    margin: 2em 0;
    font-style: italic;
    color: #666;
}

/* 記事メタ情報 */
.entry-meta {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}

.entry-meta span {
    margin-right: 20px;
}

.entry-meta i {
    margin-right: 5px;
    color: #007bff;
}

/* 記事ナビゲーション */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
}

.post-navigation .nav-next {
    text-align: right;
}

.post-navigation a {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.post-navigation a:hover {
    background: #0056b3;
}

/* コメントエリア */
.comments-area {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-body {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.comment-author {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.comment-metadata {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.comment-content {
    line-height: 1.6;
}

/* サイドバー */
.widget-area {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget a:hover {
    color: #0056b3;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .site-content {
        padding: 20px 15px;
    }
    
    .entry-content h1 { font-size: 1.6rem; }
    .entry-content h2 { font-size: 1.4rem; }
    .entry-content h3 { font-size: 1.2rem; }
    
    .post-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .post-navigation .nav-previous,
    .post-navigation .nav-next {
        text-align: center;
    }
}
.breadcrumb-current{
	background-color: #c5c8cb!important;
}