@charset "UTF-8";

/*=======================================
■■■スマートフォン向けCSS　目次■■■
共通事項
ヘッダー
ページタイトル（トップ）
メイン（トップ）
料金表PDF、診療案内リンク
電話・WEB予約、料金表PDF
フッター
=======================================*/

/*──────────────────────────
共通事項
──────────────────────────*/
/*　基本文字サイズ　*/
body { font-size: 0.92em; }

/*　基本レイアウト　*/
.w18, .w15, .w13, .w11, .w10 {
	box-sizing: border-box;
	width: 90%;
	margin: 0 auto;
}
.w18 {
	width: 100%;
}
main article, 
main section {
	padding: 100px 0;
}
main article section {
	padding: 0;
}

/*　フォント（英字）*/
.hs1 span, 
.contact-info h2 b::after, 
#top .safety li::before {
	/*「Roboto」はGoogleフォント*/
	font-family: Roboto,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro',メイリオ,Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	font-weight: 700;
}

/*　改行指定（<wbr>と組合せ）*/
.wbr {
	word-break: keep-all;
	overflow-wrap: break-word;
}

/*　横ラインの大見出し　*/
.hs1 {
	position: relative;
	margin-bottom: 50px;
	padding-bottom: 2.6em;
	text-align: right;	/*右寄せの場合*/
	text-align: left;	/*左寄せの場合*/
	text-align: center;	/*中央寄せの場合*/
	overflow: hidden;
}
.hs1 b {
	position: absolute;
	top: 2.7em;
	left: 0;
	right: 0;
	margin: auto;
	padding: 0 0.2em;
	font-size: 1.3em;
	font-weight: 900;
	color: #222;
	line-height: 1em;
	display: block;
}
.hs1 span {
	position: relative;
	padding: 0 0 0 15px;	/*右寄せの場合*/
	padding: 0 15px 0 0;	/*左寄せの場合*/
	padding: 0 15px;	/*中央寄せの場合*/
	/*書体は基本設定で指定*/
	font-size: 3em;
	color: #222;
	font-size: 2.5em;
	color: #00c1c0;
	line-height: 1em;
	display: inline-block;
	-webkit-animation: fadeInJS 3s ease; animation: fadeInJS 3s ease;
}
.hs1 span::before, .hs1 span::after {
	content: "";
	position: absolute;
	top: 0.54em;
	width: 100px;
	border-top: 1px solid #222;
	display: block;
}
.hs1 span::before {
	right: 100%;
}
.hs1 span::after {
	left: 100%;
}
.hs1 i {
	position: absolute;
	margin-top: -2em;
}
/*　横ラインの大見出し（ラインのアニメーション）*/
.js .hs1 span, 
.js .hs1 span::before, .js .hs1 span::after {
	opacity: 0;
	-webkit-transition: all 0s ease; transition: all 0s ease;
}
.js .hs1 span {
	-webkit-transform: translate(0, 30px); transform: translate(0, 30px);
}
.js .hs1 span::before, .js .hs1 span::after {
	width: 0;
}
.js .hs1.disp span {	/*JSでdisp付与*/
	opacity: 1;
	-webkit-transform: translate(0, 0); transform: translate(0, 0);
	-webkit-transition: all 0.4s ease 0.4s; transition: all 0.4s ease 0.4s;
}
.js .hs1.disp span::before, .js .hs1.disp span::after {
	width: 100px;
	opacity: 1;
	-webkit-transition: width 0.8s ease 0.8s; transition: width 0.8s ease 0.8s;
}

/*　中見出し　*/
.fs1, .fs2, .fs3, .fs4, .fs5 {
	font-weight: 900;
	line-height: 1.3em;
}
.fs1 { font-size: 1.8em; }
.fs2 { font-size: 1.5em; }
.fs3 { font-size: 1.3em; }
.fs4 { font-size: 1.15em; }
.fs5 { font-size: 1.1em; }

@media screen and (max-width: 370px) {
	.fs1 { font-size: 1.7em; }
	.fs2 { font-size: 1.4em; }
	.fs3 { font-size: 1.2em; }
	.fs4 { font-size: 1.1em; }
	.fs5 { font-size: 1.05em; }
}

