@charset "UTF-8";

/* ----- 全ページ共通 ファーストビュー用css common-first-view.css ----- */
/* ##### ページ全体 ##### */
/* カスタムプロパティ */
:root {
    --color-default-bgc: white;
    --color-text-001: #555;
    --color-text-002: #000;
    --color-001: #c9ada6;
    --color-002: #f6f5f2;
    --color-003: #ff5161;
    --color-004: #f6d4d1;
    --color-005: #d7d7d7;
    --color-006: #8a8a8a;
    --color-007: #ffa0a0;
    --color-008: #de6260;
    --color-009: #2d2d2d;
    --color-010: #ff5800;
    --color-011: #13bd14;
    --color-012: #b07700;
    --color-013: #a07b72;
    --color-014: #795548;
    --color-015: #a6c9ad;
    --color-016: #ffee58;
    --color-017: #fbf5f5;
    --color-018: #ededed;
    --color-019: #ff961a;
    --color-020: #fd662b;
    --color-021: #e5decb;
    --color-022: #b99b93;
    --color-023: #c48e80;
    --color-024: #333;
    --color-030: #545454;
    --color-031: #f7f7f7;
    --color-032: #333;
    --color-033: #ababab;
    --color-041: #ff3938;
    /* ↓　ホテル */
    --color-025: #b3e2ea;
    --color-035: #53a2b0;
    /* ↓　グルメ */
    --color-026: #fccdb6;
    --color-036: #dc8a69;
    /* ↓　観光地 */
    --color-027: #f1c4ce;
    --color-037: #e990a5;
    /* ↓　体験 */
    --color-028: #c1e9c5;
    --color-038: #5bb29c;
    /* ↓　お土産 */
    --color-034: #dbd0fb;
    --color-039: #b898cd;
    /* ↓　特集 */
    --color-029: #ebd7c7;
    --color-040: #a48c78;
}

/* webフォント */
body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    color: var(--color-text-002);
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.1rem;
    background-color: var(--color-default-bgc);

    font-optical-sizing: auto;
}

a,
a:hover {
    color: var(--color-text-002);
}

[class*=ofi] {
    width: 100%;
    display: block;
    position: relative;
}

[class*=ofi]::after {
    content: "";
    display: block;
}

[class*=ofi] img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    position: absolute;
    top: 0;
    left: 0;
}

[class*=ofi].-contain img {
    -o-object-fit: contain;
    object-fit: contain;
}

.ofi-01::after {
    padding-top: calc(100% * (2 / 3));
}

.ofi-02::after {
    padding-top: 100%;
}

.scale-01 {
    overflow: hidden;
}

.scale-01 img {
    -webkit-transition: -webkit-transform 0.3s linear;
    transition: -webkit-transform 0.3s linear;
    transition: transform 0.3s linear;
    transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}

.scale-01:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

/* .spacer */
.spacer {
    min-height: 94px;
    background-color: var(--color-001);
}

@media (min-width: 1024px) {
    .spacer {
        min-height: 87px;
    }
}

/* inner */
[class^=inner] {
    width: 94%;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .inner {
        max-width: 1000px;
    }

    .inner800 {
        max-width: 800px;
    }

    .inner900 {
        max-width: 900px;
    }

    .inner1200 {
        max-width: 1200px;
    }
}

[class*="inner"].-narrow {
    width: 90%;
}

/* カテゴリー */
.ホテル {
    background-color: var(--color-025);
}

.グルメ {
    background-color: var(--color-026);
}

.観光地 {
    background-color: var(--color-027);
}

.体験 {
    background-color: var(--color-028);
}

.お土産 {
    background-color: var(--color-034);
}

.特集 {
    background-color: var(--color-029);
}

