@charset "UTF-8";

/* =========================================
   Base Styles & Reset
   ========================================= */
:root {
    --primary-color: #0056b3;
    --secondary-color: #f8f9fa;
    --accent-color: #ffc107;
    --text-color: #333333;
    --link-color: #0056b3;
    --white: #ffffff;
    --base-font: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--base-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    line-height: 1.3;
    font-weight: 700;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* =========================================
   Components (共通パーツ)
   ========================================= */
.container {
    width: 100%;
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
}

section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-lead {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 2px solid transparent;
    padding: 12px 30px;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
    opacity: 1;
}

.btn-primary {
    color: var(--white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary {
    color: var(--primary-color);
    background-color: var(--white);
    border-color: var(--primary-color);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

.cta-container, .cta-buttons {
    text-align: center;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* =========================================
   1. Hero Section
   ========================================= */
.hero-section {
    position: relative;
    padding: 80px 0 100px;
    color: var(--white);
    text-align: center;
    background: url('img/top_sp.png') no-repeat center center / cover;
}

.hero-content {
    padding-top: 20px; 
}

.hero-strong-point {
    display: inline-block;
    background-color: #ea5514;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    position: relative;
    top: -5px;
}

.hero-h1-main {
    display: block;
    line-height: 1.3;
}

.hero-h1-sub {
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
    color: var(--accent-color);
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}

.cta-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
    font-weight: normal;
}

.hero-sub-copy {
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.tse-text-banner {
    display: inline-block;
    background: linear-gradient(90deg, #0f2350 0%, #1a3a70 50%, #0f2350 100%);
    color: #ffd700;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    border-top: 1px solid #cfaa56;
    border-bottom: 1px solid #cfaa56;
    padding: 8px 20px;
    margin: 0 auto 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.campaign-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    padding: 0 10px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.campaign-medal {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    background-color: #e3c96c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
    margin-right: -25px;
}

.campaign-medal img {
    width: 65%;
    height: auto;
    transform: rotate(-10deg);
}

.campaign-ribbon {
    background: linear-gradient(to right, #b71c1c, #d32f2f);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    padding: 12px 15px 12px 35px;
    border-radius: 4px;
    position: relative;
    flex-grow: 1;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    word-break: break-word;
}

.hero-info-box {
    background-color: var(--white);
    color: var(--text-color);
    padding: 20px 30px;
    border-radius: 12px;
    display: inline-block;
    width: 100%;
    max-width: 800px;
    text-align: left;
    margin-bottom: 40px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.info-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    flex-shrink: 0;
    object-fit: contain;
}

.info-label {
    margin-right: 5px;
    color: var(--primary-color);
    white-space: nowrap;
}

.info-text {
    word-break: break-all;
}

/* =========================================
   2. Store Intro Section
   ========================================= */
.store-carousel-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.store-carousel-wrapper::before,
.store-carousel-wrapper::after {
    display: none;
}

.store-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.store-info h3, .store-features h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.store-info dl {
    display: flex;
    flex-wrap: wrap;
}

.store-info dt {
    width: 30%;
    font-weight: 700;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.store-info dd {
    width: 70%;
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.store-features ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-weight: 700;
}

.store-features ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.store-sub-text {
    text-align: center;
    font-weight: 700;
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 8px;
}

/* =========================================
   3. About Consultation Section
   ========================================= */
.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image {
    width: auto;
    max-width: 100%;
    height: auto;
    display: inline-block;
    object-fit: contain;
    border-radius: 0;
}

.feature-item p {
    margin: 0;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--text-color);
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   4. Campaign Section
   ========================================= */
.section-campaign-gold {
    background: linear-gradient(to bottom right, #e6c972, #f8b500, #e6c972);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: #3e2723;
}

.section-campaign-gold::before,
.section-campaign-gold::after {
    content: "";
    position: absolute;
    background: linear-gradient(to right, #fceabb, #f8b500, #fceabb);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1;
}

.section-campaign-gold::before {
    top: 40px;
    left: -100px;
    width: 400px;
    height: 60px;
    transform: rotate(-45deg);
}

.section-campaign-gold::after {
    bottom: 40px;
    right: -100px;
    width: 400px;
    height: 60px;
    transform: rotate(-45deg);
}

.section-campaign-gold .container {
    position: relative;
    z-index: 2;
}

.campaign-title-gold {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 50px;
    color: #3e2723;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
}

.campaign-benefit-block {
    margin-bottom: 40px;
}

.gold-benefit-label {
    text-align: center;
    font-size: 1.4rem;
    background-color: rgba(255, 255, 255, 0.9);
    display: inline-block;
    padding: 5px 25px;
    border-radius: 50px;
    margin: 0 auto 30px;
    color: #d32f2f;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: table; 
    margin-left: auto;
    margin-right: auto;
}

.campaign-content-gold {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.campaign-image-gold {
    width: 100%;
    max-width: 500px;
    position: relative;
}

.campaign-image-gold::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    background: linear-gradient(to bottom right, #ffd700, #f8b500);
    transform: rotate(-45deg);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    z-index: 1;
}

.campaign-image-gold img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
    background-color: #fff;
}

.campaign-text-gold {
    width: 100%;
    max-width: 600px;
    text-align: left;
}

.campaign-description {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 500;
}

.campaign-usage h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #3e2723;
    border-bottom: 2px solid #3e2723;
    display: inline-block;
    padding-bottom: 5px;
}

.campaign-usage ul, .campaign-list-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.campaign-usage ul li, .campaign-list-box ul li {
    margin-bottom: 10px;
    padding-left: 1.5em;
    position: relative;
    font-weight: 700;
}

.campaign-usage ul li::before, .campaign-list-box ul li::before {
    content: "■";
    color: #3e2723;
    position: absolute;
    left: 0;
    top: 0.1em;
    font-size: 0.8em;
}

.campaign-notes-gold, .campaign-small-note {
    font-size: 0.85rem;
    color: #3e2723;
    opacity: 0.9;
}

.campaign-notes-gold li {
    margin-bottom: 5px;
    padding-left: 1em;
    text-indent: -1em;
}

.gold-separator {
    border: 0;
    border-top: 2px dashed #3e2723;
    opacity: 0.3;
    margin: 40px 0;
}

.text-center-block {
    text-align: center;
    margin: 0 auto;
}

.campaign-list-box {
    background-color: rgba(255, 255, 255, 0.6);
    display: inline-block;
    padding: 20px 40px;
    border-radius: 12px;
    text-align: left;
    margin-bottom: 20px;
}

/* --- 特典2 --- */
.benefit-box-framed {
    border: 4px solid #ea5514;
    border-radius: 16px;
    padding: 45px 20px 25px;
    margin-top: 50px;
    position: relative;
    background-color: #fff8e1;
    box-shadow: 0 10px 20px rgba(234, 85, 20, 0.15);
}

.benefit-box-framed::before,
.benefit-box-framed::after {
    content: "✨";
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.7;
    filter: drop-shadow(0 0 2px #fff);
    animation: sparkle-anim 3s infinite alternate;
}
.benefit-box-framed::before { top: 8px; left: 8px; }
.benefit-box-framed::after { bottom: 8px; right: 8px; animation-delay: 1.5s; }

@keyframes sparkle-anim {
    0% { transform: scale(0.8) rotate(0deg); opacity: 0.5; }
    100% { transform: scale(1.2) rotate(30deg); opacity: 1; }
}

.benefit-emphasis-tag {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    background: linear-gradient(to bottom, #ff9800, #ea5514);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 900;
    padding: 8px 50px;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
    white-space: nowrap;
    border: 3px solid #fff;
    z-index: 10;
}

.benefit-emphasis-tag::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: #ea5514 transparent transparent transparent;
}

.benefit-big-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1;
    filter: drop-shadow(2px 3px 5px rgba(0,0,0,0.1));
    animation: icon-bounce 2s infinite; 
    position: relative;
    z-index: 2;
}

.benefit-big-icon::before {
    content: "";
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #fff 0%, transparent 70%);
    z-index: -1;
    opacity: 0.6;
}

@keyframes icon-bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.benefit-box-framed .campaign-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.benefit-box-framed .campaign-list-box {
    padding: 15px 20px;
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.7);
}

.benefit-box-framed .campaign-list-box ul {
    margin-bottom: 0;
}

.benefit-box-framed .campaign-list-box ul li {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.benefit-box-framed .campaign-small-note {
    font-size: 0.8rem;
    margin-top: 5px;
    color: #666;
}

.campaign-summary-gold {
    background-color: #d32f2f;
    color: #fff;
    text-align: center;
    padding: 25px;
    border-radius: 12px;
    max-width: 800px;
    margin: 40px auto 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 2px solid #fff;
}

.campaign-summary-gold p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.6;
}

.highlight-white {
    color: #ffeb3b;
    font-size: 1.4rem;
}

/* =========================================
   5. Flow Section
   ========================================= */
.section-flow {
    background-color: var(--secondary-color);
}

.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.step-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.step-number {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-icon {
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step-item p {
    font-size: 0.95rem;
}

.step-item:not(:last-child)::after {
    display: none;
}

.flow-notes {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 0.9rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.flow-notes li {
    margin-bottom: 5px;
    padding-left: 1.5em;
    text-indent: -1.5em;
}

.flow-notes li::before {
    content: "※";
    margin-right: 5px;
    color: var(--primary-color);
}

/* =========================================
   6. Recommended Section
   ========================================= */
.section-recommended {
    background-color: var(--primary-color);
    color: var(--white);
    padding-bottom: 80px;
}

.section-recommended .section-title {
    color: var(--white);
}
.section-recommended .section-title::after {
    background-color: var(--accent-color);
}

.section-recommended .section-lead {
    color: rgba(255,255,255,0.9);
}

.checklist {
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.checklist li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    font-weight: 700;
}

.checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffc107'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.recommended-land-area {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    margin: 0 auto 40px;
    max-width: 900px;
    color: var(--text-color); 
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.rec-land-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 2px dashed #ddd;
    padding-bottom: 15px;
    display: inline-block;
}

.rec-land-desc {
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.6;
}

.land-points {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.land-point-item {
    background-color: var(--secondary-color);
    width: 30%;
    min-width: 250px;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
}

.point-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.land-point-item p {
    font-weight: 700;
    margin: 0;
    font-size: 0.95rem;
}

.recommended-closing {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 20px;
}

/* =========================================
   7. About Section
   ========================================= */
.section-about {
    background-color: var(--white);
}

.company-intro-box {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 40px 20px;
    margin-bottom: 60px;
    text-align: center;
}

.company-header {
    margin-bottom: 20px;
}

.company-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: #333;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.company-title {
    font-size: 1.8rem;
    color: #333;
    margin: 0;
}

.company-lead {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px;
}

.company-lead strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

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

.trust-points {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    background-color: #fff;
    width: 30%;
    min-width: 250px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-bottom: 3px solid var(--primary-color);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.trust-item h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* =========================================
   8. FAQ Section
   ========================================= */
.section-faq {
    background-color: var(--secondary-color);
}

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

.faq-list dt {
    background-color: var(--white);
    padding: 15px 20px;
    border-radius: 8px 8px 0 0;
    font-weight: 700;
    margin-top: 20px;
    color: var(--primary-color);
}

.faq-list dd {
    margin: 0;
    background-color: var(--white);
    padding: 15px 20px;
    border-radius: 0 0 8px 8px;
    border-top: 1px solid #eee;
}

/* =========================================
   9. Form Section
   ========================================= */
.section-form {
    background-color: #e9ecef;
}

.form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    appearance: none;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.2);
}

textarea {
    height: 120px;
    resize: vertical;
}

.datetime-inputs input {
    margin-bottom: 10px;
}

.checkbox-group label,
.radio-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input,
.radio-group input {
    margin-right: 8px;
    transform: scale(1.2);
}

.form-privacy {
    text-align: center;
    margin-bottom: 30px;
}

.form-privacy a {
    text-decoration: underline;
}

.form-submit {
    text-align: center;
}

.form-submit .btn-primary {
    width: 100%;
    max-width: 300px;
    padding: 15px;
    font-size: 1.1rem;
}

/* =========================================
   10. Footer
   ========================================= */
.footer {
    background-color: #333;
    color: #ccc;
    padding: 50px 0 20px;
    text-align: center;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-info p {
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--white);
}

.copyright {
    margin: 0;
    font-size: 0.9rem;
}

/* =========================================
   Fixed CTA
   ========================================= */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
}

.btn-fixed {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.4);
    animation: btn-pulse 2s infinite;
}

@keyframes btn-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* =========================================
   Responsive Styles (レスポンシブ対応)
   ========================================= */

/* --- スマホ・タブレット共通 (max-width: 767px) --- */
@media screen and (max-width: 767px) {
    body {
        padding-bottom: 80px; 
    }
    
    .trust-points {
        flex-direction: column;
        align-items: center;
    }
    .trust-item {
        width: 100%;
        max-width: 350px;
    }
    .company-title {
        font-size: 1.5rem;
    }

    .land-points {
        flex-direction: column;
        align-items: center;
    }
    .land-point-item {
        width: 100%;
        max-width: 350px;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 15px;
    }
    .point-icon {
        margin-bottom: 0;
        margin-right: 15px;
    }
    
    .benefit-box-framed {
        margin-top: 45px;
        padding-top: 40px;
    }
    .benefit-emphasis-tag {
        font-size: 1.3rem;
        padding: 6px 35px;
        top: -20px;
    }
    .benefit-big-icon {
        font-size: 3rem;
    }
    .benefit-big-icon::before {
        width: 100px;
        height: 100px;
    }

    /* --------------------------------------
       スマホ用: 店舗画像レイアウト (GIF動画版)
       -------------------------------------- */
    .store-images {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2列 */
        grid-template-rows: auto auto;  /* 行高さ自動 */
        gap: 10px;
        overflow-x: visible; 
        padding-bottom: 0;
    }

    /* 共通設定 */
    .store-images img {
        width: 100%;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    /* メイン画像（GIF）: 上部・横幅いっぱい */
    .store-images .img-main {
        grid-column: 1 / 3; /* 左右ぶち抜き */
        height: auto;
        aspect-ratio: 16 / 9; /* 動画の比率を維持 */
    }

    /* サブ画像: 下部・2列 */
    .store-images .img-sub {
        height: 100%;
        aspect-ratio: 4 / 3;
    }
}

/* --- タブレット・PC向け (min-width: 768px) --- */
@media screen and (min-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 120px 0 140px;
        background-image: url('img/top_bg.png');
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-h1-sub {
        font-size: 1.6rem;
    }
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .hero-strong-point {
        font-size: 1.4rem;
        padding: 8px 25px;
        margin-bottom: 20px;
    }

    .hero-sub-copy {
        font-size: 1.2rem;
    }

    .tse-text-banner {
        font-size: 1.2rem;
        padding: 10px 40px;
        margin-bottom: 30px;
        border-width: 2px;
    }

    .campaign-medal {
        width: 120px;
        height: 120px;
        margin-right: -30px;
    }
    .campaign-ribbon {
        font-size: 1.6rem;
        padding: 20px 40px 20px 50px;
    }

    .campaign-title-gold {
        font-size: 2.4rem;
        margin-bottom: 60px;
    }

    .section-campaign-gold::before {
        width: 600px;
        height: 80px;
        top: 60px;
        left: -150px;
    }
    .section-campaign-gold::after {
        width: 600px;
        height: 80px;
        bottom: 60px;
        right: -150px;
    }

    .campaign-content-gold {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 60px;
    }

    .campaign-image-gold {
        flex: 1;
    }

    .campaign-text-gold {
        flex: 1;
    }
    
    .text-center-block {
        text-align: center;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 40px;
    }
    
    .feature-grid {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 30px;
        align-items: stretch;
    }

    .feature-item {
        width: 32%;
    }

    .store-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flow-steps {
        flex-direction: row;
    }
    .step-item {
        flex: 1;
    }
    .step-item:not(:last-child)::after {
        content: "▶";
        display: block;
        position: absolute;
        right: -20px;
        top: 40%;
        font-size: 1.5rem;
        color: #ccc;
        z-index: 1;
    }
    
    .form-container {
        padding: 50px;
    }
    .checkbox-group, .radio-group {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }
    .checkbox-group label, .radio-group label {
        margin-bottom: 0;
    }
    
    .fixed-cta {
        display: none;
    }

    .store-carousel-wrapper::before,
    .store-carousel-wrapper::after {
        display: none;
    }
    
    /* --------------------------------------
       PC用: 店舗画像レイアウト (GIF動画版)
       左: メイン画像(GIF) | 右: サブ写真2枚
       -------------------------------------- */
    .store-images {
        display: grid;
        overflow-x: visible;
        gap: 15px;
        /* 左（GIF）を広く設定: 2.2対1の比率 */
        grid-template-columns: 2.2fr 1fr;
        grid-template-rows: 1fr 1fr;    /* 上下2段 */
        height: 500px; /* 全体の高さを固定 */
        padding-bottom: 0;
    }

    /* 全画像共通設定 */
    .store-images img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* 枠いっぱいにトリミング表示 */
        border-radius: 8px;
        box-shadow: none;
        min-width: 0;
    }

    /* 左側のメイン画像（GIF）の設定 */
    .store-images .img-main {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }
}