@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Oswald:wght@200..700&display=swap');
/*******************************************
*** Custom prop
********************************************/
:root {
    --main-color: #23afb7;
    --sub-color01: #6fb9ad;
    --sub-color02: #91c2a3;
    --sub-color03: #99bf82;
    --sub-color04: #c6cc86;
    --sub-color05: #f1d065;
    --sub-color06: #e9ad7b;
    --sub-color07: #e18675;
    --point-color: #00479d;
    --bg-color: #eff9fa;
}

/*******************************************
*** Utillity Setting
********************************************/
.center {
    text-align: center;
}

.sp_only {
    display: none;
}

.sp_fluid {
    width: 100%;
    max-width: 768px;
}

.img-fluid {
    width: 100%;
}

@media screen and (max-width:768px) {
    .sp_only {
        display: block !important;
    }

    .pc_only {
        display: none !important;
    }
}
/*******************************************
*** Font Style
***(*****************************************/
#constance_lp {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    color: #000;
}
h1,
h2 {
    font-family: 'Shippori Mincho', serif;
    font-size: 30px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    margin-bottom: 35px!important;
  line-height: 1.6;
}
h2>span,
#merit p>span {
    background: linear-gradient(0deg, rgba(169, 119, 36, 1) 0%, rgba(237, 207, 102, 1) 30%, rgba(241, 224, 165, 1) 50%, rgba(237, 207, 102, 1) 65%, rgba(169, 119, 36, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
h3 {
    font-weight: 700;
    font-style: normal;
}
.sans-serif {
    font-family: "sans-serif";
}
.shippori-mincho {
    font-family: 'Shippori Mincho', sans-serif;
}
.italic {
    font-style: italic;
}
.size-2 {
    font-size: 120%;
}
#problem h2 span,
#contact h2 span{
    color: rgba(0,159,193,.3);
    font-size: 68px;
    line-height: .2;
}

p {
    font-family: "Noto Sans JP", sans-serif;
    color: #000;
    margin: 0;
}
p.lead {
    text-align: center;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    #constance_lp {
        font-size: 3.7vw!important;
    }
    h1,
    h2 {
        font-size: 22px;
    }
}
.scale-down{
    font-size: 80%;
}
.highlight{
    background: linear-gradient(transparent 40%, #f9e165 40%);
}

.bold{
    font-weight: bold!important;
}

.normal {
    font-weight: normal!important;
}

.left{
    text-align: left!important;
}

.right{
    text-align: right!important;
}

.center{
    text-align: center!important;
}
.wordmark{
    font-family: "Oswald", sans-serif !important;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.point-color{
    color: var(--point-color);
}
/*******************************************
*** Layout Style
********************************************/
img {
    width: 100%;
}
.inner_wrap {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
}
.contents_wrap {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
.flex_wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

.reverse_row_wrap {
    flex-direction: row-reverse;
}
.reverse_col_wrap {
    flex-direction: column-reverse;
}

.col2,
.col3,
.col4,
.col5,
.col6,
.col7,
.onethird,
.twothird {
    flex-wrap: wrap;
}

.col2 > * {
    width: calc((100% / 2) - (12px / 2));
}

.col3 > * {
    width: calc((100% / 3) - (24px / 3));
}

.col4 > * {
    width: calc((100% / 4) - (37px / 4));
}

.col5 > * {
    width: calc((100% / 5) - (49px / 5));
}

.col6 > * {
    width: calc((100% / 6) - (61px / 6));
}

.col7 > * {
    width: calc((100% / 7) - (74px / 14));
}

.onethird > *:first-child {
    width: calc((100% / 3) - (12px / 2));
}

.onethird > *:last-child {
    width: calc((100% * (2 / 3)) - (12px / 2));
}

.twothird > *:first-child {
    width: calc((100% * (2 / 3)) - (12px / 2));
}

.twothird > *:last-child {
    width: calc((100% / 3) - (12px / 2));
}

@media screen and (max-width: 1200px) {
    .inner_wrap {
        padding: 0 12px;
    }
}

@media screen and (max-width: 768px) {
    .col2 > *,
    .col3 > * {
        width: 100%;
    }
    .col4 > * {
        width: calc(100% / 2);
    }
    .onethird > *:first-child,
    .onethird > *:last-child,
    .twothird > *:first-child,
    .twothird > *:last-child {
        width: 100%;
    }
}

@media screen and (max-width: 460px) {
    .col5 {
        width: calc(100% / 2);
    }
}

/*******************************************
*** Animation Settings
********************************************/
@keyframes delighter-top_in {
	0% {
		transform: translateY(-100%);
		opacity: 0;
	}
	75% { opacity: 0.5; }
	100% {
		transform: none;
		opacity: 1;
	}
}

.animate-top_in.delighter{
	transform: translateY(-100%);
	opacity: 0;
	will-change: transform, opacity;
}

.animate-top_in.delighter.started {
	animation: delighter-top_in 1.2s ease-out both;
}

@keyframes delighter-bottom_in {
	0% {
		transform: translateY(100%);
		opacity: 0;
	}
	75% {
		opacity: 0.5;
	}
	100% {
		transform: none;
		opacity: 1;
	}
}

.animate-bottom_in.delighter{
	transform: translateY(100%);
	opacity: 0;
	will-change: transform, opacity;
}

.animate-bottom_in.delighter.started {
	animation: delighter-bottom_in 1.2s ease-out both;
}

@keyframes delighter-pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

/*******************************************
*** Header & Footer
********************************************/

/*.header_wrap {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    z-index: 3;
    box-shadow: 0 0 8px rgba(0,0,0,.2);
    background: #fff;
}

footer {
    background: top center / cover no-repeat url(../images/bg_footer.webp);
    padding: 74px 0 12px;
}
.footer_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
}*/
/*******************************************
*** Contents Style
********************************************/
section:is( #merit, #btn) {
    padding: 74px 0;
}

@media screen and (max-width: 768px) {
    h2.section_title {
        margin: 30px 0;
        line-height: 1.4;
    }
    #hotel h2.section_title {
        margin: 10px 0 19px;
    }
    #hotel h2.section_title:before {
        top: -20%;
    }
    #faq h2.section_title:before {
        width: min(70%, 440px);
        top: -100%;
    }
}
a.btn,
button.btn {
    position: relative;
    background-image: linear-gradient(-45deg, rgb(19,181,177) 0%, rgb(179,212,101) 100%);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    color: #fff;
    padding: 12px 24px;
    border: 2px solid #fff;
    outline: none;
    border-radius: 100vh;
}
a.btn:before,
button.btn:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: repeat url(../images/btn-ptn.webp);
    width: 100%;
    height: 100%;

}
section:is(#firstview) {
    position: relative;
    z-index: 2;
}
section:is(#intro) {
    margin-top: -240px;
    padding-top: 300px;
    position: relative;
    z-index: 1;
}
#point {
    background: url(../images/bg_satin.webp) no-repeat top / cover;
    position: relative;
    z-index: 1;
    padding: 400px 0 74px;
    margin-top: 0;
}
#point h2 {
    padding-top: 98px;
}
#point h2:before,
#btn h2:before {
    content: url(../images/ttl_icon.webp);
    display: block;
}
#firstview>.fv_main {
    background: center / cover no-repeat url(../images/bg_fv.webp);
    line-height: 0;
}
#firstview h1 {
    max-width: 1400px;
    width: 100%;
}
@media (max-width: 768px) {
    #firstview>.fv_main {
        background: center / cover no-repeat url(../images/bg_fv_sp.webp);
    }
}

