@charset "UTF-8";

/* ----- ホテル・記事一覧（iframe親）用css list-outer-iframe.css ----- */

/* ##### 全体設定 ##### */
.section-info-container {
    padding: 0 calc((100% - 800px) / 2) 0;
}

.alternative-bgc2 {
    position: relative;
}

.alternative-bgc2:nth-of-type(even)::before {
    content: "";
    width: 100vw;
    height: 100%;
    display: block;
    background-color: #f6f5f3;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    top: 0;
    left: 50%;
}

.alternative-bgc2 .p-relative {
    position: relative;
    z-index: 2;
}

/* ##### iframe ##### */
.iframe-wrap,
.iframe-wrap iframe {
    width: 100%;
}

.iframe-wrap {
    max-width: 98%;
    margin-left: auto;
    margin-right: auto;
}

/* ##### セクション ##### */
.section-post-container {
    padding-top: 7rem;
    padding-bottom: 6rem;
}

@media (min-width: 1024px) {
    .section-post-container {
        padding-top: 10rem;
        padding-bottom: 10rem;
    }
}

/* ##### ページタイトル ##### */
.section-title {
    font-weight: 500;
    /* min21px max35px 1000px */
    font-size: clamp(1.3125rem, 0.79rem + 2.24vw, 2.1875rem);
    color: var(--color-text-002);
    letter-spacing: 0.15rem;
}

.section-title span {
    display: block;
}

.section-title .sub {
    font-weight: normal;
    font-size: 40%;
    color: var(--color-text-001);
}

.section-title-container {
    padding: 2rem 0;
}

.section-title-container-02 {
    padding: 1.8rem 0 3.8rem;
    text-align: center;
}

.section-title-container-02 h1 {
    margin-bottom: 2.2rem;
    /* min 34px max40px 1000px */
    font-size: clamp(2.125rem, 1.9rem + 0.96vw, 2.5rem);
    letter-spacing: 0.1rem;
}

.section-title-container-02 p,
.section-title-container-02 .text {
    line-height: 1.8;
    text-align: left;
}

@media (min-width: 1024px) {
    .section-title-container {
        padding: 6rem 0 6.8rem 0;
    }

    .section-title-container-02 h1 {
        margin-bottom: 1.6rem;
        letter-spacing: 0;
    }

    .section-title-container-02 p {
        font-size: 0.9rem;
        letter-spacing: 0.15rem;
        text-align: center;
    }

    .section-title-container-02 .text {
        text-align: center;
    }
}

/* ##### タブ ##### */
.tab-btn {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-006);
    text-align: center;
}

.tab-btn span {
    display: block;
}

.tab-btn+.tab-btn {
    margin-left: 0.35em;
}

.tab-btn.on {
    font-weight: 500;
    color: var(--color-008);
    border-bottom: 2px solid var(--color-008);
    z-index: 1;
}

.tab-btn-list-wrap {
    position: relative;
}

.tab-btn-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 0 0.5rem;

    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tab-btn-list::-webkit-scrollbar {
    display: none;
}

.tab-btn-list::after {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    background-color: var(--color-005);
    position: absolute;
    bottom: 0;
    left: 0;
}

.tab-item {
    padding: 4.5rem 0 6.5rem;
}

