@charset "UTF-8";
/* common */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

img {
	vertical-align: bottom;
	max-width: 100%;
}

table {
	border-collapse: collapse;
}

input, textarea, button {
	font-size: inherit;
	-webkit-appearance: none;
	background: none;
	border: 1px solid #ccc;
	box-shadow: none;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: normal;
	color: #707070;
}

a {
	text-decoration: none;
	transition: all .3s ease;
}

a:hover {
	opacity: .7;
}

li {
	list-style: none;
}

.flex {
	display: flex;
	flex-wrap: wrap;
}

.inner {
	width: 1000px;
	margin: 0 auto;
}

.pc {
	display: block;
}

.sp {
	display: none;
}

/* header */
header {
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding-top: 10px;
	z-index: 10;
}

header .site_description {
	font-size: 12px;
	color: #F6767F;
}

header .row {
	margin-top: 10px;
	align-items: center;
	justify-content: space-between;
}

header .row .contact {
	justify-content: flex-end;
	align-items: center;
}

header .row .contact p:not(:last-child) {
	margin-right: 20px;
}

header .row .contact p.txt {
	font-size: 12px;
	line-height: 1.4;
}

header .row .contact p.num {
	font-family: 'Concert One', sans-serif;
	font-size: 40px;
}

header .row .contact p.num a {
	color: #F6767F;
}

header .row .contact p.mail a {
	line-height: 1;
	font-size: 15px;
	color: #000;
	display: block;
	border: 2px solid #000;
	padding: 10px;
}

header nav {
	background: #305FD8;
	margin-top: 10px;
}

header nav ul li {
	width: 250px;
	border-right: 1px solid #fff;
}

header nav ul li:first-child {
	border-left: 1px solid #fff;
}

header nav ul li a {
	display: block;
	line-height: 50px;
	color: #fff;
	text-align: center;
}

#mv {
	height: 500px;
	margin-top: 145px;
	/*background: url(../img/top.jpg) no-repeat center / cover;*/
	padding-top: 80px;
	position: relative;
}

#mv video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

#mv .inner.flex {
	justify-content: space-between;
	align-items: center;
}

#mv .inner.flex .copy_block {
	background: rgba(255, 255, 255, 0.7);
	padding: 30px;
	width: 320px;
}

#mv .inner.flex .copy_block p:first-child {
	font-size: 20px;
	margin-bottom: 10px;
}

#mv .inner.flex .copy_block p.big {
	font-size: 34px;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 30px;
}

#mv .inner.flex .copy_block p.big strong {
	color: #F6767F;
	font-size: 41px;
}

#mv .inner.flex .copy_block p:last-child {
	font-size: 14px;
}

#mv .inner.flex .txt {
	font-size: 41px;
	text-align: right;
	font-weight: bold;
	line-height: 1.2;
}

#mv .inner.flex .txt strong {
	color: #F6767F;
	font-size: 66px;
	display: block;
}

article {
	justify-content: space-between;
	padding: 50px 0;
}

article aside {
	width: 270px;
}

article aside dl {
	text-align: center;
}

article aside dl:not(:last-child) {
	margin-bottom: 15px;
}

article aside dl dt a {
	background: #305FD8;
	display: block;
	padding: 15px;
	color: #fff;
}

article aside dl dd {
	background: #ECF0FA;
	padding: 20px 20px 0;
}

article aside dl dd p {
	border-bottom: 1px dashed #707070;
	padding-bottom: 20px;
}

article aside dl dd:last-child p {
	border-bottom: none;
}

article aside dl dd a {
	color: #707070;
	line-height: 1;
	display: block;
}

article aside dl dd a span {
	color: #F6767F;
	display: block;
	font-size: 11px;
	margin-bottom: 10px;
	line-height: 1;
}

article main {
	width: 700px;
}

article main .intro {
	padding: 0 0 40px;
	text-align: center;
}

article main .intro .main {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}

