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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}
@media (max-width: 480px) {
	html {
    font-size: 14px;
}
}
body {
    font-family: 'Zen Old Mincho', serif;
    background-color: #fff;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}

.bg-brown {
    background-color: #f0ece3;
    color: #333333;
}

/* Container */
.container {
    max-width: 1184px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header.header-fixed {
    position: fixed;
    background: rgba(248, 248, 248, 0.7);
    backdrop-filter: blur(10px);
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 0;
        transform: translateY(-170px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.header.header-fixed .header-content {
    padding: 10px 20px;
}

.logo {
    width: 55px;
    height: 60px;
    flex-shrink: 0;
}

.header.header-fixed .logo {
    width: 35px;
    height: 40px;
}

.logo svg {
    fill: #333333;
}

#use .logo svg {
    fill: #fff;
}

#use .header.header-fixed .logo svg {
    fill: #333333;
}

/* PC用のナビゲーションスタイル */
.navigation {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
}

.navigation ul.nav-list {
    display: flex;
    gap: 20px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    text-decoration: none;
    color: #333333;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1.6px;
    padding: 0;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

#use .nav-item {
    color: #fff;
}

#use .header.header-fixed .nav-item {
    color: #333333;
}

.nav-item:hover {
    color: #A1A1A1;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #A1A1A1;
    transition: width 0.3s ease;
}

#use .nav-item::after {
    background-color: #fff;
}

.nav-item:hover::after {
    width: 100%;
}

/* ------------------------------------- */
/* ハンバーガーメニュー関連のスタイル (PCでは非表示) */
/* ------------------------------------- */
.menu-toggle,
.hamburger {
    display: none;
}

