@charset "utf-8";
:root {
	--font-shippori: "Shippori Mincho", "Noto Sans JP", Meiryo, MS PGothic, arial, sans-serif;
	--font-size: 1.6rem;
	--noshiro-color: #f26da7;
	--futatsui-color: #39bfa9;
	--mitane-color: #f29018;
	--hover-color: #001655;
}

#contentsBlock{
	padding-bottom: 160px;
}

#keyVisual{
	background: url("../img/keyvisual_pc.jpg") no-repeat center bottom / cover;
}

#contentsBlock > section{
	margin-top: 100px;
}

#contentsBlock > section + section{
	margin-top: 160px;
}

[class^="sec_"] .icon-map{
	content: "";
	display: inline-block;
	background: url("../img/icon_map.png") no-repeat center / contain;
	width: 90px;
	height: 36px;
	margin-left: 24px;
}

[class^="sec_"] .leadBox{
	font-weight: 700;
	font-family: var(--font-shippori);
	text-align: left;
	line-height: 1.778;
}

[class^="sec_"] .leadBox p + p{
	margin-top: 1em;
}

[class^="sec_"] .flexBox{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	margin-top: 60px;
}

[class^="sec_"] .flexBox figure{
	max-width: 600px;
	width: 50%;
	aspect-ratio: 600/380;
}

[class^="sec_"] .flexBox .txtBox{
	text-align: left;
	font-family: var(--font-shippori);
	font-weight: 700;
	font-size: var(--font-sizei);
	line-height: 1.875;
	width: 50%;
}

[class^="sec_"] .ctn-photo{
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 64px;
}

[class^="sec_"] .ctn-photo li:nth-child(1){
	grid-column: 1 / 3;
}
[class^="sec_"] .ctn-photo li:nth-child(2){
	grid-column: 3 / 5;
}

[class^="sec_"] .ctn-photo figcaption{
	font-size: var(--font-sizei);
	margin-top: 8px;
}

[class^="sec_"] .ctn-summary{
	text-align: left;
	line-height: 1.875;
	font-size: var(--font-sizei);
	margin-top: 100px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 80px;
}

[class^="sec_"] .ctn-summary .facilityBox{
	grid-row: 1 / 3;
}

[class^="sec_"] .roomList{
	margin-top: 30px;
	border: solid 1px #bbb8cc;
	padding: 22px 15px;
}

[class^="sec_"] .roomList dt{
	width: 90px;
	text-align: justify;
	text-align-last: justify;
    margin-right: 30px;
}

[class^="sec_"] .roomList dd{
	margin-left: 0;
	flex: 1;
}

[class^="sec_"] .roomList dt::after{
	content: "／";
	margin-right: 5px;
    margin-left: 5px;
    position: absolute;
}

[class^="sec_"] .roomList > div{
	display: flex;
	margin-bottom: 6px;
}

[class^="sec_"] a.com-btn{
	font-size: 1.8rem;
	color: #fff;
	background: #4c4398;
	margin-top: 120px;
}
	[class^="sec_"] a.com-btn::after{
		background-image: url("/common/img/icon_arrow36.png");
	}

[class^="sec_"] a.com-btn:hover{
	color: #4c4398;
	background: #fff;
}
	[class^="sec_"] a.com-btn:hover::after{
		background-image: url("/common/img/icon_arrow_pur.png");
	}

[class^="sec_"] .ctn-link{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-top: 120px;
}

[class^="sec_"] .ctn-link .box{
	border: solid 2px #efedfa;
	border-radius: 8px;
	overflow: hidden;
}

[class^="sec_"] .ctn-link .ttl{
	background: #efedfa;
	color: #4c4398;
	font-size: 3.2rem;
	padding: 4px 10px;
}

[class^="sec_"] .ctn-link .ttl span{
	font-size: 0.75em;
}

[class^="sec_"] .ctn-link .linkList{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 40px 20px;
}

[class^="sec_"] .ctn-link .linkList a{
	display: block;
	box-shadow: 5px 5px 10px 0 rgba(0,0,0,0.1);
}

[class^="sec_"] .ctn-link .linkList a:hover{
	opacity: 0.8;
}

#ctn-map{
	margin-top: 120px;
	aspect-ratio: 1920/540;
	max-height: 540px;
}
	#ctn-map iframe{
		width: 100%;
		height: 100%;
	}



