@charset "utf-8";
/* CSS Document */

/* ##### font ##### */

@import url('https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c:100,300,400,700&display=swap');

.fs-m1 {
font-family: 'M PLUS Rounded 1c', sans-serif;
font-weight: 300;
	-webkit-transform: rotate(0.03deg);
	transform: rotate(0.03deg);
	/* シャギーを防ぐ指定 */
}

/* ##### font end ##### */

/* ##### reset.css上書き ##### */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
button,
p {
	color: #463a41;
	font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
}

@media only screen and (max-width: 1024px) {}

@media only screen and (max-width: 599px) {
	.fs30 {
		font-size: 20px;
	}

	.fs16 {
		font-size: 14px;
	}
}

/* ##### reset.css上書きここまで ##### */

/* ##### 共通 ##### */

[data-element-id] .slid-up {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}

.slid-up {
	opacity: 0;
	-webkit-transform: translateY(60px);
	transform: translateY(60px);
	-webkit-transition: opacity 1.0s ease, -webkit-transform .5s ease-out;
	transition: opacity 1.0s ease, -webkit-transform .5s ease-out;
	transition: transform .5s ease-out, opacity 1.0s ease;
	transition: transform .5s ease-out, opacity 1.0s ease, -webkit-transform .5s ease-out;
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}

.up {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}


a {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

* {
	box-sizing: border-box;
}

#wrapper[data-element-id] {
	padding-top: 0 !important;
}

.sp-only {
	display: none;
}

.fs10 {
	font-size: 10px;
}

.fs50 {
	font-size: 50px;
}

.tex {
	line-height: 30px;
}

.tc {
	text-align: center;
}

.tr {
	text-align: right;
}

.tl {
	text-align: left;
}

.mt10 {
	margin-top: 10px;
}

.mb10 {
	margin-bottom: 10px;
}

.mt20 {
	margin-top: 20px;
}

.mb20 {
	margin-bottom: 20px;
}

.mt30 {
	margin-top: 30px;
}

.mb30 {
	margin-bottom: 30px;
}

.mb50 {
	margin-bottom: 50px;
}

.mt50 {
	margin-top: 50px;
}

.pad50 {
	padding: 50px 0;
}

.pt50 {
	padding-top: 50px;
}

.pb50 {
	padding-bottom: 50px;
}

.mt80 {
	margin-top: 80px;
}

.mb80 {
	margin-bottom: 80px;
}

.mauto {
	margin: 0 auto;
}

.z1 {
	position: relative;
	z-index: 1;
}

.vertical {
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	 -webkit-text-orientation: upright;
  text-orientation: upright;
}

.ctex {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0;
	z-index: 1;
}

.Blink a {
	display: block;
}

.c-br {
	color: #463a41;
}

.more {
	margin: 50px auto 0 auto;
	width: 80%;
	max-width: 260px;
	position: relative;
	color: #fff;
	text-align: center;
	text-decoration: none;
	-webkit-transition: .3s;
	transition: .3s;
}

.more.new{
  margin: 0 0 30px;
}

.more a {
	display: block;
	background: #c69c6d;
	color: #fff;
	padding: 10px 20px;
	position: relative;
	border-radius: 5px;
	border: 2px solid #c69c6d;
}

.more a span,
.link a p {
	position: relative;
	z-index: 5;
}

.more a:before,
.more a:after,
.link a:before,
.link a:after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: '';
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
}

.more a:before,
.link a:before {
	background: #edcca6;
	-webkit-transform-origin: right top;
	transform-origin: right top;
}

.more a:after,
.link a:after {
	background: #c69c6d;
	opacity: 0;
	-webkit-transform-origin: left top;
	transform-origin: left top;
	-webkit-transition: opacity .3s, -webkit-transform 0s .3s;
	transition: opacity .3s, -webkit-transform 0s .3s;
	transition: transform 0s .3s, opacity .3s;
	transition: transform 0s .3s, opacity .3s, -webkit-transform 0s .3s;
}

.more a:hover:before,
.link a:hover:before {
	-webkit-transform-origin: left top;
	transform-origin: left top;
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transition: -webkit-transform .3s;
	transition: -webkit-transform .3s;
	transition: transform .3s;
	transition: transform .3s, -webkit-transform .3s;
	z-index: 1;
}

.more a:hover:after,
.link a:hover:after {
	opacity: 1;
	-webkit-transform-origin: right top;
	transform-origin: right top;
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transition: opacity .3s, -webkit-transform .3s .3s;
	transition: opacity .3s, -webkit-transform .3s .3s;
	transition: transform .3s .3s, opacity .3s;
	transition: transform .3s .3s, opacity .3s, -webkit-transform .3s .3s;
	z-index: 1;
}

.bgimg {
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
}

.bgimg img {
	width: 100%;
	height: 100% !important;
	-o-object-fit: cover;
	object-fit: cover;
}

.of-img {
	width: 100%;
	overflow: hidden;
	height: 100%;
}

.of-img img {
	width: 100%;
	height: 100% !important;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center center;
	object-position: center center;
	font-family: 'object-fit: cover; object-position: center center;';
}

.ofimg {
	width: 100%;
	overflow: hidden;
	height: 100%;
}

.ofimg img {
	width: 100%;
	height: 100% !important;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center center;
	object-position: center center;
	font-family: 'object-fit: cover; object-position: center center;';
}

.of {
	position: relative;
}

.of:before {
	content: "";
	display: block;
}

.of img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.of15:before {
	padding-top: 15%;
}

.of20:before {
	padding-top: 20%;
}

.of25:before {
	padding-top: 25%;
}

.of30:before {
	padding-top: 30%;
}

.of35:before {
	padding-top: 35%;
}

.of40:before {
	padding-top: 40%;
}

.of45:before {
	padding-top: 45%;
}

.of50:before {
	padding-top: 50%;
}

.of55:before {
	padding-top: 55%;
}

.of60:before {
	padding-top: 60%;
}

.of65:before {
	padding-top: 65%;
}

.of70:before {
	padding-top: 70%;
}

.of75:before {
	padding-top: 75%;
}

.of80:before {
	padding-top: 80%;
}

.of85:before {
	padding-top: 85%;
}

.of90:before {
	padding-top: 90%;
}

.of95:before {
	padding-top: 95%;
}

.of100:before {
	padding-top: 100%;
}

.of105:before {
	padding-top: 105%;
}

.of110:before {
	padding-top: 110%;
}

.of115:before {
	padding-top: 115%;
}

.of120:before {
	padding-top: 120%;
}

.of135:before {
	padding-top: 135%;
}

.of140:before {
	padding-top: 140%;
}

.c-w {
	color: #fff;
}

.db {
	display: block;
}

.circle.pic span {
	border-radius: 50%;
}

.reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
}

.c {
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
}

.cc {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
}

.row2 {
	width: 48%;
	margin: 0 1% 6%;
}

.row3 {
	width: 31.333%;
	margin: 0 1% 6%;
}

.row4 {
	width: 23%;
	margin: 0 1% 6%;
}

.row5 {
	width: 18%;
	margin: 0 1% 6%;
}

.w20 {
	width: 20%;
}

.w75 {
	width: 75%;
}

.w80 {
	width: 80%;
}

.w90 {
	width: 90%;
}

@media only screen and (max-width: 1024px) {
	.sp-only {
		display: block;
	}

	.pc-only {
		display: none;
	}

	.tex.tc {
		text-align: left;
	}
}

@media only screen and (max-width: 599px) {
	.mb80 {
		margin-bottom: 50px;
	}

	.row2 {
		width: 98%;
		margin: 0 1% 10%;
	}

	.row3 {
		width: 48%;
		margin: 0 1% 10%;
	}

	.row4 {
		width: 48%;
		margin: 0 1% 10%;
	}

	.row5 {
		width: 31.333%;
		margin: 0 1% 10%;
	}

	.w75 {
		width: 100%;
	}

	.sp-c {
		text-align: center;
	}

	.w90 {
		width: 100%;
	}

	.w20 {
		width: 90%;
		margin: 50px auto;
	}

	.more a {
		padding: 10px 15px;
	}

}

/* ##### 共通ここまで ##### */

/* ##### header ##### */
.logo h1 {
	font-size: 12px;
	font-weight: normal;
}

h1[data-element-id] {
	display: block;
}

/* ##### header ##### */

header {
	padding-top: 10px;
	box-sizing: border-box;
}

.header01 {
	max-width: 1420px;
	margin: auto;
}

.header01in {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	padding-bottom: 20px;
}

.header01 .logo {
	margin-right: auto;
}

.logo {
	width: 322px;
	height: auto;
}

.logo a {
	display: block;
}

.logo h1 {
	font-size: 12px;
	font-weight: normal;
}

.h1-inner{
      max-width: 1420px;
    margin: auto;
            padding-left: 10px;
        padding-right: 10px;
}

h1[data-element-id] {
	display: block;
}

.fixinfo {
	position: fixed;
	top: 150px;
	right: 0;
	width: 52px;
	height: 90%;
	z-index: 10;
	max-height: 380px;
}

.fixinfo li.telbox {
	background: #463a41;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.fixinfo .ab_b li.telbox {
  background: #cba646;
}

.fixinfo li.telbox * {
	color: #fff;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	-webkit-text-orientation: upright;
	text-orientation: upright;
	
}

.fixinfo li.telbox a {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	width: 100%;
	height: auto;
	padding: 20px 0;
}

.fixinfo li.telbox dt {
	margin-bottom: 10px;
}

.fixinfo li.mail {
	background: #cba646;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.fixinfo .ab_b li.mail {
  	background: #463a41;
}

.fixinfo li.mail a {
	display: block;
	width: 100%;
	height: auto;
	padding: 10px 0;
}

.fixinfo li.mail .pic {
	width: 20px;
	max-width: 20px;
	margin: auto;
}

@media all and (-ms-high-contrast: none){
  .fixinfo {
    height: 250px;
  }
  }
  
