@charset "utf-8";


html {font-size: 63.75%; /*デフォルトのサイズ＝10.1pxに指定 (10px: 62.5%)*/}

body {
    font-family: Helvetica,Arial,"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.4rem;

    width:100%;
    height:100%;

    position: relative;
    background-color: #fff;

}

h1{
    display: inline-block;
    text-align: center;
}

h2{
    font-weight: 600;
}

p{
}
.sp_br,.btn_br{
    display: block;
}
.pc_br{
    display: none;
}

a{
    cursor: pointer;
    color: inherit;
}


@media screen and (min-width:880px) {
    .sp_br{
        display: none;
    }
}

@media screen and (min-width:591px) {
    .btn_br{
        display: none;
    }

    .pc_br{
        display: block;
    }
}



/*　ローディング
---------------*/
/* 初期状態ではコンテンツ非表示 */
.page{
    opacity: 0;
}

/* ローディング背景 */
.loader-bg {
    display: block;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    z-index: 10001;

}

/* ローディングロゴ */
.loader {
    position: absolute;
    display: none;
    z-index: 10002;
    margin: 0 auto;
    top: calc(100vh*0.30);
    left: 50%;
    top: 50%;
    transform: translate(-50%,-67.5%);
}
.loader_logo{
    display: block;
    margin: 0 auto;
    width: 187.5px;
    height: auto;
}
.loader_gif{
    display: block;
    margin: 0 auto 25px;
    width:140px;
    height:auto;
    border-radius:70px;
}


/*スクロール時のfadein効果 */
/* 画面外 */
.fade-block {
  transform: translateY(40px);
  opacity: 0;
  transition: all .8s ease-in-out;
}
/* 画面に入った時の動き */
.fade-block.blockIn {
  transform: translateY(0);
  opacity: 1;
}



/*　header
---------------*/
.fv{
    width: 100vw;
    height: 100vh;
    position: relative;
}

