@charset "UTF-8";


@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);



/* ----------------------------------------------------------------------


-------------------------------------------------------------------------*/
body {
  overflow: hidden;
  min-width: 300px;
  background: url("images/title_bg25-min.jpg");
  background-repeat: repeat;
    font-family: 'Noto Sans JP', sans-serif;
}

.layout {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;

}

a {
  text-decoration: none;
}

.clear {
	clear: both;
  margin: 40px 0;
}




/* ----------------------------------------------------------------------
　アニメーション

-------------------------------------------------------------------------*/




/*右から左*/
@keyframes RightToLeft {
0% {
    opacity: 1;/* 透明 */
    transform: translateX(200px);/* X軸方向に200px */
}
100% {
    opacity: 1;/* 不透明 */
    transform: translateX(0);/* X軸方向に0px */
}
}

.animation_rl {
animation-name: RightToLeft;/* アニメーション名 */
animation-duration: 0.7s;/* アニメーション時間 */
}




/*左から右*/
@keyframes LeftToRight {
0% {
    opacity: 1;/* 透明 */
    transform: translateX(-200px);/* X軸方向に-200px */
}
100% {
    opacity: 1;/* 不透明 */
    transform: translateX(0);/* X軸方向に0px */
}
}

.animation_lr {
animation-name: LeftToRight;/* アニメーション名 */
animation-duration: 0.7s;/* アニメーション時間 */
}



.fadein{
  -webkit-transition: all 5s linear;
  -o-transition: all 2s linear;
  transition: all 2s linear;
  opacity: 0;
}
.fadein.active{
  opacity: 1;
}




#top {

  background-size: cover;
  font-weight: bolder;
  text-align: center;
  overflow: hidden;
}

#top .ttl {
  position: relative;
  margin: 10px auto 0 auto;
  height: 291px;
  z-index: 3;
}

.sliding {
  position: absolute;
  height: 500px;
  width: 100%;
  top: 100px;
  animation: slide 90s linear infinite;
  z-index: 1;
}

@keyframes slide {
  0%{
transform: translate3d(0, 0, 0);
  }
  100%{
transform: translate3d(0, 0, 0);
  }
}


#top h5 {
  margin: 0;
  font-size: 1.6em;
  font-weight: bolder;
  color: #000;
  position: relative;
  z-index: 2;
    font-family: 'Noto Sans JP', sans-serif;
}

#top .subtitle{
	padding:20px;
	margin: auto;
	max-width:530px; 
	background-color: #fff;
	border: 2px solid #000;
	font-family: 'Noto Sans JP', sans-serif　!important; 
	}

#top p {
  color: #000;
padding:10px;
  font-size: 1em;
  line-height: 1.2em;
  margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
}


#top_list {
	margin: 20px 0 10px 0;
	text-align: center;
}

#top_list li {
	display: inline;
	padding: 10px 0px;
	white-space: nowrap;
	line-height: 3.2;
}


#top_list li a {
	margin: 0 5px;
	padding: 10px 25px;
	font-size: 1.2em;
	font-weight:800;
	color: #000;
	background: #fff;
	text-decoration: none;
	  border: 3px solid #000;
}


#top_list li a:hover{
	color: #fff;
	background:#A61416;
	text-decoration: none;
	  border: 3px solid #fff;
}





.black {
	font-size: 0.7em;
	color:#000;
	
}


/* ----------------------------------------------------------------------
フォント

-------------------------------------------------------------------------*/
body {
font-family: 'Noto Sans JP', sans-serif;
}

.clear {
	clear: both;
}

	
h1 {
	font-family: 'Noto Sans JP', sans-serif　!important;
	font-weight: 700;
}	

h2 {
	font-family: 'Noto Sans JP', sans-serif　!important;
	font-weight: 700;
}

h3 {
	font-family: 'Noto Sans JP', sans-serif !important;
	font-weight: 700;
}

h4 {
	font-family: 'Noto Sans JP', sans-serif !important;
	font-weight: 700;
}


h5 {
	font-family: 'Noto Sans JP', sans-serif !important;
	font-weight: 700;
}

p {
	font-family: 'Noto Sans JP', sans-serif !important;
	font-weight: 400; 
}



/* ----------------------------------------------------------------------
ラベル

-------------------------------------------------------------------------*/


