:root {
    --dark-pink: #ff4873;
    --main-pink: #f387a1;
    --light-pink: #fce4e4;
    --dark-blue: #1e97ba;
    --main-blue: #6abbd3;
    --light-blue: #e4f3f8;
    --main-yellow: #ffff00;
    --dark--brown: #916C37;
    --main-brown: #b78846;
    --light-brown: #f8f3ec;
}

.pd10 {
    padding: 8px;
    margin-bottom: 8px;
}



.pdl20 {
    padding-left: 20px;
}

.colum-c {
    display: flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mask0101 {
    overflow: hidden;
    border-radius: 0 20px 0 20px;
    height: 100%;
}

.mask0101 img {
    max-width: 100%;
}

.mask1111 {
    overflow: hidden;
    border-radius: 10px;
    max-width: 100%;
}

.mask_round {
    overflow: hidden;
    border-radius: 200px;
}

#menu {
    box-shadow: 0 8px 7px -4px rgba(0, 0, 0, .16);
    margin-bottom: 4px;
}

.ui-static-navigation .ui-static-image-img {
    border-radius: 0%;
    flex-grow: 1;
    height: 30px;
    color: transparent;
    object-fit: contain;
}

/***youtube***/
#ytube {
    background-color: var(--light-blue);
}

h2 {
    font-size: 1.75rem;
    color: var(--dark-blue);
    text-align: center;
    font-weight: bold;
    margin-bottom: 16px;
}

h2 span {
    display: block;
    color: #000;
    font-size: 1.25rem;
}

h3 {
    text-align: center;
    font-weight: bold;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

h3 img {
    height: 40px;
}

h3 span {
    display: block;
    font-size: 1.1rem;
}

h3 span.inline_b {
    display: inline-block;
}

#exp h3 {
    line-height: 1.1em;
}

#siteseen h4 {
    text-align: center;
    font-weight: bold;
    font-size: 1.25rem;
    color: var(--dark-blue);
}

#siteseen h4 span {
    display: inline-block;
    background: var(--dark--brown);
    color: #FFF;
    font-size: 1rem;
    padding: 1px 3px;
    margin-right: 8px;
}

#exp h4 {
    text-align: center;
    font-weight: bold;
    font-size: 1.4rem;
    color: var(--dark-blue);
}

.exp2 h4 {
    text-align: left;
}

#map img {
    max-width: 100%;
}

/****MV****/
#title {
    position: relative;
}

#title .slideimg {
    position: absolute;
    opacity: 0;
    animation: itmFade3-chg-itm-anim 20s infinite;
}

/* 最初の画像だけ親要素の高さを確保させる */
#title .slideimg.img1 {
    animation-delay: 0s;
}

/* 2枚目の画像のアニメーション遅延 */
#title .slideimg.img2 {
    animation-delay: 5s;
}

#title .slideimg.img3 {
    animation-delay: 10s;
}

#title .slideimg.img4 {
    animation-delay: 15s;
}

/* フェードイン・アウトのアニメーション */
/* アニメーションの進行 */
@keyframes itmFade3-chg-itm-anim {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    50% {}

    /**
   * 画像が4枚のため1枚当たり25%
   * 1枚目->2枚目(25%・不透明から50%・透明)にフェードして切り替える
   * 50%到達(全体アニメーション時間の半分)で前の画像が見えなくなる
   */

    100% {
        opacity: 0;

    }
}

#title .logo {
    position: absolute;
    bottom: -1px;
}

/***point***/
#point {
    background-color: var(--light-blue);
    background-image: url(../img/lantern_bg.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 96%;
}

.point_inner {
    background-image: url(../img/nami.svg);
    background-repeat: repeat-x;
    background-position: bottom;
}

#point .point_wrapper {
    background: #FFF;
    border: 5px double var(--main-blue);
    padding: 10px;
    position: relative;
}

#point ul.point_list {
    counter-reset: my-counter;
}

#point .point_list>li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

