@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Alice&family=Montserrat:wght@700&display=swap');

body{
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.pc{
	display: block;
}
.sp{
	display: none;
}
@media screen and (max-width:599px){
.pc{
	display: none!important;
}
.sp{
	display: block!important;
}	
}
.ten{
	font-family: ten-mincho,serif;
font-weight: 400;
font-style: normal;
}
.alice{
	font-family: 'Alice', serif!important;
}
.mont{
	font-family: 'Montserrat', sans-serif;
}
.inner {
    width: 100%;
	height:100px;
    margin: 0 auto;
	position:relative;
}
.inner:after {
    content: "";
    clear: both;
    display: block;
}
.fixed .inner{
	background:#E7E7E7;
}
/* header */
#top-head {
    top: -100px;
    position: absolute;
    width: 100%;
    margin: 100px auto 0;
    padding:0;
    line-height: 1;
    z-index: 999;
}
#top-head a,
#top-head {
    color: #000;
    text-decoration: none;
}
#top-head .inner {
    position: relative;
}
#top-head .logo {
	position: absolute;
	top:14px;
	left:40px;
}
.logo img{
	width:140px;
	height:auto;
}

.disappear{
	display: none;
}
.fixed .disappear{
	display: block;
}
/* Fixed */
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
	animation: fadeIn 1s linear forwards;
	
}
@keyframes fadeIn{
	0%{
		opacity:0;
	}
	100%{
		opacity: 1;
	}
}

#top-head.fixed .disappear{
	display: block;
}
/* Toggle Button */
#nav-toggle {
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
    height: 100px;
    cursor: pointer;
    z-index: 101;
	background:#3a5e67;
}
#nav-toggle div {
    position: absolute;
	top:37px;
	left:35px;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 30px;
    background: #fff;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 10px;
	width: 22px;
}
#nav-toggle span:nth-child(3) {
    top: 20px;
}




    #top-head,
    .inner {
        width: 100%;
        padding: 0;
    }


    #global-nav {
        position: absolute;
        /* 開いてないときは画面外に配置 */
        top: -100vh;
        background: url("img/jpg/navBg.jpg")no-repeat;
		background-size:cover;
        width: 100%;
		height:100vh;
        padding: 10px 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
		overflow-y: scroll;
		display: -webkit-box;
		display: flex;
		align-items: center;
		justify-content: center;
    }
#global-nav:-webkit-scrollbar {
  display: none;
}
    #global-nav ul {
        list-style: none;
        font-size: 1.8vw;
    }
    #global-nav ul li {
		text-align: left;
    }
    #top-head #global-nav ul li a {
        width: 90%;
        color: #fff;
        padding:1em 0;
		display: inline-block;
		position:relative;
    }
#top-head #global-nav ul li a:hover::after{
	content:'';
	width:24%;
	height:12%;
	background:url("img/svg/arrow.svg")no-repeat;
	background-size: contain;
	position:absolute;
	top:50%;
	transform: translateY(-50%);
	right:0;
	animation:arrowMove .3s linear 1;
}
@media screen and (max-width:599px){
	#top-head #global-nav ul li a:hover::after{
		content:none;
	}
	
}
@keyframes arrowMove{
	0%{
		right:6%;
		opacity: 0;
	}
	100%{
		right:0;
		opacity: 1;
	}
}
  
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(100vh);
        -webkit-transform: translateY(100vh);
        transform: translateY(100vh);
    }

@media screen and (max-width:599px){
	
	
	
	.inner {
    width: 100%;
	height:60px;
    margin: 0 auto;
	position:relative;
}
	#top-head .logo {
	position: absolute;
	top:10%;
	left:4%;
}
	.logo img{
	width:25%;
	height:auto;
}
	#nav-toggle {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 101;
	background:#3a5e67;
}
	.contactWrap{
		display: none;
	}
	#nav-toggle div {
    position: absolute;
	top:20px;
	left:20px;
}
	#nav-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 20px;
    background: #fff;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 8px;
	width: 15px;
}
#nav-toggle span:nth-child(3) {
    top: 16px;
}
	#global-nav ul {
        font-size: 4vw;
		margin-bottom:1em;
    }
	  #top-head #global-nav ul li a {
        width: 90%;
        color: #fff;
        padding:0.8em 0;
	}
}
.navWrapper{
	width:80%;
	display: -webkit-box;
	display: flex;
	align-items: center;
}
.navBox1{
	width:60%;
	padding:0 8%;
}
.navBox2{
	width:40%
}