@media only screen and (max-width: 1420px) {
  .header01 {
    padding-left: 10px;
    padding-right: 10px;
  }
}


@media only screen and (max-width: 1024px) {

	/* .fixinfo {
		top: 70px;
	} */
	.fixinfo {
		top: unset;
		right: 0;
		width: 100%;
		bottom: 0;
		height: auto !important;
	}

	.fixinfo li.telbox * {
		-webkit-writing-mode: unset;
		-ms-writing-mode: unset;
		writing-mode: unset;
		-webkit-text-orientation: unset;
		text-orientation: unset;
	}

	.fixinfo ul {
		display: -webkit-box;
		display: flex;
	}

	.fixinfo li.telbox {
		width: 80%;
		border-top-left-radius: 5px;
		border-bottom-left-radius: 5px;
		border-top-right-radius: unset;
	}

	.fixinfo li.mail {
		width: 20%;
		border-bottom-left-radius: unset;
		border-top-right-radius: 5px;
		border-bottom-right-radius: 5px;
	}

	.fixinfo li.telbox a {
		padding: 10px 0;
		-webkit-box-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		align-items: center;
	}

	.fixinfo li.telbox dt {
		margin-bottom: 0;
		margin-right: 5px;
	}

	.fixinfo li.mail a {
		width: 100%;
		height: 100%;
		padding: 0;
		display: -webkit-box;
		display: flex;
		-webkit-box-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		align-items: center;
	}

	.fixinfo li.telbox dd {
		font-size: 24px;
	}
}

@media only screen and (max-width: 599px) {
	header {
		padding-top: 0;
	}

	.header01in {
		padding-bottom: 0px;
	}

	header .header-info {
		width: auto;
	}

	.logo {
		width: calc(100% - 60px);
	}

	.header01 .logo .pic {
		max-width: 300px;
		width: 100%;
		margin: 0;
	}

	.fixinfo li.telbox dd {
		font-size: 18px;
	}
	.h1-inner{
	  padding-right: 45px;
	}
}

.kigou-wrap span {
    display: inline-block;
    line-height: 1;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

@media (max-width: 1024px) {
    .kigou-wrap span {
        -webkit-transform: unset;
        transform: unset;
    }
}

/* ##### header end ##### */

/* ##### nav ##### */
#gnav {
	padding: 20px 0;
}

#gnav .toggle {
	background: #000;
}

#gnav li {
	display: inline-block;
	position: relative;
	padding: 0 30px;
}

#gnav li:after {
	content: "|";
	position: absolute;
	left: 0;
	top: 0;
}

#gnav li:nth-of-type(-n+2):after {
	content: none;
}

#dropmenu {
	width: 100%;
	margin-top: 10px;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: end;
	justify-content: flex-end;
	margin: auto;
}

#dropmenu[data-element-id] {
	flex-wrap: wrap;
}

#dropmenu li a {
	letter-spacing: 1px;
	font-size: 16px;
	box-sizing: border-box;
	padding: 20px 0;
}

#dropmenu li.index-link span {
	display: none;
}

#dropmenu span.drop-btn {
	letter-spacing: 1px;
	font-size: 18px;
	display: block;
	text-align: left;
	border: none;
	box-sizing: border-box;
	position: relative;
	font-weight: bold;
}

#dropmenu span.drop-btn:after {
	content: "\f0d7";
	position: absolute;
	font-family: fontawesome;
	color: #ed6f92;
	font-size: 14px;
	bottom: -20px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.dropmenu {
	*zoom: 1;
}

.dropmenu .dropdown {
	position: relative;
}

#dropmenu .dropdown:hover {
	cursor: pointer;
}

.dropmenu .dropdown ul {
	position: absolute;
	z-index: 9999;
	top: 100%;
	left: 0;
	width: 100%;
	display: none;
	padding-top: 20px;
}

.dropmenu .dropdown:hover ul {
	display: block;
}

#dropmenu[data-element-id] .dropdown ul li {
	overflow: visible;
	height: 45px;
}

#dropmenu .dropdown ul li {
	overflow: hidden;
	width: 100%;
	height: 0;
	-webkit-transition-property: all;
	-webkit-transition: 0.3s linear;
	transition-property: all;
	transition: 0.3s linear;
}

#dropmenu .dropdown ul li a {
	display: block;
	color: #000;
	width: 210px;
	height: 100%;
	padding: 10px;
	box-sizing: border-box;
	background: #fff;
}

#dropmenu .dropdown:hover ul li {
	overflow: visible;
	height: 45px;
	width: 200px;
}

.sab-nav {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 200px;
}

.sab-nav li a {
	width: 100%;
}

#dropmenu .sp-only {
	display: none;
}

#dropmenu[data-element-id] .sp-only {
	display: block;
}

header.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	background: #fff;
	box-shadow: 0px 4px 2px -2px rgba(0, 0, 0, 0.2);
}

header.fixed[data-element-id] {
	position: static !important;
}

#dropmenu[data-element-id] {
	flex-wrap: wrap;
}

[data-element-id] .dropmenu .dropdown ul {
	display: block;
}

[data-element-id] #dropmenu .dropdown ul li {
	overflow: visible;
	height: 45px;
}

#dropmenu[data-element-id] .sp-only {
	display: block;
}


@media only screen and (max-width: 1024px) {

	#gnav {
		width: 100%;
	}

	#gnav .toggle {
		background: #463a41;
	}

	#gnav .accordion-body {
		background: rgba(255, 255, 255, 1);
	}

	#gnav.action .accordion-body {
		width: 60%;
		margin-left: 40%;
	}


	#gnav .accordion-inner {
		height: 100vh;
	}

	.accordion-inner .sns li {
		display: inline-block;
	}

	#dropmenu {
		display: block;
		padding-bottom: 80px;
	}

	#gnav li {
		padding: 0;
	}

	#gnav li:after {
		content: none;
	}

	#gnav ul li a {
		color: #463a41;
	}

	#gnav ul li span {
		height: auto;
		color: #463a41;
		background-color: rgba(255, 255, 255, 0.2);
		display: block;
		padding: 10px;
	}

	.dropmenu .dropdown ul {
		position: static;
		background-color: rgba(78, 69, 64, 0);
		display: block;
		padding-top: 0;
	}

	#dropmenu .dropdown ul li {
		overflow: visible;
		height: auto;
		padding-left: 30px;
	}

	#dropmenu .dropdown ul li:last-of-type {
		border-bottom: none;
	}

	#dropmenu .dropdown ul li a {
		background-color: rgba(78, 69, 64, 0);
		color: #463a41;
	}

	#dropmenu li.index-link img {
		display: none;
	}

	#gnav ul li.index-link span {
		display: block;
		background: none;
	}

	#dropmenu span.drop-btn {
		color: #463a41;
	}

	#dropmenu span.drop-btn:after {
		content: none;
	}

	#dropmenu .dropdown:hover ul li {
		height: auto;
		width: 100%;
	}

	header.fixed {
		background: none;
		box-shadow: none;
		padding: 0;

	}

	#gnav {
		padding: 0;
	}

	#dropmenu .sp-only {
		display: block;
	}

}

@media (max-width: 599px) {
	#gnav.action .accordion-body {
		width: 100%;
		margin-left: 0;
	}
}

/* ##### nav end ##### */

/* ##### footer ##### */

table.infolist {
	width: 100%;
	border-bottom: 2px solid #bcb8b6;
	border-top: 2px solid #bcb8b6;
	border-collapse: collapse
}

table.infolists,
.infolist td,
.infolist th {
	border-collapse: collapse;
}

.infolist td,
.infolist th {
	font-size: 12px;
	text-align: center;
	padding: 5px 3px;
	table-layout: fixed;
	border-right: 2px solid #bcb8b6;
	border-bottom: 2px solid #bcb8b6;
}

.infolist th {
	font-size: 14px;
	padding: 3px 3px 10px 3px;
	background: #f2f1ec;
}

.infolist tr {
	border-bottom: 1px #eee solid;
}

.infolist td:last-of-type,
.infolist th:last-of-type {
	border-right: none;
}

.f-logo .icon {
	width: 52px;
	max-width: 52px;
	float: left;
}

.f-logo .namebox {
	width: calc(100% - 70px);
	float: left;
}

.f-logo .name {
	width: 272px;
	max-width: 272px;
}

.indent {
	padding-left: 1em;
	text-indent: -1em;
}

footer .tenpo p {
	border-bottom-right-radius: 15px;
	border-top-left-radius: 15px;
}

footer .map:after {
	padding-top: 20%;
}

.f-nav li {
	margin: 0 2% 2% 2%;
	position: relative;
}

.f-nav li:before {
	content: url(/upload/tenant_2/107db9a7b91d81177e476f8401b47aa9.png);
	margin-right: 5px;
}

.copy {
	padding: 0 0 20px 0;
}

@media only screen and (max-width: 1024px) {
	footer .box01 .f-info {
		width: 55%;
	}

	footer .tenpo {
		width: 40%;
		margin: 0 auto 30px;
	}

	.f-logo .name {
		width: 196px;
		max-width: 196px;
		margin: 0;
	}

	footer .map:after {
		padding-top: 60%;
	}

	.f-nav li {
		font-size: 12px;
		margin: 0 0 3% 0;
	}

	.copy {
		padding: 0 0 70px 0;
	}
}

@media only screen and (max-width: 599px) {
	table.infolist {
		padding: 0 10px;
	}

	.infolist th.w30 {
		width: 30%;
	}

	footer .box01 {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		flex-direction: column-reverse;
	}

	footer .box01 .f-info {
		width: 100%;
	}

	footer .tenpo {
		width: 80%;
	}

	.copy {
		padding: 0 0 60px 0;
	}

	.f-nav li {
		font-size: 11px;
	}

	footer .map:after {
		padding-top: 80%;
	}
}

/* ##### footer end ##### */

/* ##### top ##### */

/* トップメインイメージ */
.mainimg {
	margin-bottom: 50px;
}