/*　パララックス背景　*/
.parallax-wrap {	/*JSでparallax-wrap生成*/
	position: absolute;
	z-index: -10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	clip: rect(0, auto, auto, 0);
	overflow: hidden;
	-webkit-overflow-scrolling: touch;	/*滑らか効果*/
}
.parallax {	/*JSでparallax生成*/
	position: fixed;
	/*topとheightはJSで計算*/
	left: 0;
	width: 100%;
	-webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0);	/*滑らか効果*/
}
.parallax i {
	display: none;
}
.bg1, .bg1 .parallax { background: rgba(100,90,80,0.1) url(../img/common/pic-bgsec01.jpg) 50% 50% repeat; background-size: 480px auto; }

/*　任意文字リスト　*/
[data-list] {
	position: relative;
	margin-left: 1em;
	line-height: 1.3em;
	display: block;
}
[data-list]::before {
	content: attr(data-list);
	position: absolute;
	left: -1em;
}

/*　金の帯　*/
.goldtrim {
	position: relative;
}
.goldtrim:before {
	content: "";
	position: absolute;
	top: -10px;
	left: 0;
	width: 100%;
	height: 8px;
	background: -webkit-linear-gradient(left, rgb(220,190,0) 0%, rgb(240,230,160) 30%, rgb(210,180,0) 80%, rgb(220,190,0) 100%);
	background: -moz-linear-gradient(left, rgb(220,190,0) 0%, rgb(240,230,160) 30%, rgb(210,180,0) 80%, rgb(220,190,0) 100%);
	background: linear-gradient(to right, rgb(220,190,0) 0%, rgb(240,230,160) 30%, rgb(210,180,0) 80%, rgb(220,190,0) 100%);
	border-top: 1px solid rgba(0,0,0,0.2);
	border-bottom: 1px solid rgba(255,255,255,0.7);
}

