@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;
    background-image: url('../resources/bg_fv.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


@media screen and (min-width:591px) {
    .fv{
        background-position: center center;
    }
}


/* タイトルロゴ */
.h1_cp{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-54%);
    display: block;
    margin: 0 auto 0;
    width: 92%;
    max-width: 472px;
    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: 472px;
        width: 48%;
        transform: translate(-50%,-54%);
    }
}


.conv_area{
    width: 100%;
    background-color: #194f71;
    padding:15px 0;
}

.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: #daa83e;
    color: #daa83e;

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

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


    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    background: -webkit-linear-gradient(180deg,
    #f26666,
    #f26666,
    #daa83e,
    #daa83e);
    background: -webkit-linear-gradient(right,
    #f26666,
    #f26666,
    #daa83e,
    #daa83e);
    background: linear-gradient(270deg,
    #f26666,
    #f26666,
    #daa83e,
    #daa83e);
    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;


}

.svg_arrow{
    width: 19px;
    height: 19px;
}
.svg_arrow path{
    fill: #946d4c;
}

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

.btn_conv:hover .btn_caption{
    color: #fff;
}


.btn_conv:hover .svg_arrow path{
    fill: #fff;
}


.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_conv.large .btn_caption{
    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;
    }

}


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

.h2_voyage{
    display: block;
    width: 307px;
    height: auto;
    margin: 0 auto 72%;
}

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

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

.list_voyage_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_voyage_course dd{
    color: #fff;
/*    font-size: 1.9rem;*/
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 32px;
}

.voyage_map{
    display: block;
    max-width: 564px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

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

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


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

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

    .h2_voyage{
        margin: 0 auto 32%;
    }
    .list_voyage_course dt{
        font-size: 1.2rem;
    }
    .list_voyage_course dd{
        font-size: 1.8rem;
    }

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

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

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

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

}

/* conversion*/
.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: 244px;
    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: 71%;
        height: auto;
    }

    .pamphlet_img{
        margin-bottom: 16px;
    }

    .session_img{
        margin-bottom: 16px;
    }

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


}



/* footer */
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%;
    }

}


/* slideコンテンツ */
.slide_wrap{
    width: 100vw;
    margin: 0 auto;
    overflow-x: hidden;

}

.slide_content{
    display: inline-block;
    width: 48%;
    margin-right: 10px;
    padding: 5px 5px 52px;

    position: relative;

}

/*slideの高さを揃える*/
.slick-track {
  display: flex;
}
.slick-slide {
  height: auto !important;
}
/*slideの高さを揃える*/


.slide_img{
    width: 100%;
    height: auto;
    margin: 0 auto 11px;
}

.slide_text{
    width: 92%;
    font-size: 1.3rem;
    line-height: 1.5;
    color: #342c2b;
    margin: 0 auto;
    text-align: left!important;
    direction: ltr!important;
}


.slide_footer{
    text-align: center;
    border-top: #ccb88a 1px solid;
    width: 98%;
    padding: 13px 0;

    font-size: 1.2rem;
    color: #9e3c39;

    position: absolute;
    bottom: 0;
    left: 0;
}

@media screen and (min-width:880px) {
    .slide_wrap{
        width: 100vw;
        margin: 0 auto;
        overflow-x: hidden;

    }

    .slide_content{
        display: inline-block;
        width: 48%;
        margin-right: 10px;
        padding: 5px 5px 78px;

        position: relative;

    }

    /*slideの高さを揃える*/
    .slick-track {
      display: flex;
    }
    .slick-slide {
      height: auto !important;
    }
    /*slideの高さを揃える*/


    .slide_img{
        width: 100%;
        height: auto;
        margin: 0 auto 11px;
    }
    .slide_title{
        text-align: center;
        width: 98%;

        font-size: 2.0rem;
        color: #9e3c39;
        margin: 0 auto 15px;
        font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    }

    .slide_text{
        width: 92%;
        line-height: 1.5;
        font-size: 1.4rem;
        margin: 0 auto;
    }


    .slide_footer{
        text-align: center;
        border-top: #ccb88a 1px solid;
        width: 98%;
        padding: 13px 0;

        font-size: 1.2rem;
        color: #9e3c39;

        position: absolute;
        bottom: 0;
        left: 0;
    }

}


