@charset "UTF-8";

*, *::before, *::after{box-sizing: border-box;}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section{display: block;}
img{width: 100%; height: auto;}
a{text-decoration: none;}
a:hover{text-decoration: none;}
a img{transition: 0.3s;}
a:hover > img{opacity: 0.5;}

.mincho{
	font-family:YuMincho, 'Yu Mincho', 'MS Mincho', serif;
	font-weight: bold;
}
.p0{padding: 0 !important;}
.pt0{padding-top: 0 !important;}
.pt0_5{padding-top: 0.5rem !important;}
.pt1{padding-top: 1rem !important;}
.pt1_2{padding-top: 1.2rem !important;}
.pt2{padding-top: 2rem !important;}
.pt3{padding-top: 3rem !important;}
.pt5{padding-top: 5rem !important;}
.pb0{padding-bottom: 0 !important;}
.pb1{padding-bottom: 1rem !important;}
.pb2{padding-bottom: 2rem !important;}
.mt0{margin-top: 0 !important;}
.mt0_5{margin-top: 0.5rem !important;}
.mt1{margin-top: 1rem !important;}
.mt2{margin-top: 2rem !important;}
.mt3{margin-top: 3rem !important;}
.mt4{margin-top: 4rem !important;}
.mb0{margin-bottom: 0 !important;}
.mb1{margin-bottom: 1rem !important;}
.mb2{margin-bottom: 2rem !important;}
.mb3{margin-bottom: 3rem !important;}
.center-txt{text-align: center;}
.w-0{width: 0% !important;}
.w-100{width: 100% !important;}

.pure-g,
.pure-g [class*=pure-u]{font-family: inherit;}
body{
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.4;
	color: #333;
}
.yugo-n{
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.container{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.pure-g{letter-spacing: -0.62em;}
.pure-u-flex{display: flex; justify-content: center; align-items: center;}
.lsn{letter-spacing: normal;}
.ls0{letter-spacing: 0;}
.border{border: 1px solid #333;}

header{
	color: #4d4d4d;
	font-weight: bold;
	font-size: 14px;
	padding-top: 0.5rem;
}
.header-info{letter-spacing: 0.1rem;}
.header-tel{
	font-family: "Arial", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo";
	font-size: 21px;
	color: #4d4d4d;
	display: inline-block;
	letter-spacing: 0.2rem;
	padding-bottom: 0.2rem;
}
.header-address{
	display: inline-block;
	background-color: #46a7e2;
	color: #fff;
	border-radius: 30px;
	padding: 0.1rem 0.8rem 0;
	margin-top: 0.2rem;
	letter-spacing: 0.13rem;
}

#global-nav{
	border-radius: 40px;
	overflow: hidden;
	margin-top: 1.8rem;
	margin-bottom: 2.7rem;
}
#global-nav ul{
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
}
#global-nav ul li{
	width: calc(100% / 7);
	text-align: center;
}
#global-nav ul li a{
	background-color: #d8b58c;
	color: #fff;
	display: inline-block;
	width: 100%;
	padding: 28px 0;
	font-size: 1.1rem;
	font-weight: bold;
	letter-spacing: 0.1rem;
	transition: .5s;
}
#global-nav ul li a:hover{
	background-color: #f2d1ab;
}

#global-nav-sp{text-align: center;}
.menu-btn{
	display: block;
	background-color: #d8b58c;
	color: #fff !important;
	font-size: 0.9rem;
	padding: 1rem 2rem !important;
	margin: 1rem 20px;
	cursor: pointer;
	letter-spacing: 0.5rem;
	text-indent: 0.5rem;
	font-weight: bold;
	transition : all 0.5s ease 0s;
	border-radius: 30px;
}
.menu-btn:hover{
	color: #ab8f6f !important;
	background-color: #fff;
}

#menubt{
	width: 43px;
	height: 64px;
	display: block;
	position: fixed;
	right: 16px;
	top: 16px;
	z-index: 5;
}
#nav-drawer{
	position: relative;
}
.nav-unshown{
	display:none;
}
#nav-open{
	display: inline-block;
	width: 43px;
	height: 64px;
	background-image:url(../img/menu-bt.png);
	vertical-align: middle;
	visibility: hidden;
}
#nav-close{
	display: none;
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: .3s ease-in-out;
}
#nav-content{
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 90%;
	max-width: 330px;
	height: 100%;
	background: #fff;
	transition: .3s ease-in-out;
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);
	text-align: center;
}
#nav-input:checked ~ #nav-close{
	display: block;
	opacity: .5;
}

#nav-input:checked ~ #nav-content{
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
.nav-logo{
	padding: 10px 20px 0 20px;
	width: 100%;
}

#nav-content .btn3, #nav-content .btn4, #nav-content .btn5{
	max-width: 280px;
	width: 100%;
	line-height: 3rem;
	display: block;
	font-size: 0.9rem;
	cursor: pointer;
	margin: 0.5rem auto;
	letter-spacing: 0.2rem;
	text-align: center;
	text-indent: 0.2rem;
	border-radius: 3px;
	transition: .3s ease-out;
}