#intro {
    background: #000;
}
#intro>.inner_wrap {
    text-align: center;
    padding-bottom: 74px;
}
#intro p {
    color: #fff;
    font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
    font-size: 14px;
    line-height: 2;
    font-weight:400;
}
#intro .photoarea {
    line-height: 0;
}
#intro .photoarea>img {
    width: 100%;
}
#constance {
    position: relative;
    z-index: 2;
    margin-bottom: -600px;
    padding: 74px 0 200px;
}
#constance:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/bg_star.webp) no-repeat bottom / cover;
    z-index: -1;
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}
#btn {
    background: url(../images/bg_star.webp) no-repeat top / cover;
}
#constance .about h2 {
    position: relative;
}
#constance .about h2:after {
    content: url(../images/constance_icon.webp);
    display: block;
    margin-top: 24px;
}
#constance .about p {
    font-size: 14px;
    color: #fff;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
}
.point_box>.flex_wrap {
    gap: 0;
    align-items: stretch;
}
.point_box>.flex_wrap>* {
    line-height: 0;
}
.point_box>.flex_wrap>.text {
    background: #fff;
    line-height: 1.6;
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 61px;
    align-content: center;
}
@media screen and (min-width: 768px){
.point_box:first-of-type > .flex_wrap .image {
    background: center / cover no-repeat url(../images/point_img01.webp);
}
.point_box:last-of-type > .flex_wrap .image {
    background: center / cover no-repeat url(../images/point_img02.webp);
}}
.point_box h3 {
    font-family: 'Shippori Mincho', serif;
    color: #313131;
    font-size: 18px;
    position: relative;
  line-height: 1.6;
}
.point_box .text_detail {
    position: relative;
}
.point_box:nth-of-type(1) .text_detail:nth-of-type(1) h3:before {
    content: url(../images/point1.webp);
}