/* ロゴ */
.logo {
    width: 140px;
    max-width: 80%;
    height: auto;
    margin: 0.8rem auto 0.8rem;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.logo a {
    width: 100%;
    display: block;
}

.logo a img {
    width: 100%;
}

.header-logo a .logo-fixed {
    display: none;
}

.common-fixed .header-logo a .logo-fixed {
    display: block;
}

.common-fixed .header-logo a .logo-normal {
    display: none;
}

@media (min-width: 1024px) {
    .logo {
        width: 150px;
        max-width: 230px;
        margin: 1rem auto;
    }
}

/* ##### ヘッダー ##### */
/* ヘッダー */
.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    background-color: var(--color-001);
    position: relative;
}

.header-catch {
    width: 100%;
    padding: 0.5em 1em;
    font-size: 0.8rem;
    letter-spacing: 0.15rem;
    text-align: center;
    border-bottom: 1px solid #be978e;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.common-fixed .header-catch {
    padding: 0.5em 1em 0.5em;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

@media (min-width: 1024px) {
    .header {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        padding: 0.5rem 5%;
    }

/*     .header h1 {
    margin: 0.5rem;
} */

    .header-catch {
        width: auto;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        padding: 0.5rem 1.1rem;
        font-weight: 500;
        font-size: 0.9em;
        letter-spacing: 0.1rem;
        -moz-text-align-last: left;
        text-align-last: left;
        border-bottom: unset;
    }

    .common-fixed .header-catch {
        position: static;
        z-index: 1;
    }
}

@media (min-width: 1441px) {
    .header {
        padding: 0.5rem 20%;
    }
}

/* ##### グローバルナビ ##### */
/* グローバルナビ */
.global-nav {
    background-color: var(--color-002);
}

.global-nav .list-nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
}

