/*
Theme Name: Aikawa Trails
Theme URI: https://github.com/devzakana/aikawa-trails
Author: devzakana
Author URI: https://github.com/devzakana
Description: 愛川町のトレイルplace・観光placeを紹介するLPサイト用テーマ
Version: 1.4.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aikawa-trails
Tags: landing-page, custom-logo, custom-menu, featured-images
*/

/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #2d5a27;
    --color-secondary: #8fbc8f;
    --color-accent: #f4a460;
    --color-text: #333;
    --color-text-light: #666;
    --color-bg: #FFFEF9;
    --color-grid-line: rgba(252, 224, 212, 0.5);
    --grid-line-width: 0.5px;
    --grid-size: 8pt;
    --grid-background-image:
        linear-gradient(var(--color-grid-line) var(--grid-line-width), transparent var(--grid-line-width)),
        linear-gradient(90deg, var(--color-grid-line) var(--grid-line-width), transparent var(--grid-line-width));
    --color-bg-alt: #f5f5f5;
    --color-bg-beige: #f5f0e8;
    --font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
    --max-width: 1200px;
    --header-height: 46.5px;
    --top-places-recommend-shift: -50px;
    --top-collage-shift: clamp(-100px, -17vw, 0px);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    background-color: var(--color-bg);
    background-image: var(--grid-background-image);
    background-size: var(--grid-size) var(--grid-size);
    line-height: 1.8;
}

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

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

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

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: var(--color-primary);
    color: #fff;
    height: var(--header-height);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header a {
    color: #fff;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.site-title {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    font-weight: 500;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Main Content */
.site-main {
    /*padding-top: 20px;*/
    /*padding-bottom: 4rem;*/
}

.site-main--top {
    padding-top: 20px;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--color-bg);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.card-image {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    width: 100%;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.card-description {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Footer */
.site-footer {
    background: var(--color-text);
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.site-footer a {
    color: var(--color-secondary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background: #1e3d1a;
    color: #fff;
}

.btn-secondary {
    background: var(--color-accent);
    color: #fff;
}

.btn-secondary:hover {
    background: #e08840;
    color: #fff;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .main-navigation ul {
        gap: 1rem;
    }

    .site-header .container {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ========================================
   TOP PAGE SECTIONS
   ======================================== */

/* Top Header */
.site-header {
    background: #EB641D;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 16px;
}

.site-header__logo {
    display: flex;
    align-items: center;
}

.site-header__logo-img {
    height: 22px;
    width: auto;
}

.site-header__menu-toggle {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.site-header__menu-toggle img {
    height: 22px;
    width: auto;
}

.site-header__menu {
    position: fixed;
    inset: 0;
    background-color: var(--color-bg);
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 2000;
}

.site-header__menu-inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 64px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.site-header__menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 28px;
    height: 28px;
    border: none;
    background: none;
    cursor: pointer;
}

.site-header__menu-close::before,
.site-header__menu-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 2px;
    background: #EB641D;
    border-radius: 1px;
    transform-origin: center;
}

.site-header__menu-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.site-header__menu-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.site-header__menu-nav {
    width: 100%;
}

.site-header__menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.site-header__menu-list a {
    color: #111;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
}

.site-header__menu-list a:hover,
.site-header__menu-list a:focus-visible {
    color: #EB641D;
}

.site-header__menu-social {
    margin-top: 12px;
}

.site-header__menu-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-header__menu-instagram img {
    width: 48px;
    height: 48px;
}

body.is-menu-open {
    overflow: hidden;
}

body.is-menu-open .site-header__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Top Hero */
.top-hero {
    position: relative;
    height: 345px;
    overflow: hidden;
}

.top-hero__background {
    position: absolute;
    inset: 0;
}

.top-hero__background picture,
.top-hero__background img {
    width: 100%;
    height: 100%;
    display: block;
}

.top-hero__map,
.top-hero__background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-hero__content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
}

.top-hero__title {
    width: clamp(220px, 55vw, 820px);
    margin: 0;
    display: block;
}

.top-hero__title img {
    width: 100%;
    height: auto;
    display: block;
}

/* Top Collage */
.top-collage {
    position: relative;
    overflow: hidden;
    margin-top: var(--top-collage-shift);
}

.top-collage__container {
    position: relative;
}

.top-collage__image {
    width: 100%;
    display: block;
}

/* Top Intro */
.top-intro {
    padding-top: 40px;
    text-align: center;
}

.top-intro__container {
    /*max-width: 600px;*/
    margin: 0 auto;
    position: relative;
}

.top-intro__dots {
    position: absolute;
    bottom: -10px;
    left: 5%;
    width: 60px;
}

.top-intro__text {
    font-size: 12px;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: 30px;
}

.top-intro__text p {
    margin-bottom: 1em;
}

.top-intro__map-area {
    position: relative;
}

.top-intro__map {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
}

.top-intro__map-text {
    position: absolute;
    bottom: -30px;
    left: 45px;
    width: 150px;
}

/* Top Places */
.top-places {
    padding: 40px 20px;
    background-color: var(--color-bg);
    background-image: var(--grid-background-image);
    background-size: var(--grid-size) var(--grid-size);
}

.top-places__container {
    max-width: 600px;
    margin: 0 auto;
}

.top-places__header {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.top-places__title {
    position: relative;
    width: 140px;
}

.top-places__title-img {
    display: block;
    width: 100%;
}

.top-places__lead {
    position: absolute;
    width: 80px;
    top: var(--top-places-lead-top, -20px);
    right: var(--top-places-lead-right, 60%);
}

.top-places__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.top-places__card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.top-places__card:nth-child(4) {
    display: none;
}

.top-places__card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.top-places__card-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.top-places__card-content {
    padding: 8px;
}

.top-places__card-description {
    font-size: 12px;
    color: var(--color-text-light);
    /*margin-bottom: 4px;*/
}

.top-places__card-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.top-places__card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.top-places__card-tag {
    font-size: 12px;
    color: #c45014;
    text-decoration: none;
    text-underline-offset: 2px;
}

.top-places__more {
    text-align: center;
    margin-top: 24px;
}

.top-places__more-btn {
    display: inline-block;
    background: #EB641D;
    color: #fff;
    width: 65.8pt;
    height: 23.1pt;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 14px;
    font-weight: 700;
}

.top-places__more-btn:hover {
    background: #a84510;
    color: #fff;
}

/* Top Villa */
.top-villa {
    position: relative;
    margin-bottom: 20px;
}

.top-villa__container {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.top-villa__header {
    margin-bottom: 0;
}

.top-villa__lead {
    font-size: 14px;
    font-style: italic;
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

.top-villa__title {
    width: 240px;
    max-width: 100%;
}

.top-villa__hero {
    display: block;
    width: 345px;
    height: 345px;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}

.top-villa__hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Top Footer */
.top-footer {
    background-color: var(--color-bg);
    background-image: var(--grid-background-image);
    background-size: var(--grid-size) var(--grid-size);
    border-bottom: 24px solid #EB641D;
}

.top-footer__cta-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.top-footer__cta {
    position: relative;
    display: block;
    width: 345px;
    max-width: 100%;
    margin: 0 auto;
}

.top-footer__cta-img {
    width: 100%;
    display: block;
}

.top-footer__cta-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
    line-height: 1.6;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.top-footer__reserve {
    position: relative;
    display: block;
    width: 345px;
    max-width: 100%;
    margin: 0 auto;
}

.top-footer__reserve-img {
    width: 100%;
    display: block;
}

.top-footer__reserve-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}

.top-footer__container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.top-footer__instagram {
    text-align: center;
    margin-bottom: 20px;
}

.top-footer__instagram-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #EB641D;
}

.top-footer__instagram-icon {
    width: 48px;
    height: 48px;
}

.top-footer__links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.top-footer__links li {
    margin-bottom: 0;
}

.top-footer__links a {
    font-size: 14px;
    color: #EB641D;
}

.top-footer__links a:hover {
    color: var(--color-primary);
}

/* ========================================
   ABOUT PAGE SECTIONS
   ======================================== */

/* About Page Main */
.site-main--about {
    padding-top: 0;
    padding-bottom: 0;
}

/* About Page - Hide site footer */
.site-main--about ~ .site-footer {
    display: none;
}

/* About Hero */
.about-hero {
    position: relative;
    overflow: hidden;
    /*margin-top: 50px;*/
}

.about-hero__media {
    position: relative;
    margin-top: 30px
}

.about-hero__heading {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 260px;
    z-index: 2;
    margin-top: 75px;
}

.about-hero__media-img {
    width: 100%;
    display: block;
    padding: 0 15px;
}

/* About Intro */
.about-intro {
    position: relative;
    margin-top: clamp(-160px, -34.666vw, -100px);
    /*--about-intro-bottom: 22.5%;*/
    isolation: isolate;
}

.about-intro__container {
    position: relative;
}

.about-intro__visual {
    position: relative;
}

.about-intro__media {
    width: 100%;
    height: auto;
    display: block;
}

.about-intro__content {
    position: absolute;
    left: 50%;
    bottom: var(--about-intro-bottom);
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
    z-index: 2;
}

.about-intro__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.8em;
}

.about-intro__text {
    font-size: 12px;
    line-height: 2;
    color: var(--color-text);
}

.about-intro__text p {
    margin-top: 20px;
    margin-bottom: 1.5em;
}

.about-intro__text p:last-child {
    margin-bottom: 0;
}

/* About Collage */
.about-collage {
    background-color: var(--color-bg);
    background-image: var(--grid-background-image);
    background-size: var(--grid-size) var(--grid-size);
    position: relative;
    overflow: hidden;
}

.about-collage__container {
    position: relative;
}

.about-collage__main {
    width: 100%;
    display: block;
}

@media (min-width: 1440px) {
    :root {
        --top-collage-shift: clamp(-60px, -17vw, 0px);
    }

    .top-collage__image {
        aspect-ratio: 1920 / 1775;
    }

    .about-collage__main {
        aspect-ratio: 1920 / 2500;
    }
}

.about-collage__text {
    position: absolute;
    z-index: 10;
}

.about-collage__text--1 {
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
}

.about-collage__text--2 {
    top: 56%;
    right: 3%;
    width: 85px;
}

.about-collage__text--3 {
    bottom: 5%;
    left: 25%;
    width: 85px;
}

.about-collage__illust {
    position: absolute;
    z-index: 10;
}

.about-collage__illust--1 {
    top: 27%;
    left: 3%;
    width: 75px;
}

.about-collage__illust--2 {
    top: 54%;
    right: 2%;
    width: 75px;
}

.about-collage__illust--3 {
    bottom: 12%;
    left: 2%;
    width: 55px;
}

/* About Media */
.about-media {
    --about-wave-top: calc(100vw * 258 / 3126);
    --about-wave-bottom: calc(100vw * 491 / 3126);
    --about-inner-min: 650px;
    --about-container-max: 600px;
    /*background-color: var(--color-bg);
    background-image: var(--grid-background-image);
    background-size: var(--grid-size) var(--grid-size);*/
    /*overflow: hidden;*/
    display: grid;
    align-items: stretch;
    justify-items: stretch;
    height: auto;
    min-height: calc(var(--about-inner-min) + var(--about-wave-top) + var(--about-wave-bottom));
    width: 100%;
}

.about-media__background {
    pointer-events: none;
    grid-area: 1 / 1;
    position: relative;
    z-index: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    align-self: stretch;
    justify-self: stretch;
    background-image: url("assets/images/about/about-media-youtube-bg-sp.webp");
    background-repeat: repeat-x;
    background-position: center top;
    background-size: auto 100%;
    background-origin: content-box;
    background-clip: content-box;
    padding-top: var(--about-wave-top);
    padding-bottom: var(--about-wave-bottom);
}

.about-media__background::before,
.about-media__background::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
}

.about-media__background::before {
    top: 1px;
    height: var(--about-wave-top);
    background-image: url("assets/images/about/about-media-youtube-bg-top-sp.svg");
}

.about-media__background::after {
    bottom: 1px;
    height: var(--about-wave-bottom);
    background-image: url("assets/images/about/about-media-youtube-bg-bottom-sp.svg");
}

.about-media__container {
    grid-area: 1 / 1;
    position: relative;
    z-index: 2;
    max-width: var(--about-container-max);
    width: 100%;
    min-height: var(--about-inner-min);
    margin-top: var(--about-wave-top);
    margin-bottom: var(--about-wave-bottom);
    padding: 90px 20px;
    align-self: stretch;
    justify-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-media__youtube {
    background: transparent;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.about-media__youtube-thumbnail {
    width: 211.7px;
    height: 376.4px;
    object-fit: cover;
    border-radius: 8px;
}

.about-media__youtube-iframe {
    width: 211.7px;
    height: 376.4px;
    border-radius: 8px;
    border: none;
}

.about-media__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-media__cta-text {
    font-size: 13px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

.about-media__cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #070605;
    color: #fff;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

.about-media__cta-btn:hover {
    background: #444;
    color: #fff;
}

/* ========================================
   PLACE PAGE SECTIONS
   ======================================== */

/* Place Header */
.place-header {
    background: #EB641D;
    height: var(--header-height);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.place-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 16px;
}

.place-header__logo {
    display: flex;
    align-items: center;
}

.place-header__logo-img {
    height: 22px;
    width: auto;
}

.place-header__menu-toggle {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.place-header__menu-toggle img {
    height: 22px;
    width: auto;
}

/* Place Hero */
.place-hero {
    position: relative;
    overflow: hidden;
}

.place-hero__illust-area {
    background: #fff;
    position: relative;
}

.place-hero__illust {
    width: 100%;
    display: block;
}

.place-hero__title {
    --place-hero-title-font-base: clamp(14px, 2.8vw, 48px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: block;
    max-width: min(94vw, 1320px);
    margin: 0;
    text-align: center;
    font-size: var(--place-hero-title-font-base);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.35;
}

.place-hero__title-text {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-size: var(--place-hero-title-font-size, var(--place-hero-title-font-base));
    max-width: 100%;
    padding: clamp(12px, 2vw, 30px) clamp(34px, 6vw, 120px);
    white-space: nowrap;
}

.place-hero__title-text::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset-block: clamp(-14px, -0.7vw, 0px);
    inset-inline: clamp(-32px, -1.4vw, -16px);
    background-image: url("assets/images/place/place-illust-title.svg?v=20260207");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    pointer-events: none;
}

/* Place Body */
.place-body {
    background-color: var(--color-bg);
    background-image: var(--grid-background-image);
    background-size: var(--grid-size) var(--grid-size);
}

.place-body__gallery {
    position: relative;
    overflow: hidden;
}

.place-body__gallery-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding: 0 4vw;
    scroll-padding: 0 4vw;
}

.place-body__gallery-slider::-webkit-scrollbar {
    display: none;
}

.place-body__gallery-img {
    flex: 0 0 92%;
    max-width: 92%;
    width: 100%;
    scroll-snap-align: center;
    object-fit: cover;
}

.place-body__gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 4px;
    color: #EB641D;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.place-body__gallery-nav--prev {
    left: 10px;
}

.place-body__gallery-nav--next {
    right: 10px;
}

.place-body__gallery-nav-icon {
    display: block;
    width: 24px;
    height: auto;
}

.place-body__container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--color-bg);
    background-image: var(--grid-background-image);
    background-size: var(--grid-size) var(--grid-size);
}

.place-body__header {
    text-align: left;
    margin-bottom: 24px;
}

.place-body__lead {
    --place-lead-font-base: clamp(16px, 5.2vw, 22px);
    display: inline-flex;
    flex-direction: column;
    align-items: baseline;
    font-size: var(--place-lead-font-base);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.6;
}

.place-body__lead-line {
    --place-lead-bleed: 0.15em;
    display: inline-block;
    font-size: var(--place-lead-font-size, var(--place-lead-font-base));
    position: relative;
    padding-bottom: 0.25em;
    padding-left: var(--place-lead-bleed);
    padding-right: var(--place-lead-bleed);
    margin-left: calc(var(--place-lead-bleed) * -1);
    margin-right: calc(var(--place-lead-bleed) * -1);
    background-repeat: no-repeat;
    background-size: 120% 1em;
    background-position: 50% 100%;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    white-space: nowrap;
}

.place-body__lead-line--1 {
    background-image: url("assets/images/place/place-body-lead-underline-1-sp.svg");
}

.place-body__lead-line--2 {
    background-image: url("assets/images/place/place-body-lead-underline-2-sp.svg");
}

.place-body__content {
    text-align: left;
}

.place-body__text {
    font-size: 12px;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: 16px;
}

.place-body__text--rich p {
    margin-bottom: 16px;
}

.place-body__text--rich p:last-child {
    margin-bottom: 0;
}

.place-body__link-wrap {
    font-size: 14px;
    color: var(--color-text);
    margin-top: 24px;
}

.place-body__link {
    color: #EB641D;
    text-decoration: underline;
}

.place-body__link:hover {
    color: var(--color-primary);
}

/* Place Media */
.place-media {
    display: grid;
    place-items: center;
    position: relative;
    height: 560px;
    width: 100%;
    margin-bottom: 50px;
}

.place-media__background {
    pointer-events: none;
    grid-area: 1 / 1;
    position: relative;
    z-index: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background-image: url("assets/images/place/place-media-youtube-bg.webp");
    background-repeat: repeat-x;
    background-position: center top;
    background-size: auto 100%;
    background-origin: content-box;
    background-clip: content-box;
}

@media (max-width: 767px) {
    .place-media__background {
        padding-top: calc(100vw * 270 / 3125);
        padding-bottom: calc(100vw * 185 / 3125);
    }

    .place-media__background::before,
    .place-media__background::after {
        content: "";
        position: absolute;
        z-index: 0;
        left: 0;
        right: 0;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        pointer-events: none;
    }

    .place-media__background::before {
        top: 1px;
        height: calc(100vw * 270 / 3125);
        background-image: url("assets/images/place/place-media-youtube-bg-wave-top-sp.svg");
    }

    .place-media__background::after {
        bottom: 1px;
        height: calc(100vw * 185 / 3125);
        background-image: url("assets/images/place/place-media-youtube-bg-wave-bottom-sp.svg");
    }
}

.place-media__container {
    grid-area: 1 / 1;
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 100%;
    padding: 0 20px;
}

.place-media__youtube {
    background: transparent;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.place-media__youtube-thumbnail {
    width: 211.7px;
    height: 376.4px;
    object-fit: cover;
    border-radius: 8px;
}

.place-media__youtube-iframe {
    width: 211.7px;
    height: 376.4px;
    border-radius: 8px;
    border: none;
}

.about-media__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-media__cta-text {
    font-size: 13px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

.about-media__cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #070605;
    color: #fff;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

.about-media__cta-btn:hover {
    background: #13110f;
    color: #fff;
}

.place-media__tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.place-media__tag {
    font-size: 13px;
    color: #EB641D;
    text-decoration: none;
    text-underline-offset: 2px;
}

.place-media__tag:visited {
    color: #EB641D;
}

.top-places__card-tag:hover,
.top-places__card-tag:focus-visible,
.place-media__tag:hover,
.place-media__tag:focus-visible {
    text-decoration: underline;
}

/* Place Villa */
.place-villa {
    position: relative;
    min-height: 357px;
}

.place-villa__background {
    position: absolute;
    inset: 0;
}

.place-villa__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.place-villa__content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.place-villa__title {
    width: 100%;
    max-width: 280px;
}

/* Place Footer */
.place-footer {
    background: var(--color-bg-beige);
    border-bottom: 24px solid #EB641D;
}

.place-footer__cta-section {
    text-align: center;
}

.place-footer__cta {
    position: relative;
    display: block;
}

.place-footer__cta-img {
    width: 100%;
    display: block;
}

.place-footer__cta-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
    line-height: 1.6;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.place-footer__reserve {
    position: relative;
    display: block;
}

.place-footer__reserve-img {
    width: 100%;
    display: block;
}

.place-footer__reserve-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}

.place-footer__container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.place-footer__instagram {
    text-align: center;
    margin-bottom: 32px;
}

.place-footer__instagram-link {
    display: inline-block;
}

.place-footer__instagram-icon {
    width: 48px;
    height: 48px;
}

.place-footer__links {
    list-style: none;
    text-align: center;
}

.place-footer__links li {
    margin-bottom: 16px;
}

.place-footer__links a {
    font-size: 13px;
    color: #EB641D;
}

.place-footer__links a:hover {
    color: var(--color-primary);
}

/* Places Archive Page */
.site-main--places {
    padding-top: var(--header-height);
    padding-bottom: 0;
}

.site-main--places ~ .site-footer {
    display: none;
}

/* Places List */
.places-list {
    padding: 40px 20px;
    background-color: var(--color-bg);
    background-image: var(--grid-background-image);
    background-size: var(--grid-size) var(--grid-size);
    min-height: calc(100vh - var(--header-height));
}

.places-list__container {
    max-width: 600px;
    margin: 0 auto;
}

.places-list__header {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.places-list__title {
    position: relative;
    width: 140px;
}

.places-list__lead {
    position: absolute;
    width: 80px;
    top: var(--places-list-lead-top, -20px);
    right: var(--places-list-lead-right, 60%);
}

.places-list__title-img {
    display: block;
    width: 100%;
}

.places-list__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.places-list__card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.places-list__card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.places-list__card-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.places-list__card-content {
    padding: 16px;
}

.places-list__card-description {
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.places-list__card-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.places-list__card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.places-list__card-tag {
    font-size: 12px;
    color: #EB641D;
}

.places-list__empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-text-light);
}

/* ========================================
   PC RESPONSIVE STYLES (min-width: 768px)
   ======================================== */

@media (min-width: 768px) {
    /* ----------------------------------------
       Global & Container
       ---------------------------------------- */
    :root {
        --header-height: 74px;
        --max-width: 1440px;
        --grid-size: 24pt;
        --grid-line-width: 1px;
        --top-places-recommend-shift: -130px
        --top-collage-shift: clamp(-150px, -10vw, 0px);
    }

    .container {
        padding: 0 40px;
        max-width: var(--max-width);
    }

    /* ----------------------------------------
       Header - PC Navigation
       ---------------------------------------- */
    .site-header {
        height: var(--header-height);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 40px;
    }

    .site-header__container {
        padding: 0;
        height: auto;
    }

    .site-header__logo-img {
        height: 54px;
    }

    .site-header__menu-toggle {
        display: none;
    }

    .site-header__menu {
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: transparent;
        display: flex;
        align-items: center;
    }

    .site-header__menu-inner {
        flex-direction: row;
        padding: 0;
        gap: 0;
        height: auto;
        width: auto;
    }

    .site-header__menu-close {
        display: none;
    }

    .site-header__menu-nav {
        width: auto;
    }

    .site-header__menu-list {
        flex-direction: row;
        gap: 0;
    }

    .site-header__menu-list li {
        display: flex;
        align-items: center;
    }

    .site-header__menu-list li:not(:last-child)::after {
        content: "|";
        color: #000;
        margin: 0 16px;
        font-size: 13px;
    }

    .site-header__menu-list a {
        color: #000;
        font-size: 16px;
    }

    .site-header__menu-list a:hover,
    .site-header__menu-list a:focus-visible {
        color: rgba(0, 0, 0, 0.6);
    }

    .site-header__menu-social {
        display: none;
    }

    .site-main {
        padding-top: 0px;
    }

    /* ----------------------------------------
       Top Hero - PC
       ---------------------------------------- */
    .top-hero {
        height: 1050px;
    }

    .top-hero__content {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 100%;
        max-width: 1440px;
        padding: 40px;
    }

    .top-hero__title {
        width: clamp(220px, 55vw, 820px);
    }

    /* ----------------------------------------
       Top Intro - PC
       ---------------------------------------- */
    .top-intro {
        padding-top: 80px;
    }

    .top-intro__container {
        /*max-width: 1000px;*/
    }

    .top-intro__text {
        font-size: 24px;
    }

    .top-intro__map {
        max-width: 1440px;
        margin: 0 auto;
    }

    /* ----------------------------------------
       Top Collage - PC
       ---------------------------------------- */
    .top-collage__container {
        max-width: 1440px;
        margin: 0 auto;
    }

    .top-collage__image {
        display: block;
    }

    /* ----------------------------------------
       Top Places - PC (2-column grid)
       ---------------------------------------- */
    .top-places {
        padding: 80px 40px;
    }

    .top-places__container {
        max-width: 1100px;
    }

    .top-places__header {
        margin-bottom: 40px;
    }

    .top-places__title {
        width: 350px;
    }

    .top-places__lead {
        width: 200px;
    }

    .top-places__list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 32px;
    }

    .top-places__card {
        flex: 0 0 calc(50% - 16px);
    }

    .top-places__card:nth-child(4) {
        display: block;
    }

    .top-places__more-btn {
        display: inline-block;
        background: #EB641D;
        color: #fff;
        width: 160px;
        height: 56px;
        border-radius: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        font-size: 48px;
        font-weight: 700;
    }

    /* ----------------------------------------
       Top Villa - PC
       ---------------------------------------- */
    .top-villa {
        margin-bottom: 0px;
    }

    .top-villa__container {
        top: 40px;
    }

    .top-villa__title {
        width: 300px;
    }

    .top-villa__hero {
        width: 840px;
        height: 840px;
    }

    /* ----------------------------------------
       Top Footer - PC
       ---------------------------------------- */
    .top-footer__cta-section {
        /*flex-direction: row;*/
        justify-content: center;
        gap: 14px;
        padding: 40px;
    }

    .top-footer__cta-text {
        font-size: 34px;
    }

    .top-footer__reserve-text {
        font-size: 34px;
    }

    .top-footer__cta,
    .top-footer__reserve {
        width: 840px;
    }

    .top-footer__container {
        max-width: 1440px;
        padding: 0;
        padding-bottom: 60px;
    }

    .top-footer__links {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
    }

    .top-footer__links a {
        font-size: 18px;
    }

    .top-footer__instagram {
        text-align: center;
        margin-bottom: 100px;
    }

    .top-footer__instagram-icon {
        width: 100px;
        height: 100px;
    }

    /* ----------------------------------------
       About Hero - PC
       ---------------------------------------- */
    .about-hero {
        position: static;
        overflow: visible;
    }

    .about-hero__media {
        margin-top: 100px;
        z-index: 1;
    }

    .about-hero__heading {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        display: block;
        width: clamp(280px, 60vw, 865px);
        margin: 0 auto;
        z-index: 2;
        margin-top: 50px;
        max-width: 865px;
    }

    .about-hero__media-img {
        padding: 0;
        margin-top: clamp(-300px, calc(-230px - (100vw - 768px) * 0.1041667), -230px);
    }

    /* ----------------------------------------
       About Intro - PC
       ---------------------------------------- */
    .about-intro__container {
        max-width: 1440px;
        margin: 0 auto;
    }

    .about-intro {
        margin-top: clamp(-300px, -20.833vw, -160px);
        z-index: 1;
        --about-intro-bottom: 17.5%;
    }

    .about-intro__title {
        font-size: 36px;
        margin-bottom: 1.5em;
    }

    .about-intro__text {
        font-size: 24px;
        line-height: 2.2;
    }

    .about-media__cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        padding: 16px 32px;
        border-radius: 22px;
        font-size: 32px;
        font-weight: 300;
        line-height: 1.5;
        text-align: center;
        width: 550px;
        height: 150px;
    }

    /* ----------------------------------------
       About Collage - PC
       ---------------------------------------- */
    .about-collage__container {
        max-width: 1440px;
        margin: 0 auto;
    }

    .about-collage {
        margin-top: -80px
    }

    /* ----------------------------------------
       About Media - PC
       ---------------------------------------- */
    .about-media {
        --about-wave-top: calc(100vw * 744 / 12000);
        --about-wave-bottom: calc(100vw * 1181 / 12000);
        --about-inner-min: 725px;
        --about-container-max: 1000px;
    }

    .about-media__background {
        background-image: url("assets/images/about/about-media-youtube-bg-pc.webp");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center top;
        padding-top: var(--about-wave-top);
        padding-bottom: var(--about-wave-bottom);
    }

    .about-media__background::before {
        top: 1px;
        height: var(--about-wave-top);
        background-image: url("assets/images/about/about-media-youtube-bg-top-pc.svg");
    }

    .about-media__background::after {
        bottom: 1px;
        height: var(--about-wave-bottom);
        background-image: url("assets/images/about/about-media-youtube-bg-bottom-pc.svg");
    }

    .about-media__youtube-thumbnail {
        width: 280px;
        height: 500px;
    }

    .about-media__youtube-iframe {
        width: 500px;
        height: 900px;
    }

    .about-media__cta-text {
        font-size: 24px;
    }

    /* ----------------------------------------
       Place Body - PC
       ---------------------------------------- */
    .place-body__gallery {
        max-width: 1440px;
        margin: 0 auto;
    }

    .place-body__gallery-slider {
        gap: 24px;
        padding: 0 10vw;
        scroll-padding: 0 10vw;
    }

    .place-body__gallery-img {
        flex: 0 0 80%;
        max-width: 80%;
        scroll-snap-align: center;
        max-height: 910px;
        /*max-height: 500px;*/
    }

    .place-body__gallery-nav--prev {
        left: clamp(16px, 4vw, 64px);
    }

    .place-body__gallery-nav--next {
        right: clamp(16px, 4vw, 64px);
    }

    .place-body__container {
        max-width: 1000px;
        padding: 80px 40px;
    }

    .place-body__lead {
        --place-lead-font-base: 40px;
        font-size: var(--place-lead-font-base);
    }

    .place-body__lead-line {
        --place-lead-bleed: 0.2em;
        padding-bottom: 0.3em;
        background-size: 120% 1.15em;
    }

    .place-body__lead-line--1 {
        background-image: url("assets/images/place/place-body-lead-underline-1-pc.svg");
    }

    .place-body__lead-line--2 {
        background-image: url("assets/images/place/place-body-lead-underline-2-pc.svg");
    }

    .place-body__text {
        font-size: 26px;
    }

    /* ----------------------------------------
       Place Media - PC
       ---------------------------------------- */
    .place-media {
        height: 1350px;
    }

    .place-media__background {
        background-image: url("assets/images/place/place-media-youtube-bg-pc.webp");
        padding-top: calc(100vw * 680 / 12000);
        padding-bottom: calc(100vw * 685 / 12000);
    }

    .place-media__background::before,
    .place-media__background::after {
        content: "";
        position: absolute;
        z-index: 0;
        left: 0;
        right: 0;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        pointer-events: none;
    }

    .place-media__background::before {
        top: 1px;
        height: calc(100vw * 680 / 12000);
        background-image: url("assets/images/place/place-media-youtube-bg-wave-top-pc.svg");
    }

    .place-media__background::after {
        bottom: 1px;
        height: calc(100vw * 685 / 12000);
        background-image: url("assets/images/place/place-media-youtube-bg-wave-bottom-pc.svg");
    }

    .place-media__container {
        max-width: 1000px;
    }

    .place-media__youtube-thumbnail {
        width: 280px;
        height: 500px;
    }

    .place-media__youtube-iframe {
        width: 500px;
        height: 900px;
    }


    /* ----------------------------------------
       Place Villa - PC
       ---------------------------------------- */
    .place-villa {
        min-height: 450px;
    }

    .place-villa__title {
        max-width: 350px;
    }

    /* ----------------------------------------
       Place Footer - PC
       ---------------------------------------- */
    .place-footer__cta-section {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .place-footer__cta,
    .place-footer__reserve {
        width: 50%;
        max-width: 500px;
    }

    .place-footer__container {
        max-width: 1000px;
        padding: 60px 40px;
    }

    .place-footer__links {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 24px;
    }

    .place-footer__links li {
        margin-bottom: 0;
    }

    /* ----------------------------------------
       Places Archive - PC (2-column grid)
       ---------------------------------------- */
    .places-list {
        padding: 80px 40px;
    }

    .places-list__container {
        max-width: 1100px;
    }

    .places-list__header {
        margin-bottom: 40px;
    }

    .places-list__lead {
        width: 200px;
        top: var(--places-list-lead-top, -45px);
        right: var(--places-list-lead-right, 60%);
    }

    .places-list__title {
        width: 350px;
    }

    .places-list__grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 32px;
    }

    .places-list__card {
        flex: 0 0 calc(50% - 16px);
    }

    .places-list__card-description {
        font-size: 22px;
    }

    .places-list__card-name {
        font-size: 30px;
    }

    .places-list__card-tag {
        font-size: 20px;
    }

    .top-places__card-description {
        font-size: 22px;
    }

    .top-places__card-name {
        font-size: 30px;
    }

    .top-places__card-tag {
        font-size: 20px;
    }

    .about-intro__text p {
        font-size: 26px;
        margin-bottom: 2em;
    }

    .about-intro__text p:last-child {
        font-size: 26px;
    }

    .top-places__more {
        margin-top: 80px;
    }

    .top-places__lead {
        position: absolute;
        top: var(--top-places-lead-top, -50px);
        right: var(--top-places-lead-right, 60%);
    }

    .place-body__link-wrap {
        font-size: 26px;
        color: var(--color-text);
        margin-top: 24px;
    }

    .place-media__tag {
        font-size: 28px;
        color: #EB641D;
        text-decoration: none;
        text-underline-offset: 2px;
    }

    /* ----------------------------------------
       Utilities - PC
       ---------------------------------------- */
    .pc-only {
        display: block !important;
    }

    .sp-only {
        display: none !important;
    }
}

/* ----------------------------------------
   About Intro - Fine Tuning
   ---------------------------------------- */
@media (max-width: 1200px) {
    .about-intro {
        --about-intro-bottom: 10.5%;
    }
}

@media (max-width: 1100px) {
    .about-intro {
        --about-intro-bottom: 0%;
    }

    .about-collage {
        margin-top: 0px;
    }
}

@media (max-width: 1000px) {
    .about-intro {
        --about-intro-bottom: 0%;
    }

    .about-collage {
        margin-top: 0px;
    }

    /*.about-hero__media-img {
        padding: 0;
        margin-top: -200px;
    }*/

    /*.about-hero__heading {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        display: block;
        width: clamp(280px, 60vw, 865px);
        margin: 0 auto;
        z-index: 2;
        margin-top: 50px;
        max-width: 865px;
    }*/
}

@media (max-width: 900px) {
    .about-intro {
        --about-intro-bottom: 5%;
    }

    .about-intro__title {
        font-size: 30px;
    }

    .about-intro__text p {
        font-size: 20px;
        margin-bottom: 2em;
    }

    .about-intro__text p:last-child {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .about-intro {
        --about-intro-bottom: 0.5%;
    }

    /*.about-intro__title {
        font-size: 16px;
    }

    .about-intro__text p {
        font-size: 12px;
        margin-bottom: 2em;
    }

    .about-intro__text p:last-child {
        font-size: 12px;
    }*/
}

@media (max-width: 600px) {
    .about-intro {
        --about-intro-bottom: 0.5%;
    }

    .about-intro__title {
        font-size: 20px;
    }

    .about-intro__text p {
        font-size: 16px;
        margin-bottom: 2em;
    }

    .about-intro__text p:last-child {
        font-size: 16px;
    }
}

@media (max-width: 430px) {
    .about-intro {
        --about-intro-bottom: 0.5%;
    }

    .about-intro__title {
        font-size: 16px;
    }

    .about-intro__text p {
        font-size: 12px;
        margin-bottom: 2em;
    }

    .about-intro__text p:last-child {
        font-size: 12px;
    }
}

@media (max-width: 350px) {
    .about-intro {
        margin-top: -100px;
    }
}
