@charset "utf-8";

:root {
    --color-accent: #B11B1B;
    --color-accent02: #573903;
    --color-accent03: #3c5d01;

    --color-bg01: #F5E8BF;
    --color-bg02: #F9F2DB;
    --color-bg03: #FAFAF8;
    --color-bg04: #E0B973;

    --hover-speed: .3s;

    --font-serif: "Noto Serif JP", serif;
    --font-sans: "Noto Sans JP", sans-serif;
}

/* 共通 */
*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 1.28vw, 18px);
    color: #333;
    line-height: 1.7;
    letter-spacing: 0.025em;
    background-color: #fff;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.heading_m {
    font-weight: bold;
    font-size: clamp(24px, 2.5vw, 40px);
    font-family: var(--font-serif);
    color: var(--color-accent02);
}

.heading_text {
    text-align: justify;
    max-width: 800px;
    margin: 0 auto;
}

.btn {
    padding: 12px 30px;
    border: 2px solid var(--color-accent02);
    border-radius: 30px;
    background: #fff;
    transition: var(--hover-speed);
    color: var(--color-accent02);
    font-weight: 600;
    display: block;
    width: max-content;
}

.btn:hover {
    transition: var(--hover-speed);
    background: var(--color-accent02);
    color: #fff;
}

.sp-none {
    display: block;
}

.pc-none {
    display: none;
}

/* header */
/* ============================================ */
.header-logo img {
    width: 200px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    gap: 5px;
    position: fixed;
    z-index: 90;
    width: 100%;
}

.nav_header-pc .nav_header {
    display: flex;
    align-items: center;
    font-size: clamp(15px, 1.28vw, 18px);
    gap: 20px;
}

.nav_header-pc .nav_header .nav_list {
    background: #fff;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 15px 40px;
    border-radius: 50px;
    min-height: 60px;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
    transition: var(--hover-speed);
}

.nav_header-pc .nav_header .nav_list a:hover {
    color: var(--color-accent);
    transition: var(--hover-speed);
}

.nav_header-pc .nav_header .nav_btn a {
    background: var(--color-accent);
    padding: 10px 15px;
    border-radius: 50px;
    min-height: 60px;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #fff;
    transition: var(--hover-speed);
}

.nav_header-pc .nav_header .nav_btn a:hover {
    transition: var(--hover-speed);
    background-color: #222;
}

.nav_header-pc .nav_header .nav_btn .image {
    background: #fff;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
}

/* sp */
.hamburger_area,
.nav_header-sp {
    display: none;
}


/* footer */
/* ============================================ */
.footer-menu {
    background: var(--color-bg03);
    padding: 50px 0;
}

.footer-menu .container {
    max-width: 1500px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-menu .footer-info {
    font-size: 15px;
}

.footer-logo {
    display: block;
    margin-bottom: 20px;
    width: 200px;
}

.footer-info_list {
    margin-bottom: 15px;
}

.nav_footer .nav_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px 10px;
}

.copylight {
    background: var(--color-accent03);
    padding: 8px;
    font-size: 12px;
    color: #fff;
    text-align: center;
}

/* 追従ボタン */
/* ============================================ */
.area_floating-btn {
    display: none;
}

/* ============================================ */
/* mv */

.mv_area {
    aspect-ratio: 1920 / 1000;
    background-size: cover;
    width: 100%;
    min-height: 750px;
    display: block;
    position: relative;
}

.mv_content {
    height: 100%;
    width: 100%;
}

.catch-copy {
    position: absolute;
    z-index: 3;
    top: 15%;
    left: 50%;
    transform: translate(-50%, 5%);
    font-family: var(--font-serif);
    color: #fff;
    font-weight: bold;
    writing-mode: vertical-rl;
    font-size: clamp(24px, 2.77vw, 40px);
    letter-spacing: .25em;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.9);
}

.catch-copy span {
    display: block;
}

.catch-copy .left {
    padding: 1.5em .3em 0 0;
}

.mv_area .info_list {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    position: absolute;
    z-index: 3;
    bottom: 30px;
    right: 30px;
    padding: 20px 30px;
    border-radius: 20px;
    font-family: var(--font-serif);
    font-weight: bold;
}