@media (min-width: 1024px) {
    .section-list-container {
        padding: 0 calc((105% - 1200px) / 2) 3rem;
    }

    .tab-btn {
        min-width: 9.5rem;
        padding: 1rem 1.5em;
        font-weight: 500;
        font-size: 1rem;
        color: var(--color-text-002);
        border-top: 1px solid var(--color-005);
        border-left: 1px solid var(--color-005);
        border-right: 1px solid var(--color-005);
        border-radius: 0.5rem 0.5rem 0 0;
        background-color: var(--color-031);
        position: relative;
        z-index: 2;
    }

    .tab-btn::before {
        content: "";
        width: calc(100% + 4px);
        height: 2px;
        display: block;
        background-color: var(--color-008);
        position: absolute;
        bottom: 0px;
        left: -2px;
    }

    .tab-btn.on {
        margin-bottom: -2px;
        border-top: 2px solid var(--color-008);
        border-bottom: 2px solid white;
        border-left: 2px solid var(--color-008);
        border-right: 2px solid var(--color-008);
        background-color: white;
        position: relative;
        z-index: 2;
    }

    .tab-btn.on::before {
        width: calc(100% - 4px);
        background-color: white;
        left: 0;
    }

    .tab-btn:hover {
        cursor: pointer;
    }

    .tab-btn+.tab-btn {
        margin-left: 0.5em;
    }

    .tab-btn span {
        display: inline;
    }

    .tab-btn span:hover {
        cursor: pointer;
    }

    .tab-btn-list {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0;
    }

    .tab-btn-list-wrap {
        padding: 0 3rem;
    }

    .tab-btn-list-wrap::after {
        height: 2px;
        /* vwとpxを入れ替えることでマイナスにする; */
        background-color: var(--color-008);
        left: calc((1200px - 100vw) / 2);
        z-index: 1;
    }

    .tab-btn-list::after {
        height: 2px;
        background-color: var(--color-008);
        z-index: 1;
    }

    .tab-item {
        padding: 7rem 0;
    }

    .tab-item [class*=inner] {
        width: 100%;
    }
}

/* ##### ボタン ##### */
.btn-04 {
    width: 100%;
    max-width: 86%;
    margin-top: 3.4rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
    color: var(--color-001);
    letter-spacing: 0.2em;
    text-align: center;
    border: 1px solid var(--color-001);
    position: relative;
}

@media (min-width: 1024px) {
    .btn-04 {
        max-width: 400px;
    }
}

/* ##### ビジュアル検索 ##### */
.section-post-container.-pattern-black {
    background-color: var(--color-009) !important;
}

.section-post-container.-pattern-black [class^=title],
.section-post-container.-pattern-black [class*=text] {
    color: var(--color-001);
}

.section-post-container.-pattern-black .title-14::after {
    border-top: 1px solid var(--color-001);
}

.visual-search-wrap figure {
    -webkit-transition: 0.3s linear;
    -webkit-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
    position: relative;
}

.visual-search-wrap figure figcaption {
    width: 100%;
    display: none;
    padding: 0.5rem;
    font-size: 0.7rem;
    color: white;
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.visual-search-wrap figure:hover figcaption {
    display: block;
}

@media (min-width: 1024px) {
    .visual-search-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 4rem;
    }

    .visual-search-wrap figure {
        width: 25%;
    }

    .visual-search-wrap figure figcaption {
        padding: 0.5rem 0.3rem 0.25rem 0.5rem;
    }
}

@media(min-width:1024px) {
    .section-width1 {
        margin-left: calc((-100vw + 800px) / 2);
        margin-right: calc((-100vw + 800px) / 2);
        padding-left: calc((100vw - 1200px) / 2);
        padding-right: calc((100vw - 1200px) / 2);
    }
}

/* ##### 人気記事ランキング ##### */
.section-info-container .text-01 {
    padding: 0 2%;
}

.section-article-ranking-container {
    padding-top: 3.5rem;
    padding-bottom: 7.5rem;
}

.section-article-ranking-container .section-title .icon-list {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
}

.section-article-ranking-container .text {
    font-size: 14px;
    color: var(--color-text-002);
    letter-spacing: 0;
    text-align: center;
}

.section-article-ranking-container .box-article-ranking {
    margin-top: 2.5rem;
}

.section-article-ranking-container .box-article-ranking .btn-03 {
    margin-top: 2rem;
}