.roundbox2{
	position: absolute;
  width: 80px;
  height: 80px;
  background:#C2292B;
  border-radius: 50%;
    margin:-40px -10px 10px;
    text-align: center;
	font-family: 'Noto Sans JP', sans-serif !important;
}

.roundbox2 h3{
 color:#fff;
	  font-size: 12px;
    padding:20px 20px 20px;
		font-family: 'Noto Sans JP', sans-serif !important;
}


 /*---------------------------------------------
　　　ナビ
------------------------------------------------*/
#hatsuyume_nav {
	text-align: center;
	position: relative;
	overflow: hidden;
	margin: 0 0 10px 0;
	background:#FFF;
	height: 75px;
	width: 100%;
	border-top: 3px solid #000;
	border-bottom: 3px solid #000;
	font-family: 'Noto Sans JP', sans-serif !important;
}

#hatsuyume_nav.fixed {
	position: fixed;
	z-index: 999;
	top:0;
}

#hatsuyume_nav ul {
  position: relative;
  left: 50%;
  float: left;
}

#hatsuyume_nav li {
  position: relative;
  right: 50%;
  float: left;
}

.navi_link a {
	display: inline-block; 
    text-align: center;
    text-decoration: none; 
	width:200px; 
    padding: 10px 0px 10px 0px;
    color: #DC143C;
	font-weight: bold;
		font-size: 1em;
}

.navi_link {
  float:left;
  border-left: 1px solid #000;
}

.navi_link:last-child {
  border-right: 1px solid #000;
}

#hatsuyume_nav_nav li:hover{
	color: #C31A1B !important;
}

#hatsuyume_nav_nav li:active{
background: #C31A1B;
}


/* ----------------------------------------------------------------------
　商品

-------------------------------------------------------------------------*/


.tour-container {
	max-width: 1280px;
	margin: auto;
	padding: 0px 30px 30px;
	 font-family: 'Noto Sans JP', sans-serif !important;
}

.tour-container img {
	float: none;
	margin: auto;
}

.tour-container p {
	text-align: center;
	line-height: 1.3em;
	font-family: 'Noto Sans JP', sans-serif !important;
}


.tour-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 0px 20px 50px 20px;
	font-family: 'Noto Sans JP', sans-serif !important;

}

.photo-item {
    max-width: 200px;
    text-align: center;
	background-color: #fff;
     border: 3px solid #000;
}

.photo-item img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.photo-item h5 {
    margin-top: 10px;
	padding:0px 10px;
	  font-size: 0.9em;
	line-height: 1.2em;
    color:#CB3A00;
	font-family: 'Noto Sans JP', sans-serif !important;
}

.photo-item h4 {
    margin-top: 10px;
	padding:0px 10px;
    color: #333;
	font-family: 'Noto Sans JP', sans-serif !important;
}


.photo-item p {
    margin-top: 10px;
	padding:0px 10px;
    font-size: 0.9em;
	line-height: 1.3em;
    color: #333;
	font-family: 'Noto Sans JP', sans-serif !important;
}


.photo-item2 {
    max-width: 200px;
    text-align: center;
	background-color: #fff;
     
}

.photo-item2 img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}











.price{
	font-weight: bolder;
	font-size: 1.2em;
	color:#f72e13; 
	   font-family: 'Noto Sans JP', sans-serif !important;
	
}


.price a{
	text-decoration: none;
	color:#f72e13; 
	    font-family: 'Noto Sans JP', sans-serif !important;
}


.price2{
	font-weight: bolder;
	font-size: 1.0em;
	color:#f72e13; 
	   font-family: 'Noto Sans JP', sans-serif !important;
}


.price2 a{
	text-decoration: none;
	color:#f72e13; 
	   font-family: 'Noto Sans JP', sans-serif !important;
	
}



.price3{
	text-align: center;
	font-weight: bolder;
	font-size: 1.2em;
	color:#f72e13; 
	   font-family: 'Noto Sans JP', sans-serif !important;
	
}


.price3 a{
	text-decoration: none;
	color:#f72e13; 
	
}



/* ----------------------------------------------------------------------
その他 商品部分

-------------------------------------------------------------------------*/



#information{
	margin: auto;
	padding: 10px 10px;
	font-family: 'Noto Sans JP', sans-serif !important;
	
}


#information h3 {
  margin: 15px;
	padding:30px 0px 0px 0px;
  font-size: 2.2em;
	line-height: 1.6em;
 font-weight: 900; 