#point .point_list>li:before {
    content: counter(my-counter);
    counter-increment: my-counter;
    background-color: var(--dark-blue);
    border: 1px solid;
    border-radius: 50%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: 25px;
    color: #ffffff;
    font-size: 85%;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
}

#point .point_list>li span {
    color: var(--dark-pink);
}



#point .souvenir {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

#point .souvenir li {
    padding: 2px 12px 3px;
    background: var(--main-blue);
    color: #FFF;
    border-radius: 1rem;
    font-size: 0.875rem;
}


/***siteseen****/
.label {
    position: absolute;
    left: 0;
    top: 0;
    background: var(--dark-blue);
    color: #FFF;
    padding: 2px 5px;
}

.fkds_wrap {
    position: relative;
    margin-top: 20px;
}

.fkds_wrap::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -30px;
    width: 160px;
    height: 110px;
    background-image: url(../img/halong_pop.png);
    background-size: cover;
}

.sc_wrap {
    border: 4px double var(--main-brown);
    padding: 10px;
}

.sc_title {
    display: block;
    background: var(--main-brown);
    color: var(--main-yellow);
    text-align: center;
    margin: 0 auto;
    padding: 2px 5px;
    border-radius: 16px;
    width: 50%;
    margin-top: 10px;
    font-size: 1.25rem;
}

.sc_wrap dl {
    position: relative;
    display: flex;
    width: 95%;
    margin: 0 auto;
    font-size: 1.1rem;
    padding-bottom: 5px;
}

.sc_wrap dt::before {
    z-index: 1;
    position: absolute;
    top: 0px;
    right: 0%;
    width: 1.5px;
    height: calc(100% + 5px);
    background-color: var(--main-brown);
    content: "";
}

.sc_wrap dt {
    width: 15%;
    margin-right: 2%;
    position: relative;
}

.sc_wrap dd {
    width: 80%;
    padding-left: 5px;
}

.sc_wrap dt::after {
    position: absolute;
    top: .7em;
    right: 0;
    transform: translate(50%, -50%);
    width: .9em;
    height: .9em;
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: var(--main-brown);
    content: "";
}

.sc_wrap dd span {
    font-weight: bold;
    color: var(--main-brown);
}

.haro {
    text-align: center;
}

.haro p {
    line-height: 1.3;
    margin-top: 5px;
}

.haro span {
    display: block;
    color: var(--dark--brown);
    font-size: 1.25rem;
    font-weight: bold;
}

.circle {
    padding: 40px 30px;
    border-radius: 50%;
    /*border: 5px dotted var(--light-brown);*/
    background: var(--light-brown);
}

.haro_ttl {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss .col4 {
    position: relative;
}

.halon_pop {
    position: absolute;
    right: -20px;
    top: 0;
    width: 26%;
}

/****gourmet*****/
#gourmet {
    background: url(../img/tile_p.jpg);
    background-size: 5%;
}

.gourmet_inner {
    background: url(../img/lantern_bg.png) center top no-repeat;
    background-size: 96%;
}

.gourmet_inner p {
    text-align: center;
    margin: 20px auto 0;
}

.gourmet_inner p b {
    font-size: 1.1rem;
}

.pink_b {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--dark-pink);
}

@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.scroll-infinity {
    padding-bottom: 32px;
}

.scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
    margin-bottom: 16px;
}

.scroll-infinity__list {
    display: flex;
    list-style: none;
    padding: 0;
}