#nav-content .btn3{
	background-color: #3e8fce;
	color: #fff;	
}
#nav-content .btn4{
	color: #333;
	border: 1px #d8b58c solid;
}
#nav-content .btn4:hover{
	background-color: #d8b58c;
	color: #fff;	
}
#nav-content .btn5{
	background-color: #46a7e2;
	color: #fff;	
}
#nav-content .btn5:hover{
	background-color: #3e8fce;
}
.close-btn{
	background-color: #d8b58c;
	color: #fff;
	border-radius: 30px;
	line-height: 3rem;
	margin-top: 0.5rem;
	margin-bottom: 2rem;
	max-width: 280px;
	width: 100%;
	display: inline-block;
}
#sidemenu,
main{
	letter-spacing: 0;
	padding-bottom: 5rem;
}
.side-access{
	background-color: #f4f6ea;
	text-align: center;
}
.side-access a{
	color: #3e8fce;
	font-weight: bold;
	letter-spacing: 1px;
	display: inline-block;
	width: 100%;
	padding-top: 5px;
	transition: 0.3s;
}
.side-access a:hover{
	color: #46a7e2;
}
.side-access p{
	padding: 0 10px;
	font-weight: bold;
	font-size: 75%;
	line-height: 1.5;
	margin-top: 2px;
	letter-spacing: 1.2px;
	display: inline-block;
}
#sidemenu dl{
	margin: 1.5rem 0;
}
#sidemenu dl dt,
#sidemenu dl dd{
	height: 67px;
	margin: 0;
}
#sidemenu dl dt a,
#sidemenu dl dd a{
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 0 1.7rem;
	color: #333;
	font-weight: bold;
}
#sidemenu dl dt a{
	background-color: #e0e0e0;
}
#sidemenu .group-end{margin-bottom: 2.3rem !important;}
.side-icon{
	background-repeat: no-repeat;
	background-position: 85% center;
}
.icon-gastroscope{background-image: url("../img/icon-gastroscope.png");}
.icon-colonoscope{background-image: url("../img/icon-colonoscope.png");}
.icon-inspection{background-image: url("../img/icon-inspection.png");}
.icon-treatment{background-image: url("../img/icon-treatment.png");}
.icon-checkup{background-image: url("../img/icon-checkup.png");}
.icon-clinic{background-image: url("../img/icon-clinic.png");}
.icon-access{background-image: url("../img/icon-access.png");}
.icon-faq{background-image: url("../img/icon-faq.png");}
#sidemenu nav a{
	transition: 0.3s;
}
#sidemenu nav a:hover{
	opacity: 0.5;
}


footer{
	background-color: #e0e0e0;
}


