.header-image1 img {
    width: 100%;
}

/*========= ページトップのためのCSS ===============*/
/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:30px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(150px);
}

/*　上に上がる動き　*/
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(150px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(150px);
  }
}

/*画像の切り替えと動き*/
#page-top a {
    /*aタグの形状*/
	display: block;
	width: 60px;
	height: 60px;
	color: #333;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
    /*背景画像の指定*/
	background: url("../image/fly.png") no-repeat center;
	background-size: contain;
}

#page-top.floatAnime a{
	width: 80px;
	height: 100px;
    /*背景画像の指定*/
	background: url("../image/fly.png") no-repeat center;
	background-size: contain;
    /*アニメーションの指定*/
	animation: floatAnime 2s linear infinite;
	opacity: 0;
}

@keyframes floatAnime {
  0% { transform: translateX(0); opacity: 0; }
  25% { transform: translateX(-6px);opacity: 1; }
  50% { transform: translateX(0) }
  100% { transform: translateX(6px);opacity: 1; }
}

/*Page Topと書かれたテキストの位置*/
#page-top span{
    position: absolute;
    bottom: -20px;
    right: 5px;
    color: #666;
}

@media screen and (max-width: 425px){
    .sp_heading1 {
    	position: relative;
    	padding-left: 60px;
    	font-size: 20px;
    }

    .sp_heading1::before {
    	content: attr(data-number);
    	position: absolute;
    	top: 50%;
    	left: 0;
    	transform: translateY(-50%);
    	color: rgba(63,193,201,0.3);
    	font-size: 50px;
    }

    .sp_heading1::after {
    	content: '';
    	position: absolute;
    	bottom: 0;
    	left: 0;
    	width: 100px;
    	height: 1px;
    	background-color: rgba(63,193,201,1);
    }
    .sp-text-area {
        padding-bottom: 10px;
        background-image: repeating-linear-gradient(90deg, rgba(63,193,201,1) 0, rgba(63,193,201,1) 2px, rgba(63,193,201,0.3) 2px, rgba(63,193,201,0.3) 4px);
        background-size: 4px 4px;
        background-repeat: repeat-x;
        background-position: center bottom;
    }
    
    /*==================================================
    スライダーのためのcss
    ===================================*/
    .sp_slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
        width:100%;
        margin:0 auto;
        padding:10px 0 0 0;
    }

    .sp_slider img {
        width:100vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
        height:auto;
    }

    .sp_slider .slick-slide {
      transform: scale(0.8);/*左右の画像のサイズを80%に*/
      transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
      opacity: 0.5;/*透過50%*/
    }

    .sp_slider .slick-slide.slick-center{
      transform: scale(1);/*中央の画像のサイズだけ等倍に*/
      opacity: 1;/*透過なし*/
    }


    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev, 
    .slick-next {
        position: absolute;/*絶対配置にする*/
        top: 42%;
        cursor: pointer;/*マウスカーソルを指マークに*/
        outline: none;/*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #666;/*矢印の色*/
        border-right: 2px solid #666;/*矢印の色*/
        height: 15px;
        width: 15px;
    }

    .slick-prev {/*戻る矢印の位置と形状*/
        left: -1.5%;
        transform: rotate(-135deg);
    }

    .slick-next {/*次へ矢印の位置と形状*/
        right: -1.5%;
        transform: rotate(45deg);
    }

    /*ドットナビゲーションの設定*/

    .slick-dots {
        text-align:center;
      margin:8px 0 0 0;
    }

    .slick-dots li {
        display:inline-block;
      margin:0 5px;
    }

    .slick-dots button {
        color: transparent;
        outline: none;
        width:5px;/*ドットボタンのサイズ*/
        height:5px;/*ドットボタンのサイズ*/
        display:#333;
        border-radius:30%;
        background:333;/*ドットボタンの色*/
    }

    .slick-dots .slick-active button{
        background:rgba(63,193,201,0.3);/*ドットボタンの現在地表示の色*/
    }
    .point-text-boxs {
        margin:1em 0;
        position: relative;
        padding: 0.5em 1.5em;
        border-top: solid 2px rgba(51, 51, 51, 0.76);
        border-bottom: solid 2px rgba(51, 51, 51, 0.76);
        background-color: rgba(63, 194, 201, 0.125)
    }
    .point-text-boxs:before, .point-text-boxs:after{
        content: '';
        position: absolute;
        top: -10px;
        width: 2px;
        height: -webkit-calc(100% + 20px);
        height: calc(100% + 20px);
        background-color: rgba(51, 51, 51, 0.76);
    }
    .point-text-boxs:before {left: 10px;}
    .point-text-boxs:after {right: 10px;}
    .point-en img {width: 40px;}
    .point-text {font-size: 0.8rem;padding:0 0.5rem 0.5rem 0.5rem;}
    .point-text2 {font-size: 0.8rem;padding: 0.7rem 0 0.3rem 0;font-weight: bold;}

    .recommend-box1 {
        position: relative;
        margin: 2em 0;
        padding: 0.5em 1em;
        border: solid 3px rgb(255, 158, 232);
        border-radius: 8px;
    }
    .recommend-box1 .box-title {
        position: absolute;
        display: inline-block;
        top: -13px;
        left: 10px;
        padding: 0 9px;
        line-height: 1;
        font-size: 19px;
        background: #FFF;
        color:rgb(255, 158, 232);
        font-weight: bold;
    }
    .recommend-box1 p {
        margin: 0; 
        padding: 0.5rem;
    }
    .sp-point-icon {
        position: absolute;
        display: inline-block;
        top: -75px;
        right: 0px;
    }
    .sp-point-icon img {width: 200px;}
    .like {border-bottom: 1px solid rgb(255, 158, 232);}
    .item .img {border-radius: 30px;overflow: hidden;}
    .item img {width: 100%;height: auto;}
    .titBar {margin: 8px 0 5px;
        padding: 0 10px;
        text-align: left;
        position: relative;}
    .titBar:before {
        content: "";
        width: 4px;
        height: 40px;
        position: absolute;
        top: -35px;
        left: 10px;
        background-color: #4d4b4b;
    }
    .titBar .lead {
        padding-left: 12px;
        font-size: 0rem;
        font-family: "Satisfy_regular";
        line-height: 1.0;
    }
    .item .lead small {
        margin-right: 7px;
        font-size: 1.5rem;
        display: inline-block;
        font-family: 'Vujahday Script', cursive;
    }
    .item .lead span:nth-child(1) {
        margin-right: 7px;
        font-size: 0.8rem;
        display: inline-block;
        font-family: "Satisfy_regular";
    }

    .item1 .lead span:nth-child(1) {
        margin-right: 7px;
        font-size: 0.8rem;
        display: inline-block;
        font-family: "Satisfy_regular";
    }

    .item .txtBox {
        padding: 0 0 0 10px;
    }
    .item1 .txtBox {
        padding: 0 0 0 10px;
        width: 100%;
    }
    .item1 .txtBox1 {
        padding: 0 10px 0 0;
        width: 60%;
    }
    .item .txt {
        margin-bottom: 10px;
        font-size: 0.9rem;
    }

    .item1 .txt {
        margin-bottom: 5px;
        font-size: 0.9rem;
        padding-top:10px;
    }

    .boxs {
        display:flex;flex-wrap: wrap;
    }
    .content,.item1 {display:flex;}
    .boxs .item {padding:0.3rem;}
    .boxs .right {margin-top: 30px;}
    .boxs .item img {width:190px;height:156px;}
    .item1 img {width:190px;height:156px;}
    .boxs .item .img {border-radius: 30px;overflow: hidden;}
    .item1 .img {border-radius: 30px;overflow: hidden;}
    .en {text-transform: capitalize;}
    .boxs .titBar .lead {
        padding-left: 10px;
        font-family: "Satisfy_regular";
    }

    .booking-bottom-boxs a {
        padding: 10px 30px;
        width: 220px;
        font-size: 12px;
    }

    .sp_heading2 {
    	position: relative;
    	padding-left: 60px;
    	font-size: 20px;
    }

    .sp_heading2::before {
    	content: attr(data-number);
    	position: absolute;
    	top: 50%;
    	left: 0;
    	transform: translateY(-50%);
    	color: rgba(242, 142, 20, 0.3);
    	font-size: 50px;
    }

    .sp_heading2::after {
    	content: '';
    	position: absolute;
    	bottom: 0;
    	left: 0;
    	width: 100px;
    	height: 1px;
    	background-color: rgb(242, 142, 20);
    }

    .tour2 {
        background-image: repeating-linear-gradient(90deg, rgb(242, 142, 20) 0, rgb(242, 142, 20) 2px, rgba(242, 142, 20, 0.3) 2px, rgba(242, 142, 20, 0.3) 4px);
    }

    .point-text-boxs {
        background-color: rgba(63, 194, 201, 0.125)
    }

    .tour_2 {
        background-color: rgba(250, 184, 102, 0.3);
    }

    .sp-icon2 {
        top: -55px;
        right: -15px;
    }
}

