@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;
    clip-path: inset(0);

}

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

h2 {
    font-weight: 600;
}

p {}

.sp_br, .btn_br {
    display: block;
}

.pc_br, .pc_br_2 {
    display: none;
}

a {
    cursor: pointer;
    color: inherit;
}


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

    .pc_br_2 {
        display: block;
    }
}

@media screen and (min-width:610px) {
    .pc_br {
        display: block;
    }
}

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

}



/*　ローディング
---------------*/
/* 初期状態ではコンテンツ非表示 */
.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: calc(100vh - 125px);
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.fv {
    width: 100vw;
    height: calc(100vh - 125px);
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


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

    /* WebP対応ブラウザ */
    @supports (background-image: image-set(url('../resources/webp/bg_fv.webp') type('image/webp'))) {
        .fv {
            background-image: image-set(url('../resources/webp/bg_fv.webp') type('image/webp'),
                    url('../resources/bg_fv.jpg') type('image/jpg'));
        }
    }

    /* WebP非対応ブラウザ */
    @supports not (background-image: image-set(url('../resources/webp/bg_fv.webp') type('image/webp'))) {
        .fv {
            background-image: url('../resources/bg_fv.jpg');
        }
    }
}

/* ▼ 画面幅 799px 以下（SP） ▼ */
@media screen and (max-width: 799px) {
    .fv {
        background-position: top center;
    }

    /* WebP対応ブラウザ */
    @supports (background-image: image-set(url('../resources/webp/bg_fv_sp.webp') type('image/webp'))) {
        .fv {
            background-image: image-set(url('../resources/webp/bg_fv_sp.webp') type('image/webp'),
                    url('../resources/bg_fv_sp.jpg') type('image/jpg'));
        }
    }

    /* WebP非対応ブラウザ */
    @supports not (background-image: image-set(url('../resources/webp/bg_fv_sp.webp') type('image/webp'))) {
        .fv {
            background-image: url('../resources/bg_fv_sp.jpg');
        }
    }
}


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

}


.conv_area {
    width: 100%;
    padding: 17px 0;
    background-image: url(../resources/bg_conv_sp.jpg);
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: center center;
}

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


.conv_wrap {
    width: 92%;
    margin: 0 auto;

    display: flex;
    justify-content: center;
}


.fv_conv .conv_wrap {
    display: block;
}

.btn_conv {
    box-sizing: border-box;

    max-width: 240px;
    width: calc((100% - 15px) / 2);
    height: 55px;

    font-size: 1.8rem;
    background-color: #ec7070;
    color: #ec7070;

    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,
            #fff,
            #fff,
            #ec7070,
            #ec7070);
    background: -webkit-linear-gradient(right,
            #fff,
            #fff,
            #ec7070,
            #ec7070);
    background: linear-gradient(270deg,
            #fff,
            #fff,
            #ec7070,
            #ec7070);
    background-position: 1% 50%;
    background-size: 300% 300%;
    border: none;


    margin-right: 15px;
}

.fv_conv .btn_conv {
    width: 100%;
    height: 55px;
    max-width: unset;
}


.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: #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_conv.large .free {
    background-color: #fff;
}


.btn_arrow {
    width: 8px;
}


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

.btn_conv.large:hover {
    background-position: 99% 50%;
    color: #452213;
    cursor: pointer;
}

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

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

.btn_conv:hover .free {
    background-color: #ec7070;
}

.btn_conv.large:hover .free {
    background-color: #fff;
}

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


@media screen and (min-width:591px) {
    .fv_conv .conv_wrap {
        display: flex;
    }

    .conv_wrap {
        max-width: 800px;
        width: 90%;
        justify-content: center;
    }

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

    }

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

    .btn_conv.large {
        width: 100%;
    }

    .conv_area {
        background-image: url(../resources/bg_conv.jpg);
    }
}

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

    .conv_wrap {
        width: 92%;
        margin: 0 auto;

        display: flex;
        justify-content: center;
    }

    .fv_conv .conv_wrap {
        display: flex;
    }

}



/*
右から左へ
----------------------------*/
@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;
    white-space: nowrap;
}

.scr_item_text {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
}

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


@media screen and (max-width:591px) {
    .head_scrl .scr_infinity__list--left {
        animation: infinity-scroll-left 45s infinite linear 0.5s both;
    }

}


.scr_item img {
    height: calc(100vw*0.26);
    min-height: 98px;
    width: auto;
    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:800px) {
    .scr_item img {
        height: calc(100vw*0.1);
        width: auto;
    }

    .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;
    }

}