/* 施設紹介 */
.facility_section {
    position: relative;
    background: var(--color-bg03);
    padding: 100px 0;
}

.facility_section::before {
    content: "施設紹介";
    writing-mode: vertical-rl;
    font-family: var(--font-serif);
    font-size: clamp(20px, 5.77vw, 100px);
    color: #dddddd;
    position: absolute;
    left: 0px;
    top: 20px;
    line-height: 1;
    letter-spacing: .2em;
}

.heading_area {
    max-width: 950px;
    margin: 0 auto 60px;
}

.heading_area img {
    display: block;
    margin: 0 auto 10px;
}

.heading_area .heading_m {
    margin-bottom: 20px;
    text-align: center;
}

.scroll-side {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    /* スナップ効果（任意） */
    -webkit-overflow-scrolling: touch;
    /* iOSスムーズスクロール */
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: #c7b588 transparent;
    /* Firefox */
}

/* Chrome, Edge, Safari 対応 */
.scroll-side::-webkit-scrollbar {
    height: 8px;
    /* 横スクロールバーの高さ */
}

.scroll-side::-webkit-scrollbar-track {
    background: transparent;
}

.scroll-side::-webkit-scrollbar-thumb {
    background-color: #c7b588;
    /* ←変更したい色に */
    border-radius: 10px;
}

.overview_list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 60px;
}

.overview_item {
    border: 2px solid #bbbbbb;
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    flex: 0 0 auto;
    /* 横幅固定で縮まない */
    min-width: 280px;
    /* スマホでの表示幅調整、必要に応じて変更 */
    scroll-snap-align: start;
    /* スナップ先 */
}

.overview_item p {
    margin-bottom: 20px;
    font-weight: 500;
}

.overview_item .btn {
    background: var(--color-bg02);
    display: block;
    width: 90%;
    margin: 0 auto;
    transition: var(--hover-speed);
}

.overview_item .btn:hover {
    transition: var(--hover-speed);
    background: var(--color-accent02);
}

.news_area {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 40px 20px;
}

.news_area .heading_m {
    text-align: center;
    margin-bottom: 20px;
}

.top-news_list {
    width: 90%;
    margin: 0 auto 30px;
}

.top-news_list .news_item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px dotted var(--color-accent02);
    padding: 15px 0;
}

.top-news_list .layout2 {
    display: grid;
    grid-template-columns: 145px 1fr;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.top-news_list .category {
    background: var(--color-accent03);
    color: #fff;
    border-radius: 30px;
    padding: 3px 20px;
    font-size: 13px;
}

.news_area .btn {
    display: block;
    width: 220px;
    text-align: center;
    margin: 0 auto;
}

.boar-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: clamp(100px, 18.30vw, 350px);
}

.product-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: clamp(60px, 14.44vw, 280px);
}

/* ハイライト */
.highlight_section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--color-bg02);
}

.highlight-left img {
    object-fit: cover;
    aspect-ratio: 2/3;
    min-height: 600px;
}

.highlight-right {
    display: grid;
    place-content: center;
    padding: 20px 0;
    text-align: center;
}

.highlight-right .heading_m {
    margin-bottom: 30px;
}

.highlight-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 0 auto 40px;
    max-width: 700px;
    width: 90%;
}

.highlight-right .btn {
    width: 220px;
    margin: 0 auto;
}

/* アクセス・営業時間 */
.access_section {
    background: var(--color-bg03);
    padding: 100px 0;
}

.info_area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.closed-info {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
}

.closed-info.scroll-side {
    display: block;
}