.scroll-infinity__list--left {
    animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__item {
    padding: 10px;
    width: calc(100vw / 3.5);
}

.scroll-infinity__item>img {
    width: 100%;
}

/***exp***/
.number {
    display: block;
    text-align: center;
    font-size: 10rem;
    color: var(--main-blue);
    line-height: 1.1;
    position: relative;
}

.number::after {
    content: '';
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: var(--light-blue);
    bottom: -50px;
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    z-index: -1;

}

.number_s {
    display: block;
    padding: 0 20px;
    text-align: center;
    font-size: 6rem;
    color: var(--main-blue);
    line-height: 1;
    position: relative;
}

.number_s::after {
    content: '';
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background-color: var(--light-blue);
    bottom: -15px;
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    z-index: -1;

}

.exp1_p {
    margin: 48px 21px 21px;
}

.blue_w {
    background-color: #10069F;
    color: #FFF;
    display: inline-block;
    padding: 0 8px 1px;
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.mask_round img {
    max-width: 100%;
}

.chef {
    position: absolute;
    width: 30%;
    bottom: 0;
    left: 0;
}

.exp_2 {
    list-style: none;
    margin: 24px 8px 0;
}

.exp_2 li {
    padding-left: 30px;
    line-height: 1.6em;
    background: url(../img/point.svg) left 0px top 7px no-repeat;
    background-size: 24px auto;
}

.exp_2 span {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--dark-blue);
}

.pop3 {
    position: absolute;
    bottom: -12px;
    right: -10px;
    width: 180px;
}

.pop6 {
    position: absolute;
    top: -12px;
    left: -10px;
    width: 180px;
}

.ui-static-slider-pagination-out .swiper-pagination-bullet {
    background-color: var(--main-blue);
    margin: 0;
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.6);
}


.ui-static-slider-pagination-out .swiper-pagination-bullet-active {
    box-shadow: none;
    background-color: var(--dark-blue);
}

.ui-static-slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 6px;
}

.num_l {
    width: 20%;
}

.num_r {
    width: 80%;
}

/**hotel**/
#hotel {
    background-color: #f6f1eb;
    background-image: url(/kaigai/asia/vietnam/jujitsu/img/hotel.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

.hotel_inner {
    background-image: url(/kaigai/asia/vietnam/jujitsu/img/hotel_right.png);
    background-position: right -40px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 30%;
}

.hotel_inner2 {
    background-image: url(/kaigai/asia/vietnam/jujitsu/img/hotel_left.png);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 30%;
}

.hotel_txtw {
    background: #b78846bf;
    padding: 26px;
    color: #FFF;
    height: auto;
    position: absolute;
    border-radius: 0 20px 0 20px;
}


.hotel_txtw span {
    display: block;
    text-align: center;
    font-weight: 100;
}

.hotel_txtw ul {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 8px;
    position: relative;
}

.hotel_txtw ul li:first-child {
    border: 1px solid #FFF;
    padding: 1px 5px;
}

.hotel_txtw ul li:nth-child(2) {
    background: var(--main-brown);
    padding: 1px 5px;
}

.hotel_txtw ul li.hotel_icon {
    position: absolute;
    left: -14%;
    top: -50px;
}

.hotel_txtw ul li.hotel_icon img {
    width: 53%;
}

.h_name {
    font-size: 1.25rem;
    border-bottom: 1px solid #FFF;
    line-height: 1.2em;
    padding-bottom: 5px;
    font-weight: 400 !important;
}


/**travel**/
#travel {
    background: url(../img/tile_b.jpg) repeat;
    background-size: 4%;
}

.ui-static-tab-button {
    color: var(--dark-blue);
    background-color: #FFF;
    border: 1px solid var(--dark-blue);
}

.ui-static-tab-button.is-active {
    background: var(--dark-blue);
}

.ui-static-tab-button.is-active::before {
    display: none;
}

.tv_icon {
    margin-bottom: 5px;
}

.tv_icon span {
    background-color: var(--dark-pink);
    color: #FFF;
    padding: 1px 12px 3px;
    border-radius: 20px;
    font-weight: bold;
}

.ui-static-product-card--tertiary .ui-static-product-card-label {
    display: inline-block;
}

.ui-static-product-card-label {
    margin-right: 5px;
}

.more_btn {
    text-align: center;
    margin-top: 20px;
}

.ui-static-button-primary {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
}


/***ad***/
#recArea h3 span {
    display: inline-block;
}

