@charset "utf-8";
/* CSS Document */
.first-view-area{
	position: relative;
	background-image: url("../img/onsen-intro2.jpg");
	background-repeat: no-repeat no-repeat;
	background-position:  bottom center;
	background-size: cover;
	margin-bottom: 160px;
	aspect-ratio:1920 / 650;/*縦横比固定*/
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width:800px){
	.first-view-area{
		margin-bottom: 80px;
}
}

.breadcrumb {
	position: absolute;
	top:0;
	left:0;
	padding: 10px;
}

.breadcrumb ul{
	display: flex;
	margin: 0 5px;
	padding: 0;
}
.breadcrumb li{
		margin-left: 13px;
	padding: 10px 5px;
	
	font-size: 20px;
}
@media (max-width:800px){
	.breadcrumb li{
	font-size: 10px;
}

}
.breadcrumb li:not(:last-child)::after{
	content:'>';
	
}
.breadcrumb li a{
	padding-right:18px;
}

.first-view-text h1{
	font-size: 50px;
	padding-bottom: 5px;
}
.first-view-text p{
	font-size: 32px;
	text-align: center;
}

/*温泉intro*/
@media (max-width:800px){
	.first-view-text h1{
	font-size: 28px;
}
.first-view-text p{
	font-size: 20px;
}
}
.onsen-intro{
	margin-bottom: 160px;
}
.onsen-intro-text{
	width:calc(865 / 1920 * 100%);
	height:calc(275 / 1080 * 100%);
	margin:0 auto;
}
.onsen-intro-text h2{
	text-align: center;
	font-size: 24px;
	padding-bottom: 30px;
}

.onsen-intro-text p{
	font-size: 16px;
	line-height: 30px;
}
@media (max-width:800px){
	.onsen-intro{
	margin-bottom: 80px;
}

.onsen-intro-text h2{
	font-size: 20px;
}

.onsen-intro-text p{
	font-size: 16px;
	line-height: 25px;
}
}

/*温泉3つ画像*/
/*.onsen,.onsen-reverse{
	height: 1030px;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	
}*/
/*onsen,onsen-reverse*/
/*@media (max-width:800px){
	.onsen,.onsen-reverse{
	height: 1030px;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	
}
}
*/
.onsen_sec{
	width:100%;
	margin-bottom: 80px;/*150px~200px入れる場合もある*/
	padding: 150px 0;
		color: #fff;
}
/*>は.onsen_secの子供の.innerだけに指定できる*/
.onsen_sec > .inner{
	width:calc(960 / 1920 * 100%);
	max-width:960px;
	margin: 0 auto;
}
@media screen and (max-width:768px){
	.onsen_sec > .inner{
		width:90%;
	}
}
.onsen1{
	background-image: url("../img/pc-onsen-asahi.jpg");
	background-repeat: no-repeat no-repeat;

}
.onsen2{
	background-image: url("../img/pc-onsen-yuuhi.jpg");
	background-repeat: no-repeat no-repeat;
		
}

.onsen3{
	background-image: url("../img/pc-onsen-sione.jpg");
	background-repeat: no-repeat no-repeat;
	
}
/*孫要素に＞は効かない*/
.onsen_sec hgroup{
	margin-bottom: 50px;
}
.onsen_sec hgroup h2{
	margin-bottom: 10px;
	font-size: 24px;
}
.onsen_sec hgroup p{
	margin-bottom: 10px;
	font-size: 13px;
}

.onsen_concept{
	margin-bottom: 50px;
}
.onsen_concept h3,.onsen_kounou h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.onsen_concept p{
	
}
.onsen_kounou li{
	line-height: 30px;
}
/*温泉テキスト朝凪の湯*/
/*温泉テキスト夕映えの湯*/
.list{
	padding-top: 50px;
	list-style:circle;
	padding:0 25px;	
}



/* レスポンシブ対応スライダー */




.slide {
  background: #fff;
  overflow: hidden;
	position: relative;
	margin-bottom:80px;
	padding:30px 0;
}

.slide li {
  aspect-ratio: 266 / 140;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*slickの要素を上書きでliの余白を取る*/
.slick-slide {
  margin: 0 15px; /* 左右に15pxの余白を設定 */
}

.slick-list {
  margin: 0 -15px; /* 左と右に逆方向の余白を設定して相殺 */
}

.slide_arrow{
	display: block;
	width:70px;
	 aspect-ratio:1/1;/*幅と高さが一緒*/
	background-image: url("../img/arrow.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
	border: none;
	background-color: transparent;/*透明*/
	position: absolute;
		top:50%; 
	transform: translateY(-50%);
	z-index:1;
}

.prev_arrow{
	left:3%;
	transform:rotate(180deg) translateY(50%);/*180度回転*/
}
.next_arrow{
	right:3%;
}
@media screen and (max-width:1024px){
	.slide_arrow{
		width:60px;
	}
}
@media screen and (max-width:768px){
	.slide_arrow{
		width:40px;
	}
}
/* モーダルの背景 */
.modal {
  display: none; /* 初期は非表示 */
  position: fixed; /* スクロールしても画面に固定 */
  z-index: 1000; /* 前面に表示 */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* 内容が多い場合スクロール */
  background-color: rgba(0, 0, 0, 0.8); /* 半透明の黒背景 */
}

/* モーダル内の画像 */
.modal-content {
  display: block;
  max-width: 100%;
  max-height: 100vh;
/*  margin: 0 auto;*/ /* 上下に余白を作って中央寄せ */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}


 /* footer分の余白を作る */
