#Main h1 {
    color: #494949;
    font-size: 2.5em;
    font-weight: bold;
    margin: 3rem 0 30px;
    text-align: center;
}

.hero-image {
    width: 100%;
    margin: 40px 0;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.shop-link {
    text-align: center;
    margin: 40px 0;
    padding: 30px 20px;
    background: linear-gradient(135deg, #fff8f0 0%, #ffe5cc 100%);
    border-radius: 8px;
}

.shop-link p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #494949;
}

.shop-link p:last-child {
    margin-bottom: 0;
}

.shop-link a {
    display: inline-block;
    padding: 15px 40px;
    background: #f39800;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 50px;
    transition: background 0.3s ease;
}

.shop-link a:hover {
    background: #e67e22;
}

.cmc-link {
    text-align: center;
    margin: 40px 0;
    padding: 30px 20px;
    background: linear-gradient(135deg, #e0e8f5 0%, #b8cae8 100%);
    border-radius: 8px;
}

.cmc-link p {
    margin-bottom: 0;
    font-size: 1.1em;
}

.cmc-link a {
    display: inline-block;
    padding: 15px 40px;
    background: #1e3a8a;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 50px;
    transition: background 0.3s ease;
}

.cmc-link a:hover {
    background: #3b5b9d;
}

section {
    background: white;
    margin: 40px 0;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-size: 2.2em;
    margin-bottom: 30px;
    color: #f39800;
    border-left: 6px solid #f39800;
    padding-left: 20px;
}

section h3 {
    font-size: 1.6em;
    margin: 30px 0 20px;
    color: #e67e22;
}

section p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 2;
}

.highlight {
    background: linear-gradient(transparent 60%, #ffd93d 60%);
    font-weight: 600;
}

.image-placeholder {
    width: 100%;
    /* margin: 30px 0; */
}

.image-placeholder img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto;
}

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

.feature-box {
    background: #fff8f0;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #f39800;
    margin-bottom: 30px;
}

.feature-box h4 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #f39800;
}

.recommend-list {
    background: linear-gradient(135deg, #fff8f0 0%, #ffe5cc 100%);
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

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

.recommend-list li {
    padding: 6px 0 6px 30px;
    position: relative;
    font-size: 1.3em;
}

.recommend-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f39800;
    font-weight: bold;
    font-size: 1.3em;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background: #fff8f0;
    border-radius: 8px;
}

.faq-item strong {
    color: #f39800;
    font-size: 1.2em;
    display: block;
    margin-bottom: 15px;
}

.testimonial-box {
    background: white;
    border: 2px solid #e0e8f5;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 30px;
    overflow: hidden;
}

.testimonial-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b5b9d 100%);
    padding: 15px 25px;
    color: white;
    font-weight: bold;
    font-size: 1.1em;
}

.testimonial-age {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.testimonial-content {
    padding: 25px;
}

.testimonial-question {
    margin-bottom: 25px;
}

.testimonial-question:last-child {
    margin-bottom: 0;
}

.testimonial-question strong {
    display: block;
    color: #1e3a8a;
    font-size: 1em;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.testimonial-question strong:before {
    content: "Q";
    position: absolute;
    left: 0;
    background: #1e3a8a;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
    font-weight: bold;
}

.testimonial-question p {
    padding-left: 25px;
    color: #494949;
    line-height: 1.8;
    margin-bottom: 0;
}


@media (max-width: 768px) {

    section {
        padding: 40px 10px;
    }

    section h2 {
        font-size: 1.8em;
    }

    .two-column {
        grid-template-columns: 1fr;
    }
}


.quote {
    font-style: italic;
    color: #555;
    padding: 15px 30px;
    border-left: 4px solid #f39800;
    margin: 30px 0;
    background-color: #fff8f0;
    font-size: 1rem;
}

.container h3 {
    color: #f39800;
    font-size: 20px;
    margin-top: 20px;
}

.container ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
}

.container li {
    margin-bottom: 8px;
    list-style: none;
}

.balance-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.balance-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #1e3a8a;
    line-height: 1.8;
    font-size: 16px;
}

.balance-list li:before {
    content: "⚡";
    position: absolute;
    left: 0;
    font-size: 1.3em;
    color: #1e3a8a;
}

.video-section {
    margin: 40px 0;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-top: 20px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shop-section {
    margin: 40px 0;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shop-list {
    margin-top: 30px;
}

.prefecture-group {
    margin-bottom: 40px;
}

.prefecture-title {
    font-size: 1.8em;
    color: #494949;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f39800;
}

.shop-table {
    display: grid;
    gap: 1px;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.shop-table-header {
    display: grid;
    grid-template-columns: 2fr 3fr 1.5fr;
    background: #494949;
    color: white;
    font-weight: bold;
}

.shop-table-header>div {
    padding: 15px 10px;
    text-align: left;
}

.shop-row {
    display: grid;
    grid-template-columns: 2fr 3fr 1.5fr;
    background: white;
}

.shop-row>div {
    padding: 12px 10px;
    border-bottom: 1px solid #f0f0f0;
}

.shop-row:nth-child(even) {
    background: #fafafa;
}

.shop-name-col {
    font-weight: 500;
}

.shop-address-col {
    /* color: #333; */
}

.shop-tel-col {
    color: #f39800;
    white-space: nowrap;
}

.shop-table a {
    color: #0066cc;
    text-decoration: underline;
}

.shop-table a:hover {
    color: #f39800;
}

@media (max-width: 768px) {
    .prefecture-title {
        font-size: 1.5em;
    }

    .shop-table-header,
    .shop-row {
        grid-template-columns: 1fr;
    }

    .shop-table-header>div {
        display: none;
    }

    .shop-row>div {
        display: flex;
        padding: 10px;
    }

    .shop-row>div:before {
        content: attr(data-label);
        font-weight: bold;
        color: #494949;
        min-width: 80px;
        margin-right: 10px;
    }

    .shop-name-col:before {
        content: "店舗名: ";
    }

    .shop-address-col:before {
        content: "住所: ";
    }

    .shop-tel-col:before {
        content: "電話: ";
    }
}