article main .intro .main span {
	background: linear-gradient(to top, rgba(246, 118, 127, 0.6) 20px, transparent 20px);
	font-size: 30px;
	display: inline-block;
	padding: 0 5px;
	line-height: 1;
}

article main .intro .main span strong {
	font-size: 54px;
}

article main .feature {
	height: 500px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 20px;
}

article main .feature:not(:last-of-type) {
	margin-bottom: 30px;
}

article main .feature:nth-of-type(2n + 1) {
	align-items: flex-end;
}

article main .feature .txt_block {
	background: rgba(255, 255, 255, 0.8);
	width: 380px;
	padding: 15px;
}

article main .feature .txt_block .nombre {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 40px;
	padding-bottom: 3px;
	border-bottom: 2px solid #707070;
	float: right;
	position: relative;
	font-family: 'Concert One', sans-serif;
	line-height: 1;
	text-align: center;
}

article main .feature .txt_block .nombre::after {
	content: '';
	width: 100%;
	height: 1px;
	background: #707070;
	display: block;
	position: absolute;
	top: calc(100% + 3px);
	left: 0;
}

article main .feature .txt_block .nombre .micro {
	font-size: 14px;
	margin-top: 5px;
}

article main .feature .txt_block h2 {
	clear: both;
	color: #F6767F;
	font-size: 30px;
	font-weight: 400;
	margin-bottom: 20px;
}

article main .feature .txt_block h2 em {
	font-weight: 700;
	font-style: normal;
}

article main .feature .txt_block p {
	font-size: 13px;
	line-height: 1.6;
	text-align: justify;
}

article main .feature .txt_block .sub_head {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
}

article main #feature1 {
	background: url(../img/top04_bg01.jpg) no-repeat bottom right/cover;
}

article main #feature2 {
	background: url(../img/top04_bg02.jpg) no-repeat bottom left/cover;
}

article main #feature3 {
	background: url(../img/top04_bg03.jpg) no-repeat bottom right/cover;
}

article main #feature4 {
	background: url(../img/top04_bg04.jpg) no-repeat bottom right/cover;
}

article main #feature5 {
	background: url(../img/top04_bg05.jpg) no-repeat bottom right/cover;
	margin-bottom: 0;
}

article main #feature6 {
	height: auto;
	padding: 0;
}

article main #feature6 .txt_block {
	width: 100%;
	text-align: center;
	padding: 20px 0 40px;
}

article main #feature6 .txt_block .nombre {
	float: none;
	margin: 0 auto 20px;
	width: 185px;
}

article main #feature6 .txt_block .txt {
	font-size: 16px;
	text-align: center;
}

article main #feature6 .level {
	display: flex;
}

article main #feature6 .level .img {
	width: 400px;
}

article main #feature6 .level .txt_block {
	width: 300px;
	padding: 15px 20px 0;
	background: #fafafa;
}

article main #feature6 .level .txt_block .index {
	border: 1px solid #F6767F;
	background: #fff;
	border-radius: 50%;
	width: 70px;
	height: 70px;
	color: #F6767F;
	text-align: center;
	padding: 6px 0 0;
	font-size: 35px;
	line-height: 1;
	font-family: 'Concert One', sans-serif;
	margin: 0 auto 10px;
}

article main #feature6 .level .txt_block .index .micro {
	font-size: 12px;
	display: block;
	margin-top: 5px;
}

article main #feature6 .level .txt_block h3 {
	color: #F6767F;
	margin-bottom: 10px;
}

article main #feature6 .level:nth-child(2n) .img {
	order: 2;
}

article main #feature6 .level:nth-child(2n) .txt {
	order: 1;
}

article main .jibaiseki {
	padding: 50px 0;
}

article main .jibaiseki h2 {
	clear: both;
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 30px;
	text-align: center;
}

article main .jibaiseki h2 span {
	font-size: 30px;
	font-weight: bold;
	font-weight: 600;
	display: block;
	color: #F6767F;
}

article main .jibaiseki .img {
	text-align: center;
	margin-bottom: 30px;
}

