@charset "UTF-8";

:root {
	--sv3-main-color: #286ed3;
	--sv3-color-section-bg:#eff4f8;

	--sv3-sp-base-fontsize: 14px;
}


/* -------------------------------------------------------------------
 *
 * 共通
 *
 *------------------------------------------------------------------- */
#sv3{
	font-size:18px;
	line-height:2;
	letter-spacing: .075em;
}
#sv3 table{
	border-spacing:0;
	border-collapse: collapse;
}
#sv3 img{
	vertical-align:top;
}
#sv3 p{
	padding:0;
	margin:0;
}
#sv3 p.r{
	text-align:right;
}
#sv3 p.c{
	text-align: center;
}

#sv3 ul, #sv3 ol{
	padding:0;
	margin:0;
	list-style: none;
}
#sv3 a{
	color:#286ed3;
}
#sv3 a i{
	vertical-align: -1px;
}
#sv3 a:hover{
	color: #ff5400;
}

#sv3 .base-section{
	padding:100px 0;
}
#sv3 .base-section-color2{
	background-color: var(--sv3-color-section-bg);
}

#sv3 .s-container{
	max-width:1200px;
	width: 100%;
	margin:0 auto;
	box-sizing: border-box;
}
#sv3 .s-container h2{
	text-align:center;
	font-size:36px;
	margin-bottom:30px;
}

#sv3 .sp-br{
	display: none;
}

@media screen and (max-width:840px) { 
	#sv3{
		font-size:16px;
	}
	#sv3 p{
		font-size:var(--sv3-sp-base-fontsize);
	}
	#sv3 .sp-br{
		display: block;
	}
	#sv3 .s-container{
		width:100%;
		padding-left:20px;
		padding-right:20px;
	}
	#sv3 .s-container h2{
		font-size:20px;
	}
}


/* -------------------------------------------------------------------
 *
 * ナビ
 *
 *------------------------------------------------------------------- */
#sv3 .nav-outline{
	/* nav.facilityの高さに合わせて調整する */
	height:76px;
}
#sv3 nav.facility{
	border-bottom:solid 1px #ccc;
}
#sv3 nav.facility .nav-container{
	max-width:1200px;
	width: 100%;
	margin: 0 auto;
}
#sv3 nav.facility ul{
	display: flex;
	justify-content:space-between;
	border-left:solid 1px #ccc;
	flex-wrap: wrap;
}
#sv3 nav.facility ul li{
	width:25%;
	box-sizing: border-box;
}
#sv3 nav.facility ul li a{
	display:block;
	width:100%;
	text-align:center;
	padding:20px 0px;
	font-size:18px;
	text-decoration:none;
	border-right:solid 1px #ccc;
	color:#333;
	font-weight: 800;
	transition: 0.5s;
}
#sv3 nav.facility ul li a:hover{
    background: #006dac;
	color:#fff;
}
#sv3 nav.facility ul li a.current{
    background: #006dac;
	color:#fff;
}

/* メニュー固定 */
#sv3 nav.facility.fixed{
	position: fixed;
	top:0;
	width:100%;
	left:0;
	background:#fff;
	z-index:1200;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
}
#sv3 nav.facility.fixed ul li a{
	padding:10px 0;
}


@media screen and (max-width:840px) { 
	#sv3 nav.facility .nav-container{
		width:100%;

	}
	#sv3 nav.facility ul{
		flex-wrap:wrap;
		border-left:0;
	}
	#sv3 nav.facility ul li{
		width:50%;
		box-sizing: border-box;
	}
	#sv3 nav.facility ul li a{
		font-size: var(--sp-base-fontsize);
		font-size:14px;
	}
	#sv3 nav.facility ul li:nth-child(-n+1) a,
	#sv3 nav.facility ul li:nth-child(-n+2) a{
		border-bottom:solid 1px #ccc;
	}
	#sv3 nav.facility ul li:nth-child(even) a{
		border-right:0;
	}

	#sv3 nav.facility ul::after{

	}


	/* メニュー固定 */
	#sv3 nav.facility.fixed{
		top:60px;
	}
	#sv3 nav.facility.fixed ul{

	}

	#sv3 nav.facility.fixed ul li{
		width: 25%;
	}

	#sv3 nav.facility.fixed ul li a{
		padding-top:8px;
		padding-bottom:8px;
		font-size:12px;

	}
	#sv3 nav.facility ul li:nth-child(even) a{
		border-right:solid 1px #ccc;
	}
}



/* -------------------------------------------------------------------
 *
 * 下層ページタイトル
 *
 *------------------------------------------------------------------- */
#sv3 .subpage-header-section{
	height:230px;
	position: relative;
	background:#006dac;
}
#sv3 .subpage-header-section .page-title-box{
	text-align:left;
	color:#fff;
	display: flex;
	height:230px;
	align-items: center;
}
#sv3 .subpage-header-section .subpage-title{
	display: inline-block;
	width:50%;
}
#sv3 .subpage-header-section .subpage-title h1{
	font-size:36px;
	line-height:1;
}
#sv3 .subpage-header-section .subpage-title h1 .facility-name{
	font-size:20px;
	padding-right:25px;
	padding-bottom:15px;
	margin-bottom:15px;
	border-bottom:solid 1px #399cd5;
}
#sv3 .subpage-header-section .subpage-title h1 .facility-name span.type{
	font-size:16px;
	display: block;
	margin-bottom:5px;
}
#sv3 .subpage-header-section .subpage-title h1 .facility-name span.name{
	display: block;
	font-size:28px;

}
#sv3 .subpage-header-section .subpage-title h1 .page-name{

}


