:root {
    --main-color: #E10080;
    --accent-color: #F06292;
    --bg-color: #FFFFFF;
    --text-color: #000000;
    --light-bg: #F5F5F5;
    --card-bg: #FFFFFF;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --heading-font: 'Noto Serif JP', serif;
    --body-font: 'Noto Sans JP', sans-serif;
    --accent-font: 'Dancing Script', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--main-color);
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--main-color);
}

h3 {
    font-size: 1.8rem;
    color: var(--main-color);
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

section {
    padding: 3.5rem 0; /* 5remから3.5remに調整 */
    position: relative;
}

section:nth-child(odd) {
    background-color: var(--bg-color);
}

section:nth-child(even) {
    background-color: var(--light-bg);
}

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

header {
    position: relative;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-color);
    box-shadow: 0 2px 10px var(--shadow-color);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
}

.logo .logo-text {
    color: #E10080;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    font-family: 'Noto Serif JP', serif;
    display: flex;
    align-items: center;
    height: 40px;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
    margin-left: auto;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--main-color);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger-menu span:nth-child(1) { top: 0px; }
.hamburger-menu span:nth-child(2) { top: 10px; }
.hamburger-menu span:nth-child(3) { top: 20px; }

.hamburger-menu.open span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.hamburger-menu.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger-menu.open span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav ul li a {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    color: var(--text-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--main-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.reservation-btn {
    background-color: var(--main-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.reservation-btn:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(194, 24, 91, 0.3);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 0;
    padding-top: 0;
    background-image: url('images/tel-uranai1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-family: var(--heading-font);
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    animation: fadeInUp 1s ease;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #FFFFFF;
    animation: fadeInUp 1.2s ease;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.cta-button {
    display: inline-block;
    background: var(--main-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(194, 24, 91, 0.3);
    animation: fadeInUp 1.4s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(194, 24, 91, 0.4);
    background-color: var(--accent-color);
    color: white;
}

.features {
    text-align: center;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.feature-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.feature-icon {
    font-size: 3rem;
    color: var(--main-color);
    margin-bottom: 1.5rem;
}

.fortune-types.faq .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-header {
    background-color: var(--main-color);
    color: white;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.pricing-header h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.recommended-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #FFD700;
    color: #333;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-bottom-left-radius: 10px;
}

.pricing-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.pricing-body p {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-body ul {
    padding-left: 1.5rem;
}

.pricing-body ul li {
    margin-bottom: 0.5rem;
    position: relative;
}

.pricing-footer {
    padding: 1.5rem;
    text-align: center;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    font-weight: 500;
}

.pricing-note p {
    color: var(--main-color);
}

.business-hours {
    text-align: center;
}

.hours-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hours-item {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.hours-icon {
    font-size: 3rem;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.payment {
    text-align: center;
}

.payment-info {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.payment-method {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.payment-method h3 {
    margin-bottom: 1rem;
    color: var(--main-color);
}

.payment-logo-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 5px;
}

.session-method {
    text-align: center;
}

.method-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.method-item {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.method-icon {
    font-size: 3rem;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.testimonials {
    text-align: center;
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    margin: 0 1rem;
    box-shadow: 0 5px 15px var(--shadow-color);
    display: none;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--main-color);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-controls button {
    background-color: transparent;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-controls button:hover {
    background-color: var(--main-color);
    color: white;
}

.reservation {
    text-align: center;
    padding: 5rem 0;
}

.reservation h3 {
    margin-bottom: 1.5rem;
    color: var(--main-color);
}

.reservation p {
    margin-bottom: 2rem;
}

.reservation .method-container {
    max-width: 1000px;
}

.method-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.method-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.method-card p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.method-card .cta-button {
    display: inline-block;
    background: var(--main-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.method-card .cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(194, 24, 91, 0.3);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--main-color);
    color: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(194, 24, 91, 0.3);
    transition: all 0.3s ease;
}

.back-to-top a:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(194, 24, 91, 0.4);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq {
    text-align: center;
}

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

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    text-align: left;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 0;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--main-color);
}

.faq-toggle {
    color: var(--main-color);
    font-size: 1.2rem;
}

.faq-answer {
    padding: 1rem 0;
}

.fixed-line-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), var(--main-color));
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

.fixed-line-button.visible {
    opacity: 1;
    visibility: visible;
}

.fixed-line-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.fixed-line-button i {
    margin-right: 8px;
    font-size: 1.2em;
}

.testimonial-dots {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-dots .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dots .dot.active {
    background-color: var(--main-color);
}

.breadcrumb-container {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin: 0 8px;
    color: #ccc;
}

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

.breadcrumb li a:hover {
    color: #E10080;
}

.breadcrumb li.active {
    color: #E10080;
    font-weight: 500;
}

.flow-and-points {
    text-align: center;
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.flow-and-points .intro-text {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
}

.flow-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.flow-step {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
}

.flow-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.flow-step .step-number {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--main-color);
    margin-bottom: 1rem;
    display: inline-block;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.flow-step h3 {
    font-size: 1.6rem;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.flow-step p {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
}

.points-heading {
    margin-top: 5rem;
    margin-bottom: 2rem;
}

.points-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.line-shopcard-info {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 15px var(--shadow-color);
    text-align: center;
}

.line-shopcard-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.line-shopcard-button {
    display: inline-flex;
    align-items: center;
    background-color: #00C300; /* LINE green */
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
}

.line-shopcard-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(194, 24, 91, 0.4);
    color: white;
}

.line-shopcard-button i {
    margin-right: 0.8rem;
    font-size: 1.3rem;
}

.line-shopcard-info .note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 1.5rem;
}

/* --- Responsive Adjustments --- */

@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 5%;
        background-color: var(--bg-color);
        border-radius: 30px;
        box-shadow: 0 2px 10px var(--shadow-color);
        position: fixed;
        top: 1rem;
        left: 5%;
        right: 5%;
        width: 90%;
        z-index: 1000;
    }

    .logo {
        margin-bottom: 0;
        margin-right: 20px;
    }

    .hamburger-menu {
        display: block;
        margin-left: 20px;
    }
    
    nav#nav-menu {
        position: fixed;
        top: calc(1rem + 60px);
        left: 0;
        width: 100%;
        background-color: var(--bg-color);
        box-shadow: 0 5px 10px var(--shadow-color);
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s ease;
        opacity: 0;
        visibility: hidden;
    }
    nav#nav-menu.open {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
    }
    nav#nav-menu ul {
        flex-direction: column;
        padding: 20px;
    }
    nav#nav-menu ul li {
        margin: 10px 0;
        text-align: center;
    }
    nav#nav-menu ul li a {
        display: block;
        padding: 10px 0;
    }
    .reservation-btn {
        display: inline-block;
        margin-top: 10px;
    }
    
    body {
        padding-top: 100px;
    }
    
    nav ul {
        gap: 1rem;
    }
    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1.2rem; }
    
    .feature-card, .method-card {
        min-width: 100%;
    }
        
    .faq-question h3 { font-size: 1.2rem; }

    .flow-step { min-width: 100%; }

    .payment-logo-img { max-width: 90%; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    .hero h1 { font-size: 2rem; }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .testimonial-card { padding: 1.5rem; }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
    .back-to-top a {
        width: 40px;
        height: 40px;
    }
    
    .faq-question h3 { font-size: 1.1rem; }
}

/* =================================== */
/* 占い師紹介カードの改修              */
/* =================================== */
.teller-badge {
  position: absolute;
  top: 10px;
  right: -5px;
  background-color: var(--accent-color);
  color: #fff;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 3px 0 0 3px;
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.25);
  z-index: 2;
}
.teller-badge::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    border-style: solid;
    border-width: 0 5px 5px 0;
    border-color: transparent #c0392b transparent transparent;
}


/**************************************************/
/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ ここから修正 ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */
/**************************************************/

/* =================================== */
/* 料金表カードの固有スタイル          */
/* =================================== */
.pricing-card:hover {
    transform: translateY(-5px);
}
.pricing-card.recommended {
    transform: scale(1.02);
    border: 2px solid var(--main-color);
}
@media (min-width: 1024px) {
    .pricing-card.recommended {
        transform: scale(1.05);
    }
}
/* プラン特徴リストのチェックマーク */
.pricing-body ul li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: white;
    background-color: var(--accent-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-block;
    text-align: center;
    line-height: 20px;
    margin-right: 8px;
    flex-shrink: 0; /* チェックマークが縮まないように */
}
.pricing-body ul li {
    display: flex;
    align-items: center;
    padding: 0.2rem 0;
}


/* =================================== */
/* 占い師紹介カードの固有スタイル      */
/* =================================== */
/* 得意占術のタグ */
.teller-specialty-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1rem;
    margin-bottom: 1rem;
}
.teller-specialty-tags span {
    background-color: #FCE4EC;
    color: #C2185B;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}
/* 占い師の名前を中央寄せ */
#fortune-tellers .teller-card h3 {
    text-align: center;
}


/* ======================================== */
/* 共通: 料金・占い師スワイプカードスタイル */
/* ======================================== */

/* --- カードコンテナ (スマホ・PC共通) --- */
.pricing-cards,
#fortune-tellers .teller-cards {
    display: flex;
    gap: 1.5rem;
}

