@charset "utf-8";

/*-------------------top-------------------*/
.maini_link{
    padding: 3.75vw 0 0;
}
.maini_link ul{
    display: flex;
    justify-content: center;
}
.maini_link li{
    width: 23.5vw;
    margin: 0 0.5vw;
}
/*.maini_link li a{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e37342;
    border: 3px solid #fdf5e3;
    border-radius: 0.7vw;
    font-size: 1.6vw;
    height: 6.2vw;
    color: #fff;
    box-shadow: 0 0 0.5vw rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    position: relative;
}
.maini_link li a:hover{
    background: #937A64;
}
.maini_link li a:before{
    background: url("../images/icon/arrow_b.svg") 0 0 no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    width: 1.6vw;
    height: 1.6vw;
    left: 50%;
    transform: translateX(-50%);
    bottom: -0.8vw;
    content: '';
    z-index: 2;
    position: absolute;
}
.maini_link li a img{
    margin-right: 0.7vw;
}
.maini_link li:nth-child(1) img{
    width: 3.1vw;
}
.maini_link li:nth-child(2) img{
    width: 1.3vw;
}
.maini_link li:nth-child(3) img{
    width: 1.5vw;
}*/
.message{
    margin-top: 9vw;
    position: relative;
}
.message_box{
    max-width: 65vw;
    margin: 0 auto;
    padding: 5vw 0 6vw;
    text-align: center;
    background: #fdf5e3;
    position: relative;
    border-radius: 0.6vw;
}
.message_box:before{
    background: url("../images/icon/icon_pos01.webp") 0 0 no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    width: 0.2vw;
    height: 6.1vw;
    left: 50%;
    transform: translateX(-50%);
    bottom: -3.1vw;
    content: '';
    z-index: 2;
    position: absolute;
}
.message_box .pos01{
    position: absolute;
    top: -3vw;
    left: -8.75vw;
    z-index: 2;
    width: 23vw;
}
.message_box .pos02{
    position: absolute;
    top: -2.25vw;
    right: -7.3vw;
    z-index: 2;
    width: 20vw;
}
.message_box .pos03{
    position: absolute;
    bottom: -3.6vw;
    left: -8vw;
    z-index: 2;
    width: 14.5vw;
}
.message_box .pos04{
    position: absolute;
    bottom: -1.5vw;
    right: -8.6vw;
    z-index: 2;
    width: 18.5vw;
}
.message_logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.message_logo p:nth-child(1) img{
    width: 18.5vw;
    margin-right: 2.5vw;
}
.message_logo p:nth-child(2) img{
    width: 11vw;
}
.message_txt{
    font-size: 1.25vw;
    font-weight: 500;
    line-height: 2.6;
    margin-top: 2vw;
}
.job_img{
    margin-top: 8.7vw;
    position: relative;
}
.job_move{
    position: absolute;
    bottom: -2vw;
    left: 0;
    width: 100%;
    z-index: 2;
}
.scroll-list {
    display: flex;
    list-style: none;
    padding-inline: 0;
    margin-inline: 0;
    gap: 0;
    /* overflow: hidden; */
    /* 幅を全画面に広げる */
    position: relative;
    left: calc(50% - 50vw);
    width: 100vw;
}
.scroll-list li {
    color: #fff;
    font-size: 5vw;
    line-height: 1;
    font-weight: bold;
    white-space: nowrap;
    padding: 0 2vw 0 0;
    margin: 0;
    text-transform: uppercase;
    animation: marquee-left 16s linear infinite;
}
@keyframes marquee-left {
    100% {
        transform: translateX(-100%);
    }
}
.point{
    padding: 11.5vw 0 0;
    background: url(../images/top/bg_travel_02.webp) no-repeat top center;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-attachment: fixed;
}
.point_tit01{
    text-align: center;
}
.point_tit01 img{
    width: 32.6vw;
}
.point_tit02{
    text-align: center;
    margin-top: 1.2vw;
    margin-bottom: 3vw;
}
.point_tit02 img{
    width: 31.35vw;
}
.point_cont{
    display: flex;
    justify-content: space-between;
}
.point_box{
    width: 76.3vw;
    margin: 0 auto;
    position: relative;
}
.point_box_pos{
    position: absolute;
    top: 3vw;
    right: -3.7vw;
    z-index: 2;
    width: 18.3vw;
}
.point_cont .img{
    width: 39.5vw;
    height: 30.62vw;
    position: relative;
}
.point_cont .img span{
    position: absolute;
    bottom: -4vw;
    left: -1.7vw;
    z-index: 2;
    width: 12vw;
    height: 12vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.point_cont .img span:before{
    background: url("../images/common/bg_yuan.svg") 0 0 no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    width: 12vw;
    height: 12vw;
    left: 0;
    top: 0;
    content: '';
    z-index: 2;
    position: absolute;
    animation: scroll-yuan 10s infinite linear .5s both;
}
@keyframes scroll-yuan {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.point_cont .img span img{
    width: 6.9vw;
    position: relative;
    z-index: 3;
}
.point_cont .des{
    width: calc(100% - 39.5vw);
    padding-left: 2.5vw;
    box-sizing: border-box;
}
.point_cont .des_flex{
    display: flex;
    justify-content: space-between;
}
.point_cont .des_en{
    width: 4vw;
}
.point_cont .des_box{
    width: calc(100% - 4vw);
    padding-right: 2vw;
    box-sizing: border-box;
}
.point_cont .des_tit{
    margin-bottom: 1.5vw;
}
.point_cont .des_tit img{
    height: 6vw;
}
.point_cont .des_txt{
    font-size: 1vw;
    line-height: 1.8;
}
.point_cont .des_img{
    margin-top: 2vw;
    text-align: center;
}
.point_cont .des_img img{
    width: 21.5vw;
}
.point_cont02{
    margin-top: 2.2vw;
}
.point_cont02 .img{
    width: 36.5vw;
    position: relative;
    order: 2;
    height: 31.25vw;
}
.point_cont02 .img span{
    position: absolute;
    bottom: auto;
    top: -2vw;
    left: auto;
    right: -1.5vw;
    z-index: 2;
    width: 12vw;
}

.point_cont02 .img span img {
    margin-top: -1.5rem;
}
.point_cont02 .img b{
    position: absolute;
    bottom: -6vw;
    left: auto;
    right: -1.5vw;
    z-index: 2;
    width: 20vw;
}
.point_cont02 .des{
    order: 1;
    padding-top: 3vw;
    width: calc(100% - 36.5vw);
    padding-left: 0;
    padding-right: 2.5vw;
    box-sizing: border-box;
}
.point_cont02 .des_en{
    width: 4vw;
    order: 1;
    position: relative;
    top: -6vw;
}
.point_cont02 .des_box{
    order: 2;
    width: calc(100% - 4vw);
    padding-right: 0;
    padding-left: 1vw;
    box-sizing: border-box;
}
.point_cont02 .des_img{
    text-align: left;
    margin-top: 3.5vw;
}
.point_cont03{
    margin-top: 3.25vw;
    position: relative;
}
.point_cont03 .des_box{
    margin-top: 1.5vw;
}
.point_cont03 .des_txt_small{
    margin-top: 0.6vw;
    font-size: 0.6vw;
}
.point_cont03 .des_img{
    text-align: right;
    margin-top: 3vw;
}
.point_cont03 .des_img img{
    width: 23.3vw;
}
.point_cont03_bottom{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.point_cont03_bottom img{
    width: 17.8vw;
}
.point_bg{
    position: relative;
}
.point_bg .scroll-list li{
    font-size: 7.2vw;
}
.inclusive{
    background: url("../images/top/bg_inclusive.webp") no-repeat top center;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-attachment: fixed;
    padding: 12.8vw 0 4.4vw;
}
.inclusive_box{
    max-width: 73%;
    background: #fdf5e3;
    border-radius: 0.7vw;
    margin: 0 auto;
    position: relative;
    padding: 4vw 4vw 3vw 5vw;
    box-sizing: border-box;
}
.inclusive_pos01{
    position: absolute;
    top: -8vw;
    left: -6vw;
    width: 17vw;
}
.inclusive_pos02{
    position: absolute;
    top: auto;
    bottom: -4vw;
    left: auto;
    right: -8.2vw;
    width: 13.3vw;
}
.inclusive_tit{
    position: absolute;
    top: -3.8vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.inclusive_tit img{
    width: 33vw;
}
.inclusive_flex{
    display: flex;
    justify-content: left;
    align-items: center;
}
.inclusive_flex .left{
    width: 24.8vw;
}
.inclusive_flex .right{
    width: calc(100% - 24.8vw);
    padding-left: 2.8vw;
    box-sizing: border-box;
    font-size: 1.45vw;
    font-weight: 500;
    line-height: 2;
    color: #6C3201;
}
.inclusive_flex .left ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: -1vw;
}
.inclusive_flex .left li{
    width: 6.4vw;
    margin: 0 0.4vw 1vw;
    text-align: center;
}
.inclusive_flex .left li .listimg img{
    width: 6vw;
}
.inclusive_flex .left li .listtxt{
    font-size: 0.9vw;
    font-weight: 700;
    color: #6C3201;
    margin-top: 0.5vw;
}
.inclusive_flex .left_txt{
    margin-top: 0.8vw;
    font-size: 0.6vw;
    color: #6C3201;
}
.slider-wrapper {
    margin-top: 7.7vw;
    display: flex; /* スライドのグループを横並び */
    overflow: hidden; /* はみ出たスライドを隠す */
    padding-bottom: 5.5vw;
}
.slider-wrapper li{
    margin-right: 20px;
}
/* スライド3枚のグループ */
.slider {
    animation: scroll-left 20s infinite linear .5s both;
    display: flex;
}
/* スライド */
.slide{
    width: 18.8vw;
}
.slide img {
    display: block;
    width: 100%;
}
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
/*.bg_travel{*/
/*    background: url("../images/top/bg_travel.webp") no-repeat top center;*/
/*    -webkit-background-size: 100%;*/
/*    background-size: 100%;*/
/*}*/

.travel{
    padding: 7.5vw 0 13vw;
    background: url("../images/top/bg_travel_01.webp") no-repeat top center;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-attachment: fixed;
}
.bg_travel_new{
    background: url("../images/top/bg_travel_02.webp") no-repeat top center;
    -webkit-background-size: 100%;
    background-size: 100%;
    padding: 10.7vw 0 0;
    background-attachment: fixed;
}
.travel_en{
    font-size: 0.75vw;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}
.travel_tit{
    text-align: center;
    margin: 0.6vw 0 1.9vw;
}
.travel_tit img{
    width: 15vw;
}
.travel_txt{
    font-size: 1.25vw;
    color: #fff;
    text-align: center;
    line-height: 1.8;
}
.travel_slider{
    margin-top: 8vw;
}
.travel_slider_box{
    border: 1vw solid #fff;
    border-radius: 1vw;
    background: #fff;
    box-shadow: 0 0 0.5vw rgba(0, 0, 0, 0.2);
}
.travel_slider_box .box{
    padding: 2vw 1.4vw;
    height: 16.6vw;
    box-sizing: border-box;
}
.travel_slider_tit{
    font-size: 1.75vw;
    font-weight: 700;
    color: #6C3201;
}
.travel_slider_txt{
    font-size: 1vw;
    margin-top: 0.5vw;
    line-height: 1.8;
}
.travel_slider_txt a{
    color: #E37342;
}
.travel_slider .slick-slide{
    margin: 0 1.5vw;
    padding: 2.2vw 0;
    opacity: 0.7;
}
.travel_slider .slick-slide.slick-center{
    margin-top: -2.2vw;
    opacity: 1;
}
.travel_slider .slick-prev{
    width: 2.5vw;
    height: 2.5vw;
    background: url("../images/icon/prev.svg") no-repeat 0 0;
    -webkit-background-size: contain;
    background-size: contain;
    left: 30vw;
    z-index: 99;
}
.travel_slider .slick-next{
    width: 2.5vw;
    height: 2.5vw;
    background: url("../images/icon/next.svg") no-repeat 0 0;
    -webkit-background-size: contain;
    background-size: contain;
    right: 30vw;
    z-index: 99;
}
.slick-prev:before,
.slick-next:before{
    display: none;
}
.travel_slider .slick-dots{
    bottom: 2vw;
}
.travel_slider .slick-dots li
{
    width: 1vw;
    height: 1vw;
    margin: 0 4px;
}
.travel_slider .slick-dots li button
{
    width: 1vw;
    height: 1vw;
    padding: 0;
    border: 1px solid #FFF;
    border-radius: 50%;
    background: transparent;
    box-sizing: border-box;
}
.travel_slider .slick-dots li.slick-active button{
    background: #fff;
}
.travel_slider .slick-dots li button:before
{
    display: none;
}
.travel_slider .slick-dots li.slick-active button:before
{
    opacity: 1;
    color: red;
}
.travel_flex{
    margin-top: 0;
}
.travel_flex_box{
    background: #fff;
    border-radius: 0.7vw;
    padding: 4vw 3vw 4vw 5.5vw;
    position: relative;
    display: flex;
    justify-content: left;
    align-items: center;
    box-sizing: border-box;
}
.travel_flex_tit{
    position: absolute;
    top: -1.5vw;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}
.travel_flex_tit img{
    width: 39.7vw;
}
.travel_flex_box .logo_img{
    width: 22.3vw;
}
.travel_flex_box .des{
    width: calc(100% - 22.3vw);
    padding-left: 4.5vw;
    font-size: 1.5vw;
    font-weight: 500;
    line-height: 2;
    color: #6C3201;
    box-sizing: border-box;
}

.explore{
    padding: 7.5vw 0 0;
}
.explore_en{
    font-size: 0.75vw;
    font-weight: 700;
    color: #6C3201;
    text-transform: uppercase;
    text-align: center;
}
.explore_tit{
    text-align: center;
    margin: 0.6vw 0 1.9vw;
}
.explore_tit img{
    width: 29.3vw;
}
.explore_txt{
    font-size: 1.25vw;
    color: #000;
    text-align: center;
}
.explore_link{
    margin-top: 4vw;
    border: 3px solid #927a64;
    background: #fff;
    padding: 1.7vw 2.2vw;
    border-radius: 0.7vw;
    box-sizing: border-box;
}
.explore_link dl+dl{
    margin-top: 1vw;
}
.explore_link dt{
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 1.25vw;
    font-weight: 700;
    color: #6C3201;
}
.explore_link dt img{
    margin-right: 0.5vw;
    height: 1.8vw;
}
.explore_link dl:nth-child(2) dt img{
    height: 1.5vw;
}
.explore_link dd{
    margin-top: 0.6vw;
}
.explore_link dd ul{
    display: flex;
    justify-content: left;
    margin-right: -1vw;
    flex-wrap: wrap;
}
.explore_link dd li{
    width: 11.2vw;
    margin-right: 1vw;
}
.explore_link dd .other{
    width: 6.3vw;
}
.explore_link dd li a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3vw;
    font-size: 1vw;
    color: #6C3201;
    border-radius: 1.5vw;
    background: #fdf5e3;
    border: 2px solid #927a64;
    padding: 0 1.5vw;
    font-weight: 500;
    box-sizing: border-box;
    cursor: pointer;
}
.explore_link dd li a:hover,
.explore_link dd li a.active{
    background: #e37342;
    border: 2px solid #e37342;
    color: #fff;
}
.explore_link dd li input[type="checkbox"] {
    display: none;
}

.explore_link .reset {
    margin-top: 3rem;
}

.explore_link .reset input[type="reset"] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3vw;
    font-size: 1vw;
    color: #444444;
    border-radius: 1.5vw;
    background: #fff;
    border: 2px solid #444444;
    padding: 0 1.5vw;
    font-weight: 500;
    box-sizing: border-box;
    cursor: pointer;
    width: 50%;
    margin: 0 auto;
} 

.explore_link .reset input[type="reset"]:hover {
    background: #444;
    color: #fff;
}
.explore_link dd li span{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3vw;
    font-size: 1vw;
    color: #6C3201;
    border-radius: 1.5vw;
    background: #fdf5e3;
    border: 2px solid #927a64;
    padding: 0 1.5vw;
    font-weight: 500;
    box-sizing: border-box;
    cursor: pointer;
}

.explore_link dd li input[type="checkbox"]:checked + span{
    background: #e37342;
    border: 2px solid #e37342;
    color: #fff;
}

.explore_list{
    margin-top: 2.5vw;
}
.explore_list_tit{
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 1.25vw;
    font-weight: 700;
    color: #6C3201;
}
.explore_list_tit img{
    width: 1.4vw;
    margin-right: 0.9vw;
}
.explore_list ul{
    display: flex;
    flex-wrap: wrap;
    margin: 1.2vw -2rem 0;
}
.explore_list li{
    width: 33.33%;
    margin-bottom: 4rem;
}

.explore_list li .listbox{
    border-radius: 0.7vw;
    transition: all 0.5s;
    margin: 0 2rem;

}
.explore_list li .listbox:hover{
    transition: all 0.5s;
    box-shadow: 0 0 0.5vw rgba(0, 0, 0, 0.2);
}

.explore_list li .listimg img {
    border-radius: 0.7vw 0.7vw 0 0;
    height: min(15.5vw,301px);
    object-fit: cover;
    width: 100%;
}
.explore_list li .listdes{
    background: #fff;
    padding: 1vw 1.2vw 2vw;
    border-radius: 0 0 0.7vw 0.7vw;
    box-sizing: border-box;
}
.explore_list li .bq span{
    display: inline-block;
    width: 58px;
    line-height: 28px;
    text-align: center;
    font-size: 13px;
    border-radius: 2px;
    border: 1px solid #6C3201;
    color: #6C3201;
}
.explore_list li .tit{
    font-size: 1.5vw;
    font-weight: 500;
    margin: 0.5vw 0;
    color: #6C3201;
}
.explore_list li .acc{
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 0.7vw;
}
.explore_list li .acc img{
    margin-right: 8px;
    width: 0.9vw;
}
.explore_list li .car{
    font-size: 0.7vw;
    margin-top: 0.5vw;
    display: flex;
    justify-content: left;
    align-items: center;
}
.explore_list li .car img{
    margin-right: 8px;
    width: 1.6vw;
}
.explore_list li .txt{
    margin-top: 0.5vw;
    font-size: 1vw;
    line-height: 1.8;
    margin-bottom: 0.5vw;
	overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 行数を指定 */
}
.explore_list02 li .txt{
    font-size: 0.9vw;
	overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 行数を指定 */
}
.explore_list li .tag{
    display: flex;
    justify-content: left;
}
.explore_list li .tag span{
    display: inline-block;
    width: 120px;
    font-size: 13px;
    line-height: 34px;
    border-radius: 17px;
    margin-right: 0.5vw;
    text-align: center;
    background: #fdf5e3;
    border: 2px solid #927a64;
    color: #6C3201;
}
.explore_list li .btn{
    margin-top: 1vw;
}
.explore_list li .btn a{
    display: block;
    font-size: 1vw;
    font-weight: 700;
    color: #fff;
    line-height: 2.8vw;
    text-align: center;
    border-radius: 1.4vw;
    background: url("../images/icon/icon_explore04.svg") no-repeat right 0.7vw center #E37342;
    -webkit-background-size: 1.4vw;
    background-size: 1.4vw;
}
.purpose{
    /*margin-top: 5.5vw;*/
    background: url("../images/top/bg_purpose01.webp") no-repeat top center;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-attachment: fixed;
    padding: 8vw 0 10vw;
}
.purpose_tit{
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin: 1.2vw 0 1.8vw;
    text-align: center;
}
.slider01{
    position: relative;
    margin-top: 3.3vw;
    padding-left: calc(calc(100% - 73%)/2);
    box-sizing: border-box;
}
.slider01 .swiper-button-prev{
    background: url("../images/icon/pur_prev.svg") no-repeat top center;
    -webkit-background-size: contain;
    background-size: contain;
    width: 3.3vw;
    height: 3.3vw;
    position: absolute;
    bottom: auto;
    top: -6.5vw;
    left: auto;
    opacity: 1;
    right: calc(11vw + 4.5vw);
}

.slider01 .swiper-button-prev:focus,
.slider01 .swiper-button-next:focus{
    outline: none;
}
.slider01 .swiper-button-next{
    background: url("../images/icon/pur_next.svg") no-repeat top center;
    -webkit-background-size: contain;
    background-size: contain;
    width: 3.3vw;
    height: 3.3vw;
    z-index: 2;
    position: absolute;
    bottom: auto;
    top: -6.5vw;
    right: 11vw;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
    display: none;    content: none !important;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
    display: none;    content: none !important;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{
    opacity: 1;
}
.mySwiper01 .swiper-slide{
    width: 17vw !important;
}
.pop_bg{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    display: none;
}
.pop_wrapper{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    width: 73%;
}
.pop_box{
    padding: 2vw;
    box-shadow: 0 0 0.5vw rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    position: relative;
    background: #fff;
    border-radius: 0.7vw;
    display: none;
}
.poo_close{
    position: absolute;
    right: 0.5vw;
    top: 0.5vw;
    z-index: 2;
    width: 1.9vw;
    cursor: pointer;
}
.pop_flex{
    display: flex;
    justify-content: left;
    align-items: flex-start;
}
.pop_flex .img{
    width: 33.5vw;
    border-radius: 0.7vw;
    overflow: hidden;
}
.pop_flex .img img{
    border-radius: 0.7vw;
    width: 100%;
    height: min(22.5vw,429px);
    object-fit: cover;
}
.pop_flex .listdes{
    width: calc(100% - 33.5vw);
    padding-left: 2vw;
    box-sizing: border-box;
}
.pop_flex .bq span{
    display: inline-block;
    width: 58px;
    line-height: 28px;
    text-align: center;
    font-size: 13px;
    border-radius: 2px;
    border: 1px solid #6C3201;
    color: #6C3201;
}
.pop_flex .tit{
    font-size: 1.5vw;
    font-weight: 500;
    margin: 0.5vw 0;
    color: #6C3201;
}
.pop_flex .acc{
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 0.7vw;
}
.pop_flex .acc a{
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 0.7vw;
    color: #000;
}
.pop_flex .acc img{
    margin-right: 8px;
    width: 0.9vw;
}
.pop_flex .car{
    font-size: 0.7vw;
    margin-top: 0.5vw;
    display: flex;
    justify-content: left;
    align-items: center;
}
.pop_flex .car img{
    margin-right: 8px;
    width: 1.6vw;
}
.pop_flex .txt{
    margin-top: 0.5vw;
    font-size: 1vw;
    line-height: 1.8;
    margin-bottom: 0.5vw;
}
.pop_flex .txt{
    font-size: 0.9vw;
}
.pop_flex .tag{
    display: flex;
    justify-content: left;
}
.pop_flex .tag span{
    display: inline-block;
    width: 120px;
    font-size: 13px;
    line-height: 34px;
    border-radius: 17px;
    margin-right: 0.5vw;
    text-align: center;
    background: #fdf5e3;
    border: 2px solid #927a64;
    color: #6C3201;
}
.pop_flex .btn{
    margin-top: 1vw;
}
.pop_flex .btn a{
    display: flex;
    justify-content: center;
    font-size: 1vw;
    font-weight: 700;
    color: #fff;
    line-height: 3vw;
    text-align: center;
    border-radius: 1.6vw;
    background: url("../images/icon/arrow_r.svg") no-repeat right 0.7vw center #E37342;
    -webkit-background-size: 1.6vw;
    background-size: 1.6vw;
}
.pop_flex .btn a img{
    width: 0.9vw;
    margin-right: 5px;
}
.pop_flex .btn_flex{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.pop_flex .btn_flex .btn{
    width: calc(50% - 0.5vw);
}
.pop_flex .btn_flex .btn:nth-child(2) a{
    background: url("../images/icon/arrow_r_blue.svg") no-repeat right 0.7vw center #7CA0BF;
    -webkit-background-size: 1.6vw;
    background-size: 1.6vw;
}
.pop_flex .btn_flex .btn span{
    display: block;
    text-align: center;
    font-size: 1vw;
    font-weight: 700;
    color: #7CA0BF;
}

@media screen and (max-width: 767px) {
    .maini_link{
        padding: 20px 0 0;
    }
    .maini_link ul{
        display: flex;
        justify-content: center;
    }
    .maini_link li{
        width: 100px;
        margin: 0 5px;
    }
    /*.maini_link li a{
        display: block;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        background: #e37342;
        border: 2px solid #fdf5e3;
        border-radius: 8px;
        font-size: 13px;
        height: 75px;
        color: #fff;
        padding: 6px 0 8px;
        box-shadow: 0 0 0.5vw rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
        font-family: "M PLUS Rounded 1c", sans-serif;
        font-weight: 700;
        position: relative;
        text-align: center;
    }
    .maini_link li:nth-child(2) a{
        padding: 15px 0 0;
    }
    .maini_link li a span{
        display: block;
        font-size: 13px;
        width: 100%;
        line-height: 1.2;
        margin-top: 5px;
    }
    .maini_link li a:hover{
        background: #937A64;
    }
    .maini_link li a:before{
        background: url("../images/icon/arrow_b.svg") 0 0 no-repeat;
        -webkit-background-size: contain;
        background-size: contain;
        width: 16px;
        height: 16px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -8px;
        content: '';
        z-index: 2;
        position: absolute;
    }
    .maini_link li a img{
        margin-right: 0;
        height: auto;
    }
    .maini_link li:nth-child(1) img{
        width: 26px;
    }
    .maini_link li:nth-child(2) img{
        width: 13px;
    }
    .maini_link li:nth-child(3) img{
        width: 15px;
    }*/
    .message{
        margin-top: 70px;
        padding: 0 45px;
        box-sizing: border-box;
    }
    .message_box{
        max-width: 100%;
        margin: 0 auto;
        padding: 110px 14px 75px;
        text-align: center;
        background: #fdf5e3;
        position: relative;
        border-radius: 8px;
    }
    .message_box:before{
        background: url("../images/icon/icon_pos01.webp") 0 0 no-repeat;
        -webkit-background-size: contain;
        background-size: contain;
        width: 2px;
        height: 60px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
        content: '';
        z-index: 2;
        position: absolute;
    }
    .message_box .pos01{
        position: absolute;
        top: -40px;
        left: -30px;
        z-index: 2;
        width: 160px;
    }
    .message_box .pos02{
        position: absolute;
        top: 6px;
        right: -18px;
        z-index: 2;
        width: 130px;
    }
    .message_box .pos03{
        position: absolute;
        bottom: -108px;
        left: -18px;
        z-index: 2;
        width: 100px;
    }
    .message_box .pos04{
        position: absolute;
        bottom: -52px;
        right: -30px;
        z-index: 2;
        width: 145px;
    }
    .message_logo{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .message_logo p:nth-child(1) img{
        /*width: 150px;*/
        margin-right: 10px;
        width: auto;
        height: min(6vw, 25px);
    }
    .message_logo p:nth-child(2) img{
        /*width: 100px;*/
        width: auto;
        height: min(6vw, 25px);
    }
    .message_txt{
        font-size: 13px;
        font-weight: 500;
        line-height: 2;
        margin-top: 1.5rem;
    }
    .job_img{
        margin-top: 145px;
        position: relative;
    }
    .job_move{
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        z-index: 2;
    }
    .scroll-list {
        display: flex;
        list-style: none;
        padding-inline: 0;
        margin-inline: 0;
        gap: 0;
        /* overflow: hidden; */
        /* 幅を全画面に広げる */
        position: relative;
        left: calc(50% - 50vw);
        width: 100vw;
    }
    .scroll-list li {
        color: #fff;
        font-size: 20px;
        line-height: 1;
        font-weight: bold;
        white-space: nowrap;
        padding: 0 10px 0 0;
        margin: 0;
        text-transform: uppercase;
        animation: marquee-left 16s linear infinite;
    }
    @keyframes marquee-left {
        100% {
            transform: translateX(-100%);
        }
    }
    .point{
        padding: 60px 20px 0;
        box-sizing: border-box;
    }
    .point_tit01{
        text-align: center;
    }
    .point_tit01 img{
        width: 320px;
    }
    .point_tit02{
        text-align: center;
        margin-top: 6px;
        margin-bottom: 45px;
    }
    .point_tit02 img{
        width: 320px;
    }
    .point_cont{
        display: block;
        justify-content: space-between;
        position: relative;
    }
    .point_box{
        width: 100%;
        margin: 0 auto;
        position: relative;
    }
    .point_box_pos{
        position: absolute;
        top: 100px;
        bottom: auto;
        right: auto;
        left: -20px;
        z-index: 2;
        width: 130px;
    }
    .point_cont .img{
        width: 100%;
        height: auto;
        position: relative;
    }
    .point_cont .img span{
        position: absolute;
        top: auto;
        bottom: -40px;
        left: auto;
        right: -8px;
        z-index: 9;
        width: 92px;
        height: 92px;
    }
    .point_cont .img span:before{
        background: url("../images/common/bg_yuan.svg") 0 0 no-repeat;
        -webkit-background-size: contain;
        background-size: contain;
        width: 92px;
        height: 92px;
        left: 0;
        top: 0;
        content: '';
        z-index: 2;
        position: absolute;
        animation: scroll-yuan 10s infinite linear .5s both;
    }
    @keyframes scroll-yuan {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }
    .point_cont .img span img{
        width: 56px;
        position: relative;
        z-index: 3;
    }

    .point_cont02 .img span img {
        margin-top: -0.9rem;
    }
    .point_cont .des{
        width: 100%;
        padding-left: 0;
        box-sizing: border-box;
    }
    .point_cont .des_flex{
        display: block;
        position: relative;
        justify-content: space-between;
        z-index: 1;
    }
    .point_cont .des_en{
        width: 43px;
        position: absolute;
        right: -25px;
        top: 15px;
        z-index: -1;
    }
    .point_cont .des_box{
        width: 100%;
        padding-right: 0;
        margin-top: 15px;
        box-sizing: border-box;
    }
    .point_cont .des_tit{
        margin-bottom: 10px;
    }
    .point_cont .des_tit img{
        height: 70px;
    }
    .point_cont .des_txt{
        font-size: 18px;
        line-height: 1.8;
    }
    .point_cont .des_img{
        margin-top: 16px;
        text-align: right;
    }
    .point_cont .des_img img{
        width: 208px;
    }
    .point_cont02{
        margin-top: 40px;
        position: relative;
    }
    .point_cont02 .img{
        width: 100%;
        position: relative;
        order: 2;
        height: auto;
    }
    .point_cont02 .img span{
        position: absolute;
        bottom: -40px;
        top: auto;
        left: auto;
        right: -5px;
        z-index: 2;
        width: 92px;
    }
    .point_cont02 .img b{
        display: none;
    }
    .point_cont02 .des{
        order: 1;
        padding-top: 10px;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }
    .point_cont02 .des_en{
        width: 43px;
        position: absolute;
        right: -25px;
        top: 0;
        z-index: -1;
    }
    .point_cont02 .des_box{
        order: 2;
        width: 100%;
        padding-right: 0;
        padding-left: 0;
        box-sizing: border-box;
    }
    .point_cont02 .des_img{
        text-align: left;
        margin-top: 10px;
    }
    .point_cont02 .des_img01{
        text-align: left;
        position: absolute;
        margin-top: 0;
        top: -48px;
        left: -8px;
        z-index: 2;
        width: 146px;
    }
    .point_cont02 .des_img img{
        width: 205px;
    }
    .point_cont03{
        margin-top: 70px;
        position: relative;
    }
    .point_cont03 .des_box{
        margin-top: 10px;
    }
    .point_cont03 .des_txt_small{
        margin-top: 10px;
        font-size: 12px;
    }
    .point_cont03 .des_img{
        text-align: right;
        margin-top: 20px;
    }
    .point_cont03 .des_img img{
        width: 208px;
    }
    .point_cont03_bottom{
        display: none;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }
    .sp_point_cont03_bottom{
        position: absolute;
        top: -48px;
        right: -4px;
        z-index: 2;
        width: 173px;
    }
    .point_cont03_bottom img{
        width: 17.8vw;
    }
    .point_bg{
        position: relative;
        margin: 40px -2rem 0;
    }
    .point_bg .scroll-list li{
        font-size: 28px;
        font-weight: 700;
    }
    .inclusive{
        background: url("../images/top/sp_bg_inclusive.webp") no-repeat top center;
        -webkit-background-size: 100%;
        background-size: 100%;
        padding: 80px 0 60px;
        background-attachment: inherit;
        box-sizing: border-box;
    }
    .inclusive_sp_box{
        padding: 0 20px;
        box-sizing: border-box;
    }
    .inclusive_box{
        max-width: 100%;
        background: #fdf5e3;
        border-radius: 8px;
        margin: 15px auto 0;
        position: relative;
        padding: 20px 14px 20px;
        box-sizing: border-box;
    }
    .inclusive_pos01{
        position: absolute;
        top: -135px;
        left: -25px;
        width: 100px;
    }
    .inclusive_pos02{
        position: absolute;
        top: auto;
        bottom: -62px;
        left: auto;
        right: -15px;
        width: 115px;
    }
    .inclusive_tit{
        position: static;
        top: -3.8vw;
        left: 50%;
        transform: translateX(0);
        z-index: 2;
        text-align: center;
    }
    .inclusive_tit img{
        width: 100%;
    }
    .inclusive_flex{
        display: block;
        justify-content: left;
        align-items: center;
    }
    .inclusive_flex .left{
        width: 100%;
    }
    .inclusive_flex .right{
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
        box-sizing: border-box;
        font-size: 18px;
        font-weight: 500;
        line-height: 2;
        color: #6C3201;
    }
    .inclusive_flex .left ul{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: -10px;
    }
    .inclusive_flex .left li{
        width: 90px;
        margin: 0 5px 10px;
        text-align: center;
    }
    .inclusive_flex .left li .listimg img{
        width: 88px;
    }
    .inclusive_flex .left li .listtxt{
        font-size: 13px;
        font-weight: 700;
        color: #6C3201;
        margin-top: 6px;
    }
    .inclusive_flex .left_txt{
        display: none;
    }
    .inclusive_flex .right_txt01{
        font-size: 10px;
    }
    .slider-wrapper {
        margin-top: 84px;
        display: flex; /* スライドのグループを横並び */
        overflow: hidden; /* はみ出たスライドを隠す */
        padding-bottom: 0;
    }
    .slider-wrapper li{
        margin-right: 12px;
    }
    /* スライド3枚のグループ */
    .slider {
        animation: scroll-left 20s infinite linear .5s both;
        display: flex;
    }
    /* スライド */
    .slide{
        width: 192px;
    }
    .slide img {
        display: block;
        width: 100%;
    }
    @keyframes scroll-left {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-100%);
        }
    }
    .bg_travel{
        background: url("../images/top/sp_bg_travel.webp") no-repeat top center;
        -webkit-background-size: 100%;
        background-size: 100%;
    }
    .travel{
        padding: 0;
        background: transparent;
        -webkit-background-size: 100%;
        background-size: 100%;
        background-attachment: inherit;
    }
    .bg_travel_new{
        background: transparent;
        -webkit-background-size: 100%;
        background-size: 100%;
        background-attachment: inherit;
    }
    .travel{
        padding: 60px 20px 0;
        box-sizing: border-box;
    }
    .travel_en{
        font-size: 12px;
        font-weight: 700;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
    }
    .travel_tit{
        text-align: center;
        margin: 6px 0 6px;
    }
    .travel_tit img{
        width: 188px;
    }
    .travel_txt{
        font-size: 14px;
        color: #fff;
        text-align: center;
        line-height: 1.8;
    }
    .travel_slider{
        margin-top: 25px;
    }
    .travel_slider_box{
        border: 1vw solid #fff;
        border-radius: 10px;
        background: #fff;
        padding: 5px;
        box-sizing: border-box;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    }
    .travel_slider_box .box{
        padding: 14px 15px 20px;
        height: auto;
        box-sizing: border-box;
    }
    .travel_slider_tit{
        font-size: 25px;
        font-weight: 700;
        color: #6C3201;
    }
    .travel_slider_txt{
        font-size: 18px;
        margin-top: 8px;
        line-height: 1.8;
        height: 86vw;
    }
    .travel_slider_txt a{
        color: #E37342;
    }
    .travel_slider .slick-slide{
        margin: 0;
        padding: 0;
        opacity: 1;
    }
    .travel_slider .slick-slide.slick-center{
        margin-top: 0;
        opacity: 1;
    }
    .travel_slider .slick-prev{
        width: 33px;
        height: 33px;
        background: url("../images/icon/prev.svg") no-repeat 0 0;
        -webkit-background-size: contain;
        background-size: contain;
        left: -15px;
        z-index: 99;
    }
    .travel_slider .slick-next{
        width: 33px;
        height: 33px;
        background: url("../images/icon/next.svg") no-repeat 0 0;
        -webkit-background-size: contain;
        background-size: contain;
        right: -15px;
        z-index: 99;
    }
    .slick-prev:before,
    .slick-next:before{
        display: none;
    }
    .travel_slider .slick-dots{
        bottom: -40px;
    }
    .travel_slider .slick-dots li
    {
        width: 10px;
        height: 10px;
        margin: 0 2px;
    }
    .travel_slider .slick-dots li button
    {
        width: 10px;
        height: 10px;
        padding: 0;
        border: 1px solid #FFF;
        border-radius: 50%;
        background: transparent;
        box-sizing: border-box;
    }
    .travel_slider .slick-dots li.slick-active button{
        background: #fff;
    }
    .travel_slider .slick-dots li button:before
    {
        display: none;
    }
    .travel_flex{
        margin-top: 65vw;
    }
    .travel_flex_box{
        background: #fff;
        border-radius: 8px;
        width: 100%;
        padding: 60px 25px 26px 25px;
        position: relative;
        display: block;
        justify-content: left;
        align-items: center;
        box-sizing: border-box;
    }
    .travel_flex_tit{
        position: absolute;
        top: -36px;
        left: 0;
        width: 100%;
        text-align: center;
        z-index: 2;
    }
    .travel_flex_tit img{
        width: 240px;
        text-align: center;
    }
    .travel_flex_box .logo_img{
        width: 100%;
        text-align: center;
    }
    .travel_flex_box .logo_img img{
        width: 240px;
    }
    .travel_flex_box .des{
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
        font-size: 18px;
        font-weight: 500;
        line-height: 2;
        color: #6C3201;
        box-sizing: border-box;
    }
    .explore{
        padding: 50px 0 0;
    }
    .explore_en{
        font-size: 12px;
        font-weight: 700;
        color: #6C3201;
        text-transform: uppercase;
        text-align: center;
    }
    .explore_tit{
        text-align: center;
        margin: 10px 0 10px;
    }
    .explore_tit img{
        width: 320px;
    }
    .explore_txt{
        font-size: 14px;
        color: #000;
        text-align: center;
    }
    .explore_link{
        margin-top: 20px;
        border: 2px solid #927a64;
        background: #fff;
        padding: 18px 16px;
        border-radius: 8px;
        box-sizing: border-box;
    }
    .explore_link dl+dl{
        margin-top: 10px;
    }
    .explore_link dt{
        display: flex;
        justify-content: left;
        align-items: center;
        font-size: 14px;
        font-weight: 700;
        color: #6C3201;
    }
    .explore_link dt img{
        margin-right: 5px;
        height: 14px;
    }
    .explore_link dl:nth-child(2) dt img{
        height: 12px;
    }
    .explore_link dd{
        margin-top: 5px;
    }
    .explore_link dd ul{
        display: flex;
        justify-content: left;
        margin-right: -5px;
        margin-bottom: -5px;
        flex-wrap: wrap;
    }
    .explore_link dd li{
        width: auto;
        margin-right: 5px;
        margin-bottom: 5px;
    }
    .explore_link dd .other{
        width: auto;
    }
    .explore_link dd li a{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 28px;
        font-size: 11px;
        color: #6C3201;
        border-radius: 14px;
        background: #fdf5e3;
        border: 2px solid #927a64;
        padding: 0 10px;
        font-weight: 500;
        box-sizing: border-box;
    }

    .explore_link dd li span{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 28px;
        font-size: 11px;
        color: #6C3201;
        border-radius: 14px;
        background: #fdf5e3;
        border: 2px solid #927a64;
        padding: 0 10px;
        font-weight: 500;
        box-sizing: border-box;
    }
    .explore_link dt li a:hover,
    .explore_link dd li input[type="checkbox"]:checked + span{
        background: #e37342;
        border: 2px solid #e37342;
        color: #fff;
    }
    .explore_link .reset {
        margin-top: 3vw;
    }

    .explore_link .reset input[type="reset"] {
        height: 35px;
        font-size: 1.4rem;
        width: 65%;
        border-radius: 25px;
    }
    .explore_list{
        margin-top: 25px;
    }
    .explore_list_tit{
        display: flex;
        justify-content: left;
        align-items: center;
        font-size: 15px;
        font-weight: 700;
        color: #6C3201;
    }
    .explore_list_tit img{
        width: 14px;
        margin-right: 5px;
    }
    .explore_list ul{
        margin: 12px 0 0;
        display: block;
        justify-content: space-between;
    }
    .explore_list li{
        width: 100%;
        margin-bottom: 20px;
    }
    .explore_list li .listimg img {
        height: auto;
    }
    .explore_list li .listbox{
        border-radius: 8px;
        transition: all 0.5s;
        box-shadow: 0 0 0.5vw rgba(0, 0, 0, 0.2);
        margin: 0;
    }
    .explore_list li .listbox:hover{
        transition: all 0.5s;
        box-shadow: 0 0 0.5vw rgba(0, 0, 0, 0.2);
    }
    .explore_list li .listdes{
        background: #fff;
        padding: 18px 16px 18px;
        border-radius: 0 0 8px 8px;
        box-sizing: border-box;
    }
    .explore_list li .bq span{
        display: inline-block;
        width: 55px;
        line-height: 24px;
        text-align: center;
        font-size: 12px;
        border-radius: 2px;
        border: 1px solid #6C3201;
        color: #6C3201;
    }
    .explore_list li .tit{
        font-size: 18px;
        font-weight: 500;
        margin: 8px 0;
        color: #6C3201;
    }
    .explore_list li .acc{
        display: flex;
        justify-content: left;
        align-items: center;
        font-size: 10px;
    }
    .explore_list li .acc img{
        margin-right: 4px;
        width: 10px;
    }
    .explore_list li .car{
        font-size: 10px;
        margin-top: 5px;
        display: flex;
        justify-content: left;
        align-items: center;
    }
    .explore_list li .car img{
        margin-right: 4px;
        width: 16px;
    }
    .explore_list li .txt{
        margin-top: 10px;
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 8px;
    }
    .explore_list02 li .txt{
        font-size: 16px;
    }
    .explore_list li .tag{
        display: flex;
        justify-content: left;
    }
    .explore_list li .tag span{
        display: inline-block;
        width: 90px;
        font-size: 11px;
        line-height: 25px;
        border-radius: 17px;
        margin-right: 6px;
        text-align: center;
        background: #fdf5e3;
        border: 2px solid #927a64;
        color: #6C3201;
    }
    .explore_list li .btn{
        margin-top: 20px;
    }
    .explore_list li .btn a{
        display: block;
        font-size: 13px;
        font-weight: 700;
        color: #fff;
        line-height: 38px;
        text-align: center;
        border-radius: 17px;
        background: url("../images/icon/icon_explore04.svg") no-repeat right 10px center #E37342;
        -webkit-background-size: 20px;
        background-size: 20px;
    }
    .purpose{
        margin-top: 50px;
        background: url("../images/top/sp_bg_purpose01.webp") no-repeat top center;
        -webkit-background-size: 100%;
        background-size: 100%;
        padding: 55px 0 62px;
        background-attachment: inherit;
    }
    .purpose_tit{
        font-size: 35px;
        font-weight: 700;
        color: #fff;
        line-height: 1;
        margin: 10px 0 5px;
        text-align: center;
    }
    .slider01{
        position: relative;
        margin-top: 60px;
        padding-left: 20px;
        box-sizing: border-box;
    }
    .slider01 .swiper-button-prev{
        background: url("../images/icon/pur_prev.svg") no-repeat top center;
        -webkit-background-size: contain;
        background-size: contain;
        width: 30px;
        height: 30px;
        position: absolute;
        bottom: auto;
        top: -28px;
        opacity: 1;
        right: auto;
        left: calc(50% - 35px);
    }

    .slider01 .swiper-button-prev:focus,
    .slider01 .swiper-button-next:focus{
        outline: none;
    }
    .slider01 .swiper-button-next{
        background: url("../images/icon/pur_next.svg") no-repeat top center;
        -webkit-background-size: contain;
        background-size: contain;
        width: 30px;
        height: 30px;
        z-index: 2;
        position: absolute;
        bottom: auto;
        top: -28px;
        right: calc(50% - 35px);
    }
    .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
        display: none;    content: none !important;
    }
    .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
        display: none;    content: none !important;
    }
    .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{
        opacity: 1;
    }
    .mySwiper01 .swiper-slide{
        width: 170px !important;
    }
    .pop_bg{
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.65);
        display: none;
    }
    .pop_wrapper{
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 999;
        width: 90%;
    }
    .pop_box{
        width: 100%;
        padding: 10px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
        position: relative;
        background: #fff;
        border-radius: 8px;
        display: none;
    }
    .poo_close{
        position: absolute;
        right: -14px;
        top: -14px;
        z-index: 2;
        width: 26px;
        cursor: pointer;
    }
    .pop_flex{
        display: block;
        justify-content: left;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }
    .pop_flex .img{
        width: 100%;
        text-align: center;
        border-radius: 8px;
    }
    .pop_flex .img img{
        border-radius: 8px;
        height: auto;
    }
    #pop04 .pop_flex .img img{
        border-radius: 8px;
        width: 100%;
    }
    .pop_flex .listdes{
        width: 100%;
        margin-top: 0;
        padding: 15px 10px 0;
        box-sizing: border-box;
    }
    .pop_flex .bq span{
        display: inline-block;
        width: 55px;
        line-height: 24px;
        text-align: center;
        font-size: 12px;
        border-radius: 2px;
        border: 1px solid #6C3201;
        color: #6C3201;
    }
    .pop_flex .tit{
        font-size: 18px;
        font-weight: 500;
        margin: 8px 0;
        color: #6C3201;
    }
    .pop_flex .acc{
        display: flex;
        justify-content: left;
        align-items: center;
        font-size: 10px;
    }
    .pop_flex .acc a{
        display: flex;
        justify-content: left;
        align-items: center;
        font-size: 10px;
        color: #000;
    }
    .pop_flex .acc img{
        margin-right: 4px;
        width: 10px;
    }
    .pop_flex .car{
        font-size: 10px;
        margin-top: 5px;
        display: flex;
        justify-content: left;
        align-items: center;
    }
    .pop_flex .car img{
        margin-right: 4px;
        width: 16px;
    }
    .pop_flex .txt{
        margin-top: 10px;
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 8px;
    }
    #pop04 .pop_flex .txt{
        font-size: 16px;
    }
    .pop_flex .tag{
        display: flex;
        justify-content: left;
    }
    .pop_flex .tag span{
        display: inline-block;
        width: 90px;
        font-size: 11px;
        line-height: 25px;
        border-radius: 17px;
        margin-right: 6px;
        text-align: center;
        background: #fdf5e3;
        border: 2px solid #927a64;
        color: #6C3201;
    }
    .pop_flex .btn{
        margin-top: 20px;
    }
    .pop_flex .btn+.btn{
        margin-top: 3px;
    }
    .pop_flex .btn a{
        display: flex;
        font-size: 13px;
        font-weight: 700;
        color: #fff;
        line-height: 38px;
        text-align: center;
        border-radius: 17px;
        background: url("../images/icon/icon_explore04.svg") no-repeat right 10px center #E37342;
        -webkit-background-size: 20px;
        background-size: 20px;
    }
    .pop_flex .btn a img{
        width: 10px;
        margin-right: 4px;
    }
    .pop_flex .btn_flex{
        display: block;
        justify-content: space-between;
        align-items: flex-end;
    }
    .pop_flex .btn_flex .btn{
        width: 100%;
    }
    .pop_flex .btn_flex .btn:nth-child(2) a{
        margin-top: 8px;
        background: url("../images/icon/arrow_r_blue.svg") no-repeat right 10px center #7CA0BF;
        -webkit-background-size: 20px;
        background-size: 20px;
    }
    .pop_flex .btn_flex .btn span{
        display: block;
        text-align: center;
        font-size: 13px;
        font-weight: 700;
        color: #7CA0BF;
        margin-bottom: 4px;
    }
}

