@charset "UTF-8";

/* Theme Name: MontanaGroup */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Noto+Sans+JP&family=Noto+Sans+KR&family=Noto+Sans+SC&family=Noto+Sans+TC&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: normal;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 10em;
}

:root {
    --white: #fff;
    --black: #333;
    --color: #2c5da7;
    --en: 'Josefin Sans', 'Noto Sans JP', 'Noto Sans KR', 'Noto Sans SC', 'Noto Sans TC', sans-serif;
}

body {
    background-color: var(--white);
    text-align: center;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-family: 'Noto Sans JP', 'Noto Sans KR', 'Noto Sans SC', 'Noto Sans TC', sans-serif;
    font-size: 14px;
    color: var(--black);
}


@media screen and (min-width:768px) {
    body {
        font-size: 15px;
    }

    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

@media screen and (min-width:1024px) {
    body {
        font-size: 16px;
    }

}

a {
    color: var(--black);
    transition: all .2s;
}

a:hover {
    color: var(--color);
}

nav {
    position: relative;
    z-index: 9999;
    padding: 1em;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    font-family: var(--en);
    font-size: 1.5em;
}

.menuForPc ul li a {
    font-family: var(--en);
}

@media screen and (max-width:1023px) {
    .menuForPc {
        display: none;
    }
}

.navMenuSp {
    display: flex;
    margin-left: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.menuForSp {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    z-index: 999;
    padding-top: 20vh;
    background-color: var(--black);
    text-align: center;
}

.menuForSp ul li {
    margin-bottom: 1.5em;
}

.menuForSp a {
    text-decoration: none;
    font-family: var(--en);
    font-size: 1.5em;
    color: var(--white);
}

@media screen and (min-width:768px) {
    .pcNone {
        display: none;
    }
}

@media screen and (min-width:1024px) {

    .navMenuSp,
    .menuForSp {
        display: none;
    }

}

.line {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    margin-bottom: 4px;
}

.line:nth-child(1).open {
    transform: translateY(6px) rotate(45deg);
}

.line:nth-child(2).open {
    opacity: 0;
}

.line:nth-child(3).open {
    transform: translateY(-6px) rotate(-45deg);
}

@media screen and (min-width:1024px) {
    .menuForPc ul li {
        display: inline-block;
        margin-left: 1em;
    }
}

@media screen and (min-width:1440px) {
    nav h1 {
        font-size: 2.5em;
    }

    .menuForPc ul li a {
        font-size: 1.5em;
    }
}

nav a {
    text-decoration: none;
    color: var(--white);
}


select {
    padding: 0.3em;
    background-color: var(--black);
    color: var(--white);
}

header img {
    width: 100%;
    height: 100vh;
    height: 100svh;
    object-fit: cover;
}

section {
    margin: 5em auto;
    padding: 3em 0;
}

section h2 {
    margin-bottom: 1em;
    font-weight: bold;
    font-family: var(--en);
    font-size: 2.5em;
}

section>p {
    width: 90%;
}

section p {
    margin: 1em auto;
}

@media screen and (max-width:767px) {
    section p {
        text-align: left;
    }
}

.bg {
    background-color: var(--black);
}

.bg h2 {
    color: var(--white);
}

.hotelsBox {
    margin: 3em auto;
    padding: 2em;
    width: 80%;
    background-color: var(--white);
}

section img {
    display: block;
    margin: 0 auto 1.5em;
    width: 100%;
    max-width: 1000px;
    height: auto;
}

.link {
    display: inline-block;
    padding: 0.2em 1em;
    background-color: var(--black);
    text-decoration: none;
    color: var(--white);
}

@media screen and (min-width:768px) {

    .hotelsWrap,
    .hotelsWrap2 {
        display: flex;
        margin: 0 auto;
        flex-wrap: wrap;
        justify-content: space-around;
        max-width: 1000px;
    }

    .hotelsBox {
        flex-basis: 45%;
    }
}

.logo {
    width: 70% !important;
}

.hotelsBox p {
    text-align: left;
}

.hotelsWrap2 .hotelsBox {
    border: thin solid var(--black);
}

.galleryList li {
    display: inline-block;
    margin: 1em;
    padding: 0.5em 1em;
    border: thin solid var(--white);
    background-color: var(--white);
    color: var(--black);
    cursor: pointer;
}

.galleryList li.click {
    background-color: var(--black);
    color: var(--white);
}

.galleryBox {
    margin: 3em auto;
    color: var(--white);
}

section h3 {
    font-weight: bold;
    font-size: 1.5em;
}

.gallerySlider {
    margin: 0 auto;
    width: 80%;
}

.gallerySlider img {
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.slider-img {
    margin: 0 10px;
}

.slick-prev {
    left: -25px !important;
}

.slick-next {
    right: -25px !important;
}

.big {
    font-size: 1.3em;
}

footer {
    padding: 1.5em;
    background-color: var(--black);
    color: var(--white);
}

footer h4 {
    font-size: 2em;
    font-family: var(--en);
}

footer ul li {
    margin: 0.5em 1em;
    display: inline-block;
}

footer a {
    text-decoration: none;
    font-family: var(--en);
    color: var(--white);
}

.block {
    width: 100%;
    height: 20vh;
    background-color: var(--black);
}

input[type=text],
input[type=email],
input[type=url] {
    width: 100%;
    max-width: 200px;
    padding: 0.2em 0.5em;
    border: thin solid var(--black);
}

textarea {
    width: 100%;
    height: 200px;
    padding: 0.2em 0.5em;
    border: thin solid var(--black);
}

input[type=submit] {
    padding: 0.5em 1em;
    font-size: 1.5em;
    background-color: var(--black);
    color: var(--white);
}