@charset "UTF-8";

:root {
	--sv3-main-color: #286ed3;
	/* --sv3-color-section-bg:#eff4f8; */
	--sv3-color-section-bg:#f8f5ef;

	--sv3-sp-base-fontsize: 14px;

	--sv3-table-th-color:#f8f5ee;
	--sv3-table-border-color:#cdc3a1;

	--sv3-title-color:#ff5a63;
}


/* -------------------------------------------------------------------
 *
 * 共通
 *
 *------------------------------------------------------------------- */
#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 .base-section{
		padding:50px 0;
	}
}


/* -------------------------------------------------------------------
 *
 * ナビ
 *
 *------------------------------------------------------------------- */
#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: #f75961;
	color:#fff;
}
#sv3 nav.facility ul li a.current{
    background: #f75961;
	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:25%;
		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{
		content:"";
		display: block;
		width:33%;
	}


	/* メニュー固定 */
	#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-over-text-box{
	position: absolute;
	left:0px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 200;
	color:#333;
}
.header-slider-section .header-swiper .swiper-slide .slide-over-text-box .inner-box{
	background-color: #ffffffdd;
	font-weight:800;
	padding:20px 30px;
}
.header-slider-section .header-swiper .swiper-slide .slide-over-text-box .inner-box .title{
	font-size:32px;
	margin-bottom:10px;
}
.header-slider-section .header-swiper .swiper-slide .slide-over-text-box .inner-box p{
	font-size:20px;
	line-height:1.5;
}




/* 施設名 */
.header-slider-section .header-swiper .swiper-slide .slide-facility-name-box{
	position: absolute;

	top: 50%;
	transform: translateY(-50%);

	z-index: 200;
	color:#333;
}
.header-slider-section .header-swiper .swiper-slide .slide-facility-name-box .facility-title-block-inner{
	padding:30px 60px;
	text-align:left;
	background-color: #ffffffc2;
	color:#333;
	line-height:1;
}
.header-slider-section .header-swiper .swiper-slide .slide-facility-name-box h1{
	font-size:42px;
	font-weight:800;
}
.header-slider-section .header-swiper .swiper-slide .slide-facility-name-box .facility-type{
	padding-bottom:12px;
	font-size:24px;
}

.header-slider-section .header-swiper .swiper-slide .slide-facility-name-box .alpha-text{
	font-size:12px;
	margin-top:15px;
	letter-spacing: 4px;
	padding-top:15px;
	border-top:solid 1px #333;
	text-align:right;

}
.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:180px;
	height:180px;
	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:#333;
}

.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;
	}

	.header-slider-section .header-swiper .swiper-slide .slide-facility-name-box{
		width:100%;

	}
	.header-slider-section .header-swiper .swiper-slide .slide-facility-name-box .facility-title-block-inner{
		padding:20px 30px;
	}
	.header-slider-section .header-swiper .swiper-slide .slide-facility-name-box h1{
		font-size:24px;
		text-align:center;
	}
	.header-slider-section .header-swiper .swiper-slide .slide-facility-name-box .facility-type{
		font-size:16px;
		margin:0;
		line-height:1;
		padding-bottom:5px;
		text-align:center;
	}
	.header-slider-section .header-swiper .swiper-slide .slide-facility-name-box .alpha-text{
		margin-top:10px;
		padding-top:10px;
		border-top:solid 1px #333;
		text-align:center;
	}

	.header-slider-section .header-swiper .swiper-slide .slide-over-text-box .inner-box .title{
		font-size:18px;
		line-height:1.2;
	}
	.header-slider-section .header-swiper .swiper-slide .slide-over-text-box .inner-box p{
		font-size:20px;
		line-height:1.5;
	}
	.header-slider-section .header-swiper .swiper-slide .slide-over-text-box .inner-box p br{
		display: none;
		font-size:14px;
	}
	
}


/* ------------------------------------
 * 名称
 * ------------------------------------ */
.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: #fff;
	color:#333;
	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 #333;
	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;
}

@media screen and (max-width:840px) { 
	.section-title{
		
	}
}


/* -------------------------------------------------------------------
 *
 * ページ内リンク
 *
 *------------------------------------------------------------------- */