.no-results,
.select-message {
    text-align: center;
    color: #777;
    font-size: 3.2rem;
    font-weight: bold;
    color: #6C3201;
    margin-top: 4rem;
    display: none; /* Initially hidden */
}

.wave-container {
    overflow: hidden;
}

.wave-img {
    width: 100%;
    animation: wave 6s ease-in-out infinite;
    transform-origin: center;
}

@keyframes wave {
    0% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(0.5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(8px) rotate(-0.5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.popup_slider .slick-prev {
    display: none;
}

.popup_slider .slick-next {
    right: 0;
    bottom: 0;
    width: 90px;
    height: 60px;
    background: #fff url(../images/icon/icon_explore04.svg) center no-repeat;
    border-radius: 5px 0 0.7vw 0;
    z-index: 999;
    transform: none;
    top: auto;
    border: 1px solid #E37342;
}

#spots-list li {
    display: none;
}
@media screen and (max-width: 767px) {
    .no-results,
    .select-message {
        font-size: 1.8rem;
        margin-top: 2rem;
    }

    .popup_slider .slick-next {
        right: 0;
        bottom: 0;
        width: 50px;
        height: 30px;
        background: #fff url(../images/icon/icon_explore04.svg) center no-repeat;
        border-radius: 8px 0 8px 0;
        z-index: 999;
        transform: none;
        top: auto;
        border: 1px solid #E37342;
    }
}