.closed-info .heading {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

.closed-info .iframe_containar {
    aspect-ratio: 4 / 3;
    display: block;
}

.access-map iframe {
    aspect-ratio: 7/6;
    width: 100%;
    border-radius: 10px;
}

.access-map .map-note {
    font-size: 13px;
    text-align: end;
}

.access-details {
    background: var(--color-accent03);
    color: #fff;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.access-description {
    font-family: var(--font-serif);
    display: grid;
    place-content: center;
    font-weight: 500;
    gap: 15px;
}

.access-details img {
    border-radius: 0 20px 20px 0;
    aspect-ratio: 5/3;
}

/* 道の駅みとみ×7inchCAMP */
.camp_section {
    background: var(--color-bg03);
}

.camp_section .camp_bg {
    background: var(--color-bg01);
    border-radius: 8vw 8vw 0 0;
    padding: 100px 0;
    position: relative;
}

.camp-image_01 {
    position: absolute;
    top: 5vw;
    left: 2vw;
    width: clamp(50px, 20.30vw, 450px);
}

.camp-image_02 {
    position: absolute;
    top: 5vw;
    right: 2vw;
    width: clamp(50px, 20.30vw, 450px);
}

.camp_section .logo {
    margin-bottom: 30px;
}

.camp_section .images_area {
    margin-bottom: 50px;
}

.camp_section .btn {
    margin: 0 auto;
}

/* 下層ページ共通 */
/* ============================================ */
.sv_area {
    position: relative;
}

.sv_area .sv_heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%);
    color: #fff;
    font-family: var(--font-serif);
    font-weight: bold;
    letter-spacing: .1em;
    line-height: 1.2;
    font-size: clamp(30px, 5.14vw, 80px);
}

.sv_image img {
    border-radius: 0 0 5vw 5vw;
    min-height: 30vh;
    object-fit: cover;
}

/* 施設紹介 */
/* ============================================ */
.facility-page .sv_area {
    background: var(--color-bg01);
}

.facility-info_section {
    background: var(--color-bg01);
    padding: 100px 0;
}

.facility-info_section .image img {
    border-radius: 2vw;
}

.facility-info_section .btn {
    margin: 30px auto 0;
}

/* 売店 */
.shop_section {
    background-color: var(--color-bg01);
}

.shop_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

.shop_section .shop-image {
    max-width: 800px;
    object-fit: cover;
}

.shop_section .shop-image img {
    border-radius: 0 2vw 2vw 0;
}

.shop_section .shop-info {
    max-width: 650px;
    width: 90%;
    position: sticky;
    top: 90px;
}

.shop_section .heading_m {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.shop_section .heading_m::before {
    content: "";
    display: block;
    background: url(../img/facility/icon_facility-shop.svg);
    aspect-ratio: 1/1;
    width: clamp(24px, 2.5vw, 40px);
    background-size: contain;
    background-repeat: no-repeat;
}

.shop_section .heading_text {
    margin-bottom: 4vw;
}

.shop-table {
    background: #fff;
    overflow: hidden;
}

.shop_section .shop-table .shop-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    border-top: 1px solid var(--color-bg01);
}

.shop-table .shop-row:first-child {
    border-top: none;
}

.shop-table .shop-label {
    background-color: var(--color-accent03);
    color: #fff;
    padding: 20px;
    width: 150px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-content {
    padding: 20px;
    background-color: #fff;
    flex: 1;
}

/* おすすめ商品 */
.recommend-section {
    background: var(--color-bg01);
    padding: 100px 0;
    overflow: hidden;
}

.bg_recommend {
    background: url("../img/facility/bg_recommend.svg") no-repeat top left;
    background-size: contain;
}

.recommend-section .heading_area img {
    max-width: 200px;
}

.recommend-slider {
    padding-bottom: 20px;
}

.recommend-slider .slider-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px 20px 40px;
    margin: 40px 10px 0;
    text-align: left;
    position: relative;
}

.slick-track {
    display: flex !important;
}

.slick-slide {
    height: auto !important;
}

.recommend-img {
    border-radius: 5px;
}

.recommend-label {
    position: absolute;
    top: -40px;
    left: -10px;
    width: 90px;
    height: 90px;

}

.recommend-title-box {
    font-weight: 600;
    margin-top: 30px;
    border-bottom: 2px dotted;
    padding-bottom: 15px;
}

.recommend-text {
    font-size: 14px;
    margin-top: 15px;
}

/* ドット */
.slick-dots li {
    margin: 0px 3px;
}

.slick-dots li button:before {
    font-size: 10px;
    color: var(--color-accent02);
}

.slick-dots li.slick-active button:before {
    color: var(--color-accent02);
}