#sv3 .page-inner-nav-block{
	padding-top:30px;
	padding-bottom:30px;
}
#sv3 .page-inner-nav-block ul{
	display: flex;
	justify-content: center;

}
#sv3 .page-inner-nav-block ul li{
	margin-right:10px;
	display: flex;
	align-content: center;
	align-items: center;
	align-items: center;
}
#sv3 .page-inner-nav-block ul li::after{
	content: "|";
	color:#aaa;
	font-size:12px;
	margin-left:10px;
}
@media screen and (max-width:840px) { 

	#sv3 .page-inner-nav-block ul{
		flex-wrap:wrap;
	}

	#sv3 .page-inner-nav-block ul li{

	}

}




/* -------------------------------------------------------------------
 *
 * トップページリード
 *
 *------------------------------------------------------------------- */
#sv3 .lead-section{

}
#sv3 .lead-section .lead-header{
	margin-bottom:50px;
}
#sv3 .lead-section .lead-header h1{
	text-align:center;
	line-height:1.4;
}
#sv3 .lead-section .lead-header h1 span{
	font-size:18px;
}

#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;
}


#sv3 .lead-section .blank-room-table{
	width:700px;
	margin:0 auto;
	border-top: solid 1px var(--sv3-table-border-color);
}
#sv3 .lead-section .blank-room-table th,
#sv3 .lead-section .blank-room-table td{
	padding:15px;
	border-bottom: solid 1px var(--sv3-table-border-color);
	text-align:center;
}
#sv3 .lead-section .blank-room-table th{
	background:var(--sv3-table-th-color);
}
#sv3 .lead-section .blank-room-caution{
	font-size:12px;
	color:#555;
	text-align:center;
}

/* 特徴タグリスト
-------------------------------------- */
#sv3 .lead-section .tag-box{
	padding-top:30px;
}

#sv3 .lead-section .tag-list{
	display: flex;
	flex-wrap:wrap;

}
#sv3 .lead-section .tag-list li{
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: 0;
	padding:5px 5px;
	/* background-color: #f8f5ef;*/
	width:90px;
	height:50px;
	font-weight:600;
	color:#75a102;
	border:solid 2px #8bbf00;
	background:#f6ffeb;
	border-radius:5px;
	line-height:1.2;

	margin-right:5px;
	text-align:center;
	font-size:14px;
	margin-bottom:10px;
}

/* お知らせ
-------------------------------------- */
#sv3 .lead-section .info-block{
	margin-top:50px;
	line-height:1.5;
}
#sv3 .lead-section .info-block h2{
	text-align:center;
	font-size:20px;
}
#sv3 .lead-section .info-block .news-list{

	border-top:solid 1px var(--sv3-table-border-color);
	
}
#sv3 .lead-section .info-block .news-list li{
	border-bottom:solid 1px var(--sv3-table-border-color);
}
#sv3 .lead-section .info-block .news-list li .news-line{
	display: flex;
	align-items: center;
	padding:10px 0;

}
#sv3 .lead-section .info-block .news-list li .news-line .date{
	/*background-color: var(--sv3-table-th-color); */
	text-align:center;
	padding:8px 10px;
	margin-right:10px;
}
#sv3 .lead-section .info-block .news-list li .news-line .title{
	flex:1;
}


@media screen and (max-width:840px) { 
	#sv3 .lead-section{
		padding-top:100px;
	}
	#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 .lead-section .lead-header h1{
		font-size:28px;
	}
	#sv3 .lead-section .lead-header h1 span{
		font-size:16px;
	}

	#sv3 .lead-section .tag-list{
		justify-content: space-between;
	}

	#sv3 .lead-section .tag-list li{
		margin:0 0 5px 0;
		width:28%;

	}

	#sv3 .lead-section .info-block .news-list li .news-line{
		flex-wrap:wrap;
	
	}
	#sv3 .lead-section .info-block .news-list li .news-line .date{
		width:100%;
		padding:0;
		text-align:left;
	}
	#sv3 .lead-section .info-block .news-list li .news-line .title{
		width:100%;
		text-align:left;
	}

	#sv3 .lead-section .blank-room-table{
		width:100%;
	}
	#sv3 .lead-section .blank-room-table th,
	#sv3 .lead-section .blank-room-table td{
		padding:15px 5px;
		font-size:14px;
		text-align:left;
		line-height:1.5;
	}
	#sv3 .lead-section .blank-room-table th{
		width:90px;
		text-align:center;
	}
	#sv3 .lead-section .blank-room-caution{
		font-size:10px;
		text-align:left;
		line-height:1.5;
	}


}