/*float btn */
.float_title,
.float_tel{
    display: none;
}
.float{
    background-color: rgba(25,79,113,0.8);
    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(25,79,113,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;
    }

}

/* price */
.price{
    width: 100%;
    background-color: #f5edea;
}

.course_price{
    box-sizing: border-box;
    margin: 0 auto;
    padding: 62px 4%;
}

.h2_price{
    max-width: 315px;
    width: 91%;
    margin: 0 auto 45px;
}
.h2_price_img{
    width: 100%;
    height: auto;
}

.course_price_img{
    display: block;
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 0 auto 38px;
}


.price_detail{
    max-width: 600px;
    width: 100%;
    margin: 0 auto 38px;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.8;
    color: #6b4141;
    padding-left: 1em;
}

.family_plan{
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.8;
    color: #62b0aa;
}

.price_detail li{
    list-style: disc;
}

.family_plan li{
box-sizing: border-box;
    width: 100%;
    display: inline-block;
    padding-left: 2em;
    position: relative;
}

.family_plan li:before{
    display: inline-block;
    width: 1em;
    height: 1.8em;
    content: "※";
    position: absolute;
    left: 0;
}

.family_plan_img{
    display: block;
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 0 auto 38px;
}


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

    .course_price{
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
        padding: 90px 0 90px;
    }

    .h2_price{
        max-width: 315px;
        width: 31.5%;
        margin: 0 auto 70px;
    }
    .h3_price_img{
        width: 100%;
        height: auto;
    }

    .course_price_img{
        width: 48%;
        max-width: 345px;
        height: auto;
        margin: 0 0 60px;
    }
    .course_price_img:nth-of-type(2n){
        margin-right: 0;
    }
    .course_price_img:nth-of-type(n+3){
        margin-bottom: 48px;
    }


    .price_detail{
        box-sizing: border-box;
        width: 72%;
        max-width: 720px;
        margin: 0 auto 48px;
    }
    .price_flex{
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        width: 72%;
        max-width: 720px;
        margin: 0 auto;
    }

    .family_plan{
        box-sizing: border-box;
        width: 48%;
        max-width: 345px;
        margin: 0 0;
    }

    .family_plan_img{
        width: 48%;
        max-width: 345px;
        height: auto;
        margin: 0 0 10px;
    }

}


/* premium_cruise */
.premium_cruise{
    padding: 50px 0 0;
}

.h2_premium_cruise{
    max-width: 418px;
    width: 77%;
    margin: 0 auto 50px;
}
.h2_premium_cruise img{
    width: 100%;
    height: auto;
}

.premium_cruise_main_img{
    display: block;
    max-width: 900px;
    width: 100%;
    margin: 0 auto 25px;
}

.premium_cruise_h3{
    max-width: 600px;
    width:98%;
    margin: 0 auto 20px;
}
.premium_cruise_h3 img{
    width: 100%;
    height: auto;
}

.premium_cruise_text{
    width: 87%;
    margin: 0 auto 24px;

    font-size: 1.4rem;
    line-height: 2;
}
.premium_cruise_text.green{
    color: #25975c;
}

.premium_cruise_text.gold{
    color: #816429;
}

.premium_cruise_text.blue{
    color: #18748c;
}

.premium_cruise_text.pink{
    color: #c04864;
}



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

    .premium_cruise{
        padding: 92.5px 0 0;
    }

    .h2_premium_cruise{
        max-width: 418px;
        width: 100%;
        margin: 0 auto 74px;
    }

    .premium_cruise_main_img{
        margin: 0 auto 54px;
    }

    .premium_cruise_h3{
        max-width: 600px;
        width: 60%;
        margin: 0 auto 42.5px;
    }

    .premium_cruise_text{
        max-width: 600px;
        width: 60%;
        margin: 0 auto 44px;
    }

}