.box-article-ranking .title-article-ranking {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    padding: 0.8rem 1rem 0.8rem 3rem;
    font-weight: 500;
    /* min18px max24px 599px */
    font-size: clamp(1.125rem, 0.695rem + 2.15vw, 1.5rem);
    color: #fff;
    border-radius: 1em 0 0 0;
    background-color: var(--color-001);
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.box-article-ranking .title-article-ranking .icon-bed {
    max-width: 60px;
    padding: 5px;
    border-radius: 50%;
    background: #fff;
}

.box-article-ranking .title-article-ranking .icon-bed img {
    /* min28px max34px 599px */
    width: clamp(1.75rem, 1.32rem + 2.15vw, 2.125rem);
}

.box-article-ranking .list-article-ranking-wrap {
    padding: 3.5rem clamp(1rem, -4.859rem + 25vw, 4.5rem) 5rem clamp(1rem, -4.859rem + 25vw, 4.5rem);
    background: #fff;
}

.box-article-ranking .list-article-ranking {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.box-article-ranking .list-article-ranking .item-article {
    width: 100%;
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--color-006);
}

.box-article-ranking .item-inner figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.list-article-ranking {
    list-style: none;
    counter-reset: cnt;
    /* デフォルトのリストスタイルを無効化（必要に応じて） */
}

.list-article-ranking .item-inner figure::before {
    content: counter(cnt);
    width: 2.7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    counter-increment: cnt;
    padding-bottom: 2px;
    padding-right: 1px;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 500;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 0;
    border-radius: 50%;
    background: var(--color-009);
    position: absolute;
    top: -0.7rem;
    left: -1rem;
    z-index: 2;

    aspect-ratio: 1;
}

.list-article-ranking .item-article:first-of-type .item-inner figure::before {
    background: #e3b150;
}

.list-article-ranking .item-article:nth-of-type(2) .item-inner figure::before {
    background: #8d9aad;
}

.list-article-ranking .item-article:nth-of-type(3) .item-inner figure::before {
    background: #c69165;
}

.box-article-ranking .item-inner .box-image {
    width: 37%;
    position: relative;
}

.box-article-ranking .item-inner .box-title {
    width: 60%;
    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-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.box-article-ranking .item-inner .box-title .title {
    font-weight: 500;
    /* min15px max22px 599px */
    font-size: clamp(0.938rem, 0.436rem + 2.51vw, 1.375rem);
    line-height: 1.25;
    letter-spacing: 0;
}

.box-article-ranking .item-inner .box-title .date {
    margin-top: 0.5rem;
    /* min12px max17px 599px */
    font-size: clamp(0.75rem, 0.392rem + 1.79vw, 1.063rem);
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: right;
}

.article-ranking-link {
    width: 100%;
    margin: 0 auto;
    margin-top: 2rem;
}

@media(min-width:1024px) {
    .section-article-ranking-container {
        padding-top: 8rem;
        padding-bottom: 11rem;
    }

    .box-article-ranking .list-article-ranking-wrap {
        padding: 3.1rem clamp(1rem, -4.859rem + 25vw, 4.5rem) 5rem clamp(1rem, -4.859rem + 25vw, 4.5rem);
    }

    .section-article-ranking-container .box-article-ranking {
        margin-top: 4rem;
    }

    .box-article-ranking .list-article-ranking {
        display: block;
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        /*   width: fit-content; */
        -webkit-column-gap: 3.3em;
        -moz-column-gap: 3.3em;
        column-gap: 3.3em;
    }

    .box-article-ranking .list-article-ranking .item-article {
        display: inline-block;
        margin-bottom: 0.8rem;
        padding: 0 8px 0.8rem;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .list-article-ranking .item-inner figure::before {
        width: 1.6rem;
        padding-bottom: 1px;
        font-size: 1rem;
        top: -0.5rem;
        left: -0.5rem;
    }

    .box-article-ranking .item-inner .box-image {
        width: 35%;
    }

    .box-article-ranking .item-inner .box-title {
        width: 62%;
    }

    .box-article-ranking .item-inner .box-title .title {
        font-size: 13px;
        line-height: 1.5;
    }

    .box-article-ranking .item-inner .box-title .date {
        margin-top: 0.2rem;
        font-size: 10px;
    }

    .article-ranking-link {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
}

/* ##### リゾートホテル特集 ##### */
.special-contents-wrap {
    margin-top: 2.3rem;
    padding-left: 2%;
}

.list-post-button:not(.article-instagram-link) .-alternative {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
}

.special-contents-img-wrap {
    overflow: hidden;
    border-radius: 0.5rem;
    position: relative;
}

.special-contents-img-wrap .text-on {
    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;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.special-contents-img-wrap .text-on h2 {
    padding: 0.8rem;
    font-weight: 500;
    font-size: 1.35rem;
    color: white;
    line-height: 1.2;
    text-align: center;
}

.special-contents-img-wrap .text-on h2 .sub {
    font-family: "Zen Maru Gothic", serif;
    font-size: 380%;
}

.special-contents-img-wrap .text-on h2 span {
    display: block;
}

.special-contents-article time {
    display: block;
    padding: 0.2rem 0.25rem;
    font-size: 1.1rem;
    color: var(--color-006);
    text-align: right;
}

.special-contents-article .title-15 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: clamp(1rem, 0.581rem + 1.79vw, 1.25rem);
    line-height: 2.3rem;

    -webkit-line-clamp: 2;
}

.special-contents-article .title-15 a {
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

    -webkit-line-clamp: 2;
}

.article-special-link {
    width: 100%;
    margin: 0 auto;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .special-contents-wrap {
        margin-top: 4rem;
        padding-left: 0;
    }

    .article-special-link {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
}

.swiper-03-wrap {
    overflow: hidden;
    position: relative;
}

.swiper-03-wrap .swiper-button-prev-03 {
    left: 0;
}

.swiper-03-wrap .swiper-button-next-03 {
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
    right: 0;
}

.swiper-03-wrap .swiper-button-prev-03,
.swiper-03-wrap .swiper-button-next-03 {
    width: 3rem;
    height: 3rem;
    top: 41%;
}

.swiper-03-wrap .swiper-button-prev-03::after,
.swiper-03-wrap .swiper-button-next-03::after {
    content: "";
    width: 100%;
    height: 100%;
    display: inline-block;
    background-image: url("/upload/tenant_1/icon-023.webp");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
}

.swiper-03-wrap .swiper-pagination {
    padding: 1rem 0 0;
    position: static;
}

.swiper-03-wrap .swiper-pagination-bullet {
    width: 0.75rem;
    height: 0.75rem;
    margin: 0 0.8rem !important;
    background-color: var(--color-006);
}

.swiper-03-wrap .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color-text-002);
}

@media (min-width: 1024px) {
    .swiper-03 {
        overflow: hidden;
    }

    .swiper-03-wrap {
        width: calc(100% + 3rem);
        margin-left: -2rem;
        padding: 0 1.5rem;
    }

    .swiper-03-wrap .swiper-button-prev-03,
    .swiper-03-wrap .swiper-button-next-03 {
        top: 35%;
    }

    .swiper-03-wrap .swiper-pagination {
        padding-top: 4rem;
    }
}

/* ##### ストリートスナップ ##### */
.section-snap-container .snap-contents-wrap .img::after {
    padding-top: calc(100%*(3 / 2));
}

.section-snap-container .snap-contents-wrap {
    overflow-x: scroll;
    margin-left: 1rem;
}

.section-snap-container .snap-contents {
    width: 188vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 4rem;
    padding-bottom: 1rem;
    padding-right: 3%;
}

.section-snap-container .snap-contents .snap-contents-article {
    width: calc(25% - 5px);
}

.section-snap-container .snap-contents .snap-contents-article .snap-contents-img-wrap {
    overflow: hidden;
    margin-bottom: 0.5rem;
    border-radius: 0.2em;
}

.section-snap-container .snap-contents .snap-contents-article .text {
    margin-bottom: 0;
    font-size: clamp(1rem, 0.581rem + 1.79vw, 1.25rem);
    color: var(--color-text-002);
    line-height: 1.6;
}

.article-snap-link {
    width: calc(100% - 2rem);
    margin-top: 2rem;
}

@media(min-width:599px) {
    /*   .section-snap-container .section-snap-list {
      margin-left: 13%;
  } */

    .section-snap-container .section-snap-list .btn-03 {
        margin-top: 2.5rem;
    }

    .article-snap-link {
        width: 87%;
    }

    .section-snap-container .snap-contents {
        width: 120vw;
    }
}

@media(min-width:1024px) {
    .section-snap-container .snap-contents-wrap {
        max-width: 85%;
        overflow-x: unset;
        margin: 0 auto;
    }

    .section-snap-container .snap-contents {
        width: 100%;
        padding-right: 0;
    }

    .section-snap-container .snap-contents .snap-contents-article {
        width: 22%;
    }

    .section-snap-container .section-snap-list {
        margin-left: 0;
    }

    .article-snap-link {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .section-snap-container .snap-contents .snap-contents-article .text {
        font-size: 14px;
    }
}

/* ##### 沖縄の気候と服装 ##### */
.section-climate-container .text {
    font-size: 14px;
    color: var(--color-text-002);
}

.section-climate-container .climate-contents-wrap {
    margin-top: 2rem;
}

.section-climate-container .climate-contents-wrap .climate-contents {
    width: 90%;
    margin: 0 auto;
}

@media(min-width:599px) {
    .section-climate-container .climate-contents-wrap {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .section-climate-container .climate-contents-wrap .climate-contents {
        width: 70%;
        margin: 4rem auto 0;
    }
}

/* ##### Instagram ##### */
.section-instagram-container {
    padding-top: clamp(6rem, 0.978rem + 21.43vw, 9rem);
    padding-bottom: clamp(6rem, 0.978rem + 21.43vw, 9rem);
}

.section-instagram-container .text {
    font-size: 14px;
    color: var(--color-text-002);
}

.section-instagram-container .instagram-contents {
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 2.5rem auto 0;
}

.section-instagram-container .instagram-contents li:nth-child(n + 5) {
    display: none;
}

.section-instagram-container .instagram-contents li {
    width: 50%;
}

.section-instagram-container .instagram-contents li a {
    position: relative;
}

.section-instagram-container .instagram-contents li a::before {
    content: "";
    width: 1.2rem;
    background: url(/import/tenant_1/162.43.9.96/html2/images/common/icon-022.webp) no-repeat;
    background-size: contain;
    -webkit-filter: invert(1) brightness(10);
    filter: invert(1) brightness(10);
    position: absolute;
    top: 0.3rem;
    left: 0.3rem;
    z-index: 2;

    aspect-ratio: 448 / 453;
}

.section-instagram-container .instagram-contents li a .insta-like {
    display: none;
}

.section-instagram-container .instagram-contents li a .insta-date {
    display: none;
}

.article-instagram-link {
    width: 100%;
    margin: 0 auto;
    margin-top: 4rem;
}

.article-instagram-link .btn-03 a {
    padding: 1rem 2rem;
}

@media(min-width:599px) {
    .section-instagram-container .instagram-contents {
        width: 100%;
    }

    .section-instagram-container .instagram-contents li {
        width: 25%;
    }

    .section-instagram-container .instagram-contents li:nth-child(n + 5) {
        display: block;
    }

    .section-instagram-container .instagram-contents li:nth-child(n + 9) {
        display: none;
    }
}

@media(min-width:1024px) {
    .section-instagram-container .instagram-contents {
        margin-top: 4rem;

        gap: 20px;
    }

    .section-instagram-container .instagram-contents li {
        width: calc((100% - 80px) / 5);
    }

    .section-instagram-container .instagram-contents li:nth-child(n + 9) {
        display: block;
    }

    .article-instagram-link {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin-top: 4rem;
    }
}