@media screen and (max-width: 375px) {
    .sp-point-icon {
        top: -55px;
        right: -10px;
    }
    .sp-point-icon img {
        width: 170px;
        height: 170px;
    }

    .sp-icon2 {
        top: -10px;
        right: -15px;
    }

    .sp-icon2 img {
        width: 150px;
        height: 150px;
    }

    .item .lead span:nth-child(1) {
        font-size: 0.8rem;
    }

    .item1 .lead span:nth-child(1) {
        font-size: 0.8rem;
    }

    .item .txt {
        font-size: 0.8rem;
    }

    .item1 .txt {
        font-size: 0.8rem;
    }

    .boxs .item img {width:170px;}
    .item1 img {width:170px;}

}

@media screen and (max-width: 320px){
    .sp-point-icon {
        top: 0px;
        right: -10px;
    }
    .sp-point-icon img {
        width: 125px;
        height: 125px;
    }

    .sp-icon2 {
        top: -100px;
        right: -15px;
    }

    .sp-icon2 img {
        width: 133px;
        height: 133px;
    }

    .item .lead span:nth-child(1) {
        font-size: 0.7rem;
    }

    .item1 .lead span:nth-child(1) {
        font-size: 0.7rem;
    }

    .item .txt {
        font-size: 0.5rem;
    }

    .item1 .txt {
        font-size: 0.5rem;
    }

    .boxs .item img {width:143px;}
    .item1 img {width:143px;}

}