
        :root {
            --yellow: #DCAA1E;
            --beige: #F0EFE8;
            --black: #333333;
            --white: #ffffff;
            --light-beige:#F6F2E3;
        }

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

        body {
            font-family: 'Zen Maru Gothic', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.7;
            color: var(--black);
            background-color: var(--beige);
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 1008px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 0.5rem;
            padding-top: 2rem;
        }

        .section-title .en {
            color: var(--yellow);
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .section-title .en::before,
        .section-title .en::after {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--yellow);
        }

        .hero {
            position: relative;
            width: 100%;
            background: url('../img/glamping_bg.webp') center/cover;
            padding-bottom: 100px;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15));
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding-top: 4rem;
            padding: 2rem;
            color: var(--white);
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%;
            justify-content: center;
        }

        .brand-logo {
            margin-bottom: 2rem;
        }

        .glamping-title {
            margin: 1rem 0;
            font-size: 2rem;
            letter-spacing: 0.1em;
        }

        .hero-text h1{
            font-size: 1.625rem;
            line-height: 1.5;
        }
      
        .yellow-box-content {
            text-align: center;
            margin-bottom: 2rem;
        }

        .yellow-box {
            position: relative;
            margin-top: -100px;
            background: var(--yellow);
            color: var(--white);
            padding: 2rem 2rem 1rem;
            border-radius: 24px 24px 0 0;
            width: 100%;
            margin: -100px auto 0;
            overflow: hidden;
        }

        .yellow-box h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .yellow-box p {
            font-size: 1rem;
            line-height: 1.8;
            font-weight: 500;
        }

        .slideshow-container {
            width: calc(100% + 4rem);
            margin: 0 -2rem;
            height: 120px;
            overflow: hidden;
        }
        
        .slideshow-track {
            display: flex;
            gap: 1.5rem;
            animation: slide 10s linear infinite;
        }
        
        .slide-item {
            flex: 0 0 160px;
        }

        .slide-item a{
            transition: opacity 0.3s ease;
        }

        .slide-item a:hover{
            opacity: 0.7;
        }
        
        .slide-item img {
            width: 100%;
            height: 100px;
            object-fit: cover;
            border-radius: 8px;
        }
        
        @keyframes slide {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .about-glamping {
            padding: 0 1.5rem;
            text-align: center;
        }

        .about-glamping p{
            font-weight: 500;
        }

        .feature-list,
        .recommend-list {
            margin-top: 1.5rem;
        }
        
        .section-balloon {
            background: var(--yellow);
            color: var(--white);
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            display: inline-block;
            position: relative;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            font-weight: bold;
        }
        
        .section-balloon:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            margin-left: -10px;
            border-width: 12px 12px 0;
            border-style: solid;
            border-color: var(--yellow) transparent transparent transparent;
        }
        
        .feature-border {
            width: 100%;
            background: var(--yellow);
            height: 1px;
            margin: 0;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 0;
            padding: 0.6rem 0;
            text-align: center;
            background: var(--white);
            margin: 0.5rem 0;
            border-radius: 4px;
        }
        
        .feature-item .number {
            color: var(--yellow);
            display: flex;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
            font-size: 1.6rem;
            padding-left: 1.6rem;
        }
        
        .feature-item .content {
            flex-grow: 1;
            font-weight: 700;
            line-height: 1.6;
        }

        .cta-section {
            position: relative;
            background: url('../img/cta_bg.webp') center 0%/100% auto;
            background-repeat: no-repeat;
            padding-top: 2.5rem;
            margin-top: 2.5rem;
            text-align: center;
            color: var(--white);
        }
        
        .cta-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15));
        }
        
        .cta-section .container {
            position: relative;
            z-index: 2;
        }
        
        .cta-section h2 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }
        
        .search-button,
        .ranking-button {
            display: flex;
            align-items: center;
            justify-content: space-between;
            text-decoration: none;
            font-weight: 700;
            width: 100%;
            max-width: 400px;
            margin: 1rem auto;
            padding: 0.8rem;
            border-radius: 4px;
        }
        
        .search-button {
            background: var(--white);
            color: var(--black);
        }

        .ranking-section {
            background: var(--yellow);
            padding: 1.5rem 0;
            margin-top: 2rem;
            border-radius: 24px 24px 0 0;
            position: relative;
            z-index: 2;
        }
        
        .ranking-section h3 {
            margin-bottom: 1rem;
        }
        
        .ranking-button {
            border: 2px solid var(--white);
            color: var(--white);
            margin: 0.5rem auto;
            font-size: 1rem;
            text-align: left;
            line-height: 1.4;
        }

        .arrow-circle {
            width: 24px;
            height: 24px;
            background: var(--yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: 0.3s ease;
        }
        
        .search-button .arrow-circle {
            background: var(--yellow);
        }
        
        .ranking-button .arrow-circle {
            background: var(--white);
        }
        
        .arrow {
            width: 8px;
            height: 8px;
            border-top: 2px solid var(--white);
            border-right: 2px solid var(--white);
            transform: rotate(45deg);
            margin-left: -2px;
        }
        
        .ranking-button .arrow {
            border-color: var(--yellow);
        }

        .pickup-section{
            padding-bottom: 2.5rem;
        }

        .pickup-section p{
            font-weight: 500;
        }

        .pickup-section p.sub-text{
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }

        .facility-card {
            background: var(--white);
            border: 1px solid var(--yellow);
            border-radius: 4px;
            overflow: hidden;
            margin-top: 1.5rem;
        }

        .facility-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .facility-content {
            padding: 0.5rem 1.2rem;
            font-size:1rem;
        }

        .facility-location {
            color: var(--black);
            font-size: 1rem;
            letter-spacing: 3.2px;
            text-align: center;
            margin-top: 0.8rem;
        }

        .facility-name {
            font-size: 1.3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .detail-link {
            width: 100%;
            background: var(--yellow);
            color: var(--white);
            text-decoration: none;
            border-radius: 4px;
            padding: 1rem;
            margin: 0.8rem 0 0.8rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 700;
        }
        
        .detail-link .arrow-circle {
            width: 24px;
            height: 24px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .detail-link .arrow {
            width: 8px;
            height: 8px;
            border-top: 2px solid var(--yellow);
            border-right: 2px solid var(--yellow);
            transform: rotate(45deg);
            margin-left: -2px;
        }

        .prefecture-section {
            padding: 0rem 1.5rem 2.5rem;
            background: var(--white);
            border-radius: 24px 24px 0 0;
        }
        
        .prefecture-section p{
            text-align: center;
            font-weight: 500;
        }

        .prefecture-section h3 {
            text-align: center;
            margin: 2rem 0 1rem;
        }
        
        .prefecture-group {
            margin-bottom: 0.5rem;
        }
        
        .prefecture-button {
            font-family: 'Zen Maru Gothic', sans-serif;
            font-weight: 500;
            background: var(--light-beige);
            color: var(--black);
            border: none;
            border-radius: 4px;
            padding: 0.5rem 1rem;
            width: 100%;
            text-align: left;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 1rem;
            cursor: pointer;
        }
        
        .toggle-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .prefecture-button[aria-expanded="true"] .toggle-icon {
            transform: rotate(45deg);
        }
        
        .prefecture-content {
            padding: 0.8rem 0;
        }
        
        .prefecture-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.5rem;
        }
        
        .prefecture-link {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--black);
            text-decoration: none;
            padding: 0.5rem 0.8rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid #dddddd;
            border-radius: 4px;
        }
        
        .prefecture-link .arrow {
            width: 8px;
            height: 8px;
            border-top: 2px solid var(--yellow);
            border-right: 2px solid var(--yellow);
            transform: rotate(45deg);
        }
        
        .prefecture-section .search-button {
            background: var(--yellow);
            color: var(--white);
            margin: 1.5rem auto;
        }
        
        .prefecture-section .search-button .arrow-circle {
            background: var(--white);
        }
        
        .prefecture-section .search-button .arrow {
            border-color: var(--yellow);
        }

        .popular-area {
            margin-top: 1rem;
        }
        
        .popular-area h3 {
            text-align: center;
            margin: 2rem 0 1rem;
        }
        
        .area-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        
        .area-card {
            position: relative;
            background: var(--light-beige);
            border-radius: 8px;
            overflow: hidden;
            text-decoration: none;
            color: var(--black);
            display: block;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }
        
        .area-image {
            position: relative;
            width: 100%;
            padding-top: 66.67%;
        }
        
        .area-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .area-content {
            padding: 0.8rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
        }
        
        .area-content p {
            font-size: 0.8rem;
            line-height: 1.5;
            margin: 0;
            text-align: left;
        }
        
        .area-card .arrow-circle {
            width: 24px;
            height: 24px;
            background: var(--yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .area-card .arrow {
            width: 8px;
            height: 8px;
            border-top: 2px solid var(--white);
            border-right: 2px solid var(--white);
            transform: rotate(45deg);
            margin-left: -2px;
        }
        
        .area-card:hover {
            opacity: 0.8;
        }

        .footer_sns {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            padding: 2rem 0;
        }
        
        .sns-item {
            display: flex;
            align-items: center;
        }
        
        .sns-item a {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s ease;
        }
        
        .sns-item a:hover {
            opacity: 0.7;
        }
        
        .sns-item svg {
            height: 26px;
        }
        
        footer {
            padding: 0 0 2rem;
            text-align: center;
        }
        
        footer p {
            font-size: 0.875rem;
            color: var(--black);
            margin: 0;
            line-height: 1.5;
        }

        .pc{
            display: none;
        }

        @media (min-width: 768px) {
            .pc{
                display: block;
            }
            
            .sp{
                display: none;
            }

            .hero {
                background: url('../img/glamping_bg_pc.webp') center/cover;
            }

            .hero-content {
                padding: 2rem 2rem 3rem 2rem;
            }

            .brand-logo img {
                width: 72px;
            }

            .glamping-title img{
                width: 380px;
                height: 194px;
            }

            .slideshow-track {
                animation: slide 50s linear infinite;
            }

            .about-glamping {
                padding: 0 1.5rem;
            }

            .section-title {
                padding-top: 4rem;
            }
        
            .feature-sections-wrapper {
                display: flex;
                gap: 1.8rem;
                margin-top: 2rem;
            }
        
            .feature-list,
            .recommend-list {
                flex: 1;
                margin-top: 0;
                width: 100%;
            }
        
            .section-balloon {
                text-align: center;
            }
        
            .feature-item {
                padding: 0.8rem 0;
            }
        
            .feature-item .number {
                padding-left: 2rem;
                padding-top: 0.2rem;
                font-size: 1.5rem;
            }
        
            .feature-item .content {
                font-size: 1rem;
                padding-right: 1rem;
            }

            .cta-section {
                background-position: center center;
                padding-top: 4rem;
                margin-top: 4rem;
            }
        
            .cta-section .container {
                max-width: 800px;
            }
        
            .cta-section h2 {
                font-size: 1.5rem;
                margin-bottom: 2rem;
            }
        
            .search-button {
                font-size: 1.2rem;
                padding: 1rem;
                transition: 0.3s ease;
            }

            .search-button:hover{
                background: var(--yellow);
                color: var(--white);
            }
            
            .search-button:hover .arrow{
                border-top: 2px solid var(--yellow);
                border-right: 2px solid var(--yellow);
            }

            .search-button:hover .arrow-circle{
                background: var(--white);
            }

            .ranking-section {
                margin-top: 4rem;
                padding-bottom: 3rem;
            }
        
            .ranking-section h3 {
                font-size: 1.2rem;
                padding-top: 0.5rem;
            }
        
            .ranking-section .container {
                display: flex;
                gap: 1rem;
                max-width: 960px;
            }
        
            .ranking-button {
                flex: 1;
                margin: 0;
                padding: 0.5rem 1rem;
                font-size: 1rem;
                align-items: center;
                transition: 0.3s ease;
            }

            .ranking-button:hover{
                background: var(--white);
                color: var(--black);
            }
            
            .ranking-button:hover .arrow{
                border-top: 2px solid var(--white);
                border-right: 2px solid var(--white);
            }

            .ranking-button:hover .arrow-circle{
                background: var(--yellow);
            }
        
            .facility-cards-container {
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 380px));
                gap: 2rem;
                margin: 2rem auto;
                justify-content: center;
            }
        
            .pickup-section {
                padding: 0 1.5rem;
            }

            .pickup-section p{
                text-align: center;
            }

            .facility-name{
                font-size: 1.1rem;
                min-height: 2.8em;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .facility-location{
                font-size: 0.8rem;
            }

            .facility-card a{
                transition: opacity 0.3s ease;
            }

            .facility-card a:hover{
                opacity: 0.7;
            }

            .facility-cards-container {
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 380px));
                gap: 1rem;
                margin: 2rem auto;
                justify-content: center;
            }

            .facility-cards-container .facility-card:nth-last-child(2) {
                grid-column: 1 / 2;
                margin-left: auto;
            }
        
            .facility-cards-container .facility-card:last-child {
                grid-column: 2 / 3;
                margin-right: auto;
            }
        
            .facility-card {
                margin-top: 0;
                display: flex;
                flex-direction: column;
                height: 100%;
            }
        
            .facility-content {
                flex-grow: 1;
                display: flex;
                flex-direction: column;
                font-size: 0.9rem;
            }
        
            .facility-content p{
                font-size: 0.9rem;
                text-align: left;
                margin-bottom: 0.5rem;
                box-sizing: border-box;
            }

            .facility-content .detail-link {
                margin-top: auto;
                width: 100%;
            }

            .detail-link {
                transition: 0.3s ease;
                box-sizing: border-box;
                border: 1px solid transparent; 
            }

            .detail-link:hover{
                background: var(--white);
                color: var(--black);
                border: 1px solid var(--yellow);
            }

            .detail-link:hover .arrow{
                border-top: 2px solid var(--white);
                border-right: 2px solid var(--white);
            }

            .detail-link:hover .arrow-circle{
                background: var(--yellow);
            }
        
            .prefecture-list{
                max-width: 664px;
                margin: 0 auto;
            }

            .prefecture-section{
                max-width: 100%;
            }

            .prefecture-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .prefecture-section .search-button{
                transition: 0.3s ease;
                box-sizing: border-box;
                border: 1px solid transparent; 
            }

            .prefecture-section .search-button:hover{
                background: var(--white);
                color: var(--black);
                border: 1px solid var(--yellow);
            }

            .prefecture-section .search-button:hover .arrow{
                border-top: 2px solid var(--white);
                border-right: 2px solid var(--white);
            }

            .prefecture-section .search-button:hover .arrow-circle{
                background: var(--yellow);
            }

            .prefecture-button{
                transition: opacity 0.3s ease;
            }

            .prefecture-button:hover{
                opacity: 0.7;
            }

            .prefecture-link{
                transition: 0.3s ease;
            }

            .prefecture-link:hover{
                background: var(--yellow);
                color: var(--white);
                border: 1px solid var(--yellow);
            }

            .prefecture-link:hover .arrow{
                border-top: 2px solid var(--white);
                border-right: 2px solid var(--white);
            }

            .popular-area{
                max-width: 664px;
                margin: 0 auto;
            }
        }