@media screen and (max-width:840px) { 
	#sv3 .subpage-header-section{
		height:auto;
		padding:50px 0;
	}
	#sv3 .subpage-header-section .page-title-box{
		height:auto;
	}

	#sv3 .subpage-header-section .subpage-title{
		display: block;
		width:100%;
	}
	#sv3 .subpage-header-section .subpage-title h1{
		text-align:center;
		font-size:24px;
		margin:0 auto;
	}
	#sv3 .subpage-header-section .subpage-title h1 .facility-name{
		padding:0 0 20px 0;
	}
	#sv3 .subpage-header-section .subpage-title h1 .facility-name span.type,
	#sv3 .subpage-header-section .subpage-title h1 .facility-name span.name{
		text-align:center;
		display: block;
	}
	#sv3 .subpage-header-section .subpage-title h1 .facility-name span.type{
		font-size:16px;
		margin-bottom:5px;
	}
	#sv3 .subpage-header-section .subpage-title h1 .facility-name span.name{
		font-size:26px;
	}

}

/* -------------------------------------------------------------------
 *
 * swiper
 *
 *------------------------------------------------------------------- */
.swiper {
	user-select: none;
}

/* ページネーションのサイズと色 */
.header-slider-section 
.swiper-pagination-bullet {
	background-color: #333  !important;
	height: 12px !important;
	width: 12px !important; 
}

/* ---------------------------------
 * ヘッダ用
 *---------------------------------- */
.header-slider-section{
	width: 100%;
	position: relative;
	background: #fff;
}
.header-slider-section .header-swiper{
	user-select: none;
	overflow: hidden;
	width: 100%;
	height:600px;
}

.header-slider-section .header-swiper .swiper-slide {
	width:1200px;
	height:600px;
	position: relative;
}
.header-slider-section .header-swiper .swiper-slide .slide-copy-text{
	position: absolute;
	right:20px;
	top:20px;
	font-size:24px;
	padding:0px;
	font-weight:800;
	display: flex;
	width:240px;
	height:240px;
	border-radius:180px;
	text-align:center;
	align-items: center;
	justify-content: center;
	background:#f75961;
	color:#fff;
	line-height:1.5;
}
.header-slider-section .header-swiper .swiper-slide .caution-text{
	position: absolute;
	right:10px;
	bottom:5px;
	font-weight: 400;
	font-size:12px;
	color:#fff;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius:0;
	object-fit: cover;
}
@media screen and (max-width:840px) { 

	.header-slider-section .header-swiper{
		height:350px;
	}
	.header-slider-section .header-swiper .swiper-slide {
		width:100%;
		height:350px;
	}
	.header-slider-section .header-swiper .swiper-slide img{
		width:100%;
		height:350px;
		object-fit: cover;
	}

	.header-slider-section .header-swiper .swiper-slide .slide-copy-text{
		right:10px;
		top:auto;
		bottom:30px;
		font-size:14px;
		width:140px;
		height:140px;
		border-radius:180px;
	}


}


/* ------------------------------------
 * 名称
 * ------------------------------------ */
.facility-title-block{
	position: absolute;
	left:0;
	bottom:50px;
	z-index: 200;
	color:#333;
	left: calc((100% - 1200px) / 2);
	box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
}

.facility-title-block-inner{
	padding:30px 60px;
	text-align:left;
	background-color: #006dac;
	color:#fff;
	line-height:1;
}
.facility-title-block h1{
	font-size:42px;
	font-weight:800;
}
.facility-title-block h1 .facility-type{
	padding-bottom:12px;
	font-size:24px;
}

.facility-title-block .alpha-text{
	font-size:12px;
	margin-top:15px;
	letter-spacing: 4px;
	padding-top:15px;
	border-top:solid 1px #5aa0c9;
	text-align:right;

}

@media screen and (max-width:840px) { 
	.swiper {
		height:auto;
	}

	.facility-title-block{
		position: relative;
		left:0;
		bottom:0;
	}

	.facility-title-block-inner{
		padding:30px 20px;
	}
	.facility-title-block h1{
		font-size:26px;
		text-align: center;
	}
	.facility-title-block h1 .facility-type{
		font-size:16px;
		text-align: center;
	}
	.facility-title-block .alpha-text{
		text-align: center;
		
	}
}



/* -------------------------------------------------------------------
 *
 * サブページタイトル
 *
 *------------------------------------------------------------------- */
.section-title{
	padding-bottom:50px;
}
.section-title h2{
	text-align:center;
	font-size:36px;
}






/* -------------------------------------------------------------------
 *
 * トップページリード
 *
 *------------------------------------------------------------------- */