/* -------------------------------------------------------------------
 *
 * 特徴
 *
 *------------------------------------------------------------------- */
#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); */
	position: relative;
}
#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:#ff5a63;


}
#sv3 .feature-list li.w100{
	width:100%;
}
#sv3 .feature-list li.w50{
	width:49%;
}
#sv3 .feature-list li.w100 .feature-body h3{
	font-size:28px;
	margin-bottom:25px;
	line-height:1.5;
}

#sv3 .feature-list li .feature-body p{
	color:#333;
	font-size:18px;
}
#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 .rel-link{
	text-align: right;
}
#sv3 .feature-list li .feature-body .rel-link a{
	font-size: 16px;
}


#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);
}


#sv3 .first-fukidashi{
	position: absolute;
	left:-35px;
	top:-45px;

	display: inline-block;
	letter-spacing:0;
	margin:0 0 0 0;
	padding: 0 px;
	line-height:1;
	width: 120px;
	height: 120px;
	line-height:120px;
	text-align: center;
	color: #FFF;
	font-size: 28px;
	font-weight: bold;
	background: #f75961;
	border-radius: 50%;
	box-sizing: border-box;
	transform: rotate(-10deg);
	z-index: 1;
}


#sv3 .feature-list li .feature-body .koroyawa-flex,
#sv3 .feature-list li .feature-body .ict-flex{
	display: flex;
	justify-content: space-between;
}
#sv3 .feature-list li .feature-body .koroyawa-flex .text-box,
#sv3 .feature-list li .feature-body .ict-flex .text-box{
	width:55%;
}
#sv3 .feature-list li .feature-body .koroyawa-flex .text-box .sub-title,
#sv3 .feature-list li .feature-body .ict-flex .text-box .sub-title{
	color: #ff5a63;
	font-weight: 800;
	font-size:20px;
	line-height:1.5;
}

#sv3 .feature-list li .feature-body .koroyawa-flex .img-box,
#sv3 .feature-list li .feature-body .ict-flex .img-box{
	width:42%;
	margin-top:8px;
}


@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 .first-fukidashi{
		width: 60px;
		height: 60px;
		line-height:60px;
		font-size: 16px;
		left:-15px;
		top:-20px;
	}

	#sv3 .feature-list li.w100 .feature-body h3{
		font-size:18px;
	}


	#sv3 .feature-list li .feature-body .koroyawa-flex,
	#sv3 .feature-list li .feature-body .ict-flex{
		flex-wrap:wrap;
		flex-direction:column-reverse;
	}
	#sv3 .feature-list li .feature-body .koroyawa-flex .text-box,
	#sv3 .feature-list li .feature-body .ict-flex .text-box{
		width:100%;
	}
	#sv3 .feature-list li .feature-body .koroyawa-flex .img-box,
	#sv3 .feature-list li .feature-body .ict-flex .img-box{
		width:100%;
		margin-bottom:20px;
		margin-top:0;
	}
	#sv3 .feature-list li .feature-body .koroyawa-flex .text-box .sub-title,
	#sv3 .feature-list li .feature-body .ict-flex .text-box .sub-title{
		font-size:16px;
	}
}





/* -------------------------------------------------------------------
 *
 * 住環境
 *
 *------------------------------------------------------------------- */
#sv3 .room-section{

}
#sv3 .room-section .lead-text{
	text-align:center;
}

#sv3 .room-section .movie-block{
	width:800px;
	padding:20px 40px 30px 40px;
	border-radius:3px;
	margin:50px auto 10px auto;
	text-align:center;
	background: var(--sv3-color-section-bg);
}
#sv3 .room-section .movie-block iframe{
	width:100%;
	height:400px;
}
#sv3 .room-section .movie-block h3{
	text-align:center;
	margin-top:10px;
	margin-bottom:20px;
	font-size:28px;
}

