/*
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.0.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;
}

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;
}

/* 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__map {
    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 {
    max-width: 280px;
    width: 75%;
}

/* Top Collage */
.top-collage {
    position: relative;
    overflow: hidden;
}

.top-collage__container {
    position: relative;
}

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

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

.top-collage__illust--1 {
    top: 5%;
    right: 0;
    width: 80px;
}

.top-collage__illust--2 {
    top: 20%;
    left: 0;
    width: 80px;
}

.top-collage__illust--3 {
    bottom: 30%;
    right: 5%;
    width: 60px;
}

.top-collage__illust--4 {
    bottom: 20%;
    left: 10%;
    width: 50px;
}

.top-collage__illust--5 {
    bottom: 10%;
    right: 20%;
    width: 100px;
}

/* Top Intro */
.top-intro {
    padding: 40px 20px;
    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: 14px;
    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: 200px;
    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 {
    text-align: center;
    margin-bottom: 30px;
}

.top-places__lead {
    width: 80px;
    margin-bottom: 8px;
}

.top-places__title {
    width: 120px;
    display: block;
    margin: 0 auto;
}

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

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

.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: 16px;
}

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

.top-places__card-name {
    font-size: 18px;
    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: #EB641D;
    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: #d45a1a;
    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 {
    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: 5px;
}

.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: 13px;
    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;
}

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

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

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

/* About Intro */
.about-intro {
    background-color: var(--color-bg);
    background-image: var(--grid-background-image);
    background-size: var(--grid-size) var(--grid-size);
    padding: 40px 20px;
    position: relative;
}

.about-intro__container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.about-intro__lead {
    width: 350px;
    max-width: 100%;
    margin-bottom: 16px;
}

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

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

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

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

.about-intro__illust {
    position: absolute;
}

.about-intro__illust--1 {
    top: -10px;
    right: -10px;
    width: 90px;
}

.about-intro__illust--2 {
    top: 35%;
    left: -15px;
    width: 70px;
}

.about-intro__illust--3 {
    bottom: -10px;
    right: 5%;
    width: 75px;
}

/* 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;
}

.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 {
    height: 750px;
    background-color: var(--color-bg);
    background-image: var(--grid-background-image);
    background-size: var(--grid-size) var(--grid-size);
    position: relative;
    padding-bottom: 40px;
    overflow: hidden;
}

.about-media__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
    pointer-events: none;
}

.about-media__bg-img {
    width: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.about-media__container {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 50px 20px 0;
}

.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__cta {
    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: inline-block;
    background: #333;
    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 {
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 16px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.4;
}

/* 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;
}

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

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

.place-body__gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(235, 100, 29, 0.9);
    border: none;
    border-radius: 4px;
    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 {
    color: #fff;
    font-size: 16px;
}

.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: center;
    margin-bottom: 24px;
}

.place-body__lead {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.6;
}

.place-body__lead-line {
    display: block;
    position: relative;
}

.place-body__lead-underline {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 180px;
}

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

.place-body__text {
    font-size: 14px;
    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 {
    height: 560px;
    background-color: var(--color-bg);
    background-image: var(--grid-background-image);
    background-size: var(--grid-size) var(--grid-size);
    position: relative;
    padding: 40px 20px;
    overflow: hidden;
}

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

.place-media__background {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    pointer-events: none;
}

.place-media__container {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 50px 20px 0;
}

.place-media__youtube {
    margin-bottom: 24px;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0;
}

.place-media__youtube-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 0;
}

.place-media__youtube-player {
    width: 211.7px;
    height: 376.4px;
    max-width: 100%;
    background: #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.place-media__youtube-player iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.place-media__youtube-placeholder {
    font-size: 14px;
    color: var(--color-text-light);
    text-align: center;
    line-height: 1.6;
}

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

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

.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);
}