#sv3 .lead-section{

}
#sv3 .lead-section .copy-text{
	padding-bottom:50px;
}
#sv3 .lead-section .copy-text h2{
	font-size:36px;
	font-weight:800;
}

#sv3 .lead-section .copy-text .caution-text{
	font-size:12px;
	text-align:right;
}

#sv3 .lead-block{
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
}
#sv3 .lead-block .text-box{
	width:50%;
}
#sv3 .lead-block .text-box p{

}
#sv3 .lead-block .img-box{
	width:45%;
}
#sv3 .lead-block .img-box img{
	width:100%;
	border-radius:10px;
}

@media screen and (max-width:840px) { 
	#sv3 .lead-section{

	}
	#sv3 .lead-section .copy-text h2{
		font-size:20px;
	}
	#sv3 .lead-block{
		flex-direction: column-reverse;
	}
	#sv3 .lead-block .text-box{
		width:100%;
	}
	#sv3 .lead-block .img-box{
		width:100%;
		margin-bottom:1em;
	}
		
}


/* -------------------------------------------------------------------
 *
 * 特徴
 *
 *------------------------------------------------------------------- */
#sv3 .feature-section{
	background:var(--sv3-color-section-bg);
}
#sv3 .feature-list{
	display: flex;
	justify-content: space-between;
	flex-wrap:wrap;
	list-style-type: none;
	margin:0;
	padding:0;
}
#sv3 .feature-list li{
	width:31%;
	background:#fff;
	margin-bottom:45px;
	box-sizing: border-box;
	border-radius:5px;
	box-shadow: 0 0 10px 0 rgba(0,0,0,.25);

}
#sv3 .feature-list li .feature-img{

}
#sv3 .feature-list li .feature-img img{
	width:100%;
	line-height:1;
	border-radius:5px 5px 0 0;

}

#sv3 .feature-list li .feature-body{
	padding:20px;
}

#sv3 .feature-list li .feature-body h3{
	color:#006dac;
}
#sv3 .feature-list li.w50{
	width:49%;
}
#sv3 .feature-list li .feature-body p{
	color:#333;
	font-size:16px;
}
#sv3 .feature-list li .feature-body p .marker{
	color:#db4800;
	font-weight:600;
}
#sv3 .feature-list li .feature-body p.caution{
	font-size:12px;
	margin-top:5px;
}


#sv3 .feature-list li .feature-body .photo-list{
	display: flex;
	justify-content: space-between;
	width:95%;
	margin:20px auto 0 auto;
}

#sv3 .feature-list li .feature-body .photo-list li{
	width:48%;
	text-align:center;
	font-size:14px;
	margin:0;
	line-height:1.4;
	box-shadow: none;
	background:none;
}
#sv3 .feature-list li .feature-body .photo-list li img{
	width:100%;
	border-radius:3px;
	margin-bottom:8px;
}


#sv3 .feature-more-title{
	text-align:center;
	font-weight:800;
	font-size:32px;
	padding:50px 0;
	position: relative;
}
#sv3 .feature-more-title .fukidashi{
	position: relative;
	vertical-align: 23px;
	display: inline-block;
	letter-spacing:0;
	margin:0 0px 0 0;
	padding: 0 px;
	line-height:1;
	width: 60px;
	height: 60px;
	line-height:60px;
	text-align: center;
	color: #FFF;
	font-size: 18px;
	font-weight: bold;
	background: #006dac;
	border-radius: 50%;
	box-sizing: border-box;
	transform: rotate(-10deg);
	z-index: 1;
}
#sv3 .feature-more-title .fukidashi:before {
	content: "";
	position: absolute;
	bottom: -9px;
	right: -15px;
	margin-top: -15px;
	border: 15px solid transparent;
	border-left: 15px solid #006dac;
	z-index: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media screen and (max-width:840px) { 
	#sv3 .feature-list{

	}
	#sv3 .feature-list li{
		width:100%;
	}
	#sv3 .feature-list li.w50{
		width:100%;
	}

	#sv3 .feature-more-title{
		font-size:24px;
	}
	#sv3 .feature-list li .feature-body p{
		font-size:var(--sv3-sp-base-fontsize);
	}
	#sv3 .feature-list li .feature-body .photo-list{
		width:100%;
	}
	#sv3 .feature-list li .feature-body .photo-list li{
		font-size:12px;
	}
}





/* -------------------------------------------------------------------
 *
 * 住環境
 *
 *------------------------------------------------------------------- */
#sv3 .room-section{

}
#sv3 .room-section .lead-text{
	text-align:center;
}

@media screen and (max-width:840px) {
	#sv3 .room-section .lead-text{
		font-size: var(--sv3-sp-base-fontsize);
	}
}

/* -------------------------------------------------------------------
 * room-swiper
 *------------------------------------------------------------------- */
#sv3 .room-slider-block{
	margin-top:80px;
	width: 100%;
	position: relative;
	background: #fff;
	overflow: hidden;
}
#sv3 .room-slider-block .sp-guide-text{
	display: none;
}
#sv3 .room-slider-block .room-swiper {
	user-select: none;
	overflow: hidden;
	width: 100%;
}
#sv3 .room-slider-block .room-swiper .room-swiper-slide {
	width:600px;
	position: relative;
}
#sv3 .room-slider-block .room-swiper .room-swiper-slide img{
	border-radius:5px;
}