#sv3 .room-section .movie-block iframe{

}

@media screen and (max-width:840px) {
	#sv3 .room-section .lead-text{
		font-size: var(--sv3-sp-base-fontsize);
	}


	#sv3 .room-section .movie-block{
		width:100%;
		padding:10px 10px 20px 10px;
	}
	#sv3 .room-section .movie-block iframe{
		height:300px;
	}
	#sv3 .room-section .movie-block h3{
		font-size:18px;
	}
	
}

/* -------------------------------------------------------------------
 * 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:800px;
	position: relative;
	font-size: 16px;
}
#sv3 .room-slider-block .room-swiper .room-swiper-slide img{

}

#sv3 .room-slider-block .room-swiper .room-swiper-slide .name{
	padding:8px 10px;
	text-align:center;
}
#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:50%;
	left: calc(50% - 425px);
	color:#555;
	background:#ffffffda;
	width:50px;
	height:50px;
	border-radius:30px;
	box-shadow: 0px 3px 3px #888;
	transition: 1s;

}
#sv3 .room-slider-block .room-swiper .swiper-button-next{
	top:50%;
	right: calc(50% - 425px);
	color:#555;
	background:#ffffffda;
	width:50px;
	height:50px;
	border-radius:30px;
	box-shadow: 0px 3px 3px #888;
	transition: 1s;
}
#sv3 .room-slider-block .room-swiper .swiper-button-prev:hover,
#sv3 .room-slider-block .room-swiper .swiper-button-next:hover{
	background:#ffffff;
}

#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:50%x;
		left: 5px;
	}
	.room-slider-block .room-swiper .swiper-button-next{
		top:50%;
		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 var(--sv3-table-border-color);
}
#sv3 .room-table th{
	width:150px;
	text-align:center;
	font-size:16px;
	font-weight: 600;
	padding:15px;
	background-color: var(--sv3-table-th-color);
	border-bottom:solid 1px var(--sv3-table-border-color);
}
#sv3 .room-table td{
	background:#fff;
	padding:15px;
	font-size:16px;
	border-bottom:solid 1px var(--sv3-table-border-color);
}
#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;
		line-height:1.5;
	}
}




/* -------------------------------------------------------------------
 *
 * サービス
 *
 *------------------------------------------------------------------- */
#sv3 .sv-section{
	background:var(--sv3-color-section-bg);
}

#sv3 .sv-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#sv3 .sv-list li{
	background:#fff;
	background: #fff;
    margin-bottom: 45px;
    box-sizing: border-box;
    border-radius: 5px;
    /* box-shadow: 0 0 10px 0 rgba(0,0,0,.25); */
    position: relative;
}
#sv3 .sv-list li.w30{
	width:30%;
}

#sv3 .sv-list li.w50{
	width:48%;
}
#sv3 .sv-list li.w100{
	width:100%;
}
#sv3 .sv-list li.color2{
	background:#fff6eb;
}

#sv3 .sv-list li{

}
#sv3 .sv-list li .sv-img{

}
#sv3 .sv-list li .sv-img img{
	width:100%;
	border-radius:5px 5px 0 0;
}

#sv3 .sv-list li .sv-body{
	padding:20px;
}

#sv3 .sv-list li .sv-body h3{
	color:#ff5a63;
	line-height:1.5;
	font-size:1.2;
}

#sv3 .sv-list li .sv-body p{
	color:#333;
	font-size:18px;
}

/*

#sv3 .sv-layout{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#sv3 .sv-layout .body-box{
	width:60%;
}

#sv3 .sv-layout .body-box.w100{
	width: 100%;
}

#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;
}
#sv3 .body-box .sv-list li.w100{
	width:100%;
}

#sv3 .body-box .sv-list li h3{
	color:var(--sv3-title-color);
}

#sv3 .body-box .sv-list li.color2{
	box-shadow: none;
	background: var(--sv3-color-section-bg);
}

#sv3 .body-box .sv-list li p{
	color:#333;
	font-size:18px;
}
#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-layout .img-box .meal-img-list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#sv3 .sv-layout .img-box .meal-img-list li{
	width:100%;
	margin-left:30px;
}
#sv3 .sv-layout .img-box .meal-img-list li:first-child{
	margin-right:30px;
	margin-left:0;
	margin-bottom:20px;
}
#sv3 .sv-layout .img-box .meal-img-list li img{
	border-radius:5px;
	width:100%;
}
*/