#ad h3 {
    position: relative;
    margin-bottom: 30px;
}

#ad h3::after {
    content: '';
    width: 10%;
    height: 3px;
    background-color: var(--dark-pink);
    position: absolute;
    bottom: -10px;
    left: 45%;

}

/*スマホのみ*/
@media screen and (max-width: 767px) {
    #map1 {
        display: none;
    }

    .fixed {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 10000;
        background: #FFF;
    }

    .fixed .ui-static-navigation-sp-col2 .ui-static-navigation-ul {
        padding: 14px 20px;
        gap: 6px;
    }

    .fixed .ui-static-navigation-sp-col2 .ui-static-navigation-ul li {
        margin: 2px 0;
    }

    .sp_flex {
        display: flex;
    }

    .sp_flex.f-wrap {
        flex-wrap: wrap;
    }

    .sp_margin20 {
        margin: 16px 0;
    }

    .reverse,
    .sp_reverse {
        flex-direction: column-reverse;
    }

    .sp_reverse_col {
        flex-direction: column-reverse;
    }

    #siteseen h4 {
        font-size: 1.1rem;
        margin: 2px 0 0;
    }

    #siteseen h4 span {
        font-size: .8rem;
        margin-right: 5px;
    }

    #title {
        width: 100%;
        aspect-ratio: 15 / 12;
        padding-bottom: 1px;
    }

    #title .slideimg {
        background-position: center;
        background-repeat: no-repeat;
        aspect-ratio: 15 / 12;
        width: 100%;
    }

    #title .slideimg.img1 {
        background-image: url(../img/main_sp_bg1.jpg);
    }

    #title .slideimg.img2 {
        background-image: url(../img/main_sp_bg2.jpg);
    }

    #title .slideimg.img3 {
        background-image: url(../img/main_sp_bg3.jpg);
    }

    #title .slideimg.img4 {
        background-image: url(../img/main_sp_bg4.jpg);
    }

    #title .logo {
        background-image: url(../img/main_sp.png);
        width: 100%;
        background-position: center;
        background-repeat: no-repeat;
        aspect-ratio: auto 750 / 576;
        z-index: 10;
        border-bottom: 2px solid #FFF;
        background-size: contain;
    }
    .sakata{
        margin-bottom:8px;
    }

    #point .souvenir {
        width: 100%;
        margin-left: -15px;
        justify-content: center;
    }

    .ss h4 span {
        display: block;
        margin-right: 0;
    }

    .sp_flex.gap10 .col2,
    .sp_flex.gap10 .col4 {
        width: calc(50% - 5px);
    }

    .sp_flex.gap10 {
        gap: 10px;
    }

    .pdr20 {
        margin: 0;
    }

    .pd10 {
        padding: 5px
    }

    .ui-static-section-wrapper {
        padding: 40px 20px;
    }

    #map .ui-static-section-wrapper {
        padding: 10px;
    }

    #title {
        background: #FFF;
    }

    #title img {
        width: 100%;
    }

    #menu .ui-static-section-wrapper {
        padding: 0;
    }

    .ui-static-navigation-sp-col2 .ui-static-navigation-ul .ui-static-navigation-item [class^=ui-static-link] {
        justify-content: left;
    }

    .ui-static-navigation .ui-static-image-img {
        border-radius: 0%;
        flex-grow: inherit;
        height: auto;
        width: 20%;

    }

    #ytube iframe {
        width: 100%;
        aspect-ratio: 16 / 9;
        height: auto;
    }

    #ytube .colum-c p {
        margin-bottom: 20px;
    }

    #point {
        overflow: visible;
    }

    .haro img {
        margin-top: 0;
        width: 100%;
        ;
    }

    .circle {
        padding: 30px 23px;
    }

    .ss img {
        max-width: 100%;
    }

    .sc_wrap {
        margin: 15px 0;
    }

    .sc_wrap dl::before {
        left: 17.6%;
    }

    .sc_wrap dt {
        width: 20%;
    }

    .sc_wrap p {
        margin-top: 7px;
    }

    .fkds_wrap::after {
        left: -24px;
    }

    .gourmet_inner p {
        width: 78%;
    }

    .scroll-infinity__item {
        padding: 10px;
        width: calc(100vw / 1.3);
    }

    .ui-static-slider-pagination-out .swiper-pagination-bullet {
        background-color: var(--ui-static-white);
        margin: 0;
    }

    .ui-static-slider-pagination-out .swiper-pagination-bullet-active {
        box-shadow: none;
        background-color: var(--ui-static-white);
        opacity: 1;
    }

    .number {
        line-height: .9em;
        font-size: 8rem;
    }

    .number::after {
        width: 120px;
        height: 120px;
        bottom: -30px;
        font-size: 1.25rem;
    }

    #exp h4 {
        text-align: left;
        padding-top: 10px;
        line-height: 1.2;
        font-size: 1.25rem;
    }

    .exp1_p {
        margin: 10px 0 20px;
        font-size: .9rem;
    }

    .exp2 img {
        max-width: 100%;
        margin-top: 15px;
    }

    .exp_2 {
        margin: 10px 0 0;
        font-size: .9rem;
    }

    .exp2 .pd10 {
        padding: 0 0 16px;
        margin-bottom: 0;
    }

    .number_s {
        padding: 0;
    }

    .ui-static-banner-size-350x350 {
        width: calc(50% - 5px);
    }

    .ui-static-tab-col-4 .ui-static-tab-button-list .ui-static-tab-button {
        min-width: auto;
    }

    #travel {
        background-size: 10%;
    }

    .tour_imgbox img {
        max-width: 100%;
    }

    .tour_mainwrap {
        background-color: #FFF;
        padding: 10px;
    }

    .tour_mainwrap .hotel0104 {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }

    #hotel h3 {
        font-size: 1.25rem;
    }

    .hotel_inner {
        overflow: hidden;
        background-size: 60%;
    }

    .hotel_inner2 {
        background-size: 60%;
    }

    .hotel01_wrap,
    .hotel02_wrap {
        position: relative;
        padding-top: 30px;
        padding-bottom: 200px;
    }

    .hotel02_wrap {
        padding-bottom: 230px;
    }

    .hotel_01,
    .hotel_02 {
        margin-left: -20px;
        border-radius: 0;
    }

    .htl01_ttl,
    .htl02_ttl {
        max-width: 100%;
        position: absolute;
        top: 10px;
    }

    .htl02_ttl {
        transform: rotate(-10deg);
    }

    .hotel01_text,
    .hotel02_text {
        bottom: 10px;
        right: -20px;
    }

    .hotel0102 {
        margin-left: -100px;
        margin-top: 10px;
    }

    .hotel0103 {
        margin-right: -30px;
    }

    .hotel0102 img,
    .hotel0103 img {
        width: 100%;
    }

    .hotel0104 {
        margin-top: 10px;
    }

    .hotel0104 img {
        width: 96%;
    }

    .hotel0203 {
        margin-right: -100px;
        overflow: hidden;
        border-radius: 0 20px 0 20px;
    }

    .hotel0204 {
        margin-left: -30px;
    }

    .hotel0203 img {
        margin-top: 10px;
        margin-left: -20px;
    }

    img.hotel01_cover {
        position: absolute;
        left: 10px;
        bottom: -15px;
        width: 60%;
    }

    .hotel02_cover {
        position: absolute;
        left: -30px;
        top: -10px;
        width: 80%;
    }

    .hotel0205 img {
        width: 96%;
        margin-top: 10px;
    }

    .sp_reverse {
        flex-direction: row-reverse;
    }

    .sp_reverse img {
        width: 100%;
    }

    .hotel_txtw p {
        font-size: 0.875rem;
        margin-top: 10px;
    }

    #travel h4 {
        font-size: 1.1rem;
        font-weight: bold;
    }

    #travel .gap20 {
        gap: 20px;
        display: flex;
        flex-direction: column;
    }

    .ui-static-product-card .ui-static-product-card-label {
        position: static;
    }

    .page-top {
        bottom: 16px;
        right: 30px;
    }
}