.point_box:nth-of-type(1) .text_detail:nth-of-type(2) h3:before {
    content: url(../images/point2.webp);
}

.point_box:nth-of-type(2) .text_detail:nth-of-type(1) h3:before {
    content: url(../images/point3.webp);
}

.point_box:nth-of-type(2) .text_detail:nth-of-type(2) h3:before {
    content: url(../images/point4.webp);
}
.point_box h3:before {
    position: relative;
    top: 4px;
    left: 0;
    margin-right: 6px;
}
.point_box p {
    font-size: 14px;
    margin-top: 12px;
}
.point_box>.col2 > * {
    width: calc(100% / 2);
}

.point_box .text>.text_detail:nth-child(odd):after {
    content: url(../images/point_icon.webp);
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(0%, 200%);
}
#merit {
    background: url(../images/bg_tsj.webp) no-repeat center / cover;
}
#merit>.inner_wrap {
    max-width: 900px;
}
#merit h2 {
    color: #fff;
    font-size: 31px;
}
#merit ul {
    margin: 0 auto;
    padding-bottom: 24px;
}
#merit ul.flex_wrap {
    gap: 24px;
}
#merit ul.col3 > * {
    width: calc((100% / 3) - (49px / 3));
}
#merit ul>li {
    background: rgba(255, 255, 255, .8);
    border-radius: 100vw;
    padding: 12px;
    color: #072460;
    font-weight: 700;
    text-align: center;
    position: relative;
}
#merit ul>li:after {
    content: "+";
    position: absolute;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    top: 0;
    left: 100%;
    transform: translate(90%, 50%);
}
#merit ul>li:last-child:after {
    content: none;
}
#merit .merit_box {
    background: #000;
    box-shadow:0 0 16px rgba(255, 255, 255, 0.2);
}
#merit p {
    margin: 0 auto;
    color: #fff;
    font-family: 'Shippori Mincho', serif;
    font-size: 22px;
    padding: 6px;
    text-align: center;
    font-weight: 700;
}
@media (max-width: 768px) {
    .point_box>.flex_wrap>.image img {
        width: 100%;
    }
    .point_box>.col2 > *,
    #merit ul.col3 > * {
        width: 100%;
    }
    #merit ul>li:after {
        bottom: 0;
        left: 50%;
        transform: translate(0, 100%);
    }
    .point_box>.flex_wrap>.text {
        gap: 39px;
    }
    .point_box h3 {
        text-align: center;
    }
    .point_box h3:before {
        display: block;
        margin-bottom: 5px;
    }
    .point_box .text>.text_detail:nth-child(odd):after {
        left: 50%;
        transform: translate(-50%, 180%);
    }
}
/*******************************************
*** エリアボタン
********************************************/
#btn .flex_wrap {
    justify-content: center;
}
#btn .flex_wrap>li {
    max-width: 380px;
}
#btn .flex_wrap>li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 12px;
    font-weight: 700;
    color: #fff;
    font-size: 18px;
    border-radius: 100vw;
    overflow: hidden;
    z-index: 1;
    text-shadow: 0 2px 9px rgba(0,0,0,0.5);
}
#btn .flex_wrap>li a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(5px);
    z-index: -1;
    transform: scale(1.1);
}
#btn .flex_wrap>li a:hover:before {
    filter: blur(1px);
    transform: scale(1.0);
}
#btn .flex_wrap li:nth-child(1) a:before {
    background: url(../images/bg_btn_maldives.webp) no-repeat center / cover;
}
#btn .flex_wrap li:nth-child(2) a:before {
    background: url(../images/bg_btn_mauritius.webp) no-repeat center / cover;
}
#btn .flex_wrap li:nth-child(3) a:before {
    background: url(../images/bg_btn_seychelles.webp) no-repeat center / cover;
}
#btn .flex_wrap li:nth-child(4) a:before {
    background: url(../images/bg_btn_madagascar.webp) no-repeat center / cover;
}
#btn .map_image{
    width: 100%;
    max-width: 768px;
    margin: 0 auto 37px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 0 16px rgba(255,255,255,.2);
    overflow: hidden;
    line-height: 0;
}
@media screen and (max-width: 768px){
    #btn .flex_wrap>li {
        max-width: 100%;
    }
}