/* --- 個々のカード (スマホ・PC共通) --- */
.pricing-card,
#fortune-tellers .teller-card {
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* 角丸を子要素に適用させるため */
}

/* --- スマホ・タブレット表示 (横スワイプ) --- */
@media (max-width: 1023px) {
    .pricing-cards,
    #fortune-tellers .teller-cards {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        /* コンテナの左右に余白を作り、カードが端にピッタリくっつかないようにする */
        padding: 1.5rem;
        /* ネガティブマージンでコンテナ幅を広げ、左右のpaddingを相殺 */
        margin: 0 -1.5rem;
        -ms-overflow-style: none; /* IE */
        scrollbar-width: none; /* Firefox */
    }

    .pricing-cards::-webkit-scrollbar,
    #fortune-tellers .teller-cards::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .pricing-card,
    #fortune-tellers .teller-card {
        flex: 0 0 85%; /* 画面幅の85%をカード幅にする */
        scroll-snap-align: center;
        max-width: none; /* PC用のmax-widthをリセット */
    }
}

/* --- PC表示 (グリッド) --- */
@media (min-width: 1024px) {
    .pricing-cards,
    #fortune-tellers .teller-cards {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
        padding: 0;
        margin: 0;
        gap: 2rem;
    }

    .pricing-card,
    #fortune-tellers .teller-card {
        flex: 1 1 300px; /* ★基本幅を300pxに統一 */
        max-width: 350px;  /* ★最大幅も統一 */
    }
}