/*////////////////////////////////////////////
分院HPのCSS写し　ここから
美容キャンペーンPDF、WEB予約バナー
////////////////////////////////////////////*/
.bnn5, .bnn6 {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	max-width: 440px;
	height: 100px;
	margin: auto;
	padding: 1.2em 0 0 20px;
	outline: 1px solid rgba(255,255,255,0.7);
	outline-offset: -3px;
	font-size: 1.35em;
	font-weight: 700;
	color: #fff;
	text-align: left;
	display: block;
	overflow: hidden;
}
.bnn5 {	/*美容キャンペーン*/
	max-width: 100%;
	height: 100px;
	margin: 0;
	padding: 0;
	background: url(../img/common/btn-banner16-txt2.png) 97% 55px no-repeat, url(../img/common/btn-banner16-title.png) -30px 50% no-repeat, url(../img/common/btn-banner16-img.png) 105% 50% no-repeat, #bbf6dd;
	background-size: auto 30px, contain, contain;
	outline: 1px solid rgba(51,153,136,0.7);
	font-size: 1.5em;
	color: #276;
	display: table;
}
.bnn5 b, .bnn5 div {
	vertical-align: middle;
	display: table-cell;
}
.bnn5 b {
	padding: 0 0.5em 1.7em 80px;
	line-height: 1em;
}
.bnn5 em {
	display: none;
}
.bnn6 {	/*形成・美容外科WEB予約*/
	max-width: 100%;
	height: 100px;
	margin: 0;
	padding: 0 110px 0 0;
	background: url(../img/common/btn-banner17-txt2.png) 97% 55px no-repeat, url(../img/common/btn-banner17-leaf.png) -10px 50% no-repeat, url(../img/common/btn-banner17-img.png) 100% 50% no-repeat, #bbf6dd;
	background-size: auto 30px, contain, contain;
	outline: 1px solid rgba(51,153,136,0.7);
	font-size: 1.25em;
	color: #054;
	letter-spacing: -0.04em;
	display: table;
}
.bnn6 b, .bnn6 div {
	vertical-align: middle;
	display: table-cell;
}
.bnn6 b {
	padding: 0 0.5em 0 40px;
	line-height: 1.2em;
}
.bnn6 em {
	display: none;
}
.bnn5::before, .bnn6::before {
	content: "";
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	top: 0;
	left: -100%;
	background: rgba(255,255,255,0.2);
	-webkit-transition: left 0.2s ease;
	transition: left 0.2s ease;
}
.bnn5:hover { color: #276; text-decoration: none; }
.bnn6:hover { color: #054; text-decoration: none; }
.bnn5:hover::before { left: 0; }
.bnn6:hover::before { left: 0; }

@media screen and (max-width: 550px) {
	.bnn5 {
		background: url(../img/common/btn-banner16-txt2.png) 97% 55px no-repeat, url(../img/common/btn-banner16-title-s.png) 0 50% no-repeat, url(../img/common/btn-banner16-img.png) 130% 50% no-repeat, #bbf6dd;
		background-size: auto 30px, contain, contain;
	}
	.bnn5 b {
		padding: 0 0.5em 2.1em 75px;
		padding-left: 75px;
	}
	.bnn5 b::before {
		content: "最大30%OFF";
		position: relative;
		box-sizing: border-box;
		width: 9.8em;
		margin: 0 0 0.2em 0.1em;
		padding: 0.3em 0.5em;
		background: #298;
		border-bottom-left-radius: 5px 5px;
		border-bottom-right-radius: 5px 5px;
		font-size: 0.6em;
		color: #fff;
		line-height: 1em;
		text-align: center;
		display: block;
	}
}
@media screen and (max-width: 400px) {
	.bnn6 {
		height: 90px;
		background-position: 97% 53px, -20px 50%, 100% 50%;
		background-size: auto 27px, auto 90px, auto 90px;
	}
	.bnn6 b {
		padding-left: 30px;
	}
	.bnn5 {
		height: 90px;
		background-position: 97% 53px, 0 50%, 140px 50%;
		background-size: auto 27px, auto 90px, auto 90px;
		font-size: 1.4em;
	}
	.bnn5 b {
		padding: 0 0.5em 2em 67px;
	}
}
/*////////////////////////////////////////////
分院HPのバナーCSSの写し　ここまで
////////////////////////////////////////////*/

.bnn5, .bnn6 {
	margin-top: 0.5em;
	font-family: 游明朝, YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', HG明朝E, 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;	/*明朝系*/
	font-weight: bold;
}

/*　Instagramボタン　*/
a[href*="instagram"] {
	background: #fff;
	border: 1px solid #00cccb;
	text-align: center;
	display: inline-block;
}
a[href*="instagram"]:hover {
	background: rgba(0,204,200,0.1);
}
a[href*="instagram"] span {
	padding: 15px 15px 16px 60px;
	background: url(../img/common/icn-instagram.png) 15px 50% no-repeat;
	background-size: 30px auto;
	color: #222;
	line-height: 1.2em;
	text-align: left;
	display: inline-block;
}


/*──────────────────────────
ヘッダー
──────────────────────────*/
header {
	background: rgba(0,204,200,0.1) url(../img/common/pic-titleimg01s.jpg) 80% 100% no-repeat;
	background-size: cover;
}
header .info {
	position: relative;
	height: 740px;
	background-size: cover;
	overflow: hidden;
}
header .info a, header .info p {
	position: absolute;
	height: 0;
	overflow: hidden;
	display: block;
}
@media screen and (max-width: 500px) {
	header .info {
		height: 670px;
	}
}
@media screen and (max-width: 420px) {
	header .info {
		height: 620px;
	}
}

/*　ロゴ　*/
header .info a:nth-child(1) {
	top: 15px;
	left: 5%;
	width: 230px;
	padding-top: 65px;
	background: url(../img/common/pic-logosymbol01-bw.png) 0 48% no-repeat, url(../img/common/pic-logotype01-bw.png) 100% 50% no-repeat;
	background-size: 65px auto, 160px auto;
}
/*　お問い合わせ　*/
header .info a:nth-child(2) {
	top: 10px;
	right: 75px;
	width: 60px;
	padding-top: 60px;
	background: #00b7b6 url(../img/common/icn-tel01-wh.png) 50% 48% no-repeat;
	background-size: 45px auto;
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 50%;
	border-radius: 10px;
}
/*　交通アクセス　*/
header .info a:nth-child(3) {
	top: 10px;
	right: 10px;
	width: 60px;
	padding-top: 60px;
	background: #222 url(../img/common/icn-access01-wh.png) 50% 50% no-repeat;
	background-size: 45px auto;
	border-radius: 50%;
	border-radius: 10px;
}
header .info a:nth-child(2):hover {
	opacity: 0.85;
}
header .info a:nth-child(3):hover {
	opacity: 0.85;
}
header .info p.copy, 
header .info p.hero, 
header .info p.tester {
	left: 0;
	right: 0;
	margin: auto;
}
/*　コピー　*/
header .info p.copy {
	top: 120px;
	width: 300px;
	padding-top: 175px;
	background: url(../img/common/txt-copy01.png) no-repeat;
	background-size: contain;
}
/*　男女　*/
header .info p.hero {
	right: -25px;
	bottom: 0;
	width: 460px;
	padding-top: 410px;
	background: url(../img/common/pic-hero01.png) 50% 100% no-repeat;
	background-size: contain;
}
/*　モニター募集　*/
header .info p.tester {
	z-index: 1;
	bottom: 10px;
	width: 320px;
	padding-top: 80px;
	background: url(../img/common/pic-tester30off.png) no-repeat;
	background-size: contain;
}
@media screen and (max-width: 500px) {
	header .info p.hero {
		width: 400px;
		padding-top: 410px;
	}
	header .info p.tester {
		width: 280px;
		padding-top: 70px;
	}
}
@media screen and (max-width: 420px) {
	header .info a:nth-child(2) {
		right: 10px;
	}
	header .info a:nth-child(3) {
		display: none;
	}
	header .info p.copy {
		width: 280px;
		padding-top: 175px;
	}
	header .info p.hero {
		width: 360px;
		padding-top: 410px;
	}
}

/*　ウェーブ（アニメーション）*/
header {
	position: relative;
}
header::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50px;
	background: url(../img/common/pic-bgwave01.png) 0 0 repeat-x;
	background-size: 900px 50px;
	-webkit-animation: wave1 40s linear infinite;
	animation: wave1 40s linear infinite;
}
@-webkit-keyframes wave1 {
	0% {background-position: 0 0;} 100% {background-position: -900px 0;}
}
@keyframes wave1 {
	0% {background-position: 0 0;} 100% {background-position: -900px 0;}
}


/*──────────────────────────
ページタイトル（トップ）
──────────────────────────*/
/*　主な美容MENUリスト　*/
#top .pagetitle {
	position: relative;
	margin-top: 20px;
	padding-bottom: 100px;
}
#top .esthe {
	text-align: center;
	letter-spacing: -0.4em;
}
#top .esthe li {
	box-sizing: border-box;
	width: 22%;
	margin: 0 1.5%;
	padding: 1em 0;
	border-top: 1px solid #00cccb;
	font-size: 1em;
	line-height: 1em;
	text-align: center;
	letter-spacing: normal;
	vertical-align: top;
	text-shadow:
	2px 2px 2px #fff, -2px -2px 2px #fff, -2px 2px 2px #fff, 2px -2px 2px #fff,
	2px 0 2px #fff, -2px 0 2px #fff, 0 2px 2px #fff, 0 -2px 2px #fff;
	display: inline-block;
}
#top .esthe li:nth-last-child(-n+4) {
	border-bottom: 1px solid #00cccb;
}
@media screen and (max-width: 450px) {
	#top .esthe li {
		width: 30%;
	}
	#top .esthe li:nth-last-child(-n+4) {
		border-bottom: none;
	}
	#top .esthe li:nth-last-child(-n+3) {
		border-bottom: 1px solid #00cccb;
	}
}

