@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
    --color-primary: #1E4C30;
    --color-accent: #e5a50a;
    /* Just an assumption for accent/buttons if needed, but buttons are dark green */
    --color-text-base: #333333;
    --color-text-white: #ffffff;
    --font-ja: 'Noto Sans JP', sans-serif;
    --font-en: 'Montserrat', sans-serif;
    --header-height: 80px;
    --max-width: 1280px;
}

body {
    font-family: var(--font-ja);
    color: var(--color-text-base);
    line-height: 1.6;
}

img {
    width: 100%;
}

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

@media(max-width:1280px) {
    .container {
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 0 20px;
    }
}

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

.w1720 {
    display: block;
    margin: 0 auto;
    max-width: 1720px;
}

.w1520 {
    display: block;
    margin: 0 auto;
    max-width: 1520px;
}

.w800 {
    display: block;
    margin: 0 auto;
    max-width: 800px;
}

a {
    text-decoration: none;
}

@media (max-width: 1280px) {
    .pc-only {
        display: none !important;
    }

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

    .w1720 {
        padding-left: 5%;
        padding-right: 5%;
    }

    .w1520 {
        padding-left: 5%;
        padding-right: 5%;
    }

    .w800 {
        padding-left: 5%;
        padding-right: 5%;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    padding: 10px 0px;
    margin: 0 auto;
}

.hw {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
}

.header__logo {
    width: 120px;
    height: auto;
}

.header__logo img {
    width: 100%;
    height: auto;
    display: block;
}

.header__nav {
    margin-left: auto;
    margin-right: 40px;
}

.header__list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header__link {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.05em;
    font-family: var(--font-ja);
}

.header__actions {
    display: flex;
    gap: 15px;
    max-width: 340px;
    width: 100%;
}

.header__actions span::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url(http://xs490808.xsrv.jp/wp/wp-content/uploads/2026/01/mail.png);
    background-size: contain;
    vertical-align: -4px;
    margin-right: 5px;
    background-repeat: no-repeat;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 9px;
    border-radius: 9999px;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s;
}

.header__actions .btn {
    max-width: 185px;
    width: 100%;
}



.btn:hover {
    opacity: 0.8;
}

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



.btn--arrow::after {
    content: "→";
    margin-left: 8px;
    font-size: 13px;
    background: #fff;
    border-radius: 60px;
    width: 25px;
    height: 25px;
    color: var(--color-primary);
    text-align: center;
    line-height: 25px;
}

.hamburger {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1100;
    /* メニュー(1001)より上に表示 */
}


.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: 0.3s;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

body.no-scroll {
    overflow: hidden;
}

/* JavaScript Triggered Classes */
.hamburger.is-active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background-color: #333;
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) rotate(-45deg);
    background-color: #333;
}

.mobile-menu.is-visible {
    transform: translateX(0);
}