/*タブレット以上*/
@media screen and (min-width: 768px) {
    #map2 {
        display: none;
    }

    .sp_only {
        display: none;
    }

    .pd20 {
        padding: 16px;
    }

    .pdr20 {
        padding-right: 16px;
    }

    .flex {
        display: flex;
    }

    .reverse {
        flex-direction: row-reverse;
        margin-top: 48px;
    }

    .f-wrap {
        flex-wrap: wrap;
    }

    .f-colum {
        flex-flow: column;
    }

    .col1 {
        width: 100%;
    }

    .col2 {
        width: 50%;
    }

    .col2 img {
        max-width: 100%;
        height: auto;
    }

    .gap10 {
        gap: 8px;
    }

    .gap20 {
        gap: 16px;
    }

    .gap10 .col2 {
        width: calc(50% - 5px);
    }

    .col3-1 {
        width: calc((100% / 5) *2);
    }

    .col3-2 {
        width: calc((100% / 5) * 3);
    }

    .gap10 .col4 {
        width: calc((100% - 24px) / 4);
    }

    .ui-static-section-wrapper {
        padding: 40px 0;
    }

    #title {
        height: 550px;
    }

    #title .slideimg {
        background-position: center;
        background-repeat: no-repeat;
        height: 550px;
        width: 100%;
    }

    #title .slideimg.img1 {
        background-image: url(../img/main_pc_bg1.jpg);
    }

    #title .slideimg.img2 {
        background-image: url(../img/main_pc_bg2.jpg);
    }

    #title .slideimg.img3 {
        background-image: url(../img/main_pc_bg3.jpg);
    }

    #title .slideimg.img4 {
        background-image: url(../img/main_pc_bg4.jpg);
    }

    #title .logo {
        background-image: url(../img/main_pc.png);
        width: 100%;
        background-position: center;
        background-repeat: no-repeat;
        height: 529px;
        z-index: 10;
        border-bottom: 2px solid #FFF;
    }

    #menu.fixed {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 10000;
        background: #FFF;
    }

    #menu .ui-static-section-wrapper {
        padding: 10px 0;
    }

    .sakata {
        width: 86%;
        display: block;
        margin: 8px auto;
    }

    .ui-static-navigation-variant-primary .ui-static-navigation-ul {
        box-shadow: none;
    }

    .ui-static-navigation-variant-primary .ui-static-navigation-ul {
        gap: 20px;
    }

    .ui-static-navigation-size-default .ui-static-navigation-ul .ui-static-navigation-item:not(:last-of-type) {
        padding-right: 25px;
    }

    .ui-static-navigation-item>*,
    .ui-static-navigation-item [class^=ui-static-link] {
        display: flex;
        flex-direction: column;
    }

    .ui-static-navigation-variant-primary .ui-static-navigation-item:not(:last-of-type):after {
        height: 20px;
    }

    #point .point_wrapper {
        width: 76%;
        margin: 10px auto;
        padding: 24px 48px;
    }

    #point .point_wrapper::after {
        content: '';
        position: absolute;
        right: -20px;
        bottom: -70px;
        width: 230px;
        height: 230px;
        background-image: url(../img/point.png);
        background-size: cover;
    }
    .sp_margin20 {
        margin-bottom: 8px;
    }

    .gourmet_inner p {
        width: 62%;
    }

    #siteseen img {
        max-width: 100%;
    }

    .ss h4 {
        margin: 5px 0;
    }

    .swiper-wrapper {
        margin-right: 60px;
    }

    .hotel01_wrap {
        position: relative;
        margin-top: 40px;
        margin-left: 50px;
        padding-bottom: 70px;
        margin-bottom: -20px;
    }

    .hotel02_wrap {
        position: relative;
        margin-top: 40px;
        margin-left: 50px;
        padding-bottom: 100px;
    }

    .hotel_01 {
        width: 60%;
        margin-left: 30%;
    }

    .hotel_02 {
        width: 60%;
        margin-right: 30%;
    }

    .hotel_01 img,
    .hotel_02 img {
        max-width: 100%;
    }

    .htl01_ttl {
        position: absolute;
        left: 0;
        top: 10px;
    }

    .htl02_ttl {
        position: absolute;
        right: 8%;
        top: 10px;
    }

    .hotel_txtw {
        width: 38%;
        min-width: 400px;
    }

    .hotel01_text {
        left: -5%;
        bottom: -20px;
    }

    .hotel02_text {
        right: 5%;
        bottom: -20px;
    }

    .hotel_txtw p {
        margin-top: 21px;
    }

    .hotel0104 img.hotel01_cover {
        position: absolute;
        right: 10px;
        top: -20px;
        width: 50%;
    }

    .hotel02_cover {
        position: absolute;
        left: 10px;
        top: 30px;
        width: 40%;
    }

    .hotel0104 {
        position: relative;
        margin-top: 21px;
    }

    .hotel0104 img {
        width: 70%;
        margin-left: 10%;
    }

    .hotel0205 img {
        width: 70%;
        margin-left: 20%;
    }

    .hotel_txtw ul li.hotel_icon {
        position: absolute;
        left: -16%;
        top: -70px;
    }

    .hotel_txtw ul li.hotel_icon img {
        width: 66%;
    }

    .ui-static-tab-col-4 .ui-static-tab-button-list {
        gap: 16px;
    }

    .c_tourwrap .tour_imgbox {
        width: 30%;
        height: 100%;
        overflow: hidden;
    }

    .c_tourwrap .tour_imgbox img {
        width: 200%;
        height: 100%;
        aspect-ratio: 432 / 257;
        object-fit: cover;
        transition: all .1s ease-in;
        transform: translateX(-25%);
    }

    .c_tourwrap:hover .tour_imgbox img {
        transform: scale(1.1);
    }

    .tour_mainwrap {
        background: #FFF;
        padding: 16px;
        width: 70%;
    }

    .c_tourwrap h4 {
        font-size: 1.3rem;
        font-weight: bold;
        margin: 3px 0;
    }

    .y_arrow {
        margin-left: 10px;
        margin-top: 2px;
    }

    .ui-static-banner-size-350x350 {
        width: calc((100% - 30px) / 4);
    }

    .ui-static-product-card .ui-static-product-card-label {
        position: static;
    }
}