article main .jibaiseki .img img {
	width: 500px;
}

article main .jibaiseki ul {
	width: 500px;
	margin: 0 auto;
}

article main .jibaiseki ul li {
	display: flex;
	align-items: center;
	position: relative;
}

article main .jibaiseki ul li:not(:last-child) {
	margin-bottom: 10px;
}

article main .jibaiseki ul li::before {
	content: '';
	width: 15px;
	height: 15px;
	display: block;
	border: 2px solid #ccc;
	margin-right: 5px;
}

article main .jibaiseki ul li::after {
	content: '';
	width: 13px;
	height: 6px;
	display: block;
	position: absolute;
	top: 4px;
	left: 3px;
	transform: rotate(-45deg);
	border-left: 2px solid #F6767F;
	border-bottom: 2px solid #F6767F;
}

article main .jibaiseki .txt {
	background: #ECF0FA;
	padding: 20px;
	margin-top: 30px;
	text-align: center;
}

footer .img {
	height: 400px;
	background: url(../img/room_bg.jpg) no-repeat center bottom/cover;
}

footer .pagetop {
	text-align: center;
	padding: 10px 0 20px;
	font-family: 'Concert One', sans-serif;
}

footer .pagetop a {
	color: #000;
}

footer .pagetop a i {
	font-size: 30px;
}

footer .sns {
	background: #F6767F;
	padding: 30px 0 0;
	justify-content: center;
}

footer .sns li {
	margin: 0 7px;
}

footer .sns li a {
	color: #000;
	padding: 8px 10px 8px 11px;
	display: block;
	border: 2px solid #212121;
	font-size: 26px;
	line-height: 1;
	position: relative;
	width: 51px;
	height: 47px;
}

footer .sns li a:hover {
	background: #000;
	color: #F6767F;
}

footer .sns li.svg img {
	width: 25px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

footer .sns li.svg .hover {
	opacity: 0;
	transition: .3s;
	z-index: 2;
}

footer .sns li.svg .default {
	transition: .3s;
	opacity: 1;
	z-index: 1;
}

footer .sns li.svg a:hover .hover {
	opacity: 1;
}

footer .sns li.svg a:hover .default {
	opacity: 0;
}

footer .copy {
	background: #F6767F;
	text-align: center;
	color: #fff;
	padding: 30px 0;
	font-size: 12px;
}

/* kasou */
.kasou #mv {
	height: 250px;
}

.kasou #mv h2 {
	text-align: center;
	color: #fff;
	font-size: 30px;
}

.kasou.treatment #mv {
	background: url(../img/mv_treatment.jpg) no-repeat center/cover;
}

.kasou.about #mv {
	background: url(../img/mv_about.jpg) no-repeat center/cover;
}

.kasou main section {
	font-size: 15px;
}

.kasou main section:not(:last-child) {
	margin-bottom: 80px;
}

.kasou main section h3 {
	background: #305FD8;
	color: #fff;
	text-align: center;
	padding: 10px 0;
	line-height: 1;
	margin-bottom: 25px;
}

.kasou #clinic .block {
	justify-content: space-between;
}

.kasou #clinic .block .detail i {
	display: inline-block;
	margin-right: 4px;
	width: 24px;
	text-align: center;
}

.kasou #clinic .block .detail a {
	color: #707070;
	text-decoration: underline;
}

.kasou #clinic .block .detail a:hover {
	color: #F6767F;
}

.kasou #clinic .block table {
	width: 100%;
	font-size: 15px;
}

.kasou #clinic .block table tr {
	border-bottom: 1px solid #212121;
}

.kasou #clinic .block table tr th {
	text-align: center;
	padding: 3px 7px;
}

.kasou #clinic .block table tr th:first-child {
	padding: 3px 15px;
}

.kasou #clinic .block table tr td {
	text-align: center;
}

.kasou #clinic .block table tr td.tip {
	padding-left: 24px;
	padding: 3px 15px;
}

.kasou #clinic .block .closed {
	font-size: 13px;
	margin-top: 10px;
}