@media (max-width: 1280px) {


    .header__nav,
    .header__actions {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

.page-header {
    padding-top: 150px;
    margin-bottom: 60px;
}

.breadcrumbs {
    font-size: 12px;
    margin-bottom: 20px;
}

@media (max-width:1280px) {
    .page-header {
        padding-top: 90px;
        margin-bottom: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* Hero */
.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    padding-top: var(--header-height);
    background-position: center;
    background-image: url(http://xs490808.xsrv.jp/wp/wp-content/themes/roamcamper/img/mainimg.jpg);
    /* Placeholder gradient */
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero__image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /* If we had an image it would go here. For now using CSS background on .hero */
}

/* Floating Elements */
.side-buttons {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
}

.side-lang {
    background: #1E4C30;
    color: #fff;
    padding: 55px 0 10px 0px;
    text-align: center;
    font-size: 13px;
    /* font-family: var(--font-en); */
    writing-mode: horizontal-tb;
    margin-bottom: 2px;
    position: relative;
    font-family: 'Manrope';
    letter-spacing: 1px;
}

.side-lang:before {
    content: '';
    top: 17px;
    left: 27%;
    display: block;
    width: 35px;
    height: 35px;
    background-image: url(http://xs490808.xsrv.jp/wp/wp-content/uploads/2026/01/globe.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
}

.side-contact {
    background: #1E4C30;
    color: #fff;
    padding: 25px 0 0px 0px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 16px;
    letter-spacing: 0.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    cursor: pointer;
    position: relative;
    width: 80px;
}

.side-contact a {
    color: #fff;
}

.side-contact:before {
    content: '';
    top: 12px;
    left: 37%;
    display: block;
    width: 22px;
    height: 22px;
    background-image: url(http://xs490808.xsrv.jp/wp/wp-content/uploads/2026/01/mail.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
}

@media (max-width: 768px) {
    .side-buttons {
        top: unset;
        bottom: -8%;
    }

    .side-lang {
        padding: 38px 0 5px 0px;
        font-size: 12px;
    }

    .side-contact {
        padding: 20px 0 0px 0px;
        font-size: 14px;
        height: 140px;
        width: 60px;
    }

    .side-contact:before {
        top: 12px;
        left: 32%;
        width: 22px;
        height: 22px;
    }

    .side-lang:before {
        top: 9px;
        left: 25%;
        width: 28px;
        height: 28px;
    }
}

/* Concept Section */
.concept {
    background-color: var(--color-primary);
    color: #fff;
    padding: 140px 20px;
    text-align: center;
}

.concept__title {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.concept__subtitle {
    font-size: 16px;
    color: #F0C988;
    margin-bottom: 80px;
    letter-spacing: 2px;
}

.concept__text {
    font-size: 18px;
    line-height: 45px;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .concept__title {
        font-size: 24px;
    }

    .concept__text {
        font-size: 16px;
        text-align: left;
    }
}

/* Menu Section */
.menu {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.menu__header {
    text-align: center;
    margin-bottom: 50px;
}

.menu__title {
    font-size: 129px;
    color: #e6e6e6;
    font-weight: 400;
    letter-spacing: 0px;
    position: relative;
    display: inline-block;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    max-width: 1500px;
    width: 100%;
}

.page__header .menu__title {
    color: #E6EBE7;
}

.greymain {
    background-color: #F5F5F5;
    padding-bottom: 80px;
}

.menu__title span {

    position: absolute;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    color: #333;
    font-family: var(--font-ja);
    letter-spacing: 5px;
}

.page__header span {
    color: #1E4C30;
}

/* Menu Card */
.menu-card {
    display: flex;
    margin-bottom: 120px;
    align-items: center;
    gap: 45px;
    padding-left: 3%;
    padding-right: 3%;
}

.cars-detail .menu-card {
    margin-bottom: 60px;
}

.card-left {
    justify-content: left;
}

.card-right {
    justify-content: right;
}

.menu-card:last-child {
    margin-bottom: 0;
}

/* Alternating Layout */
.menu-card:nth-child(even) {
    flex-direction: row-reverse;
}

.cars-detail .menu-card:nth-child(even) {
    flex-direction: row;
}

.menu-card__image {
    flex: 1;
    width: 100%;
    max-width: 860px;
}

.menu-card__content {
    flex: 1;
    max-width: 530px;
}

.menu-card__content .btn--menu {
    width: 170px;
    gap: 30px;
}

.menu-card__content .btn {
    padding-left: 20px;
    padding-top: 2px;
    padding-bottom: 3px;
}

.menu-card__head {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 15px;
    /* border-bottom: 1px solid #ddd; */
    padding-bottom: 10px;
    color: var(--color-primary);
    align-items: center;
}

.menu-card__head-en {
    font-size: 14px;
    color: #ccc;
    font-family: 'Manrope';
    letter-spacing: 1px;
    font-weight: 500;
    padding-top: 7px;
}

.menu-card__text {
    font-size: 16px;
    line-height: 35px;
    margin-bottom: 40px;
    color: #555;
    max-width: 530px;
    /* text-align: justify; */
}

.btn--menu {
    width: 200px;
}

@media (max-width: 1280px) {
    .cars-detail .menu-card {
        margin-bottom: 30px;
    }

    .menu-card {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 80px;
    }

    .menu-card:nth-child(even) {
        flex-direction: column;
    }

    .cars-detail .menu-card:nth-child(even) {
        flex-direction: column;
    }

    .menu-card__image,
    .menu-card__content {
        width: 100%;
        flex: auto;
    }

    .menu-card__text {
        text-align: left;
    }
}


/* Mobile Menu */
.mobile-menu {
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: #fff;
    z-index: 1001;
    /* ヘッダー(1000)より上に表示 */
    padding: 100px 0px 40px;
    /* 上部パディングを増やしてヘッダーと重ならないように */
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
}

.mobile-menu__nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mobile-menu__nav ul a {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    display: block;
}

.mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


/* Topics Section */
.topics__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.topic-item__link {
    display: block;
    transition: opacity 0.3s;
}

.topic-item__link:hover {
    opacity: 0.8;
}

.topic-item__image {
    margin-bottom: 40px;
}

.topic-item__image div {
    background-size: cover;
    background-position: center;
}

.topic-item__date {
    font-size: 14px;
    color: #888;
    font-family: 'Manrope';
    display: block;
    margin-bottom: 10px;
}

.topic-item__title {
    font-size: 17px;
    line-height: 35px;
    font-weight: 400;
    color: #333;
}

/* Access Section */
.access__map iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 1280px) {
    .topics__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


.hero__banner {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 300px;
    height: 100px;
    background: white;
    z-index: 10;
    border: 2px solid #e5a50a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b3c2f;
    font-weight: bold;
    font-family: sans-serif;
}


/* Topics Refactored */
.topics {
    background-color: #DFE5E1;
    padding: 50px 0 100px 0;
}

.topics__header {
    text-align: center;
    margin-bottom: 60px;
}

.topics__title {
    color: #C9D4CC;
    font-size: 129px;
    font-weight: 400;
    letter-spacing: 0px;
    position: relative;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
}

.topics__title span {
    content: "トピックス";
    position: absolute;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    color: #333;
    font-family: var(--font-ja);
    letter-spacing: 5px;
}

.topic-item__image-placeholder {
    background: #ddd;
    width: 100%;
    aspect-ratio: 3/2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
}

.topics__action {
    text-align: center;
    margin-top: 60px;
}

.btn--topics {
    width: 280px;
    height: 50px;
    border-radius: 9999px;
}

.topics__action .btn:after {
    right: 12px;
    position: absolute;
}

.topics__action .btn {
    position: relative;
    padding-top: 5px;
    padding-bottom: 5px;
}

/* Access Refactored */
.access {
    padding: 100px 0;
}

.access__header {
    text-align: center;
    margin-bottom: 60px;
}

.access__title {
    font-size: 129px;
    color: #e6e6e6;
    font-weight: 400;
    letter-spacing: 0px;
    position: relative;
    display: inline-block;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
}

.access__title span {

    position: absolute;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    color: #333;
    font-family: var(--font-ja);
    letter-spacing: 5px;
}

.access__info {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

.access__address {
    margin-bottom: 10px;
    font-size: 16px;
}

.access__tel {
    font-size: 42px;
    color: #1b3c2f;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-weight: 400;
    justify-content: center;
    gap: 10px;
}

.access__tel span {
    font-size: 24px;
}

.access__note {
    font-size: 16px;
}

.access__note span {
    font-weight: 700;
}


.access__map-placeholder {
    background: #eee;
    width: 100%;
    aspect-ratio: 16/7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: bold;
}

/* Contact Section */
.contact {
    background-color: var(--color-primary);
    padding: 50px 0 100px 0;
    text-align: center;
    position: relative;
    color: #fff;
}

.contact__header {
    margin-bottom: 60px;
}

.contact__title {
    font-size: 129px;
    color: #3E604B;
    font-weight: 400;
    letter-spacing: 0px;
    position: relative;
    display: inline-block;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
}

.contact__title span {
    position: absolute;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    color: #fff;
    font-family: var(--font-ja);
    letter-spacing: 5px;
}

.contact__grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.contact__card {
    background: #fff;
    width: 500px;
    height: 150px;
    padding-left: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    text-decoration: none;
    color: var(--color-text-base);
    position: relative;
    transition: opacity 0.3s;
}

.contact__card:hover {
    opacity: 0.9;
}

.contact__card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-primary);
    letter-spacing: 1px;
}

.contact__card-sub {
    font-size: 14px;
    color: #888;
    font-family: var(--font-en);
}

.contact__card-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--color-primary);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.contact__top-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #fff;
    cursor: pointer;
    max-width: 25px;
}

/* Footer Section */
.footer {
    background-color: #053819;
    /* Darker green */
    color: #fff;
    padding: 40px 0 20px;
    font-size: 14px;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
}

.footer__left {
    display: flex;
    gap: 40px;
    align-items: center;
}


.footer__address p {
    margin-bottom: 5px;
    line-height: 1.6;
}

.footer__right {
    display: flex;
    align-items: center;
}

.footer__social {
    display: flex;
    gap: 20px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    position: relative;
    margin-left: 25px;
}

.footer__social-link::before {
    position: absolute;
    content: '';
    top: 2px;
    left: -26px;
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(http://xs490808.xsrv.jp/wp/wp-content/uploads/2026/01/instaf.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.fline::before {
    position: absolute;
    content: '';
    top: 2px;
    left: -26px;
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(http://xs490808.xsrv.jp/wp/wp-content/uploads/2026/01/line.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.footer__bottom {
    display: flex;
    justify-content: flex-end;
}

.footer__logo {
    max-width: 125px;
}

.footer__links {
    display: flex;
    gap: 20px;
}

.footer__links a {
    color: #fff;
    font-size: 12px;
    opacity: 0.7;
}

@media(max-width:768px) {
    .menu__title {
        font-size: 80px;
    }

    .menu__title span {
        font-size: 20px;
    }



    .contact__title {
        font-size: 80px;

    }

    .contact__header {
        margin-bottom: 10px;
    }

    .contact__title span {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .contact {
        padding: 20px 0 80px 0;
    }

    .access__title {
        font-size: 80px;
    }

    .access__title span {
        font-size: 20px;
    }

    .access__header {
        margin-bottom: 10px;
    }

    .access {
        padding: 40px 0 80px 0;
    }

    .topics__title span {
        font-size: 20px;
    }

    .topics__title {
        font-size: 80px;
    }

    .topics__header {
        margin-bottom: 30px;
    }

    .topics {
        background-color: #DFE5E1;
        padding: 30px 0 80px 0;
    }

    .hero {
        position: relative;
        height: 40vh;
    }

    .concept {
        padding: 50px 0px;
    }

    .concept__subtitle {
        margin-bottom: 20px;
    }

    .menu__title {
        font-size: 80px;
        line-height: 70px;
    }

    .menu__title::after {
        font-size: 20px;
    }

    .menu__header {
        margin-bottom: 30px;
    }

    .menu {
        padding: 30px 0;
    }

    .menu-card__content {
        padding-left: 3%;
        padding-right: 3%;
        width: 94%;
    }

    .logo-placeholder {
        max-width: 65px;
    }

    .mobile-menu__actions .btn--primary {
        background-color: var(--color-primary);
        color: #fff;
        max-width: 250px;
    }
}

@media (max-width: 1280px) {
    .contact__grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .contact__card {
        width: 100%;
        max-width: 400px;
        height: 120px;
    }

    .footer__container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .footer__left {
        flex-direction: unset;
        align-items: flex-start;
        gap: 20px;
    }

    .footer__bottom {
        justify-content: center;
    }

}
.footer {
    padding:3%;

}

.cars-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 100px;
    margin-bottom: 100px;
}

/* 5番目 */
.cars-gallery__grid> :nth-child(5) {
    grid-column: 2;
}

/* 6番目 */
.cars-gallery__grid> :nth-child(6) {
    grid-column: 3;
}

@media (max-width: 768px) {
    .cars-gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 20px;
        margin-top: 0px;
        margin-bottom: 80px;
    }

}

.breadcrumbs {
    font-size: 12px;
    margin-bottom: 20px;
    color: #888;
    padding-left: 20px;
}

.breadcrumbs a {
    color: #888;
    text-decoration: none;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    row-gap: 60px;
    margin-bottom: 100px;
}

.option-item {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.option-item .img-placeholder {
    min-height: auto;
    height: auto;
    /* aspect-ratio is handled by inline style */
}

.option-item__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 30px;
}

.option-item__desc {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 5px;
}

.option-item__price {
    font-size: 15px;
    font-weight: 500;
    margin-top: auto;
    padding-top: 10px;
}

/* option-item の画像サイズ統一（トリミングなし） */
.option-item .img-placeholder {
    width: 100%;
    /* padding-topハックでアスペクト比4:3を強制確保 */
    padding-top: 75%;
    position: relative;
    height: 0;
    overflow: hidden;
}

.option-item .img-placeholder img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 1024px) {
    .option-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Price Page Styles */
.price-intro p {
    text-align: left;
    font-size: 17px;
    line-height: 2;
}

.price-intro {
    max-width: 960px;
    margin-bottom: 60px;
    line-height: 2;
}

.calendar-notes {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 80px;
}


@media (max-width: 768px) {
    .price-intro p {
        text-align: left;
    }
}

.price-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: stretch;
    margin-bottom: 80px;
}

.price-card {
    background: #fff;
    width: 380px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Subtle shadow for depth */
}

.calendar-placeholder img {
    max-width: 800px;
    margin-bottom: 20px;
}

.price-card__header {
    background: #1A4404;
    color: #fff;
    padding: 30px 20px;
    height: 140px;
    padding-bottom: 0;
}

.price-card__title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: 'Manrope';
}

.price-card__action {
    margin-top: auto;
}

.price-card__desc {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.price-card__body {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* Fills remaining height */
    justify-content: space-between;
}

.price-card__amount {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-en);
    /* Check number style */
    color: #1b3c2f;
    /* Or black/dark grey */
}

.price-card__suffix {
    font-size: 14px;
    color: #888;
    margin-left: 5px;
    font-weight: 400;
    vertical-align: 30%;
    font-family: var(--font-ja);
}

.price-card__features {
    margin-bottom: 20px;
    list-style: none;
    /* Custom bullets */
}

.price-card__action .btn {
    width: 94%;
    border-radius: 5px;
    position: relative;
}

.price-card__action .btn--arrow::after {
    position: absolute;
    right: 16px;
}

.price-card__features li {
    font-size: 13px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.price-card__features li::before {
    content: "●";
    /* Placeholder for check icon */
    color: #1b3c2f;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 10px;
    /* Adjust size */
}

/* Use FontAwesome or SVG if available, but staying CSS-only for now */
/* Unicode checkmark override */
.price-card__features li::before {
    content: "✔";
    background: #1b3c2f;
    color: #fff;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    top: 4px;
}


@media (max-width: 1024px) {
    .price-grid {
        flex-direction: column;
        align-items: center;
    }

    .price-card {
        width: 100%;
        max-width: 400px;
    }

    .price-card {
        width: 100%;
        max-width: 400px;
    }
}

/* Discount Offers Styles */
.discount-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
}

@media (max-width: 1024px) {
    .discount-grid {
        flex-direction: column;
        align-items: center;
    }
}

.discount-card {
    background: #fff;
    border: 2px dotted #2D5E49;
    border-radius: 10px;
    padding: 30px;
    width: 260px;
    position: relative;
    text-align: center;
}

.discount-card__badge {
    color: #053819;
    font-weight: 700;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 32px;
}

.discount-card__badge span {
    position: relative;
}

.discount-card:first-child .discount-card__badge span:before {
    content: '1';
    /* top: 17px; */
    left: -45px;
    display: block;
    width: 35px;
    height: 35px;
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 25px;
    position: absolute;
    top: 8px;
    background: #FF9318;
    color: #fff;
    border-radius: 5px;
    line-height: 34px;
    font-family: 'Manrope';
    font-weight: 500;
}

.discount-card:nth-child(2) .discount-card__badge span:before {
    content: '2';
    /* top: 17px; */
    left: -45px;
    display: block;
    width: 35px;
    height: 35px;
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 25px;
    position: absolute;
    top: 8px;
    background: #FF9318;
    color: #fff;
    border-radius: 5px;
    line-height: 34px;
    font-family: 'Manrope';
    font-weight: 500;
}

.discount-card:nth-child(3) .discount-card__badge span:before {
    content: '3';
    /* top: 17px; */
    left: -45px;
    display: block;
    width: 35px;
    height: 35px;
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 25px;
    position: absolute;
    top: 8px;
    background: #FF9318;
    color: #fff;
    border-radius: 5px;
    line-height: 34px;
    font-family: 'Manrope';
    font-weight: 500;
}

.discount-card__rate {
    font-size: 30px;
    color: #FF2E2F;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 10px;
    display: inline-block;
    font-family: 'Manrope';
}

.rate-large {
    font-size: 60px;
}

.discount-card__desc {
    font-size: 14px;
    line-height: 30px;
    text-align: left;
    margin-bottom: 10px;
}

.discount-card__list {
    text-align: left;
    font-size: 14px;
    /* color: #e5a50a; */
    max-width: fit-content;
    color: #000;
    letter-spacing: 1px;
    padding-left: 20px;
}

.discount-card__list li {
    position: relative;
    margin-bottom: 10px;
    position: relative;
}

.discount-card__list li:before {
    content: '';
    /* top: 17px; */
    left: -17px;
    display: block;
    width: 15px;
    height: 15px;
    background-image: url(http://xs490808.xsrv.jp/wp/wp-content/uploads/2026/01/tri.png);
    background-size: contain;
    background-repeat: no-repeat;
    /* font-size: 25px; */
    position: absolute;
    top: 5px;
    color: #fff;
    /* border-radius: 5px; */
    /* line-height: 34px; */
    /* font-family: 'Manrope'; */
    /* font-weight: 500; */
}


/* Guide Page Styles */
.guide-intro {
    max-width: 980px;
    text-align: left;
    margin-bottom: 60px;
    line-height: 2;
}

.guide-intro p {
    font-size: 18px;
    text-align: center;
}

@media (max-width: 768px) {
    .guide-intro p {
        text-align: left;
    }
}

.guide-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

@media (max-width: 1024px) {
    .guide-grid {
        flex-direction: column;
        align-items: center;
    }
}

.guide-step {
    background: #fff;
    border-radius: 45px;
    padding: 30px;
    max-width: 220px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 1024px) {
    .guide-step {
        width: 100%;
        max-width: 500px;
        /* Wider card on mobile */
    }

    .guide-step__header {
        align-self: center;
        /* Center badge on mobile? Image shows center but text left. Let's keep align-items flex-start for now as per plan, but visually check */
    }
}

.guide-step__header {
    width: 100%;
    display: flex;
    justify-content: center;
    /* Center the badge */
    margin-bottom: 20px;
}

.guide-step__badge {
    background: #1b3c2f;
    color: #fff;
    /* font-family: var(--font-en); */
    font-weight: 700;
    padding: 0px 25px;
    border-radius: 50px;
    font-size: 24px;
    font-family: 'Manrope';
}

.guide-step:first-child .guide-step__badge {
    background-color: #4E846D;
}

.guide-step:nth-child(2) .guide-step__badge {
    background-color: #346550;
}

.guide-step:nth-child(3) .guide-step__badge {
    background-color: #0E5C32;
}

.guide-step:nth-child(4) .guide-step__badge {
    background-color: #053819;
}

.guide-step__title {
    font-size: 22px;
    font-weight: 700;
    color: #1b3c2f;
    margin-bottom: 20px;
    width: 100%;
}

.guide-step__desc {
    font-size: 17px;
    line-height: 28px;
    color: #333;
    text-align: left;
}

/* Terms and Policy Styles */
.terms-list {
    list-style: none;
    padding: 0;
}

.terms-list li {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.terms-list li:last-child {
    margin-bottom: 0;
}



.policy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.policy-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.policy-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.policy-card__text {
    font-size: 13px;
    line-height: 1.8;
    color: #333;
}

@media (max-width: 768px) {
    .policy-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Styles */
.faq-item {
    background: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: background 0.3s ease;
}

.faq-question {
    background-color: #fff;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.faq-q {
    font-weight: 700;
    font-size: 18px;
    color: #1b3c2f;
    font-family: 'Manrope';
    margin-right: 20px;
}

.faq-text {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    flex: 1;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    margin-left: 20px;
}

.faq-toggle::before,
.faq-toggle::after {
    content: "";
    position: absolute;
    background-color: #333;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

/* Horizontal bar */
.faq-toggle::before {
    width: 14px;
    height: 2px;
}

/* Vertical bar */
.faq-toggle::after {
    width: 2px;
    height: 14px;
}

.faq-item.active .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}

.faq-item.active {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Large enough to hold content */
    opacity: 1;
}

.faq-answer-inner {
    padding: 0 30px 25px 70px;
    /* Aligned with question text */
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }

    .faq-answer-inner {
        padding: 20px 20px 20px 48px;
    }
}


.topics-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
}

.topics-item {
    display: flex;
    flex-direction: column;
}

.topics-item__img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.topics-item__date {
    display: block;
    font-size: 14px;
    font-family: var(--font-en);
    color: #999;
    margin-bottom: 10px;
    font-family: 'Manrope';
}

.topics-item__title {
    font-size: 16px;
    font-weight: 500;
    line-height: 35px;
    color: #1b3c2f;
}

.topics-item__img .img-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    /* ← 一覧で揃えたい比率（3/2, 16/9 でもOK） */
    overflow: hidden;
    position: relative;
}

.topics-item__img .img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 重要 */
    object-position: center;
    display: block;
}

@media (max-width: 1024px) {
    .topics-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .topics-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Article Page (Topics Detail) */
.article {
    padding-bottom: 100px;
}

.article__header {
    margin-bottom: 40px;
}

.article__date {
    display: block;
    font-size: 16px;
    color: #999;
    margin-bottom: 10px;
    font-family: 'Manrope';
}

.article__title {
    font-size: 34px;
    font-weight: 400;
    line-height: 50px;
    color: #1b3c2f;
}

.article__thumb {
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .article__thumb {
        margin-bottom: 25px;
        aspect-ratio: 3 / 2;
    }

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

.article__body {
    font-size: 16px;
    line-height: 2;
    color: #333;
}

.article__body p {
    margin-bottom: 30px;
}


.article__body h2 {
    font-size: 22px;
    font-weight: 400;
    color: #000;
    margin: 40px 0 20px;
    line-height: 50px;
}

.article__body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1b3c2f;
    margin: 40px 0 20px;
}

.article__body ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 30px;
}

.article__body li {
    margin-bottom: 10px;
}

.btn--back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1b3c2f;
    color: #fff;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.btn--back:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .article__title {
        font-size: 20px;
        line-height: 35px;
    }

    .article__body h2 {
        font-size: 18px;
        margin: 40px 0 20px;
        padding-bottom: 10px;
    }

    .article__body h3 {
        font-size: 16px;
    }
}

/* --- Contact Page Rectification --- */
.contact-header {
    padding-top: 140px;
    margin-bottom: 80px;
    text-align: center;
}

.contact-title-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.contact-title-en {
    font-size: 120px;
    font-family: var(--font-en);
    font-weight: 700;
    color: #f2f2f2;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: capitalize;
}

.contact-title-ja {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: 700;
    color: #1b3c2f;
    white-space: nowrap;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto 120px;
}

.contact-form__item {
    margin-bottom: 40px;
}

.contact-form__label {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    margin-bottom: 15px;
}

.contact-form__required {
    background-color: #e63b3b;
    color: #fff;
    font-size: 11px;
    padding: 2px 16px 3px 16px;
    border-radius: 23px;
    font-weight: 700;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form__input {
    width: 95%;
}

.contact-form__textarea {
    width: 95%;
}

@media(max-width:768px) {
    .contact-form__input {
        width: 89%;
    }

    .contact-form__textarea {
        width: 89%;
    }
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: #1b3c2f;
    box-shadow: 0 0 0 4px rgba(27, 60, 47, 0.05);
}

.contact-form__textarea {
    height: 240px;
    resize: none;
    line-height: 1.6;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}

.reserve-input::after {
    top: 65%;
}

.contact-form__select {
    appearance: none;
    cursor: pointer;
}

.contact-form__consent {
    text-align: center;
    margin: 60px 0 40px;
}

.contact-form__checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
}

.contact-form__checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #1b3c2f;
}

