/*
Theme Name: アトリエケチャップ
Theme URI: https://wordpress.org/themes/atelierketchup
Author: its
Description: ケチャップのカスタムテーマ
Version: 1.3
License: GPL v2 or later
Text Domain: atelier-ketchup
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

/* Header Styles */
.site-header {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 200, 200, 0.3), rgba(0, 150, 200, 0.3));
}

.header-content {
    position: absolute;
    bottom: 30px;
    left: 100px;
    z-index: 2;
    text-align: center;
}

.site-logo {
    background-color: #FFEB3B;
    width: auto;
    min-width: 250px;
    height: auto;
    border-radius: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 30px 40px;
}

.site-logo h1 {
    color: #333;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 10px;
}

.logo-subtitle {
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

.tagline {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.social-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.social-button {
    display: inline-block;
    text-decoration: none;
    background: none !important;
    padding: 0 !important;
}

.social-button:hover {
    opacity: 0.8;
    background: none !important;
}

.social-button img {
    width: 240px;
    max-width: 240px;
    height: auto;
    display: block;
    border: none;
    box-shadow: none;
}

/* social-buttons内のボタンは背景色なし */
.social-buttons .social-button {
    background: none !important;
    padding: 0 !important;
}

.social-buttons .line-button,
.social-buttons .phone-button {
    background: none !important;
    padding: 0 !important;
}

/* Social Section */
.social-section {
    /*background-color: #f5f5f5;*/
    padding: 50px 0;
    /*box-shadow: 0 2px 10px rgba(0,0,0,0.1);*/
}

/* Main Header Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* ページ全体のマージントップを設定（固定ヘッダー対応） */
body.page-template-page-artists-php,
body.page-template-page-purchase-php,
body.page-template-page-artworks-php,
body.page-template-page-contact-php,
body.page-template-page-kaitori-php {
    padding-top: 0;
}


/* Header Top Section */
.header-top {
    background-color: white;
    border-bottom: 1px solid #eee;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    gap: 30px;
}

.header-logo {
    flex-shrink: 0;
}

.header-right-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.header-logo a {
    display: block;
    text-decoration: none;
}

.header-logo img {
    width: 90%;
    height: auto;
    max-height: 47.5px;
    display: block;
}

/* Search Form */
.header-search {
    flex: 1;
    max-width: 350px;
}

.search-form {
    display: flex;
    align-items: center;
    background-color: #f8f8f8;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.search-field {
    flex: 1;
    padding: 10px 20px;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    outline: none;
}

.search-submit {
    padding: 10px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.search-submit:hover {
    background-color: #e0e0e0;
}

.search-icon {
    font-size: 1.2rem;
}

/* Contact Info */
.header-contact {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info {
    text-align: center;
    line-height: 1.2;
}

.contact-phone-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.contact-phone-link:hover {
    opacity: 0.8;
}

.contact-phone {
    color: #333;
    font-weight: bold;
    font-size: 1.7rem;
}

.business-hours {
    font-size: 0.7rem;
}

/* Social Icons */
.header-social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.line-icon {
    background-color: #00B900;
}

.mail-icon {
    background-color: #f9ce47;
}

.social-icon img {
    width: 24px;
    /* height: 24px;*/
    /* filter: brightness(0) invert(1); */
}

/* Free Assessment Button */
.free-assessment-btn {
    display: inline-block;
    background-color: transparent;
    color: #FF6B35;
    padding: 8px 12px;
    border: 1px solid #FF6B35;
    border-radius: 0;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.free-assessment-btn:hover {
    background-color: #FF6B35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Navigation Menu */
.header-navigation {
    background-color: #f0f0f0;
    padding: 15px 0;
}

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

.header-menu {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.header-menu li {
    margin: 0;
}

.header-menu a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.header-menu a:hover {
    color: #FFD700;
}

.header-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFD700;
    transition: width 0.3s;
}

.header-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    white-space: nowrap;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
}


.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 40px;
    right: -300px;
    width: 280px;
    height: calc(100vh - 40px);
    background-color: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    padding: 20px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid #eee;
}

.mobile-menu-list a {
    display: block;
    padding: 20px 30px;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.mobile-menu-list a:hover {
    background-color: #FFD700;
    color: #333;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Adjust site-header for fixed navigation */
.site-header {
    margin-top: 60px;
    /* ヘッダー上部70px + ナビゲーション50px */
}

/* Section Styles */
.section {
    padding: 100px 0;
}

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

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

.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 20px; */
    margin-bottom: 15px;
}

.section-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Icon backgrounds removed - using image instead */

.section-title {
    text-align: center;
}

.section-title h2 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
    font-weight: 400;
    margin: 15px 0 0 0;
    text-align: center;
}

.section-subtitle {
    color: #666;
    font-size: 1rem;
    margin: 5px 0 0 0;
}

.section-note {
    color: #888;
    font-size: 0.85rem;
    margin: 15px auto 0;
    max-width: 900px;
    text-align: center;
    line-height: 1.6;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* WANTED Section - 3列固定 */
.wanted-section .container {
    max-width: 1200px;
}

.wanted-section .product-grid {
    grid-template-columns: repeat(3, 1fr);
    background: #e7e4dd !important;
    padding: 30px;
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
}

/* 横並びレイアウトのスタイル */
.artist-card-horizontal {
    padding: 0;
    box-shadow: none !important;
}

.artist-card-horizontal:hover {
    box-shadow: none !important;
    transform: none !important;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.artist-card-horizontal {
    transition: opacity 0.3s ease;
}

.artist-card-horizontal a {
    display: flex !important;
    align-items: center;
    gap: 15px;
}

.artist-image-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 0;
    background-color: #f0f0f0;
    padding: 0;
}

.artist-card-horizontal .artist-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    padding-bottom: 0 !important;
    position: static !important;
}

.artist-name-wrapper {
    flex: 1;
}

.artist-name {
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
    color: #333;
    line-height: 1.4;
}

.product-card {
    background: white;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.product-info {
    padding: 10px;
    text-align: center;
}

.product-info h3 {
    font-size: 1rem;
    /* margin-bottom: 8px; */
    margin-top: -7px;
    color: #333;
}

.product-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Pick Up Section */
.pickup-section .product-grid {
    position: relative;
    padding: 30px 0;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

.pickup-section .product-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: #e7e4dd !important;
    z-index: -1;
}

/* Info Cards Section */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 700px;
    margin: 50px auto;
}

.info-card {
    background: white;
    border: 3px solid #FF6B6B;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.info-card:hover {
    transform: scale(1.02);
}

.info-card.red-accent {
    border-color: #FF4444;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.info-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Point Section */
.point-section {
    padding: 80px 0;
    background: #fff;
}

.point-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.point-left {
    flex: 1;
}

.point-right {
    flex: 1;
}

.point-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.6;
    color: #333;
    margin: 0;
    margin-bottom: 30px;
}

.point-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.point-image {
    width: 100%;
    height: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .point-content {
        flex-direction: column;
        gap: 40px;
    }

    .point-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .point-description {
        font-size: 1rem;
        text-align: center;
    }

    /* Wantedセクションのレスポンシブ対応 */
    .wanted-section .product-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
    }

    .artist-card-horizontal .artist-image-wrapper {
        width: 70px;
        height: 70px;
    }

    .artist-card-horizontal .artist-name {
        font-size: 0.8rem !important;
    }

    .artist-card-horizontal {
        padding: 0;
    }

    .artist-card-horizontal a {
        gap: 10px;
    }

    /* 作家一覧ページのレスポンシブ対応 */
    .artists-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        padding: 15px !important;
    }

    .artists-archive .artist-image-wrapper {
        width: 70px !important;
        height: 70px !important;
    }

    .artists-archive .artist-name {
        font-size: 0.8rem !important;
    }

    .artists-archive .artist-card a,
    .artists-archive .artist-card-horizontal a {
        gap: 10px !important;
        display: flex !important;
        flex-direction: row !important;
    }
}

/* Purchase & Online Section */
.purchase-online-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.purchase-online-section::before {
    content: "";
    display: block;
    width: 800px;
    height: 600px;
    background: #f7ecde;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.purchase-online-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Purchase Block */
.purchase-block {
    position: relative;
}

.purchase-bg-square {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 350px;
    background: #FFE8E8;
    border-radius: 20px;
    z-index: 0;
}

.purchase-inner {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
}

.purchase-image {
    flex: 0 0 45%;
}

.purchase-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.purchase-content {
    flex: 1;
    padding: 40px;
    text-align: center;
    margin-top: 100px;
    margin-right: 90px;
}


.purchase-button,
.online-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #c01f2c;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 35px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.purchase-button:hover,
.online-button:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Online Block */
.online-block {
    position: relative;
}

.online-bg-square {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 350px;
    background: #E8F5E9;
    border-radius: 20px;
    z-index: 0;
}

.online-inner {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
}

.online-content {
    flex: 1;
    padding: 55px;
    text-align: center;
    margin-bottom: 115px;
    margin-left: 90px;
}

}

}

.online-image {
    flex: 0 0 45%;
}

.online-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* How To Section */
.how-to-section {
    background-color: #f7ecde;
}

.how-to-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

/* Responsive for HOW TO section */
@media (max-width: 1024px) {
    .how-to-grid {
        gap: 20px;
    }

    .how-to-box {
        width: 160px;
        height: 170px;
        padding: 15px;
    }

    .how-to-icon-img {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
}

@media (max-width: 768px) {
    .how-to-grid {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .how-to-box {
        width: 200px;
        height: 150px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .how-to-box {
        width: 180px;
        height: 140px;
        padding: 15px;
    }

    .how-to-text {
        font-size: 0.9rem;
    }

    .how-to-description {
        font-size: 0.8rem;
    }
}

.how-to-item {
    text-align: center;
}

.how-to-box {
    width: 180px;
    height: 150px;
    background-color: #c01f2c;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(255, 99, 71, 0.3);
    text-align: center;
}

.how-to-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
}

.how-to-text {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.how-to-description {
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    line-height: 1.3;
}

.how-to-icon {
    width: 100px;
    height: 100px;
    background-color: #FF6347;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(255, 99, 71, 0.3);
    position: relative;
}

.how-to-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.how-to-item p {
    color: #666;
    font-size: 0.9rem;
}

/* News Section */
.news-list {
    list-style: none;
    margin-top: 40px;
    background: white;
    border-radius: 0;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.news-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 30px;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    background-color: #FFD700;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    min-width: 120px;
    text-align: center;
    font-weight: 500;
}

.news-title {
    flex: 1;
    color: #333;
}

.news-category-badge {
    background-color: #FFD700;
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
    margin: 0 10px;
    white-space: nowrap;
}

/* Blog Section */
.blog-section {
    background-color: #F8F8F8;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.blog-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Company Section */
.company-table {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.company-table tr {
    border-bottom: 1px solid #eee;
}

.company-table tr:last-child {
    border-bottom: none;
}

.company-table td {
    padding: 20px 30px;
}

.company-table td:first-child {
    background-color: #F8F8F8;
    font-weight: 600;
    width: 30%;
}

/* Map Section */
.map-section {
    margin-top: 50px;
    padding: 40px 0;
}

.map-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    border: 3px solid #000;
    padding: 30px;
    border-radius: 0;
}

.map-left {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

.map-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 0;
}

.map-right {
    flex: 0 0 auto;
    text-align: center;
}

.map-right h3 {
    font-size: 2rem;
    color: #333;
    font-weight: bold;
    line-height: 1.5;
}

.map-areas {
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.map-areas h3 {
    text-align: center;
    color: #333;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 0 20px;
}

.map-areas p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.8;
    padding: 0 20px;
}

/* Address Section */
.l-footer__address {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-style: normal;
}

.l-footer__address-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.l-footer__address-detail {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.6;
}

/* Phone Section */
.footer-phone-section {
    text-align: center;
    padding: 30px 0;
}

.l-footer__tel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    transition: opacity 0.3s;
}

.l-footer__tel:hover {
    opacity: 0.8;
}

.l-footer__tel img {
    vertical-align: middle;
}

/* SNS Section */
.l-footer__sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.l-footer__sns a {
    display: inline-block;
    transition: transform 0.3s, opacity 0.3s;
}

.l-footer__sns a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.l-footer__sns img {
    display: block;
    width: 30px;
    height: 30px;
}

/* Responsive for Map Section */
@media (max-width: 768px) {
    .map-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .map-right {
        text-align: center;
    }

    .map-right h3 {
        font-size: 1.5rem;
    }
}

/* Feature Section */
.l-section.p-top__feature {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: visible;
}

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

.p-top__feature-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.p-top__feature-left {
    flex: 0 0 35%;
    position: relative;
    z-index: 2;
}

.p-top__feature-right {
    flex: 1;
    position: relative;
    z-index: 2;
}

.p-top__feature-ttl {
    text-align: center;
    margin-bottom: 40px;
}

.p-top__feature-ttl span {
    display: block;
    color: #333;
    font-size: 3.125rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.p-top__feature-ttl h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

.p-top__feature-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.c-feature {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hover animation removed */

.c-feature__number {
    position: relative;
    display: inline-block;
    color: #ff6b6b;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 12px;
}

.c-feature__number img.point-number-img {
    display: block;
    margin: 0 auto 3px auto;
    height: 3rem;
    width: auto;
}

.c-feature__number span {
    display: block;
    text-align: center;
}

.c-feature__number::before {
    content: attr(data-number);
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #c9a063;
    font-family: Cambria, Georgia, serif;
    margin-bottom: 3px;
}

.c-feature__number::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #ff6b6b;
}

.c-feature__para {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.6;
    color: #333;
}

.p-top__feature-icon {
    display: none;
    position: absolute;
    bottom: 0px;
    left: 320px;
    z-index: 1;
}

.p-top__feature-bg {
    position: absolute;
    top: 15px;
    left: -55px;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .p-top__feature-content {
        flex-direction: column;
        gap: 40px;
    }

    .p-top__feature-left {
        flex: 1;
        width: 100%;
        text-align: center;
    }

    .p-top__feature-ttl {
        text-align: center;
    }

    .p-top__feature-ttl h3 {
        font-size: 1.8rem;
    }

    .p-top__feature-right {
        width: 100%;
    }

    .p-top__feature-items {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .p-top__feature-icon,
    .p-top__feature-bg {
        display: none;
    }

    .u-hidden-sp {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .p-top__feature-content {
        gap: 40px;
    }

    .p-top__feature-left {
        flex: 0 0 40%;
    }

    .p-top__feature-ttl h3 {
        font-size: 1.9rem;
    }

    .c-feature {
        padding: 25px 20px;
        min-height: 160px;
    }
}

@media (min-width: 769px) {
    .u-hidden-pc {
        display: none;
    }
}

/* Footer */
.site-footer {
    background-color: #c01f2c;
    color: white;
    padding: 40px 0 20px;
    margin-top: 0px;
}

.footer-menu {
    text-align: center;
    padding: 20px 0;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #FFD700;
}

.site-footer p {
    font-size: 14px;
    color: #fff;
}

/* Purchase Page Styles */
.purchase-page-header {
    background: linear-gradient(135deg, #FF6347 0%, #FF8C69 100%);
    padding: 100px 0 60px;
    margin-top: 170px;
    text-align: center;
    color: white;
}

/* ページテンプレート専用のスタイル */
body.page-template-page-purchase-php .site-main {
    padding-top: 0;
}

/* ページID 51（買取について）専用のスタイル */
.page-id-51 .purchase-page-header {
    background: linear-gradient(135deg, #FF6347 0%, #FF8C69 100%) !important;
    padding: 100px 0 60px !important;
    margin-top: 170px !important;
    text-align: center !important;
    color: white !important;
}

.page-id-51 .site-main {
    padding-top: 0 !important;
}

.purchase-page-title {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.purchase-page-subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    opacity: 0.9;
}

.purchase-intro {
    text-align: center;
    margin-bottom: 80px;
    padding: 40px 0;
    background-color: #f7ecde;
    border-radius: 0;
}

.purchase-intro h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.purchase-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.purchase-features {
    margin-bottom: 80px;
}

.purchase-features .section-title {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.purchase-features .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FF6347;
}

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

.feature-item {
    display: flex;
    align-items: center;
    background: #f8f8f8;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    margin-right: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: white;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.purchase-methods {
    margin-bottom: 80px;
}

.purchase-methods .section-title {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.purchase-methods .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FF6347;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .methods-grid {
        grid-template-columns: 1fr;
    }
}

.method-card {
    padding: 40px 30px;
    margin-top: 50px;
    background: #f7ecde;
    text-align: center;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: #c01f2c;
    font-weight: bold;
    font-family: '游明朝', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.method-number {
    display: inline-block;
    margin-right: 10px;
    color: #c01f2c;
    font-weight: bold;
}

.method-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
    font-weight: 600;
}

.purchase-flow {
    margin-bottom: 80px;
}

.purchase-flow .section-title {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.purchase-flow .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FF6347;
}

.flow-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.flow-step {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* 削除: 一般的な.step-numberスタイル（各ページ固有のスタイルを使用） */

.flow-step h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.flow-step p {
    color: #666;
    line-height: 1.6;
}

.flow-arrow {
    font-size: 2rem;
    color: #FF6347;
}

.purchase-cta {
    background: linear-gradient(135deg, #FF6347 0%, #FF8C69 100%);
    padding: 60px 0;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.purchase-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.purchase-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: white;
    color: #FF6347;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .purchase-page-header {
        margin-top: 140px;
        padding: 60px 0 40px;
    }

    .purchase-page-title {
        font-size: 2rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .flow-steps {
        flex-direction: column;
    }
}

/* Page Content Styles */
.page-content {
    padding: 80px 0;
    min-height: 60vh;
}

.page-content .page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.page-content .page-title {
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
}

.page-body {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.page-body h2 {
    font-size: 2rem;
    color: #333;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FF6347;
}

.page-body h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 30px 0 15px;
}

.page-body p {
    margin-bottom: 20px;
}

.page-body ul,
.page-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page-body li {
    margin-bottom: 10px;
}

.page-body img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.page-body a {
    color: #FF6347;
    text-decoration: none;
    transition: opacity 0.3s;
}

.page-body a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* WordPress Block Editor Styles */
.page-body .wp-block-image {
    margin: 30px 0;
}

.page-body .wp-block-gallery {
    margin: 30px 0;
}

.page-body .wp-block-columns {
    margin: 30px 0;
}

.page-body .wp-block-button {
    margin: 20px 0;
}

.page-body .wp-block-button__link {
    background-color: #FF6347;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.page-body .wp-block-button__link:hover {
    background-color: #FF4500;
    text-decoration: none;
}

.page-body .wp-block-quote {
    border-left: 4px solid #FF6347;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
}

.page-body .wp-block-table {
    margin: 30px 0;
}

.page-body table {
    width: 100%;
    border-collapse: collapse;
}

.page-body th,
.page-body td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

.page-body th {
    background-color: #f7ecde;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .page-content .page-title {
        font-size: 2rem;
    }

    .page-body {
        padding: 0 20px;
    }

    .page-body h2 {
        font-size: 1.5rem;
    }

    .page-body h3 {
        font-size: 1.2rem;
    }
}

/* Kaitori Purchase Page Styles */
.kaitori-purchase-page {
    background-color: #fff;
}

.kaitori-purchase-page .purchase-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0 80px;
    margin-top: 100px;
    text-align: center;
    color: white;
}

.kaitori-purchase-page .purchase-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
    background-color: #c01f2c;
    border-radius: 40px;
    padding: 5px 50px;
    display: inline-block;
    font-family: '游明朝', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.kaitori-purchase-page .purchase-hero h1,
.kaitori-purchase-page .hero-title {
    color: white;
    background-color: #c01f2c;
    border-radius: 40px;
    padding: 5px 50px;
    display: inline-block;
    font-family: '游明朝', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.kaitori-purchase-page .purchase-subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    color: #c19450;
}

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

.kaitori-purchase-page .section-icon {
    width: 10%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.kaitori-purchase-page .section-title {
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
    margin: 0;
    font-family: Cambria, Georgia, serif;
}

.kaitori-purchase-page .section-title .first-letter {
    color: #c01f2c;
}

.kaitori-purchase-page .section-subtitle {
    font-weight: bold;
    font-size: 1.2rem;
    color: #000;
    font-family: sans-serif;
}

/* HOW TO Section */
.kaitori-purchase-page .purchase-howto {
    padding: 80px 0;
}

.kaitori-purchase-page .howto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.kaitori-purchase-page .howto-item {
    text-align: center;
    background: white;
    padding: 40px 20px;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.kaitori-purchase-page .howto-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.kaitori-purchase-page .howto-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #c01f2c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kaitori-purchase-page .howto-icon img {
    width: 50px;
    height: 50px;
}

.kaitori-purchase-page .howto-item h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.kaitori-purchase-page .howto-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* FLOW Section */
.kaitori-purchase-page .purchase-flow {
    padding: 80px 0;
    background: white;
}

.purchase-flow .flow-steps {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.purchase-flow .flow-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 30px;
    background: #f1eee9;
    border-radius: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.purchase-flow .flow-step::after {
    display: none !important;
}

.purchase-flow .flow-step:last-child {
    margin-bottom: 0;
}

.purchase-flow .step-number {
    display: inline-flex;
    width: 60px;
    height: 60px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin-right: 25px;
    flex-shrink: 0;
}

.purchase-flow .step-content {
    flex: 1;
    text-align: left;
    padding-left: 20px;
}

.purchase-flow .flow-step h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    margin-top: 0;
    color: #333;
    font-weight: bold;
    line-height: 1.4;
}

.purchase-flow .flow-step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.kaitori-purchase-page .flow-step:nth-child(3n)::after,
.kaitori-purchase-page .flow-step:last-child::after {
    display: none;
}

.kaitori-purchase-page .step-number,
.kaitori-purchase-page .purchase-flow .step-number,
.kaitori-purchase-page .flow-step .step-number,
.kaitori-purchase-page .flow-steps .step-number,
.kaitori-purchase-page div.step-number {
    width: 60px;
    height: 60px;
    background: #c01f2c !important;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    font-family: Cambria, Georgia, serif;
}

.kaitori-purchase-page .flow-step h3 {
    font-size: 1.2rem;
    color: #c19450;
    margin-bottom: 10px;
    font-weight: bold;
    font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HG明朝E", serif;
}

.kaitori-purchase-page .flow-step p {
    color: #000;
    font-size: 0.9rem;
    line-height: 1.5;
}

.flow-options {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.flow-option {
    flex: 1;
    text-align: center;
}

.flow-option p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.recommend-badge {
    display: inline-block;
    border: 2px solid #c01f2c;
    border-radius: 15px;
    padding: 3px 12px;
    font-size: 0.9rem;
    color: white;
    background-color: #c01f2c;
    margin-top: 5px;
}

.highlight-red {
    color: #c01f2c;
    font-weight: bold;
}

/* PHOTO Section */
.kaitori-purchase-page .purchase-photo {
    padding: 80px 0;
    background: #E7E4E4;
}

.kaitori-purchase-page .photo-guide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.kaitori-purchase-page .photo-item {
    text-align: center;
    background: white;
    padding: 15px 15px;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.kaitori-purchase-page .photo-number {
    font-size: 2rem;
    font-weight: bold;
    color: #c01f2c;
    margin: 0 0 10px 0;
    font-family: Cambria, Georgia, serif;
    flex-shrink: 0;
}

.kaitori-purchase-page .photo-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
    flex-grow: 1;
    margin: 0 0 20px 0;
}

.kaitori-purchase-page .photo-icon {
    flex-shrink: 0;
    flex-grow: 0;
}

.kaitori-purchase-page .photo-icon img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.kaitori-purchase-page .photo-item h3 {
    font-size: 1.5rem;
    color: #c19450;
    margin-bottom: 10px;
    font-weight: bold;
    font-family: Cambria, Georgia, serif;
}

.kaitori-purchase-page .photo-item p {
    color: #000;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* PACKING Section */
.kaitori-purchase-page .purchase-packing {
    padding: 80px 0;
    background: white;
}

.kaitori-purchase-page .packing-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.kaitori-purchase-page .packing-step {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 0;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.kaitori-purchase-page .step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.kaitori-purchase-page .packing-step h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.kaitori-purchase-page .packing-step p {
    color: #000;
    font-size: 1rem;
    line-height: 1.5;
}

.packing-point {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.point-badge {
    display: inline-block;
    background-color: #c01f2c;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

.point-text {
    color: #c01f2c;
    font-weight: bold;
    font-size: 0.9rem;
}

.kaitori-purchase-page .packing-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #fff3cd;
    border-radius: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.kaitori-purchase-page .packing-note p {
    color: #856404;
    font-size: 1rem;
    margin: 0;
}

/* Q&A Section */
.kaitori-purchase-page .purchase-qa {
    padding: 80px 0;
    background: #ffffff;
}

.kaitori-purchase-page .qa-list {
    max-width: 900px;
    margin: 0 auto;
}

.kaitori-purchase-page .qa-item {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.kaitori-purchase-page .qa-question {
    font-size: 1.2rem;
    color: #c19450;
    margin-bottom: 15px;
    font-weight: bold;
    font-family: '游明朝', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.kaitori-purchase-page .qa-answer {
    color: #000;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.qa-link-button {
    display: block;
    margin: 15px auto 0;
    padding: 10px 30px;
    background-color: #c01f2c;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s;
    width: fit-content;
}

.qa-link-button:hover {
    background-color: #a01828;
    color: white;
}

/* Contact CTA Section */
.kaitori-purchase-page .purchase-contact {
    padding: 80px 0;
    display: block !important;
}

.kaitori-purchase-page .contact-box {
    text-align: center;
    color: #333;
}

.kaitori-purchase-page .contact-box h2 {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: '游明朝', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
    color: #d32f2f;
}

.kaitori-purchase-page .contact-box p {
    font-size: 2rem;
    margin-bottom: 40px;
    font-family: '游明朝', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
    color: #c19450;
}

.kaitori-purchase-page .contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.kaitori-purchase-page .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.kaitori-purchase-page .contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.kaitori-purchase-page .phone-btn {
    background: white;
    color: #FF6347;
}

.kaitori-purchase-page .line-btn {
    background: #00B900;
    color: white;
}

.kaitori-purchase-page .email-btn {
    background: #4285F4;
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .kaitori-purchase-page .purchase-howto {
        padding: 0 !important;
    }

    .kaitori-purchase-page .section-header {
        margin-bottom: 30px !important;
    }

    .kaitori-purchase-page .howto-icon {
        width: 80px !important;
        height: 80px !important;
    }

    .kaitori-purchase-page .howto-icon img {
        width: 50px !important;
        height: 50px !important;
    }

    .kaitori-purchase-page .howto-item {
        background: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .purchase-flow {
        margin-bottom: 0 !important;
    }

    .kaitori-purchase-page .step-number {
        background: #c01f2c !important;
    }

    .kaitori-purchase-page .flow-step .step-content>div[style*="display: flex"]>div {
        border-bottom: 1px solid #d4c5a9;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .kaitori-purchase-page .flow-step .step-content>div[style*="display: flex"]>div:last-child {
        border-bottom: none;
    }

    .kaitori-purchase-page .howto-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kaitori-purchase-page .howto-grid .howto-item:first-child {
        grid-column: 1 / -1;
    }

    .kaitori-purchase-page .flow-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .kaitori-purchase-page .photo-guide {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .kaitori-purchase-page .photo-item {
        padding: 10px;
    }

    .kaitori-purchase-page .flow-step:nth-child(3n)::after {
        display: block;
    }

    .kaitori-purchase-page .flow-step:nth-child(2n)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .kaitori-purchase-page .purchase-howto {
        padding: 0 !important;
    }

    .kaitori-purchase-page .purchase-title {
        font-size: 1.5rem;
    }

    .kaitori-purchase-page .section-icon {
        width: 15%;
        height: auto;
    }

    .kaitori-purchase-page .section-title {
        font-size: 2rem;
    }

    .kaitori-purchase-page .section-subtitle {
        font-size: 1.2rem;
    }

    .kaitori-purchase-page .section-header {
        margin-bottom: 30px !important;
    }

    .kaitori-purchase-page .howto-icon {
        width: 70px !important;
        height: 70px !important;
    }

    .kaitori-purchase-page .howto-icon img {
        width: 45px !important;
        height: 45px !important;
    }

    .kaitori-purchase-page .howto-item {
        background: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .purchase-flow {
        margin-bottom: 0 !important;
    }

    .kaitori-purchase-page .step-number {
        background: #c01f2c !important;
    }

    .kaitori-purchase-page .flow-step .step-content>div[style*="display: flex"]>div {
        border-bottom: 1px solid #d4c5a9;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .kaitori-purchase-page .flow-step .step-content>div[style*="display: flex"]>div:last-child {
        border-bottom: none;
    }

    .kaitori-purchase-page .howto-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kaitori-purchase-page .howto-grid .howto-item:first-child {
        grid-column: 1 / -1;
    }

    .kaitori-purchase-page .flow-steps,
    .kaitori-purchase-page .packing-steps {
        grid-template-columns: 1fr;
    }

    .kaitori-purchase-page .photo-guide {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }


    /* 梱包・発送セクションの画像を非表示（レスポンシブ版のみ） */
    .kaitori-purchase-page .purchase-packing .photo-icon {
        display: none;
    }

    .kaitori-purchase-page .flow-step::after {
        display: none;
    }

    .purchase-flow .flow-step {
        padding: 20px;
        margin-bottom: 20px;
    }

    .flow-options {
        flex-direction: column;
        gap: 15px;
    }

    .purchase-flow .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
        margin-right: 15px;
    }

    .kaitori-purchase-page .step-number {
        background: #c01f2c !important;
    }

    .purchase-flow .flow-step h3 {
        font-size: 1.2rem;
    }

    .kaitori-purchase-page .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .kaitori-purchase-page .contact-btn {
        width: 250px;
        justify-content: center;
    }
}

/* Single Page Styles */
.single-page {
    padding-top: 100px;
    padding-bottom: 80px;
    min-height: calc(100vh - 200px);
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #FFD700;
}

.single-content {
    background: white;
    border-radius: 0;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
}

.single-header {
    margin-bottom: 40px;
}

.single-thumbnail {
    margin-bottom: 30px;
    text-align: center;
}

.single-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
}

.single-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.single-date {
    color: #999;
}

.single-category {
    background-color: #FFD700;
    padding: 3px 15px;
    border-radius: 15px;
    font-weight: 500;
}

.single-title {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #333;
}

.single-excerpt {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.single-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.single-body h2 {
    font-size: 1.6rem;
    margin: 40px 0 20px;
    color: #333;
}

.single-body h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: #333;
}

.single-body p {
    margin-bottom: 20px;
}

.single-body img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 0;
}

.single-body ul,
.single-body ol {
    margin: 20px 0 20px 30px;
}

.single-body li {
    margin-bottom: 10px;
}

.single-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.single-tags {
    margin-bottom: 30px;
}

.tags-label {
    font-weight: 600;
    margin-right: 10px;
}

.tag-item {
    display: inline-block;
    background-color: #f0f0f0;
    padding: 5px 15px;
    border-radius: 20px;
    margin: 5px;
    text-decoration: none;
    color: #666;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.tag-item:hover {
    background-color: #FFD700;
    color: #333;
}

.share-buttons {
    margin: 30px 0;
    padding: 20px;
    background-color: #f7ecde;
    border-radius: 0;
    text-align: center;
}

.share-label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.share-btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: opacity 0.3s;
}

.share-btn:hover {
    opacity: 0.8;
}

.share-btn.twitter {
    background-color: #1DA1F2;
}

.share-btn.facebook {
    background-color: #4267B2;
}

.share-btn.line {
    background-color: #00C300;
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.nav-previous,
.nav-next {
    padding: 20px;
    background-color: #f7ecde;
    border-radius: 0;
}

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

.nav-label {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 5px;
}

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

.nav-links a:hover {
    color: #FFD700;
}

.back-to-list {
    text-align: center;
    margin-top: 40px;
}

.btn-back {
    display: inline-block;
    padding: 12px 30px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-back:hover {
    background-color: #555;
}

.related-posts {
    margin-top: 60px;
}

.related-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-item {
    background: white;
    border-radius: 0;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.related-item:hover {
    transform: translateY(-5px);
}

.related-item a {
    text-decoration: none;
    color: inherit;
}

.related-date {
    font-size: 0.85rem;
    color: #999;
}

.related-item-title {
    font-size: 1.1rem;
    margin-top: 10px;
    color: #333;
}

.related-thumbnail {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 15px;
}

.related-content {
    padding: 10px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        height: 400px;
    }

    .header-container {
        padding: 10px 15px;
    }

    .header-logo img {
        width: 100%;
        max-width: 150px;
        height: auto;
    }

    .header-right-content {
        display: none;
    }

    .header-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .container {
        padding: 0 15px;
    }

    .social-buttons {
        flex-direction: column;
        align-items: center;
    }

    .social-button img {
        max-width: 240px;
    }

    .product-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* WANTEDも2列に */
    .wanted-section .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* PICK UPも2列に */
    .pickup-section .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* レスポンシブ時のサムネイルを正方形に */
    .wanted-section .product-image,
    .pickup-section .product-image {
        aspect-ratio: 1 / 1;
        height: auto;
    }

    .how-to-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .purchase-block,
    .online-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .single-content {
        padding: 20px;
    }

    .single-title {
        font-size: 1.5rem;
    }

    .nav-links {
        grid-template-columns: 1fr;
    }

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

    .share-btn {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }
}

@media (max-width: 480px) {

    .product-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* WANTEDも2列に */
    .wanted-section .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* PICK UPも2列に */
    .pickup-section .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* レスポンシブ時のサムネイルを正方形に */
    .wanted-section .product-image,
    .pickup-section .product-image {
        aspect-ratio: 1 / 1;
        height: auto;
    }

    .how-to-grid {
        grid-template-columns: 1fr;
    }
}

/* Artist Pages Styles */
/* Artist Archive Page */
.artists-archive .page-header {
    padding: 80px 0 60px;
    text-align: center;
    background: #fff;
}

/* ページ用セクションヘッダー（買取ページと同じスタイル） */
.page-section-header {
    text-align: center;
    margin: 0 auto 50px;
}

.page-section-header .section-title,
.artists-archive .page-section-header .section-title,
.artworks-page-header .page-section-header .section-title {
    color: white !important;
    background-color: #c01f2c !important;
    border-radius: 40px;
    padding: 5px 50px;
    display: inline-block;
    font-family: '游明朝', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.page-section-header .section-title .first-letter {
    color: white;
}

.page-section-header .section-subtitle,
.artists-archive .page-section-header .section-subtitle,
.artworks-page-header .page-section-header .section-subtitle {
    font-size: 1.2rem !important;
    letter-spacing: 0.2em;
    color: #c19450 !important;
}

.artists-content {
    padding: 80px 0;
    background-color: #fff;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #e7e4dd !important;
    padding: 30px;
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

/* 作家一覧ページのカードスタイル - Wantedと同じ */
.artists-archive .artist-card,
.artists-archive .artist-card-horizontal {
    background: white;
    overflow: hidden;
    padding: 0;
    box-shadow: none !important;
    transition: opacity 0.3s ease;
}

.artists-archive .artist-card:hover,
.artists-archive .artist-card-horizontal:hover {
    opacity: 0.6;
    transform: none;
    box-shadow: none !important;
}

.artists-archive .artist-card a,
.artists-archive .artist-card-horizontal a {
    display: flex !important;
    align-items: center;
    gap: 15px;
}

.artists-archive .artist-image-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 0;
    background-color: #f0f0f0;
    padding: 0;
}

.artists-archive .artist-card-horizontal .artist-thumbnail,
.artists-archive .artist-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    padding-bottom: 0 !important;
    position: static !important;
}

.artists-archive .artist-name-wrapper {
    flex: 1;
}

.artists-archive .artist-name {
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
    color: #333;
    line-height: 1.4;
}

/* 重複削除 - 上記のスタイルを使用 */

/* 古いスタイルを無効化（横並びレイアウトを使用） */
.artists-archive .artist-card-image {
    display: none;
}

.artists-archive .artist-card-content {
    display: none;
}

.artist-card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.artist-card-excerpt {
    color: #666;
    line-height: 1.6;
}

/* Artist Detail Page */
.artist-detail .artist-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 150px 0 80px;
    margin-top: 80px;
    text-align: center;
    color: white;
}

.artist-detail .artist-name {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

.artist-content {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.artist-info {
    /* display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px; */
}

.artist-thumbnail {
    max-width: 400px;
}

.artist-thumbnail img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.artist-profile h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.artist-profile p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.artist-works {
    /* background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); */
}

.artist-works h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

/* Responsive Design for Artist Pages */
@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .artist-works .works-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    .artist-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .artist-detail .artist-name {
        font-size: 1.5rem;
    }

    .artist-works {
        /*  padding: 40px 20px; */
    }
}

@media (max-width: 480px) {
    .artists-grid {
        grid-template-columns: 1fr;
    }

    .artist-detail .artist-name {
        font-size: 2rem;
    }
}

/* Artists List Page Styles */
.artists-page-container {
    padding-top: 0;
}

.artists-page-header {
    background: #fff;
    padding: 100px 0 60px;
    margin-top: 100px;
    text-align: center;
}

.artists-page-title {
    color: white !important;
    background-color: #c01f2c;
    border-radius: 40px;
    padding: 5px 50px;
    display: inline-block;
    font-family: '游明朝', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.artists-page-subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    color: #c19450 !important;
}

.artists-list-section {
    padding: 60px 0;
    background: #fff;
}

/* 索引ナビゲーション */
.artists-index-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
    padding: 30px;
    background: white;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.index-link {
    display: inline-block;
    padding: 10px 20px;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.index-link:hover {
    background: #c01f2c;
    color: white;
    transform: translateY(-2px);
}

.index-link.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* 作家グループ */
.artist-group {
    margin-bottom: 0;
}

.group-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #c01f2c;
    display: inline-block;
}

/* 作家グリッド */
.artists-grouped-list .artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
}

/* 作家一覧ページの artist-item を横並びに強制 */
.artist-item,
.artist-item.artist-card-horizontal {
    background: white !important;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none !important;
    transition: opacity 0.3s;
    padding: 0;
}

.artists-archive .artist-item:hover {
    opacity: 0.6;
    transform: none !important;
    box-shadow: none !important;
}

.artists-archive .artist-link {
    text-decoration: none;
    color: inherit;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px !important;
    height: 100%;
}

.artist-item .artist-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.artist-thumbnail .artist-image,
.artist-item .artist-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.no-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #999;
    font-size: 0.9rem;
}

.artist-item .artist-info {
    padding: 10px;
    text-align: center;
    width: 100%;
}

.artist-item .artist-info .artist-name {
    font-size: 0.85rem;
    margin: 0;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1.2;
    text-align: center;
    padding: 0 5px;
    display: block;
}


.no-artists-message {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 1.1rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .artists-page-title {
        font-size: 2rem;
    }

    .artists-index-nav {
        gap: 10px;
        padding: 20px;
    }

    .index-link {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .group-title {
        font-size: 1.5rem;
    }

    .artists-grouped-list .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }

    .artist-thumbnail {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .artists-grouped-list .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .artist-thumbnail {
        height: 120px;
    }

    .artist-info {
        padding: 15px;
    }

    .artist-info .artist-name {
        font-size: 1rem;
    }
}

/* Breadcrumb Styles */
.breadcrumb-wrapper {
    /* background-color: #f7ecde; */
    padding: 15px 0;
    /* margin-bottom: 30px; */
}

.breadcrumb {
    margin: 0;
    padding: 0;
}

.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb-item::after {
    content: '>';
    margin: 0 10px;
    color: #999;
}

.breadcrumb-item:last-child::after {
    display: none;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #667eea;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #333;
    font-weight: 500;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .breadcrumb-wrapper {
        padding: 10px 0;
        margin-bottom: 20px;
    }

    .single-artwork .breadcrumb-wrapper {
        margin-top: 140px;
    }

    .breadcrumb-item {
        font-size: 0.85rem;
    }

    .breadcrumb-item::after {
        margin: 0 5px;
    }
}

/* Artwork Styles */
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.artwork-item {
    background: white;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
}

.artwork-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.artwork-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.artwork-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.no-artwork-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
}

.artwork-info {
    padding: 20px;
}

.artwork-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.artwork-comment {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.artwork-price {
    font-size: 1.1rem;
    color: #e74c3c;
    font-weight: 600;
    margin-top: 10px;
}

.artwork-status {
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
}

.artwork-status.sold {
    background: #e0e0e0;
    color: #666;
}

.artwork-status.reserved {
    background: #fff3cd;
    color: #856404;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .artwork-image,
    .no-artwork-image {
        height: auto;
    }

    .artwork-info {
        padding: 15px;
    }

    .artwork-title {
        font-size: 1rem;
    }
}

/* Artworks List Page Styles */
.artworks-page-container {
    padding-top: 0;
}

.artworks-page-header {
    padding: 80px 0 60px;
    margin-top: 100px;
    text-align: center;
    background: #fff;
}

/* 作品一覧ページのヘッダーも同じスタイルを使用 */
.artworks-page-header .page-section-header .section-title {
    color: white !important;
    background-color: #c01f2c !important;
    border-radius: 40px !important;
    padding: 5px 50px !important;
    display: inline-block !important;
    font-family: '游明朝', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif !important;
    font-size: 2rem !important;
    font-weight: bold !important;
    margin: 0 0 10px 0 !important;
}

.artworks-page-header .page-section-header .section-subtitle {
    font-size: 1.2rem !important;
    letter-spacing: 0.2em !important;
    color: #c19450 !important;
    margin: 0;
}

.artworks-list-section {
    padding: 60px 0;
    background: #f8f8f8;
}

/* フィルター */
.artwork-filters {
    background: white;
    padding: 30px;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.artwork-filters h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

.category-filter {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.category-filter li {
    margin: 0;
}

.category-filter a {
    display: inline-block;
    padding: 8px 50px;
    background: #f0f0f0;
    color: #666;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
}

.category-filter a:hover,
.category-filter a.active {
    background: #c19450;
    color: white;
}

/* 作品グリッド */
.artworks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.artwork-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.artwork-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.artwork-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.artwork-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f0f0f0;
}

.artwork-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artwork-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.artwork-badge.sold {
    background: rgba(0, 0, 0, 0.7);
    color: white;
}

.artwork-badge.reserved {
    background: rgba(255, 193, 7, 0.9);
    color: #333;
}

.artwork-card-info {
    padding: 25px;
}

.artwork-card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.artwork-artist {
    font-size: 1rem;
    color: #c11f2c;
    margin-bottom: 10px;
    font-weight: 500;
}

.artwork-card .artwork-comment {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.artwork-card .artwork-price {
    font-size: 1.2rem;
    color: #c11f2c;
    font-weight: 600;
    margin-top: 15px;
}

.no-artworks-message {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 1.1rem;
}

/* ページネーション */
.pagination {
    margin-top: 50px;
    text-align: center;
}

.pagination ul {
    list-style: none;
    display: inline-flex;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.pagination li {
    margin: 0;
}

.pagination a,
.pagination .current {
    display: inline-block;
    padding: 10px 15px;
    background: white;
    color: #666;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.pagination a:hover,
.pagination .current {
    background: #667eea;
    color: white;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .artworks-page-title {
        font-size: 2rem;
    }

    .artworks-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .artwork-card-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .artworks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .artwork-card-image {
        height: 150px;
    }

    .artwork-card-info {
        padding: 15px;
    }

    .artwork-card-title {
        font-size: 1rem;
    }

    .category-filter {
        gap: 10px;
    }

    .category-filter a {
        padding: 6px 40px;
        font-size: 0.9rem;
    }
}

/* Artwork Detail Page Styles */
.artwork-detail-container {
    padding: 60px 0;
    background: #fff;
}

/* 作品詳細ページのパンくずリスト位置調整 */
.single-artwork .breadcrumb-wrapper {
    margin-top: 170px;
}

/* Online Assessment Page Styles */
.online-assessment-page {
    /* background-color: #f8f9fa; */
}

/* Online Assessment Page Hero */
.online-assessment-page .purchase-hero {
    background: transparent;
    padding: 30px 0 30px;
    margin-top: 100px;
    text-align: center;
    color: white;
}

.online-assessment-page .purchase-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
    background-color: #c01f2c;
    border-radius: 40px;
    padding: 5px 50px;
    display: inline-block;
    font-family: '游明朝', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.online-assessment-page .purchase-subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    color: #c19450;
}

/* Section Headers - オンライン査定ページ用 */
.online-assessment-page .section-header {
    text-align: center;
    margin-bottom: 10px;
}

.online-assessment-page .section-icon {
    width: 10%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.online-assessment-page .section-title {
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
    margin: 0;
    font-family: Cambria, Georgia, serif;
}

.online-assessment-page .section-title .first-letter {
    color: #c01f2c;
}

.online-assessment-page .section-subtitle {
    font-weight: bold;
    font-size: 1.2rem;
    color: #000;
    font-family: sans-serif;
}

.online-intro {
    padding-top: 60px;
    background-color: #fff;
    text-align: center;
}

.intro-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: '游明朝', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.intro-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.online-steps {
    padding: 80px 0;
    background-color: #E7E4E4;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    background: #fff;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

/* 削除: 一般的な.step-numberスタイル（各ページ固有のスタイルを使用） */

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
}

.assessment-methods {
    padding: 80px 0;
    background-color: #fff;
}

.online-assessment-page .assessment-methods {
    padding: 80px 0;
}

.method-header {
    /*display: flex;
    align-items: center;
    margin-bottom: 20px;*/
}

.method-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.form-icon {
    font-size: 2.5rem;
    margin-right: 15px;
}

.method-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.method-content ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
    flex: 1;
}

.method-content li {
    padding: 5px 0;
    color: #000;
}

.method-content li:before {
    content: "✓ ";
    color: #4CAF50;
    font-weight: bold;
    margin-right: 5px;
}

.method-button {
    font-size: 0.9rem;
    display: inline-block;
    padding: 12px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}


.line-button {
    background: #06C755;
    color: #fff;
}

.line-button:hover {
    background: #05b04b;
}

.email-button {
    background: #FF9800;
    color: #fff;
}

.email-button:hover {
    background: #F57C00;
}

.form-button {
    background: #c01f2c;
    color: #fff;
}

.form-button:hover {
    background: #a01824;
}

.video-button {
    background: #3059bf;
    color: #fff;
}

.video-button:hover {
    background: #23418a;
}

.photo-guide-section {
    padding: 80px 0;
    background-color: white;
}

.online-assessment-page .photo-guide-section {
    padding: 80px 0;
    background-color: #E7E4E4;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.guide-item {
    text-align: center;
}

.guide-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.guide-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.assessment-form-section {
    padding: 80px 0;
    background-color: #fff;
}

.assessment-form {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.online-faq {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #ff692e;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.artwork-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* 左側：画像 */
.artwork-detail-image {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.artwork-main-image {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.no-artwork-detail-image {
    width: 100%;
    height: 500px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
}

/* 右側：情報 */
.artwork-detail-info {
    padding-top: 20px;
}

.artwork-detail-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
    line-height: 1.3;
}

.artwork-detail-artist {
    font-size: 1.2rem;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.artwork-detail-artist .label {
    color: #666;
}

.artwork-detail-artist .artist-link {
    color: #c11f2c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.artwork-detail-artist .artist-link:hover {
    color: #5563d1;
    text-decoration: underline;
}

.artwork-detail-comment {
    margin-bottom: 40px;
}

.artwork-detail-comment h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.artwork-detail-comment p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.artwork-detail-price {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 0;
    margin-bottom: 40px;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.price-value {
    display: block;
    font-size: 2rem;
    color: #c11f2c;
    font-weight: bold;
}

/* アクションボタン */
.artwork-detail-actions {
    margin-bottom: 40px;
}

.btn-contact {
    display: inline-block;
    width: 100%;
    padding: 20px 40px;
    background: #c11f2c;
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-contact:hover {
    opacity: 0.7;
}

/* SNSシェア */
.artwork-share {
    display: none;
}

.artwork-share p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-buttons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 50%;
    transition: all 0.3s;
}

.share-buttons a:hover {
    transform: translateY(-3px);
    background: #e0e0e0;
}

.share-buttons a {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
}

/* 関連作品 */
.related-artworks {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.related-artworks h2 {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: white;
    background: #c79f64;
    padding: 10px 40px;
    border-radius: 30px;
    display: inline-block;
}

.related-artworks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.related-artwork-item {
    background: white;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.related-artwork-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.related-artwork-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-artwork-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.no-related-image {
    width: 100%;
    height: 200px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
}

.related-artwork-info {
    padding: 20px;
}

.related-artwork-info h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
}

.related-price {
    font-size: 0.9rem;
    color: #e74c3c;
    font-weight: 600;
}

/* ナビゲーション */
.artwork-navigation {
    display: none;
}

.nav-prev a,
.nav-next a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #f0f0f0;
    color: #666;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s;
}

.nav-prev a:hover,
.nav-next a:hover {
    background: #667eea;
    color: white;
}

.nav-arrow {
    font-size: 1.2rem;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .artwork-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .artwork-detail-image {
        position: static;
    }

    .related-artworks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .artwork-detail-title {
        font-size: 2rem;
    }

    .btn-contact {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .price-value {
        font-size: 1.4rem;
    }

    .related-artworks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .artwork-detail-title {
        font-size: 1.5rem;
    }

    .artwork-detail-artist {
        font-size: 1rem;
    }

    .artwork-detail-comment p {
        font-size: 1rem;
    }

    .artwork-navigation {
        flex-direction: column;
        gap: 20px;
    }

    .nav-prev a,
    .nav-next a {
        width: 100%;
        justify-content: center;
    }
}

/* Contact Page Styles */
.contact-page-header {
    background: linear-gradient(135deg, #00bfa5 0%, #00acc1 100%);
    padding: 100px 0 60px;
    margin-top: 100px;
    text-align: center;
    color: white;
}

.contact-page .purchase-hero {
    background: transparent;
    padding: 30px 0 30px;
    margin-top: 100px;
    text-align: center;
    color: white;
}

.contact-page .purchase-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
    background-color: #c01f2c;
    border-radius: 40px;
    padding: 5px 50px;
    display: inline-block;
    font-family: '游明朝', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
}

.contact-page .purchase-subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    color: #c19450;
}

.contact-page-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-page-subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    opacity: 0.9;
}

.contact-form-section {
    padding: 60px 0;
}

.contact-form-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-form-section .section-icon {
    width: 10%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.contact-form-section .section-title {
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
    margin: 0;
    font-family: Cambria, Georgia, serif;
}

.contact-form-section .section-title .first-letter {
    color: #c01f2c;
}

.contact-form-section .section-subtitle {
    font-weight: bold;
    font-size: 1.2rem;
    color: #000;
    font-family: sans-serif;
}

.contact-intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto 80px;
    background: #f8f8f8;
    padding: 40px;
    border-radius: 0;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group label.required::after {
    content: " *";
    color: #e74c3c;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group input[type="file"] {
    padding: 8px 0;
    border: none;
}

.form-note {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #666;
}

.form-privacy {
    margin: 30px 0;
}

.form-privacy label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    white-space: nowrap;
}

.form-privacy input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.submit-button {
    background: #c01f2c;
    color: white;
    border: none;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
}

.submit-button:hover {
    background: #a01826;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(192, 31, 44, 0.3);
}

.form-success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 30px;
}

.contact-info-section {
    background: white;
    padding: 60px 0;
    text-align: center;
}

.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-method {
    padding: 30px;
    background: #f8f8f8;
    border-radius: 0;
}

.contact-method h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
}

.phone-number {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.phone-number a {
    color: #00bfa5;
    text-decoration: none;
    font-weight: bold;
}

.business-hours {
    color: #666;
    font-size: 0.7rem;
}


/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-page-header {
        margin-top: 140px;
        padding: 60px 0 40px;
    }

    .contact-page-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 20px;
    }

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

/* 追加のレスポンシブ調整 */
@media (max-width: 768px) {

    /* 横スクロール防止 */
    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }

    /* すべてのセクションで最大幅を制限 */
    .section,
    .container,
    .header-container,
    .nav-container {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    /* 画像の制限 */
    img {
        max-width: 100%;
        height: auto;
    }

    /* パディング調整 */
    .purchase-block,
    .online-block {
        padding: 30px 15px;
    }

    .purchase-inner,
    .online-inner {
        padding: 0;
    }
}

.section.point-section {
    display: none !important;
}

/* Customer Voice Section */
.customer-voice-section {
    padding: 80px 0;
    background-color: #f7ecde;
}

.voice-grid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.voice-item {
    background: white;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.voice-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.voice-content {}

.voice-rating {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 15px;
}

.voice-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.voice-author {
    text-align: center;
    color: #666;
    font-size: 17px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .voice-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .customer-voice-section {
        padding: 60px 0;
    }
}

/* Customer Voice Image Styles */
.voice-image {
    margin-bottom: 15px;
    text-align: center;
}

.voice-image img {
    width: 175px;
    height: 175px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9e9e9;
}

/* Remove star rating styles */
.voice-rating {
    display: none;
}

/* Artist Detail Page Layout */
.artist-info {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.artist-info .artist-thumbnail {
    flex: 0 0 40%;
    max-width: 500px;
}

.artist-info .artist-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.artist-profile {
    flex: 1;
}

.artist-profile h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 28px;
}

.artist-profile p {
    line-height: 1.8;
    color: #333;
    font-size: 1.6rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .artist-info {
        flex-direction: column;
        gap: 30px;
    }

    .artist-thumbnail {
        flex: none;
        max-width: 100%;
    }
}

/* Artist Works Section */
.artist-works {
    /* margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #e0e0e0; */
}

.artist-works h2 {
    margin-bottom: 30px;
    color: #2c3e50;
    font-size: 28px;
    text-align: center;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.artwork-item {
    transition: transform 0.3s ease;
}

.artwork-item:hover {
    transform: translateY(-5px);
}

.artwork-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.artwork-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0;
}

.no-artwork-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    color: #999;
}

.artwork-info {
    padding: 10px;
}

.artwork-title {
    font-size: 18px;
    margin: 0 0 10px 0;
    color: #2c3e50;
}

.artwork-price {
    color: #e74c3c;
    font-weight: bold;
    margin: 0;
}

/* Artist List Square Thumbnails */
.artist-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    /* 1:1 Aspect Ratio */
    overflow: hidden;
    background-color: #fff;
    border-radius: 0;
}

.artist-thumbnail .artist-image,
.artist-thumbnail .no-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.artist-thumbnail .artist-image {
    object-fit: cover;
    object-position: center;
}

.artist-thumbnail .no-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e0e0e0;
    color: #999;
    font-size: 14px;
}

/* Adjust artist grid for better square display */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.artist-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.artist-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.artist-info {
    padding: 15px 10px 30px 10px;
    text-align: center;
}

.artist-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Square thumbnails for artist list page */
.artists-grid .artist-thumbnail {
    position: relative;
    padding-bottom: 100%;
    /* Creates 1:1 aspect ratio */
    overflow: hidden;
    background-color: #f5f5f5;
}

.artists-grid .artist-thumbnail img,
.artists-grid .artist-thumbnail .no-image-placeholder {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.artists-grid .artist-thumbnail .no-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e0e0e0;
    color: #999;
    font-size: 14px;
}

/* Remove border radius from artist thumbnails */
.artist-thumbnail,
.artist-thumbnail img,
.artists-grid .artist-thumbnail,
.artists-grid .artist-thumbnail img,
.artist-item .artist-thumbnail,
.artist-item .artist-thumbnail img {
    border-radius: 0 \!important;
}

/* Remove border radius from artist items */
.artist-item {
    border-radius: 0 \!important;
}

/* p-assess__msg-box styles from kaitori-ketchup.com */
.p-assess__msg {
    padding: 1px 0;
}

.p-assess__msg-box {
    /* background: #f8f8f8; */
    border-radius: 30px;
    padding: 30px;
    margin: 20px auto;
    max-width: 900px;
}

.p-assess__msg-items {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
}

.p-assess__msg-box .social-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.p-assess__msg-item {
    background: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 40px;
    padding: 15px 15px 15px 40px;
    margin-bottom: 15px;
    position: relative;
    line-height: 1.8;
    color: #8b7355;
    font-weight: bold;
    font-family: '游明朝', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'HG明朝E', 'MS P明朝', 'MS 明朝', serif;
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
}

.p-assess__msg-item:before {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url('/wp-content/uploads/check.png') no-repeat center;
    background-size: contain;
}

.p-assess__msg-item:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .p-assess__msg-box {
        padding: 20px;
        margin: 15px 10px;
    }
}

/* LINE consultation button styles */

/* c-button base styles */
.c-button {
    --_width: 15rem;
    --_height: 4.375rem;
    --_radius: 3.125rem;
    --_bgcolor: #fff;
    --_size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    border-radius: var(--_radius);
    width: var(--_width);
    height: var(--_height);
    background-color: var(--_bgcolor);
    text-transform: uppercase;
    font-size: var(--_size);
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #000;
    transition: background 0.3s ease-out;
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    .c-button {
        --_size: 1.5rem;
        --_width: 18.75rem;
        --_height: 5.625rem;
        border: 4px solid #000;
    }
}

/* p-assess__msg-button specific styles */
.p-assess__msg-button {
    --_width: min(100%, 28.125rem);
    margin-top: 2.5rem;
    margin-inline: auto;
    background-color: #06C755;
    color: #fff;
    transition: filter 0.3s ease-out;
    border-color: #06C755;
}

@media screen and (min-width: 768px) {
    .p-assess__msg-button {
        margin-top: 3.75rem;
    }
}

.p-assess__msg-button img {
    display: block;
    margin-right: 0.625rem;
    width: 1.625rem;
    height: auto;
}

@media screen and (min-width: 768px) {
    .p-assess__msg-button img {
        margin-right: 1.25rem;
        width: 2.0875rem;
    }
}

@media screen and (min-width: 1024px) {
    .p-assess__msg-button:hover {
        cursor: pointer;
        white-space: nowrap;
        filter: brightness(0.9);
    }
}

/* Video assessment button background */
.method-button.video-button {
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Add line under method card headings */
.method-header {
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

/* Center align method headings */
.method-header h3 {
    text-align: center;
}

text-align: center;
}
}

/* ============================================
   Online Assessment Features Section
   ============================================ */
.online-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-content {
    flex: 1;
    text-align: center;
}

.feature-item h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
}

.feature-item p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
    text-align: center;
}

.assessment-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.assessment-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000;
}

/* Feature number styles */
.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 768px) {
    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/* ============================================
   LINE Button Styles - Priority Override
   ============================================ */
.c-button {
    --_width: 15rem !important;
    --_height: 4.375rem !important;
    --_radius: 3.125rem !important;
    --_bgcolor: #fff !important;
    --_size: 1.125rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid #000 !important;
    border-radius: var(--_radius) !important;
    width: var(--_width) !important;
    height: var(--_height) !important;
    background-color: var(--_bgcolor) !important;
    text-transform: uppercase !important;
    font-size: var(--_size) !important;
    letter-spacing: 0.1em !important;
    font-weight: 700 !important;
    color: #000 !important;
    transition: background 0.3s ease-out !important;
    text-decoration: none !important;
}

@media screen and (min-width: 768px) {
    .c-button {
        --_size: 1.5rem !important;
        --_width: 18.75rem !important;
        --_height: 5.625rem !important;
        border: 4px solid #000 !important;
    }
}

.p-assess__msg-button {
    --_width: min(100%, 28.125rem) !important;
    margin-top: 2.5rem !important;
    margin-inline: auto !important;
    background-color: #06C755 !important;
    color: #fff !important;
    transition: filter 0.3s ease-out !important;
    border-color: #06C755 !important;
}

@media screen and (min-width: 768px) {
    .p-assess__msg-button {
        margin-top: 3.75rem !important;
    }
}

.p-assess__msg-button img {
    display: block !important;
    margin-right: 0.625rem !important;
    width: 1.625rem !important;
    height: auto !important;
}

@media screen and (min-width: 768px) {
    .p-assess__msg-button img {
        margin-right: 1.25rem !important;
        width: 2.0875rem !important;
    }
}

.p-assess__msg-button:hover {
    cursor: pointer !important;
    filter: brightness(0.9) !important;
}

/* ============================================
   Online Assessment Flow Section
   ============================================ */
.online-flow {
    padding: 80px 0;
    background: white;
}

.online-flow .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.online-flow .section-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.online-flow .flow-steps {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.online-flow .flow-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 30px;
    background: #f1eee9;
    border-radius: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.online-flow .flow-step::after {
    display: none !important;
}

.online-flow .flow-step:last-child {
    margin-bottom: 0;
}

.online-flow .step-content {
    flex: 1;
    text-align: left;
    padding-left: 20px;
}

.online-flow .flow-step h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    margin-top: 0;
    color: #333;
    font-weight: bold;
    line-height: 1.4;
}

.online-flow .flow-step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .online-flow {
        padding: 40px 0;
    }

    .online-flow .section-title {
        font-size: 2rem;
    }

    .online-flow .flow-step {
        padding: 20px;
        margin-bottom: 20px;
    }

    .online-flow .flow-step h3 {
        font-size: 1.2rem;
    }
}

/* ============================================
   Online CTA Section
   ============================================ */
.online-cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.online-cta-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.online-cta-section .section-title {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-buttons {
    margin-bottom: 40px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #333;
}

.cta-check {
    color: #06C755;
    font-weight: bold;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .online-cta-section {
        padding: 40px 0;
    }

    .online-cta-section .section-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .cta-features {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .cta-feature {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .intro-content h2 {
        font-size: 1.5rem;
    }
}

/* ============================================
   Online Assessment Flow Section - Horizontal Layout
   ============================================ */
.online-flow .flow-steps {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

@media (min-width: 769px) {
    .online-flow .flow-step {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 20px !important;
        background: #ffffff !important;
        border-radius: 10px !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        margin-top: 25px;
        margin-bottom: 0 !important;
        min-height: 320px !important;
    }

    .online-flow .step-number {
        display: inline-flex !important;
        width: 70px !important;
        height: 70px !important;
        background: #8b7355 !important;
        color: white !important;
        border-radius: 0 !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.5rem !important;
        font-weight: bold !important;
        margin-bottom: 20px !important;
        box-shadow: none !important;
        font-family: Cambria, Georgia, serif;
    }
}

.online-flow .step-content {
    flex: 1 !important;
}

.online-flow .flow-step h3 {
    font-size: 1.3rem !important;
    margin-bottom: 10px !important;
    margin-top: 0 !important;
    color: #c01f2c !important;
    font-weight: bold !important;
    line-height: 1.4 !important;
    font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "MS P明朝", "MS 明朝", serif;
    text-align: center !important;
}

.online-flow .flow-step p {
    font-size: 0.95rem !important;
    color: #000 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

@media (max-width: 992px) {
    .online-flow .flow-steps {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .online-flow .flow-step {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 30px 20px !important;
        background: #ffffff !important;
        border-radius: 10px !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        margin-bottom: 0 !important;
    }

    .online-flow .step-number {
        display: inline-flex !important;
        width: 60px !important;
        height: 60px !important;
        background: #8b7355 !important;
        color: white !important;
        border-radius: 0 !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.2rem !important;
        font-weight: bold !important;
        margin-bottom: 20px !important;
        box-shadow: none !important;
        font-family: Cambria, Georgia, serif;
    }

    .online-flow .step-content {
        padding-left: 0 !important;
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .online-flow .flow-steps {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .online-flow .flow-step {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 30px 20px !important;
        background: #ffffff !important;
        border-radius: 10px !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        margin-bottom: 0 !important;
    }

    .online-flow .step-number {
        display: inline-flex !important;
        width: 60px !important;
        height: 60px !important;
        background: #8b7355 !important;
        color: white !important;
        border-radius: 0 !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.2rem !important;
        font-weight: bold !important;
        margin-bottom: 20px !important;
        box-shadow: none !important;
        font-family: Cambria, Georgia, serif;
    }

    .online-flow .step-content {
        padding-left: 0 !important;
        text-align: center !important;
    }

    .online-assessment-page .purchase-hero {
        padding: 20px 0 20px;
        margin-top: 10px;
    }

    .online-assessment-page .purchase-title {
        font-size: 1.5rem;
        padding: 5px 30px;
    }

    .online-assessment-page .section-icon {
        width: 15%;
        height: auto;
    }

    .online-assessment-page .section-title {
        font-size: 2rem;
    }

    .online-assessment-page .section-subtitle {
        font-size: 1.2rem;
    }

    .online-intro {
        padding-top: 0px;
    }

    .intro-content h2 {
        font-size: 1.1rem;
    }

    .method-card h3 {
        margin-bottom: 0px;
    }

    .method-header {
        border-bottom-color: #c01f2c;
    }

    .method-content li {
        font-size: 1rem;
    }

    .method-card {
        margin-top: 0;
        height: auto;
    }

    .method-button.video-button {
        background: #3059bf;
    }

    .method-button.video-button:hover {
        background: #23418a;
    }

    .method-button {
        font-size: 1.1rem;
    }

    .online-assessment-page .p-assess__msg-item,
    .p-assess__msg-items .p-assess__msg-item {
        font-size: 0.9rem !important;
    }

    .form-button {
        margin-top: 20px;
    }

    .online-assessment-page .online-features .feature-title {
        font-size: 1.3rem !important;
    }
}

/* Online Flow Section - Center Title */
.online-flow .section-header {
    text-align: center !important;
}

.online-flow .section-title {
    text-align: center !important;
}

/* Force center alignment for Online Flow Title */
.online-flow {
    text-align: center !important;
}

.online-flow .container {
    text-align: center !important;
}

.online-flow .section-header {
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto !important;
}

.online-flow .section-header h2 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.online-flow h2.section-title {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
}

/* Online features - matching reason-item style */
.online-features .feature-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin: 20px auto 0 auto;
    max-width: 800px;
    background: white !important;
    border-radius: 0 !important;
    padding: 15px 20px !important;
    box-shadow: none !important;
}

.online-features .feature-label {
    background: #c01f2c;
    color: #fff;
    padding: 10px;
    font-weight: bold;
    font-size: 1rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: Cambria, Georgia, serif;
}

.online-features .feature-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    text-align: left;
}

.online-features .feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #c01f2c;
    margin-bottom: 8px;
    font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "MS P明朝", "MS 明朝", serif;
}

.online-features .feature-desc {
    font-size: 1rem;
    font-weight: normal;
    color: #000;
    line-height: 1.6;
}


/* Top Heading Section */
.top-heading-section {
    font-family: Cambria, Georgia, serif;
    padding: 40px 20px;
    text-align: center;
    background: #c01f2c;
    color: white;
}

.top-main-heading {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.4;
}

.top-sub-heading {
    font-size: 2rem;
    font-weight: 600;
}

.top-cta-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #ffeb3b;
}

@media (max-width: 768px) {
    .top-main-heading {
        font-size: 2rem;
    }

    .top-sub-heading {
        font-size: 2rem;
    }

    .top-cta-heading {
        font-size: 2rem;
    }
}

/* Our Strengths Section */
.our-strengths-section {
    padding: 60px 20px;
    text-align: center;
}

.strengths-icon {
    width: 10%;
    display: block;
    margin: 0 auto;
}

.strengths-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    font-family: Cambria, Georgia, serif;
}

.strengths-title .first-letter {
    color: #c01f2c;
}

.strengths-subtitle {
    font-weight: bold;
    font-size: 1.2rem;
    color: #000;
    font-family: sans-serif;
}

@media (max-width: 768px) {
    .our-strengths-section {
        padding: 40px 20px;
    }


    .strengths-title {
        font-size: 2rem;
    }

    .strengths-subtitle {
        font-size: 1.2rem;
    }
}

.reason-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin: 20px auto 0 auto;
    max-width: 430px;
}

.reason-label {
    background: #c01f2c;
    color: #fff;
    padding: 10px;
    font-weight: bold;
    font-size: 1rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-text {
    font-size: 1.7rem;
    font-weight: bold;
    color: #000;
}

/* WANTED Header - matching Our Strengths style */
.wanted-header {
    text-align: center;
    margin-bottom: 40px;
}

.wanted-icon {
    width: 10%;
    display: block;
    margin: 0 auto;
}

.wanted-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    font-family: Cambria, Georgia, serif;
}

.wanted-title .first-letter {
    color: #c01f2c;
}

.wanted-subtitle {
    font-weight: bold;
    font-size: 1.2rem;
    color: #000;
    font-family: sans-serif;
}

/* PICK UP Header */
.pickup-header {
    text-align: center;
    margin-bottom: 40px;
}

.pickup-icon {
    width: 10%;
    display: block;
    margin: 0 auto;
}

.pickup-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    font-family: Cambria, Georgia, serif;
}

.pickup-title .first-letter {
    color: #c01f2c;
}

.pickup-subtitle {
    font-weight: bold;
    font-size: 1.2rem;
    color: #000;
    font-family: sans-serif;
}

/* CUSTOMER VOICE Header */
.voice-header {
    text-align: center;
    margin-bottom: 40px;
}

.voice-icon {
    width: 10%;
    display: block;
    margin: 0 auto;
}

.voice-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    font-family: Cambria, Georgia, serif;
}

.voice-title .first-letter {
    color: #c01f2c;
}

.voice-subtitle {
    font-weight: bold;
    font-size: 1.2rem;
    color: #000;
    font-family: sans-serif;
}

/* HOW TO Header */
.howto-header {
    text-align: center;
    margin-bottom: 40px;
}

.howto-icon {
    width: 10%;
    display: block;
    margin: 0 auto;
}

.howto-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    font-family: Cambria, Georgia, serif;
}

.howto-title .first-letter {
    color: #c01f2c;
}

.howto-subtitle {
    font-weight: bold;
    font-size: 1.2rem;
    color: #000;
    font-family: sans-serif;
}

/* BLOG Header */
.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-icon {
    width: 10%;
    display: block;
    margin: 0 auto;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    font-family: Cambria, Georgia, serif;
}

.blog-title .first-letter {
    color: #c01f2c;
}

.blog-subtitle {
    font-weight: bold;
    font-size: 1.2rem;
    color: #000;
    font-family: sans-serif;
}

/* Purchase and Online Section Headers */
.purchase-content .section-header,
.online-content .section-header {
    text-align: center;
    margin-bottom: 20px;
}

.purchase-content .section-title,
.online-content .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
    font-family: Cambria, Georgia, serif;
}

.purchase-content .section-title .first-letter,
.online-content .section-title .first-letter {
    color: #c01f2c;
}

.purchase-content .section-subtitle,
.online-content .section-subtitle {
    font-weight: bold;
    font-size: 1.2rem;
    color: #000;
    font-family: sans-serif;
    margin: 0 0 20px 0;
}

@media (max-width: 768px) {

    .purchase-content .section-title,
    .online-content .section-title {
        font-size: 2rem;
    }

    .purchase-content .section-subtitle,
    .online-content .section-subtitle {
        font-size: 1rem;
    }
}

font-size: 1rem;
}
}

/* Company Section */
.company-header {
    text-align: center;
    margin-bottom: 40px;
}

.company-icon {
    width: 10%;
    display: block;
    margin: 0 auto;
}

.company-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    text-align: center;
    font-family: Cambria, Georgia, serif;
}

.company-title .first-letter {
    color: #c01f2c;
}

.company-subtitle {
    font-weight: bold;
    font-size: 1.2rem;
    color: #000;
    font-family: sans-serif;
    text-align: center;
}

@media (max-width: 768px) {
    .company-title {
        font-size: 2rem;
    }

    .company-subtitle {
        font-size: 1rem;
    }
}

/* Point Section */
.point-header {
    text-align: center;
    margin-bottom: 40px;
}

.point-icon {
    width: 25%;
    display: block;
    margin: 0 auto;
}

.point-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    text-align: center;
    font-family: Cambria, Georgia, serif;
}

.point-title .first-letter {
    color: #c01f2c;
}

.point-subtitle {
    font-weight: bold;
    font-size: 1.2rem;
    color: #000;
    font-family: sans-serif;
    text-align: center;
}

@media (max-width: 768px) {
    .point-title {
        font-size: 2rem;
    }

    .point-subtitle {
        font-size: 1rem;
    }
}

/* Pick Up作品の作家名スタイル */
.artist-name-small {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 10px 0;
    text-align: center;
    font-weight: normal;
}

.purchase-price {
    font-size: 0.9rem;
    color: #c01f2c;
    font-weight: 600;
    margin-top: 10px;
}

/* Packing section headings */
.packing-section-heading {
    text-align: center;
    margin-bottom: 10px;
}

.packing-section-heading h3 {
    font-size: 1.5em;
    background: #d32f2f;
    color: white;
    padding: 8px 50px;
    border-radius: 30px;
    display: inline-block;
    font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HG明朝E", serif;
    margin: 0 0 10px 0;
}

.packing-section-heading.with-top-margin h3 {
    margin-top: 40px;
}

/* Responsive design for packing section headings */
@media (max-width: 768px) {
    .packing-section-heading h3 {
        font-size: 1.2em;
        padding: 6px 40px;
    }
}

@media (max-width: 480px) {
    .packing-section-heading h3 {
        font-size: 1em;
        padding: 5px 30px;
    }
}

/* Purchase Contact - Responsive */
@media (max-width: 768px) {
    .kaitori-purchase-page .purchase-contact {
        padding: 40px 0;
    }

    .kaitori-purchase-page .contact-box h2 {
        font-size: 1.8rem;
    }

    .kaitori-purchase-page .contact-box p {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .social-button img {
        width: 180px;
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .kaitori-purchase-page .purchase-howto {
        padding: 0 !important;
    }

    .kaitori-purchase-page .section-header {
        margin-bottom: 30px !important;
    }

    .kaitori-purchase-page .howto-icon {
        width: 60px !important;
        height: 60px !important;
    }

    .kaitori-purchase-page .howto-icon img {
        width: 38px !important;
        height: 38px !important;
    }

    .purchase-flow {
        margin-bottom: 0 !important;
    }

    .kaitori-purchase-page .howto-item {
        background: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .kaitori-purchase-page .step-number {
        background: #c01f2c !important;
    }

    .kaitori-purchase-page .flow-step .step-content>div[style*="display: flex"]>div {
        border-bottom: 1px solid #d4c5a9;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .kaitori-purchase-page .flow-step .step-content>div[style*="display: flex"]>div:last-child {
        border-bottom: none;
    }

    .kaitori-purchase-page .photo-guide {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .kaitori-purchase-page .contact-box h2 {
        font-size: 1.5rem;
    }

    .kaitori-purchase-page .contact-box p {
        font-size: 1.2rem;
    }

    .social-buttons {
        flex-direction: column;
        align-items: center;
    }

    .social-button img {
        width: 240px;
        max-width: 100%;
    }
}

/* Online page - LINE app notice box */
.line-app-notice {
    background-color: #000;
    color: #fff;
    padding: 15px 20px;
    border-radius: 30px;
    margin-top: 20px;
    text-align: center;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.line-app-notice p {
    margin: 0;
}

/* Contact Page Responsive Styles */
@media (max-width: 768px) {
    .contact-page .purchase-hero {
        padding: 20px 0 20px;
        margin-top: 10px;
    }

    .contact-page .purchase-title {
        font-size: 1.5rem;
        padding: 5px 30px;
    }
}


/* ここから custom-style.css */
/* カスタムスタイル - 昨日の作業分 */

/* サイトロゴ - 黄色背景 */
.site-logo {
    background-color: #FFEB3B !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important;
}

/* ボタンの色 */
.btn-primary {
    background: #FF6B6B !important;
    color: white !important;
}

.btn-secondary {
    background: #4ECDC4 !important;
    color: white !important;
}

/* レスポンシブ時のサムネイル正方形 */
@media (max-width: 768px) {
    .wanted-section .product-image,
    .pickup-section .product-image {
        aspect-ratio: 1 / 1 !important;
        height: auto !important;
        object-fit: cover !important;
    }
}

/* ここから dev-custom.css */
/*
 * 開発用カスタムCSS
 */

/* サイトロゴ - 緑色背景（透明度90%） */
.site-logo {
    background-color: rgba(117, 200, 173, 0.9) !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important;
    min-width: 250px !important;
}

.site-logo h1,
.site-logo .logo-subtitle {
    color: white !important;
}

/* HOW TO リンクスタイル */
.how-to-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block !important;
}

/* ボタンスタイル */
.btn-primary {
    background-color: #FF6B6B !important;
    color: white !important;
}

.btn-secondary {
    background-color: #4ECDC4 !important;
    color: white !important;
}

/* Footer Logo スタイル */
.footer-logo {
    text-align: center !important;
}

.footer-logo img {
    max-width: 300px !important;
    height: auto !important;
    display: inline-block !important;
}

.site-footer .container > div {
    border-top-color: white !important;
}

/* 各ページの見出しpadding調整 */
.purchase-page-header,
.kaitori-page-header,
.page-header,
.artists-archive .page-header,
.artworks-archive .page-header,
.single-artist .page-header,
.single-artwork .page-header,
.page-id-51 .purchase-page-header,
.purchase-page-container .purchase-page-header,
body .purchase-page-header,
body .kaitori-page-header,
body .page-header,
.kaitori-purchase-page .purchase-hero,
.artists-page-header,
.artworks-page-header,
.online-page-header,
.contact-page-header {
    padding: 30px 0 30px !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

/* Kaitori Purchase Hero スタイル */
.kaitori-purchase-page .purchase-hero {
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Artist Detail Hero スタイル */
.artist-detail .artist-hero {
    background: none !important;
    background-color: transparent !important;
    padding: 50px 0 50px !important;
}

.artist-profile p {
    text-align: left !important;
    font-size: 16px !important;
}

.artist-info {
    margin-bottom: 0 !important;
}

/* Purchase Page Header スタイル */
.purchase-page-header,
body .purchase-page-header,
.purchase-page-container .purchase-page-header,
.page-id-51 .purchase-page-header,
.page-id-99 .purchase-page-header {
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    color: #75c8ad !important;
}

.purchase-page-header h1,
body .purchase-page-header h1,
.purchase-page-header .purchase-page-title {
    color: #75c8ad !important;
}

.purchase-page-header p,
body .purchase-page-header p,
.purchase-page-header .purchase-page-subtitle {
    color: #f36b6b !important;
}

/* Contact Page Header スタイル */
.contact-page-header {
    background: none !important;
    background-color: transparent !important;
    color: #75c8ad !important;
}

.contact-page-header h1 {
    color: #75c8ad !important;
}

.contact-page-header p {
    color: #f36b6b !important;
}

/* Online Page Header スタイル */
.online-page-header {
    background: none !important;
    background-color: transparent !important;
    color: #75c8ad !important;
}

.online-page-header h1 {
    color: #75c8ad !important;
}

.online-page-header p {
    color: #f36b6b !important;
}

/* Artworks Page Header スタイル - 削除（style.cssで管理） */

/* Artists Page Header スタイル - 削除（style.cssで管理） */

/* Artist ページ別サムネイルスタイル */
.single-artist .artist-thumbnail,
.artist-detail .artist-thumbnail {
    padding-bottom: 0 !important;
}

.artists-archive .artist-card .product-image,
.page-template-page-artists .artist-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}


/* Pick Up Swiper スライダースタイル */
.pickup-section .pickup-swiper-container,
.pickup-section .product-grid {
    position: relative;
    z-index: 1;
}

.pickup-section .pickup-swiper-container::before,
.pickup-section .product-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: #e7e4dd !important;
    z-index: -1;
    pointer-events: none;
}

.pickup-section .container {
    overflow: visible !important;
    padding: 0 80px !important;
}

.pickup-section .product-grid {
    margin: 0 -60px;
    padding: 0 60px;
}

.pickup-swiper-container {
    padding: 30px 0;
    overflow: visible !important;
    position: relative;
}

.pickupSwiper {
    padding: 20px 0 50px;
    overflow: hidden !important;
    margin: 0 60px !important;
    position: relative;
}

.pickupSwiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

.pickupSwiper .product-card {
    width: 100%;
    height: 100%;
}

/* ナビゲーションボタン */
.pickup-swiper-container .swiper-button-next,
.pickup-swiper-container .swiper-button-prev {
    color: #c01f2c;
    background: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 100 !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.pickup-swiper-container .swiper-button-next {
    right: 8px;
}

.pickup-swiper-container .swiper-button-prev {
    left: 8px;
}

.pickup-swiper-container .swiper-button-next:after,
.pickup-swiper-container .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.pickup-swiper-container .swiper-button-next:hover,
.pickup-swiper-container .swiper-button-prev:hover {
    background: #c01f2c;
    color: white;
}

/* ページネーション */
.pickupSwiper .swiper-pagination {
    bottom: 0;
}

.pickupSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}

.pickupSwiper .swiper-pagination-bullet-active {
    background: #c01f2c;
}

/* ========================================
   レスポンシブ調整（カスタム）
   ======================================== */
@media (max-width: 1024px) {
    .pickup-section .container {
        padding: 0 70px !important;
    }

    .pickup-section .product-grid {
        margin: 0 -50px;
        padding: 0 50px;
    }

    .pickupSwiper {
        margin: 0 50px !important;
    }
}

@media (max-width: 768px) {
    /* site-logo レスポンシブ版の色設定 */
    .site-logo {
        background-color: rgba(117, 200, 173, 0.9) !important;
    }

    /* site-headerの背景画像を中央配置 */
    .site-header {
        background-position: center center !important;
        background-size: cover !important;
    }

    /* オンライン査定ページ */
    .p-assess__msg-box {
        padding: 0 !important;
    }

    .p-assess__msg-item {
        font-size: 1.1rem !important;
    }

    /* 作品詳細ページのSNSシェアボタンを非表示 */
    .artwork-share {
        display: none !important;
    }

    /* 買取ページの.step-numberの背景色変更 */
    .kaitori-purchase-page .step-number,
    .kaitori-purchase-page .purchase-flow .step-number,
    .kaitori-purchase-page .flow-step .step-number,
    .kaitori-purchase-page .flow-steps .step-number,
    .kaitori-purchase-page div.step-number {
        background: #75c8ad !important;
        background-color: #75c8ad !important;
    }

    /* purchase-contactセクションを非表示 */
    .purchase-contact,
    #purchase-contact,
    .purchase-cta {
        display: none !important;
    }

    /* .wanted-sectionの背景画像を削除 */
    .wanted-section {
        background-image: none !important;
    }

    /* フッターの下部余白を追加 */
    .site-footer {
        padding-bottom: 80px !important;
    }

    /* Pick Up Swiper レスポンシブ調整 */
    .pickup-section .container {
        padding: 0 60px !important;
    }

    .pickup-section .product-grid {
        margin: 0 -40px;
        padding: 0 40px;
    }

    .pickupSwiper {
        margin: 0 40px !important;
    }

    .pickup-swiper-container .swiper-button-next,
    .pickup-swiper-container .swiper-button-prev {
        width: 36px;
        height: 36px;
    }

    .pickup-swiper-container .swiper-button-next {
        right: 5px;
    }

    .pickup-swiper-container .swiper-button-prev {
        left: 5px;
    }

    .pickup-swiper-container .swiper-button-next:after,
    .pickup-swiper-container .swiper-button-prev:after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    /* site-logo モバイル版の色設定 */
    .site-logo {
        background-color: rgba(117, 200, 173, 0.9) !important;
    }

    /* Pick Up Swiper レスポンシブ調整 */
    .pickup-section .container {
        padding: 0 25px !important;
    }

    .pickup-section .product-grid {
        margin: 0 -5px;
        padding: 0 5px;
    }

    .pickupSwiper {
        margin: 0 10px !important;
    }

    .pickup-swiper-container .swiper-button-next {
        right: 2px;
    }

    .pickup-swiper-container .swiper-button-prev {
        left: 2px;
    }
}