.kasou #access {
	text-align: center;
}

.kasou #access .map_area {
	margin-bottom: 40px;
}

.kasou #access .access_desc i {
	font-size: 19px;
	display: block;
	margin-bottom: 5px;
}

.kasou #access .access_desc h4 {
	border-bottom: 1px solid #707070;
	display: inline-block;
	margin: 0 auto 10px;
	padding: 0 5px;
}

.kasou #access .access_desc .bus {
	margin-bottom: 40px;
}

.kasou #message .flex {
	justify-content: space-between;
	align-items: center;
}

.kasou #message .flex .txt {
	width: 450px;
}

.kasou #message .flex .txt .name {
	justify-content: space-between;
	padding-bottom: 2px;
	border-bottom: 1px solid #707070;
	margin-bottom: 10px;
	font-weight: bold;
	font-size: 18px;
}

.kasou #message h3 {
	margin-top: 80px;
}

.kasou #message .flex .txt .name .jp span {
	display: inline-block;
	margin-right: 10px;
	font-size: 14px;
}

.kasou #message .flex .txt .name .en {
	font-family: 'Concert One', sans-serif;
}

.kasou #message .flex .img {
	width: 230px;
}

.kasou #recommend .recommend_block {
	background: #ECF0FA;
	padding: 30px;
	justify-content: space-between;
}

.kasou #recommend .recommend_block:not(:last-child) {
	margin-bottom: 20px;
}

.kasou #recommend .recommend_block .img {
	width: 219px;
}

.kasou #recommend .recommend_block .txt {
	width: calc(100% - 239px);
	font-size: 15px;
}

.kasou #recommend .recommend_block .txt .clinic {
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 5px;
}

.kasou #recommend .recommend_block .txt .name {
	font-weight: bold;
	margin-bottom: 20px;
	font-size: 18px;
}

.kasou #recommend .recommend_block .txt .name span {
	font-size: 14px;
}

.kasou #recommend .recommend_block .txt .title {
	font-weight: bold;
	color: #F6767F;
	margin-bottom: 20px;
	font-size: 18px;
}

.kasou #recommend .recommend_block:nth-of-type(2n) .img {
	order: 2;
}

.kasou #recommend .recommend_block:nth-of-type(2n) .txt {
	order: 1;
}

.kasou #flow .flow_block {
	background: #ECF0FA;
	padding: 30px;
	justify-content: space-between;
}

.kasou #flow .flow_block:not(:last-child) {
	margin-bottom: 20px;
}

.kasou #flow .flow_block .txt {
	width: 310px;
}

.kasou #flow .flow_block .txt h4 {
	margin-bottom: 20px;
}

.kasou #flow .flow_block:nth-of-type(2n) .txt {
	order: 1;
}

.kasou #flow .flow_block:nth-of-type(2n) .img {
	order: 2;
}

.kasou #kotsubankyosei .img {
	margin-bottom: 15px;
}

.kasou #kotsubankyosei .kotsubankyosei_block {
	justify-content: space-between;
	margin-bottom: 30px;
}

.kasou #kotsubankyosei .kotsubankyosei_block .txt {
	width: 400px;
	padding: 30px;
}

.kasou #kotsubankyosei .kotsubankyosei_block:nth-of-type(2n) .txt {
	order: 2;
}

.kasou #kotsubankyosei .kotsubankyosei_block:nth-of-type(2n) .img {
	order: 1;
}

.kasou #kotsubankyosei .good_point h4 {
	text-align: center;
	font-size: 18px;
	padding-bottom: 2px;
	border-bottom: 1px solid #EDEDED;
	margin-bottom: 20px;
}

.kasou #kotsubankyosei .good_point .good_point_list {
	background: #ECF0FA;
	padding: 20px;
}

.kasou #kotsubankyosei .good_point .good_point_list ul {
	background: #fff;
	padding: 20px;
}

.kasou #kotsubankyosei .good_point .good_point_list ul li {
	list-style: disc inside;
}