/* 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: 32px 0 0;
    }


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

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

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

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

}


/*float btn */
.float_title,
.float_tel {
    display: none;
}

.float {
    background-color: rgba(7, 148, 190, 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;
}

.btn_conv- {
    font-size: 1.8rem;
    background-color: #ec7070;
    color: #ec7070;
    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, #fff, #fff, #ec7070, #ec7070);
    background: -webkit-linear-gradient(right, #fff, #fff, #ec7070, #ec7070);
    background: linear-gradient(270deg, #fff, #fff, #ec7070, #ec7070);
    background-position: 1% 50%;
    background-size: 300% 300%;
    border: none;
}

@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(7, 148, 190, 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;
    }

}


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

}

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

    position: relative;

}

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

.slick-slide {
    height: auto !important;
}

.slick-slide img {
    aspect-ratio: 1.47/ 1;
}

/*slideの高さを揃える*/


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


.slide_title {
    text-align: center;
    width: 98%;

    font-size: 1.4rem;
    font-weight: bold;
    color: #64a79d;
    margin: 0 auto 15px;
}


.slide_text {
    width: 98%;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #333;
    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 0;

        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: 1.4rem;
        font-weight: bold;
        color: #64a79d;
        margin: 0 auto 15px;
    }

    .slide_text {
        width: 98%;
        line-height: 1.5;
        font-size: 1.2rem;
        color: #333;
        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;
    }

}


/* メインビジュアル */
.head_scrl {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background-color: rgba(121, 173, 102, 0.62);

    box-sizing: border-box;
    padding: 7px 0;
    height: 30px;
}

.head_scrl img {
    width: 442px;
    min-height: unset;
    height: auto;
    margin-right: 20px;
}

.head_logo {
    position: absolute;
    top: 68px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    max-width: 900px;
    width: 80%;
    height: auto;
}

@media screen and (max-width:800px) {
    .head_logo {
        position: absolute;
        top: 50px;
        max-width: 500px;
        width: 96%;
        height: auto;
    }

}

/*cvボタン*/
.cv_btn {
    transition: opacity 0.3s ease-in-out;
    /* 0.3秒かけてスムーズに変化 */
    opacity: 1.0;
}

.cv_btn:hover {
    opacity: .6;
}



/*anchor_btn_area*/
.anchor_btn_area {
    max-width: 1000px;
    width: 98%;
    margin: 10px auto 0;
    display: flex;
    justify-content: space-between;
}

.anchor_btn {
    max-width: 323px;
    width: 33%;
    margin: 0 auto;
    opacity: .6;
    transition: opacity 0.3s ease-in-out;
    /* 0.3秒かけてスムーズに変化 */
}

.anchor_btn.active {
    opacity: 1.0;
}

.anchor_btn:hover {
    opacity: 1.0;
}



.anchor_btn img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

@media screen and (max-width: 799px) {
    .anchor_btn {
        width: 32.5%;
    }
}

.wrap_80 {
    max-width: 800px;
    width: 80%;
    margin: 0 auto;
}


.wrap_93 {
    max-width: 928px;
    width: 93%;
    margin: 0 auto;
}


.wrap_90 {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
}


.wrap_96 {
    max-width: 960px;
    width: 96%;
    margin: 0 auto;
}

.wrap_100 {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}


/*voyage*/
.content_voyage {
    padding: 52px 0 46px;
}