/* 農産物販売 */
.farm-stand_section {
    background-color: var(--color-bg03);
    padding: 100px 0;
}

.farm-stand_section .shop-image {
    max-width: 800px;
    object-fit: cover;
    margin-left: auto;
}

.farm-stand_section .shop-image img {
    border-radius: 2vw 0 0 2vw;
}

.farm-stand_section .shop-info {
    max-width: 650px;
    width: 90%;
    margin-left: auto;
    position: sticky;
    top: 90px;
}

.farm-stand_section .heading_m {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.farm-stand_section .heading_m::before {
    content: "";
    display: block;
    background: url(../img/facility/icon_facility-farm.svg);
    aspect-ratio: 1/1;
    width: clamp(24px, 2.5vw, 40px);
    background-size: contain;
    background-repeat: no-repeat;
}

.farm-stand_section .heading_text {
    margin-bottom: 4vw;
}

.farm-stand_section .shop-table .shop-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    border-top: 1px solid #eeeeee;
}

.farm-stand_section .shop-table .shop-row:first-child {
    border-top: none;
}

/* オリジナル商品 */
.original-item_section {
    background: var(--color-bg03);
    padding: 0 0 50px;
    position: relative;
    overflow: hidden;
}

.bg_original-item {
    background: url("../img/facility/bg_original-item.svg") no-repeat center;
    background-size: cover;
    aspect-ratio: 384/349;
}

.original-item_section .image_containar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: var(--font-serif);
    font-weight: bold;
    font-size: clamp(16px, 1.64vw, 23px);
    color: var(--color-accent02);
}

.original-item_section .heading_area img {
    max-width: 200px;
    margin: 0 0 10px;
}

.original-item_area {
    max-width: 1500px;
    width: 90%;
    margin: 0 auto;
}

.original-item_area .original-item_text {
    background: #527416;
    width: fit-content;
    text-align: center;
    color: #fff;
    padding: 20px 30px;
    border-radius: 50px;
    margin: 0 auto 50px;
    font-size: clamp(16px, 2.14vw, 30px);
    font-weight: 500;
}

/* 食堂 */
.restaurant_section {
    background: url("../img/facility/bg_restaurant.jpg") no-repeat center;
    background-size: cover;
    aspect-ratio: 16/9;
    align-items: flex-start;
}

.restaurant_inner {
    background: rgba(255, 255, 255, 0.7);
    padding: 20px 30px;
    border-radius: 0 0 3vw 3vw;
    max-width: 500px;
    min-height: 420px;
    display: grid;
    place-content: center;
    position: sticky;
    top: 100px;
}