.kasou #kotsubankyosei .good_point .good_point_list ul li:not(:last-child) {
	margin-bottom: 10px;
}

.price h4 {
	text-align: center;
	font-size: 18px;
	padding-bottom: 2px;
	border-bottom: 1px solid #EDEDED;
	margin-bottom: 20px;
}

.price table {
	width: 100%;
}

.price table th {
	padding: 10px;
	border: 1px solid #ccc;
	background: #ECF0FA;
}

.price table td {
	padding: 10px;
	border: 1px solid #ccc;
}

.price table.hoken {
	margin-bottom: 30px;
}

.price table.hoken th {
	width: 25%;
}

.price table.hoken td {
	text-align: center;
	width: 25%;
}

.price table.jihi th {
	width: 240px;
}

.campaign h3 {
	background: #305FD8;
	color: #fff;
	text-align: center;
	padding: 10px 0;
	line-height: 1;
	margin-bottom: 25px;
}

.campaign p {
	text-align: center;
}

.campaign p img {
	width: 500px;
}

.form {
	width: 600px;
	margin: 0 auto;
	padding: 40px;
	border: solid 1px #ccc;
	background: #fff;
}

.form h2.hdl {
	font-size: 20px;
	margin-bottom: 20px;
}

.form dt {
	float: left;
	clear: left;
	width: 200px;
}

.form dt.must:after {
	content: '必須';
	color: #fff;
	background: #f00;
}

.form dd {
	margin-bottom: 10px;
	padding: 0 0 10px 210px;
	border-bottom: solid 1px #ccc;
}

.form dd label {
	display: inline-block;
	zoom: 1;
	/* Fix for IE7 */
	*display: inline;
	/* Fix for IE7 */
}