.contact-form__submit {
    text-align: center;
}

.contact-form__btn {
    background-color: #05331a;
    color: #fff;
    width: 100%;
    max-width: 400px;
    padding: 22px;
    border-radius: 8px;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.contact-form__btn:hover {
    background-color: #0c4a2a;
    transform: translateY(-2px);
}

.contact-form__btn:active {
    transform: translateY(0);
}

@media (max-width: 1280px) {
    .contact-title-en {
        font-size: 80px;
    }

    .contact-title-ja {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .contact-header {
        padding-top: 100px;
        margin-bottom: 60px;
    }

    .contact-title-en {
        font-size: 60px;
    }

    .contact-title-ja {
        font-size: 20px;
    }

    .contact-form__btn {
        max-width: 100%;
    }
}

/* --- Reservation Form Specific Styles --- */
.reserve-header {
    background-color: #fff;
}

.reserve-title-en {
    color: #f2f2f2;
}

.reserve-intro {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 60px;
    text-align: left;
}

.reserve-form__grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.reserve-form__grid-2 .contact-form__input {
    width: 90%;
}

.reserve-form__grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.reserve-form__sub-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.date-wrapper,
.time-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.date-wrapper::after,
.time-wrapper::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0.6;
}

.date-wrapper::after {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>');
}

.time-wrapper::after {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline></svg>');
}

/* Hide default icons for cleaner look */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    cursor: pointer;
}