font-family: 'Noto Sans JP', sans-serif !important;
  text-align: center;
  color: #000;
}





.information-container {
	max-width: 1280px;
	margin: auto;
	padding: 30px;
font-family: 'Noto Sans JP', sans-serif !important;
}

.information-container img {
	float: none;
	margin: auto;
}

.information-container p {
	text-align: center;
	line-height: 1.3em;
font-family: 'Noto Sans JP', sans-serif !important;
}



.information-container h4 {
            margin: 0px 0px 0px;
			   padding: 0px 0px;
			    font-size: 24px; 
			font-family: 'Noto Sans JP', sans-serif !important;
        }


.rounded-box {
            padding: 20px;
            background-color: #fff; 
            border-radius: 15px; 
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 影を追加 */
            border: 1px solid #ccc; /* 枠線を追加 */
            font-family: 'Noto Sans JP', sans-serif !important;
            color: #333; 
            margin: 20px auto; 
            text-align: center; 
	width: 90%; 
    max-width: 900px; 
	
	
        }

.rounded-box h2 {
    position: relative;
  padding: 20px;
	margin:20px;
  background: #A28428;
	color:#fff;
	font-family: 'Noto Sans JP', sans-serif !important;
}


.rounded-box h2:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #A28428;
  width: 0;
  height: 0;
font-family: 'Noto Sans JP', sans-serif !important;
	
}


   #information .information-container h4 {
	     font-size: 24px; 
	 color:crimson; 
			font-family: 'Noto Sans JP', sans-serif !important;
        }


  #information  .rounded-box h4 {
            margin: 0 0 0px;
			   padding: 0px 0px;
			    font-size: 24px; 
	 color:crimson; 
			font-family: 'Noto Sans JP', sans-serif !important;
        }

        .rounded-box p {
            margin: 0; 
            
            color: #555; 
			font-family: 'Noto Sans JP', sans-serif !important;
        }

.coupon {
border: crimson solid 5px; 
	border-left: crimson solid 70px; 
	padding: 10px;
	margin:30px auto; 
	font-size: 100%;
    max-width: 300px; 
	font-family: 'Noto Sans JP', sans-serif !important;
}


.location_headertop {
	text-align: center;
 font-family: 'Noto Sans JP', sans-serif !important;
    padding:30px 0px 30px;
	margin:0px 0px 0px; 
	background-color: #c31b1b;
	color:#fff;
}

.location_headertop h1{
	
  font-family: 'Noto Sans JP', sans-serif !important;
    font-size:2.4em;
}

.location_headertop p{
	
  font-family: 'Noto Sans JP', sans-serif !important;
    color:#fff;
}

.location_headertop img {
  width: 50%;
  margin: 10px;
padding: 0px 0px;
}



.location_header {
	text-align: center;
font-family: 'Noto Sans JP', sans-serif !important;
    padding:50px 0px 20px;
}

.location_header img {
  width: 50%;
  margin: 10px;
padding: 20px 0px;
}


.location_header2 {
	text-align: center;
font-family: 'Noto Sans JP', sans-serif !important;
    padding:30px 0px 30px;
	margin:80px 0px 50px; 
	background-color: #c31b1b;
	color:#fff;
}

.location_header2 h1{
	
  font-family: 'Noto Sans JP', sans-serif !important;
    font-size:2.2em;
}

.location_header2 p{
	
   font-family: 'Noto Sans JP', sans-serif !important;
    color:#fff;
}

.location_header2 img {
  width: 50%;
  margin: 10px;
padding: 0px 0px;
}




h2 {
  padding: 30px;
  font-size: 2em;
  position: relative;
  text-align: center;
  color: #000;
font-family: 'Noto Sans JP', sans-serif !important;
	
}


h2::before {
	  position: absolute;
    content: url("images/header_left25-min.png") ;
    display: inline-block;
  	margin-left: -120px;
}

h2::after {
	content: url("images/header_right25-min.png") ;
  display: inline-block;
	margin-left: 10px;
	position: absolute;
}




#pkg {
 background-image: url("images/haikei25_new2-min.jpg");
  background-repeat: repeat;
  margin: 0;
	text-align: center;
    background-attachment: fixed;
}



#pkg2 {
  background: url("images/haikei25_new-min.png");
  background-repeat: repeat;
  margin: 0;
	text-align: center;
}

