@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@500;700&family=Noto+Sans+JP:wght@400;500;600;700&display=swap");
:root {
    --main: #006400;
    --bg: #f0f0f0;
    --text: #000000;
    --white: #ffffff;
    --font-size: 1rem;
    /* デフォルト16px */
    --font-ja: "Noto Sans JP", sans-serif;
    --font-en: "Kumbh Sans", sans-serif;
    --bold: 600;
    --content-width: 1200px;
    --space-section: 120px;
    --space-section-sp: 80px;
    --header-height: 80px;
    --header-height-sp: 64px;
    --bp: 1023px;
    --font-12: 0.75rem;
    --font-14: 0.875rem;
    --font-18: 1.125rem;
    --font-20: 1.25rem;
    --font-24: clamp(1.25rem, 1.8vw, 1.5rem);
    --font-28: clamp(1.25rem, 2vw, 1.75rem);
    --font-32: clamp(1.5rem, 2.4vw, 2rem);
    --font-35: clamp(1.5rem, 2.5vw, 2.2rem);
    --font-40: clamp(2rem, 3vw, 2.5rem);
    --font-48: clamp(2.2rem, 3.5vw, 3rem);
    --font-64: clamp(2.5rem, 4.6vw, 4rem);
    --font-80: clamp(3rem, 5.8vw, 5rem);
}


/* リセットcss */

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

html {
    font-size: 100%;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-ja);
    font-size: var(--font-size);
    font-weight: 500;
    line-height: 1.625;
    letter-spacing: 0.04em;
}

ul,
ol {
    list-style-type: none;
}

h1,
h2,
h3,
h4 {
    font-size: inherit;
    font-weight: var(--bold);
    word-break: auto-phrase;
}

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

p>a {
    text-decoration: underline;
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

iframe {
    width: 100%;
    height: 100%;
    vertical-align: bottom;
}

mark,
em,
small {
    color: inherit;
    font-style: normal;
    font-size: inherit;
    font-weight: inherit;
    background-color: transparent;
}

strong {
    color: inherit;
    font-style: normal;
    font-size: inherit;
    font-weight: var(--bold);
    background-color: transparent;
}

section {
    padding: var(--space-section) 0;
}


/*　親テーマ上書き */

a:hover {
    color: inherit;
    text-decoration: none;
}

header {
    margin: 0;
    border: none;
}

footer {
    background-color: transparent;
    padding: 0;
}

footer nav {
    padding: 0;
}

footer a:hover {
    color: inherit;
}

footer nav li {
    margin-bottom: 0;
}

@media screen and (min-width: 62.5em) {
    a img:hover {
        opacity: 1;
    }
    footer {
        background-color: transparent;
    }
    footer nav {
        width: auto;
        padding: 0;
    }
    footer nav li {
        width: auto;
        float: none;
        margin-bottom: 0;
        padding-right: 0;
    }
}


/* 共通パーツ */

.c-read-text {
    line-height: 2.125;
}

.c-btn {
    min-width: 174px;
    display: inline-block;
    background-color: var(--text);
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.1em;
    text-align: center;
    border: 1px solid var(--text);
    padding: 14px 20px;
    transition: all 0.5s ease;
}

.c-btn:hover {
    background-color: var(--white);
    color: var(--text);
}

.c-btn::after {
    content: "\02192";
}

.c-btn.disabled {
    background-color: #ccc;
    border: 1px solid #ccc;
}

.c-btn.c-btn.disabled:hover {
    background-color: #ccc;
    color: var(--white);
}

.c-section-title {
    font-family: var(--font-en);
    font-weight: var(--bold);
    font-size: var(--font-40);
    line-height: 1;
    text-align: center;
    margin-bottom: 4rem;
}

.c-section-title::before {
    content: "";
    display: block;
    width: 185px;
    height: 58px;
    background: url(../img/section-title.png) no-repeat;
    background-size: contain;
    margin: 0 auto 4px;
}

.c-section-title--ja {
    font-family: var(--font-ja);
    font-size: var(--font-32);
}

.c-section-title--ja::before {
    margin-bottom: 8px;
}

.c-sub-title {
    max-width: max-content;
    font-size: var(--font-20);
    margin: 0 auto 2rem;
    border-bottom: 2px solid var(--text);
}

.c-section-text {
    text-align: center;
    margin-bottom: 4rem;
}

.c-page-title {
    font-size: var(--font-32);
    font-weight: var(--bold);
    margin-bottom: 3rem;
}

.c-link-box {
    text-align: center;
    margin-top: 4rem;
}

.c-kv {
    height: 440px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/kv/kv-about.webp);
}