.btn1{
	color:#fff!important;
	display: inline-block;
	border:solid 1px #fff;
	padding:1em 2em;
	font-size:1.2vw;
	margin-top:3em;
}
.btn1:hover{
	background:rgba(255,255,255,0.6);
	color:#00388E!important;
}
.contactWrap{
	position:absolute;
	right:100px;
	top:0;
	width:200px;
	padding-top:100px;
	text-align: center;
}
.contact a{
	display:block;
	width:100%;
	height:100px;
	background:#848008;
	position:absolute;
	top:0;
	left:0;
	color:#fff!important;
}
.fixed .contact a{
	background:#264f59;
	color:#fff!important
}
.contact a span{
	position:absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	width:100%;
	padding-bottom:0.4em;
	line-height: 1;
	font-size:90%;
}
.contact a span i{
	font-size:140%;
	margin-right:0.2em;
	position:relative;
	top:0.1em;
}

#fv{
	position:relative;
	width:100%;
	height:100vh;
	overflow: hidden;
}
.slider img{
	width:100%;
	height:100vh;
	object-fit:cover;	
}
#fv h1{
	position:absolute;
	top:50%;
	transform: translateY(-50%);
		left:50%;
	width:100%;
}
#fv h1 img{
	width:37%;
	height:auto;
}
@media screen and (max-width:599px){
	#fv{
		position:relative;
		height:62.5%;
	}
	#fv h1 img{
	width:50%;
}
	.slider {
		position:absolute;
		top:0;
		left:0;
	}
	.slider img{
	width:100%;
	height:auto;
	object-fit:cover;	
}
	.navWrapper{
	width:80%;
	flex-direction:column;
}
.navBox1{
	width:100%;
	padding:0 0 5%;
}
.navBox2{
	width:100%
}
	.btn1{
	color:#fff!important;
	display: inline-block;
	border:solid 1px #fff;
	padding:1em 2em;
	font-size:3.5vw;
	margin-top:3em;
}

	
}

.scrollBox{
	position:absolute;
	right:50px;
	bottom:50px;
	height:230px;
	width:60px;
}
.scrollBox p{
	color:#333;
	position:absolute;
	top:-1em;right:-0.5em;
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.scrollBox a{
	display: block;
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
}
.scrollBox span{
	width:2px;
	height:160px;
	background:#333;
	display: block;
	position:absolute;
	right:0;
	bottom:0;
	animation:borderAnime 2.5s ease-in-out infinite forwards;
}
#fv3 .scrollBox p{
	color:#fff;
}
#fv3 .scrollBox span{
	background:#fff;
}
@keyframes borderAnime {
    0% {transform-origin:bottom; transform: scaleY(1);}
	35%{ transform-origin:bottom;transform: scaleY(0);}
	70%{ transform-origin:top;transform: scaleY(0);}
	100%{transform-origin:top; transform: scaleY(1);}
}
@media screen and (max-width:599px){
	.scrollBox{
	display: none;
}
	
}