#sv3 .room-slider-block .room-swiper .room-swiper-slide .name{
	padding:8px 10px;
	text-align:center;
	border-bottom:solid 1px #000;
}
#sv3 .room-slider-block .room-swiper .room-swiper-slide .text{
	width:100%;
	padding:10px 10px;
	line-height:1.5;
	text-align:left;
	font-size:14px;
}
#sv3 .room-slider-block .room-swiper .swiper-button-prev{
	top:200px;
	left: calc(50% - 340px);
	color:#006dac;
}
.room-slider-block .room-swiper .swiper-button-next{
	top:200px;
	right: calc(50% - 340px);
	color:#006dac;
}
#sv3 .room-slider-block .room-swiper .swiper-button-next::after,
#sv3 .room-slider-block .room-swiper .swiper-button-prev::after{
	font-size:32px;
}


@media screen and (max-width:840px) { 
	#sv3 .room-slider-block .room-swiper .room-swiper-slide {
		width:80%;
	}
	#sv3 .room-slider-block .room-swiper .swiper-button-prev{
		top:120px;
		left: 5px;
	}
	.room-slider-block .room-swiper .swiper-button-next{
		top:120px;
		right: 5px;
	}
	#sv3 .room-slider-block .room-swiper .room-swiper-slide .text{
		padding:10px 0px;
		line-height:1.8;
		text-align:left;
		font-size:14px;
	}
	#sv3 .room-slider-block .sp-guide-text{
		display: block;
		text-align:center;
		font-size:12px;
		margin-bottom:5px;
		color:#888;
	}
	

}

/* -------------------------------------------------------------------
 * 間取り
 *------------------------------------------------------------------- */
#sv3 .madori-block{
	text-align:center;
	margin-top:100px;
}
#sv3 .madori-block a{
	display: inline-block;
	width:500px;
	background:#286ed3;
	color:#fff;
	padding:20px 0;
	border-radius:80px;
	transition: 1s;
	font-weight:600;
	font-size:24px;
}
#sv3 .madori-block a:hover{
	background:#488ef3;
}

@media screen and (max-width:840px) { 
	#sv3 .madori-block a{
		width:90%;
		padding:10px 0;
	}
}


/* -------------------------------------------------------------------
 * 設備一覧
 *------------------------------------------------------------------- */
#sv3 .room-table{
	margin-top:100px;
	border-top:solid 1px #ccc;
}
#sv3 .room-table th{
	width:150px;
	text-align:center;
	font-size:16px;
	font-weight: 600;
	padding:15px;
	border-bottom:solid 1px #ccc;
}
#sv3 .room-table td{
	background:#fff;
	padding:15px;
	font-size:16px;
	border-bottom:solid 1px #ccc;
}
#sv3 .room-table td ul.equip-list{
	display: flex;
	flex-wrap:wrap;
}
#sv3 .room-table td ul.equip-list li{
	margin-right:0.5em;
}
#sv3 .room-table td ul.equip-list li::after{
	content: "/";
	color:#888;
	margin-left:0.5em;
}
#sv3 .room-table td ul.equip-list li:last-child:after{
	content:"";
}


#sv3 .room-table td ul li i{
	color:var(--sv3-main-color);
	margin-right:5px;
}

@media screen and (max-width:840px) { 
	#sv3 .room-table th{
		width:100%;
		padding:3px 0;
		background:#29729d;
		color:#fff;
		display: block;
	}
	#sv3 .room-table td{
		width:100%;
		padding:10px;
		display: block;
	}

	#sv3 .room-table td ul.equip-list li{
		font-size:14px;
		margin-right: 10px;
		margin-bottom: 5px;
	}
}




/* -------------------------------------------------------------------
 *
 * サービス
 *
 *------------------------------------------------------------------- */
#sv3 .sv-section{
	background:var(--sv3-color-section-bg);
}


#sv3 .sv-layout{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#sv3 .sv-layout .body-box{
	width:60%;
}



#sv3 .body-box .sv-list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom:0px;
}
#sv3 .body-box .sv-list li{
	width:48%;
    background: #fff;
    margin-bottom: 25px;
    box-sizing: border-box;
    border-radius: 5px;
	padding:20px;
    box-shadow: 0 0 30px 0 rgba(0,0,0,.05);
}

#sv3 .body-box .sv-list li h3{
	color:#006dac;
}

#sv3 .body-box .sv-list li p{
	color:#333;
	font-size:16px;
}
#sv3 .body-box .sv-list li p .marker{
	color:#ff5400;
	font-weight:600;
}

#sv3 .sv-layout .img-box{
	width:35%;
}
#sv3 .sv-layout .img-box .sv-img-list{
	display: flex;
	justify-content: space-between;
}
#sv3 .sv-layout .img-box .sv-img-list li{
	width:49%;
}
#sv3 .sv-layout .img-box .sv-img-list li:first-child{
	margin-top:150px;
}
#sv3 .sv-layout .img-box .sv-img-list li img{
	border-radius:5px;
	width:100%;
}

