/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #C4B373 0%, #9D8C56 50%, #7D6C46 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(157, 140, 86, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #D4C383 0%, #B49C66 50%, #8D7C56 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(157, 140, 86, 0.4);
}

.btn-hero {
    background: linear-gradient(135deg, #C4B373 0%, #9D8C56 50%, #7D6C46 100%);
    color: white;
    font-size: 16px;
    padding: 16px 32px;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 15px rgba(157, 140, 86, 0.3);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: linear-gradient(135deg, #D4C383 0%, #B49C66 50%, #8D7C56 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(157, 140, 86, 0.4);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 5px 18px rgba(157, 140, 86, 0.35);
}

.btn-large:hover {
    box-shadow: 0 7px 25px rgba(157, 140, 86, 0.45);
}
/* ユーティリティ */
.center{
    text-align:center
}
.mt-2{margin-top:var(--space-2)}
.mt-4{margin-top:var(--space-4)}
.mt-6{margin-top:var(--space-6)}
.mt-8{margin-top:var(--space-8)}
/* Header */
.header {
    background: white;
    color: #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e0e0e0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo-img {
    height: 52px;
    width: auto;
    max-width: 260px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0 auto;
}

.nav-menu li {
    margin: 0 12px;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #0000CD;
}

/* Hero Section */
.hero {
    background: #f8f9fa;
    color: #333;
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #0000CD;
}

.hero-main-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #333;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #666;
}

.magazine-cover {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    /* 雑誌全体の厚みを感じさせる背景効果 */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

.magazine-mockup {
    width: 300px;
    height: 400px;
    position: relative;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

/* 擬似要素による罫線を削除 */

.magazine-cover-image {
    width: 85%;
    height: 90%;
    max-width: 280px;
    max-height: 380px;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    /* 80ページの雑誌の厚みを影効果のみで表現 */
    box-shadow: 
        /* メインの影 */
        0 25px 50px rgba(0, 0, 0, 0.4),
        /* ページの重なり効果（80ページの厚み表現） */
        2px 2px 0 rgba(255, 255, 255, 0.9),
        4px 4px 0 rgba(240, 240, 240, 0.8),
        6px 6px 0 rgba(230, 230, 230, 0.7),
        8px 8px 0 rgba(220, 220, 220, 0.6),
        10px 10px 0 rgba(210, 210, 210, 0.5),
        /* 厚みの影 */
        12px 12px 20px rgba(0, 0, 0, 0.3),
        /* 表面のハイライト */
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 1px 0 0 rgba(255, 255, 255, 0.2);
    transform: rotateY(-15deg) rotateX(5deg) translateZ(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    position: relative;
    z-index: 10;
}

.magazine-cover-image:hover {
    transform: rotateY(-10deg) rotateX(2deg) translateZ(8px);
    box-shadow: 
        /* メインの影（強化） */
        0 30px 60px rgba(0, 0, 0, 0.5),
        /* ページの重なり効果（拡張） */
        3px 3px 0 rgba(255, 255, 255, 0.9),
        6px 6px 0 rgba(240, 240, 240, 0.8),
        9px 9px 0 rgba(230, 230, 230, 0.7),
        12px 12px 0 rgba(220, 220, 220, 0.6),
        15px 15px 0 rgba(210, 210, 210, 0.5),
        /* 厚みの影（拡張） */
        18px 18px 25px rgba(0, 0, 0, 0.4),
        /* 表面のハイライト */
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 1px 0 0 rgba(255, 255, 255, 0.3);
}

/* Readers Catchphrase Section */
.readers-catchphrase {
    padding: 0;
    background: linear-gradient(135deg, #0000CD 0%, #4169E1 50%, #1E90FF 100%);
    color: white;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.catchphrase-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    text-align: center;
}

.catchphrase-text {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin: 0;
}

/* Magazine Preview Section */
.magazine-preview {
    padding: 60px 0 80px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

/* Opinion Section */
.opinion-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.magazine-preview-content {
    max-width: 1000px;
    margin: 0 auto;
}

.magazine-preview .section-header {
    margin-bottom: 30px;
}

.opinion-section .section-header {
    margin-bottom: 30px;
}

.preview-header {
    text-align: center;
    margin-bottom: 50px;
}

.preview-title {
    font-size: 36px;
    font-weight: 900;
    color: #0000CD;
    margin-bottom: 20px;
    line-height: 1.2;
}

.preview-description {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.magazine-pages {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 20px 40px 20px;
}

.magazine-pages-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 12px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: contain;
    cursor: pointer;
}

.magazine-pages-image:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 12px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.click-to-expand {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 0;
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.magazine-pages:hover .click-to-expand {
    opacity: 1;
    color: #666;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: #0000CD;
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-description h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.section-description p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Strong Point Section */
.strong-point {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.point-item {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.point-header {
    margin-bottom: 0;
}

.point-header h4 {
    font-size: 16px;
    color: #0000CD;
    font-weight: 700;
    margin-bottom: 10px;
}

.point-header h3 {
    font-size: 28px;
    color: #333;
    font-weight: 400;
}

.point-header strong {
    color: #333;
    font-weight: 400;
}

.point-item > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.point-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.example {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #0000CD;
}

.example h5 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.example p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.cta-section {
    text-align: center;
    margin-top: 40px;
}

/* Editor Message Section */
.editor-message {
    padding: 100px 0;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.editor-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.editor-photo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.editor-image {
    width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.editor-image:hover {
    transform: translateY(-5px);
}

.editor-message-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.4;
}

.message-text {
    margin-bottom: 40px;
}

.message-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.message-text .excerpt {
    font-size: 14px;
    color: #666;
    font-style: italic;
    text-align: right;
    margin-bottom: 0;
}

.editor-profile {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #0000CD;
}

.editor-profile h4 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.profile-titles {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.profile-titles span {
    font-size: 14px;
    color: #333;
    padding: 2px 0;
    line-height: 1.2;
}

/* Digital Content Section */
.digital-content {
    padding: 100px 0;
    background: white;
}

.digital-features {
    margin-bottom: 60px;
}

.feature-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.feature-badge {
    display: inline-block;
    background: #0000CD;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-large h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.feature-large p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.video-placeholder {
    background: linear-gradient(135deg, #A8C8FF 0%, #0000CD 70%, #4169E1 100%);
    height: 200px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.video-placeholder i {
    font-size: 48px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.feature-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #0000CD;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.article-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.article-examples span {
    background: #f0f0f0;
    color: #333;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.convenience-features {
    margin-top: 80px;
}

.convenience-features h3 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.convenience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.convenience-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.convenience-item i {
    font-size: 36px;
    color: #0000CD;
    margin-bottom: 20px;
}

.convenience-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.convenience-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-plan {
    padding: 100px 0;
    background: #f8f9fa;
}

/* Single Pricing */
.single-pricing {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.pricing-card {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    text-align: center;
    max-width: 500px;
    width: 100%;
    border: 2px solid #0000CD;
}

.pricing-card h4 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.price-display {
    margin-bottom: 40px;
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
    color: #0000CD;
    display: block;
    margin-bottom: 8px;
}

.price-period {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.plan-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-details li {
    font-size: 16px;
    color: #333;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
}

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

.plan-details li::before {
    content: "✓";
    color: #0000CD;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* App Compatibility */
.app-compatibility {
    padding: 60px 0;
    background: white;
}

.app-compatibility h3 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.compatibility-table {
    overflow-x: auto;
}

.compatibility-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.compatibility-table th,
.compatibility-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.compatibility-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #333;
}

.compatibility-table td {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 40px 0;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-nav li {
    margin: 0 20px 10px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright p {
    margin-bottom: 5px;
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: white;
    text-decoration: underline;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 40px;
    border: none;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #333;
}

.modal h2 {
    margin-bottom: 30px;
    color: #333;
    font-size: 28px;
    font-weight: 700;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0000CD;
}

.form-group textarea {
    height: 80px;
    resize: vertical;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.image-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 95%;
    max-width: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 3001;
    transition: color 0.3s ease;
}

.image-close:hover,
.image-close:focus {
    color: #ccc;
}

.modal-image {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: grab;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.modal-image:active {
    cursor: grabbing;
}

.image-modal-controls {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
}

.zoom-btn,
.reset-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    width: 50px;
    height: 50px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reset-btn {
    width: auto;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
}

.zoom-btn:hover,
.reset-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .nav-menu li {
        margin: 0;
    }

    .logo-img {
        height: 39px;
        max-width: 195px;
    }

    .hero {
        padding: 60px 0;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-main-title {
        font-size: 36px;
    }

    .magazine-mockup {
        width: 250px;
        height: 333px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-description h3 {
        font-size: 20px;
    }

    .magazine-preview,
    .opinion-section,
    .strong-point,
    .digital-content,
    .pricing-plan {
        padding: 60px 0;
    }

    /* Magazine Preview レスポンシブ */
    .preview-title {
        font-size: 28px;
    }

    .preview-description {
        font-size: 16px;
        padding: 0 15px;
    }

    /* Readers Catchphrase レスポンシブ */
    .readers-catchphrase {
        padding: 0;
        min-height: 100px;
    }

    .catchphrase-text {
        font-size: 22px;
    }

    .catchphrase-content {
        padding: 0 30px;
    }

    .magazine-preview {
        padding: 60px 0 60px 0;
    }

    .magazine-pages {
        padding: 15px 15px 30px 15px;
    }

    .magazine-pages-image {
        max-width: 100%;
        border-radius: 8px;
    }

    .click-to-expand {
        font-size: 11px;
        margin-top: 6px;
    }

    .point-item {
        padding: 25px 15px;
    }

    .points-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .point-examples {
        grid-template-columns: 1fr;
    }

    .feature-large {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 40px 30px;
        max-width: 400px;
    }

    .pricing-card h4 {
        font-size: 24px;
    }

    .price-amount {
        font-size: 40px;
    }

    .compatibility-table {
        font-size: 12px;
    }

    .compatibility-table th,
    .compatibility-table td {
        padding: 10px 8px;
    }

    .footer-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .footer-nav li {
        margin: 5px 0;
    }

    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }

    .btn-large {
        padding: 16px 24px;
        font-size: 16px;
    }

    /* Editor Message レスポンシブ */
    .editor-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .editor-image {
        width: 240px;
        height: 300px;
    }

    .editor-message-content h3 {
        font-size: 24px;
        color: #333;
    }

    .message-text p {
        font-size: 15px;
        line-height: 1.7;
    }

    .editor-profile {
        padding: 20px;
        margin-top: 30px;
    }

    .editor-profile h4 {
        font-size: 18px;
        color: #333;
    }
    
    .profile-titles {
        gap: 2px;
    }
    
    .profile-titles span {
        padding: 1px 0;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .point-header h3 {
        font-size: 22px;
        font-weight: 400;
    }

    .feature-large h3 {
        font-size: 24px;
    }

    .pricing-card {
        padding: 30px 20px;
        max-width: 350px;
    }

    .pricing-card h4 {
        font-size: 20px;
    }

    .price-amount {
        font-size: 32px;
    }

    .price-period {
        font-size: 14px;
    }

    .plan-details li {
        font-size: 14px;
    }

    .magazine-mockup {
        width: 200px;
        height: 267px;
    }

    .magazine-cover-image {
        border-radius: 6px;
        width: 90%;
        height: 85%;
        box-shadow: 
            /* モバイル用の控えめな厚み効果 */
            0 15px 30px rgba(0, 0, 0, 0.3),
            1px 1px 0 rgba(255, 255, 255, 0.9),
            2px 2px 0 rgba(240, 240, 240, 0.8),
            3px 3px 0 rgba(230, 230, 230, 0.7),
            4px 4px 0 rgba(220, 220, 220, 0.6),
            5px 5px 10px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    /* Editor Message 小画面対応 */
    .editor-image {
        width: 200px;
        height: 250px;
    }

    .editor-message-content h3 {
        font-size: 20px;
        color: #333;
    }

    .message-text p {
        font-size: 14px;
    }

    .editor-profile h4 {
        font-size: 16px;
        color: #333;
    }

    .profile-titles span {
        font-size: 13px;
        color: #333;
        padding: 1px 0;
        line-height: 1.1;
    }

    /* Magazine Preview 小画面対応 */
    .preview-title {
        font-size: 24px;
    }

    .preview-description {
        font-size: 15px;
    }

    /* Readers Catchphrase 小画面対応 */
    .readers-catchphrase {
        padding: 0;
        min-height: 80px;
    }

    .catchphrase-text {
        font-size: 18px;
    }

    .catchphrase-content {
        padding: 0 20px;
    }

    .magazine-preview,
    .opinion-section {
        padding: 50px 0 50px 0;
    }

    .magazine-pages {
        padding: 15px 10px 25px 10px;
    }

    .click-to-expand {
        font-size: 10px;
        margin-top: 5px;
    }

    /* Image Modal レスポンシブ */
    .image-close {
        top: 15px;
        right: 20px;
        font-size: 30px;
    }

    .modal-image {
        max-width: 95%;
        max-height: 75%;
    }

    .image-modal-controls {
        margin-top: 15px;
        gap: 10px;
    }

    .zoom-btn,
    .reset-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .reset-btn {
        width: auto;
        padding: 10px 16px;
        font-size: 13px;
    }
    
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.point-item,
.feature-item {
    animation: fadeInUp 0.8s ease-out;
}

/* Hover Effects */
.point-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

/* Latest Issues (cover gallery) */
.magazine-issues {
    padding: 80px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.issue-card {
    text-align: center;
}

.issue-cover {
    padding: 10px;
}

.issue-cover img {
    width: 80%;
    height: auto;
    border-radius: 0px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    object-fit: contain;
}

/* キャプション（特集タイトル） */
.issue-caption {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

/* レスポンシブ：タブレットで2列、スマホで1列 */
@media (max-width: 992px) {
    .issues-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .magazine-issues {
        padding: 60px 0;
    }

    .issues-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .issue-caption {
        font-size: 14px;
    }
}
/* Customer Voices Section */
/* Customer Voices Section */
.customer-voices {
    padding: 80px 0;
    background-color: #e9f4ff; /* 実務カレンダー風の淡いブルー */
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.voices-list {
    display: flex;
    flex-direction: column;
    gap: 24px;                 /* カード同士の間隔を少し詰める */
    max-width: 960px;          /* 横幅を制限して中央寄せ */
    margin: 0 auto;
}

/* 1件分の声 */
.voice-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;        /* 余白をややコンパクトに */
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* 画像部分：2:8イメージを保ちつつ少し小さめに */
.voice-image {
    flex: 0 0 15%;
    max-width: 110px;
}

.voice-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
}

/* テキスト部分 */
.voice-text {
    flex: 1;
}

.voice-message {
    font-size: 17px;          /* 文字を少し大きく */
    line-height: 1.8;
    color: #333333;
    margin-bottom: 6px;
}

.voice-meta {
    font-size: 14px;
    color: #666666;
}

/* スマホ表示：上下レイアウトに変更 */
@media (max-width: 768px) {
    .customer-voices {
        padding: 60px 0;
    }

    .voices-list {
        gap: 20px;
    }

    .voice-card {
        flex-direction: column;
        padding: 18px 18px;
        text-align: left;
    }

    .voice-image {
        max-width: 90px;      /* スマホではさらに小さめ */
        flex-basis: auto;
        margin: 0 auto 10px;
    }

    .voice-message {
        font-size: 15px;
    }

    .voice-meta {
        font-size: 13px;
    }
}
/* 購読申込・見本誌請求 CTAセクション */
.apply-section {
    background: linear-gradient(180deg, #f3f6ff 0%, #ffffff 60%);
    padding: 80px 0;
    border-top: 1px solid #e0e0e0;
}

.apply-inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.apply-title {
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 900;
    color: #0000CD;
}

.apply-text {
    margin: 0 auto 32px;
    max-width: 720px;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.apply-tel {
    margin-bottom: 32px;
}

.apply-tel .btn {
    display: inline-block;
    width: 100%;
    max-width: 420px;
}

/* BowNowフォーム部分のラッパー */
.apply-form {
    max-width: 960px;
    margin: 0 auto;
    text-align: left;
}

/* スマホ向け微調整 */
@media (max-width: 768px) {
    .apply-section {
        padding: 60px 0;
    }

    .apply-title {
        font-size: 22px;
    }

    .apply-text {
        font-size: 14px;
    }
}