.intro{
	text-align: center;
	background:url("img/jpg/introBg.jpg") no-repeat center center;
	position: relative;
  width: 100%;
  padding-top: 46.1718%;
	background-size:cover;
}
.introInner{
	position:absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	width:100%;
}
.introInner p{
	color:#333;
	font-size:2vw;
	letter-spacing: 0.1em;
	line-height: 1.3;
}
.copyTxt{
	font-size:3vw!important;
}
.copyTxt span{
	font-size:80%;
	padding: 0.5em 1em;
	margin: 2em 0;
	border: solid 3px #333;
}
@media screen and (max-width:599px){
	.intro{
  padding-top: 60%;
	}
	.introInner p{
	color:#333;
	font-size:4vw;
	letter-spacing: 0.1em;
	line-height: 1.3;
}
.copyTxt{
	font-size:5.5vw!important;
}
	.copyTxt span{
	font-size:4.5vw
}
}
.secpd{
	padding:5% 0;
}
.mT1{
	text-align: center;
	color:#333;
	font-size:5vw;
	font-weight: normal;
	line-height: 0.5;
	margin-bottom:1em;
}
.mT2{
	text-align: center;
	color:#333;
	font-size:2.6vw;
	font-weight: normal;
	letter-spacing: 0.1em;
	line-height: 0.9;
	margin-bottom:1.5em;
}
span.ts{
	font-size:1.1vw;
	letter-spacing: 0;
}
@media screen and (min-width:600px) and (max-width:899px){
	.secpd{
	padding:5% 0;
}
	.mT1{
	font-size:6vw;
	font-weight: normal;
	line-height: 0.9;
	margin-bottom:1em;
}
.mT2{
	font-size:5vw;
	font-weight: normal;
	letter-spacing: 0.1em;
	line-height: 0.9;
	margin-bottom:1.5em;
}
span.ts{
	font-size:2vw;
	letter-spacing: 0;
}
}

@media screen and (max-width:599px){
	.secpd{
	padding:10% 0;
}
	.mT1{
	text-align: center;
	color:#333;
	font-size:9vw;
	font-weight: normal;
	line-height: 0.7;
	margin-bottom:1em;
}
.mT2{
	font-size:7vw;
	font-weight: normal;
	letter-spacing: 0.1em;
	line-height: 0.9;
	margin-bottom:1.5em;
}
span.ts{
	font-size:3.5vw;
	letter-spacing: 0;
}
}


.readMore{
	text-align: center;
    position: relative;
	background: #264f59;
	display: inline-block;
}
.centPs{
	left:50%;
	transform: translateX(-50%);
}