/*　すべての大人世代　*/
#top .pagetitle .guide {
	margin-top: 50px;
}
#top .pagetitle h1 {
	font-size: 1.75em;
	font-weight: 900;
	line-height: 1.3em;
}
#top .pagetitle h1 span:nth-of-type(1){ color: #e7778c; }
#top .pagetitle h1 span:nth-of-type(2){ color: #007; }

#top .pagetitle h1 span:nth-of-type(2) {
	margin-bottom: 0.2em;
	display: inline-block;
}
#top .pagetitle h1 b {
	position: relative;
	font-size: 2.2em;
	line-height: 1.2em;
	display: inline-block;
}
#top .pagetitle h1 b::after{
	position: absolute;
	top: 0.9em;
	left: 13.5em;
	box-sizing: border-box;
	min-width: 130px;
	padding: 0.7em 2em 0.8em 2.5em;
	border-radius: 2em;
	color: #fff;
	font-size: 0.16em;
	line-height: 1em;
	text-align: center;
	letter-spacing: 0.3em;
	display: block;
}
#top .pagetitle h1 span:nth-of-type(1) b::after{ content: "WOMEN'S"; background: #e7778c; }
#top .pagetitle h1 span:nth-of-type(2) b::after{ content: "MEN'S"; background: #007; }

#top .pagetitle .guide p {
	margin-top: 40px;
	font-size: 1.05em;
	line-height: 2.4em;
	text-align: justify;
}
#top .pagetitle .guide p + p {
	font-size: 1.6em;
	font-weight: 900;
	line-height: 1.5em;
	text-align: center;
}
#top .pagetitle .guide p + p b {
	font-size: 1.5em;
	color: #00c1c0;
}