#pkg3 {
  background:#fff;
  background-repeat: repeat;
  margin: 0;
	text-align: center;
}

#pkg_special {
  background:#fbe8e2;
  background-repeat: repeat;
  margin: 0;
	text-align: center;
}

#air {
 background-image: url("images/haikei25_sky-min.jpg");
background-size: cover;
  margin: 0;
	text-align: center;
    background-attachment: fixed;
}


#extra {
  margin: 0;
	text-align: center;
}





h3.subtitle{
  padding: 0px 30px;
	margin: 0px;
  font-weight: bolder;
  font-size: 1.8em;
  position: relative;
  text-align: center;
  color: #000;
	text-decoration:underline;
}














/* ----------------------------------------------------------------------
ボタン
-------------------------------------------------------------------------*/

.other_buttons {
 text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0px 0 20px 0;
	font-family: 'Noto Sans JP', sans-serif !important;
}

.other_buttons ul {
  position: relative;
  left: 50%;
  float: left;
}

.other_buttons li {
  position: relative;
  right: 50%;
  float: left;
}

.buttons01 {
  float:left;
  margin: 0px 10px;
}


.buttons01 a {
	display: inline-block; 
    text-align: center;
    text-decoration: none; 
	width:150px; 
    padding: 10px;
	margin: 10px 10px;
	border-radius: 30px;
    color: #FFF;
    font-size:1.0em;
    background-color: #000;
	font-weight: bolder;
	font-family: 'Noto Sans JP', sans-serif !important;
}


.other_buttons2 {
 text-align: center;
  position: relative;
  overflow: hidden;
  margin: 20px 0 20px 0;
text-decoration: none; 
}

.other_buttons2 ul {
  position: relative;
  left: 50%;
  float: left;
}

.other_buttons2 li {
  position: relative;
  right: 50%;
  float: left;
}


.buttons02 {
  float:left;
 margin: 0px 10px;
}


.buttons02 a {
	display: inline-block; 
    text-align: center;
    text-decoration: none; 
	width:250px; 
    padding: 10px 10px;
	margin: 10px 10px;
	border-radius: 30px;
    color: #FFF;
    font-size:1em;
    background-color: #000;
	font-weight: bolder;
	font-family: 'Noto Sans JP', sans-serif !important;
}




.rounded-button {
      display: inline-block;
      padding: 15px 30px; /* 縦横の余白 */
      font-size: 1.6em; /* フォントサイズ */
	font-family: 'Noto Sans JP', sans-serif !important;
	font-weight: bolder;
      color: #fff; /* テキストの色 */
      background-color: #007BFF; /* ボタンの背景色 */
      border: none; /* ボーダーなし */
      border-radius: 50px; /* 丸みを指定 */
      cursor: pointer; /* ホバー時のカーソル変更 */
      text-align: center;
      text-decoration: none; /* テキストの下線を削除 */
      transition: all 0.3s ease; /* スムーズなエフェクト */
    }

   
    .rounded-button:hover {
      background-color: #0056b3; /* 色を少し濃くする */
    }





.rounded-button2 {
      display: inline-block;
      padding: 15px 30px; /* 縦横の余白 */
      font-size: 1.6em; /* フォントサイズ */
font-family: 'Noto Sans JP', sans-serif !important;
	font-weight: bolder;
      color: #fff; /* テキストの色 */
      background-color: #408F27; /* ボタンの背景色 */
      border: none; /* ボーダーなし */
      border-radius: 50px; /* 丸みを指定 */
      cursor: pointer; /* ホバー時のカーソル変更 */
      text-align: center;
      text-decoration: none; /* テキストの下線を削除 */
      transition: all 0.3s ease; /* スムーズなエフェクト */
    }

   
    .rounded-button2:hover {
      background-color:#255416 /* 色を少し濃くする */
    }








/*---------------TABLET---------------*/
@media screen and (max-width: 768px){

#top {
   
    overflow: hidden;
}

#top .ttl {
    height: 70%;
  }

#top h5 {
  margin: 0;
  font-size: 0.9em;
padding: -200px 0 0 0;
}