.readMore a{
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	background: #264f59;
background: -moz-linear-gradient(right,  #4bb4bf 0%, #264f59 100%); 
background: -webkit-linear-gradient(right,  #4bb4bf 0%,#264f59 100%); 
background: linear-gradient(to right,  #4bb4bf 0%,#264f59 100%); 
	color:#fff;
	display: inline-block;
	font-size:1vw;
	letter-spacing:0.1em;
	padding:1.65em 7.5em 1.8em 1.8em;
	position:relative;
	transition:.3s;
	border:solid 1px #fff;
}

.readMore a:hover{
	background:#264f59;
}
.readMore a::before{
	content:'';
	width:28%;
	height:14%;
	background:url("img/svg/arrow.svg")no-repeat;
	background-size:contain;
	position:absolute;
	right:-1em;
	top:40%;
	transition:.3s;
}
.readMore a:hover::before{
	transition:.3s;
	transform: translateX(10em);
	animation: arrowRight .1s linear forwards;
}

@keyframes arrowRight{
	0%{
		opacity:1;
		
	}
	100%{
		opacity:0;
	}
}
.readMore a::after{
	content:'';
	width:28%;
	height:14%;
	background:url("img/svg/arrow.svg")no-repeat;
	background-size:contain;
	position:absolute;
	right:9em;
	top:40%;
	opacity:0;
	transition:.3s;
	animation: arrowRight3 .1s linear forwards;
}
.readMore a:hover::after{
	transition:.3s;
	transform: translateX(10em);
	animation: arrowRight2 .1s linear forwards;
}
@keyframes arrowRight2{
	0%{
		opacity:0;
		
	}
	100%{
		opacity:1;
	}
}
@keyframes arrowRight3{
	0%{
		opacity:1;
		
	}
	100%{
		opacity:0;
	}
}
@media screen and (min-width:600px) and (max-width:899px){
	.readMore a{
	font-size:1.7vw;
		padding:1.5em 6em 1.7em 1.8em;
	}
}
@media screen and (max-width:599px){
	.readMore{
    position: relative;
		width:80%;
		margin:0 auto;
}
	.readMore a{
		width:100%;
		font-size:3.5vw;
		padding:1.5em 8.3em 1.5em 1.5em;
	}
	.readMore a::before{
	content:'';
	width:28%;
	height:14%;
	background:url("img/svg/arrow.svg")no-repeat;
	background-size:contain;
	position:absolute;
	right:-2em;
		top:50%;
		transform: translateY(-50%);
	transition:.3s;
}
}

.mC{
	text-align: center;
	font-size:3vw;
	margin-bottom:1.3em;
}
.bl{
	color:#333;
}

.w100{
	width:100%;
	display: block;
}

.exp p{
	font-family: ten-mincho,serif;
	font-weight: 400;
	font-style: normal;
	color:#333;
	font-size:2vw;
	text-align: center;
	line-height: 2.5;
}

@media screen and (min-width:600px) and (max-width:899px){
	.mC{
	font-size:4vw
}
	.exp p{
	font-size:2.5vw;
	}
}
@media screen and (max-width:599px){
	.mC{
	text-align: center;
	font-size:5vw;
}
	.exp p{
	font-size:3.5vw;
	}
}

.flWrap{
	display: -webkit-box;
	display: flex;
}
.ai-c{
	align-items: center;
}
.flBox1{
	width:50%;
}
.flBox2{
	width:50%;
	padding:0 10%;
}
.flBox1 img{
	width:100%;
	height:auto;
}

.pld{
	text-align: center;
	background:#00388E;
	color:#fff;
	font-size:1.3vw;
	padding:0.8em;
	margin-bottom:1.3em;
}
.st1{
	color:#333333;
	font-size:2.1vw;
	line-height: 1.8;
	text-align: justify;
	margin-bottom:1em;
}
.pt1{
	color:#00388E;
	font-size:1.1vw;
	text-align: justify;
	line-height: 1.8;
	font-weight: bold;
	margin-bottom:2em;
}
@media screen and (min-width:600px) and (max-width:899px){
	.flBox2{
	width:50%;
	padding:0 3%;
}
}
@media screen and (max-width:599px){
	.flWrap{
	flex-direction:column
}
.flBox1{
	width:100%;
	order:1;
}
.flBox2{
	width:100%;
	padding:10% 5% 0;
	order:2;
}
	.pld{
	text-align: center;
	background:#00388E;
	color:#fff;
	font-size:4vw;
}
	.st1{
	font-size:6vw;
}
	.pt1{
	color:#00388E;
	font-size:3.6vw;
	text-align: justify;
	line-height: 1.8;
	font-weight: bold;
	margin-bottom:2em;
}
}

.blbg{

	background:url("img/jpg/Bg-location.jpg")no-repeat center center;
	background-size:cover;
	position:relative;
	width:100%;

	color:#fff;
}
.blbg .secpd{
	padding:10% 0;
}
.blbg .mT1{
	color:#fff
}

.mT3{
	text-align: center;
	font-size:2.6vw;
	font-weight: normal;
	letter-spacing: 0.1em;
	line-height: 1.5;
	margin-bottom:1.5em;
}
.mT3 span{
	font-size:4vw;
}

.locExp{
	text-align: center;
	padding-bottom:10%;
}
.locp{
	line-height: 1.8;
	font-size:1.6vw;
	margin-bottom:2.5em;
}
@media screen and (max-width:599px){
	.mT3{
	text-align: center;
	font-size:4.5vw;
}
	.mT3 span{
	font-size:5vw;
}
.mT3 span{
	font-size:5vw;
}
	.blbg .secpd{
	padding:20% 0;
}
	.locp{
	line-height: 1.8;
	font-size:3.5vw;
	margin-bottom:2.5em;
}
}
.ctaBox{
	background:#fff;
	text-align: center;
	color:#333;
	padding:10% 0;
}
.ctaLead {
	font-size:1.5vw;
	margin-bottom:2em;
	line-height: 1.5;
}

.ctaTel {
	font-size:3.5vw;
	margin-bottom:1em;
	line-height: 1;
}

.btn2 a{
	display: inline-block;
	color:#333!important;
	border:solid 2px #333;
	font-size:1.5vw;
	padding:1em 2em;
}
.btn2 a:hover{
	background:#333;
	color:#fff!important;
}
@media screen and (min-width:600px) and (max-width:899px){
	.ctaLead {
	font-size:2.5vw;
	margin-bottom:2em;
}
	.btn2 a{
	font-size:3vw;
	padding:1em 2em;
}
	
}
@media screen and (max-width:599px){
	.ctaBox{
	padding:15% 0;
}
	.ctaLead {
	font-size:3.5vw;
	margin-bottom:2em;
}
	.btn2 a{
	font-size:4vw;
	padding:1em 2em;
}
}

#footer{
	background:#333;
	padding:7% 0;
	color:#fff;
}
.footerFlWrap{
	width:92%;
	margin-left:8%;
	display: -webkit-box;
	display: flex;
	align-items: center;
}
.footerFlBox1{
	padding:0 10%;
	width:50%;
}
.footerFlBox1 img{
	width:100%;
	height: auto;
}
.footerFlBox2{
	width:50%;
}
.footerFlBox2 h3{
	font-size:1.4vw;
	border-bottom:solid 2px #fff;
	padding-bottom:0.5em;
	margin-bottom:1.4em;
}
.footerFlBox2 ul{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	width:80%;
}
.footerFlBox2 ul li{
	width:50%;
	display: -webkit-box;
	display: flex;
	flex-direction: column;
	font-size:0.9vw;
}
.footerFlBox2 ul li a{
	color:#fff;
	display: block;
	padding:0.7em 0;
}
@media screen and (min-width:600px) and (max-width:899px){
	.footerFlWrap{
	width:90%;
	margin:0 auto;
}
	.footerFlBox1{
	padding:0 5%;
	width:50%;
}
	.footerFlBox2 h3{
	font-size:2.6vw;
}
	.footerFlBox2 ul li{
	font-size:1.8vw;
}
}
@media screen and (max-width:599px){
	#footer{
	padding:10% 0;
}
	.footerFlWrap{
	width:90%;
	margin:0 auto;
	flex-direction:column;
}
	.footerFlBox1{
	padding:5% 20% 20%;
	width:100%;
}
.footerFlBox2{
	width:100%;
}
	.footerFlBox2 h3{
	font-size:4vw;
}
	.footerFlBox2 ul li{
	width:100%;
	font-size:3.5vw;
}
	.footerFlBox2 ul li a{
	padding:1.2em 0;
}
}

.copyright{
	text-align: center;
	color:#00388E;
	font-size:1vw;
	padding:1.2em 0;
}
@media screen and (max-width:599px){
.copyright{
	font-size:3.5vw;
}
}

#fv2{
	background:url("img/jpg/planfvbg.jpg")no-repeat center center;
	background-size:cover;
	position:relative;
	width:100%;
	padding-top: 62.7222%;
}
#fv3{
	background:url("img/jpg/beachfv.jpg")no-repeat center center;
	background-size:cover;
	position:relative;
	width:100%;
	padding-top: 62.7222%;
}
#fv4{
	background:url("img/jpg/conceptBg.jpg")no-repeat center center;
	background-size:cover;
	position:relative;
	width:100%;
	padding-top: 62.7222%;
}
.pageT{
	font-size:4.5vw;
	color:#00388E;
	position:absolute;
	top:50%;
	transform: translateY(-50%);
	left:5%;
}
#fv4 .pageT{
	color:#fff;
}
.plantop{
	text-align: center;
	color:#333;
}
.mT4{
	font-size:5.5vw;
	margin-bottom:0.8em;
}
.sT1{
	font-size:2.5vw;
	line-height: 1.8;
	margin-bottom:1em;
}
.plantop p{
	font-size:1.5vw;
	line-height: 1.8;
	margin-bottom:5em;
}
.logo2 img{
	width:30%;
	height:auto;
	display: block;
	margin:0 auto 10%;
}
.flWrap2{
	width:90%;
	margin:0 auto 10%;
	display: -webkit-box;
	display: flex;
	justify-content: space-between;
}
.flBox-btn{
	width:40%;
}
.flBox-btn img{
	width:100%;
	height:auto;
}