/*　すべての大人世代（写真）*/
#top .pagetitle {
	overflow: hidden;
}
#top .pagetitle .guide {
	position: relative;
	padding-bottom: 300px;	/*写真スペース確保*/
}
#top .pagetitle figure {
	position: absolute;
	left: 0;
	right: 0;
	width: 230px;
	height: 0;
	margin: auto;
	padding-top: 230px;
	background-repeat: no-repeat;
	background-size: contain;
	border-radius: 50%;
	overflow: hidden;
}
#top .pagetitle figure.women {
	bottom: 30px;
	background-image: url(../img/top/pic-shine01.jpg);
	-webkit-transform: translate(-45%, 0); transform: translate(-45%, 0);
}
#top .pagetitle figure.men {
	bottom: -30px;
	width: 210px;
	padding-top: 210px;
	background-image: url(../img/top/pic-shine02.jpg);
	-webkit-transform: translate(55%, 0); transform: translate(55%, 0);
}
#top .pagetitle figure::after {
	content: "";
	position: absolute;
	top: 3%;
	left: 3%;
	box-sizing: border-box;
	width: 94%;
	height: 94%;
	border: 1px solid #fff;
	border-radius: 50%;
}


/*──────────────────────────
メイン（トップ）
──────────────────────────*/
/*　こんなお悩みの方（背景）*/
#top .trouble {
	position: relative;
}
#top .trouble::before, #top .trouble::after {
	content: "";
	position: absolute;
	left: 0;
}
#top .trouble::before {
	top: 0;
	width: 300px;
	height: 331px;
	background: url(../img/common/pic-bgleaf02-bk.png) no-repeat;
	background-size: contain;
	opacity: 0.05;
	-webkit-transform: scale(-1, 1); transform: scale(-1, 1);
}
#top .trouble::after {
	bottom: 0;
	width: 100%;
	height: 35px;
	background: url(../img/common/pic-bgwave02.png) 50% 100% no-repeat;
	background-size: contain;
}
@media screen and (max-width: 450px) {
	#top .trouble::after {
		background-size: 120% 35px;
	}
}

/*　こんなお悩みの方（冒頭文章）*/
#top .trouble h2 {
	text-align: center;
}
#top .trouble .info {
	margin-top: 60px;
}
#top .trouble .info h3 {
	font-size: 1.8em;
	font-weight: 900;
	line-height: 1.4em;
	text-align: center;
}
#top .trouble .info h3 b {
	font-size: 1.4em;
	color: #00c1c0;
	display: block;
}
#top .trouble .info p {
	max-width: 700px;
	margin: 1em auto 0 auto;
	font-size: 1.05em;
	line-height: 2.4em;
	text-align: justify;
}

/*　こんなお悩みの方（各症状の枠）*/
#top .trouble .cate {
	position: relative;
	box-sizing: border-box;
	margin-top: 120px;
	margin: 120px -2% 0 -2%;
	padding: 80px 5% 40px 5%;
	background: rgba(255,255,255,0.45);
	border: 1px solid #fff;
	border-radius: 15px;
	text-align: center;
	-webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.15);
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.15);
}

/*　こんなお悩みの方（各症状の写真）*/
#top .trouble .cate::before {
	content: "";
	position: absolute;
	top: -80px;
	left: 0;
	right: 0;
	width: 150px;
	height: 150px;
	margin: auto;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	border: 1px solid #fff;
	border-radius: 50%;
}
#top .trouble .skin::before { background-image: url(../img/top/pic-trouble01.jpg); }
#top .trouble .hair::before { background-image: url(../img/top/pic-trouble02.jpg); }
#top .trouble .eye::before { background-image: url(../img/top/pic-trouble03.jpg); }

/*　こんなお悩みの方（各症状の内容）*/
#top .trouble .cate * {
	text-align: left;
}
#top .trouble .cate h3 {
	position: relative;
	padding-left: 70px;
	color: #00c1c0;
}
#top .trouble .cate h3::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 55px;
	height: 50px;
	background-repeat: no-repeat;
	background-size: 40px 44px;
	background-position: 0 40%;
	border-right: 1px solid #00cccb; 
	-webkit-transform: translate(0, -50%); transform: translate(0, -50%);
}
#top .trouble .skin h3::before { background-image: url(../img/common/icn-symp01.png); }
#top .trouble .hair h3::before { background-image: url(../img/common/icn-symp02.png); }
#top .trouble .eye h3::before { background-image: url(../img/common/icn-symp03.png); }