#sv3 .sv-option-box{
	font-size:16px;
    background: #fff;
    margin-bottom: 25px;
    box-sizing: border-box;
    border-radius: 5px;
	padding:20px;
    box-shadow: 0 0 30px 0 rgba(0,0,0,.05);

}


#sv3 .sv-option-box h3{
	color:#006dac;
}

@media screen and (max-width:840px) { 

	#sv3 .sv-layout .body-box{
		width:100%;
	}
	#sv3 .sv-layout .img-box{
		width:100%;
	}
	#sv3 .body-box .sv-list li{
		width:100%;
	}
	#sv3 .body-box .sv-list li p{
		font-size:var(--sv3-sp-base-fontsize);
	}
	#sv3 .sv-layout .img-box .sv-img-list{
		width:90%;
		margin:0 auto;
	}
	#sv3 .sv-layout .img-box .sv-img-list li:first-child{
		margin-top:50px;
	}
}


/* -------------------------------------------------------------------
 *
 * ホーム概要
 *
 *------------------------------------------------------------------- */
#sv3 .about-section{

}
#sv3 .about-table{
	width:100%;
    border-top: 1px solid #e6e6e6;
}
#sv3 .about-table th,
#sv3 .about-table td{
	padding:15px 20px;
	font-size:16px;
    border-bottom: 1px solid #e6e6e6;
}
#sv3 .about-table th{
	width:150px;
	text-align:center;
	font-weight: 600;
}
#sv3 .about-table td{
}
#sv3 .about-table td ul.tag-list{
	display: flex;
	flex-wrap: wrap;
}
#sv3 .about-table td ul.tag-list li{
	border:solid 1px #006dac;
	background:#fff;
	color:#006dac;
	font-size:14px;
	padding:0px 12px;
	margin-right:5px;
	margin-bottom:5px;
}


@media screen and (max-width:840px) { 
	#sv3 .about-table th,
	#sv3 .about-table td{
		display: block;
		width:100%;
		font-size: var(--sv3-sp-base-fontsize);
	}
	#sv3 .about-table th{
		background: #29729d;
		padding:5px 0;
		color:#fff;

	}
	#sv3 .about-table td{
		background:#fff;
		padding:5px 10px 15px 10px;
	}
	
}


/* -------------------------------------------------------------------
 *
 * 料金
 *
 *------------------------------------------------------------------- */
#sv3 .js-scrollable{

}
#sv3 .sp-price-table-scroll{
	display: none;
}
#sv3 .price-table{
	width:1200px;
	border-top:solid 1px #ddd;
	border-left:solid 1px #ddd;
	border-right:solid 1px #ddd;
}
#sv3 .price-table th,
#sv3 .price-table td{
	border-bottom:solid 1px #ddd;
	padding:5px 10px;
	font-size:14px;
	text-align:center;
}
#sv3 .price-table th{
	background:#eee;
}
#sv3 .price-table td.total{
	font-weight: 800;
	font-size:18px;
}



#sv3 .price-list{
	display: flex;
	justify-content: space-between;
	list-style-type: none;
	margin:0;
	padding:0;

}
#sv3 .price-list li{
	width:15%;
	font-size:16px;
	text-align: center;
}
#sv3 .price-list li.sp-view{
	display: none;
}
#sv3 .price-list li div{
	padding:5px 0;
	border-bottom:solid 1px #ddd;
}
#sv3 .price-list li .room-name{
	background:#006dac;
	color:#fff;
	padding:5px 0;
	font-weight: 600;
	font-size:18px;
	text-align:center;
}
#sv3 .price-list li .room-price{
	border-top:solid 1px #333;
	border-bottom:solid 1px #333;
	color:#333;
	text-align:center;
	font-weight:800;
	font-size:18px;
	letter-spacing: 0;
	padding:10px 0;
}
#sv3 .price-list li .room-price .yen{
	font-size:14px;
}

#sv3 .price-list li dl {
	display: flex;
	justify-content: center;
	padding: 0;
	margin:0 auto;
}
#sv3 .price-list li dl dt {
	display: none;
	padding:0;
	margin:0;
}
#sv3 .price-list li dl dd {
	padding:0;
	margin:0;
	width:100%;
	text-align:center;
}

@media screen and (max-width:840px) { 
	#sv3 .sp-price-table-scroll{
		display: block;
		font-size:12px;
		color:#888;
		text-align:left;
	}
	#sv3 .price-list{
		flex-wrap: wrap;

	}
	#sv3 .price-list li{
		width:48%;
		box-sizing: border-box;
		margin-bottom:35px;
		border:solid 1px #ddd;
		border-radius:5px;
	}
	#sv3 .price-list li div{
		padding:1px 0;
		border-bottom:0;

	}
	
	#sv3 .price-list li.sp-view{
		display: block;
	}
	#sv3 .price-list li.pc-view{
		display: none;
	}

	#sv3 .price-list li dl{
		margin:0 auto;
	}
	#sv3 .price-list li dl dt,
	#sv3 .price-list li dl dd {
		line-height: 1.5;
		padding:3px 0;
	}

	#sv3 .price-list li dl dt {
		display: block;
		font-size:12px;
		border-radius:20px;
		width:100px;
	}
	#sv3 .price-list li dl dd {
		width:auto;
		width:100px;
		font-size:12px;
	}

	#sv3 .price-list li .room-name{
		font-size:14px;
		border-radius:5px 5px 0 0;
	}
	#sv3 .price-list li .room-price{
		font-size:18px;
	}
}