/*タブレット以下*/
@media (width < 1103px) {
    .sc_wrap p {
        font-size: .8rem;
    }
}

/*PC*/
@media (width > 1104px) {
    .ui-static-section-wrapper {
        overflow: visible;
    }


    .ui-static-navigation-variant-primary .ui-static-navigation-ul {
        gap: 30px;
    }

    .ui-static-navigation-size-default .ui-static-navigation-ul .ui-static-navigation-item:not(:last-of-type) {
        padding-right: 29px;
    }

    #point .point_wrapper {
        width: 65%;
    }

    .sc_wrap dl {
        width: 90%;
    }

    .haro img {
        margin-top: -50px;
    }

    .sc_wrap dt::after {
        right: 1%;
    }

    .gourmet_inner p {
        width: 55%;
    }

    .col3-1 {
        width: calc(100% / 3);
    }

    .col3-2 {
        width: calc((100% / 3) * 2);
    }

    #exp .exp2 h4 {
        text-align: left;
    }

    #exp .col3-2 {
        padding: 0 30px;
    }

    .c_tourwrap .tour_imgbox img {
        width: 100%;
        transition: all .1s ease-in;
        transform: translateX(0);
    }

    .hotel01_wrap {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .hotel02_wrap {
        padding-bottom: 0;
    }

}