@charset "UTF-8";
/* CSS Document */
/*-----------------------------
共通
------------------------------*/
* { 
  margin: 0;
  padding: 0; 
}
html{
	font-size: 100%;
	scroll-behavior: smooth;
}
img{
	max-width: 100%;
}
body{
	font-family: dnp-shuei-gothic-gin-std, sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #190f05;
	background-color: beige;
}
.wrapper{
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 4%;
	background-color: #fff;
}
h2,h3{
	font-family: fot-chiaro-std, sans-serif;
	font-weight: 700;
	font-style: normal;
}
section{
	padding-top: 10px;
}

/*-----------------------------
メインビジュアル
------------------------------*/

header{
	background-image: url("../images/tropical_resort.jpg");
	height: 100vh;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}
header h1 img{
	width: 400px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
.title{
	position: absolute;
	right: 10%;
	top: 0;
	bottom: 0;
	margin: auto;
	height: 60vh;
}
.title p{
	font-family: mamelon, sans-serif;
	font-weight: 500;
	font-style: normal;
	color: #fff;
	-ms-writing-mode: tb-rl;
  	writing-mode: vertical-rl;
	font-size: 2.0em;
	background-color: rgba(211,211,211,0.5);
	padding: 20px;
}
.left-up{
	position: absolute;
	top: 0%;
	left: 5%;
	width: 20vw;
}
.left-down{
	position: absolute;
	bottom: 0%;
	left: 5%;
	width: 30%;
}
.right-cloud{
	position: absolute;
	bottom: 0;
	right:5%;
	width: 20vw;
	overflow: hidden;
}
.top-plane{
	position: absolute;
	top: 5%;
	right: 40%;
	width: 10vw;
}
/*フェードイン*/
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1.2s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
/* 上から */

.fadeDown{
animation-name:fadeDownAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 左から */
.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-800px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* 右から */

.fadeRight{
animation-name:fadeRightAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(800px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}
/* アニメーションスタートの遅延時間を決めるCSS*/

.delay-time02{
animation-delay: 1.2s;
}

.delay-time04{
animation-delay: 0.4s;
}

/*スクロールボタン*/
.sc-btn{
	position: absolute;
	bottom: 80px;
	left: 0;
	right: 0;
}

.sc-btn a span{
	position: absolute;
  	top: 0;
 	left: 50%;
  	width: 24px;
  	height: 24px;
  	margin-left: -12px;
  	border-left: 2px solid #fff;
  	border-bottom: 2px solid #fff;
 	 -webkit-transform: rotate(-45deg);
 	 transform: rotate(-45deg);
 	 -webkit-animation: sdb 2s infinite;
  	animation: sdb 2s infinite;
  	opacity: 0;
  	box-sizing: border-box;	 
}
.sc-btn a span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.sc-btn a span:nth-of-type(2) {
  top: 16px;
  -webkit-animation-delay: .15s;
  animation-delay: .15s;
}
.sc-btn a span:nth-of-type(3) {
  top: 32px;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}
@-webkit-keyframes sdb {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*ここまでメインビジュアル*/
/*ページへ戻るボタン*/
#page-top{
  width: 90px;
  height: 90px;
  position: fixed;
  right: 0;
  bottom: 0;
  background:#3cf;
  opacity: 0.9;
  border-radius: 50%;
	z-index: 99;
}
#page-top a{
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  text-decoration: none;
	transition: all .3s ease;
}
#page-top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page-top a::after{
  content: 'PAGE TOP';
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 45px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
/*----------------------------------
コンテンツ
-----------------------------------*/

/*インフォメーション*/
.info{
	display: flex;
	justify-content: space-between;
}
.info img{
	height: 100%;
}
.info p{
	width: 50%;
	margin: 40px 10px;
	border: dashed 3px #3cf;
	padding: 10px;
	background-image: url("../images/blue_bg.jpg");
	font-size: 1.2rem;
}
.camel-icon{
	margin-bottom: 0;
}
.document{
	background-image: url("../images/skyscrapers.jpg");
	background-size:cover;
	background-repeat: no-repeat;
	scroll-snap-type: y;
	width: 100%;
	height: 100vh;
	position: relative;
}
.text{
	width: 70%;
	height: 50%;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	}
.text p{
	background-color: rgba(255,255,255,0.5);
	font-size: 1.2rem;
	padding: 1.2rem 7.0rem 1.2rem 2rem;
}
.frame{
	position: absolute;
	top: -20px;
	left: 15%;	
}
.document h2{
  position: relative;
  padding: 1.5rem 2rem;
  border: 3px solid #c03;
	background: #fff;
	-webkit-filter: drop-shadow(0px 3px 3px rgba(0,0,0,.8));
    filter: drop-shadow(0px 0px 3px rgba(0,0,0,.5));
}
.document h2:before {
  position: absolute;
  bottom: -14px;
  left: 1em;
  width: 0;
  height: 0;
  content: '';
  border-width: 14px 12px 0 12px;
  border-style: solid;
  border-color: #c03 transparent transparent transparent;
}

.document h2:after {
  position: absolute;
  bottom: -10px;
  left: 1em;
  width: 0;
  height: 0;
  content: '';
  border-width: 14px 12px 0 12px;
  border-style: solid;
  border-color: #f9f9f9 transparent transparent transparent;
}

/*------------------------------
ドバイの魅力
------------------------------*/
.heading h2{
	text-align: center;
}
.heading h3{
	font-size: 2.0rem;
	line-height: 1.5;
	margin-bottom: 50px;
}
.charm_img{
	width: 250px;;
}
.charm{
	position: relative;
}
.land-icon img{
	position: absolute;
	right: 0;
	top: -100px;
}
.land-icon p{
	position: absolute;
	right: 250px;;
	top: 50px;
	text-align: right;
	line-height:1.5em;
}
.content{
	display: flex;
	justify-content: space-around;
	margin: 10px auto;
	align-items: center;
}
.content_photo{
	width: 40%;
}
.content img{
	border: 10px solid #fff;
	box-shadow: 0px 3px 10px rgba(0,0,0,.8);
}
.content p{
	width: 50%;
	font-size: 1.2rem;
	border: dashed 3px #3cf;
	background-color: #fff;
	padding: 30px;
}
.img_box{
	display: flex;
	justify-content: space-around;
	position: relative;
}
.img_box img{
	width: 90%;
}
.photo{
	background-image: url("../images/pc_bg.jpg");
	margin: 30px;
	box-shadow: 0px 3px 10px rgba(0,0,0,.8);
	display: block;
    text-align: center;
	padding-top: 12px;
}
.handwriten{
	font-family: ta-koigokoro, sans-serif;
	font-weight: 600;
	font-style: normal;
}

.photo:hover{
	transform: scale(1.1);
	z-index: 1;
}
.lum-lightbox.lum-open{
	z-index: 999;
}
.lum-lightbox-inner img{
	max-width: 120vw;
	max-height: 80vh;
}

/*charm2*/
.beach_icon img{
	width: 20%;
	position: absolute;
	top: 0;
	right: 20%;
}
.desert_photo{
	display: flex;
	flex-flow: column;
	width: 40%;
	padding-top: 50px;
}
.desert_photo img{
	margin-bottom: 30px;
	width: 100%;
}
.content_left .content p{
	padding-bottom: 200px;
}
.camel-face{
	position: absolute;
	bottom: -50px;
	right: 10%;
}
/*charm3*/
.charm_icon{
	position: absolute;
	top: 0;
	right: 0;
}

/*charm4*/
.dubai_icon{
	position: absolute;
	top: 5%;
	right: -5%;
}
.dubai_icon img{
	width: 80%;
}
/*tour-info*/
.trip-content{
	position: relative;
}
.plane_icon{
	position: absolute;
	top: -100px;
	right: 15%;
	z-index: 1;
}
.trip-content{
	text-align: center;
}
.trip-content p{
	margin: 20px auto;
	font-size: 1.2rem;
}
.btn{
	position: relative;
}
.btn a:hover{
	opacity: 0.7;
}
.mouseover__box{
	display: none;
}
.btn a:hover+.mouseover__box{
	display: block;
	position: absolute;
	top: 50px;
	left: 15%;
	background: #fff;
	z-index: 1;
	border: 1px solid #333;
	color: deeppink;
	width: 200px;
}
.mouseover__box span{
	font-family: fot-chiaro-std,sans-serif;
font-weight: 700;
font-style: normal;
}
.trip-cat{
	display: flex;
	justify-content: space-around;
}
.trip-cat a{
	margin: 10px;
}
.trip-cat a:hover{
	transform: scale(1.1);
}

/*----------------------------
SP
-----------------------------*/
@media (max-width : 599px) {
	.title{
		position: absolute;
		top: -70%;
		right: 0;
		left: 0;
		margin: auto;
		height: 20vh;
		width: 58%;
	}
	.title p{
		writing-mode: horizontal-tb;
		font-size: 1.2rem;
		background-color: rgba(211,211,211,0.5);
		padding: 20px;
	
}
	.top-plane,.left-up,.right-cloud{
		display: none;
	}
	.left-down{
		position: relative;
		top: 80%;
	}
	
	/* コンテンツ*/
	.info{
		flex-direction: column;
	}
	.mosque-icon{
		width: 50vw;
		margin: 0 auto;
	}
	.info p{
		width: 90vw;
		margin: 10px 0;
	}
	.camel-icon{
		width: 50%;
		margin: 0 auto;
	}
	.frame{
	position: absolute;
	top: -20px;
	left:0;
	right: 0;
	margin:0 20px;;
}
	.document{
	background-image: url("../images/skyscrapers.jpg");
	background-size:cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	height: auto;
	position: relative;
	padding-bottom: 20px;
}
	.text{
		width: 90vw;
		margin: 0 auto;
		margin-top: 100px;
		position: static;
	}
	.text p{
		padding: 10px;
		position: static;
	}
	.document .sc-btn{
		display: none;
	}
	.charm h3{
		font-size: 1.2rem;
		text-align: center;
		margin-bottom: 10px;
	}
	.land-icon{
		text-align: center;
		display: flex;
		flex-direction: column-reverse;
	}
	.land-icon img{
		position: static;
		width: 70%;
		margin: 0 auto;
	}
	.land-icon p{
		position: static;
		text-align: center;
	}
	.content{
		flex-direction: column;
	}
	.content_photo{
		width: 100%;
	}
	.content img{
		border-bottom-style: none;
		box-shadow: none;
	}
	.content P{
		width: 100%;
		border: none;
		padding: 0;
	}
	.img_box{
		display: block;
	}
	.beach_icon{
		display: none;
	}
	.desert_photo{
		width: 100%;
		padding-top: 0;
	}
	.content_left .content p {
		padding-bottom: 0;
		position: static;
	}
	.camel-face{
		position: static;
		margin: 0 auto;
	}
	.charm_icon{
		display: none;
	}
	.content-box{
		flex-direction: column-reverse;
	}
	.dubai_icon{
		position: static;
		text-align: center;
	}
	.plane_icon{
		display: none;
	}
	.trip-cat{
		flex-direction: column;
	}
}
@media only screen and (-webkit-min-device-pixel-ratio: 3) {
    /* CSS */
	.title{
		position: absolute;
		top: -70%;
		right: 0;
		left: 0;
		margin: auto;
		height: 20vh;
		width: 58%;
	}
	.title p{
		writing-mode: horizontal-tb;
		font-size: 1.2rem;
		background-color: rgba(211,211,211,0.5);
		padding: 20px;
	
}
	.top-plane,.left-up,.right-cloud{
		display: none;
	}
	.left-down{
		position:absolute;
		top: 70%;
	}
}