#sv3 .shikikin-table{
	width:100%;
}
#sv3 .shikikin-table th,
#sv3 .shikikin-table td{
	padding:20px 15px;

}

#sv3 .shikikin-table th{
	width:150px;
	font-weight: 600;
	text-align:center;
	background:#cbd6df;
}
#sv3 .shikikin-table td{
	background:#fff;
}
@media screen and (max-width:840px) { 

	#sv3 .shikikin-table th,
	#sv3 .shikikin-table td{
		display: block;
		width:100%;
	}
	#sv3 .shikikin-table td{
		text-align:center;	
	}

}




/* -------------------------------------------------------------------
 * その他費用
 *------------------------------------------------------------------- */
#sv3 .other-price-box{
	margin-top:30px;
}
#sv3 .other-price-box ul{

}
#sv3 .other-price-box ul li{
	font-size:16px;
	margin-left:1em;
	text-indent:-1em;
	line-height:1.5;
	margin-bottom:0.5em;
}
#sv3 .other-price-box ul li i{
	vertical-align: -1px;
	color:#006dac;
}


@media screen and (max-width:840px) { 
	#sv3 .other-price-box ul li{
		font-size:var(--sv3-sp-base-fontsize);
	}
}




/* -------------------------------------------------------------------
 *
 * アクセス
 *
 *------------------------------------------------------------------- */
#sv3 .access-map-section{

}
#sv3 .google-map-block{


}
#sv3 .google-map-block iframe{
	border:0;
	width:100%;
	height:600px;
}

#sv3 .access-route-block{
	margin-top:50px;
}
#sv3 .access-route-block h3{
	font-size:26px;
	text-align: center;
	margin-bottom:20px;
}
#sv3 .access-route-block h3 i{
	color:#ea4335;
	vertical-align: -1px;
}
#sv3 .access-route-block .route-table{
	width:100%;
	border-top:solid 1px #e0e0e0;
}
#sv3 .access-route-block .route-table th,
#sv3 .access-route-block .route-table td{
	padding:20px;
	font-size:16px;
	border-bottom:solid 1px #e0e0e0;
}
#sv3 .access-route-block .route-table th{
	width:200px;
	font-weight: 600;
	text-align:center;


}
#sv3 .access-route-block .route-table td{

}
#sv3 .access-route-block .route-table td dl{
	margin:0;
	padding:0;
}
#sv3 .access-route-block .route-table td dl dt{

}
#sv3 .access-route-block .route-table td dl dt span{
	border:solid 1px #e0e0e0;

	display: inline-block;
	font-weight:600;
	padding:1px 10px;
}
#sv3 .access-route-block .route-table td dl dd{
	padding:5px;
	margin:0;
}

@media screen and (max-width:840px) { 

	#sv3 .google-map-block {

	}
	#sv3 .google-map-block iframe{
		height:400px;
	}

	#sv3 .access-route-block {

	}
	#sv3 .access-route-block .route-table th,
	#sv3 .access-route-block .route-table td{
		width:100%;
		display: block;
	}
	#sv3 .access-route-block .route-table th{
	
	}
	#sv3 .access-route-block .route-table td{
		padding:20px 0px;
		font-size: var(--sv3-sp-base-fontsize);
	}

}



/* -------------------------------------------------------------------
 *
 * 周辺環境
 *
 *------------------------------------------------------------------- */
#sv3 .env-section{
	background:var(--sv3-color-section-bg);
}
#sv3 .env-section .lead-text{
	margin-bottom:50px;
}
#sv3 .env-section .lead-text p{
	text-align:center;
}
#sv3 .env-section .env-list{
	list-style-type: none;
	margin:0;
	padding:0;
	display: flex;
	justify-content: space-between;
	flex-wrap:wrap;
	width:100%;
}
#sv3 .env-section .env-list li{
	width:24%;
	text-align:center;
	margin-bottom:25px;
	background:#fff;
	padding:20px 0;
	border-radius:5px;
	font-size:16px;
}
#sv3 .env-section .env-list li .icon i{
	font-size:36px;
	color:#333;
}
#sv3 .env-section .env-list li .time{
	text-align:center;
	font-size:14px;
	color:#333;
}

@media screen and (max-width:840px) { 

	#sv3 .env-section .env-list li{
		width:49%;
		font-size: var(--sv3-sp-base-fontsize);
	}
	

}



/* -------------------------------------------------------------------
 *
 * よくある質問
 *
 *------------------------------------------------------------------- */