.form dd input[type=text],
.form dd textarea {
	box-sizing: border-box;
	width: 100%;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.form .sendbtn {
	text-align: center;
}

.form .sendbtn input {
	font-size: 20px;
	width: 80%;
	padding: 10px;
	color: #fff;
	border: none;
	border-radius: 8px;
	background: #069;
}

.form .sendbtn input:hover {
	color: #069;
	background: #d4e0ea;
}

form dl dt span {
	color: #f00;
	font-size: 90%;
}

.form dt {
	font-size: 90%;
}

@media (max-width: 1000px) {
	body {
		width: 1000px;
	}
}

@media (max-width: 768px) {
	body {
		width: 100%;
		font-size: 14px;
	}
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.inner {
		width: 100%;
	}
	header {
		height: 52px;
		padding-top: 0;
	}
	header .site_description {
		display: none;
	}
	header .row {
		margin-top: 0;
		padding: 10px;
	}
	header .row h1 {
		line-height: 1;
	}
	header .row h1 img {
		width: auto;
		max-width: none;
		height: 30px;
	}
	header .contact {
		display: none;
	}
	header nav {
		position: fixed;
		width: 100%;
		margin-top: 0;
		padding: 30px;
		display: none;
	}
	header nav ul li {
		width: 100%;
		border-right: none;
	}
	header nav ul li:not(:last-child) {
		border-bottom: 1px dashed #fff;
	}
	header nav ul li:first-child {
		border-left: none;
	}
	header nav ul li a {
		font-size: 14px;
	}
	header #sp_btn {
		position: fixed;
		top: 15px;
		right: 10px;
		width: 30px;
		height: 30px;
	}
	header #sp_btn span {
		position: absolute;
		width: 100%;
		height: 2px;
		right: 0;
		background: #000;
		display: block;
		transition: .3s;
	}
	header #sp_btn span:nth-child(1) {
		top: 0;
	}
	header #sp_btn span:nth-child(2) {
		top: 10px;
	}
	header #sp_btn span:nth-child(3) {
		top: 20px;
	}
	.nav_open #sp_btn span:nth-child(1) {
		transform: rotate(45deg);
		top: 10px;
	}
	.nav_open #sp_btn span:nth-child(2) {
		right: -50px;
	}
	.nav_open #sp_btn span:nth-child(3) {
		transform: rotate(-45deg);
		top: 10px;
	}
	#mv {
		margin-top: 52px;
		padding: 15px;
		height: 400px;
	}
	#mv .inner.flex {
		position: relative;
		height: 100%;
	}
	#mv .inner.flex .copy_block {
		width: 100%;
		max-width: 280px;
		position: absolute;
		bottom: 0;
		padding: 25px;
	}
	#mv .inner.flex .copy_block p:first-child {
		font-size: 16px;
	}
	#mv .inner.flex .copy_block p.big {
		font-size: 26px;
		margin-bottom: 20px;
	}
	#mv .inner.flex .copy_block p.big strong {
		display: block;
		font-size: 34px;
	}
	#mv .inner.flex .copy_block p:last-child {
		font-size: 12px;
	}
	#mv .inner.flex .txt {
		display: none;
	}
	article {
		padding: 30px 0;
	}
	article aside {
		display: none;
	}
	article main {
		width: 100%;
	}
	article main .intro .main {
		font-size: 16px;
	}
	article main .intro .main span {
		font-size: 24px;
		background: linear-gradient(to top, rgba(246, 118, 127, 0.6) 14px, transparent 14px);
	}
	article main .intro .main span strong {
		font-size: 40px;
	}
	article main .intro .sub {
		font-size: 14px;
	}
	article main .feature {
		height: auto;
		min-height: 500px;
	}
	article main .feature:not(:last-child) {
		margin-bottom: 20px;
	}
	article main .feature .txt_block {
		max-width: 100%;
	}
	article main .feature .txt_block .nombre {
		font-size: 30px;
	}
	article main .feature .txt_block .nombre .micro {
		font-size: 12px;
		margin-top: 2px;
	}
	article main .feature .txt_block h2 {
		font-size: 24px;
		margin-bottom: 10px;
	}
	article main .feature .txt_block .sub_head {
		font-size: 14px;
		margin-bottom: 5px;
	}
	article main .feature .txt_block p {
		font-size: 11px;
	}
	article main #feature6 .txt_block {
		padding-bottom: 30px;
	}
	article main #feature6 .txt_block h2 {
		margin-bottom: 5px;
	}
	article main #feature6 .txt_block .nombre {
		width: 165px;
	}
	article main #feature6 .txt_block .txt {
		text-align: center;
		font-size: 14px;
	}
	article main #feature6 .level {
		flex-direction: column;
	}
	article main #feature6 .level .txt_block {
		width: 100%;
		padding: 20px;
	}
	article main #feature6 .level .txt_block .index {
		width: 50px;
		height: 50px;
		font-size: 25px;
		padding: 2px 0 0;
	}
	article main #feature6 .level .txt_block .index span {
		font-size: 10px;
		margin-top: 0;
	}
	article main #feature6 .level .img {
		width: 100%;
	}
	article main #feature6 .level#level2 .img {
		order: 2;
	}
	article main #feature6 .level#level2 .txt_block {
		order: 1;
	}
	footer .img {
		height: 240px;
	}
	footer .sns li {
		margin-bottom: 12px;
	}
	footer .pagetop a {
		font-size: 12px;
		display: block;
	}
	footer .pagetop a i {
		font-size: 25px;
	}
	footer .copy {
		padding: 15px 20px 30px;
	}
	footer .copy a {
		color: #fff;
		text-decoration: underline;
	}
	/* kasou */
	.kasou #mv {
		height: 150px;
		padding-top: 60px;
	}
	.kasou #mv h2 {
		font-size: 20px;
	}
	.kasou article {
		padding: 20px 0;
	}
	.kasou article main {
		padding: 0 15px;
	}
	.kasou article main section {
		font-size: 13px;
	}
	.kasou article main section h3 {
		font-size: 16px;
		padding: 7px 0;
		margin-bottom: 15px;
	}
	.kasou article main section:not(:last-child) {
		margin-bottom: 40px;
	}
	.kasou article main .intro {
		padding: 0 0 20px;
	}
	.kasou #flow .flow_block .txt {
		width: calc(100% - 310px);
	}
	.kasou #kotsubankyosei .kotsubankyosei_block .txt {
		width: calc(100% - 310px);
	}
	.kasou #clinic .block .timetable {
		margin-top: 20px;
	}
	.kasou #clinic .block .timetable table tr th {
		font-size: 13px;
	}
	.kasou #clinic .block .timetable table tr th:first-child {
		padding: 3px 10px;
	}
	.kasou #clinic .block .timetable table tr td {
		font-size: 13px;
	}
	.kasou #clinic .block .timetable table tr td.tip {
		padding: 3px 10px;
	}
	.kasou #clinic .block .closed {
		font-size: 11px;
	}
	.kasou #access .map_area {
		margin-bottom: 20px;
	}
	.kasou #access .access_desc .bus {
		margin-bottom: 20px;
	}
	.kasou #message h3 {
		margin-top: 0;
	}
	.kasou #message .flex .txt {
		width: calc(100% - 240px);
	}
	.kasou #message .flex .txt .name {
		font-size: 16px;
	}
	.kasou #message .flex .txt .name .jp span {
		font-size: 12px;
	}
}