#top_list {
    flex-wrap: nowrap; /* 幅が広い場合は横並び */
}
#top_list li {
    display: inline-block; /* 横並びを再適用 */
    width: auto; /* 自動幅に戻す */
}
	
	
.navi_link a {
	width: 160px; 
}	
	
	
h2 {
    font-size: 1.6em;
  }
	
	   #tours {
    margin: 30px 0;
    height: 220px;
    }
	
    
    
.rounded-button {
        padding: 12px 25px; /* パディングを少なく */
        font-size: 1.2em; /* フォントサイズを小さく */
      }
	
	.rounded-button2 {
        padding: 12px 25px; /* パディングを少なく */
        font-size: 1.2em; /* フォントサイズを小さく */
      }
    }


/*---------------MOBILE---------------*/
@media screen and (max-width:640px){

#top {
   
      overflow: hidden;
  }

#top .ttl {
    height: 100%;
    width: auto;
    margin: 10px auto 0 auto;
  }

.sliding {
  height: 320px;
}


#top h5 {
      font-size:0.7em; 
  }
	
	#top_list li a {
	margin: 0 15px;
	font-size: 0.9em;
}


#top_nav li a {
	margin: auto;

}



#top_nav .list2 a {
	margin: auto;

}

#top_nav .list3 a {
	margin: 20px 25px;

}
	
	
	
h2 {
    font-size: 1.2em;
  }

#hatsuyume_nav {
	height: 50px;
	margin: 0;
	width: 100%;
}

.navi_link a {
	width: 85px;
    padding: 10px 0px;
	font-size: 0.6em;
}
	

.roundbox2{
  width: 90px;
  height: 90px;
  
}
  

 
    .roundbox2 h3{

    padding:30px 20px 20px;
}

  .rounded-box h2 {
	  font-size: 1.2em;
    padding: 15px; /* パディングを小さく */
    margin: 15px; /* マージンを小さく */
  }

	
        #information .rounded-box h4 {
  
			      font-size: 1em;
			font-family: 'Noto Sans JP', sans-serif;
        }
	
	       #information .information-container h4 {
			      font-size: 1em;
			font-family: 'Noto Sans JP', sans-serif;
        }
	
	
	
  .coupon {
    border-left: crimson solid 20px; 
   padding: 5px; 
    font-size: 80%; 
    max-width: 100%; 
}	
	
	
		.location_headertop img {
  width: 100%;
  margin: 0px;
}
	
	.location_headertop h1{
		
    font-size: 1.2em;
	}
	
    .location_header img {
  width: 100%;
  margin: 0px;
}
    	
	.location_header2 img {
  width: 100%;
  margin: 0px;
}
    
	
  	.location_header2 h1{
		
    font-size: 1.2em;
	}  
	
    .photo-item {
        max-width: 100%; /* 画面いっぱいに広げる */
        border-width: 1px; /* ボーダー幅をさらに調整 */
      }
	
   .price { 
	font-size: 1.0em;
	
	}			

.price2 { 
	font-size: 0.8em;
	
	}	
		 
    
   

	

.other_buttons ul {
  position: relative;
  left: 50%;
  float: none;
}

.other_buttons li {
  position: relative;
  right: 50%;
  float: none;
}

.buttons01 {
  float:none;
  margin: 15px 10px;
}

	.buttons02 {
  float:none;
  margin: 5px 10px;
}


.buttons01 a {
	display: inline-block; 
    text-align: center;
    text-decoration: none; 
	width:75%; 
    padding: 10px;
	margin: 10px 20px;
	border-radius: 20px;
    color: #FFF;
    background-color: #000;
	font-weight: bolder;
}
	
	
	
.buttons02 a {
	display: inline-block; 
    text-align: center;
    text-decoration: none; 
	width:75%; 
    padding: 10px;
	margin: 5px 20px;
	border-radius: 20px;
    color: #FFF;
    background-color: #000;
	font-weight: bolder;
}
		
	
	
	

.rounded-button {
        padding: 10px 20px; /* パディングをさらに小さく */
        font-size: 1em; /* フォントサイズをさらに小さく */
      }
	
.rounded-button2 {
        padding: 10px 20px; /* パディングをさらに小さく */
        font-size: 1em; /* フォントサイズをさらに小さく */
      }

    
    
	
#information h3 {
  margin: 15px;
  font-size: 1.2em;
  text-align: center;
  color: #000;
}


	
	
#information h5{
  margin: 15px;
  font-size: 0.9em;
  color: #4F2E10;
}


  

	
}