#sv3 .event-photo-list{
	display: flex;
	justify-content: space-between;
}
#sv3 .event-photo-list li{
	width:24%;
	font-size:16px;
	text-align:center;
}
#sv3 .event-photo-list li img{
	width:100%;
	border-radius:3px;
	margin-bottom:5px;
}



#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 h3{
		line-height:1.5;
	}

	#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 .event-photo-list{
		flex-wrap:wrap;
	}
	#sv3 .event-photo-list li{
		width:48%;
	}


	#sv3 .sv-list li.w30{
		width:100%;
	}
	
	#sv3 .sv-list li.w50{
		width:100%;
	}


	
	#sv3 .sv-list li .sv-body{
		padding:20px;
	}
	
	#sv3 .sv-list li .sv-body h3{
		font-size:18px;
	}
	
	#sv3 .sv-list li .sv-body p{
		font-size:14px;
	}
	

}


/* -------------------------------------------------------------------
 *
 * ホーム概要
 *
 *------------------------------------------------------------------- */
#sv3 .about-section{

}
#sv3 .about-table{
	width:100%;
    border-top: 1px solid var(--sv3-table-border-color);
}
#sv3 .about-table th,
#sv3 .about-table td{
	padding:15px 20px;
	font-size:16px;
    border-bottom: 1px solid var(--sv3-table-border-color);
}
#sv3 .about-table th{
	width:150px;
	text-align:center;
	background-color: var(--sv3-table-th-color);
	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 #f75961;
	background:#fff;
	color:#f75961;
	font-size:14px;
	padding:0px 12px;
	margin-right:5px;
	margin-bottom:5px;
}


/* -------------------
 医療対応
---------------------- */
#sv3 .iryo-taio-list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#sv3 .iryo-taio-list li{
	width:22%;
	font-size:16px;
	background:#f8f5ee;
	margin-bottom:10px;
	padding:5px 10px;
}

#sv3 .iryo-taio-caution-list {

}
#sv3 .iryo-taio-caution-list li {
    font-size: 16px;
    margin-left: 1em;
    text-indent: -1em;
    line-height: 1.5;
    margin-bottom: 0.5em;
}


/* -------------------
 協力医療機関
---------------------- */
#sv3 .iryo-table{
	width:100%;
    border-top: 1px solid #cdc3a1;
	margin-bottom:30px;
}
#sv3 .iryo-table th,
#sv3 .iryo-table td{
	padding:15px 20px;
	font-size:16px;
    border-bottom: 1px solid #cdc3a1;
}
#sv3 .iryo-table th{
	width:120px;
	text-align:center;
	background:#f8f5ee;
}

@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 .iryo-table{
	}
	#sv3 .iryo-table th,
	#sv3 .iryo-table td{
		padding:10px 10px;
		line-height:1.5;
	}
	#sv3 .iryo-table th{
		width:100px;
	}

}


/* -------------------------------------------------------------------
 *
 * 料金
 *
 *------------------------------------------------------------------- */
 #sv3 .js-scrollable{

 }
 #sv3 .sp-price-table-scroll{
	 display: none;
 }
 #sv3 .price-table{
	 width:1200px;
	 border-top:solid 1px var(--sv3-table-border-color);
 }
 #sv3 .price-table th,
 #sv3 .price-table td{
	 border-bottom:solid 1px var(--sv3-table-border-color);
	 padding:10px 10px;
	 font-size:14px;
	 text-align:center;
 }
 #sv3 .price-table th{
	 background:var(--sv3-table-th-color);
 }
 #sv3 .price-table td.total{
	 font-weight: 800;
	 font-size:16px;
 }

 #sv3 .price-table .fixed-item{
	position: sticky;
	left: 0;

}