.common {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.common-fixed .common {
    -webkit-box-shadow: 0px 4px 2px -2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 2px -2px rgba(0, 0, 0, 0.2);
}

.global-nav .list-nav li {
    width: 18.3%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
}

.global-nav .list-nav li+li::before,
.global-nav .list-nav li:last-of-type::after {
    content: "";
    width: 1px;
    height: 70%;
    display: inline-block;
    border-left: 2px dotted var(--color-001);
    position: absolute;
    top: 15%;
    z-index: 2;
}

.global-nav .list-nav li+li::before {
    left: 0;
}

.global-nav .list-nav li.nav-gourmet::before {
    left: 1px;
}

.global-nav .list-nav li a {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0.45rem 0.25rem;
    font-weight: 500;
    font-size: 10px;
    color: var(--color-text-002);
    letter-spacing: 1px;
    white-space: nowrap;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.global-nav .list-nav li:first-of-type a {
    letter-spacing: -1px;
}

.global-nav .list-nav li:nth-of-type(2) a {
    letter-spacing: 0;
}

.global-nav .list-nav li a:hover {
    text-decoration: underline;
}

.global-nav .list-nav li a .icon-nav {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.global-nav .list-nav li a:hover {
    opacity: 1;
}

.global-nav .list-nav li.nav-hotel a:hover {
    color: var(--color-035);
}

.global-nav .list-nav li.nav-gourmet a:hover {
    color: var(--color-036);
}

.global-nav .list-nav li.nav-sightseeing a:hover {
    color: var(--color-037);
}

.global-nav .list-nav li.nav-activities a:hover {
    color: var(--color-038);
}

.global-nav .list-nav li.nav-souvenir a:hover {
    color: var(--color-039);
}

.global-nav .list-nav li.nav-special a:hover {
    color: var(--color-040);
}

.global-nav .list-nav li.nav-search a:hover {
    color: var(--color-001);
}

.global-nav .list-nav li.nav-search a {
    font-size: 0.65rem;
    letter-spacing: 0;
}

.global-nav .list-nav li.clothing-guide a:hover {
    color: #766865;
}

.global-nav .list-nav li.nav-hotel a .icon-nav img {
    -webkit-filter: brightness(0) saturate(100%) invert(62%) sepia(10%) saturate(1820%) hue-rotate(141deg) brightness(93%) contrast(84%);
    filter: brightness(0) saturate(100%) invert(62%) sepia(10%) saturate(1820%) hue-rotate(141deg) brightness(93%) contrast(84%);
}

.global-nav .list-nav li.nav-gourmet a .icon-nav img {
    -webkit-filter: brightness(0) saturate(100%) invert(88%) sepia(14%) saturate(6756%) hue-rotate(310deg) brightness(91%) contrast(89%);
    filter: brightness(0) saturate(100%) invert(88%) sepia(14%) saturate(6756%) hue-rotate(310deg) brightness(91%) contrast(89%);
}

.global-nav .list-nav li.nav-sightseeing a .icon-nav img {
    -webkit-filter: brightness(0) saturate(100%) invert(80%) sepia(81%) saturate(3415%) hue-rotate(291deg) brightness(96%) contrast(89%);
    filter: brightness(0) saturate(100%) invert(80%) sepia(81%) saturate(3415%) hue-rotate(291deg) brightness(96%) contrast(89%);
}

.global-nav .list-nav li.nav-activities a .icon-nav img {
    -webkit-filter: brightness(0) saturate(100%) invert(68%) sepia(14%) saturate(1147%) hue-rotate(114deg) brightness(91%) contrast(85%);
    filter: brightness(0) saturate(100%) invert(68%) sepia(14%) saturate(1147%) hue-rotate(114deg) brightness(91%) contrast(85%);
}

.global-nav .list-nav li.nav-special a .icon-nav img {
    -webkit-filter: brightness(0) saturate(100%) invert(58%) sepia(14%) saturate(580%) hue-rotate(345deg) brightness(96%) contrast(90%);
    filter: brightness(0) saturate(100%) invert(58%) sepia(14%) saturate(580%) hue-rotate(345deg) brightness(96%) contrast(90%);
}

.global-nav .list-nav li.nav-souvenir a .icon-nav img {
    -webkit-filter: brightness(0) saturate(100%) invert(78%) sepia(35%) saturate(692%) hue-rotate(208deg) brightness(80%) contrast(100%);
    filter: brightness(0) saturate(100%) invert(78%) sepia(35%) saturate(692%) hue-rotate(208deg) brightness(80%) contrast(100%);
}

.global-nav .list-nav li.clothing-guide a .icon-nav img {
    -webkit-filter: brightness(0) saturate(100%) invert(41%) sepia(14%) saturate(322%) hue-rotate(323deg) brightness(97%) contrast(90%);
    filter: brightness(0) saturate(100%) invert(41%) sepia(14%) saturate(322%) hue-rotate(323deg) brightness(97%) contrast(90%);
}

.global-nav .list-nav li:nth-of-type(3) a .icon-nav {
    margin-left: -3px;
}

.icon-nav {
    width: 28px;
    height: 28px;
    display: inline-block;
}

.icon-nav img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
}

.common-fixed .global-nav .list-nav li a {
    padding: 0.5rem 0.25rem 0.5rem 0.25rem;
}

.common-fixed .global-nav .list-nav li a .icon-nav {
    width: 25px;
    height: 25px;
    margin-bottom: 0;
}

@media (min-width: 600px) {
    .global-nav .list-nav li a {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .common-fixed .common .logo {
        width: 100px;
        height: auto;
        margin: 0.5rem auto;
    }

    .global-nav .list-nav {
        width: 970px;
        max-width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        overflow: hidden;
        margin-left: auto;
        margin-right: auto;
    }

    .global-nav .list-nav li {
        width: 17%;
    }

    .global-nav .list-nav li::before,
    .global-nav .list-nav li:last-of-type:after {
        content: "";
        width: 1px;
        height: 70%;
        display: inline-block;
        border-left: 2px dotted var(--color-001);
        position: absolute;
        top: 15%;
    }

    .global-nav .list-nav li:last-of-type:after {
        right: 0;
    }

    .global-nav .list-nav li a {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        padding: 0.9em 0.5em;
        font-size: 15px;
        letter-spacing: 0.1rem;
        -webkit-transition: unset;
        transition: unset;
    }

    .global-nav .list-nav li.nav-search a {
        /* font-size: 15px; */
        font-size: 14px;
        letter-spacing: 0.1rem;
    }

    .icon-nav {
        width: 1.2em;
        height: 1.2em;
        margin: 0.25em 0.3em;
    }
}

/* ##### ドロワーナビ ##### */
body.drawer-active {
    overflow: hidden;

    -ms-touch-action: none;
    touch-action: none;
}

.hamburger-container-wrap {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    padding: 1rem 0 10rem;
    background-color: var(--color-001);
    -webkit-transition: -webkit-transform ease 0.5s;
    transition: -webkit-transform ease 0.5s;
    transition: transform ease 0.5s;
    transition: transform ease 0.5s, -webkit-transform ease 0.5s;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
}

.drawer-active .hamburger-container-wrap {
    opacity: 1;
    -webkit-transition: -webkit-transform ease 0.5s;
    transition: -webkit-transform ease 0.5s;
    transition: transform ease 0.5s;
    transition: transform ease 0.5s, -webkit-transform ease 0.5s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.drawer-active .toggle-wrap {
    background-color: var(--color-001);
    bottom: 2.7rem;
}

.hamburger-nav-heading {
    padding: 1rem 3rem 1rem 1rem;
    font-weight: 500;
    color: #fff;
    border-bottom: 1px solid var(--color-014);
    background-color: #a47e73;
    cursor: pointer;
    position: relative;
}

.hamburger-nav-heading+.list-nav {
    display: none;
}

.hamburger-nav-item .list-nav li {
    border-bottom: 1px solid var(--color-014);
}

.hamburger-nav-item .list-nav li a {
    display: block;
    padding: 1rem 2rem 1rem 1rem;
    color: var(--color-text-002);
    background: var(--color-002);
    position: relative;
}

.hamburger-nav-item .list-nav li a::before {
    content: "";
    width: 10px;
    display: block;
    background: url(/upload/tenant_1/sitemap_subcategory_arrow_sp.webp) no-repeat;
    background-size: contain;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 1.7rem;

    aspect-ratio: 14 / 21;
}

.hamburger-box-07.hamburger-nav-item .list-nav li a {
    color: #fff;
    background: #a47e73;
}

.hamburger-box-07.hamburger-nav-item .list-nav li a::before {
    -webkit-filter: invert(1) brightness(10);
    filter: invert(1) brightness(10);
}

.hamburger-nav-heading::before,
.hamburger-nav-heading::after {
    content: "";
    width: 1.2rem;
    height: 1px;
    display: inline-block;
    background-color: #fff;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    right: 1.5rem;
    z-index: 1;
}

.hamburger-nav-heading::after {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.hamburger-nav-heading.is-parent3::after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

@media(min-width:1025px) {
    .hamburger-container-wrap {
        height: calc(100vh - 45px);
        margin-top: 87px;
        padding: 5rem 1rem 10rem;
        border-top: 1px solid;
    }

    .hamburger-container-wrap {
        -webkit-transition: -webkit-transform ease 0.8s;
        transition: -webkit-transform ease 0.8s;
        transition: transform ease 0.8s;
        transition: transform ease 0.8s, -webkit-transform ease 0.8s;
    }

    .drawer-active .hamburger-container-wrap {
        -webkit-transition: -webkit-transform ease 0.8s;
        transition: -webkit-transform ease 0.8s;
        transition: transform ease 0.8s;
        transition: transform ease 0.8s, -webkit-transform ease 0.8s;
    }

    .hamburger-logo-wrap {
        display: none;
    }

    .hamburger-nav {
        max-width: 1100px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0 auto;
    }

    .hamburger-nav .hamburger-box-inner {
        width: 48%;
    }

    .hamburger-container-wrap .toggle-wrap {
        display: none;
    }

    .common-fixed .hamburger-container-wrap {
        margin-top: 45px;
    }

    /* .hamburger-nav-item+.list-nav-link li {
        width: 48%;
        margin: 1%;
    } */

    /* ##### 非表示コンテンツが表示になったら上と入れ替えてこれは消す ##### */
    .hamburger-nav-item+.list-nav-link li {
        width: 31%;
        margin: 1%;
    }

    .hamburger-nav-item+.list-nav-link li:first-of-type {
        border-left: 1px solid var(--color-text-002);
    }
}

/* toggle */
.toggle-wrap {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: absolute;
    bottom: 0;
    right: 2.1rem;
    z-index: 251;
}

.toggle-wrap {
    top: auto;
    bottom: 0.8rem;
}

.common-fixed .toggle-wrap {
    bottom: 0.2rem;
}

.common-fixed.drawer-active .toggle-wrap {
    height: 39px;
    top: 17px;
    bottom: 0.2rem;
}

.toggle {
    width: 39px;
    height: 39px;
    display: block;
    border: none;
    background: none;
    cursor: pointer;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: relative;
}

.toggle .bar {
    width: 37px;
    height: 2px;
    display: block;
    margin-top: -1px;
    padding: 0;
    text-indent: 9999px;
    background: var(--color-text-002);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    position: absolute;
    top: 50%;
    left: 50%;
}

.toggle .bar:nth-of-type(1) {
    top: calc(50% - 5px);
}

.toggle .bar:nth-of-type(2) {
    top: calc(50% + 5px);
}

.drawer-active .toggle .bar:nth-of-type(1) {
    -webkit-transform: translate(-50%, 0) rotate(45deg);
    transform: translate(-50%, 0) rotate(45deg);
    top: 50%;
}

.drawer-active .toggle .bar:nth-of-type(2) {
    -webkit-transform: translate(-50%, 0) rotate(-45deg);
    transform: translate(-50%, 0) rotate(-45deg);
    top: 50%;
}

.common-fixed .toggle .bar {
    width: 35px;
}

common-fixed .toggle-wrap {
    bottom: -0.5rem;
}

@media(min-width:1024px) {
    .toggle-wrap {
        width: 39px;
        height: 39px;
        top: 2rem;
        bottom: 1.6rem;
        right: calc((100% - 900px) / 2);
        right: 5%;
    }

    .common-fixed .toggle-wrap {
        width: 39px;
        height: 39px;
        top: 3px;
        bottom: 4rem;
    }

    .common-fixed .toggle .bar {
        width: 39px;
    }

    .common-fixed.drawer-active .toggle-wrap {
        top: 3px;
    }

    .drawer-active.common-fixed .toggle .bar:nth-of-type(1) {
        top: 50%;
    }

    .drawer-active.common-fixed .toggle .bar:nth-of-type(2) {
        top: 50%;
    }
}

@media (min-width: 1441px) {
    .toggle-wrap {
        right: 19%;
    }
}

/* ##### パンくずリスト ##### */
/* パンくずリスト */
.breadcrumbs {
    padding: 0 0.7rem 0.5rem 0.7rem;
}

.breadcrumbs-list li {
    display: inline;
    font-size: 10px;
    color: var(--color-032);
    letter-spacing: 0.05rem;
}

.breadcrumbs-list li a {
    color: var(--color-032);
    -webkit-transition: unset;
    transition: unset;
    position: relative;
}

.breadcrumbs-list li a:hover {
    opacity: 0.5;
}

.breadcrumbs-list li a::after {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    background-color: var(--color-032);
    position: absolute;
    bottom: 0;
    left: 0;
}

.breadcrumbs-list li+li {
    padding-left: 1rem;
    position: relative;
}

.breadcrumbs-list li+li::before {
    content: "";
    width: 1em;
    height: 1em;
    display: inline-block;
    background-image: url(/upload/tenant_1/64×64px_arrow_icon_pc.webp);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 0.25rem;
    left: 0;
}

@media (min-width: 1024px) {
    .breadcrumbs-list {
        width: 1175px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ##### swiper ##### */
.swiper-button-prev::after,
.swiper-button-next::after {
    content: "" !important;
}