.sT2{
	text-align: center;
	color:#333;
	font-size:3.5vw;
	letter-spacing: 0.1em;
	margin-bottom:1.5em;
}
.bnrs{
	width:90%;
	margin:0 auto;
}
.bnrs li{
	margin-bottom:3%;
}
.bnrs li img{
	width:100%;
	height: auto;
}

@media screen and (max-width:599px){
	.pageT{
	font-size:7vw;
}
	.mT4{
	font-size:8vw;
	margin-bottom:0.8em;
}
	.sT1{
		font-size:4.5vw;
	line-height: 1.8;
	}
	.plantop p{
	font-size:3.5vw;
}
	.logo2 img{
	width:60%;
	height:auto;
	display: block;
	margin:0 auto 10%;
}
	.flBox-btn{
	width:45%;
}
	.sT2{
	font-size:5vw;
}
}

.planListBox{
	width:90%;
	margin:0 auto;
}
.planListBox img{
	width:100%;
	height:auto;
}
.mb1{
	margin-bottom:5%;
}


.iw100{
	width:100%;
}
.iw100 img{
	width:100%;
	height:auto;
}
.iw100 iframe{
	display: block;
	height:800px;
}

@media screen and (max-width:599px){
	.iw100 iframe{
	display: block;
	height:400px;
}
}