/* ------------------------------------- */
/* レスポンシブデザインのためのメディアクエリ */
/* ------------------------------------- */
@media (max-width: 860px) {
    .header-content {
        justify-content: space-between;
    }
    /* PC用ナビゲーションを非表示に */
    .menu-toggle,
    .navigation {
        display: none;
    }
    /* ハンバーガーメニューとチェックボックスを表示 */
    .hamburger {
        display: block;
    }
    /* ハンバーガーアイコンのスタイル */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 50px;
        height: 40px;
        cursor: pointer;
        z-index: 1100;
    }
    .hamburger .line {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #333;
        transition: all 0.3s ease;
    }
    #use .hamburger .line {
        background-color: #fff;
    }
    #use .header.header-fixed .hamburger .line {
        background-color: #333;
    }
    /* ハンバーガーアイコンがクリックされた時のアニメーション */
    .menu-toggle:checked+.hamburger .line:nth-child(1) {
        transform: translateY(19px) rotate(45deg);
        background-color: #333 !important;
    }
    .menu-toggle:checked+.hamburger .line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle:checked+.hamburger .line:nth-child(3) {
        transform: translateY(-19px) rotate(-45deg);
        background-color: #333 !important;
    }
    /* モバイル用ナビゲーションのスタイル */
    .navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(240, 236, 227, 0.9);
        transform: translateY(-100%);
        transition: transform 0.5s ease-in-out;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 999;
        pointer-events: none;
    }
    /* チェックボックスがチェックされたらメニューを表示 */
    .menu-toggle:checked~.navigation {
        transform: translateY(0);
        pointer-events: auto;
    }
    .navigation ul.nav-list {
        flex-direction: column;
        gap: 20px;
    }
    .navigation ul.nav-list .nav-item {
        font-size: 1.125rem;
        color: #333 !important;
    }
    .navigation ul.nav-list .nav-item::after {
        background-color: #333 !important;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../images/fv.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}

.hero-overlay {
    position: relative;
    max-width: 680px;
    width: 100%;
    padding: 32px 60px 32px 0px;
    margin-bottom: 60px;
}

.hero-overlay::before {
    position: absolute;
    top: 0px;
    right: 0;
    content: '';
    width: 5000px;
    height: 100%;
    background-color: rgba(46,46,46,0.60);
    clip-path: polygon(0 0, 100% 0, 98% 100%, 0% 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    color: white;
    max-width: 1380px;
    width: 100%;
    transform: translate(-50%, -50%);
    padding-left: 30px;
}

.hero-title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 27px;
    position: relative;
    z-index: 1
}

.hero-description {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1.6px;
    line-height: 2;
    position: relative;
    z-index: 1
}

.hero-cta {
    background-color: #ffe0e3;
    padding: 15px 20px 15px 30px;
    border-radius: 500px;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 515px;
    height: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #343331;
    text-decoration: none;
	transition: 0.7s;
}
.hero-cta:hover {
    background-color: #FECBD0;
	transition: 0.7s;
}
.hero-cta:hover .campaign-text {
font-size: 1.37rem;
	transition: 0.7s;
}
.hero-cta:hover .cta-main {
font-size: 1.52rem;
	transition: 0.7s;
}
.campaign-badge .badge-circle {
    width: 128px;
    height: 128px;
    background-color: #ffe0e3;
    border: 1px solid #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.campaign-badge .badge-circle p {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.5rem;
    line-height: 1.2;
    color: #333333;
    font-weight: 400;
}

.campaign-text {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.25rem;
    line-height: 1.2;
}

.cta-main {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 2.24px;
    text-align: center;
    line-height: 1.6;
}

/* Campaign Section */
.campaign {
    background-image: url(../images/campaign_bg.jpg);
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 32px;
    margin: 152px auto;
    max-width: 1184px;
    background-position: center center;
    background-size: cover;
	
}

.campaign-content {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.campaign-info {
    flex: 1;
    color: white;
}

.campaign-header {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
}

.campaign-header .campaign-badge .badge-circle {
    width: 128px;
    height: 128px;
    background-color: #ffe0e3;
    border: 1px solid #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.campaign-title {
    font-family: 'Cabin', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 6.4px;
    line-height: 1;
    color: white;
}

.campaign-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.benefit-badge {
    background-color: #333333;
    color: white;
    border: 1px solid white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.5rem;
    text-align: center;
}

.benefit-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 500;
    letter-spacing: 2.24px;
}

.original-price {
    font-size: 1.5rem;
    line-height: 1.6;
}

.arrow {
    font-size: 1.75rem;
    line-height: 1.6;
}

.discounted-price {
    font-size: 3rem;
    line-height: 1.4;
}

.campaign-image {
    flex: 1;
    max-width: 554px;
}

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

/* Section Headers */
.section-header {
    margin-bottom: 64px;
}

.section-header.text-left {
    text-align: left;
}

.section-header.text-right {
    text-align: right;
}

.section-title {
    font-family: 'Cabin', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 6.4px;
    line-height: 1;
    color: #000000;
    margin-bottom: 8px;
}

.section-subtitle {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 2;
    color: #333333;
}

/* About Section */
.about {
    padding: 152px 0;
}

.about-content {
    display: flex;
    gap: 32px;
}

.about-text {
    flex: 1;
    max-width: 580px;
}

.about-highlight {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 32px;
}

.about-text p {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1.6px;
    line-height: 2;
    color: #000000;
    margin-bottom: 1em;
}

.about-text p:last-of-type {
    margin-bottom: 0em;
}

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    height: 627px;
    object-fit: cover;
    box-shadow: 50px -50px 0px 0px rgba(0, 0, 0, 0.1);
}

/* Reasons Section */
.reasons {
    background-color: white;
    padding: 152px 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1120px;
    margin: 0 auto;
}

.reason-card {
    display: flex!important;
    flex-direction: column;
    gap: 20px;
}

.reason-tag {
    background-color: #f0ece3;
    padding: 5px 12px;
    border-radius: 38.5px;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 2.4px;
    line-height: 1.6;
    color: #333333;
    text-align: center;
}

.reason-image {
    width: 100%;
    max-width: 554px;
}

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

.reason-title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #000000;
    text-align: center;
}

.reason-list {
    list-style: disc;
    padding-left: 24px;
    font-family: 'Zen Old Mincho', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1.6px;
    line-height: 2;
    color: #000000;
}

.reason-list li {
    margin-bottom: 8px;
}

/* Recommend Section */
.recommend {
    padding: 152px 0;
}

.recommend-container {
    position: relative;
    width: 100%;
    height: 45vw;
    Max-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.recommend-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    box-sizing: border-box;
    display: flex;
    gap: 26px;
}

.recommend-content.active {
    display: flex;
    opacity: 1;
}

