html{
	scroll-behavior: smooth;
}
body{
	margin: 0;
	width: 100%;
	font-family: 'Noto Sans JP', sans-serif;
}

p{
	font-size: larger;
}
.fixed-reserve-button {
    position: fixed;
    bottom: 20px;
    right: 4vw;
    z-index: 1000;
    background-color: #00A8CC; /* 好きな色に変更可 */
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
	margin-bottom: 60px;
	font-size: 27px;
}
.fixed-reserve-button:hover {
    background-color: #0088aa	; /* ホバー時の色 */

}


.rogo{
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 76px;
}

.rogo img{
	padding-left: 5vw;
	width: auto;
	height: 76px;
}
.logo_cool {
    display: flex;
	height: 76px;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* 左揃え（必要ならcenterに変更可） */
}
.logo_moji{
	margin: 0;
}
.logo_moji a{
	text-decoration: none;
	color: black;
}
.logo_p{
	margin: 0;
}
.logo_p a{
	text-decoration: none;
	color: black;
}
/* テキストリンクの装飾 */
.logo_cool h4 a {
    text-decoration: none;
    color: black; /* お好みで */
    font-size: 1.2em;
}


.sns-wrapper {
    display: flex;
    justify-content: center;

  }


.img_insuta{
	width: 3.35vw;
	background-color: white;
	border-radius: 16px;
}
.img_facebook{
	width: 3.35vw;
	background-color: white;
	border-radius: 16px;
}
.img_insuta_saigo{
	width: 70px;
}
.img_facebook_saigo{
	margin-left: 4vw;
	width: 70px;
}





.fix_menu{
    background-color: white;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 999;
	padding: 30px 0;
	height: 16px;
}
#navwrap{
	position: absolute;
	top: 0;
	right: 2vw;
	display: flex;
	height: 76px;
	align-items: center; 
}



.header_menu{
	display: flex;
	text-align: center;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}



.header_menu li a{
	cursor: pointer;
	padding: 0 10px;
	text-decoration: none;
	transition: color 0.3s;
	border-radius: 6px;
	color: #333;
	font-size: large;
}


.header_menu li a:hover {
    color: green;
}


#switch{
	display: none;
}






.slideshow{
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.slideshow .slide {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
  }
  
  .slideshow .slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  
  .slideshow .slide.active {
	opacity: 1;
	z-index: 2;
  }


.saisyonogazou_img{
    margin-top:76px;
    width: 100%;
    height: auto;
}





.itterasyai{
	padding: 8rem 0;
	display: flex;
	justify-content: center;
}

.ittrerasyai_span{
	font-size: larger;
	color: #006650;
}

.itterasyai_sayu{
    display: flex;
    justify-content: center;
}


.itterasyai_h2{
    writing-mode: vertical-rl;
	padding-top: 1.2rem;
}

.itterasyai_h1{
    writing-mode: vertical-lr;
}
.itterasyai_img1{
	height: 400px;
}
.itterasyai_img2{
	height: 400px;
}



.image-gallery {
	display: flex;
	/*
	gap: 20px;
	*/
	flex-wrap: wrap;
}
  
 .image-gallery img {
	flex: 1 1 48%;
	height: auto;
	width: 45%;
	border-radius: 8px;
	object-fit: cover;

}
  

.gallery img{
	max-height: 500px;
}









.intro {
	text-align: center;
	margin-bottom: 2rem;
	padding: 0 1rem;
	margin: rem 0;
  }
  .room-section {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	margin: 0 auto 4rem;
	max-width: 1400px;
	padding: 0 1rem;
  }
  .room-card {
	background-color: white;
	border-radius: 16px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	width: calc(50% - 1rem);
	min-width: 300px;
	max-width: 800px;
	overflow: hidden;
	flex: 1 1 calc(50% - 1rem);
	transition: transform 0.3s ease;
  }
  .room-card:hover {
	transform: scale(1.02);
  }
  .room-card img {
	width: 100%;
	height: auto;
  }
  .room-info {
	padding: 1.5rem;
  }
  .room-title {
	font-size: 2rem;
	margin-bottom: 0.5rem;
	color: #2f4f4f;
  }
  .room-subtitle {
	font-size: 1.2rem;
	color: #777;
	margin-bottom: 1.2rem;
  }
  .price-table {
	background-color: #f0f4f7;
	padding: 1rem;
	border-radius: 10px;
	font-size: 1.1rem;
  }
  .price-row {
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 0;
	border-bottom: 1px solid #ddd;
  }
  .price-row:last-child {
	border-bottom: none;
  }
  .note {
	font-size: 0.9rem;
	color: #999;
	text-align: center;
	margin: 2rem 1rem 4rem;
  }




  .reservation-section {
	background: #e3f7f0;
	padding: 3rem 1rem;
	text-align: center;
	border-top: 1px solid #ddd;
	
  }
  .reservation-section h2 {
	font-size: 2rem;
	color: #2e7d32;
	margin-bottom: 1rem;
  }
  .reservation-section p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
  }
  .reservation-button {
	display: inline-block;
	padding: 1rem 2rem;
	color: white;
	font-size: 1.2rem;
	border-radius: 8px;
	text-decoration: none;
	transition: background-color 0.3s;
	margin: 0 20px;
  }
  .reservation-button:hover{
	opacity: 0.5;
  }

  .airbnb{
	background-color: #ff5a5f;
  }
  .booking{
	background-color: #003580;
  }










  .container {
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
  }
  section {
	background: white;
	border-radius: 16px;
	margin-bottom: 40px;
  }


  