/*******************************************
*** ホテル一覧
********************************************/
.hotellist .area_ttl {
    text-align: center;
    padding: 100px 0;
}
.hotellist .area_ttl h3 {
    margin-bottom: 24px;
}
.hotellist .area_ttl p {
    color: #fff;
    line-height: 2;
}
.hotellist>.area:nth-child(1) .area_ttl {
    background: url(../images/bg_maldives.webp) no-repeat center / cover;
}
.hotellist>.area:nth-child(2) .area_ttl {
    background: url(../images/bg_mauritius.webp) no-repeat center / cover;
}
.hotellist>.area:nth-child(3) .area_ttl {
    background: url(../images/bg_seychelles.webp) no-repeat center / cover;
}
.hotellist>.area:nth-child(4) .area_ttl {
    background: url(../images/bg_madagascar.webp) no-repeat center / cover;
}
.flex_wrap .img_wrap,
.flex_wrap .text_wrap {
    flex: 1;
}
.area h3 {
    font-size: 31px;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    line-height: 1.2;
    padding: 6px 12px;
}
.area_contents {
    padding: 49px 0;
    position: relative;
}
.area_contents .inner_wrap>ul.flex_wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.area_contents .inner_wrap > ul.flex_wrap.col3 {
    align-items: stretch;
}
.area_contents_block {
    background: #f2f2f2;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    height: auto;
    min-width: 320px;
}
.area_contents_block .swiper-slide img {
    border-radius: 16px 16px 0 0;
}
.area_contents_block .detail {
    padding: 24px 18px 18px 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}
.area_contents_block .detail h4 {
    font-weight: 700;
  line-height: 1.6;
}
.area_contents_block .detail h4 >span {
    font-weight: 400;
    font-size: 12px;
}
.area_contents_block ul {
    margin: 18px 0;
}
.area_contents_block ul>li {
    position: relative;
    margin-left: 12px;
}
.area_contents_block ul>li:before {
    position: absolute;
    content: "";
    background: #000;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    top: 25%;
    left: 0;
    margin-left: -9px;
}
.area_contents_block .cta {
    margin-top: auto;
    padding-top: 18px;
}