.restaurant_section .heading_m {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.restaurant_section .heading_m::before {
    content: "";
    display: block;
    background: url(../img/facility/icon_facility-restaurant.svg);
    aspect-ratio: 1/1;
    width: clamp(24px, 2.5vw, 40px);
    background-size: contain;
    background-repeat: no-repeat;
}

.restaurant_section .shop-table {
    border-radius: 40px;
    margin-top: 30px;
}

.restaurant_section .shop-row {
    display: flex;
}

.restaurant_section .shop-label {
    width: 120px;
}

/* メニュー */
.menu_section {
    background: var(--color-bg01);
    padding: 100px 0;
}

.menu_section .image_containar img {
    width: 200px;
}

.menu_section .bg_menu {
    background: url(../img/facility/bg_menu.svg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 1920/2800;
}

.menu_section .recommend-label {
    top: -40px;
    left: -20px;
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
    gap: 60px 30px;
    margin-bottom: 60px;
}

.menu-item {
    position: relative;
}

.menu-item img {
    border-radius: 8px;
    margin-bottom: 20px;
}

.menu-item-title {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-weight: 500;
    border-bottom: 2px dotted;
}

.menu-item-text {
    font-size: 14px;
}

.menu_section .btn {
    margin: 0 auto;
}

/* 7inchキャンプ */
.facility-camp_section {
    background-color: var(--color-bg02);
    padding: 130px 0 0;
    position: relative;
}

.facility-camp_section .bg_paw {
    position: absolute;
    top: -8vw;
    right: 12vw;
    width: clamp(250px, 50vw, 800px);
}

.facility-camp_section .shop_container {
    margin-bottom: 30px;
}

.facility-camp_section .shop-image {
    max-width: 800px;
    object-fit: cover;
    margin-left: auto;
}

.facility-camp_section .shop-image img {
    border-radius: 2vw 0 0 2vw;
}

.facility-camp_section .shop-info {
    max-width: 650px;
    width: 90%;
    margin-left: auto;
    position: sticky;
    top: 90px;
}

.facility-camp_section .layout2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.facility-camp_section .layout2 img {
    width: 100px;
}

.facility-camp_section .heading_m {
    display: flex;
    align-items: center;
    gap: 10px;
}

.facility-camp_section .heading_text {
    margin-bottom: 4vw;
}

.facility-camp_section .shop-table .shop-row {
    border-top: 1px solid var(--color-bg02);
    display: grid;
    grid-template-columns: 150px 1fr;
}

.facility-camp_section .shop-table .shop-row:first-child {
    border-top: none;
}

.facility-camp_section .shop-content a {
    overflow-wrap: anywhere;
}

.facility-camp_section .btn {
    margin: 60px auto 0;
}

/* 周辺観光 */
/* ============================================ */
.tourism-page .sv_area {
    background: var(--color-bg03);
}

.tourism_section {
    background: var(--color-bg03);
    padding: 100px 0;
    border-bottom: 1px solid #ddd;
}

.bg_tourism_area {
    background-image: url(../img/tourism/bg_tourism_top.svg), url(../img/tourism/bg_tourism_bottom.svg);
    background-repeat: no-repeat, no-repeat;
    background-size: 50vw, 50vw;
    background-position: left top, right bottom;
    object-fit: cover;
}

.tourism_section .tourism-list {
    display: grid;
    gap: 100px;
    padding: 100px 0;
}

.tourism_section .tourism-item {
    display: flex;
    gap: 50px;
}

.tourism_section .info {
    flex: 2;
}

.tourism_section .tourism-ttl {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px dotted var(--color-accent02);
}

.tourism_section .tourism-ttl .en {
    font-size: clamp(12px, 1.14vw, 16px);
    display: block;
}

.tourism_section .text {
    text-align: justify;
}

.tourism_section .text .attention {
    color: var(--color-accent);
    display: block;
    font-size: 14px;
    margin-top: 10px;
}

.tourism_section .btn {
    margin: 30px auto 0;
}

.tourism_section .image {
    flex: 2.5;
}

.tourism_section .image img {
    border-radius: 2vw;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}

.tourism-slider .slider-item {
    padding: 10px;
}

.tourism-slider img {
    border-radius: 10px;
}

.tourism-slider p {
    text-align: center;
    margin-top: 10px;
}

.tourism-slider .slick-next {
    right: 20px;
    z-index: 2;
}

.tourism-slider .slick-prev {
    left: 20px;
    z-index: 2;
}

/* 会社概要 */
/* ============================================ */
.company-page .sv_area {
    background: var(--color-bg02);
}

.company_section {
    background: var(--color-bg02);
    padding: 100px 0;
}

.company_section .container {
    background: #fff;
    padding: 100px 0;
    border-radius: 2vw;
}

.company_section .container-inner {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
}

.company_section .container-inner .image {
    width: 180px;
    margin-bottom: 20px;
}

.outline_table {
    width: 100%;
    margin-bottom: 80px;
}

.outline_table th,
.outline_table td {
    border: 1px solid var(--color-accent02);
    padding: 15px;
}

.outline_table th {
    background-color: var(--color-bg02);
    width: 20%;
}

.outline_table td {
    background-color: var(--color-bg03);
}

.outline_table .open_list {
    display: grid;
    gap: 20px;
}

.company_section .access-map {
    margin-bottom: 80px;
}

.company_section .access-map iframe {
    aspect-ratio: 8/5;
}

.contact-tel {
    background: url(../img/company/bg_contact.jpg) no-repeat center;
    background-size: cover;
    aspect-ratio: 8/3;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr;
    place-content: center;
}

.contact-tel_inner {
    background: #fff;
    width: 90%;
    margin: 20px auto;
    border-radius: 10px;
    font-family: var(--font-serif);
    font-weight: bold;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
    justify-content: center;
    aspect-ratio: 5/1;
    padding: 20px;
    text-align: center;
    color: var(--color-accent03);
}

.contact-tel_inner a {
    font-size: clamp(25px, 2.14vw, 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-tel_inner a img {
    width: clamp(25px, 2.14vw, 40px);
}

/* キャンプ場 */
/* ============================================ */
.camp-page .sv_area {
    background: var(--color-bg02);
}

.camp-page .sv_area .sv_heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.camp-page .sv_area .sv_heading img {
    width: clamp(30px, 6.42vw, 90px);
    background: #fff;
    padding: 3px;
    border-radius: .3vw;
    display: block;
}

.camp-info_section .camp-info_top {
    background: var(--color-bg02);
    padding: 100px 0 200px;
    position: relative;
}

.camp-info_section .camp-info_top .images_containar .bg-image_01 {
    position: absolute;
    bottom: 0;
    left: 5vw;
    width: clamp(80px, 20.30vw, 450px);
}

.camp-info_section .camp-info_top .images_containar .bg-image_02 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: clamp(200px, 30.85vw, 600px);
}

.camp-info_bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--color-bg03);
}

.camp-info_bottom_left img {

    min-height: 900px;
    object-fit: cover;
}

.camp-info_bottom_right {
    display: grid;
    place-content: center;
    padding: 20px;
    text-align: center;
}

.camp-info_bottom_right .heading_m {
    margin-bottom: 30px;
    font-size: clamp(24px, 2vw, 35px);
}

.camp-info_bottom-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 0 auto 40px;
    max-width: 600px;
}