/* ---------------------------
 介護保険
------------------------------ */
#sv3 .hoken-table{
	width:1200px;
	border-top:solid 1px var(--sv3-table-border-color);
}
#sv3 .hoken-table th,
#sv3 .hoken-table td{
	border-bottom:solid 1px var(--sv3-table-border-color);
	padding:8px 10px;
	font-size:16px;
	text-align:center;
}
#sv3 .hoken-table th{
	background:var(--sv3-table-th-color);
}
#sv3 .hoken-table td.total{
	font-weight: 800;
	font-size:18px;
}
#sv3 .hoken-table .fixed-item{
   position: sticky;
   left: 0;
}


@media screen and (max-width:840px) { 
	#sv3 .sp-price-table-scroll{
		display: block;
		font-size:12px;
		color:#888;
		text-align:left;
	}

	#sv3 .hoken-table{
		width:600px;
	}
	#sv3 .hoken-table .fixed-item{
		width:80px;
		box-shadow: 0 0 3px #aaa;
	}
	#sv3 .hoken-table th,
	#sv3 .hoken-table td{
		padding:5px 5px;
		width:130px;
		font-size:var(--sv3-sp-base-fontsize);
	}
}




/* -------------------------
  入居時費用
---------------------------- */
#sv3 .shikikin-table{
	width:100%;
	border-top:solid 1px var(--sv3-table-border-color);
}
#sv3 .shikikin-table th,
#sv3 .shikikin-table td{
	padding:20px 15px;
	border-bottom:solid 1px var(--sv3-table-border-color);

}

#sv3 .shikikin-table th{
	width:150px;
	font-weight: 600;
	text-align:center;
	background-color:#edebe6;
}
#sv3 .shikikin-table td{
	background:#fff;
}
#sv3 .shikikin-table td .pr-label{
	display: inline-block;
	color:#f75961;
	border:solid 1px #f75961;
	font-size:16px;
	padding:0 10px;
}

@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:#7d7d7d;
}


@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);
}

#sv3 .footer-contact-section .contact-facility-block{
	margin-top:35px;
	background:#fff;
	border-radius:3px;
	padding:30px;
	color:#333;
}
#sv3 .footer-contact-section .contact-facility-block h3{
	border-bottom:solid 1px #ddd;
	padding-bottom:10px;
	margin-bottom:10px;
}


@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;
	display: none;
}
#sv3 .pc-fixed-contact-block.isShow{
	display: block;
}
#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;
	}

}





/* -------------------
 医療対応
---------------------- */
#sv3 .iryo-section{
	background-color:var(--sv3-color-section-bg);
}
#sv3 .iryo-taio-list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#sv3 .iryo-taio-list li{
	width:22%;
	font-size:16px;
	background:#fff;
	margin-bottom:10px;
	padding:8px 10px;
}
#sv3 .iryo-taio-list li dl{
	display: flex;
	justify-content: space-between;
	margin:0;
	padding:0;
	align-content: center;
	align-items: center;
}

#sv3 .iryo-taio-list li dl dt{
	width:35px;
	margin:0;
	padding:0;
	line-height:1;
	text-align:left;
}
#sv3 .iryo-taio-list li dl dt i{
	font-size:28px;
}

#sv3 .iryo-taio-list li dl dt i.ph-circle{
	color:#009100;
}
#sv3 .iryo-taio-list li dl dt i.ph-triangle{
	color:#d7a100;
}
#sv3 .iryo-taio-list li dl dd{
	align-items: center;
	flex:1;
	margin:0;
	padding:0;
}

#sv3 .iryo-taio-list:after {
    content: "";
    width: 24%;
    color: aliceblue;
}
#sv3 .iryo-taio-list:before {
    content: "";
    width: 23%;
    order: 1;
    color: aliceblue;
}



@media screen and (max-width:840px) { 

	#sv3 .iryo-taio-list li{
		width:42%;
		font-size:14px;
		line-height:1.5;
	}
	
	#sv3 .iryo-taio-caution-list {

	}
	#sv3 .iryo-taio-caution-list li {
		font-size:12px;
	}


}