.content_voyage_main {
    margin: 0 auto 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.content_voyage_h2 {
    max-width: 391px;
    width: 40%;
    height: auto;
}

.content_voyage_text {
    max-width: 45%;
    width: 447px;
    height: auto;
}

.content_voyage_title {
    color: #0794be;
    font-size: 2.0rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.content_voyage_date {
    color: #0794be;
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.content_voyage_description {
    color: #333;
    font-size: 1.6rem;
    line-height: 1.7;
}

.content_voyage_map {
    display: block;
    max-width: 828px;
    width: 83%;
    height: auto;
    margin: 26px auto 35px;
}

.content_voyage_h3 {
    color: #333;
    font-weight: bold;
    font-size: 1.6rem;
    line-height: 1.7;

    margin-bottom: 10px;
}

.content_voyage_ports {
    color: #333;
    font-size: 1.4rem;
    line-height: 1.7;
}

@media screen and (max-width: 799px) {

    .content_voyage_main {
        margin: 0 auto 50px;
        display: block;
    }

    .content_voyage_h2 {
        max-width: 391px;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .content_voyage_text {
        max-width: unset;
        width: 100%;
        height: auto;
    }

    .content_voyage_map {
        width: 98%;
    }

    .content_voyage_h3 {
        color: #333;
        font-weight: bold;
        font-size: 1.6rem;
        line-height: 1.7;
    }

}



/**cv**/
.cv_area {
    background-color: #0794be;
}

/* ▼ 画面幅 799px 以下（SP） ▼ */
@media screen and (max-width: 799px) {

    /* WebP対応ブラウザ */
    @supports (background-image: image-set(url('../resources/webp/bg_cv_sp.webp') type('image/webp'))) {
        .cv_area {
            padding-bottom: 28px;
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center top;
            background-image: image-set(url('../resources/webp/bg_cv_sp.webp') type('image/webp'),
                    url('../resources/bg_cv_sp.jpg') type('image/jpg'));
        }
    }

    /* WebP非対応ブラウザ */
    @supports not (background-image: image-set(url('../resources/webp/bg_cv_sp.webp') type('image/webp'))) {
        .cv_img {
            background-image: url('../resources/bg_cv_sp.jpg');
        }
    }
}


.cv_content {
    display: flex;
    align-items: stretch;
    /* 高さを揃える（デフォルトは stretch） */
}

.cv_img {
    box-sizing: border-box;
    padding: 25px 0 0 30px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    max-width: 635px;
    width: 63%;
}


/* ▼ 画面幅 800px 以上（PC） ▼ */
@media screen and (min-width: 800px) {

    /* WebP対応ブラウザ */
    @supports (background-image: image-set(url('../resources/webp/bg_cv.webp') type('image/webp'))) {
        .cv_img {
            background-image: image-set(url('../resources/webp/bg_cv.webp') type('image/webp'),
                    url('../resources/bg_cv.jpg') type('image/jpg'));
        }
    }

    /* WebP非対応ブラウザ */
    @supports not (background-image: image-set(url('../resources/webp/bg_cv.webp') type('image/webp'))) {
        .cv_img {
            background-image: url('../resources/bg_cv.jpg');
        }
    }
}

/* ▼ 画面幅 799px 以下（SP） ▼ */
@media screen and (max-width: 799px) {
    .cv_img {
        background-image: none;
    }
}

.cv_btns {
    box-sizing: border-box;
    padding: 22px 27px 22px 25px;
    max-width: 365px;
    width: 37%;
    background-color: #0794be;
}

.cv_caption {
    display: block;
    max-width: 391px;
    width: 62%;
    height: auto;
}

.cv_btns a {
    display: block;
    max-width: 315px;
    width: 100%;
}

.cv_btns a img {
    display: block;
    width: 100%;
    height: auto;
}


.cv_request,
.cv_session {
    margin-bottom: 15px;
    width: 100%;
    height: auto;
}

.cv_tel {
    max-width: 315px;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 799px) {

    .cv_img {
        width: 100%;
        max-width: unset;
        background-position: center top;
        background-size: cover;
        padding: 25px 0 30%;
    }

    .cv_content {
        display: block;
    }

    .cv_caption {
        display: block;
        max-width: 391px;
        width: 74%;
        height: auto;
        margin: 0 auto;
    }

    .cv_btns {
        margin: 0 auto;
        padding: unset;
        max-width: 400px;
        width: 96%;
    }

    .cv_btns a {
        display: block;
        max-width: unset;
        width: 100%;
    }

    .cv_btns a img {
        display: block;
        max-width: unset;
        width: 100%;
    }

    .cv_tel {
        max-width: unset;
        width: 100%;
    }



}



.voyage_info {
    box-sizing: border-box;
    background-color: #f2f2f2;
    padding: 30px 0 20px;
}


.fv_parts {
    position: relative;
    width: 96%;
    height: 100%;
    margin: 0 auto;
}


.fv_parts_under {
    position: absolute;
    left: 0;
    bottom: 22px;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}




.fv_laurel {
    max-width: 260px;
    width: 30%;
}

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


.fv_cv {
    max-width: 300px;
    width: 25%;
    height: auto;
}

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

.fv_selectable {
    margin-bottom: 20px;
}

@media screen and (max-width: 799px) {
    .fv_selectable {
        display: none;
    }
}

/* ▼ 画面幅 800px 以上（PC） ▼ */
@media screen and (max-width: 799px) {
    .fv_parts {
        position: relative;

        width: 98%;
        height: 100%;
        margin: 0 auto;

    }


    .fv_parts_under {
        left: 0;
        bottom: 22px;
        width: 100%;

        display: block;
    }

    .fv_laurel {
        margin: 0 auto;
        max-width: 400px;
        width: 96%;
    }

    .fv_cv {
        margin: 18px auto 0;
        max-width: 400px;
        width: 96%;
    }



}

/*--encounters--*/
.encounters {
    padding: 137px 0 75px;
    background-color: #f7d3d1;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;

}

@media screen and (min-width: 1300px) {
    .encounters {
        padding: 137px 0 75px;
        background-color: #f7d3d1;
        background-repeat: no-repeat;
        background-position: top center;
        background-size: 1500px auto;

    }
}




/* ▼ 画面幅 800px 以上（PC） ▼ */
@media screen and (min-width: 800px) {

    /* WebP対応ブラウザ */
    @supports (background-image: image-set(url('../resources/webp/bg_encounters.webp') type('image/webp'))) {
        .encounters {
            background-image: image-set(url('../resources/webp/bg_encounters.webp') type('image/webp'),
                    url('../resources/bg_encounters.png') type('image/png'));
        }
    }

    /* WebP非対応ブラウザ */
    @supports not (background-image: image-set(url('../resources/webp/bg_encounters.webp') type('image/webp'))) {
        .encounters {
            background-image: url('../resources/bg_encounters.png');
        }
    }
}

/* ▼ 画面幅 800px 以上（PC） ▼ */
@media screen and (max-width: 799px) {
    .encounters {
        padding: 0 0 75px;
        background-image: none;
    }


    .encounters_main {
        height: calc(100vw * 1.27);
        /* ← 高さを100vw×1.27に */
        padding-top: 37px;
        background-repeat: no-repeat;
        background-position: bottom;
        background-size: cover;
    }

    /* WebP対応ブラウザ */
    @supports (background-image: image-set(url('../resources/webp/bg_encounters_sp.webp') type('image/webp'))) {
        .encounters_main {
            background-image: image-set(url('../resources/webp/bg_encounters_sp.webp') type('image/webp'),
                    url('../resources/bg_encounters_sp.png') type('image/png'));
        }
    }

    /* WebP非対応ブラウザ */
    @supports not (background-image: image-set(url('../resources/webp/bg_encounters_sp.webp') type('image/webp'))) {
        .encounters_main {
            background-image: url('../resources/bg_encounters_sp.png');
        }
    }
}


.encounters_main_text {
    max-width: 435px;
    width: 44%;
    margin-left: 49%;
}


.h2_encounters {
    width: 100%;
    margin-bottom: 30px;
}


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

.encounters_main_description {
    color: #333;
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 155px;
}

.encounters_item {
    position: relative;
    box-sizing: border-box;
    background-color: #41b1a2;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    /* 高さを揃える */
    margin-bottom: 35px;

    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 460px auto;
}

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

.encounters_L {
    box-sizing: border-box;
    padding-left: 15px;
    width: 51%;
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: cover;
    display: flex;
}

/* --背景設定-- */
/* WebP対応ブラウザ */
@supports (background-image: image-set(url('../resources/webp/bg_encounters01.webp') type('image/webp'))) {
    .encounters_item._01 .encounters_L {
        background-image: image-set(url('../resources/webp/bg_encounters01.webp') type('image/webp'),
                url('../resources/bg_encounters01.jpg') type('image/jpg'));
    }
}

@supports (background-image: image-set(url('../resources/webp/bg_encounters02.webp') type('image/webp'))) {
    .encounters_item._02 .encounters_L {
        background-image: image-set(url('../resources/webp/bg_encounters02.webp') type('image/webp'),
                url('../resources/bg_encounters02.jpg') type('image/jpg'));
    }
}

@supports (background-image: image-set(url('../resources/webp/bg_encounters03.webp') type('image/webp'))) {
    .encounters_item._03 .encounters_L {
        background-image: image-set(url('../resources/webp/bg_encounters03.webp') type('image/webp'),
                url('../resources/bg_encounters03.jpg') type('image/jpg'));
    }
}


/* WebP非対応ブラウザ */
@supports not (background-image: image-set(url('../resources/webp/bg_encounters01.webp') type('image/webp'))) {
    .encounters_item._01 .encounters_L {
        background-image: url('../resources/bg_encounters01.jpg');
    }
}

@supports not (background-image: image-set(url('../resources/webp/bg_encounters02.webp') type('image/webp'))) {
    .encounters_item._02 .encounters_L {
        background-image: url('../resources/bg_encounters02.jpg');
    }
}

@supports not (background-image: image-set(url('../resources/webp/bg_encounters03.webp') type('image/webp'))) {
    .encounters_item._03 .encounters_L {
        background-image: url('../resources/bg_encounters03.jpg');
    }
}




.encounters_label_div {
    max-width: 75px;
    width: 18%;
    margin-right: 15px;
}

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

.encounters_text {
    box-sizing: border-box;
    margin-right: 15px;
    max-width: 325px;
    padding-top: 46px;
    width: 82%;
}

.h3_encounters {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.encounters_title {
    width: 100%;
    color: #fff;
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
    letter-spacing: -1px;
    /* 文字間を1px詰める */

    margin-bottom: 20px;
}

.encounters_description {
    width: 100%;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.7;
}


.encounters_img {
    box-sizing: border-box;
    margin: 15px 15px 15px 0;
    max-width: 475px;
    width: 60%;
    aspect-ratio: 475 / 320;
    position: relative;
    overflow: hidden;
}


.encounters_slide {
    width: 100%;
    height: auto;
    display: block;
}

.encounters_slide_item {
    width: 100%;
    z-index: 10;
    opacity: 0;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;

    -webkit-animation: anime 12s 0s infinite ease-in-out;
    animation: anime 12s 0s infinite ease-in-out;
}

.encounters_slide_item:nth-of-type(2) {
    -webkit-animation-delay: 4s;
    /* 9s ÷ 3 */
    animation-delay: 4s;
}

.encounters_slide_item:nth-of-type(3) {
    -webkit-animation-delay: 8s;
    /* 9s ÷ 3 × 2 */
    animation-delay: 8s;
}

@keyframes anime {
    0% {
        opacity: 0;
    }

    11% {
        /* ≈1秒でフェードイン */
        opacity: 1;
    }

    44% {
        /* 4秒くらい表示 */
        opacity: 1;
    }

    55% {
        /* フェードアウト */
        opacity: 0;
        z-index: 9;
    }

    100% {
        opacity: 0;
    }
}


@media screen and (max-width: 799px) {

    .encounters .wrap_96 {
        width: 93%;
    }

    .encounters_main_text {
        max-width: 385px;
        width: 93%;
        margin: 0 auto;
    }

    .h2_encounters {
        margin: 0 auto 30px;
    }


    .encounters_main_description {
        color: #333;
        font-size: 1.4rem;
        line-height: 1.7;
        margin-bottom: 155px;
    }

    .encounters_item {
        max-width: 385px;
        width: 95%;

        display: block;

    }


    .encounters_L {
        box-sizing: border-box;
        padding: 0 0 33px 0;
        width: 100%;
        background-position: bottom left;
        display: flex;
        min-height: 262px;
    }


    .encounters_label_div {
        max-width: unset;
        width: 16%;
        margin-left: 8px;
        margin-right: 18px;
    }

    .encounters_text {
        margin-top: 15px;
        margin-right: unset;
        max-width: unset;
        padding-top: 29px;
        width: 70%;
    }

    .encounters_title {
        font-size: 1.4rem;
    }

    .encounters_description {
        width: 100%;
        color: #fff;
        font-size: 1.2rem;
        line-height: 1.7;
    }

    .encounters_img {
        width: 100%;
        margin: 0;
    }

}



/*--point--*/
.point {
    padding: 37px 0 70px;
    background-color: #5b6b0f;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
}



.h2_point {
    max-width: 500px;
    width: 80%;
    margin: 100px auto calc(100vw * 0.5);
}


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

@media screen and (min-width: 1300px) {
    .point {
        background-size: 1300px auto;
    }

    .h2_point {
        margin: 0 auto 650px;
    }

}

/*.point_main {
    min-height: 761px;
    padding-top: 37px;
    background-repeat:no-repeat ;
    background-position: bottom; center;
    background-size: auto 100%;
}*/



/* ▼ 画面幅 800px 以上（PC） ▼ */
@media screen and (min-width: 800px) {

    /* WebP対応ブラウザ */
    @supports (background-image: image-set(url('../resources/webp/bg_point.webp') type('image/webp'))) {
        .point {
            background-image: image-set(url('../resources/webp/bg_point.webp') type('image/webp'),
                    url('../resources/bg_point.jpg') type('image/jpg'));
        }
    }

    /* WebP非対応ブラウザ */
    @supports not (background-image: image-set(url('../resources/webp/bg_point.webp') type('image/webp'))) {
        .point {
            background-image: url('../resources/bg_point.jpg');
        }
    }
}

/* ▼ 画面幅 799px 以下（SP） ▼ */
@media screen and (max-width: 799px) {
    .h2_point {
        margin: 0 auto calc(100vw * 0.75);
        width: 93%;
    }

    /* WebP対応ブラウザ */
    @supports (background-image: image-set(url('../resources/webp/bg_point_sp.webp') type('image/webp'))) {
        .point {
            background-image: image-set(url('../resources/webp/bg_point_sp.webp') type('image/webp'),
                    url('../resources/bg_point_sp.jpg') type('image/jpg'));
        }
    }

    /* WebP非対応ブラウザ */
    @supports not (background-image: image-set(url('../resources/webp/bg_point_sp.webp') type('image/webp'))) {
        .point {
            background-image: url('../resources/bg_point_sp.jpg');
        }
    }
}


.article_point {
    margin-bottom: 55px;
}

.h3_point {
    max-width: 418px;
    width: 53%;
    height: auto;
    margin: 0 auto 45px;
}

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

.point_contents {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.point_item {
    max-width: 385px;
    width: 48%;

    margin-top: 55px;
}

.point_item:nth-child(-n+2) {
    margin-top: 0px;
}

.point04_main_title {
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: bold;
    margin-bottom: 20px;
}

.point04_main_description {
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.5;
}

.point04_small {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: center;
    margin: 35px auto 45px;
}

.point_image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.point_text {
    width: 100%;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.5;
}

.campaign_text {
    margin-top: 35px;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.5;
}

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



@media screen and (max-width: 799px) {
    .h3_point {
        width: 100%;
    }

    .article_point {
        max-width: 385px;
        width: 93%;
    }

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


    .point_item {
        max-width: unset;
        width: 100%;

        margin-top: 55px;
    }


    .point_item:nth-child(-n+2) {
        margin-top: 55px;
    }

    .point_item.point_text {
        margin-top: 0;
    }

    .campaign.wrap_80 {
        max-width: 385px;
        width: 93%;
    }

    .bn_campaign {
        max-width: 226px;
        height: auto;
        width: 100%;
    }
}


/*--track_record--*/
.track_record {
    padding: 104px 0 206px;
    background-color: #285e73;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}


/* ▼ 画面幅 800px 以上（PC） ▼ */
@media screen and (min-width: 800px) {



    /* WebP対応ブラウザ */
    @supports (background-image: image-set(url('../resources/webp/bg_track_record.webp') type('image/webp'))) {
        .track_record {
            background-image: image-set(url('../resources/webp/bg_track_record.webp') type('image/webp'),
                    url('../resources/bg_track_record.jpg') type('image/jpg'));
        }
    }

    /* WebP非対応ブラウザ */
    @supports not (background-image: image-set(url('../resources/webp/bg_track_record.webp') type('image/webp'))) {
        .track_record {
            background-image: url('../resources/bg_track_record.jpg');
        }
    }
}

/* ▼ 画面幅 799px 以下（SP） ▼ */
@media screen and (max-width: 799px) {
    .track_record {
        background-position: top center;
    }

    /* WebP対応ブラウザ */
    @supports (background-image: image-set(url('../resources/webp/bg_track_record_sp.webp') type('image/webp'))) {
        .track_record {
            background-image: image-set(url('../resources/webp/bg_track_record_sp.webp') type('image/webp'),
                    url('../resources/bg_track_record_sp.jpg') type('image/jpg'));
        }
    }

    /* WebP非対応ブラウザ */
    @supports not (background-image: image-set(url('../resources/webp/bg_track_record_sp.webp') type('image/webp'))) {
        .track_record {
            background-image: url('../resources/bg_track_record_sp.jpg');
        }
    }
}


.track_record_main {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
}

.track_record_text {
    max-width: 385px;
    width: 50%;
}

.h2_track_record {
    max-width: 385px;
    width: 100%;
    margin-bottom: 33px;
}

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


.track_record_description {
    width: 100%;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.5;
}


.track_record_img {
    max-width: 361px;
    width: 45%;
}

.track_record_img img {
    width: 100%;
    height: 100%;
}



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

@media screen and (max-width: 799px) {

    .track_record_main {
        display: block;
    }

    .track_record_main.wrap_80 {
        max-width: 385px;
        width: 93%;

    }


    .track_record_img {
        display: block;
        max-width: unset;
        width: 100%;
        height: auto;
        margin: 0 auto;

    }

    .track_record_text {
        width: 100%;
        margin: 45px auto 0;
    }

}