.recommend-text {
    flex: 1;
    max-width: 554px;
    padding-top: 64px;
}

.recommend-title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: 2.24px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 32px;
}

.recommend-description {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1.6px;
    line-height: 2;
    color: #000000;
}

.recommend-number {
    font-family: 'Cabin', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 6.4px;
    line-height: 1;
    color: #a1a1a1;
    text-align: right;
    flex-shrink: 0;
}

.recommend-image {
    flex: 1;
    max-width: 554px;
    position: relative;
}

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

/* Instructor Section */
.instructor {
    background-color: white;
    padding: 152px 0;
}

.instructor-card {
    display: flex;
    gap: 32px;
    align-items: center;
    margin-bottom: 60px;
}

.instructor-info {
    flex: 1;
}

.instructor-name {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2.4px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 24px;
}

.instructor-description {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1.6px;
    line-height: 2;
    color: #000000;
}

.instructor-image {
    flex: 1;
}

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

/* Price Section */
.price {
    padding: 152px 0;
}

.price-description {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1.6px;
    line-height: 2;
    color: #000000;
    text-align: center;
    margin-top: 16px;
}

.entry-fee {
    background-color: white;
    border-radius: 10px;
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 50px auto;
    max-width: 1184px;
}

.fee-label {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2.4px;
    line-height: 1.6;
    color: #343331;
}

.fee-amount {
    font-family: 'Zen Old Mincho', serif;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.4;
    color: #343331;
}

.tax {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2.4px;
    line-height: 1.6;
}

.pricing-section {
    margin: 50px auto;
    max-width: 1184px;
}

.pricing-title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: 2.24px;
    line-height: 1.2;
    color: #343331;
    text-align: center;
    margin-bottom: 8px;
}

.pricing-title span {
    font-family: 'Cabin', sans-serif;
    font-size: .4em;
    text-align: center;
    display: block;
}

.pricing-subtitle {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1.6px;
    line-height: 2;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
}

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

.pricing-card {
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
}

.pricing-header {
    background-color: #ffe0e3;
    padding: 20px;
    text-align: center;
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: #343331;
}

.pricing-amount {
    padding: 10px 0px;
    margin: 0 20px;
    border-bottom: 1px solid #a1a1a1;
    text-align: center;
}

.pricing-amount {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.4;
    color: #333333;
}

.pricing-amount .tax {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.8;
}

.pricing-details {
    padding: 20px;
}

.pricing-details p {
    font-family: 'Zen Old Mincho', serif;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 1.4px;
    line-height: 2;
    color: #333333;
    margin-bottom: 4px;
}

/* FAQ Section */
.faq {
    background-color: white;
    padding: 152px 0;
}
.faq .section-title,.faq .section-subtitle {
  text-align: center;
}
.faq-description {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1.6px;
    line-height: 2;
    color: #000000;
    text-align: center;
    margin-top: 16px;
}

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

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 16px 0;
    transition: all 0.5s ease-in-out;
}

.faq-item:first-child {
    border-top: 1px solid #ddd;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.faq-question:hover {
    opacity: 0.8;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.125rem;
    font-weight: 600;
    /*letter-spacing: 1.8px;*/
    line-height: 1;
    flex-shrink: 0;
}

.faq-question .faq-icon {
    background-color: #333333;
    color: white;
	padding-bottom: .3rem;
}

.faq-question span {
    flex: 1;
    font-family: 'Zen Old Mincho', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1.6px;
    line-height: 2;
    color: #000000;
}

.faq-toggle {
    background-color: #f0ece3;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Zen Old Mincho', serif;
    font-size: 0.75rem;
    color: #000000;
    transform: rotate(0deg);
    transition: transform 0.5s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
    margin-top: 5px;
    padding-left: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}

.faq-answer .faq-icon {
    background-color: #ffe0e3;
    color: #333333;
	padding-bottom: .3rem;
}

.faq-answer span {
    flex: 1;
    font-family: 'Zen Old Mincho', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1.6px;
    line-height: 2;
    color: #000000;
}

/* Footer */
.footer {
    background-color: #f0ece3;
    padding: 152px 0 0;
}