/* ロゴ */
.area_contents_block .detail:before {
    position: absolute;
    top: -15%;
    z-index: 2;
}
#area01>.area_contents .area_contents_block:nth-child(1) .detail:before {
    content: url(../images/area01_hotel01_logo.webp);
}
#area01>.area_contents .area_contents_block:nth-child(2) .detail:before {
    content: url(../images/area01_hotel02_logo.webp);
}
#area02>.area_contents .area_contents_block:nth-child(1) .detail:before {
    content: url(../images/area02_hotel01_logo.webp);
}
#area02>.area_contents .area_contents_block:nth-child(2) .detail:before {
    content: url(../images/area02_hotel02_logo.webp);
}
#area02>.area_contents .area_contents_block:nth-child(3) .detail:before {
    content: url(../images/area02_hotel03_logo.webp);
}
#area02>.area_contents .area_contents_block:nth-child(4) .detail:before {
    content: url(../images/area02_hotel04_logo.webp);
}
#area02>.area_contents .area_contents_block:nth-child(5) .detail:before {
    content: url(../images/area02_hotel05_logo.webp);
}
#area02>.area_contents .area_contents_block:nth-child(6) .detail:before {
    content: url(../images/area02_hotel06_logo.webp);
}
#area03>.area_contents .area_contents_block:nth-child(1) .detail:before {
    content: url(../images/area03_hotel01_logo.webp);
}
#area03>.area_contents .area_contents_block:nth-child(2) .detail:before {
    content: url(../images/area03_hotel02_logo.webp);
}
#area04>.area_contents .area_contents_block:nth-child(1) .detail:before {
    content: url(../images/area04_hotel01_logo.webp);
}
@media screen and (max-width: 1015px){
    .area_contents .inner_wrap>ul.flex_wrap {
        justify-content: space-evenly;
    }
}
@media screen and (max-width: 768px){
    .hotellist .area_ttl {
        padding: 60px 0;
    }
    .area_contents>ul.flex_wrap {
        justify-items: center;
    }
}

/*******************************************
*** CTA
********************************************/
.cta_area>* a {
    margin: 6px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: 'Shippori Mincho', serif;
    border-radius: 100vw;
    font-weight: 700;
}
.cta_area>* a:hover{
    transform: scale(1.02);
    transition: transform .3s ease;
}
.cta_01 a {
    padding: 12px;
    background-image: -moz-linear-gradient( 0deg, rgb(169,119,36) 0%, rgb(237,207,102) 31%, rgb(241,224,165) 49%, rgb(237,207,102) 63%, rgb(169,119,36) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(169,119,36) 0%, rgb(237,207,102) 31%, rgb(241,224,165) 49%, rgb(237,207,102) 63%, rgb(169,119,36) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(169,119,36) 0%, rgb(237,207,102) 31%, rgb(241,224,165) 49%, rgb(237,207,102) 63%, rgb(169,119,36) 100%);
}
.cta_02 a {
    position:relative;
    padding: 9px;
    background: #fff;
}
.cta_03 a {
    position:relative;
    padding: 12px;
    background: #fff;
}
.cta_02 a:before,
.cta_03 a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100vw;
    border: 1px solid transparent;
    background-image: -moz-linear-gradient( 0deg, rgb(169,119,36) 0%, rgb(237,207,102) 31%, rgb(241,224,165) 49%, rgb(237,207,102) 63%, rgb(169,119,36) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(169,119,36) 0%, rgb(237,207,102) 31%, rgb(241,224,165) 49%, rgb(237,207,102) 63%, rgb(169,119,36) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(169,119,36) 0%, rgb(237,207,102) 31%, rgb(241,224,165) 49%, rgb(237,207,102) 63%, rgb(169,119,36) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    mask-composite: exclude;
}

/*******************************************
*** slider
********************************************/
.hotellist .image {
  position: relative;
  overflow: hidden;
}
.swiper {
  width: 100%;
  height: auto;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.swiper-pagination {
    display: none !important;
    position: absolute;
    bottom: 4px;
    text-align: center;
}
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-button-next, .swiper-button-prev{
    color: #fff;
}
.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 12px;
}