.c-breadcrumb {
    color: #cacaca;
    font-size: var(--font-14);
    line-height: 1;
    margin-bottom: 1rem;
}

.c-breadcrumb li {
    display: inline-block;
}

.c-breadcrumb li+li::before {
    content: ">";
    margin: 0 8px;
}

.c-breadcrumb a {
    color: #cacaca;
}

.c-intro-text {
    max-width: max-content;
    font-size: var(--font-28);
    border-bottom: 2px solid var(--text);
    padding-bottom: 4px;
    margin: 0 auto 3rem;
}

.js-scroll-up {
    transition: 0.6s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
}

.js-scroll-up.on {
    transform: translateY(0);
    opacity: 1;
}


/* 共通レイアウト */

.l-inner {
    width: 90%;
    max-width: var(--content-width);
    margin: auto;
}

.l-breadcrumb {
    position: relative;
    z-index: 1;
}

.l-breadcrumb .c-breadcrumb {
    position: absolute;
    top: 2rem;
    left: 0;
}

.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 4%;
    z-index: 99;
}

.header__logo {
    width: 200px;
}

.header__nav-wrap {
    display: flex;
    align-items: center;
    position: fixed;
    top: 24px;
    right: 4%;
}

.header__nav-item {
    display: flex;
    align-items: center;
    /* column-gap: 2rem; */
    row-gap: 8px;
    font-size: var(--font-14);
    line-height: 1;
}

.header__nav-item a {
    height: 100%;
    display: block;
    color: var(--text);
    position: relative;
}

.header__nav-item a {
    margin-right: 2rem;
}

.header__nav-item a::after {
    content: "";
    width: 100%;
    height: 4px;
    position: absolute;
    bottom: -12px;
    left: 0;
    opacity: 0;
    transition: all 0.5s;
}

.header__nav-item a:hover {
    opacity: 1;
}

.header__nav-item a:hover:after {
    background-color: var(--text);
    opacity: 1;
    bottom: -8px;
}

.header__nav-item .form a {
    border: 1px solid var(--text);
    padding: 8px;
    margin-right: 1rem;
}

.header__nav-item .form a::after {
    content: none;
}

.header__nav-item .form a:hover {
    background-color: var(--text);
    color: var(--white);
}

.header__shop {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    padding-left: 1rem;
}

.header__shop-item--cart {
    width: 40px;
}

.header__shop-item--member {
    width: 32px;
    height: 32px;
}

.header__shop-item--member a {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--text);
    font-family: var(--font-en);
    color: var(--white);
    font-size: var(--font-14);
    border: 1px solid var(--text);
    border-radius: 50%;
    text-align: center;
    padding-top: 4px;
}

.white .header__nav-item a {
    color: var(--white);
}

.white .header__nav-item a:hover:after {
    background-color: var(--white);
}

.white .header__nav-item .form a {
    border-color: var(--white);
}

.white .header__nav-item .form a:hover {
    background-color: var(--white);
    color: var(--text);
}

.cta {
    display: flex;
    color: var(--white);
}

.cta__item {
    width: 50%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.cta__item>div {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cta__item a {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

.cta__item a::before,
.cta__item a::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
}

.cta__item a::before {
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.4);
}

.cta__item a::after {
    z-index: -2;
    transition: all 0.5s;
}

.cta__item a:hover:after {
    transform: scale(1.1);
    transition: all 0.5s;
}

.cta__item--stay a::after {
    background: url(../img/footer/stay-bg.png) no-repeat bottom center;
    background-size: cover;
}

.cta__item--tour a::after {
    background: url(../img/footer/tour-bg.jpg) no-repeat center center;
    background-size: cover;
}

.cta__title {
    font-family: var(--font-en);
    font-weight: var(--bold);
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 2rem;
}

.cta__title::before {
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
    margin-bottom: 16px;
}

.cta__item--stay .cta__title::before {
    background-image: url(../img/footer/stay-icon.png);
    width: 167px;
    aspect-ratio: 167 / 96;
}

.cta__item--tour .cta__title::before {
    background-image: url(../img/footer/tour-icon.png);
    width: 190px;
    aspect-ratio: 190 / 96;
}

.cta__text::after {
    content: "";
    display: block;
    width: 128px;
    max-width: 20vw;
    height: 15px;
    background: url(../img/footer/cta-arrow.png) no-repeat top right;
    background-size: contain;
    margin: 2rem auto;
}

.footer {
    background: var(--main) url(../img/footer/footer-bg.png) no-repeat center bottom;
    background-size: 100%;
    color: var(--white);
    padding: 40px 5%;
}

.footer a:hover {
    text-decoration: underline;
}

.footer__main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer__right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__logo {
    max-width: 163px;
}

.footer__address {
    font-size: var(--font-14);
    font-weight: 400;
    text-align: right;
}

.footer__nav-item {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 2rem;
    row-gap: 8px;
    font-size: var(--font-14);
    line-height: 1;
}

.footer__nav-item a {
    height: 100%;
    display: block;
}

.footer__nav-item .form a {
    border: 1px solid var(--white);
    padding: 8px;
}

.footer__nav-item .form a:hover {
    background-color: var(--white);
    color: var(--main);
    text-decoration: none;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
}

.footer__bottom-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 1rem;
    font-weight: 400;
}


