:root {
    --primary-color: #001c47;
    --secondary-color: #215d91;
    --accent-color: #33a53a;
    --text-color: #333;
    --white: #fff;
    --bg:#001c47;
    --max-width: 1200px;
    --content-width: 900px;
}

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

body {
    margin: 0;
    padding: 0;
    font-family: 'Zen Old Mincho', serif;
    color: var(--text-color);
    line-height: 1.6;
    background: var(--white);
}

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

/* Header */
.header {
    width: 100%;
    height: 50px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content {
    width: 100%;
    max-width: var(--content-width);
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.header-logo {
    width: 50px;
    height: 50px;
}

.header-title {
    margin-left: 10px;
    color: #e5e7eb;
    font-size: 1rem;
    font-weight: 900;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate(-50%, -30%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.hero-text {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.hero-text-large {
    width: 380px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text p,
.hero-text-large p {
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5),
                 -1px -1px 0 rgba(0, 0, 0, 0.3);
    margin: 0;
    letter-spacing: 0.05em;
    transition: transform 0.3s ease;
}

.hero-text p {
    font-size: 1.6rem;
}

.hero-text-large p {
    font-size: 2.0rem;
}

/* Feature Circles */
.feature-circles {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    width: 360px;
}

.feature-circles img {
    width: 100%;
    height: auto;
}

/* About Section */
.about {
    text-align: center;
    padding: 16px 20px;
    max-width: var(--content-width);
    margin: 0 auto;
}

.about h2 {
    color: #a96b4f;
    font-size: 1rem;
    font-weight: 1000;
    line-height: 1.8;
}

.about p {
    font-weight: 600;
    font-size: 1rem;
    margin-top: 16px;
    line-height: 1.8;
}

/* Aboutus Section */
.aboutus {
    position: relative;
    background-image: url('public/ab.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    height: 620px;
}

.aboutus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.aboutus p {
    position: relative;
    z-index: 1;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 2;
    margin: 0;
    color: #000;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Media Section */
.media-section {
    width: 100%;
    max-width: var(--content-width);
    margin: 40px auto 0;
    position: relative;
    padding: 0 15px;
    overflow: hidden;
}

.media-label {
    width: 132px;
    height: 28px;
    background: var(--secondary-color);
    position: absolute;
    top: 1px;
    left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 0.875rem;
    z-index: 2;
}

.media-logos {
    width: 100%;
    height: 60px;
    background: var(--white);
    display: flex;
    align-items: center;
    gap: 0;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    margin-top: 14px;
    animation: slideMedia 5s linear infinite;
}

.media-logos img {
    width: 150px;
    height: 40px;
    object-fit: contain;
    margin-right: 20px;
}

@keyframes slideMedia {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

/* Service Section */
.service {
    width: 100%;
    max-width: var(--content-width);
    margin: 55px auto 0;
    padding: 48px 15px;
}

.service-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.service-feature {
    background-color: var(--primary-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

.service-feature-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.service-feature-text h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.6;
}

/* Good Points Section */
.good-points {
    background-image: url('https://images.unsplash.com/photo-1517457373958-b7bdd4587205?q=80&w=2069&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 40px 20px;
    margin-bottom: 0;
    position: relative;
}

/* User Voice Section */
.user-voice {
    background-color: var(--white);
    padding: 60px 20px;
    text-align: center;
    max-width: var(--content-width);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.user-voice h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.user-voice h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.voice-boxes {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    position: relative; 
}

.voice-box {
    background-color: var(--white);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: none;
    width: 80%;
    scroll-snap-align: center;
    opacity: 0.7;
    transform: scale(0.75);
    pointer-events: none;
}

.voice-box.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

@media (min-width: 769px) {
    .voice-boxes {
        overflow: hidden;
        justify-content: center;
        padding: 20px;
    }

    .voice-box {
        width: auto;
        min-width: 280px;
        max-width: 350px;
        pointer-events: auto;
        opacity: 1;
        transform: scale(1);
    }
}

.voice-box h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.voice-box .profile-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.rating {
    margin-bottom: 15px;
}

.star {
    color: #FFD700;
    font-size: 1.2rem;
    margin-right: 2px;
}

.voice-detail h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.voice-detail p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.more-voices {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
}

.more-voices:hover {
    text-decoration: underline;
}

/* Navigation Arrows */
.voice-nav {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 28, 71, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.voice-nav:hover {
    background: rgba(0, 28, 71, 0.95);
    border-color: rgba(255, 255, 255, 0.6);
}

.voice-nav.prev {
    left: 10px;
    padding-right: 4px;
}

.voice-nav.next {
    right: 10px;
    padding-left: 4px;
}

@media (min-width: 769px) {
    .voice-boxes {
        overflow: hidden;
        justify-content: center;
        padding: 20px;
    }

    .voice-box {
        width: auto;
        min-width: 300px;
        max-width: 350px;
        pointer-events: auto;
    }

    .voice-nav {
        display: none;
    }
}

/* FAQ Section */
.faq {
    background-color: var(--primary-color);
    padding: 60px 20px;
    max-width: var(--content-width);
    margin: 0 auto;
    color: var(--white);
}

.faq h2 {
    font-size: 1.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    transform: rotate(45deg);
}

.faq-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--white);
    margin-top: 10px;
    display: none;
}

/* CTA Container */
.cta-container {
    max-width: var(--content-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 15px;
}



/* CTA Section with Parallax */
.cta-section {
    position: relative;
    background-image: url('public/gol.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0;
    text-align: center;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.35);
    z-index: 1;
}




/* Footer */
.footer {
    background-color: #001c47;
    padding: 20px;
    color:#001c47;
    text-align: center;
    position: relative;
    padding-bottom: 100px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 10px 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 40px;
    height: auto;
}

.footer-logo span {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 500;
}

.footer-text {
    font-size: 0.5rem;
    color: #ffffff;
    text-align: right;
}

/* Contact Buttons */
.contact-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    width: 100%;
    z-index: 1000;
}

.contact-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    min-width: 33.333%;
}

.contact-button.line {
    background-color: #00B900;
    border: solid #ffffff 1px;
}

.contact-button.email {
    background-color: #888888;
    border: solid #ffffff 1px;
}

.contact-button.recruit {
    background-color: #001C47;
    border: solid #ffffff 1px;
}

/* bz-op Section */
.bz-op {
    padding: 0 0 0px;
}

.bz-op__main {
    background-color: #fff;
    padding: 12px 0;
}

.bz-op__pic-item {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    border: solid 4px #fff;
}

.bz-op__pic-item img {
    width: 100%;
    height: auto;
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* bz-review Section */
.bz-review {
    position: relative;
}

.bz-review:before {
    content: "";
    position: absolute;
    background-size: auto auto;
    background-color: #001c47;
    background-image: repeating-linear-gradient(-45deg,transparent,transparent 5px,#001c47 5px,#001c47 10px);
    width: 100%;
    height: 430px;
    z-index: 0;
}

.bz-review__inner {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: auto;
    width: 90%;
}

.bz-review__top {
    padding: 30px 0 80px;
}

.bz-heading {
    text-align: center;
    color: #fff;
    font-size: 38px;
}

.bz-review__list-item {
    position: relative;
    background-color: #fff;
    border: solid #ced5db 5px;
    border-radius: 15px;
    padding: 25px 30px 10px;
    transition: all 0.3s ease;
    transform-origin: center;
    will-change: transform, opacity;
}

.bz-review__thum {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
}

.bz-review__thum-pic {
    border-radius: 50%;
    overflow: hidden;
    width: 16%;
    margin-right: 20px;
}

.bz-review__thum-ttl {
    flex: 1;
    min-width: 0;
    font-weight: 600;
}

.bz-review__thum-name {
    font-size: 20px;
    margin-bottom: 5px;
    color: #2e3540;
}

.bz-review__thum-txt {
    font-size: 16px;
    color: #3171cd;
}

.bz-review__body {
    color: #2e3540;
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.bz-review__pic {
    width: 45%;
}

.bz-review__tyusyaku {
    font-size: 10px;
    font-weight: 300;
    margin-bottom: 7px;
}

.bz-review__tyusyaku-02 {
    font-size: 12px;
    font-weight: 300;
    position: absolute;
    left: 0;
    z-index: 50;
    bottom: -6%;
}

.bz-review__icon {
    display: flex;
    gap: 5px;
    border-top: solid rgb(214,215,217,.6);
    margin: 16px 0 6px;
    padding-top: 10px;
}

.bz-review__icon-wrap {
    display: flex;
    gap: 15px;
}

.bz-review__icon-pic {
    width: 26%;
    line-height: 0;
}

@media (max-width: 768px) {
    .bz-review__top {
        padding: 30px 0;
    }
    
    .bz-heading {
        font-size: 24px;
    }
    
    .bz-review__list-item {
        padding: 20px;
    }
    
    .bz-review__list-item.swiper-slide-active {
        z-index: 2;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .bz-review__thum-pic {
        width: 25%;
    }
    
    .bz-review__thum-name {
        font-size: 12px;
    }
    
    .bz-review__thum-txt {
        font-size: 14px;
    }
}

.good-points::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.good-points h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.good-points h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.feature-card {
    background-color: var(--primary-color);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: left;
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

.feature-card h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.6;
}

.read-more-btn {
    background: none;
    border: none;
    color: white;
    font-size: 0.9rem;
    padding: 5px 0;
    cursor: pointer;
    text-align: left;
    margin-top: 10px;
    text-decoration: none;
}

.read-more-btn:hover {
    text-decoration: underline;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.modal-close:hover {
    color: #000;
}

.modal-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-right: 40px;
}

.modal-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* Scenes Section */
.scenes {
    width: 100%;
    max-width: var(--max-width);
    margin: 55px auto 0;
    padding: 48px 15px;
    background: var(--primary-color);
    color: var(--white);
}

.scenes h2 {
    font-weight: 900;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 16px;
}

.scenes-subtitle {
    font-weight: 900;
    font-size: 0.813rem;
    text-align: center;
    margin-bottom: 48px;
}

.scene-cards {
    max-width: var(--content-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.scene-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background-color 0.3s ease;
}

.scene-card:hover {
    background: rgba(255, 255, 255, 0.2);
}

.scene-content {
    width: 100%;
    margin-bottom: 16px;
}

.scene-card h3 {
    font-weight: 900;
    font-size: 1.25rem;
    margin-bottom: 8px;
    text-align: center;
}

.scene-description {
    font-size: 0.875rem;
    opacity: 1;
    text-align: center;
}

/* Message Section */
.message {
    text-align: center;
    padding: 48px 20px;
}

.message img {
    width: 95px;
    height: 48px;
    margin-bottom: 12px;
}

.message p {
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1.8;
}

/* Usage Steps Section */
.usage-steps {
       width: 100%;
    max-width: var(--max-width);
    background-color: var(--white);
    padding: 60px 20px;
    text-align: center;
    margin: 0 auto;
    background: linear-gradient(180deg, #001c47 0%, #001c47 100%);
}

.usage-steps h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.steps-subtitle {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 60px;
    font-weight: 500;
}

.steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 769px) {
    .steps-container {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
        align-items: stretch;
    }

    .step {
        width: 240px;
        margin: 0;
    }

    .step:not(:last-child)::after {
        content: '▶︎';
        position: absolute;
        top: 50%;
        right: -30px;
        transform: translateY(-50%);
        color: #ffffff;
        font-size:  1.2rem;
    }
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 300px;
}

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

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.step h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.step p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        gap: 20px;
    }
}

/* Price Section */
.price {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 48px 15px;
    background: var(--secondary-color);
    color: var(--white);
}

.price h2 {
    font-weight: 900;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 42px;
}

.price-card {
    background: var(--white);
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 72px;
    color: var(--primary-color);
}

.price-card h3 {
    font-weight: 600;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 23px;
}

.price-content {
    text-align: center;
}

.price-amount {
    font-size: 2rem;
}

.price-period {
    font-weight: 600;
    font-size: 1.5rem;
    margin: 16px 0 50px;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Golf Examples */
.golf-examples {
    max-width: var(--content-width);
    margin: 40px auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.golf-example {
    position: relative;
    border-radius: 12px;
    padding: 30px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s ease;
}

.golf-example:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

.golf-label {
    width: 156px;
    height: 27px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    position: absolute;
    top: -10px;
    right: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--white);
    z-index: 1;
    backdrop-filter: blur(4px);
}

.golf-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.golf-content h4 {
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--white);
    white-space: nowrap;
}

.golf-content p {
    margin: 8px 0;
    font-size: 0.85rem;
    color: var(--white);
    opacity: 0.85;
    line-height: 1.6;
    white-space: nowrap;
}

.golf-price {
    font-size: 1.3rem !important;
    margin-top: 16px !important;
    color: var(--white) !important;
    font-weight: bold;
    opacity: 1 !important;
    white-space: nowrap;
}

.golf-note {
    font-size: 0.7rem !important;
    margin-top: 16px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.4 !important;
    white-space: nowrap;
}

.cost-efficiency-box {
    background: white;
    padding: 8px 20px;
    border-radius: 4px;
    display: inline-block;
}

.cost-efficiency-box p {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

/* Monthly Plan Banner */
.monthly-plan-banner2 {
    position: relative;
    background-image: url('public/haike.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0;
    text-align: center;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    overflow: hidden;
}

.monthly-plan-banner2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.65);
    z-index: 1;
}


/* Monthly Plan Banner */
.monthly-plan-banner {
    position: relative;
    background-image: url('public/gol.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0;
    text-align: center;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    overflow: hidden;
}

.monthly-plan-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.65);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 20px;
}

.banner-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-content .subtitle {
    color: var(--white);
    margin-bottom: 20px;
}

.banner-image-container {
    width: 100%;
    margin: 15px 0;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.banner-image-container:hover {
    transform: scale(1.02);
}

.banner-image {
    width: 100%;
    height: auto;
}


/* 共通のスタイル */
.hogehoge {
  /* 共通の基本スタイル */
  padding: 20px;           /* 内側の余白 */
  background-color: #f5f5f5; /* 背景色 */
  border-radius: 5px;      /* 角丸 */
  margin-bottom: 20px;     /* 下マージン */
}

/* PCでのみ表示（スマホでは非表示） */
.pc-only {
  display: block;          /* 通常時は表示 */
}

/* スマホでのみ表示（PCでは非表示） */
.sp-only {
  display: none;           /* 通常時は非表示 */
}

/* スマホサイズ（768px未満）の設定 */
@media (max-width: 767px) {
  .pc-only {
    display: none;        /* スマホサイズでは非表示 */
  }
  
  .sp-only {
    display: block;       /* スマホサイズでは表示 */
  }
}




.sasael {
    position: relative;
    background-image: url('public/ab.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0;
    text-align: center;
    width: 100%;
    height: 1300px;
    max-width: var(--max-width);
    margin: 0 auto;
    overflow: hidden;
}

.sasael::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.35);
    z-index: 1;
}


@media (max-width: 768px) { /* または適切なブレークポイント */
  .monthly-plan-banner {
    background-attachment: scroll; /* または削除 */
  }
    
      .monthly-plan-banner2 {
    background-attachment: scroll; /* または削除 */
  }
    
   .cta-section　{
    background-attachment: scroll; /* または削除 */
      }
}


/* 利用STEP - ステップ3 タブ表示用CSS */
.step-3-tabs {
    display: flex;
    flex-direction: column;
    align-items: center; /* 中央寄せ */
}

.tab-buttons {
    display: flex;
    margin-top: 15px; /* ステップタイトルとの間隔 */
    margin-bottom: 20px; /* タブコンテンツとの間隔 */
    width: 100%;
    justify-content: center; /* ボタンを中央寄せ */
}

.tab-button {
    background-color: #eee;
    border: 1px solid #ccc;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
    flex-grow: 1; /* ボタンが等幅になるように */
    text-align: center;
}

.tab-button:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.tab-button:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.tab-button.active {
    background-color: #2d6de0; /* アクティブ時の背景色 */
    color: #fff; /* アクティブ時の文字色 */
    border-color: #2d6de0; /* アクティブ時の枠線色 */
}

.tab-button:hover:not(.active) {
    background-color: #ddd;
}

.tab-content {
    display: none; /* デフォルトでは非表示 */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    width: 100%;
    box-sizing: border-box; /* paddingを含めて幅を計算 */
}

.tab-content.active {
    display: block; /* アクティブなコンテンツは表示 */
}

.tab-content ul {
    list-style: none; /* リストの黒丸を削除 */
    padding: 0;
    margin: 0;
}

.tab-content ul li {
    margin-bottom: 8px;
    padding-left: 20px; /* アイコン分のスペース */
    position: relative;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}

.tab-content ul li:last-child {
    margin-bottom: 0;
}

.tab-content ul li::before {
    content: '✓'; /* チェックマークアイコン */
    color: #2d6de0; /* アイコンの色 */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.tab-content p {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}

/* ステップの区切り線（▼）が消えてしまうのを防ぐための調整 */
.usage-steps.pc-only .steps-container .step {
    position: relative;
}

.usage-steps.pc-only .steps-container .step:not(:last-child)::after {
    content: '▼';
    color: #ffffff; /* 白色のままでOK */
    font-size: 20px;
    position: absolute;
    bottom: -35px; /* ▼の位置を調整 */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1; /* 手前の要素に隠れないように */
}

/* ステップの高さ調整 */
.usage-steps.pc-only .steps-container .step {
    min-height: 250px; /* ステップの最小高さを設定して高さを合わせる */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 40px; /* ▼マークとの重なりを避ける */
}

/* ステップ3のタブがある場合の高さ調整 */
.usage-steps.pc-only .steps-container .step.step-3-tabs {
    min-height: 380px; /* タブコンテンツに合わせて高さを調整 */
}

<section class="usage-steps sp-only">
  <h2>利用STEP</h2>
  <p class="steps-subtitle">ドライバー手配までの流れ</p>
  <div class="steps-container">
    <div class="step">
      <div class="step-number">1</div>
      <h3>問い合わせ</h3>
      <p>LINEまたはフォームから<BR>お申込み<BR>※相談・質問もお寄せください。</p>
      
    </div>
    <p style="color:#ffffff;">▼</p>
    <div class="step">
      <div class="step-number">2</div>
      <h3>ご相談・ヒアリング・<BR>
        お見積り</h3>
      <p>用途に応じてプランをご提案</p>
      
    </div>
    <p style="color:#ffffff;">▼</p>
    <div class="step step-3-tabs">
      <div class="step-number">3</div>
      <h3>専属ドライバーを手配</h3>
      <div class="tab-buttons">
        <button class="tab-button active" data-tab="sp-tab-spot">スポット運行</button>
        <button class="tab-button" data-tab="sp-tab-regular">定期運行</button>
      </div>
      <div id="sp-tab-spot" class="tab-content active">
        <ul>
          <li>初めての方にも最適</li>
          <li>月間契約/担当固定</li>
          <li>1日単位からご依頼OK</li>
        </ul>
      </div>
      <div id="sp-tab-regular" class="tab-content">
        <p>日々の通勤や役員送迎には専用ドライバーを</p>
      </div>
    </div>
    <p style="color:#ffffff;">▼</p>
        <img src="new/public/line_con.png" > 
  </div>
</section>