#top .trouble .cate .wrap p {
	margin-top: 1em;
	font-size: 1.05em;
	line-height: 1.3em;
	text-align: justify;
}
#top .trouble .cate ul {
	margin-top: 1.5em;
}
#top .trouble .cate li:nth-child(2) {
	margin-top: 1em;
}
#top .trouble .cate li h4[data-list] {
	margin-left: 1em;
	line-height: 1.2em;
}
#top .trouble .cate li h4[data-list]::before {
	left: -1.7em;
	font-size: 0.6em;
	color: #00c1c0;
}
#top .trouble .cate li p {
	margin-top: 0.7em;
	margin: 0.7em 0 0 1.3em;;
	line-height: 1.3em;
}

/*　安心への取り組み　*/
#top .safety li:nth-child(n+2) {
	margin-top: 50px;
}
#top .safety li h3 {
	position: relative;
	margin: 1.5em 0 210px 0;
	margin: 1.5em -2% 210px -2%;
	padding: 0 2%;
	font-size: 1.3em;
	text-align: center;
}
#top .safety li h3::after {
	content: "";
	position: absolute;
	bottom: -200px;
	left: 0;
	right: 0;
	max-width: 470px;
	height: 180px;
	margin: auto;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 10px;
}
#top .safety li:nth-child(1) h3::after { background-image: url(../img/top/pic-safety01.jpg); }
#top .safety li:nth-child(2) h3::after { background-image: url(../img/top/pic-safety02.jpg); }
#top .safety li:nth-child(3) h3::after { background-image: url(../img/top/pic-safety03.jpg); }

#top .safety li h3 br {
	display: none;
}
#top .safety li p {
	font-size: 1em;
	text-align: justify;
}
#top .safety .myself {
	margin-top: 70px;
	line-height: 1.5em;
	text-align: center;
}
#top .safety .myself b {
	margin-bottom: 0.5em;
	font-size: 1.5em;
	color: #00c1c0;
	line-height: 1.2em;
	display: inline-block;
}
@media screen and (max-width: 450px) {
	#top .safety .myself b {
		font-size: 1.4em;
	}
}

/*　安心への取り組み（番号）*/
#top .safety ol {
	counter-reset: number 0;
}
#top .safety li {
	position: relative;
}
#top .safety li::before {
	content: counter(number, decimal-leading-zero);
	counter-increment: number 1;
	font-size: 3.8em;
	font-weight: 900;
	color: #00c1c0;
	line-height: 1em;
	text-align: center;
	display: block;
} 
#top .safety li::after {
	content: "";
	position: absolute;
	top: 4.5em;
	left: 0;
	right: 0;
	width: 100px;
	height: 1px;
	margin: auto;
	background: #00c1c0;
	display: block;
}

/*　医師紹介　*/
#top .doctor {
	background: -webkit-linear-gradient(top, rgba(0,204,200,0.15) 0%, rgba(255,255,255,0) 100%);
	background: -moz-linear-gradient(top, rgba(0,204,200,0.15) 0%, rgba(255,255,255,0) 100%);
	background: linear-gradient(to bottom, rgba(0,204,200,0.15) 0%, rgba(255,255,255,0) 100%);
}
#top .doctor h2 + p {
	font-size: 1.05em;
	line-height: 1.5em;
	text-align: center;
}

/*　医師紹介（レイアウト）*/
#top .doctor ul {
	max-width: 750px;
	margin: 0 auto 30px auto;
}
#top .doctor li {
	box-sizing: border-box;
	min-height: 100px;
	margin: 50px 0 0 0;
	padding: 0 0 0 160px;
}
#top .doctor li:nth-child(even) {
	padding: 0 160px 0 0;
}
@media screen and (max-width: 450px) {
	#top .doctor li {
		padding-left: 130px;
	}
	#top .doctor li:nth-child(even) {
		padding-right: 130px;
	}
}

/*　医師紹介（内容）*/
#top .doctor li {
	position: relative;
}
#top .doctor li::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -2%;
	width: 160px;
	height: 160px;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 50%;
	-webkit-transform: translate(0, -50%); transform: translate(0, -50%);
}
#top .doctor li:nth-child(even)::before {
	left: auto;
	right: -2%;
}
#top .doctor li:nth-child(1)::before { background-image: url(../img/top/pic-dr-mizuno.jpg); }
#top .doctor li:nth-child(2)::before { background-image: url(../img/top/pic-dr-yamatsu.jpg); }
#top .doctor li:nth-child(3)::before { background-image: url(../img/top/pic-dr-fukuta.jpg); }
#top .doctor li:nth-child(4)::before { background-image: url(../img/top/pic-dr-mori.jpg); }