/* レスポンシブ */

@media (min-width: 1024px) {
    .l-sp {
        display: none;
    }
}

@media (max-width: 1023px) {
    body {
        overflow: hidden;
    }
    body.active {
        height: 100vh;
    }
    section {
        padding: var(--space-section-sp) 0;
    }
    .l-pc {
        display: none;
    }
    .c-section-title,
    .c-section-text {
        margin-bottom: 3rem;
    }
    .c-kv {
        height: 50vw;
        max-height: 440px;
    }
    .c-breadcrumb {
        font-size: var(--font-12);
    }
    .l-breadcrumb .c-breadcrumb {
        top: 8px;
    }
    .header {
        height: var(--header-height-sp);
        padding: 16px 4%;
    }
    .sp-menu {
        display: block;
        width: 32px;
        height: 32px;
        background-color: var(--white);
        border: 1px solid var(--white);
        position: fixed;
        right: 5%;
        cursor: pointer;
        z-index: 2;
    }
    .sp-menu::before,
    .sp-menu::after {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        background-color: var(--text);
        position: absolute;
        left: 0;
        transition: all 0.5s ease;
    }
    .sp-menu::before {
        top: 10px;
    }
    .sp-menu::after {
        bottom: 10px;
    }
    .sp-menu.active::before {
        transform: rotate(45deg);
        top: 0;
        bottom: 0;
        margin: auto;
    }
    .sp-menu.active::after {
        transform: rotate(-45deg);
        top: 0;
        bottom: 0;
        margin: auto;
    }
    .cta {
        display: block;
    }
    .cta__item {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 0.5;
    }
    .cta__title {
        width: 50vw;
        max-width: 332px;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        column-gap: 1rem;
        font-size: min(9.4vw, 3.5rem);
        margin: 1rem 0;
    }
    .cta__title::before {
        max-width: 20vw;
        margin-bottom: 0;
    }
    .cta__text {
        font-size: min(2.8vw, 1rem);
        word-break: auto-phrase;
    }
    .cta__text::after {
        margin: min(5vw, 2rem) auto;
    }
    .header__logo img {
        width: auto;
        height: 32px;
    }
    .header__shop {
        position: fixed;
        right: calc(4% + 56px);
        top: 16px;
    }
    .header__nav-wrap {
        display: block;
        position: static;
    }
    .header__nav {
        width: 90%;
        height: 100vh;
        background: #fff;
        padding: 80px 5% 16px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
        position: absolute;
        top: 0;
        right: -100%;
        z-index: 1;
        transition: right 0.5s ease;
    }
    body.active::before {
        content: "";
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.4);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1;
    }
    .header__nav.active {
        right: 0;
    }
    .header__nav-item {
        flex-direction: column;
        row-gap: 1rem;
    }
    .header__nav-item a {
        color: var(--text);
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--text);
        margin-right: 0;
    }
    .header__nav-item .form a {
        min-width: 10em;
        color: var(--text);
        text-align: center;
        border-color: var(--text);
        margin-right: 0;
    }
    .footer {
        background-image: url(../img/footer/footer-bg-sp.png);
    }
    .footer__main {
        display: block;
    }
    .footer__left {
        text-align: center;
    }
    .footer__right {
        display: block;
    }
    .footer__logo {
        max-width: 100px;
        margin-bottom: 2rem;
    }
    .footer__nav-item {
        flex-direction: column;
    }
    .footer__nav-item a {
        margin-bottom: 1rem;
    }
    .footer__nav-item .form a {
        min-width: 122px;
        text-align: center;
    }
    .footer__address {
        text-align: center;
        margin-top: 3rem;
    }
    .footer__bottom {
        justify-content: center;
    }
    .footer__bottom-nav {
        flex-direction: column-reverse;
        justify-content: center;
    }
    .footer__bottom-nav li {
        margin-top: 1rem;
    }
}