.fv_sl {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.fv_sl1{
    width: 100%;
    height: 100%;
    background-image: url('../resources/bg1-sp.jpg');

}
.fv_sl2{
    width: 100%;
    height: 100%;
    background-image: url('../resources/bg2-sp.jpg');

}
.fv_sl3{
    width: 100%;
    height: 100%;
    background-image: url('../resources/bg3-sp.jpg');

}

@media screen and (min-width:591px) {
    .fv_sl1{
        background-image: url('../resources/bg1-pc.jpg');

    }
    .fv_sl2{
        background-image: url('../resources/bg2-pc.jpg');

    }
    .fv_sl3{
        background-image: url('../resources/bg3-pc.jpg');

    }
}

/*スライド*/
.sl_img {
    z-index:10;
    opacity: 0;
    background-color: #000;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;

    left: 0;
    top: 0;
    -webkit-animation: anime 21s 0s infinite ease-in-out;
    animation: anime 21s 0s infinit ease-in-out;
}


.sl_img:nth-of-type(2) {
    -webkit-animation-delay: 7s;
    animation-delay: 7s;
}

.sl_img:nth-of-type(3) {
    -webkit-animation-delay: 14s;
    animation-delay: 14s;
}

/*スライドショー　*/
@keyframes anime {
    0% {
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    17% {
        opacity: 1;
    }
    34% {
        opacity: 1;
    }
    50% {
        opacity: 0;
        z-index:9;
    }
    100% {
        opacity: 0;
    }

}


/* タイトルロゴ */
.h1_cp{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    margin: 40px auto 0;
    width: 90%;
    max-width: 340px;
    text-align: center;
    z-index: 10000;
}

.h1_cp img
{
    width: 100%;
    height: auto;
}


@media screen and (min-width:591px) {
    .fv .wrap{
        max-width:800px;
        width: 80%;
        margin: 0 auto;
    }

    .h1_cp{
        top: 50%;
        left: 50%;
        margin: 0 auto;
        max-width: 469px;
        width: 58%;
        transform: translate(-50%,-86%);
    }
}


.conv_area{
    width: 100%;
    background-color: #194f71;
    padding:15px 0;
    background-image: url(../resources/bg_conv.jpg);
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: center;
}

.fv_conv{
    position: relative;
    bottom: 0;
    left: 0;
    z-index: 100;
}


.conv_wrap{
    width: 92%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.btn_conv{
    box-sizing: border-box;
    max-width: 240px;
    width: calc((100% - 15px)/2);
    height: 55px;
    font-size: 1.8rem;
    background-color: #c99d6a;
    color: #fff;

    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    color: #ea8a7e;


    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    background: -webkit-linear-gradient(180deg,
    #63c9ce,
    #63c9ce,
    #ea8a7e,
    #ea8a7e);
    background: -webkit-linear-gradient(right,
    #63c9ce,
    #63c9ce,
    #ea8a7e,
    #ea8a7e);
    background: linear-gradient(270deg,
    #63c9ce,
    #63c9ce,
    #ea8a7e,
    #ea8a7e);
    background-position: 1% 50%;
    background-size: 300% 300%;
    border: none;


    margin-right: 15px;
}


    .btn_conv:last-of-type{
        margin-right: 0;
    }



.btn_conv.large{
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    color: #c99d6a;

    background: -webkit-linear-gradient(180deg,
    #452213,
    #452213,
    #c99d6a,
    #c99d6a);
    background: -webkit-linear-gradient(right,
    #452213,
    #452213,
    #c99d6a,
    #c99d6a);
    background: linear-gradient(270deg,
    #452213,
    #452213,
    #c99d6a,
    #c99d6a);
    background-position: 1% 50%;
    background-size: 300% 300%;
    border: none;


}

/* マウスオーバー時 */
.btn_conv:hover {
    background-position: 99% 50%;
    color: #63c9ce;
    cursor: pointer;
}
.btn_conv.large:hover{
    background-position: 99% 50%;
    color: #452213;
    cursor: pointer;
}


.free{
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
    font-size: 1.0rem;
    background-color: #fff;
    text-align: center;
    font-weight: 600;

}
.btn_caption{
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}
.btn_arrow{
    width: 8px;
}

@media screen and (min-width:591px) {
    .conv_wrap{
        max-width:800px;
        width: 90%;
        justify-content: center;
    }

    .btn_conv{
        width: 240px;
        margin-right: 15px;
        padding: 20px;

    }
    .btn_conv:last-of-type(){
        margin-right: 0;
    }

    .btn_conv.large{
        width: 100%;
    }

}


/*
右から左へ
----------------------------*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}


.scr_infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scr_infinity__list {
  display: flex;
  list-style: none;
}

.scr_infinity__list--left{
    animation :infinity-scroll-left 30s infinite linear 0.5s both;
}

.scr_item img{
    height: calc(100vw*0.24);
    vertical-align: top;
}


@keyframes infinity-scroll-right {
from {
  transform: translateX(-100%);
}
  to {
  transform: translateX(0%);
}
}
.scr_infinity__list--right{
    animation :infinity-scroll-right 30s infinite linear 0.5s both;
}



@media screen and (min-width:591px) {
    .scr_item img{
        height: calc(100vw*0.14);
    }

    .scr_infinity__list--left{
    animation :infinity-scroll-left 40s infinite linear 0.5s both;
    }

    .scr_infinity__list--right{
        animation :infinity-scroll-right 40s infinite linear 0.5s both;
    }

}

/*

.main{
    width: 100%;
    padding: 48% 0 80px;
}


.bg_main::before {
    content:"";
    display:block;
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height:100vh;
    background-repeat:no-repeat;
    background-image:url(../resources/bg_main.jpg);
        background-color: #cde8f1;
    background-size:100% auto;
}



.main .wrap{
    width: 84%;
    margin: 0 auto;
}
.h2_introduction{
    display: block;
    width: 220px;
    height: auto;
    margin: 0 auto 40px;
}

.p_introduction{
    margin: 0 auto 80px;
    color: #347c08;
    line-height: 1.8;
    font-size: 1.4rem;
    font-weight: 600;
}


.h2_alaska{
    display: block;
    margin: 0 auto 80px;
    width: 253px;
    height: auto;
}

.main h3{
    font-size: 3.0rem;
    font-weight: 600;
    color: #1973a6;
    text-align: center;

    margin-bottom: 20px;
}

.main .p_description{
    font-size: 1.4rem;
    font-weight: 600;
    color: #1973a6;
    margin: 0 auto 40px;

    line-height: 1.8;
}

.main_flex_box{
    width: 79.3%;
    margin: 0 auto 40px 0;
}

.main_flex_box:nth-of-type(2n){
    margin: 0 0 40px auto;
}

.main_flex_box:last-of-type{
    margin-bottom: 80px;
}

.on_board .main_flex_box:last-of-type{
    margin-bottom: 0;
}


.main_flex_box img{
    width: 100%;
    margin-bottom: 15px;
}

.main_flex_box_title{
    color: #418d13;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.2;

}
.main_flex_box_small{
    color: #418d13;
    font-size: 1.0rem;
    font-weight: 600;
}
.main_flex_box_description{
    margin-top: 15px;
    color: #444;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.8;
}


@media screen and (min-width:591px) {
    .main .p_description{
        text-align: center;
    }
}
@media screen and (min-width:880px) {


    .main{
        padding: 23% 0 10%;
    }

    .bg_main::before {
        background-image:url(../resources/bg_main_pc.jpg);
        background-color: #cde8f1;
    }


    .main .wrap{
        max-width:800px;
        width:90%;
        margin: 0 auto;
    }

    .h2_introduction{
        display: block;
        margin: 0 auto 3%;
    }

    .p_introduction{
        width: 75%;
        margin: 0 auto 17%;
        font-size: 1.4rem;
    }



    .h2_alaska{
        margin-bottom: 9%;
    }

    .main h3 {
        font-size: 3.0rem;
        margin-bottom: 2%;
    }

    .main .p_description{
        font-size: 1.4rem;
        width: 75%;
        text-align: center;
        margin-bottom: 7%;
    }

    .main_flex{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .main_flex_box{
        max-width:387px;
        width: 48.5%;
        margin-left:0;
        margin-right:0;
        margin-bottom:5%;
    }
    .main_flex_box:nth-of-type(2n) {
        margin: 0 0 5% 0;
    }
    .main_flex_box:last-of-type{
        margin: 0 0 10% 0;
    }

    .on_board .main_flex_box{
        margin-bottom: 0;
    }

    .main_flex_box_title{
        font-size: 1.6rem;
    }
    .main_flex_box_small{
        font-size: 1.0rem;
    }
    .main_flex_box_description{
        font-size: 1.2rem;
    }



}
*/

.v120{
    width: 100%;
    background-image: url(../resources/bg_v120.jpg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-color: #14a3d3;
    padding: 21% 0 50px;
}

.h2_v120{
    display: block;
    width: 337px;
    height: auto;
    margin: 0 auto 72%;
}

.v120_logo{
    display: block;
    width: 95px;
    height: auto;
    margin: 0 auto 30px;
}
.v120 .wrap{
    width: 84%;
    margin: 0 auto;
}

.list_v120_course{
    width: 100%;
    text-align: center;
}

.list_v120_course dt{
    display: inline-block;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 2px solid #fff;
    padding-bottom: 2px;
    margin-bottom: 10px;

}
.list_v120_course dd{
    color: #fff;
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 32px;
}

.v120_map{
    width: 100%;
    height: auto;
}

.list_v120_port_of_call{
    width: 100%;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 40px;
}

.list_v120_detail{
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.8;
    color: #fff;
    padding-left: 1em;
}
.list_v120_detail li{
    list-style: disc;
}


@media screen and (min-width:880px) {
    .v120{
        background-image: url(../resources/bg_v120_pc.jpg);
        padding: 13% 0 8%;
    }

    .v120 .wrap{
        max-width: 800px;
        width: 92%;
    }

    .h2_v120{
        margin: 0 auto 36%;
    }
    .list_v120_course dt{
        font-size: 1.2rem;
    }
    .list_v120_course dd{
        font-size: 1.8rem;
    }

    .v120_map{
        display: block;
        max-width: 800px;
        width: 100%;
        margin: 0 auto;
    }

    .list_v120_course dd{
        margin-bottom: 3%;
    }

    .list_v120_port_of_call{
        width: 75%;
        margin: 0 auto 5%;
        font-size: 1.2rem;
    }

    .list_v120_detail{
        width: 75%;
        margin: 0 auto;
        font-size: 1.1rem;
    }

}


.price{
    width: 100%;
    background-color: #fff;
    padding: 80px 0 50px;*/
}

.price article{
    margin-bottom: 80px;
}
.price article:last-of-type{
    margin-bottom: 50px;
}


.price img{
    display: block;
    max-width: 500px;
    width: 92%;
    height: auto;
    margin: 0 auto;
}

.price_title{
    margin-bottom: 20px!important;
}

.price_detail{
    width: 84%;
    margin: 0 auto;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.8;
    color: #6b4141;
    padding-left: 1em;
}
.price_detail li{
    list-style: disc;
}


@media screen and (min-width:880px) {
    .price{
        padding: 12% 0 8%;
    }

    .price .wrap{
        max-width: 800px;
        width: 92%;
        padding: 0 5%;


        margin: 0 auto;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .price .wrap article{
        max-width: 345px;
        width: 48%;
        margin-left:0;
        margin-right:0;
        margin-bottom:8%;
    }
    .price .wrap article:first-of-type{
        margin-right: 4%;
    }

    .price .wrap article img{
        width: 100%;
        height: auto;
    }

    .price_detail{
        width: 81%;
        font-size: 1.1rem;

    }
}


.cruise_list{
    width: 100%;
    background-color: #7fa959;
    padding: 80px 0;
}


.h2_cruise{
    display: block;
    width: 280px;
    margin: 0 auto;
    margin-bottom: 45px;
}

.cruise_box{
    box-sizing: border-box;
    background-color: #fff;
    max-width: 500px;
    width: 92%;
    margin: 0 auto 10px;
    padding: 5px;

    display: flex;
    justify-content: flex-start;
    align-items: flex-end;

    position: relative;

}

.cruise_img{
    width: 80px;
    height: auto;
    margin-right: 10px;
}

.cruise_date{
    color: #4b4b4b;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.cruise_title{
    color: #4b4b4b;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 9px;
}

.cruise_course{
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.pink .cruise_course{
    color: #e89777;
}
.blue .cruise_course{
    color: #6cb0b4;
}
.purple .cruise_course{
    color: #a691c4;
}

.cruise_point{
    display: flex;
    justify-content: flex-start;
    line-height: 14px;
    color: #fff;
    font-size: 1.0rem;
    font-weight: 600;
}

.cruise_point li{
    margin-right: 4px;
    padding: 0 5px;
}

.cruise_point li:last-of-type{
    margin-right: 0;
}

.pink .cruise_point li{
    background-color: #e89777;
}
.blue .cruise_point li{
    background-color: #6cb0b4;
}
.purple .cruise_point li{
    background-color: #a691c4;
}

.badge{
    box-sizing: border-box;
    height: 20px;
    position: absolute;
    top: 5px;
    right: 5px;

    border: 1px solid #ee7e7e;
    line-height: 20px;
    color: #ee7e7e;
    font-size: 1.0rem;
    font-weight: 600;
    padding: 0 8px;
}

.badge_soldout{
    position: absolute;
    top: 5px;
    right: 5px;

    border: 1px solid #6d9f40;
    line-height: 20px;
    color: #6d9f40;
    font-size: 1.0rem;
    font-weight: 600;
    padding: 0 8px;
}


@media screen and (min-width:880px) {
    .cruise_list{
        padding: 9% 0;
    }

    .cruise_list .wrap{
        margin: 0 auto;
        box-sizing: border-box;
        max-width: 800px;
        width: 92%;
    }

    .h2_cruise{
        display: block;
        width: 39%;
        height: auto;
        margin: 0 auto 6%;
    }

    .cruise_flex{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 90%;
        margin: 0 auto;

    }

    .cruise_box{
        box-sizing: border-box;
        padding: 5px;
        background-color: #fff;
        max-width: 345px;
        width: 48%;
        margin: 0;
        margin-bottom: 4%;
    }

    .cruise_img{
        max-width: 80px;
        width: 24%;
        height: auto;
        margin-right: 10px;
    }



    .cruise_date{
        color: #4b4b4b;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .cruise_title{
        font-size: 1.4rem;
    }

    .cruise_course{
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .cruise_point{
        font-size: 1.0rem;
        line-height: 1.4;
    }

}


.conversion{
    width: 100%;
    background-color: #eb8181;
    padding: 80px 0;
}

.conversion .wrap{
    width: 92%;
    margin: 0 auto;
    text-align: center;

}

.conversion article{
    margin-bottom: 60px;
}

.conversion article:last-of-type{
    margin-bottom: 0;
}

.request .h3_conversion{
    width: 96px;
    height: auto;
    margin-bottom: 24px;
}
.info_session .h3_conversion{
    width: 121px;
    height: auto;
    margin-bottom: 24px;
}


.p_conversion{
    color: #fff;
    margin-bottom: 7%;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.8;

}

.pamphlet_img{
    width: auto;
    height: 159px;
    margin-bottom: 7%;
}

.session_img{
    box-sizing: border-box;
    width: 159px;
    height: 159px;
    border: 2px solid #fff;
    border-radius: 50%;
    margin-bottom: 7%;
}

.tel{
    max-width: 500px;
    width: 100%;
    border: 1px solid #fff;
    padding: 30px 0;
    margin: 0 auto;
}

.p_contact{
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.p_tel{
    color: #fff;
    font-size: 2.0rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.p_small{
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}


@media screen and (min-width:880px) {
    .conversion{
        padding: 9% 0;
    }

    .conversion .wrap{
        max-width: 800px;
        width: 92%;
        margin: 0 auto;
    }

    .conversion_flex{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 90%;
        margin: 0 auto;

    }

    .request,.info_session,.tel{
        max-width: 345px;
        width: 48%;
        margin: 0;
    }

    .request{
        margin-right: 4%;
    }

    .request .h3_conversion{
        width: 28%;
        height: auto;
    }
    .info_session .h3_conversion{
        width: 35%;
        height: auto;
    }

    .pamphlet_img{
        margin-bottom: 16px;
    }

    .session_img{
        margin-bottom: 16px;
    }

    .conversion article{
        margin-bottom: 7%;
    }


}




footer{
    background-color: #fff;
    padding: 40px 0 0;
    color: #4c4c4d;
    font-size: 1.2rem;
}

footer .wrap{
    width: 92%;
    margin: 0 auto;
}

.footer_text p{
    line-height: 1.8;
    font-size: 1.2rem;
}

.footer_text p:last-of-type{
    margin-bottom: 40px;
}

.footer_icon{
    height: 1.2rem;
    margin-right: .5rem;
}
.footer_logo{
    background-color: #194f71;
    width: 100%;
    padding: 40px 0 48px;
    text-align: center;
}

.footer_logo img{
    width: 125px;
    height: auto;
    margin-bottom:23px;
}

.copyright{
    color: #fff;
    font-size: .9rem;
}


@media screen and (min-width:880px) {
    footer{
        padding: 4% 0 0;
    }


    footer .wrap{
        max-width: 800px;
        width: 90%;
        margin: 0 auto;
    }

    footer p{
        width: 75%;
        margin: 0 auto;
    }

    .footer_text p:last-of-type{
        margin-bottom: 4%;
    }

    .footer_logo{
        padding: 4% 0 5%;
    }

}


    .landscape{
        width: 100%;
        padding: 2.5% 0 0;
        background-image: -moz-linear-gradient( 90deg, rgb(101,175,97) 48%, rgb(116,193,113) 85%);
        background-image: -webkit-linear-gradient( 90deg, rgb(101,175,97) 48%, rgb(116,193,113) 85%);
        background-image: -ms-linear-gradient( 90deg, rgb(101,175,97) 48%, rgb(116,193,113) 85%);
        background-position: top left;
        background-size: 100% 1340px;
        background-repeat: no-repeat;
        background-color: #65af61;
    }

    .bg_map{
        width: 100%;
        margin: 0 auto;
        background-image: url(../resources/landscape_map_sp.png);
        background-position: top 54px right;
        background-size: 95% auto;
        background-repeat: no-repeat;
    }

    .baltic_content{
        width: 100%;
        margin: 0 auto;
    }

.landscape_map{
    margin-left: 13px;
    width: 100%;
}

.country:first-of-type{
    margin-top: 220px;
}


.h2_landscape{
    display: block;
    margin: 0 auto 80px;
/*    width: 364px;*/
    width: 96%;
    height: auto;
}

.country{
    position: relative;
    margin-bottom: 52px;
}

.country:last-of-type{
    margin-bottom: 40px;
}

.country_flex_h{
    display: flex;
    justify-content: flex-start;

    position: absolute;
    top: 0;
/*    left: 13px;*/
    left: 3%;
}
.h3_landscape{
/*    width: 85px;*/
/*    width: 55px;*/
    width: calc(100vw*0.15);
    height: auto;
    margin-right: 0;
}


.landscape h4{
    width: calc(100vw - 55px - 100vw*0.03);
    text-align: center;
}

.h4_landscape{
/*    width: 257px;*/
    width: calc(100vw*0.685);
    height: auto;
    margin-top: 20px;

}

.pc .h4_landscape{
    display: none;
}


.country_main_img{
/*    margin-top: 140px;*/
    margin-top: 37%;
    width: 100%;
    margin-bottom: 12px;
}

.country_flex{
    margin: 0 auto;
/*    width: 350px;*/
    width: 93%;
    display: flex;
    justify-content: space-between;
}

.country_flex_box{
    width: calc((100% - 12px)*0.5);
}

.country_flex_box img{
    width: 100%;
    margin-bottom: 10px;
}
.country_flex_box{
}
.country_flex_box h5{
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 12px;
}

.country_flex_box p{
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.8;

    width: 94%;
    margin: 0 auto;
}

.baltic{
    background-color: #3a6e37;
    padding: 26px 0 55px;
}


.baltic .country:first-of-type{
    margin-top: 0;
}
.baltic .country{
    margin-bottom: 0;
}

.title_balticsea{
    position: relative;
    margin-bottom: 34px;
}

.img_balticsea{
    display: block;
    width: 82px;
    margin: 0 auto;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}


.line{
    width: 100%;
    height: 1px;
    border-top: 1px solid #65af61;
    border-bottom: 1px solid #65af61;

}
/*
@media screen and (min-width:500px) {

    .country_flex_h{
        width: 100px;
        display: block;
        position: relative;
    }

    .country_flex_pc{
        display: flex;
        justify-content: flex-start;

        width: 800px;
        margin: 0 auto;
    }


    .h3_landscape{
        width: 100px;
        height: auto;
        margin-right: 0;
    }

    .landscape h3{
        display: inline-block;
        width: 100px;
    }
    .landscape h4{
        width: 700px;
        margin: 0 0 34px auto;
    }
    .h4_landscape{
        width: 548px;
        height: auto;
        margin: 20px auto 0;

    }

    .sp .h4_landscape{
        display: none;
    }

    .pc .h4_landscape{
        display: block;
        margin-top: 0;
    }


    .country_main_img{
        margin-top: 15px;
        width: 700px;
        margin-bottom: 20px;
    }

    .country_flex{
        margin: 0 auto;
        width: 800px;
        display: flex;
        justify-content: flex-end;
    }

    .country_flex_box{
        width: 330px;
    }

    .country_flex_box:first-of-type{
        margin-right: 40px;
    }

    .country_flex_box img{
        width: 100%;
        margin-bottom: 10px;
    }

    .baltic{
        background-color: #3a6e37;
        padding: 32px 0 78px;
    }


    .baltic .country:first-of-type{
        margin-top: 0;
        margin-bottom: 0;
    }

}
*/
/*@media screen and (min-width:880px) {*/
@media screen and (min-width:540px) {

    .bg_map{
        max-width: 800px;
        width: 90%;
        margin: 0 auto;
        background-image: url(../resources/landscape_map.png);
        background-position: top 86px right -20px;
        background-size: contain auto;
        background-repeat: no-repeat;
    }
    .baltic_content{
        max-width: 800px;
        width: 90%;
        margin: 0 auto;
    }


}
@media screen and (min-width:540px) {

    .landscape{
        width: 100%;
        padding: 2.5% 0 0;
        background-image: -moz-linear-gradient( 90deg, rgb(101,175,97) 48%, rgb(116,193,113) 85%);
        background-image: -webkit-linear-gradient( 90deg, rgb(101,175,97) 48%, rgb(116,193,113) 85%);
        background-image: -ms-linear-gradient( 90deg, rgb(101,175,97) 48%, rgb(116,193,113) 85%);
        background-position: top left;
        background-size: 100% 1340px;
        background-repeat: no-repeat;
        background-color: #65af61;
    }

/*    .bg_map{
        max-width: 800px;
        width: 90%;
        margin: 0 auto;
        background-image: url(../resources/landscape_map.png);
        background-position: top 86px right -20px;
        background-size: 758px auto;
        background-repeat: no-repeat;
    }

*/
    .country:first-of-type{
        margin-top: 220px;
    }


    .h2_landscape{
        display: block;
        margin: 0 auto 364px;
        max-width: 800px;
        width: 87.5%
        height: auto;
    }

    .country{
        position: relative;
        margin: 0 auto 70px;

        max-width: 800px;
        width: 100%
    }

    .country_flex_h{
        width: 8%;
        max-width: 70px;
        display: block;
        position: relative;
        left: 0;
    }

    .country_flex_pc{
        display: flex;
/*        justify-content: flex-start;*/
        justify-content: space-between;

        width: 100%;
        margin: 0 0 0 auto;
    }


    .h3_landscape{
        width: 100%;
        height: auto;
    }

    .landscape h3{
        display: inline-block;
/*        width: 100px;*/
        max-width: 70px;
        width: 100%;
    }
    .landscape h4{
/*        width: 700px;*/
        max-width: 700px;
        width: 87.5%;
        margin: 0 0 34px auto;
    }
    .h4_landscape{
/*        width: 548px;*/
        width: 550px;
        height: auto;
        margin: 20px auto 0;

    }

    .sp .h4_landscape{
        display: none;
    }

    .pc .h4_landscape{
        display: block;
        margin-top: 0;
        width: 79%;
    }


    .country_main_img{
        margin-top: 15px;
        max-width: 700px;
        width: 87.5%;

        margin-bottom: 20px;
    }

    .country_flex{
        margin: 0 0 0 auto;
        max-width: 700px;
        width: 87.5%;
        display: flex;
        justify-content: flex-end;
    }

    .country_flex_box{
        max-width: 330px;
        width: 47%;
    }

    .country_flex_box:first-of-type{
        margin-right: 40px;
    }

    .country_flex_box img{
        width: 100%;
        margin-bottom: 10px;
    }
    .country_flex_box{
    }
/*    .country_flex_box h5{
        text-align: center;
        font-size: 1.6rem;
        font-weight: bold;
        color: #fff;
        margin-bottom: 12px;
    }

    .country_flex_box p{
        font-size: 1.4rem;
        color: #fff;
        line-height: 1.8;
    }
*/
    .baltic{
        background-color: #3a6e37;
        padding: 32px 0 78px;
    }


    .baltic .country:first-of-type{
        margin-top: 0;
        margin-bottom: 0;
    }

    .title_balticsea{
        position: relative;
        margin-bottom: 40px;
    }

    .img_balticsea{
        display: block;
        width: 102px;
        margin: 0 auto;

        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }


    .line{
        width: 100%;
        height: 1px;
        border-top: 1px solid #65af61;
        border-bottom: 1px solid #65af61;

    }
}

@media screen and (min-width:880px) {
    .country_flex_box h5{
        text-align: center;
        font-size: 1.6rem;
        font-weight: bold;
        color: #fff;
        margin-bottom: 12px;
    }

    .country_flex_box p{
        font-size: 1.4rem;
        color: #fff;
        line-height: 1.8;
    }
}



.best_season{
    background-color: #daa83e;
    padding: 53px 0 70px 0;
}

.h2_bestseason{
    display: block;
    margin: 0 auto 40px;
    max-width: 348px;
    width: 92.8%;
    height: auto;
}


.best_season_flex{
    max-width: 500px;
    width: 94%;
    margin: 0 auto 38px;
}

.best_season_flex:last-of-type{
    margin: 0 auto;
}
.best_season_flex_title{
    display: block;
    margin: 0 auto 20px;
    height: auto;
}

.best_season_flex_title._01{
/*    width: 195px;*/
    width: calc(100vw*0.52);
}

.best_season_flex_title._02{
/*    width: 239px;*/
    width: calc(100vw*0.63);
}

.best_season_flex_title._03{
/*    width: 220px;*/
    width: calc(100vw*0.58);
}

.best_season_description{

    width: 97%;
    color: #fff;
    line-height: 1.8;
    margin: 0 auto 20px;

}

.best_season_flex_img{
    width: 100%;
    height: auto;
}

@media screen and (min-width:880px) {

    .best_season{
        padding: 62px 0 95px;
    }
    .h2_bestseason{
        display: block;
        margin: 0 auto 61px;
        width: 455px;
        height: auto;
    }

    .best_season_flex_title._01{
        width: 231.5px;
    }

    .best_season_flex_title._02{
        width: 279.5px;
    }

    .best_season_flex_title._03{
        width: 263.5px;
    }

    .best_season_flex{
        width: 90%;
        max-width: 800px;
        margin: 0 auto 38px;

        display: flex;
        justify-content: space-between;
    }

    .best_season_flex.re{
        flex-direction:row-reverse
    }
    .best_season_flex_text{
        width: 307px;
    }

    .best_season_flex_img{
        width: 460px;
        height: auto;
    }
}

/*float btn */
.float_title,
.float_tel{
    display: none;
}
.float{
    background-color: rgba(70,92,152,0.5);
    background-image: none;
    position: fixed;
    bottom: -85px;
    left: 0;
    opacity: 0;
    z-index: -100;
    transition: all .7s ease-in-out;
}
.conv_area.float.disp{
    z-index: 101;
    opacity: 1;
    bottom: 0;
}

@media screen and (min-width:880px) {


    .float_title{
        display: block;
        color: #fff;
        font-weight: normal;
        font-size: 1.2rem;
        width: 14px;
        line-height: 14px;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        letter-spacing: 2px;

        padding-top: 28px;
        margin-right: 22px;

        position: relative;

    }

    .float_title:before{
        display: block;
        content: '';
        height: 14px;
        width: 14px;
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url(../resources/conv_open.svg);

        position: absolute;
        top: 0;
        left: 0;

    }

    .open .float_title:before{
        background-image: url(../resources/conv_close.svg);
        top: 0;
        left: 1px;
    }

    .float{
        background-color: rgba(70,92,152,0.8);
        box-sizing: border-box;
        border-radius: 10px 0 0 10px;
        width: 291px;
        height: 208px;
        padding: 26px 22px 13px 16px;

        left: unset;
        bottom: 60px;
        right: -250px;
    }

    .open.float{
        left: unset;
        bottom: 60px;
        right: 0;
    }

    .conv_area.float.disp{
        bottom: 60px;
    }


    .float_flex{
        display: flex;
        align-items: flex-start;
    }
    .float .conv_wrap{
        display: block;
    }

    .float .btn_conv{
        width: 220px;
        height: 45px;

        margin-bottom: 9px;
    }


    .float_tel{
        display: block;
        width: 220px;
        margin-top: 15px;
        color: #fff;
        font-size: 1.2rem;
        text-align: center;
        font-weight: nomal;
    }
    .float_tel .large{
        margin-top: 6px;
        font-size: 1.5rem;
        font-weight: nomal;
    }
    .float_tel .small{
        margin-top: 6px;
        font-size: 1.0rem;
        font-weight: nomal;
    }

}