#page-top{
	width:50px;
	height:50px;
	display:none;
	position:fixed;
	right:16px;
	bottom:16px;
	z-index: 5;
}
#page-top p{
	margin:0;
	padding:0;
	text-align:center;
	background:#46a7e2;
	-webkit-transition:all 0.3s;
	-moz-transition:all 0.3s;
	transition:all 0.3s;
}
#page-top p:hover{
	background:#3e8fce;
}
#move-page-top{
	color:#fff;
	line-height:50px;
	text-decoration:none;
	display:block;
	cursor:pointer;
}
footer{
	font-size: 0.8rem;
	font-weight: bold;
}
footer ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	list-style: none;
	text-align: center;
	padding: 2rem 0 3rem;
	padding-top: 2rem;
}
footer ul li{
/*	flex-grow: 1;*/
	border-left: 1px #333 solid;
}
footer ul li:last-child{
	border-right: 1px #333 solid;
}
footer ul li a{
	width: 100%;
	height: 100%;
	display: inline-block;
	color: #333;
	transition: 0.3s;
	letter-spacing: 1px;
}
footer ul li a:hover{
	color: #666;
}
.footer-info{
	letter-spacing: 2px;
	line-height: 2;
}
.footer-info a{color: #333;}
.copyright{
	padding: 2rem 0 1rem;
	text-align: center;
	letter-spacing: 2px;
}

.square-h2{
	border: 1px #3e8fce solid;
	border-bottom-width: 4px;
	border-bottom-color: #46a7e2;
	width: 104px;
	height: 107px;
	color: #3e8fce;
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	margin: 0 auto 16px;
	text-align: center;
	letter-spacing: normal;
}
.square-h2 h2{
	font-size: 1rem;
	letter-spacing: 1px;
	padding: 0;
	margin: 0;
	line-height: 1.4;
}
.square-h2 span{
	font-size: 0.7rem;
	font-family: Arial, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-weight: normal;
	letter-spacing: 1px;
}
.square-h2 i{
	padding: 0 5px;
}
.square-h2 .icon{
	display: inline-block;
	margin-top: 4px;
}
.square-h2 .icon::before,
.square-h2 .icon::after{
	content: "‥";
	font-size: 70%;
}

.rectangle-h2{
	border: 1px #3e8fce solid;
	border-bottom-width: 4px;
	border-bottom-color: #46a7e2;
	width: 100%;
	height: 69px;
	color: #3e8fce;
	background-color: #fff;
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	margin: 0 auto 16px;
	text-align: center;
	letter-spacing: normal;
}
.rectangle-h2 h2{
	font-size: 1.1rem;
	letter-spacing: 2px;
	padding: 0;
	margin: 0;
	line-height: 1.4;
}
.rectangle-h2 span{
	font-size: 0.7rem;
	font-family: Arial, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-weight: normal;
	letter-spacing: 1px;
}
.rectangle-h2 i{padding-right: 0.3rem;}
.rectangle-h2 h2::before,
.rectangle-h2 h2::after{
	content: "‥";
	font-size: 70%;
	padding: 0 0.5rem;
}

.bg-gray{
	background-color: #f6f6f6;
	padding: 12px;
}
.time-table{
	width: 100%;
}
.time-table thead{
	background-color: #7facd5;
	color: #fff;
}
.time-table thead th{padding: 3px 0 1px 0;}
.time-table tbody{
	background-color: #f7f7f7;
	text-align: center;
	font-weight: bold;
}
.th-holiday{letter-spacing: -3px;}
.th-time{
	line-height: 1.1;
	padding: 7px 0;
}
.pankuzu{margin-bottom: 2.5rem;}
.pankuzu ol{
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	font-size: 0.75rem;
	padding: 0;
}
.pankuzu ol li a{
	color: #333;
}
.pankuzu ol li::after{
	content: '〉';
	padding: 0 0 0 0.5rem;
}
.pankuzu ol li:last-child::after{
	content: '';
}
.pankuzu ol li:last-child{
	font-weight: bold;
	color: #666;
}
.pankuzu i{
	padding-right: 0.5rem;
}

@media screen and (max-width: 361px){
	.container{padding-left: 10px !important; padding-right: 10px !important;}
	.time-table{
		width: calc(100% + 20px) !important;
		margin-left: -10px !important;
	}
}
@media screen and (max-width: 767px){
	.pc{display: none;}
	.pc-only{display: none;}
	.sp{display: block;}
	.pc-inline{display: none;}
	header{text-align: center;}
	.sp-order1{order: 1;}
	.sp-order2{order: 2;}
	.sp-order3{order: 3;}
	.sp-order4{order: 4;}
	.pt-sp1{padding-top: 1rem !important;}
	.pt-sp2{padding-top: 2rem !important;}
	.mb-sp1{margin-bottom: 1rem !important;}
	
	.header-address{padding: 0.1rem 0.8rem;}
	.side-access{padding-top: 1.5rem;}
	footer{text-align: center;}
	.footer-info{padding-top: 1rem;}
	.clinic-box .sp-order3{
		width: 100%;
	}
	.time-table{
		width: calc(100% + 40px);
		margin-left: -20px;
	}
	.time-table thead th{width: calc((100% - 25%) / 7);}
	.time-table thead th:first-child{width: 25%;}
	.time-table tr{font-size: 0.8rem;}
	.th-holiday{letter-spacing: -4px;}
	.pankuzu{
		width: calc(100% + 10px);
		position: relative;
		left: -10px;
	}
	.footer-info .kamoku{
		letter-spacing: 0.8px;
		text-indent: 0.8px;
	}
}
@media screen and (min-width: 768px){
	.pc{display: block;}
	.pc-only{display: none;}
	.sp{display: none;}
	.sp-only{display: none !important;}
	.pc-inline{display: inline-block;}
	.pc-order1{order: 1;}
	.pc-order2{order: 2;}
	.header-info{
		text-align: right;
		padding-right: 0.8rem;
	}
	.header-address{
		position: relative;
		right: -0.8rem;
	}
	.time-table tr{font-size: 0.9rem;}
	.time-table thead th{width: calc((100% - 25%) / 7);}
	.time-table thead th:first-child{width: 25%;}
	.map{height: 235px;}
}

@media screen and (max-width: 1023px){
	footer ul{display: none;}
	footer{padding-top: 2rem;}
}

@media screen and (min-width: 768px) and (max-width: 1023px){
	#global-nav ul li a{font-size: 0.8rem;}
	.tab-order1{order: 1 !important;}
	.tab-order2{order: 2 !important;}
	.side-access{padding-top: 1.5rem;}
	.footer-info{
		letter-spacing: 1px;
		padding-left: 2rem;
	}
}
@media screen and (min-width: 1024px){
	#sidemenu{
		width: 22.33333%;
		margin-right: 3.33333%;
	}
	main{
		width: 74.33333%;
	}	
	.side-access p{
		text-align: left;
	}
	footer ul li a{padding: 0 1.1rem;}
	.footer-info{
		letter-spacing: 1px;
		padding-left: 1rem;
	}
	.contents{flex-wrap: nowrap;}
}
@media screen and (min-width: 1200px){
	.pc-only{display: block;}
	#sidemenu{
		width: 220px;
		margin-right: 40px;
	}
	main{
		width: 940px;
	}	
	footer ul li a{padding: 0 1.85rem;}
	.footer-info{letter-spacing: 2px;}
	.time-table thead th{width: 10%;}
	.time-table thead th:first-child{width: 30%;}
	.map{height: 309px;}
}
@media screen and (max-width: 1199px){
	.container{padding-left: 20px; padding-right: 20px;}
}