.reserve-form__radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reserve-form__radio-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #333;
}

.reserve-form__radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: #1b3c2f;
}

.reserve-form__note {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.reserve-form__note-inline {
    font-size: 12px;
    color: #666;
    font-weight: 400;
    margin-left: 8px;
}

.reserve-form__checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.reserve-form__checkbox-label-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.reserve-form__checkbox-label-inline input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #1b3c2f;
}

.contact-form__optional {
    background-color: #ccc;
    color: #fff;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 700;
}

.mt-10 {
    margin-top: 10px;
}

@media (max-width: 768px) {

    .reserve-form__grid-2,
    .reserve-form__grid-3 {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .reserve-form__checkbox-grid {
        grid-template-columns: 1fr;
    }

    .reserve-intro {
        font-size: 14px;
        margin-bottom: 40px;
    }
}

/* --- Terms of Use Rectification --- */
.terms-content {
    padding: 80px 0 120px;
}



.terms-intro {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 60px;
}

.terms-article {
    margin-bottom: 50px;
}

.terms-article__title {
    font-size: 20px;
    font-weight: 700;
    color: #1b3c2f;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #1b3c2f;
}

.terms-list {
    list-style: none;
    counter-reset: terms-counter;
}

.terms-list>li {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    list-style: none;
    text-indent: 1px;
    list-style-position: inside;
}

.terms-sub-list {
    list-style: disc;
    margin: 15px 0 15px 1.5em;
    color: #666;
}

.terms-sub-list li {
    margin-bottom: 10px;
}


.terms-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.terms-footer {
    font-size: 16px;
}

@media (max-width: 768px) {
    .terms-content {
        padding: 60px 0 80px;
    }

    .terms-article__title {
        font-size: 18px;
    }

    .terms-list>li,
    .terms-box p,
    .terms-intro {
        font-size: 14px;
    }

    .terms-article {
        margin-bottom: 40px;
    }
}



.privacy-box {
    padding-bottom: 80px;
}

.privacy-intro {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 60px;
}

.privacy-section {
    margin-bottom: 50px;
}

.privacy-section__title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.privacy-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.privacy-list li {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 8px;
}

.privacy-contact {
    margin-top: 20px;
    padding-left: 0;
}

.privacy-contact p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 5px;
    color: #333;
}