/* =================================== */
/* ボタン（CTA）の最適化                 */
/* =================================== */
.cta-secondary {
    background: transparent;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    box-shadow: none;
    padding-top: calc(1rem - 2px);
    padding-bottom: calc(1rem - 2px);
}
.cta-secondary:hover {
    background: var(--main-color);
    color: white;
    box-shadow: 0 5px 15px rgba(194, 24, 91, 0.3);
}

/* =================================== */
/* フッターエリアの改修 (全体)         */
/* =================================== */
footer {
    background-color: var(--light-bg);
    padding: 3rem 0;
    font-size: 0.9rem;
}
footer .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.footer-column h3,
.footer-link-group h4 {
    color: var(--main-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
.footer-shop-info p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.footer-link-group {
    margin-bottom: 2rem;
}
.footer-link-group:last-child {
    margin-bottom: 0;
}
.footer-link-group ul {
    list-style: none;
    padding: 0;
}
.footer-link-group ul li {
    margin-bottom: 0.5rem;
}
.footer-link-group a {
    color: var(--text-color);
    text-decoration: none;
}
.footer-link-group a:hover {
    color: var(--main-color);
    text-decoration: underline;
}
.footer-follow .social-links {
    display: flex;
    gap: 1.2rem;
}
.footer-follow .social-links a {
    color: var(--main-color);
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}
.footer-follow .social-links a:hover {
    transform: scale(1.2);
}
.footer-copyright {
    margin-top: 2rem;
    color: #555;
    font-size: 0.85rem;
}
@media (min-width: 769px) {
    footer .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 3rem;
    }
    .footer-column {
        flex: 1;
        min-width: 0;
    }
}

/* =================================== */
/* スワイプインジケーターのスタイル      */
/* =================================== */
.swipe-indicator {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 1.5rem;
    margin-bottom: 1rem;
    color: #555;
    font-size: 0.9rem;
    font-family: var(--body-font);
}
@media (min-width: 1024px) {
    .swipe-indicator {
        display: none;
    }
}

.swipe-indicator i {
    margin-right: 0.5rem;
    color: var(--main-color);
    animation: swipe-animation 2s infinite ease-in-out;
}

/* スワイプを促すアニメーション */
@keyframes swipe-animation {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.8;
    }
    50% {
        transform: translateX(8px);
        opacity: 1;
    }
}

/* =================================== */
/* 占い師スケジュールボタン用のスタイル   */
/* =================================== */
.schedule-button-container {
    text-align: center;
    margin-top: 2.5rem; /* カードとの余白 */
    margin-bottom: 1rem;
}

.schedule-button-container .cta-button {
    display: inline-flex; /* アイコンとテキストを横並びにする */
    align-items: center;
    gap: 0.5rem; /* アイコンとテキストの隙間 */
}

/* ===================================================== */
/* 占い師紹介カード：レイアウト＆タイポグラフィ調整 2025‑06‑19 */
/* ===================================================== */

/* カード全体に余白を追加し、窮屈感を緩和 */
#fortune-tellers .teller-card {
  padding-bottom: 2rem; /* 下部スペース拡大 */
}

/* 紹介文の行間・左右余白を調整して読みやすく */
#fortune-tellers .teller-card p {
  padding: 0 1.5rem; /* 左右インデント */
  line-height: 1.9;  /* 行間を広げる */
  font-size: 1.05rem; /* やや大きめの文字 */
}

/* 名前と紹介文の間隔を確保 */
#fortune-tellers .teller-card h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

/* PC幅でカードをややワイドに */
@media (min-width: 1024px) {
  #fortune-tellers .teller-cards {
    gap: 2.5rem; /* カード間隔を広げる */
  }
  #fortune-tellers .teller-card {
    flex: 1 1 320px; /* 基本幅を拡張 */
    max-width: 380px;
  }
}