#top .doctor li h3 {
	font-weight: normal;
	color: #00c1c0;
}
#top .doctor li h3 strong {
	font-size: 1.5em;
	font-weight: 900;
	color: #222;
	display: block;
}
#top .doctor li h3 [data-txt]::after {
	content: attr(data-txt);
	margin-left: 1em;
	font-size: 0.55em;
	font-weight: normal;
	display: inline-block;
}
#top .doctor li h3 i {
	display: none;
}
#top .doctor li p {
	margin-top: 0.8em;
	font-size: 1.05em;
	line-height: 1.5em;
	text-align: justify;
}
@media screen and (max-width: 450px) {
	#top .doctor li::before {
		width: 130px;
		height: 130px;
	}
	#top .doctor li h3 [data-txt]::after {
		margin: 0;
		display: block;
	}
}


/*──────────────────────────
料金表PDF、診療案内リンク
──────────────────────────*/
.plastic-info {
	margin: 100px 0 50px 0;
}
.plastic-info h2 {
	text-align: center;
}
.plastic-info .btn-wrap {
	margin-top: 30px;
	letter-spacing: -0.4em;
	text-align: center;
}
.plastic-info .btn-wrap a {
	position: relative;
	box-sizing: border-box;
	width: 280px;
	margin: 5px 1%;
	padding: 1.6em 70px 1.7em 3%;
	background: #00b7b6 url(../img/common/pic-bgleaf01.png) 0 0 no-repeat;
	background-size: 130px auto;
	outline: 1px solid rgba(255,255,255,0.5);
	outline-offset: -5px;
	font-size: 1.1em;
	font-weight: 900;
	color: #fff;
	letter-spacing: normal;
	vertical-align: top;
	display: inline-block;
	-webkit-transition: all 0.3s ease; transition: all 0.3s ease;
}
.plastic-info .btn-wrap a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 40px;
	height: 35px;
	background: #222 url(../img/common/icn-arrow01-wh.png) 50% 50% no-repeat;
	background-size: 15px auto;
	-webkit-transform: translate(0, -50%); transform: translate(0, -50%);
	-webkit-transition: all 0.3s ease; transition: all 0.3s ease;
}
.plastic-info .btn-wrap a:hover {
	text-decoration: none;
	opacity: 0.85;
}
.plastic-info .btn-wrap a:hover::after {
	right: -5px;
	background-position: 70% 50%;
}


/*──────────────────────────
電話・WEB予約、料金表PDF
──────────────────────────*/
.contact-info {
	position: relative;
	padding-top: 50px;
}
.contact-info .wrap {
	position: relative;
	z-index: 1;
	margin: 0 -2%;
	padding: 100px 5% 50px 5%;
	background: #fff;
	border-radius: 15px;
	text-align: center;
	-webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
}

/*　完全予約制　*/
.contact-info h2 span {
	position: absolute;
	top: -80px;
	left: 0;
	right: 0;
	width: 170px;
	height: 170px;
	margin: auto;
	background: #00cccb;
	border-radius: 50%;
	text-align: center;
	display: block;
}
.contact-info h2 span::before {
	content: "";
	position: absolute;
	top: 3%;
	left: 3%;
	box-sizing: border-box;
	width: 94%;
	height: 94%;
	border: 1px solid rgba(255,255,255,0.5);
	border-radius: 50%;
}
.contact-info h2 b {
	position: absolute;
	top: 52%;
	left: 0;
	right: 0;
	margin: auto;
	font-size: 1.9em;
	font-weight: 900;
	color: #fff;
	line-height: 1.1em;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.contact-info h2 b::after {
	content: attr(data-txt);
	font-size: 0.25em;
	color: #fd6;
	letter-spacing: 0.2em;
	display: block;
}

/*　内容　*/
.contact-info h2 + p {
	margin-top: 1em;
	font-size: 1.15em;
	line-height: 1.3em;
}
.contact-info a[href*="tel"] {
	width: 320px;
	height: 0;
	margin-top: 1em;
	padding-top: 37px;
	background: url(../img/common/pic-tel02.png) no-repeat;
	background-size: contain;
	overflow: hidden;
	display: inline-block;
}
.contact-info .bnn6 {
	margin-top: 30px;
	margin-bottom: 30px;
}
@media screen and (max-width: 450px) {
	.contact-info a[href*="tel"] {
		width: 280px;
		padding-top: 32px;
	}
}


/*──────────────────────────
フッター
──────────────────────────*/
footer {
	position: relative;
	margin-top: -280px;
	padding-top: 250px;
	background: -webkit-linear-gradient(45deg, rgb(0,186,190) 30%, rgb(0,204,200) 70%);
	background: -moz-linear-gradient(45deg, rgb(0,186,190) 30%, rgb(0,204,200) 70%);
	background: linear-gradient(45deg, rgb(0,186,190) 30%, rgb(0,204,200) 70%);
}
footer::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
	height: 331px;
	background: url(../img/common/pic-bgleaf02-wh.png) no-repeat;
	background-size: contain;
	opacity: 0.15;
}