#sv3 .faq-block{
	width:100%;
	margin-bottom:50px;
}
#sv3 .faq-block .q-box,
#sv3 .faq-block .a-box{
	display:flex;
	justify-content: space-between;
}
#sv3 .faq-block .q-box .icon,
#sv3 .faq-block .a-box .icon{
	width:35px;
	text-align: center;
	font-size:32px;
	line-height: 1;
}
#sv3 .faq-block .q-box .q-body,
#sv3 .faq-block .a-box .a-body{
	flex:1;
}
#sv3 .faq-block .q-box{
	background:#006dac;
	color:#fff;
	border-radius:5px;
	padding:15px;
	font-weight: 800;
}
#sv3 .faq-block .a-box{
	padding:30px 15px;
	background:#edf9ff;
}


@media screen and (max-width:840px) { 

	#sv3 .faq-block .q-box,
	#sv3 .faq-block .a-box{
		padding:15px 10px;
	}
	#sv3 .faq-block .q-box .icon,
	#sv3 .faq-block .a-box .icon{
		width:25px;
		font-size:20px;
	}
	#sv3 .faq-block .q-box{
		font-size: var(--sv3-sp-base-fontsize);
		line-height: 1.4;
	}
}



/* ================================================================

問い合わせ

=================================================================== */
#sv3 .footer-contact-section{
	background:#006dac;
	padding:80px 0;
	color:#fff;
}
#sv3 .footer-contact-section h2{
	font-weight:800;
	margin-bottom:25px;
    text-align:center;
    font-size:32px;
}
#sv3 .footer-contact-section .lead-text{
	text-align: center;
	margin-bottom:50px;
	line-height:1;
}

#sv3 .footer-contact-section .contact-type-block{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#sv3 .footer-contact-section .contact-type-block .tel-box,
#sv3 .footer-contact-section .contact-type-block .mail-box{
	width:48%;
	background:#fff;
	border-radius:3px;
	box-sizing: border-box;
}

#sv3 .footer-contact-section .contact-type-block .tel-box .inner-box,
#sv3 .footer-contact-section .contact-type-block .mail-box .inner-box{
	padding:20px 30px;
}

#sv3 .footer-contact-section .contact-type-block .tel-box h3,
#sv3 .footer-contact-section .contact-type-block .mail-box h3{
	text-align:center;
	padding:10px 0;
	font-weight:800;
	border-bottom:solid 1px #ccc;
	font-size:24px;
	color:#333;
}
#sv3 .footer-contact-section .contact-type-block .tel-box .tel-text{
	text-align:center;	
	padding-top:15px;
}
#sv3 .footer-contact-section .contact-type-block .tel-box .tel-text a{
	font-family: Arial;
	font-weight: 800;
	font-size:42px;
	color:#333;
}
#sv3 .footer-contact-section .contact-type-block .mail-box .mail-text{
	text-align:center;
	padding:20px 20px;
}
#sv3 .footer-contact-section .contact-type-block .mail-box .mail-text a.contact-btn{
	display: block;
    background: -webkit-linear-gradient(top,#ffdb50,#fdc900);
    background: linear-gradient(top,#ffdb50,#fdc900);
    border-bottom: 1px solid #9b7b00;
    border-radius: 4px;
    color: #361e00;
    text-align: center;
    padding:10px 0px;
    text-decoration: none;
	font-size:26px;
	font-weight:800;
	transition : 1s;
}
#sv3 .footer-contact-section .contact-type-block .mail-box .mail-text a.contact-btn:hover{
    background: -webkit-linear-gradient(top,#ffeb60,#fed910);
    background: linear-gradient(top,#ffeb60,#fed910);
}


@media screen and (max-width:840px) { 
	#sv3 .footer-contact-section h2{
		font-size:24px;
		line-height:1.5;
	}
	#sv3 .footer-contact-section .lead-text{
		font-size:var(--sv3-sp-base-fontsize);
		line-height:1.5;
	}
	#sv3 .footer-contact-section .contact-type-block .tel-box,
	#sv3 .footer-contact-section .contact-type-block .mail-box{
		width:100%;
	}
	#sv3 .footer-contact-section .contact-type-block .tel-box h3,
	#sv3 .footer-contact-section .contact-type-block .mail-box h3{
		font-size:20px;
	}

	#sv3 .footer-contact-section .contact-type-block .tel-box .inner-box,
	#sv3 .footer-contact-section .contact-type-block .mail-box .inner-box{
		padding:10px 10px;
	}
	#sv3 .footer-contact-section .contact-type-block .tel-box{
		margin-bottom:20px;
	}
	#sv3 .footer-contact-section .contact-type-block .tel-box .tel-text{
		padding-top:0;

	}
	#sv3 .footer-contact-section .contact-type-block .tel-box .tel-text a{
		font-size:32px;
	}
	#sv3 .footer-contact-section .contact-type-block .mail-box .mail-text a.contact-btn{
		font-size:20px;
	}
}