.h2_green {
	border-left: 5px solid #008060;
	padding-left: 12px;
	margin-bottom: 16px;
	color: #008060;
	font-size: xx-large;
  }
  .gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: space-between;
  }
  .gallery img {
	width: calc(50% - 8px);
	border-radius: 12px;
	object-fit: cover;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  .section-title {
	text-align: center;
	font-size: 1.8rem;
	margin: 40px 0 20px;
	color: #006650;
	padding: 2rem 0;
  }
  .services {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .services div {
	flex: 1;
	min-width: 200px;
	font-size: large;
  }

 .services h3{
	padding-left: 30px;
}

 .services p{
	margin: 0 20px;
	font-size: medium;
 }

  table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 24px;
	font-size: large;
  }
  table, th, td {
	border: 1px solid #ccc;
  }
  th, td {
	padding: 10px;
	text-align: center;
  }
  th {
	background: #007d63;
	color: white;
  }
  td:first-child {
	background: #e3f7f0;
  }

  .reserve-section {
	background-color: #fff;
	padding: 40px 0;
	width: 90%;
	margin:0 auto;
	height: 750px;
	max-width: 1400px;
	box-shadow: none;
	}
  .reserve-section h2{
		margin-bottom: 6vw;
	}



  .map-container {
	text-align: center;
  }


  .map-container iframe{
	width: 100%;
	height: 97%;
  }

  .access-map {
	margin-top: 40px;
  }
  footer {
	background: #333;
	color: white;
	text-align: center;
	padding: 20px;
  }


.access_logo{
	display: flex;
	justify-content: center;
	align-items: center;
}


.access-between{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 20vw;
	gap: 20px;
}







.rosen_img{
	width: 49%;
}













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

	.logo_cool{
		font-size: smaller;
	}
	img.logo_img{
		height: 65px;
	}

    .saisyonogazou_img{
        margin-top:60px;
        width: 100%;
        height: auto;
    }



	.image-gallery {
		flex-direction: column;
		display: flex;
		align-items: center;
	  }
	
	.image-gallery img {
		flex: 1 1 100%;
		width: 100%;
	  }



	

	.room-card {
        width: 100%;
        flex: 1 1 100%;
      }



	.akane_p{
		font-size:0.85rem;color:#888;margin-top:0.5rem;
	}
	.access_img{
		border-radius:12px;	
	}



	.fixed-reserve-button {
		font-size: 20px;
	}



	.section-title {
		text-align: center;
		font-size: 1.6rem;
		margin: 40px 0 20px;
		color: #006650;
		padding: 2rem 0;
	  }

	  .h2_green{
		font-size: x-large;
	  }


	/* ハンバーガー本体 */
	.hamburger {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 30px;
		height: 22px;
		cursor: pointer;
		position: fixed;
		top: 28px;
		right: 20px;
		z-index: 1001;
	}
	
	/* 各線の基本スタイル */
	.hamburger span {
		display: block;
		height: 3px;
		width: 100%;
		background-color: black;
		border-radius: 2px;
		transition: all 0.4s ease;
	}
	
	/* ハンバーガーがONになったときの線のアニメーション */
	#switch:checked + .hamburger span:nth-child(1) {
		transform: translateY(9px) rotate(45deg);
		background-color: white;
	}
	#switch:checked + .hamburger span:nth-child(2) {
		opacity: 0;
	}
	#switch:checked + .hamburger span:nth-child(3) {
		transform: translateY(-9px) rotate(-45deg);
		background-color: white;
	}
	
	/* メニューラップ */
	#navwrap {
		position: fixed;
		top: -100%;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(8, 8, 8, 0.8);
		transition: top 0.4s ease;
		padding: 60px;
		box-sizing: border-box;
		z-index: 1000;
		justify-content: center;
	}
	.header_menu li a{
		padding: 3vw 0;
		font-size: x-large;
	}
	#switch:checked ~ #navwrap {
		top: 0;
	}
	.header_menu{
		display: flex;
		flex-direction: column;
	}
	.header_menu li{
		margin: 0 auto 30px;
	}
	.header_menu li a{
		color: #fff;
	}
	.scroll-prevent {
		position: fixed;
		z-index: -1;
		width: 100%;
		height: 100%;
	}


	.img_insuta{
		width: 10vw;
	}
	.img_facebook{
		width: 10vw;
	}
	.img_insuta_saigo{
		width: 8vw;
	}
	.img_facebook_saigo{
		margin-left: 4vw;
		width: 8vw;
	}
	



	.gallery img {
        width: 100%;
      }
      .services {
        flex-direction: column;
        align-items: center;
      }
      .services div {
        width: 100%;
        max-width: 400px;
      }
 
	  .access-between{
		flex-direction: column;
		display: flex;
		align-items: center;
		height: auto;
	}

	.rosen_img{
		margin-top: 6vw;
		width: 100%;
	}
	
	.map-container iframe{
		width: 99%;
		height: 40vw;
	}
}

@media (max-width: 1024px) {
	.room-section {
	  max-width: 1000px;
	}
	.room-card {
	  width: calc(50% - 1rem);
	  flex: 1 1 calc(50% - 1rem);
	}
  }