.mainimg .uk-slideshow img {
	height: 100% !important;
}

.mainimg .uk-slideshow {
	width: 100%;
	height: 100%;
}

.mainimg .uk-slideshow li div {
	height: 100%;
}

.mainimg .uk-slideshow li {
	width: 100%;
	overflow: hidden;
	height: 100%;
}

.mainimg .uk-slideshow li img {
	width: 100%;
	height: 100% !important;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center center;
	object-position: center center;
	font-family: 'object-fit: cover; object-position: center center;';
}

.slidebox .inner {
	position: absolute;
	top: 0;
	left: 50%;
	height: 100%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.slidebox .inner .in {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: end;
	justify-content: flex-end;
	flex-wrap: wrap;
	float: right;
}

.slidebox .inner h2 {
	display: inline-block;
	height: 480px;
}

.slidebox .inner h2 span.db {
	background: rgba(255, 255, 255, 0.6);
	margin: 10px;
	padding: 20px 10px;
	display: inline-block;
}
.iphone .slidebox .inner h2 span.db {
	padding: 20px 20px 20px 0;
}

.slidebox .inner .in.box2 {
	-webkit-box-align: end;
	align-items: flex-end;
	max-width: 530px;
	float: left;
	height: 100%;
}

.slidebox .inner .in .slid-contact {
	width: 100%;
}

.slidebox .inner .in .slid-contact .tel .pic {
	width: 25px;
	max-width: 25px;
	display: inline-block;
	margin-top: 10px;
	margin-right: 10px;
	line-height: 25px;
}

.link .pic {
	width: 23px;
	max-width: 23px;
	display: inline-block;
	margin-right: 10px;
}

.link .pic.icon02 {
	margin-top: 5px;
}

.slidebox .inner .in .slid-contact .tel a {
	color: #cba646;
	text-shadow: 3px 3px 0px #fff;
}

.link {
	margin-top: 10px;
}

.link a {
	background: #fff;
	border: 1px solid #cba646;
	padding: 20px 10px;
	width: 100%;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	text-align: center;
	position: relative;
}

.link a:after {
	background: #fff;
}

/*ドットナビ用*/

.uk-dotnav>*>* {
    width: 8px;
    height: 8px;
    border-radius: none;
        background: #463a41;

}
.uk-dotnav>* {
  margin-bottom: 15px;
}
.uk-slidenav-position .uk-slidenav {
  width: 25px;
  display: block !important;
}

.uk-dotnav-contrast>.uk-active>* {
    background: #cba646;
}
.uk-position-bottom {
    bottom: -45px;
}
.mainimg {
     overflow: unset;
 }

.mainimg .uk-slidenav-position {
    position: relative;
    overflow: unset; 
}

.mainimg .uk-slidenav-position:after {
    content: none;
}
.mainimg .uk-slideshow {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.mainimg .uk-slideshow:after {
    padding-top: 55%;
    content: '';
    display: block;
}

@media (max-width: 1024px) {
	.mainimg .uk-slideshow:after {
		padding-top: 80%;
	}

	.slidebox .inner .in.box2 {
		height: 95%;
	}

	.slidebox .inner h2 {
		font-size: 20px;
		margin-right: 35px;
	}

	.slidebox .inner h2 span.db {
		margin: 5px;
		padding: 20px 5px;
	}
	.iphone .slidebox .inner h2 span.db {
	padding: 10px 20px 10px 0;
}

	.slidebox .inner .in .slid-contact dd.tel {
		font-size: 24px;
	}

}

@media (max-width: 599px) {
	.mainimg .slideshow:after {
		padding-top: 66%;
	}

	.slidebox .inner {
		position: unset;
		top: unset;
		left: unset;
		height: auto;
		-webkit-transform: none;
		transform: none;
	}

	.slidebox .inner .in.box01 {
		float: none;
		position: absolute;
		right: 0;
		top: 10px;
		width: auto;
	}

	.slidebox .inner .in.box2 {
		float: none;
		height: auto;
	}

	.slidebox .inner h2 {
		height: 180px;
		font-size: 10px;
		margin-right: 10px;
	}

	.slidebox .inner h2 span.db {
		padding: 15px 5px;
	}
	.iphone .slidebox .inner h2 span.db {
	padding: 5px 10px 5px 0;
}

	.slidebox .inner .in .slid-contact dt {
		font-size: 20px;
	}

	.link a {
		padding: 10px 5px;
	}

	.link p {
		font-size: 12px;
	}

	.link {
		width: 48%;
	}

	.link .pic {
		margin: 0 10px 0 0;
	}

}

.mainimg .uk-slideshow {
	width: 100%;
}

/*共通*/

.bg01 {
	background: url(/upload/tenant_2/5769582eddee84662dd6fd386fc4607e.webp);
}

.fs-ygo {
	font-family: "游ゴシック", YuGothic, Hiragino Sans, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
}

.tit01_sub {
	text-align: center;
}

.tit01_sub .icon {
	margin: 0 auto;
}

.tit01_sub .sub {
	display: block;
	line-height: 14px;
}

.c-oh {
	color: #c69c6d;
}

.tit02 {
	
/*   background: url(/upload/tenant_2/c1e8b7e3d1d90caebce28b0ef28c3812.png) no-repeat center top;
padding-top: 45px; */
	text-align: center;
}

.tit02 .iddummy {
	height: auto;
	font-family: "Sawarabi Mincho", serif;
}

.tit02 .iddummy span {
	line-height: 14px;
}

.tit02 .sub {
	display: block;
	width: 100%;
	margin-top: -10px;
}

.tit02 .sub .in {
	display: inline-block;
	background: url(/upload/tenant_2/02236196e2ef084a6487a8d91289c700.webp) no-repeat;
	width: 158px;
	height: auto;
	background-size: 100% 100%;
	line-height: 0;
	padding: 15px 0;
	margin-top: 10px;
}

.tit03 .sub {
	display: block;
	color: #fff;
	line-height: 14px;
}

.tit03 {
	color: #fff;
	background: url(/upload/tenant_2/00420dcaa0a9b58632b42caf4fc40f3c.webp) no-repeat;
	background-size: 100% 100%;
	width: 236px;
	height: 101px;
}

.shadow {
	box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.1);
	background: #fff;
}

.pageheader .titbox {
	width: 50%;
	max-width: 340px;
	position: absolute;
	left: 15%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 50px 10px;
}

.pageheader .titbox h3 {
	margin: 0;
}

.pageheader .pic {
	margin: 0 0 0 auto;
	width: 70%;
}

.pageheader .pic .of45 {
	max-height: 350px;
}

.lline_tit {
	border-left: 3px solid #cca745;
	padding-left: 10px;
	line-height: 18px;
}

@media only screen and (max-width: 1024px) {
	.tit02 .sub {
		margin-top: -5px;
	}

	.pageheader .titbox {
		max-width: 245px;
		left: 4%;
		padding: 26px 10px;
	}

	.pageheader .pic {
		width: 80%;
	}

	.pageheader .pic .of45:before {
		padding-top: 50%;
	}
}

@media only screen and (max-width: 599px) {
	.pageheader .pic {
		width: 100%;
	}

	.pageheader .titbox {
		left: 50%;
		width: 80%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}

	.pageheader .pic .of45:before {
		padding-top: 85%;
	}

}

.top-first h3 .pic {
	max-width: 24px !important;
	line-height: 30px;
}

/*top-item*/
.itembox li {
	position: relative;
}

.itembox li .in {
	z-index: 2;
	position: relative;
	padding-bottom: 20px;
}

.itembox li:after {
	position: absolute;
	content: "";
	background: #fff;
	width: 100%;
	height: calc(100% - 50px);
	left: 0;
	bottom: 0;
	z-index: 1;
}

.itembox .pic {
	width: 110px;
	margin: 0 auto 10px;
	position: relative;
}

/* .itembox .pic:before {
  position: absolute;
  right: -30px;
  top: -10px;
  content: url(/upload/tenant_2/6505a18d7f81b93347afeea93e773af6.png);
}
 */
.itembox .pic span {
	border-radius: 50%;
}

.itembox dl {
	padding: 0 20px;
}

.more.brak a {
	display: block;
	background: #463a41;
	border: 2px solid #463a41;
}

.more.brak a:before {
	background: #8a7581;
}

.more.brak a:after {
	background: #463a41;
}

.tabin {
	display: none;
}

[data-element-id] .tabin {
	display: block;
}

.top-item .more {
  margin: 0 auto 50px;
}

@media only screen and (max-width: 1024px) {
	.itembox li {
		margin-bottom: 50px;
	}

	.itembox dl {
		padding: 0 10px;
	}

	.tabin {
		display: block;
	}

}

@media only screen and (max-width: 599px) {}

/*top-docter*/
.top-docter {
	width: 100%;
}

.top-docter .tbox {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	padding: 30px;
}

.top-docter .tbox .boxin {
	width: 95%;
	max-width: 370px;
	margin-left: auto;
}

.top-docter .more {
	max-width: 140px;
}

.top-docter .comment {
	position: absolute;
	width: 104px;
	height: 221px;
	background: url(/upload/tenant_2/b5f3325ec70bc591504c835470b286e9.png) no-repeat;
	background-size: 100% 100%;
	top: 10%;
	left: 40%;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	-moz-text-align-last: left;
	text-align-last: left;
	padding-right: 15px;
}

@media only screen and (max-width: 1024px) {
	.top-docter .tbox {
		width: 100%;
	}

	.top-docter .tbox .boxin {
		max-width: none;
	}

	.top-docter .tbox .boxin .tex {
		text-align: center;
	}

	.top-docter .pic {
		width: 80%;
		margin: auto;
	}

	.top-docter .tabin {
		width: 100%;
		margin-bottom: 50px;
	}

	.top-docter .comment {
		width: 104px;
		height: 200px;
		left: 20%;
	}
}

@media only screen and (max-width: 599px) {
	.top-docter .comment {
		width: 80px;
		height: 120px;
		top: 5%;
		left: 15%;
		font-size: 10px;
	}
}

/*top-faq*/
.top-faq .inner {
	padding: 20px 0;
}

.bg-gry {
	background: #f2f1ec;
}

.faqbox li {
	width: calc(20% - 15px);
	margin: 0 7px 15px;
	height: 58px;
}

.faqbox li a {
	height: 100%;
	border: 2px solid #fff;
	background: #fff;
	color: #463a41;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	font-weight: bold;
}

.faqbox li.more a:hover:after {
	background: #fff;
}

.faqbox li a span {
	display: block;
	width: 100%;
}

.faqbox li a span:after {
	content: "";
	position: absolute;
	background: url(/upload/tenant_2/107db9a7b91d81177e476f8401b47aa9.png) no-repeat;
	width: 11px;
	height: 11px;
	right: -11px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
	[data-element-id] .top-docter .tabin {
		position: relative;
	}
		[data-element-id] .top-docter .tabin:before {
		  position: absolute;
		  content: "↓こちらはスマートフォン用のリンクボタンです。↓";
		  color: #fff;
		  background: #000;
		  top: -30px;
		  left: 0;
		  width: 350px;
		  height: auto;
		  display: block;
}
@media only screen and (max-width: 1024px) {
	.faqbox li {
		width: calc(33.3333% - 15px);
	}
}

@media only screen and (max-width: 599px) {
	.faqbox li {
		width: calc(50% - 15px);
	}

	.faqbox li a {
		font-size: 10px;
		padding: 10px 15px;
	}

	.faqbox li a span:after {
		right: -10px;
	}
}

/*top-blog*/
.top-blog h3 {
	margin-bottom: 20px;
}

.top-blog .w48 {
	position: relative;
	padding: 30px;
}

.top-blog .w48 .boxin {
	position: relative;
	z-index: 2;
}

.top-blog .w48:before {
	position: absolute;
	content: "";
	background: #fff;
	width: 100%;
	height: calc(100% - 30px);
	left: 0;
	bottom: 0;
}

.top-blog .more {
	width: 89px;
	margin: 0;
}

.top-blog .more a {
	padding: 10px;
}

.top-blog .more a span {
	display: block;
	width: 100%;
	padding-left: 10px;
}

.top-blog .more a span:after {
	content: "";
	position: absolute;
	background: url(/upload/tenant_2/2a1beaad000a3ab444bfa04a26b76427.png) no-repeat;
	width: 11px;
	height: 11px;
	left: 5px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.top-blog li a {
	padding: 20px 0;
	border-bottom: 1px dotted #000;
	display: block;
}

.top-blog li a:hover {
	opacity: 0.6;
}

.top-blog li dt {
	margin-bottom: 10px;
}

@media only screen and (max-width: 1024px) {
	.top-blog .w48 {
		width: 80%;
		margin: 0 auto 50px;
	}


}

@media only screen and (max-width: 599px) {
	.top-blog .w48 {
		width: 100%;
		padding: 10px;
	}

	.top-blog h3 {
		font-size: 20px;
		width: 142px;
		height: 73px;
	}
}

/*top-infobox*/

.top-infobox .inner {
	position: absolute;
	left: 50%;
	top: 0;
	height: 100%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 5;
	display: -webkit-box;
	display: flex;
}

.top-infobox dl {
	width: 100%;
	max-width: 550px;
	margin: auto;
}

.top-infobox dd.tel .pic {
	max-width: 20px;
	width: 20px;
	display: inline-block;
	margin-top: 10px;
	margin-right: 10px;
	line-height: 20px;
}

.top-infobox dd.tel a {
	color: #fff;
}

.multip {
	position: relative;
}

.multip:after {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: #ffe9be;
	mix-blend-mode: multiply;
}

[data-element-id] .multip:after {
	content: none;
}

/* .tit02.white {
  background: url(/upload/tenant_2/909bb4b55f45bf1444e3a94a2e10f194.png) no-repeat;
  background-position: center top;
} */

.top-infobox .pic.bg {
	max-height: 460px;
}

@media only screen and (max-width: 1024px) {

	.top-infobox .of45:before {
		padding-top: 62%;
	}

	.top-infobox dd.tel a {
		font-size: 24px;
	}
}

@media only screen and (max-width: 599px) {
	.top-infobox .of45:before {
		padding-top: 100%;
	}

}

@media all and (-ms-high-contrast: none) {

	.multip:after {
		background: rgba(255, 250, 240, 0.3);
	}
}

/* ##### トップここまで ##### */

/* ##### ブログ共通 ##### */
.i09 {
	width: 38px;
	height: 39px;
	max-width: 39px;
}

.one-line {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: block;
}

.blog-list .category span,
.blog_detail .category span {
	display: inline-block;
	background: #c69c6d;
	padding: 2px 10px;
	color: #fff;
	margin: 0 5px 10px 0;
}

.blog-list li a {
	display: block;
	padding: 10px;
}

.blog-list li a:hover {
	opacity: 0.6;
}

.blog-list li .more {
	margin: 20px auto 0;
}

.blog-list li dd.tr {
	color: #8e8e8e;
}

.side-nav {
	margin-bottom: 30px;
}

.side-nav dd ul {
	margin: 30px 50px;
}

.side-nav dd a {
	padding: 5px 0;
	box-sizing: border-box;
	display: block;
	position: relative;
}

.side-nav dd a:before {
	content: url(/upload/tenant_2/107db9a7b91d81177e476f8401b47aa9.png);
	margin-right: 5px;
}

.side-nav h4 {
	background: url(/upload/tenant_2/c5e3922945658de84f043e1ce926ae06.png) no-repeat;
	background-size: 100% 100%;
	width: 218px;
	height: 46px;
	margin: -23px auto 0;
	color: #fff;
	font-weight: bold;
}

/*ページャー*/
.pagenav {
	padding-top: 30px;
}

.pagenav li {
	margin: 0 5px;
}

.pagenav li a {
	display: inline-block !important;
	width: 35px;
	line-height: 35px;
	text-align: center;
	font-size: 35px;
	color: #463a41;
font-family: 'M PLUS Rounded 1c', sans-serif;
font-weight: 100;
	-webkit-transform: rotate(0.03deg);
	transform: rotate(0.03deg);
	/* シャギーを防ぐ指定 */
	font-weight: 400;

}

.pagenav li.st a {
	background: #463a41;
	color: #fff;
}

.blog_detail .boxline {
	padding: 50px;
}

.blog_detail .box01 {
	text-align: center;
	margin-bottom: 3%;
}

.blog_detail .tit {
	padding-bottom: 10px;
}

.blog_detail .box01 .category,
.blog_detail .box01 .date {
	display: inline-block;
	padding: 0 10px;
}

.more._blog a {
	background: #cba646;
}

.more._blog a:before {
	background: #ffdb7d;
}

.more._blog a:after {
	background: #cba646;
}


@media only screen and (max-width: 1024px) {
	.blog-list .category span {
		font-size: 8px;
		margin-bottom: 5px;
		padding: 0px 8px;
	}

	.blog-list .category {
		margin-bottom: 10px;
	}
}

@media only screen and (max-width: 599px) {
	.side-nav {
		width: 100%;
	}

	.side-nav dd ul {
		margin: 20px 25px;
	}

	.side-nav dd ul li {
		width: 48%;
	}

	.blog_detail .boxline {
		padding: 15px;
	}
}

/*ブログ共通(ニュース一覧部分)*/
.blog-list.news li {
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: #999 solid 1px;
	box-sizing: border-box;
}


/* ##### ブログ共通ここまで ##### */

/* ##### 【料金表　1　】 ##### */
.menubox1 dl {
	border-bottom: 1px solid #000;
	padding: 10px 0;
	box-sizing: border-box;
}

.menubox1 dd {
	text-align: right;
}

@media only screen and (max-width: 599px) {
	.menubox1 div {
		margin-bottom: 30px;
	}
}

/* ##### 【料金表　1　】ここまで ##### */
/* ##### 【料金表　2　】 ##### */
.menubox2 {
	margin-bottom: 50px;
}

.menubox2 h3 {
	text-align: center;
	border-bottom: 1px solid #000;
	margin-bottom: 10px;
}

.menubox2 dd dl {
	border-bottom: 1px solid #000;
	padding: 10px 0;
	box-sizing: border-box;
}

.menubox2 dd dl dd {
	text-align: right;
}

@media (max-width: 599px) {
	.menubox2 h4 {
		text-align: center;
		margin-bottom: 0;
	}
}

/* ##### 【料金表　2　】ここまで ##### */
/* ##### 【左右のカラムが交互に代わるブロック】 ##### */
.crossbox li {
	margin-bottom: 50px;
}

.crossbox li:nth-of-type(odd) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
}

@media (max-width: 599px) {
	.crossbox li:nth-of-type(odd) {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
	}

	.crossbox .tex {
		margin-top: 20px;
	}
}

/* ##### 【左右のカラムが交互に代わるブロック】ここまで ##### */

/* ##### 【スタイル詳細】 ##### */
.gallery .main-image {
	width: 100%;
	margin-bottom: 15px;
}

.gallery .thumb-img {
	width: calc(33.33333% - 10px);
	-webkit-transition: 0.3s linear;
	transition: 0.3s linear;
}

.gallery .thumb-img:nth-of-type(3) {
	margin: 0 15px;
}

.gallery .thumb-img:hover {
	cursor: pointer;
	opacity: 0.8;
}

.profile-box dl {
	padding: 10px 0;
	box-sizing: border-box;
	border-bottom: #999 solid 1px;
	margin-bottom: 10px;
}

.profile-box dt {
	width: 200px;
}

.profile-box dd {
	width: calc(100% - 200px);
}


@media only screen and (max-width: 1024px) {
	.profile-box dt {
		width: 130px;
	}

	.profile-box dd {
		width: calc(100% - 130px);
	}

	.s-data.w50 {
		width: 60%;
	}
}

@media only screen and (max-width: 599px) {
	.s-data {
		margin-top: 30px;
	}

	.profile-box .stylist-data .pic {
		width: 100%;
	}

	.profile-box .stylist-data .w25 {
		width: 25%;
	}

	.profile-box .stylist-data .w70 {
		width: 70%;
	}

	.gallery .pic {
		width: 100%;
	}
}

/* ##### 【スタイル詳細】ここまで ##### */

/* ##### よくある質問 ##### */
.qa-list {
	margin-bottom: 20px;
}

.qa-list dt.acc-btn {
	background: #463a41;
	border-radius: 5px;
	padding: 10px;
}

.qa-q {
	font-weight: bold;
	color: #cba646;
	margin-right: 10px;
	box-sizing: border-box;
	text-align: center;
	display: block;
	width: 40px;
	height: 40px;
	padding-top: 8px;
}

.qa-list dt.acc-btn div {
	font-size: 16px;
	-webkit-box-sizing: border-box;
	position: relative;
	color: #fff;
	display: inline-block;
	width: calc(100% - 60px);
}

.qa-list dt.acc-btn .op {
	position: relative;
	width: 10px;
	display: block;
	height: 10px;
}

.qa-list dt.acc-btn .op:before {
	position: absolute;
	content: "";
	width: 10px;
	height: 1px;
	background: #cba646;
	right: 0;
	top: 4px;
}

.qa-list dt.acc-btn .op:after {
	position: absolute;
	content: "";
	width: 1px;
	height: 10px;
	background: #cba646;
	right: 4px;
	top: 0;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.qa-list dt.acc-btn.open .op:after {
	-webkit-transform: rotateZ(-90deg);
	transform: rotateZ(-90deg);
}

.qa-list dt.acc-btn:hover {
	cursor: pointer;
}

.qa-list dd.flex {
	font-size: 14px;
	padding: 20px;
	box-sizing: border-box;
	position: relative;
	background: #fff;
	border-bottom: 1px solid #e8e4e4;
	border-left: 1px solid #e8e4e4;
	border-right: 1px solid #e8e4e4;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.qa-list .a_box02 {
	padding: 20px;
}

.qa-list .a_box02 dt {
	font-size: 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ddd;
}

@media only screen and (max-width: 1024px) {}

@media only screen and (max-width: 599px) {
	.qa-list dt div {
		font-size: 14px;
	}

	.qa-list dd {
		padding: 10px;
	}

	.qa-q {
		width: 30px;
		height: 30px;
	}

	.qa-list dt div {
		width: calc(100% - 50px);
		font-size: 12px;
	}

	.qa-list .a_box02 dd {
		padding: 0;
	}

	.qa-list .a_box03 dd {
		padding: 0;
	}
}

/* ##### よくある質問 ここまで ##### */

/* ##### お問い合わせ ##### */
.contactbox01 .box02 .w90 {
	background: #fff;
	margin: 50px 0 0;
	padding: 50px;
}

.contact-list {
	margin-bottom: 20px;
	padding-bottom: 20px;
	box-sizing: border-box;
}

.contact-list dt {
	width: 250px;
	font-size: 15px;
}

.contact-list dd {
	width: calc(100% - 250px);
}

.contact-list input,
.contact-list textarea,
.contact-list select {
	border: none;
	background: #f6f6f6;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
}

.contact-btn button {
	margin: 50px auto 0 auto;
	width: 260px;
	position: relative;
	color: #fff;
	text-align: center;
	text-decoration: none;
	-webkit-transition: .3s;
	transition: .3s;
	display: block;
	border: 2px solid #c69c6d;
	border-radius: 5px;
	padding: 10px 20px;
	background: #c69c6d;
}

.contact-btn button span {
	position: relative;
	z-index: 5;
	width: 100%;
	display: block;
}

.contact-btn button:after,
.contact-btn button:before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: '';
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
}

.contact-btn button:before {
	background: #edcca6;
	-webkit-transform-origin: right top;
	transform-origin: right top;
}

.contact-btn button:after {
	background: #c69c6d;
	opacity: 0;
	-webkit-transform-origin: left top;
	transform-origin: left top;
	-webkit-transition: opacity .3s, -webkit-transform 0s .3s;
	transition: opacity .3s, -webkit-transform 0s .3s;
	transition: transform 0s .3s, opacity .3s;
	transition: transform 0s .3s, opacity .3s, -webkit-transform 0s .3s;
}

.contact-btn button:hover {
	cursor: pointer;
}

.contact-btn button:hover:before {
	-webkit-transform-origin: left top;
	transform-origin: left top;
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transition: -webkit-transform .3s;
	transition: -webkit-transform .3s;
	transition: transform .3s;
	transition: transform .3s, -webkit-transform .3s;
	z-index: 1;
}

.contact-btn button:hover:after {
	opacity: 1;
	-webkit-transform-origin: right top;
	transform-origin: right top;
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transition: opacity .3s, -webkit-transform .3s .3s;
	transition: opacity .3s, -webkit-transform .3s .3s;
	transition: transform .3s .3s, opacity .3s;
	transition: transform .3s .3s, opacity .3s, -webkit-transform .3s .3s;
	z-index: 1;
}

.contactbox02 .box01 {
  background: #fff;
  padding: 50px;
  margin-top: 50px;
}

@media only screen and (max-width: 1024px) {
	.contact-list dt {
		margin-bottom: 10px;
	}

	.contact-list dt,
	.contact-list dd {
		width: 100%;
	}

	.contact-list .must {
		display: inline-block;
		margin-left: 10px;
	}.contactbox02 .box01 {
  padding: 30px;
}


}

@media only screen and (max-width: 599px) {
	.contactbox01 .box02 .w90 {
		padding: 20px;
	}.contactbox02 .box01 {
  padding: 30px;
}
}

/* ##### お問い合わせ　ここまで ##### */

/* ##### 医院紹介 ##### */

.tit01_sub .icon.i01 {
	width: 28px;
	max-width: 28px;
}

.shadow.p10 {
	padding: 10px;
}

.clinicbox01 dd * {
	font-size: 12px;
}

.clinicbox01 dd li {
	margin-bottom: 5px;
}

.clinicbox01 li .pic {
	margin-bottom: 15px;
}

.clinicbox01 dt {
	margin-bottom: 15px;
}

.tit01_sub .sub.nami {
	position: relative;
}

.tit01_sub .sub.nami:after {
	position: absolute;
	content: "";
	background: url(/upload/tenant_2/c60117a043195e050d32212571a4a5cd.png) no-repeat;
	width: 120px;
	height: 23px;
	bottom: -30px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.clinicbox02 .cbox01 {
	height: 430px;
}

.clinicbox02 .cbox01 .message {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: end;
	justify-content: flex-end;
	margin-top: -50px;
}

.clinicbox02 .cbox01 .message li {
	position: relative;
	margin: 10px;
	display: inline-block;
	height: auto;
}

.clinicbox02 .cbox01 .message li.m01:before {
	content: url(/upload/tenant_2/9e60745618322e38071fff91fe857e94.webp);
	display: block;
	position: absolute;
	top: -60px;
	left: 50px;
}

.clinicbox02 .cbox01 .message li.m02 {
	margin-top: 50px;
}

.clinicbox02 .cbox01 .message li.m02 span {
	position: relative;
}

.clinicbox02 .cbox01 .message li.m02:before {
	content: url(/upload/tenant_2/ffe31ddb9f713a07c053e42dceaa4fdc.webp);
	display: block;
	position: absolute;
	top: -40px;
	left: 20px;
}

.clinicbox02 .cbox01 .message li.m02 span:after {
	content: url(/upload/tenant_2/f1466b6aabe1510779509ede521765c7.webp);
	display: block;
	position: absolute;
	bottom: -30px;
	left: -20px;
}

.clinicbox02 .cbox01 .pic {
	margin-top: auto;
}

.bdr5 {
	border-radius: 5px;
}

.bdb_dot {
	border-bottom: 2px dotted #6c6268;
}

.clinicbox03 .inner {
	padding: 50px 3%;
}

.koko {
	position: relative;
}

.koko:after {
	position: absolute;
	content: url(/upload/tenant_2/da9902fa8adfaaa77ac4315c7033cee5.webp);
	right: -26px;
	top: -10px;
}

.clinicbox03 {
	padding: 50px 0;
}

.clinicbox03 .inner h3 {
	padding-bottom: 5px;
}

.clinicbox03 li {
	margin-bottom: 10px;
}

.clinicbox03 .history li {
	padding-bottom: 10px;
	border-bottom: 1px solid #d8d1d5;
}

.clinicbox03 .history li:last-of-type {
	border-bottom: none;
}

@media only screen and (max-width: 1024px) {
	.clinicbox02 .cbox01 {
		width: 100%;
		max-width: none;
		height: 330px;
	}

	.clinicbox02 .cbox01 .pic {
		width: 70%;
	}

	.clinicbox02 .tex {
		width: 100%;
	}

	.clinicbox02 .cbox01 .message li {
		font-size: 14px;
	}

	.clinicbox02 .cbox01 .message {
		width: 30%;
	}

	.clinicbox03 .inner .w45 {
		width: 100%;
		margin: 0 0 50px 0;
	}

	.clinicbox03 .inner .w45:last-of-type {
		margin: 0;
	}
}

@media only screen and (max-width: 599px) {
	.clinicbox01 li {
		width: 100%;
	}

	.clinicbox01 li .pic {
		width: 100%;
	}

	.clinicbox02 .cbox01 {
		margin: 30px 0 0 0;
	}

	.clinicbox02 .cbox01 .message ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		flex-direction: column-reverse;
	}

	.clinicbox02 .cbox01 .message li {
		-webkit-writing-mode: unset;
		-ms-writing-mode: unset;
		writing-mode: unset;
		text-align: center;
	}

	.clinicbox02 .cbox01 .message {
		width: 100%;
		margin-top: 0;
	}

	.clinicbox02 .cbox01 {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		flex-direction: column-reverse;
		height: auto;
	}

	.clinicbox02 .cbox01 .message li.m01:before {
		left: unset;
		right: 0;
		top: -50px;
	}

	.clinicbox02 .cbox01 .message li.m02 span:after {
		left: unset;
		right: -20px;
	}

	.clinicbox02 .cbox01 .message li.m02:before {
		left: -20px;
	}

	.clinicbox02 .cbox01 .pic {
		width: 100%;
		margin: 30px 0 0;
	}
}

/* ##### 医院紹介ここまで ##### */

/* ##### ピル全体について ##### */

.boxline {
	border: 1px solid#cba646;
	height: 100%;
}

.shadow._line {
	padding: 7px;
}

.pillbox01 .boxline {
	padding: 20px;
}

.pillbox01 li {
	margin: 0 auto 5%;
}

.pillbox01 li dl {
	margin-top: -40px;
}

.pillbox01 li dt .koko {
	background: #cba646;
	border-radius: 5px;
	color: #fff;
	font-weight: normal;
	display: inline-block;
	padding: 5px 10px;
}

.pillbox01 li dt+dd {
	margin: 15px 0;
}

.i02 {
	max-width: 30px;
	width: 30px;
	line-height: 30px;
}

.pillbox02 .box01 {
	padding: 30px 30px 15px;
}

.tit04 {
	border-left: 5px solid #463a41;
	padding-left: 10px;
}

.w90 {
	width: 90%;
	margin: auto;
}

.ribon01box .boxline {
	padding: 50px;
}

.ribon01 {
	margin: -70px 0 50px;
	text-align: center;
}

.ribon01 .tit {
	background: url(/upload/tenant_2/6427496bcc8e6e844d614c602e8d8429.webp) no-repeat;
	display: inline-block;
	background-size: 100% 100%;
	min-height: 43px;
	text-align: center;
	color: #fff;
	min-width: 326px;
	padding: 3px 40px 0;
	font-weight: 300;
}

.ribon02 {
	margin: -70px 0 50px;
	text-align: center;
}

.ribon02 .tit {
	background: url(/upload/tenant_2/49a2f4f302c0f26fb4ead95d7dd2633f.webp) no-repeat;
	display: inline-block;
	background-size: 100% 100%;
	min-height: 43px;
	text-align: center;
	color: #fff;
	min-width: 326px;
	padding: 3px 20px 0;
	font-weight: 300;
}

.ribon01box.ribon02box .boxline {
	border: 1px solid #c0c0c0;
}

.nobox li {
	margin-bottom: 50px;
}

.nobox li .no {
	width: 50px;
}

.nobox li .no span {
	width: 40px;
	height: 40px;
	background: #cba646;
	color: #fff;
	border-radius: 5px;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	font-weight: 400;
}

.nobox li dt .tit {
	width: calc(100% - 50px);
	font-weight: 400;
}

.nobox li dt {
	margin-bottom: 10px;
}

.nobox li dd {
	padding-left: 50px;
}

.pinhane02 li {
	display: inline-block;
	position: relative;
	margin-right: 14px;
	padding-left: 30px;
	margin-bottom: 20px;
	font-weight: 400;
}

.pinhane02 li:before {
	content: url(/upload/tenant_2/615910943e23fe12cbe96e69ca78c465.webp);
	position: absolute;
	left: 0;
	top: 3px;
}

.checkbox li {
	position: relative;
	padding-left: 30px;
}

.checkbox li:after {
	position: absolute;
	content: url(/upload/tenant_2/1381b3c1b880ac2ef7146484ca1ae1de.png);
	left: 0;
	top: 0;
}

.pillbox02._bg {
	position: relative;
}

.pillbox02._bg:after {
	position: absolute;
	content: "";
	background: url(/file_contents/168/get);
	width: 100%;
	height: 90%;
	top: 10%;
	left: 0;
	z-index: -1;
}

.pillbox02 .box04 .picbox {
	width: 20%;
	max-width: 147px;
	margin-right: -20px;
	position: relative;
	z-index: 2;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: end;
	align-items: flex-end;
}

.pillbox02 .box04 .w80 {
	width: calc(80% + 20px);
	border-radius: 5px;
	border: 2px solid #c0c0c0;
	padding: 30px 50px;
	background: #fff;
}

.pillbox02 table {
	width: 100%;
}

.pillbox02 table,
.pillbox02 td,
.pillbox02 th {
	border: 1px solid #e8e4e4;
	border-collapse: collapse;
}

.pillbox02 td,
.pillbox02 th {
	padding: 20px;
	background: #fff;
}

.pillbox02 th {
	text-align: center;
	font-weight: normal;
}

.pillbox02 .box05 tr:nth-of-type(even) th,
.pillbox02 .box05 tr:nth-of-type(even) td {
	background: #f7f6f2;
}

.pillbox02 th.bg-th {
	background: #f7f6f2;
}

.tit05 {
	border-left: 3px solid #cca745;
	padding-left: 10px;
	line-height: inherit;
}

.bdr5img img {
	border-radius: 5px;
}

.pillbox04 .box01 .t-box {
	padding: 20px 20px 20px 0;
}

.pillbox04 .box01 .pic img {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.bg02 {
	background: #f7f6f2;
}

.pillbox05 .inner {
	padding: 80px 0;
}

.pillbox05 h3 .tit {
	margin-top: -10px;
}

.pillbox05 .boxline {
	padding: 50px;
}

.pillbox02.pillbox03 .box01,
.pillbox04 .pillbox02 .box01 {
	padding: 0;
}

@media only screen and (max-width: 1024px) {
	.pillbox01 li {
		margin: 0 auto 7%;
	}
}

@media only screen and (max-width: 599px) {
	.pillbox01 li {
		margin: 0 auto 10%;
	}

	.ribon01box .boxline {
		padding: 50px 15px 0;
	}

	.w90 {
		width: 100%;
	}

	.ribon01 .tit,
	.ribon02 .tit {
		min-width: 100%;
		width: 100%;
		padding: 10px 20px 0;
	}

	.ribon01,
	.ribon02 {
		font-size: 16px;
		margin: -70px 0 25px;
	}

	.pillbox02 .box04 .w80 {
		padding: 15px 20px;
	}

	.pillbox02 td,
	.pillbox02 th {
		width: 100%;
		display: block;
		margin: 0;
	}

	.pillbox04 .pic {
		width: 100%;
	}

	.pillbox04 .box01 .t-box {
		padding: 15px;
	}

	.pillbox05 .boxline {
		padding: 50px 15px 0;
	}

	.pillbox03 .pic {
		width: 100%;
		margin: 0 auto 30px;
	}

	.nobox li dd {
		padding-left: 0;
	}

	.nobox li {
		margin-bottom: 30px;
	}

	.nobox li .no span {
		width: 30px;
		height: 30px;
		font-size: 18px;
	}

	.nobox li .no {
		width: 40px;
	}

	.nobox li dt .tit {
		width: calc(100% - 40px);
	}

	.pillbox04 .box01 .pic img {
		border-top-left-radius: 5px;
		border-bottom-left-radius: 0;
		border-top-right-radius: 5px;
	}
}

/* ##### ピル全体についてここまで ##### */


/* ##### 治療費 ##### */
.pricebox01 {
	padding: 80px 0;
}

.pricebox01 .inner {
	background: #fff;
	padding: 50px;
}

.pricebox01 h3 .sub {
	position: relative;
}

.pricebox01 h3 .sub:after {
	position: absolute;
	content: "";
	background: #cba646;
	height: 4px;
	width: 60px;
	bottom: -10px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

table.pricetable01,
.pricetable01 td,
.pricetable01 th {
	border: 1px solid #e8e4e4;
	border-collapse: collapse;
}

table.pricetable01 {
	width: 100%;
}

.pricetable01 td,
.pricetable01 th {
	padding: 15px 20px;
	font-size: 16px;
}

.pricetable01 th {
	width: 80%;
	text-align: left;
	font-weight: normal;
}

.pricetable01 td {
	width: 20%;
	text-align: center;
}

.pricetable01 tr:nth-of-type(even) th,
.pricetable01 tr:nth-of-type(even) td {
	background: #f7f6f2;
}

.pricebox01 li.box01 {
	margin-bottom: 80px;
}

table.pricetable02,
.pricetable02 td,
.pricetable02 th {
	border: 1px solid #e8e4e4;
	border-collapse: collapse;
}

table.pricetable02 {
	width: 100%;
}

.pricetable02 td,
.pricetable02 th {
	padding: 10px 20px;
	font-size: 16px;
}

.pricetable02 th {
	text-align: left;
	font-weight: normal;
}

.pricetable02 td {
	width: 20%;
}

.bg-th {
	background: #f7f6f2;
}

.pricetable02 tr td:last-of-type {
	text-align: center;
}

/* table.pricetable03 {
  width: 100%;
} */

table.pricetable03 , .pricetable03 td, .pricetable03 th {
border: 1px solid #e8e4e4;
	border-collapse: collapse;
}

.pricetable03 th {
	background: #f2eedf;
		width: 100%;
			padding: 10px 20px;
}

 .pricetable03 td .tdin {
 	padding: 10px 20px;
 	height: 100%;
} 
/* 
.pricetable03 tbody tr:nth-of-type(even) td {
  background: #f7f6f2;
} */
.pricetable03 tr td:last-of-type {
  text-align: center;
}
.pricetable03 tr td:last-of-type dl+dl {
   border-top: 1px solid #e8e4e4;
}
 .pricetable03 tr td:last-of-type dl dt, .pricetable03 tr td:last-of-type dl dd {
  padding: 5px;
} 
.pricetable03 tr td:last-of-type dl * {
  text-align: center;
}
.titbox01 {
  border-top: 1px solid #e8e4e4;
  border-left:1px solid #e8e4e4;
  border-bottom: 1px solid #e8e4e4;
  padding: 10px 20px;
  font-weight: 600;
  /* color: #cba646; */
}
.titbox02 {
  border-top: 1px solid #e8e4e4;
  border-right: 1px solid #e8e4e4;
  border-bottom: 1px solid #e8e4e4;
  padding: 10px 20px;
  /* color: #cba646; */
}

/* .priceitembox:nth-of-type(even) {
    background: #f7f6f2;
} */

.tdthbox dl+dl {
     border-top: 1px solid #e8e4e4;
}
.tdthbox dl dd, .tdtdbox dl dd {
  text-align: center;
  border-left: 1px solid #e8e4e4;
   padding: 10px 5px;
   font-size: 12px;
}
.tdthbox dl dt {
 padding: 10px 5px 10px 10px;
     font-size: 12px;
}

.totalbox {
  border-top: 2px dotted #ddd;
  padding-top: 10px;
}

.tdtdbox dl+dl {    
  border-top: 1px solid #e8e4e4;
}
.tdtdbox dt {
  padding: 10px 5px 10px 10px;
}

/* .tdthbox dl:nth-of-type(even), .tdtdbox dl:nth-of-type(even) {
 background: #f7f6f2;
} */

.tabpronly {
  display: none;
  padding: 10px; 
  border-left:  1px solid #e8e4e4;
  border-right:   1px solid #e8e4e4;
  text-align: center;

}

[data-element-id] .tabpronly {
  display: block;
  position: relative;
}
[data-element-id] .tabpronly:after {
  content: "←スマートフォン用の合計金額です。";
  background: #000;
  color: #fff;
}

[data-element-id] .sp-only {
  display: block;
}
span.tl {
  text-align: left !important;
}
@media only screen and (max-width: 1024px) {
	.pricetable01 th {
		width: 70%;
	}

	.pricetable01 td {
		width: 30%;
	}

	.pricetable02 td {
		width: 30%;
	}
		.titbox01 {
    border-right:  1px solid #e8e4e4;
    border-bottom:none;
    width: 100%;
}		
.titbox02 {
    border-left:  1px solid #e8e4e4;
    width: 100%;
    margin-top: 30px !important;
}

.pricetable03 {
  width: 100%;
}
.priceitembox .w80 {
  width: 100%;
}
td.pc-only {
  display: block;
}

}

@media only screen and (max-width: 599px) {
	.pricetable01 th {
		width: 100%;
		display: block;
	}

	.pricetable01 td {
		width: 100%;
		display: block;
		text-align: right;
	}

	table.pricetable02 {
		width: 600px;
	}

	.scrol {
		display: block;
		overflow-x: scroll;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}
	.priceitembox * {
	  margin: 0;
	}
	.pricetable03 td {
	  width: 100%;
	  display: block;
	}
.tdin {
  text-align: center;
}
.tdin dl * {
  text-align: center;
}
.tdthbox dt, .tdthbox dd, .tdtdbox dt, .tdtdbox dd {
  width: 50%;
  text-align: center;
}
.tdthbox dl dd, .tdtdbox dl dd {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tabpronly {
  display: block;
}
table ._spnone {
  display: none;
}
span.tl {
  text-align: center !important;
}

}

/* ##### 治療費ここまで ##### */

/* ##### がん検診について ##### */
.i03 {
	width: 32px;
	max-width: 32px;
	height: 32px;
}

.cancer_screeningbox01 {
	padding: 80px 0;
}

.cancer_screeningbox01 .inner {
	background: #fff;
	padding: 50px;
}

.cancer_screeningbox01 .koko:after {
	content: none;
}

.shadowimg img {
	box-shadow: 2px 2px 6px 1px rgba(0, 0, 0, 0.2);
}

.pinhane li {
	display: inline-block;
	position: relative;
	margin-right: 20px;
	padding-left: 30px;
	margin-bottom: 20px;
	font-weight: 400;
}

.pinhane li:before {
	content: url(/upload/tenant_2/d56769ed2062df32513675df4d6f131a.png);
	position: absolute;
	left: 0;
	top: 3px;
}

.treatmentbox .box01 .pic img {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.treatmentbox .box01 .t-box {
	padding: 30px 30px 30px 0;
}

.treatmentbox .box01 .t-box dd li {
	font-size: 12px;
}

@media only screen and (max-width: 1024px) {
  .cancer_screeningbox01 .inner, .pricebox01 .inner {
    padding: 30px;
  }
}

@media only screen and (max-width: 599px) {
	.cancer_screeningbox01 .pic {
		width: 100%;
		margin: 0 auto 30px;
	}

	.treatmentbox .box01 .t-box {
		padding: 15px;
	}

	.treatmentbox .pic {
		width: 100%;
	}

	.treatmentbox .box01 .pic img {
		border-top-left-radius: 5px;
		border-bottom-left-radius: 0;
		border-top-right-radius: 5px;
	}
  .cancer_screeningbox01 .inner, .pricebox01 .inner {
    padding: 15px;
  }
}

/* ##### がん検診についてここまで ##### */

/* ##### 初めての方へ ##### */

.pagenavbox_hajimete li {
  width: 45%;
  margin: 0 20px;
}
.i04 {
	width: 86px;
	max-width: 86px;
	height: 101px;
}

.stepbox .pic img {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.stepbox li dl {
	padding: 10px 20px 20px;
}

.stepbox li dl.w70 {
	padding: 20px 0 20px 20px;
}

.stepbox li dl dt {
	background: #463a41;
	display: inline-block;
	color: #fff;
	padding: 1px 15px;
	margin-left: -35px;
}

.more.w350 {
	max-width: 350px;
}

.bg04 {
	background: url(/upload/tenant_2/850fafb450fca8841b8ca0e91e2b33f3.png);
	position: relative;
}

.bg04:after {
	position: absolute;
	content: "";
	background: #f2f1ec;
	width: 29%;
	height: 100%;
	top: 0;
	left: 0;
}

.firstbox02 {
	padding: 80px 0;
}

.i05 {
	width: 34px;
	height: 31px;
	max-width: 34px;
}

.firstbox02 li {
	padding: 10px;
}

.firstbox02 li dt, .tit00 {
	position: relative;
	padding-left: 20px;
}

.firstbox02 li dt:after, .tit00:after {
	position: absolute;
	content: "";
	width: 15px;
	height: 2px;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background: #cba646;
}

@media only screen and (max-width: 1024px) {}

@media only screen and (max-width: 599px) {
  .pagenavbox_hajimete li {
  width: 100%;
  margin: 0 20px 20px;
}

	.stepbox .pic,
	.firstbox02 li .pic {
		width: 100%;
	}

	.stepbox .pic img {
		border-top-right-radius: 0;
		border-bottom-right-radius: 5px;
		border-bottom-left-radius: 5px;
	}
}

/* ##### 初めての方へここまで ##### */

/* ##### 予約ついてのご案内 ##### */
.guidebox dt.icon {
	position: relative;
	padding-left: 40px;
}

.guidebox dt.icon:before {
	position: absolute;
	content: "";
	background: url(/upload/tenant_2/c3812990f270c259b4f5919c964c2ffc.png);
	width: 27px;
	height: 23px;
	top: 5px;
	left: 0;
}

.guidebox dd.w70 {
	padding-left: 20px;
}

.guidearea .t-box {
	padding: 20px 20px 20px 0;
}

.guidearea .t-box dt {
	background: #463a41;
	color: #fff;
	padding: 2px 10px;
	display: inline-block;
}

.guidearea .t-box dd .tel a {
	position: relative;
	padding-left: 25px;
}

.guidearea .t-box dd .tel a:after {
	position: absolute;
	content: "";
	background: url(/upload/tenant_2/675cba07d8b308ae6f8d55dbcd4b58eb.png) no-repeat;
	width: 18px;
	height: 17px;
	left: 0;
	top: 7px;
}

.reservebox01 .box03 ul {
	width: 90%;
	max-width: 780px;
	margin: 30px auto;
}

.reservebox01 .box03 li.more {
	max-width: none;
	margin: 0 1% 2%;
}

.reservebox01 .box03 li a span {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	width: 100%;
}

.reservebox01 .box03 li dl {
	width: calc(100% - 45px);
}

.reservebox01 .box03 li dt {
	color: #fff;
}

.reservebox01 .box03 li p.pic {
	width: 37px;
	max-width: 37px;
}

.guidearea .pic img {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.guidebox a:hover {
	opacity: 0.6;
}

@media only screen and (max-width: 1024px) {
	.guidebox dd.w70 {
		width: 100%;
	}
}

@media only screen and (max-width: 599px) {
	.guidearea .pic {
		width: 100%;
	}

	.guidearea .t-box {
		padding: 15px;
	}

	.guidearea .pic img {
		border-top-left-radius: 5px;
		border-top-right-radius: 5px;
		border-bottom-left-radius: 0;
	}

	.pic._sp100 {
		width: 100%;
	}

	.guidebox dd.w70 {
		padding-left: 0;
	}

}

/* ##### 予約ついてのご案内ここまで ##### */

/* ##### 検診を受けよう ##### */
.checkupbox01 .box01 .pic {
	width: 90%;
	max-width: 875px;
}

.checkupbox01 .box01 .w55 {
	margin-left: auto;
	padding: 60px;
	margin-top: -20%;
	position: relative;
	z-index: 2;
	background: rgba(255, 255, 255, 0.8);
}

.checkupbox01 .ribon01 .tit {
	max-width: 410px;
}

.checkupbox02 .stepbox li dl dt {
	background: unset;
	color: #463a41;
}

.checkupbox02 .stepbox li dl dt span.step {
	background: #463a41;
	display: inline-block;
	color: #fff;
	padding: 1px 15px;
	margin-left: -15px;
	margin-right: 20px;
}

.checkupbox02 .more {
	margin: 20px auto;
}

@media only screen and (max-width: 1024px) {
	.checkupbox01 .box01 .w55 {
		padding: 30px;
	}
}

@media only screen and (max-width: 599px) {
	.checkupbox01 .box01 .w55 {
		padding: 10px;
		margin-top: 30px;
	}

	.checkupbox01 .box01 .pic {
		width: 100%;
	}
}

/* ##### 検診を受けようここまで ##### */

/* ##### 診療時間・アクセス ##### */

.i06 {
	width: 37px;
	max-width: 37px;
	height: 37px;
}

.i07 {
	width: 24px;
	max-width: 24px;
	height: 36px;
}

.i08 {
	width: 39px;
	max-width: 39px;
	height: 39px;
}

.accessbox01 .infolist th,
.accessbox01 .infolist td {
	font-size: 22px;
font-family: 'M PLUS Rounded 1c', sans-serif;
font-weight: 100;
	-webkit-transform: rotate(0.03deg);
	transform: rotate(0.03deg);
	/* シャギーを防ぐ指定 */
	font-weight: 400;
	padding: 15px;
}
.accessbox01 .infolist td {
  
  background: #fff;
}

.accessbox01 .infolist td.bk {
	font-size: 16px;
}

.accessbox02 .map:after {
	padding-top: 35%;
}

.accessbox03 li {
	padding: 10px;
}

.accessbox03 li dl {
	position: relative;
}

.accessbox03 li dt {
	width: 53px;
	height: 53px;
	color: #fff;
	background: #c69c6d;
	position: absolute;
	border-radius: 50%;
	left: 3px;
	top: -30px;
	font-weight: 400;
}

.accessbox03 li dd {
	padding-left: 60px;
}

@media only screen and (max-width: 1024px) {

	.accessbox01 .infolist th,
	.accessbox01 .infolist td {
		padding: 10px;
	}

	.accessbox02 .map:after {
		padding-top: 60%;
	}

}

@media only screen and (max-width: 599px) {

	.accessbox01 .infolist th,
	.accessbox01 .infolist td {
		font-size: 14px;
		padding: 5px;
	}

	.accessbox01 .infolist td.bk {
		font-size: 12px;
	}

	.accessbox02 .map:after {
		padding-top: 80%;
	}
}

/* ##### 診療時間・アクセスここまで ##### */

/* ##### 症状別一覧 ##### */
.symptomsbox01 ul.onayami {
	padding-top: 80px;
	position: relative;
}

.symptomsbox01 li.item {
	background: #fff;
	border-radius: 5px;
	padding: 0 30px 50px;
	margin: 0 2% 120px 2%;
}

.symptomsbox01 li .pic {
	width: 150px;
	height: 150px;
	margin: -60px auto 20px;
}

.symptomsbox01 .pic span {
	border-radius: 50%;
	display: block;
}

.symptomsbox01 li.item ul {
	position: relative;
	margin-bottom: 20px;
}

.symptomsbox01 li.item ul:after {
	content: url(/upload/tenant_2/57b7bdc5480ad491682184c491d7f177.png);
	text-align: center;
	display: block;
	margin-top: 10px;
}

.symptomsbox01 li .more {
	margin: 20px auto 0;
}

@media only screen and (max-width: 1024px) {}

@media only screen and (max-width: 599px) {
	.symptomsbox01 li.item {
		margin: 0 2% 90px 2%;
		padding: 0 10px 30px;
	}
}

/* ##### 症状別一覧ここまで ##### */

/* ##### 定期検診を受けよう ##### */
.regular_checkupbox01 .box02 .more {
	margin: 20px auto 0;
}

@media only screen and (max-width: 1024px) {}

@media only screen and (max-width: 599px) {}

/* ##### 定期検診を受けようここまで ##### */

/* パンくずリスト */

.breadcrumbs{
  width: 92%;
    max-width: 1000px;
    margin: 30px auto;
}

.breadcrumbs-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
}

.breadcrumbs-list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.breadcrumbs-list li {
    display: inline;
    font-size: 14px;
    letter-spacing: 1px;
}

.breadcrumbs-list li.breadcrumbs-home,
.breadcrumbs-list li.breadcrumbs-prevpage a {
    font-weight: bold;
    color: var(--c-01);
}

.breadcrumbs-list li+li::before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    margin: 0 10px 0 0px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media (max-width: 1024px) {
    .breadcrumbs {
        padding: 20px 0;
        font-size: 14px;
    }

    .breadcrumbs-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        align-items: flex-start;
        -ms-flex-align: start;
    }

    .breadcrumbs-list {
        width: 90%;
    }

    .breadcrumbs li {
        font-size: 12px;
    }

    .breadcrumbs li+li::before {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 599px) {
    .breadcrumbs {
        padding: 15px 0;
        font-size: 12px;
    }

    .breadcrumbs li+li::before {
        width: 6px;
        height: 6px;
    }
}

/**2024/09/18**/
footer .chat {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 300px;
  z-index: 100;
}
footer .chat img {
  width: 100%;
}


@media (max-width: 1024px){
  footer .chat {
    bottom: 80px;
  }
}

@media (max-width: 599px){
  footer .chat {
    width: 200px;
    bottom: 60px;
    right: 10px;
  }
  footer .copy {
    padding: 0 0 150px 0;
  }
}

/**2025/07/31**/
.web-reserve-container {
  position: fixed;
  top: 30%;
  right: 0;
  z-index: 9999;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
}

.web-reserve-tab {
  background-color: #c58200;
  color: white;
  border: none;
  border-radius: 8px 0 0 8px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 10px 5px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}

.web-reserve-tab:hover {
  background-color: #a96d00;
}

.web-reserve-panel {
  background-color: #f3e6c0;
  border-radius: 8px 0 0 8px;
  padding: 16px;
  min-width: 200px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  color: #333;
}

.web-reserve-container.open .web-reserve-panel {
  transform: translateX(0);
}

.web-reserve-link {
  display: inline-block;
  margin-top: 10px;
  background-color: #c1272d;
  color: #fff;
  padding: 6px 12px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.web-reserve-link:hover {
  background-color: #a81e23;
}

/* 2025/08/02 */
.footer-btn-wrap{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-btn-wrap .more{
  width: 48%;
}

.footer-btn-wrap .more a{
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fixinfo.ver02 {
  position: relative;
  width: auto;
  height: auto;
  max-height: none;
  top: auto;
  right: auto;
}

.reserve_fix_container.ver01{
  position: fixed;
  top: 25%;
  transform: translateY(-30%);
  right: -152.53px;
  background-color: #463a41;
  border-radius: 5px 0 0 5px;
}

.reserve_fix_container.ver01.active{
  right: 0;
}

.reserve_fix_container.ver02{
  position: fixed;
  top: calc((25% + 173.22px));
  transform: translateY(-30%);
  right: -146px;
  background-color: #cba646;
  border-radius: 5px 0 0 5px;
}

.reserve_fix_container.ver02.active{
  right: 0;
}

.reserve_fix_container.ver03{
  position: fixed;
  top: calc((25% + 342.63px));
  transform: translateY(-30%);
  right: -520.64px;
  background-color: #c69c6d;
  border-radius: 5px 0 0 5px;
}

.reserve_fix_container.ver03.active{
  right: 0;
}

.reserve_fix_container .r-box{
  display: flex;
}

.reserve_fix_container .r-box .ttl{
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  font-size: 14px;
  padding: 20px 10px;
  cursor: pointer;
  display: flex;
  color: #fff;
}

.reserve_fix_container .r-box .ttl>div{
  color: #fff;
}

.reserve_fix_container .r-box .ttl .txtwrap{
  margin-top: 0.5em;
}

.reserve_fix_container .hide-box{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-left: 1px solid #fff;
}

.reserve_fix_container .hide-box.hide-box03{
  display: block;
  max-width: 522.64px;
}

.reserve_fix_container .hide-box.hide-box03.sp{
  display: block;
  max-width: 520.64px;
}

.reserve_fix_container .hide-box.hide-box03 tbody{
  border: 2px solid #bcb8b6;
}

.reserve_fix_container .hide-box a{
  color: #fff;
}

.reserve_fix_container .hide-box .txtwrap,
.reserve_fix_container .hide-box .telwrap{
  color: #fff;
}

.reserve_fix_container .hide-box .telwrap a{
  color: #fff;
  font-size: 1.25em;
}


@media(max-width:599px) {
.footer-btn-wrap .more a{
  padding: 5px;
}

.reserve_fix_container .r-box .ttl{
  writing-mode: initial;
  padding: 10px;
  justify-content: center;
  align-items: center;
}

.reserve_fix_container .r-box {
  display: block;
}

.reserve_fix_container.ver03 .r-box {
  display: flex;
}

.reserve_fix_container .r-box .ttl .txtwrap{
  margin-top: 0;
  margin-left: 0.5em;
  font-size: 12px;
}

.reserve_fix_container .hide-box .txtwrap,
.reserve_fix_container .hide-box .telwrap{
  font-size: 12px;
}

.reserve_fix_container .hide-box{
  border-left: none;
  border-top: 1px solid #fff;
}

.reserve_fix_container .hide-box.hide-box03{
  border-left: 1px solid #fff;
  border-top: none;
}

.reserve_fix_container .hide-box a {
  font-size: 12px;
}

.reserve_fix_container.ver01{
  top: auto;
  right: auto;
  left: 0;
  bottom: -60.41px;
  transform: none;
  width: calc((100%) / 2);
  border-radius: 5px 5px 0 0;
}

.reserve_fix_container.ver01.active{
  bottom: 0;
}

.reserve_fix_container.ver02{
  top: auto;
  right: auto;
  left: calc((100% / 2) * 1);
  bottom: -42.41px;
  transform: none;
  width: calc((100%) / 2);
  border-radius: 5px 5px 0 0;
}

.reserve_fix_container.ver02.active{
  bottom: 0;
}

.reserve_fix_container.ver03{
  top: 50%;
  transform: translateY(-50%);
}

.reserve_fix_container.ver03 .r-box .ttl{
  writing-mode: vertical-rl;
}

.reserve_fix_container.ver03 .r-box .ttl .txtwrap {
  margin-top: 0.5em;
  margin-left: 0;
}

.fixinfo.ver02 ul li{
  font-size: 10px;
}
}