.privacy-notice {
    font-size: 14px;
    line-height: 1.8;
    color: #999;
    margin-top: 40px;
}

.privacy-version {
    font-size: 14px;
    color: #999;
    margin-top: 40px;
}

@media (max-width: 768px) {


    .privacy-section__title {
        font-size: 16px;
    }

    .privacy-intro,
    .privacy-section p,
    .privacy-list li,
    .privacy-contact p {
        font-size: 14px;
    }

    .privacy-notice,
    .privacy-version {
        font-size: 12px;
    }
}


div.wpcf7-response-output {
    text-align: center !important;
    padding: 18px;

}

.wpcf7-spinner {
    display: block !important;
    margin: 20px auto !important;
}

span.wpcf7-list-item {
    display: block;
    margin: 0 0 10px 0em;
}

/* スマホのみ */
@media (max-width: 768px) {
    .contact-form__label {
        flex-wrap: wrap;
    }

    .reserve-form__note-inline {
        display: block;
        width: 100%;
        margin-top: 4px;
        font-size: 0.85em;
    }
}

/* Pagination */
.pagination {
    margin-top: 60px;
    text-align: center;
}

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

.nav-links .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s;
}

.nav-links .page-numbers.current {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.nav-links .page-numbers:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    opacity: 0.8;
}

