@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{
    display: none;
}

/* ローディング背景 */
.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/bg3b-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/bg3b-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 28s 0s infinite ease-in-out;
    animation: anime 28s 0s infinite 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;
}

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

/*スライドショー　*/
@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: 68%;
    max-width: 249px;
    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: 388px;
        width: 48%;
        transform: translate(-50%,-85%);
    }
}


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


    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    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;


    margin-right: 15px;
}


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



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

}

/* マウスオーバー時 */
.btn_conv: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-position:50% 100%;*/
    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%;
    }

}