/*　レイアウト　*/
footer .outline {
	width: 100%;
	margin: 0px 0 70px 0;
	display: table;
	direction: rtl; /*逆順の表示*/
}
footer .outline nav, footer .outline .basic {
	vertical-align: bottom;
	display: table-cell;
	direction: ltr; /*正順の表示*/
}
footer nav {
	box-sizing: border-box;
	width: 100%;
	padding-left: 3%;
}
footer .basic {
	min-width: 320px;
}
@media screen and (max-width: 800px) {
	footer .outline, footer .outline nav, footer .outline .basic {
		display: block;
		direction: ltr; /*正順の表示*/
	}
	footer nav {
		padding-left: 0;
	}
	footer .outline .basic {
		margin-top: 40px;
	}
}

/*　ナビメニュー　*/
footer nav {
	padding-top: 120px;
	background: url(../img/common/txt-copy02.png) 50% 0 no-repeat;
	background-size: 240px auto;
}
footer .onsite li {
	position: relative;
	margin: 0 2em 0.6em 0;
	padding-left: 1em;
	display: inline-block;
}
footer .onsite li::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 0.3em;
	height: 0.3em;
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	-webkit-transform: rotate(45deg) translate(0, -0.1em);
	transform: rotate(45deg) translate(0, -0.1em);
}
footer .onsite li a {
	color: #fff;
	text-decoration: none;
}
footer .onsite li a:hover {
	color: #fff;
	text-decoration: underline;
}

/*　関連バナー　*/
footer .linkbnn {
	width: 100%;
	margin-top: 20px;
	text-align: center;
}
footer .linkbnn li {
	margin: 5px 1%;
	vertical-align: top;
	display: inline-block;
}
footer .linkbnn a[href*="instagram"] {
	position: relative;
	box-sizing: border-box;
	min-width: 220px;
	height: 65px;
	border: none;
}
footer .linkbnn a[href*="instagram"] span {
	position: absolute;
	top: 50%;
	left: 3px;
	box-sizing: border-box;
	width: auto;
	min-height: 30px;
	padding: 0 0 0 60px;
	-webkit-transform: translate(0, -50%); transform: translate(0, -50%);
}
footer .linkbnn a[href*="ishii.or.jp"] {
	width: 220px;
	height: 0;
	padding-top: 65px;
	background: #fff url(../img/common/btn-banner01.png) 50% 50% no-repeat;
	background-size: 190px auto;
	overflow: hidden;
	display: block;
}
footer .linkbnn a[href*="instagram"]:hover {
	background-color: rgba(255,255,255,0.85);
}
footer .linkbnn a[href*="ishii.or.jp"]:hover {
	background-color: rgba(255,255,255,0.85);
}

/*　施設情報　*/
footer .basic {
	font-size: 1.1em;
	color: #fff;
	text-align: center;
}
footer .basic h2 {
	width: 275px;
	height: 0;
	margin-top: -10px;
	padding-top: 75px;
	background: url(../img/common/pic-logosymbol01-wh.png) 0 48% no-repeat, url(../img/common/pic-logotype01-wh.png) 100% 50% no-repeat;
	background-size: 75px auto, 190px auto;
	display: inline-block;
	overflow: hidden;
}
footer .basic a[href*="tel:"] {
	color: #fff;
}
footer .basic .recept {
	line-height: 1.5em;
}
footer .basic .recept b {
	margin: 1em 0 0.3em 0;
	padding: 0.5em 1em 0.6em 1em;
	background: rgba(0,0,0,0.2);
	border-radius: 5px;
	font-size: 0.85em;
	font-weight: normal;
	line-height: 1em;
	display: inline-block;
}
footer .basic .recept br.fix {
	display: none;
}
@media screen and (max-width: 450px) {
	footer .basic .recept br.fix {
		display: block;
	}
}

/*　著作権　*/
footer small {
	padding: 2em 70px 3em 70px;
	font-size: 0.9em;
	color: #fff;
	text-align: center;
	display: block;
}
footer small a {
	color: #fff;
}
footer small a:hover {
	color: #fff;
	text-decoration: none;
}