.nav-links .next,
.nav-links .prev {
    width: auto;
    padding: 0 15px;
    font-weight: 700;
}

/* Scroll Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .animate-up {
        transform: translateY(15px);
        transition-duration: 0.5s;
    }
}

.animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-delay-100 {
    transition-delay: 0.1s;
}

.animate-delay-200 {
    transition-delay: 0.2s;
}

.animate-delay-300 {
    transition-delay: 0.3s;
}

.animate-delay-400 {
    transition-delay: 0.4s;
}

.animate-delay-500 {
    transition-delay: 0.5s;
}

/* Mobile Optimization: Force vertical animation on small screens */
@media (max-width: 768px) {

    .animate-left,
    .animate-right {
        transform: translateY(30px);
    }

    .animate-left.is-visible,
    .animate-right.is-visible {
        transform: translateY(0);
    }
}

/* Car Lineup Section */
.cars-lineup {
    margin-bottom: 80px;
}

.lineup__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.lineup-item {
    display: block;
    text-decoration: none;
    color: #333;
    transition: opacity 0.3s;
}

.lineup-item:hover {
    opacity: 0.8;
}

.lineup-item__image {
    margin-bottom: 20px;
    width: 100%;
}

.lineup-item__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 3/2;
}

.lineup-item__content {
    text-align: center;
}