/* ================================================================

固定：問い合わせ

=================================================================== */
#sv3 .pc-fixed-contact-block{
	line-height:1;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    z-index: 1000;
}
#sv3 .contact-balloon{
	position: relative;
	padding: 15px 0px;
	width:90%;
	margin:0 auto;
	border-radius:50px;
	text-align:center;
	color:#fff;
	font-weight: 600;
	font-size:16px;
	line-height:1.5;
	background-color: #f75961;
	margin-bottom:15px;
	box-shadow: rgba(47, 47, 47, 0.3) 0px 2px 8px 0px;
}
#sv3 .contact-balloon span{
	/* background: linear-gradient(transparent 11%, #0062b3 66%); */
}
#sv3 .contact-balloon::before{
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	left: 40px;
	bottom: -10px;
	border-top: 15px solid #f75961;
	border-right: 15px solid transparent;
	border-left: 15px solid transparent;
}
#sv3 .pc-fixed-contact-block .contact-block{
    box-shadow: rgba(47, 47, 47, 0.3) 0px 2px 8px 0px;
	background:#fff;
	border-radius:4px;
}
#sv3 .pc-fixed-contact-block .contact-block .title-box{
    border-radius: 5px 5px 0 0;
    background: -webkit-linear-gradient(top,#ffdb50,#fdc900);
    font-weight: 800;
    color: #361e00;
    font-size: 20px;
	padding:15px 0;
    text-align: center;
}
#sv3 .pc-fixed-contact-block .contact-block .mail-box{

}
#sv3 .pc-fixed-contact-block .contact-block .box-inner{
	padding:15px;
}
#sv3 .pc-fixed-contact-block .contact-block .tel-box{
	text-align:center;
	margin-bottom:20px;
}
#sv3 .pc-fixed-contact-block .contact-block .tel-box a{
	color:#333;
	font-size:32px;
	font-family: "Arial";
	font-weight:800;
	text-decoration:none;
}
#sv3 .pc-fixed-contact-block .contact-block .tel-box a:hover{
	text-decoration:none;
}
#sv3 .pc-fixed-contact-block .contact-block .tel-box a .tel-label{
	display:iline-block;
	background:#333;
	color:#fff;
	padding:2px 5px;
	border-radius:3px;
	margin-right:5px;
	vertical-align:8px;
	font-size:14px;
	font-weight:600;
}
#sv3 .pc-fixed-contact-block .contact-block .mail-box .mail-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 15px 0px;
	line-height:1;
    overflow: hidden;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
	border-right: 1px solid #9b7b00;
	border-bottom: 1px solid #9b7b00;
	background: -webkit-linear-gradient(top,#ffdb50,#fdc900);
	display: block;
	color:#fff;
	text-align:center;
	font-size:20px;
	border-radius:5px;
	color: #361e00;
	font-weight:800;
}
#sv3 .pc-fixed-contact-block .contact-block .mail-box .mail-btn:hover {
	text-decoration:none;
	background: -webkit-linear-gradient(top,#ffe373,#ffd222);
}
#sv3 .pc-fixed-contact-block .contact-block .mail-box .mail-btn::before {
    display: block;
    position: absolute;
    top: -50%;
    left: -30%;
    transform: rotate(30deg);
    width: 100px;
    height: 150px;
    content: '';
    background-image: linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
    background-image: -webkit-gradient(linear, left bottom, right bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 0)));
    animation: animation-mail-btn 3s infinite linear;
}


@keyframes animation-mail-btn {
    17% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}

#sv3 .pc-fixed-blank-room-block{
	line-height:1;
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 200px;
    z-index: 1000;
	font-size:16px;
}






/* -------------------------------------------------------------------
 *
 * 固定：スマホ用
 *
 *------------------------------------------------------------------- */
#sv3 .sp-fixed-contact-block{
	display: none;
	line-height:1;
    position: fixed;
    bottom: 0px;
    width: 100%;
    z-index: 1000;
}
#sv3 .sp-fixed-contact-block .contact-block{
    box-shadow: rgba(47, 47, 47, 0.3) 0px 2px 8px 0px;
	background:#fff;
	box-sizing: border-box;
	padding:5px 10px 5px 5px;
}

#sv3 .sp-fixed-contact-block .contact-block ul{
	display: flex;
	justify-content: space-between;
}
#sv3 .sp-fixed-contact-block .contact-block ul li{

}

#sv3 .sp-fixed-contact-block .contact-block ul li.title{
	width:100px;
	text-align:center;
	font-size:12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color:#f75961;
	font-weight: 800;
}

#sv3 .sp-fixed-contact-block .contact-block ul li.tel{
	width:50px;
}
#sv3 .sp-fixed-contact-block .contact-block ul li.tel a{
	width:40px;
	height:40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size:23px;
	background:#f75961;
	border-right: 1px solid #d73941;
	border-bottom: 1px solid #d73941;
	color:#fff;
	border-radius:5px;
}

#sv3 .sp-fixed-contact-block .contact-block ul li.mail{
	flex:1;
}
#sv3 .sp-fixed-contact-block .contact-block ul li.mail a{
    display: flex;
    justify-content: center;
    align-items: center;
	height:40px;
	line-height:1;
    border-radius: 5px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
	border-right: 1px solid #9b7b00;
	border-bottom: 1px solid #9b7b00;
	background: -webkit-linear-gradient(top,#ffdb50,#fdc900);
	color:#fff;
	text-align:center;
	font-size:16px;
	border-radius:5px;
	color: #361e00;
	font-weight:800;
}




@media screen and (max-width:840px) { 
	#sv3 .pc-fixed-contact-block{
		display: none;
	}

	#sv3 .sp-fixed-contact-block{
		display: block;
	}

}