.bbq-application_section{
	background: var(--color-bg02);
	padding: 100px 0;
}

.bbq-application_section .container {
    background: #fff;
    padding: 80px 0;
    border-radius: 2vw;
}


.bbq-application_section .container p{
	text-align:center;
	padding:0 10px;
}


.bbq-application_section .container p span{
	display: block;
	font-size:24px;
	color: var(--color-accent03);
	padding-bottom: 20px;
	font-weight: bold;
	text-transform:capitalize;
}

/* お知らせ */
/* ============================================ */
.archive-page .sv_area {
    background: var(--color-bg02);
}

.archive_section {
    background: var(--color-bg02);
    padding: 100px 0;
}

.archive_section .container {
    background: #fff;
    padding: 80px 0;
    border-radius: 2vw;
}

.archive_section .container-inner {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
}

.pagination {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 0 auto;

}

.pagination a {
    padding: 8px 16px;
}

.page-numbers.current {
    background-color: var(--color-accent03);
    color: white;
    padding: 8px 16px;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;
}

/* 投稿 */
/* ============================================ */
.newslist_ttl {
    border-bottom: 2px solid var(--color-accent03);
    font-size: 25px;
    font-weight: bold;
    padding: 10px 0;
    margin-bottom: 10px;
}

.news_date,
.newslist_product_bread_crumb {
    font-size: 14px;
    text-align: right;
}

.newslist_product_bread_crumb {
    margin-bottom: 20px;
}

/* 個人情報保護方針 */
/* ============================================ */
.privacy-page .sv_area {
    background: var(--color-bg02);
}

.privacy_section {
    background: var(--color-bg02);
    padding: 100px 0;
}

.privacy_section .container {
    background: #fff;
    padding: 100px 0;
    border-radius: 2vw;
}

.privacy_section .container-inner {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
}

.area_privacy .text {
    margin-bottom: 20px;
}

.list_privacy-policy {
    display: grid;
    gap: 5px;
}

.list_privacy-policy dt {
    font-weight: 600;
}

.list_privacy-policy dd {
    margin-bottom: 20px;
}

.list_privacy-policy dd ul li::before {
    content: "・";
}

.contact_privacy-policy {
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

/* ========================================
 * 共通ページ(404)
======================================== */
.main-page .bg-area {
    padding-top: 90px;
}

.main-page .container {
    padding: 50px;
}

.main-page .page-title {
    font-size: 50px;
    font-weight: 600;
}

.main-page .btn {
    margin-top: 50px;
}