/*add*/

a.disabled {
    pointer-events: none;
}



/*下層ページ*/

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

.calltoAction{
	background: url("img-pages/jpg/contactBg.jpg") no-repeat center;
	background-size:cover;
	text-align: center;
	padding:10% 0;
}
.lead{
	font-size:1.3vw;
	line-height: 1.5;
}
.btn3 a{
	font-size:1.5vw;
	display: inline-block;
	padding:1em 1.5em;
	border:solid 2px #333;
	margin:2em 0;
}
.btn3 a:hover{
	background:#333;
	color:#fff;
}

@media screen and (max-width:599px){
	.lead{
	font-size:3.5vw;
}
	.btn3 a{
	font-size:4vw;
	}
}

/*0626追加*/
.flourish{
	background:url("img-pages/svg/flourish.svg")no-repeat top right;
	background-size: 90%;
}
.nom{
	font-size:2.2vw;
}
.btn-svg img{
	width:30%;
	height:auto;
}
.listWrap{
	width:80%;
	margin:0 auto;
}
.listWrap img{
	width:100%;
	height:auto;
}
.sides{
	padding:8% 0;
}
.plans{
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between
}
.plans li {
	width:45%;
	margin-bottom:8%;
}

#popUp{
	width:800px;
	position:relative;
}
#popUp img{
	width:100%;
}
.closeTab {
	position:absolute;
	left:50%;
	transform: translateX(-50%);
	bottom:10%;
}
.closeTab img{
	width:80%!important;
}
@media screen and (max-width:899px){
	#popUp{
	width:100%;
		left:0;
}
	.closeTab {
	bottom:5%;
		left:50%;
	transform: translateX(-50%);
	}
	.closeTab img{
	width:100%!important;
}
}

@media screen and (max-width:599px){
	.flourish{
	background:url("img-pages/svg/flourish.svg")no-repeat top right;
	background-size: cover;
}
	.nom{
	font-size:4.2vw;
}
	.btn-svg img{
	width:60%;
}
	.plans li {
	width:100%;
	margin-bottom:5%;
}
}