@media screen and (max-width: 1024px){
	[class^="sec_"] .ctn-summary{
		gap: 0 40px;
	}
}
@media screen and (max-width: 768px){
	#keyVisual{
		background-image: url("../img/keyvisual_sp.jpg");
	}
	#contentsBlock{
		padding-bottom: 100px;
	}
	#contentsBlock > section{
		margin-top: 60px;
	}
	#contentsBlock > section + section{
		margin-top: 100px;
	}
	
	[class^="sec_"] .hd01{
		margin-bottom: 18px;
	}
	
	[class^="sec_"] .icon-map{
		display: block;
		margin: 18px 0 0;
		width: 70px;
		height: 28px;
	}
	
	[class^="sec_"] .flexBox{
		flex-direction: column;
		gap: 20px;
		margin-top: 40px;
	}
	[class^="sec_"] .flexBox figure,
	[class^="sec_"] .flexBox .txtBox{
		font-size: 1.4rem;
		width: 100%;
	}
	[class^="sec_"] .flexBox figure{
		margin: 0 auto;
	}
	[class^="sec_"] .ctn-photo{
		grid-template-columns: repeat(2, 1fr);
		max-width: 590px;
		margin: 40px auto 0;
		gap: 15px 10px;
	}
	
	[class^="sec_"] .ctn-summary{
		margin-top: 40px;
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	[class^="sec_"] a.com-btn{
		margin-top: 60px;
	}
	
	[class^="sec_"] .roomList{
		padding: 12px;
	}
		[class^="sec_"] .roomList dt{
			width: calc(67px + 1em);
		}
/*		[class^="sec_"] .roomList dd{
			padding-left: calc(67px + 1em);
		}
*/	
	[class^="sec_"] .ctn-link{
		margin-top: 60px;
		grid-template-columns: 1fr;
	}
		[class^="sec_"] .ctn-link .linkList{
			flex-direction: column;
		}
		[class^="sec_"] .ctn-link .ttl{
			font-size: 2.2rem;
		}
	
	#ctn-map{
		margin-top: 60px;
		aspect-ratio: 750/480;
	}
}
@media screen and (max-width: 767px){
	:root {
		--font-size: 1.4rem;
	}
	[class^="sec_"] .swiper-nav{
		display: none;
	}
	[class^="sec_"] a.com-btn{
		font-size: 1.6rem;
	}
}
/* ------------------------------------------------------------------------ */

/* ankerContainer

/* ------------------------------------------------------------------------ */

.ankerContainer{
	font-family: var(--font-shippori);
	background: #fff2f8;
	padding: 24px 20px;
	margin-top: 80px;
}

.ankerContainer ul{
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 14px;
	max-width: 1300px;
	margin: 0 auto;
}

.ankerContainer ul li{
	position: relative;
}
	.ankerContainer li a{
		display: block;
		width: 100%;
		height: 100%;
	}
	.ankerContainer li a:hover{
		opacity: 0.8;
	}
		.ankerContainer li a img{
			width: 100%;
			height: auto;
		}

@media screen and (max-width: 768px){
}
@media screen and (max-width: 767px){
	.ankerContainer{
		margin-top: 40px;
		padding: 10px;
	}
	.ankerContainer ul{
		gap: 10px;
	}
}


/* ------------------------------------------------------------------------ */

/* スライダー設定

/* ------------------------------------------------------------------------ */
[class^="sec_"] .cnt-swiper{
	margin-top: 40px;
	position: relative;
	z-index: 1;
}

[class^="sec_"] .swiper-slide{
	max-width: 420px;
}

[class^="sec_"] .swiper-nav{
	position: absolute;
	top: calc(50% - 34px);
	left: 50%;
	width: 100%;
	max-width: 1592px;
	transform: translate(-50%,-50%);
	z-index: 10;
	padding: 0 20px;
}
	[class^="sec_"] .swiper-nav button{
		border: none;
		background: #fff;
		width: 56px;
		height: 56px;
		overflow: hidden;
		border-radius: 50%;
		cursor: pointer;
		display: flex;
		justify-content: center;
		align-items: center;
	}

[class^="sec_"] .swiper-nav button::before{
	content: "";
	display: block;
	width: 26px;
	height: 7px;
	background: url("/common/img/icon_arrow_pur_min.png") no-repeat center / contain;
	margin-bottom: 3px;
}

	[class^="sec_"] .swiper-nav button.swiper-button-prev::before{
		transform: scale(-1,1);
	}

[class^="sec_"] .cnt-swiper figcaption{
	font-size: var(--font-sizei);
	margin-top: 10px;
}