.lineup-item__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-primary);
    font-family: var(--font-en);
}

.lineup-item__title span {
    display: block;
    font-size: 14px;
    color: #888;
    margin-top: 5px;
    font-family: var(--font-ja);
    font-weight: normal;
}

.lineup-item__text {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left;
}

.btn--lineup {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s;
}

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

/* Car Section Header */
.car-section__header {
    margin-bottom: 40px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-top: 60px;
}

.car-section__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-en);
}

.car-section__title span {
    font-size: 16px;
    color: #666;
    margin-left: 15px;
    font-family: var(--font-ja);
}

@media (max-width: 768px) {
    .lineup__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.cp {
    max-width: 1000px;
    display: block;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .cp {
        font-size: 12px;
    }
}

/* Fix topic image scaling */
.topic-item__image-wrap {
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.topic-item__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 初期状態（送信前）ではエラーメッセージを隠す */
.wpcf7-form.init .wpcf7-not-valid-tip {
    display: none !important;
}


.reserve-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .reserve-options-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .reserve-options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}


.price-animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.39, 0.575, 0.565, 1),
                transform 0.8s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.price-animate-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.price-delay-100 { transition-delay: 0.1s; }
.price-delay-200 { transition-delay: 0.2s; }
.price-delay-300 { transition-delay: 0.3s; }