.footer-content {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.access-info {
    flex: 1;
    max-width: 448px;
}

.access-icon {
    margin-bottom: 24px;
}

.access-icon img {
    width: 83px;
    height: auto;
}

.access-text p {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1.6px;
    line-height: 2;
    color: #000000;
    margin-bottom: 16px;
}

.access-details p {
    margin-bottom: 16px;
}

.access-map {
    flex: 1;
    max-width: 640px;
}

.map {
    position: relative;
    width: 100%;
    height: 100%;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 0px 0 120px 0;
}

.footer-links a {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1.6px;
    line-height: 2;
    color: #000000;
    text-decoration: none;
}

.footer-copyright {
    background-color: #333333;
    padding: 5px 10px;
    text-align: center;
}

.footer-copyright p {
    font-family: 'Zen Old Mincho', serif;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 1.4px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.5);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1000;
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.4s ease-in, bottom 0.3s ease-in-out;
    pointer-events: none;
}

/* ページ最下部用のスタイル */
.floating-cta.is-at-bottom {
    bottom: 60px;
}

.floating-cta.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* 登場時のアニメーション（上下＆左右） */
@keyframes appear-bounce {
    0% {
        transform: translateX(-50%) translateY(0) scaleX(0);
    }
    50% {
        transform: translateX(-50%) translateY(-20px) scaleX(1.1);
    }
    100% {
        transform: translateX(-50%) translateY(0) scaleX(1);
    }
}

/* セクション切り替わり時のアニメーション（上下のみ、複数回バウンス） */
@keyframes section-bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    25% {
        transform: translateX(-50%) translateY(-10px);
    }
    50% {
        transform: translateX(-50%) translateY(0);
    }
    75% {
        transform: translateX(-50%) translateY(-5px);
    }
    85% {
        transform: translateX(-50%) translateY(0);
    }
    95% {
        transform: translateX(-50%) translateY(-2px);
    }
    100% {
        transform: translateX(-50%) translateY(0);
    }
}

.floating-cta.appear-bouncing {
    animation: appear-bounce 1s ease-in-out;
}

.floating-cta.section-bouncing {
    animation: section-bounce 0.5s ease-in-out;
}

.floating-cta-content {
    background-color: rgba(255,224,227,.8);
    backdrop-filter: blur(10px);
    padding: 5px 20px 5px 30px;
    border-radius: 500px;
    height: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 515px;
    color: #333333;
    text-decoration: none;
}

.floating-cta-content:hover {
    color: #777;
}

