/*
Theme Name: English Club
Theme URI: https://english-club.org
Author: English Club
Author URI: https://english-club.org
Description: 英語教育情報局「イングリッシュ・クラブ」の公式テーマ。アプリ、スクール、フォニックス、英検など、役立つ情報を発信。
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: english-club
*/

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #ffffff;
    color: #333333;
    -webkit-font-smoothing: antialiased;
}

.font-english {
    font-family: 'Lato', sans-serif;
}

.font-logo {
    font-family: 'Pacifico', cursive;
}

/* Custom image aspect ratios */
.aspect-og {
    aspect-ratio: 1200 / 630;
}

/* Article Content Styles */
.article-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    padding-bottom: 0.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid #333;
}

.article-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 4px solid #333;
}

.article-content p {
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content ul {
    list-style-type: disc;
}

.article-content ol {
    list-style-type: decimal;
}

.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.article-content blockquote {
    border-left: 4px solid #e5e7eb;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: #6b7280;
    font-style: italic;
}

.article-content a {
    color: #2563eb;
    text-decoration: underline;
}

.article-content a:hover {
    color: #1d4ed8;
}

.article-content img {
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.article-content .wp-block-table {
    width: 100%;
    margin: 1.5rem 0;
    overflow-x: auto;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
}

.article-content th,
.article-content td {
    border: 1px solid #e5e7eb;
    padding: 0.75rem 1rem;
    text-align: left;
}

.article-content th {
    background-color: #f9fafb;
    font-weight: 700;
}

/* Box Styles */
.info-box {
    background-color: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.warning-box {
    background-color: #fefce8;
    border: 1px solid #fde047;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.point-box {
    background-color: #f9fafb;
    border: 2px solid #333;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

/* Share Popup */
#share-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: #333;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1000;
}

#share-popup.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}