.price-card__amount-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 5px 15px;
    align-items: baseline;
    margin-bottom: 20px;
}

.price-grid-label {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    font-family: var(--font-ja);
    grid-column: 1;
}

.price-grid-value {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    font-family: 'Manrope', sans-serif;
    text-align: right;
    grid-column: 2;
}

.price-grid-unit {
    font-size: 14px;
    font-weight: normal;
    color: #666;
    font-family: var(--font-ja);
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    transform: translateY(3px);
}

.price-grid-unit.single-row {
    grid-row: 1;
    align-self: baseline;
    transform: none;
}

.discount-offers{

    margin-bottom: 80px;
}








    /* 
       Scoped Animations for Contact Page 
    */

    /* Slide-up animation base class */
    .contact-animate-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.8s cubic-bezier(0.39, 0.575, 0.565, 1);
    }

    /* Active state when visible */
    .contact-animate-up.is-visible {
        opacity: 1;
        transform: translateY(0);
    }




    /* Scoped Animations for Guide Page */
    .guide-animate-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.8s cubic-bezier(0.39, 0.575, 0.565, 1);
    }

    .guide-animate-up.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .guide-delay-100 { transition-delay: 0.1s; }
    .guide-delay-200 { transition-delay: 0.2s; }

    .terms-box {
        background: #fff;
        padding: 60px;
        border-radius: 30px;
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .terms-list {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .terms-list li {
        position: relative;
        padding-left: 35px;
        margin-bottom: 20px;
        font-size: 15px;
        line-height: 1.8;
        font-weight: 500;
    }

    .terms-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 5px;
        width: 20px;
        height: 20px;
        background-color: #1E4C30;
        border-radius: 50%;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
        background-size: 60%;
        background-position: center;
        background-repeat: no-repeat;
    }

    @media (max-width: 768px) {
        .terms-box { padding: 30px 20px; }
        .terms-list li { font-size: 14px; }
    }






    /* 
       Scoped Animations for FAQ Page 
    */

    /* Slide-up animation base class */
    .faq-animate-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.8s cubic-bezier(0.39, 0.575, 0.565, 1);
    }

    /* Active state when visible */
    .faq-animate-up.is-visible {
        opacity: 1;
        transform: translateY(0);
    }






    /*
       Scoped Animations for Option Page 
       Designed to mimic https://roamcamper.com/rental-option
       Updated: Animate the entire grid as a whole
    */

    /* Generic animation class for slide-up effect */
    .opt-animate-up {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.8s cubic-bezier(0.39, 0.575, 0.565, 1),
            transform 0.8s cubic-bezier(0.39, 0.575, 0.565, 1);
    }

    /* Active state when scrolled into view */
    .opt-animate-up.opt-is-visible {
        opacity: 1;
        transform: translateY(0);
    }





    /* 
       Scoped Animations for Reserve Page 
    */

    /* Slide-up animation base class */
    .reserve-animate-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.8s cubic-bezier(0.39, 0.575, 0.565, 1);
    }

    /* Active state when visible */
    .reserve-animate-up.is-visible {
        opacity: 1;
        transform: translateY(0);
    }