@media (max-width: 767px) {
    .floating-cta-content {
        width: 440px;
        padding: 5px 15px 5px 20px;
        gap: 5px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .floating-cta-content {
        flex-direction: column;
        gap: 0px;
        width: 70vw;
    }
}

.campaign-text {
    font-size: 1.25rem;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .campaign-text {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .campaign-text {
        font-size: 3vw;
    }
    .campaign-text br {
        display: none;
    }
}

.cta-main {
    font-size: 1.5rem;
}

@media (max-width: 767px) {
    .cta-main {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-main {
        font-size: 4vw;
    }
}

.floating-cta-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.floating-cta-button svg {
    width: 60px;
    height: 60px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 24px;
    }
    .hero {
        height: 900px;
    }
    .hero-cta {
        left: 50px;
    }
    .hero-content {
        left: 50%;
        width: 100%;
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .navigation ul.nav-list {
        gap: 15px;
    }
    .nav-item {
        font-size: 0.875rem;
    }
	.campaign {
    margin: 152px 24px;
	
}
}

@media (max-width: 860px) {
    .section-title {
        font-size: 3.125rem;
    }
    .reason-tag {
        font-size: 1.125rem;
    }
    .reason-title {
        font-size: 1rem;
    }
    .hero {
        height: 700px;
    }
    .hero-title {
        font-size: 1.75rem;
    }
    .hero-overlay {
        width: 480px;
        margin-bottom: 60px;
    }
    .hero-cta {
        max-width: 440px;
        width: auto;
        height: 67px;
    }
    .campaign-text {
        font-size: 1rem;
    }
    .campaign-content {
        align-items: center;
    }
    .cta-main {
        font-size: 1.3rem;
    }
    .campaign-header .campaign-badge .badge-circle {
        width: 10vw;
        height: 10vw;
    }
    .campaign-badge .badge-circle p {
        font-size: 2vw;
    }
    .campaign-title {
        font-size: 4.5vw;
    }
    .benefit-badge {
        width: 6vw;
        height: 6vw;
        font-size: 1.5vw;
    }
    .original-price {
        font-size: 1.5vw;
    }
    .discounted-price {
        font-size: 4vw;
    }
    .recommend-title {
        font-size: 1.5rem;
    }
    .instructor-name {
        font-size: 1.25rem;
    }
    .campaign {
        margin: 100px 24px;
    }
    .about,
    .reasons,
    .recommend,
    .instructor,
    .price,
    .faq {
        padding: 100px 0;
    }
    .footer {
        padding: 100px 0 0;
    }
	.recommend-number {
  font-size: 2.5rem;
}
}

@media (max-width: 767px) {
    .header-content {
        padding: 16px;
    }
    .navigation {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
    .hero {
        height: 600px;
    }
    .hero-overlay {
        width: 100%;
        clip-path: none;
        max-width: 420px;
        margin-bottom: 30px;
    }
    .hero-content {
        left: 50%;
        width: 100%;
        max-width: calc(100% - 100px);
        transform: translate(-50%, -50%);
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-cta {
        left: 24px;
        right: 24px;
        width: auto;
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 20px;
        gap: 0;
        padding: 10px;
        max-width: 300px;
    }
    .campaign-text {
        font-size: 1rem;
        text-align: center;
    }
    .campaign-text br {
        display: none;
    }
    .cta-main {
        font-size: 1.2rem;
    }
    .hero-description {
        font-size: 0.875rem;
    }
    .about-text {
        flex: 1;
        width: 100%;
        max-width: 5000px;
    }
    .about-image {
        flex: 0;
        width: 100%;
        max-width: 5000px;
        text-align: center;
        padding: 0 15vw;
    }
    .section-title {
        font-size: 3rem;
    }
    .campaign-content {
        /*flex-direction: column;*/
    }
    .about-content {
        flex-direction: column;
        gap: 60px;
        justify-content: center;
    }
    .about-image img {
        height: auto;
        box-shadow: 20px -20px 0px 0px rgba(0, 0, 0, 0.1);
    }
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .recommend-gallery {
        gap: 16px;
    }
    .recommend-gallery img {
        width: 280px;
        height: 180px;
    }
    .instructor-card {
        align-items: flex-start;
    }
    .floating-cta {
        bottom: 20px;
    }
    .reason-tag {
        font-size: 1.25rem;
    }
    .reason-title {
        font-size: 1.125rem;
    }
    .reason-image {
        width: 100%;
        max-width: 5000px;
        padding: 0 20vw;
    }
    .recommend-container {
        height: 50vw;
        Max-height: 800px;
    }
    .access-info {
        flex: 1;
        max-width: 5000px;
        text-align: center;
        order: 2;
    }
    .access-map {
        order: 1;
        flex: 1;
        max-width: 5000px;
    }
    .map {
        position: relative;
        width: 100%;
        padding-top: 56.25%;
        height: auto;
    }
    .section-header {
        margin-bottom: 32px;
    }
    .access-text {
        display: table;
        margin: 0 auto;
        text-align: left;
    }
}
.carousel-nav,.price-nav1,.price-nav2 {
  display: none;
}
@media (max-width: 480px) {
	.pricing-details p {
  font-size: 1rem;
}
	.slick-slide {
 margin: 0 10px;
}
	.slick-slider{
		margin: 0 -10px;
	}
	.reasons-grid,.pricing-grid{
		display: none;
	}
	.slick-arrow{
		cursor:pointer;
	}
.carousel-nav,.price-nav1,.price-nav2 {
  display: flex;
	justify-content: center;
	gap:20px;
	margin-top: 30px;
}
	
    .hero {
        height: 100vh;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-overlay {
        width: 100%;
        clip-path: none;
        max-width: 5000px;
        padding: 24px 0px;
    }
    .hero-overlay::before {
        position: absolute;
        top: 0px;
        right: -35px;
        content: '';
        width: 120vw;
        height: 100%;
        clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    }
    .hero-content {
        position: absolute;
        top: 100%;
        left: 50%;
        color: white;
        max-width: 5000px;
        width: 100%;
        transform: translate(-50%, -110%);
        padding: 0 24px;
    }
    .hero-cta {
        width: auto;
        padding: 10px;
        max-width: 5000px;
    }
    .hero-background {
        background-image: url(../images/fv-sp.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center top;
    }
    .campaign {
        padding: 24px;
    }
    .campaign-header {
        gap: 20px;
        margin-bottom: 32px;
    }
    .campaign-content {
        flex-direction: column;
        gap: 24px;
    }
    .benefit {
        flex-direction: column;
        gap: 5px;
    }
    .benefit-badge {
        width: 100%;
        height: auto;
        font-size: 4vw;
        border-radius: 50em;
    }
    .original-price {
        font-size: 3vw;
    }
    .discounted-price {
        font-size: 9vw;
    }
    .section-title {
        font-size: 2rem;
    }
	.section-subtitle {
  font-size: 1rem;
}
    .campaign-title {
        font-size: 8vw;
    }
    .nav-item {
        font-size: 0.875rem;
    }
    .campaign-text {
        font-size: 4vw;
    }
    .cta-main {
        font-size: 5.5vw;
    }
.floating-cta .cta-main {
    font-size: 4.5vw;
  }
	.floating-cta .campaign-text {
        font-size: 3vw;
    }
    .campaign-header .campaign-badge .badge-circle {
        width: 20vw;
        height: 20vw;
    }
    .campaign-badge .badge-circle p {
        font-size: 4vw;
    }
	  .about-image {
    padding: 0 4vw 0 0vw;
  }
	  .recommend-container {
    height: 600px;
    Max-height: 800px;
  }
.recommend-content {
  display: flex;
	flex-direction: column;
  gap: 26px;
}
	.instructor-name {
  margin-bottom: 10px;
}
	.recommend-text {
  padding-top: 0px;
		order: 2
}
	.recommend-image {
  order: 1
}
	.instructor-card {
 flex-direction: column;
		gap: 24px;
}
	.price-description {
  text-align: left;

}
	.price-description br {
 display: none;

}
	.instructor-info {
  order: 2;
}
	.instructor-image {
  order: 1;
}
	.pricing-subtitle {
  text-align: left;
}
	.faq-description {
		text-align: left;
}
	.faq-description br:first-child {
 display: none;
}
	.footer-content {
  flex-direction: column;
		margin-bottom: 10px;
}
	.footer-links {
  flex-direction: column;
  gap: 10px;
  padding: 0px 0 120px 0;
		text-align: center;
}
	 .access-text {
   text-align: center;
  }
	.access-details{
		 text-align: left;
	}
	.campaign {
        margin: 60px 24px;
    }
    .about,
    .reasons,
    .recommend,
    .instructor,
    .price,
    .faq {
        padding: 60px 0;
    }
    .footer {
        padding: 60px 0 0;
    }
	.entry-fee {
    background-color: white;
    border-radius: 10px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0px;
    margin: 50px auto;
    max-width: 1184px;
    overflow: hidden;		
}
	.fee-label {
  background-color: #ffe0e3;
  padding: 20px;
  text-align: center;
		width: 100%;
}
	.fee-amount {
  padding: 20px;
}
	.logo {
  width: 38px;
  height: 42px;
  flex-shrink: 0;
}
	.access-icon img {
  width: 70px;
  height: auto;
}
	  .section-header {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .reason-image {
    padding: 0;

  }
}

/* Smooth scrolling */
.scroll-container {
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.image-wrapper-container {
    display: flex;
    white-space: nowrap;
    transition: transform 0s linear;
}

.image-wrapper {
    flex-shrink: 0;
    margin-right: 20px;
    width: 26%;
    overflow: hidden;
}
@media (max-width: 480px) {
	.image-wrapper {
    flex-shrink: 0;
    margin-right: 20px;
    width: 70%;
    overflow: hidden;
}
}
@media (min-width: 481px) {
.sp-carousel,.price-carousel1,.price-carousel2 {
    display: none!important;
}}
.image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Pause animation on hover */
.scroll-container:hover .image-wrapper-container {
    animation-play-state: paused;
}

/* CSS animation for smoother movement, but we'll control it with JS */
.scrolling {
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (min-width: 861px) {
    .d-lx-none {
        display: none;
    }
}
@media (min-width: 481px) {
.d-sm-none{
	display: none;
}}