@media (max-width: 640px) {
	article main .jibaiseki h2 {
		font-size: 16px;
	}
	article main .jibaiseki h2 span {
		font-size: 24px;
	}
	article main .jibaiseki ul {
		width: 100%;
		padding: 0 20px;
		font-size: 12px;
	}
	article main .jibaiseki .txt {
		font-size: 14px;
	}
	.kasou #flow .flow_block {
		padding: 20px;
	}
	.kasou #flow .flow_block:not(:last-child) {
		margin-bottom: 15px;
	}
	.kasou #flow .flow_block:nth-of-type(2n) .img {
		order: 1;
	}
	.kasou #flow .flow_block:nth-of-type(2n) .txt {
		order: 2;
	}
	.kasou #flow .flow_block .img {
		margin: 0 auto 15px;
	}
	.kasou #flow .flow_block .txt {
		width: 300px;
		margin: 0 auto;
	}
	.kasou #flow .flow_block .txt h4 {
		margin-bottom: 10px;
	}
	.kasou #kotsubankyosei .kotsubankyosei_block {
		margin-bottom: 30px;
	}
	.kasou #kotsubankyosei .kotsubankyosei_block .img {
		margin: 0 auto;
	}
	.kasou #kotsubankyosei .kotsubankyosei_block .txt {
		width: 300px;
		margin: 10px auto 0;
		padding: 0;
	}
	.kasou #kotsubankyosei .good_point h4 {
		font-size: 16px;
	}
	.kasou #kotsubankyosei .good_point .good_point_list {
		padding: 15px;
	}
	.kasou #kotsubankyosei .good_point .good_point_list ul {
		padding: 15px;
	}
	.kasou #message .flex .txt {
		order: 2;
		width: 100%;
	}
	.kasou #message .flex .img {
		order: 1;
		margin: 0 auto 20px;
		width: 200px;
	}
	.kasou #recommend .recommend_block {
		padding: 20px;
		flex-direction: column;
	}
	.kasou #recommend .recommend_block .img {
		margin: 0 auto 10px;
	}
	.kasou #recommend .recommend_block .txt {
		width: 100%;
		font-size: 13px;
	}
	.kasou #recommend .recommend_block .txt .clinic {
		text-align: center;
		margin-bottom: 2px;
	}
	.kasou #recommend .recommend_block .txt .name {
		text-align: center;
		font-size: 16px;
		margin-bottom: 10px;
	}
	.kasou #recommend .recommend_block:nth-of-type(2n) .img {
		order: 1;
	}
	.kasou #recommend .recommend_block:nth-of-type(2n) .txt {
		order: 2;
	}
	.price table.jihi th {
		width: 160px;
	}
}
