@charset "utf-8";

/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
html,body,#container {height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding: 0 25px 0;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
strong{color:#8F0002;}
em{color:#36A3E0;font-style: normal;font-weight: bold;}
h1{font-size: 10px!important;font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif"!important;color: #666;font-weight: normal!important;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;		/*リンクテキストの色*/
	transition: 0.2s;	/*マウスオン時の移り変わるまでの時間設定。0.2秒。*/
}
a:hover {
	color: #dc8f09;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
a:hover img{
 opacity:.5;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

/*トップページのヘッダー*/
#top header {
	position: relative;z-index: 10;
	background: #fff;	/*背景色*/
}
.slider {
	width: 100%;
	margin:0;
	padding:0;
}

/*オリジナルメニュー
---------------------------------------------------------------------------*/

#tel{
	display:none;
	}

#tel a{
	display:none;
}

/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	text-indent: -9999px;
	position: fixed;	/*スクロールしても固定表示させる指定*/
	top: 0px;
	width: 100%;
	height: 100%;
	background: url(../images/mainimg_s.jpg) no-repeat center center;	/*背景画像（古いブラウザ用）*/
	background: url(../images/mainimg.jpg) no-repeat center center / cover;	/*背景画像*/
}

/*トップページのSVGロゴアニメーション設定
---------------------------------------------------------------------------*/
#svg-logo {
	fill: transparent;	/*初期の色。透明。*/
	stroke: #fff;		/*フチ取りの色*/
	stroke-width: 1;	/*フチ取りの幅*/
	width: 40%;			/*画像の幅*/
	height: 40%;		/*画像の高さ*/
	position: fixed;	/*スクロールしても固定表示させる指定*/
	left: 30%;			/*左から30%の場所に配置*/
	bottom: 40%;		/*下から40%の場所に配置*/
}

/*アニメーションのキーフレーム*/
@keyframes move-h1 {
0% {
	opacity: 0;	/*透明度0%*/
}
100% {
	opacity: 1;	/*透明度100%*/
}
}

/*トップページの「ホームページ開設キャンペーン」ボックス設定
---------------------------------------------------------------------------*/
/*ボックス*/
#topics {
	background: #dc8f09;	/*背景色*/
	color: #fff;		/*文字色*/
	position: fixed;	/*スクロールしても固定表示させる指定*/
	width: 100%;		/*幅*/
	text-align: center;	/*文字を中央に*/
	padding: 10px 0px;	/*上下、左右へのボックス内の余白*/
	animation-name: move-topics;	/*アニメーションのキーフレーム（下）で指定しているkeyframesの名前（move-topics）*/
	animation-duration: 0.3s;		/*アニメーションの実行時間。0.3秒。*/
	animation-delay: 2s;		/*2秒遅れて開始させる*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	bottom: 15%;	/*古いブラウザ用にフィニッシュの場所を指定しておく*/
}
/*ボックス内のh2見出し*/
#topics h2 {
	font-size: 30px;	/*文字サイズ*/
}
/*アニメーションのキーフレーム*/
@keyframes move-topics {
0% {
	opacity: 0;		/*透明度0%*/
	bottom: 0%;		/*下から0%の場所からスタート*/
}
100% {
	opacity: 1;		/*透明度100%*/
	bottom: 15%;	/*下から15%の場所でフィニッシュ*/
}
}

/*メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	position: relative;z-index: 30;
	text-align: center;	/*文字を中央に*/
	clear: both;
}
#menubar ul {
	background: #fff;	/*背景色*/
	overflow: hidden;
}
/*メニュー１個あたりの設定*/
#menubar ul li {
	float: left;
	width: 12.5%;
	font-size: 14px;
}
#menubar ul li a {
	text-decoration: none;display: block;
	border-left: 1px solid #ccc;	/*左側の線の幅、線種、色*/
	line-height: 50px;	/*高さ（行間）*/
	margin: 10px 0;		/*上下、左右、aタグの外側にに空けるスペース。*/
}
#menubar ul li:first-child a {
	border-left: none;	/*１個目のメニューの左の線を消す指定*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ドロップダウンメニュー用
----------------------------------------------------------------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;margin-top: 1px;
	border-top: 2px solid #fff;
	width: 12.5%;
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;width: 100%;overflow: hidden;
	border-bottom: 2px solid #fff;	/*下の線の幅、選手、色。marginでもいいのですが見づらいのであえて線にしています。*/
}
#menubar ul.ddmenu li a {
	border: none;margin: 0;width: 100%;line-height: normal;
	padding: 5px 0;	/*上下、左右への余白*/
	background: #dc8f09;	/*背景色*/
	color: #fff;	/*文字色*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
	background: #f19d0a;
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
body.is-fixed #menubar.nav-fix-pos {
	position: fixed;
	width: 100%;
	top: 0px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
body.is-fixed #menubar.nav-fix-pos ul {
	background: rgba(255,255,255,0.95);
}
body.is-fixed .inner#first {
	margin-top: 0;	/*メニューの高さ（「#menubar ul li aのline-height: 50px;」と「marginの計20px分」と、「#menubarのborderの上下2px分」）を合計した数字を設定する*/
}
/*上の３つのスタイルの「.is-fixed」を「.is-fixed-menu」と変更して同じスタイルを設定して下さい。*/
body.is-fixed-menu #menubar.nav-fix-pos {
	position: fixed;
	width: 100%;
	top: 0px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
body.is-fixed-menu #menubar.nav-fix-pos ul {
	background: rgba(255,255,255,0.95);
}
body.is-fixed-menu .inner#first {
	margin-top: 0;	/*メニューの高さ（「#menubar ul li aのline-height: 50px;」と「marginの計20px分」と、「#menubarのborderの上下2px分」）を合計した数字を設定する*/
}

/*inner
---------------------------------------------------------------------------*/
.inner {
	position: relative;z-index: 20;
	padding: 0;
	margin: 0;
	clear: both;
}
.inner h2 {
	margin-bottom: 20px;
	line-height: 1.5;
	font-size: 36px;
	letter-spacing: 1px;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
	text-align: center;
}
/*h2タグのspan（装飾用）タグ*/
.inner h2 span {
	display: block;
	font-size: 14px;	/*文字サイズ*/
	color: #999;		/*文字色*/
	letter-spacing: 0.3em;	/*文字間隔を広くとる設定*/
}

.inner h3 {
	margin-bottom: 20px;
	line-height: 1.5;
	font-size: 30px;
	letter-spacing: 1px;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
	text-align: left;
	font-weight: bold;
}

.inner h4 {
	margin-bottom: 20px;
	line-height: 1.5;
	font-size: 20px;
	letter-spacing: 1px;
	text-align: left;
	font-weight: bold;
}

/*コンテンツ
---------------------------------------------------------------------------*/
.contents {
	overflow: hidden;margin: 0 auto;
	max-width: 1200px;	/*サイトの最大幅*/
	padding: 50px 5%;	/*上下、左右へのコンテンツ内の余白*/
}
.contents2 {
	margin: 0 auto;
	max-width: 1200px;	/*サイトの最大幅*/
	padding: 50px 5%;	/*上下、左右へのコンテンツ内の余白*/
}
/*h2タグ*/
.contents h2 {
	clear: both;
	margin-bottom: 20px;
	font-size: 36px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	letter-spacing: 1px;
	line-height: 2;
}
/*h2タグのspan（装飾用）タグ*/
.contents h2 span {
	display: block;
	margin-top: -10px;
	font-size: 14px;	/*文字サイズ*/
	color: #dc8f09;		/*文字色*/
	letter-spacing: 0.3em;	/*文字間隔を広くとる設定*/
}
/*h3タグ*/
.contents h3 {
	clear: both;
	margin: 20px 0;
	font-size: 20px;	/*文字サイズ*/
	text-align: center;
	padding: 0;
}
.contents h3 img{
	clear :none !important;
	margin:0 !important;
	padding:0 !important;
}
/*段落タグ*/
.contents p {
	padding:20px;
}
/*section同士の余白*/
.contents section + section {
	margin-top: 50px;
}

/*新着＆カレンダー＆Facebook＆instaglan
---------------------------------------------------------------------------*/
#newscalen{
	width: 100%;
	margin: 0;
	box-sizing: border-box;
}

#whats{
	float:left;
	display:block !important;
	width: 47%;
	margin: 0 3% 0 3%;
	border: 1px solid #ccc;
	background-color: #fff;
	box-sizing: border-box;
	    padding: 5px;
    color: #444444;
        height: 220px;
    overflow: auto;
}
#whats>p{
	line-height: 1;
}
#whats>p:first-of-type{
display: flex;
align-items: center;
}
#whats>p:first-of-type:after{
	content: '';
	background: url(../img/new.gif)no-repeat;
	width: 30px;
	height: 18px;
}
#whats>p,#whats p{
	padding: 0;
	font-weight: bold;
}
#whats dd p{
	font-weight: normal;
}
#whats p,
#whats dt,
#whats dd{
	font-size: 14px;
}
#whats dd{
	margin: 0 0 5px;
    padding: 0px 1px 5px 1px;
    line-height: 110%;
    border-bottom: solid 1px #444444;
}

#calen{
	float:left;
	display:block !important;
	width: 47%;
	height: 300px;
	margin: 0 0 3%;
} 

#fb{
	/*float:left;*/
	float:right;
	width: 42%;
	height: 520px;
	/*margin: 0 2% 3% 0;*/
	margin: 0 auto;
	border: 1px solid #ccc;
	background-color: #fff;
	box-sizing: border-box;
}
.fb-page {
    display:block !important;
    width:100%;
    max-width:500px;
    margin-left:auto;
    margin-right:auto;
}


#insta{
	float:right;
	width: 54%;
	height: 500px;
	margin: 3% 0 0 2%;
	border: 1px solid #ccc;
	background-color: #fff;
	box-sizing: border-box;
	overflow: auto;
}

/*POINT2
---------------------------------------------------------------------------*/
#point2{
	background-image:url(../images/pbgpc2.jpg);
	background-position: center;
	background-size: cover;
	padding: 50px 0 120px;
	overflow: hidden;
}

#point2 h2{
	color: #000;
	font-size: 40px;
}
#point2 h2 span{
	color: #fff;
	font-size: 40px;
	letter-spacing: 2px;
}

#po0{
	position: relative;
	background-color: #c1dbfe;
	margin: 40px 0 0;
	background-image: url("../images/po0bg.jpg");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
}

#po0 .poin{
	margin-top:0;
	width: 60%;
	padding: 20px 0;
}

#po0 .poin h3{
	position: relative;
	margin-bottom: 0;
	z-index: 9;
	color: #fff;
	font-size: 40px;
	display: inline-block;
	padding: 20px!important;
	font-weight: normal;
}
#po0 .poin h3::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
	top:0;
	left: 0;
	background-color: rgba(126,129,131,0.70);
}
#po0 .poin h3::after{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
	top:10px;
	left: 10px;
	border: 1px solid #EAEAEA;
}

#po1,#po2{
	position: relative;
	background-color: #58554F;
	margin: 40px 0;  
	width: calc(50% - 20px);
	top:0;
	float: left;
}

#po1{left: 0;margin-right: 20px;}
#po2{right: 0;margin-left: 20px;}

.poin{
	box-sizing: border-box;
	position: relative;
	margin-top:-80px;
}
#po2 .poin{
	text-align: right;
}

.poin h3{
	position: relative;
	margin-bottom: 0;
	z-index: 9;
	color: #fff;
	font-size: 40px;
	display: inline-block;
	padding: 20px!important;
	font-weight: normal;
}
.poin h3::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
	top:0;
	background-color: rgba(126,129,131,0.70);
}
.poin h3::after{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
	top:10px;
	border: 1px solid #ACA28A;
}

#po1 h3::before{right: 0;}
#po2 h3::before{left: 0;}

#po1 h3::after{left: 10px;}
#po2 h3::after{right: 10px;}

.poin p{
	position: relative;
	padding: 20px;
	color: #fff;
	text-align: left!important;
}

.poin a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto 40px;
  padding: 10px;
  width: 300px;
  color: #fff;
	text-decoration: none;
  font-size: 16px;
	border: 1px solid #fff;
  transition: 0.3s;
}
.poin a::before {
  content: '';
  position: absolute;
  bottom: -7px;
  right: -7px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: 0.2s ease 0s;
}
.poin a::after {
  content: '';
  position: absolute;
  top: 7px;
  right: -7px;
  width: 1px;
  height: 100%;
  background-color: #fff;
  transition: 0.2s ease 0.2s;
}
.poin a:hover::before {
  width: 0%;
}
.poin a:hover::after {
  height: 0%;
}
.poin a:hover {
  text-decoration: none;
  background-color: #434343;
}


@media screen and (max-width:820px){
#po0{
	background-image: url("../images/po0bgmd.jpg");
}
#po0 .poin h3{
	font-size: 28px;
}
.poin h3{
	font-size: 24px;
}
}

@media screen and (max-width:480px){

#po0{background-image: none;margin: 40px 0;}

#po0 .poin{
	margin-top:0;
	width: 100%;
	padding: 20px 0;
}
#po0 .poin h3{
	font-size: 22px;
}
#po0 .poin h3::after{top:5px;left: 5px;right: auto;}
#po0 .poin p{
	color: #333;
}

#po0 .poin a {
  color: #465b89;
	border: 1px solid #465b89;
}
#po0 .poin a::before {
  background-color: #465b89;
}
#po0 .poin a::after {
  background-color: #465b89;
}
	
#po1,#po2{width: 100%;margin:0 0 40px;text-align: left;}
#point2{
	background-image:url(../images/pbgpc2sp.jpg);
	padding: 0 0 60px;
}
#point2 h2{font-size: 28px;}
	
#po2 h3::before{right: 0;left: auto;}

#po1 h3::after{top:5px;left: 5px;right: auto;}
#po2 h3::after{top:5px;left: 5px;right: auto;}

#po1 .poin h3,#po2 .poin h3{
	padding: 20px 10px;
	font-size: 22px;
}
#po2 .poin{
	text-align: left;
}

.poin{
	box-sizing: border-box;
	position: relative;
	margin-top:-40px;
}
.poin a {font-size: 14px;}
	
}



/*POINT4
---------------------------------------------------------------------------*/
#point4{
	background-image:url(../images/pbgpc.jpg);
	background-position: center;
	background-size: cover;
	padding: 0 0 50px;
}

/*各ブロックの設定*/
.point {
	overflow: hidden;
	width: 48%;		/*ブロック幅*/
	float: left;	/*左に回り込み*/
	padding:0 1%;		/*ボックス内の余白*/
}

.point p{
	padding:0 10px 10px;		/*ボックス内の余白*/
}

/*h4見出し*/
.point h3 {
	margin: 10px 0;
}
/*figure画像*/
.point figure {
	border-radius: 50%;	/*角丸のサイズ。50%にすると円形になる。*/
	background: #fff;	/*背景色*/
	padding: 20px;		/*余白*/
	box-shadow: 2px 2px 0px 2px rgba(0,0,0,0.2);	/*影。右へ、下へ、ぼかす範囲、広げる範囲。0,0,0は黒の事で0.2は透明度20%の事*/
}

/*POLICY
---------------------------------------------------------------------------*/
#policy{
	position: relative;
	padding: 0;
	margin: 0;
	z-index: -1;
}

#policy::after{
	position: fixed;
    top:0;
    left:0;
	content: "";
	width: 100vw;
	height: 100vh;
	background-size: cover;
	z-index: -1;
}

#policyt{
	position: relative;
	margin: 0;
	background-color: rgba(230,235,237,0.4);
}
#policyt .contents{
	padding:40px 0;
	margin: 0 auto;
}

#policy p{
	padding: 0;margin: 0;
}

#policy .contents a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 40px auto 0;
  padding: 10px;
  width: 250px;
  font-size: 14px;
	border:1px solid rgba(0,0,0,0.50);
  transition: 0.3s;
	text-decoration: none;
}
#policy .contents a::before {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  right: -2em;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 1px;
  background-color: rgba(0,0,0,0.40);
  transition: 0.3s;
}
#policy .contents a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -2em;
  transform: translateY(-50%);
  width: 70px;
  height: 1px;
  background-color: rgba(0,0,0,0.40);
  transition: 0.3s;
}
#policy .contents a:hover {
  text-decoration: none;
	color: #fff;
  background-color: #BDC1C8;
}
#policy .contents a:hover::before,
#policy .contents a:hover::after {
  right: -2.5em;
}

#policyb{
	position: relative;
	padding: 80px 0;
	margin: 0;
}

.button09 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 1em;
  width: 300px;
  color: #fff;
  font-size: 16px;
  background-color: rgba(0,0,0,0.4);
  transition: 0.3s;
	text-decoration: none;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
	letter-spacing: 3px;
}

.button09 a::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 1px solid #C7C7C7;
  transition: 0.2s;
}

.button09 a::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}

.button09 a:hover::before {
  top: 0px;
  left: 0px;
	width: calc(100% - 1px);
	height: calc(100% - 1px);
}
.button09 a:hover {
  text-decoration: none;
  background-color: rgba(89,97,107,1);
}

#policy h2{
	font-size: 45px;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
	text-align: center;
	margin: 0 0 20px;
}
#policy h3{
	font-size: 40px;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
	letter-spacing: 3px;
	text-align: left;
	font-weight: normal;
}

#pol1,#pol2,#pol3{
	background-position: center;
	overflow: hidden;
	position: relative;
}

#pol1,#pol3{background-color: rgba(230,235,237,0.8);}
#pol2{background-color: rgba(217,225,228,0.8);}


#pol1::before,#pol3::before{
	white-space: pre;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
	position: absolute;
	padding: 140px 0;
	top: 0;
	left: 0;
	z-index: 0;
	font-size: 140px;
	line-height: 1;
	color: rgba(0,0,0,0.03);
}
#pol1::after,#pol3::after{
	position: absolute;
	content: "";
	width: 55%;
	height: 80%;
	bottom: -5%;
	right: 0;
	z-index: 0;
}

#pol1::before{content: "Doc's Best & \AMTA cement";}
#pol3::before{content: "Microscopy \A Bacterial treatment";}
#pol1::after,#pol3::after{background-color: rgba(29,29,29,0.10);}

#pol2::before{
	content: "Microscope \ARoot canal treatment";
	white-space: pre;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
	position: absolute;
	padding: 140px 0;
	top: 0;
	right: 0;
	text-align: right;
	z-index: 0;
	font-size: 140px;
	line-height: 1;
	color: rgba(255,255,255,0.2);
}
#pol2::after{
	position: absolute;
	content: "";
	width: 55%;
	height: 80%;
	bottom: -5%;
	left: 0;
	z-index: 0;
	background-color: rgba(54,87,83,0.10);
}

#pol1 .contents,#pol3 .contents{
  display: flex;
	align-items: center;
	flex-direction: row-reverse;
  flex-wrap: wrap;
}

#pol2 .contents{
  display: flex;
	align-items: center;
  flex-wrap: wrap;
}

.poll{
	width: 50%;
  align-items: center;
	position: relative;
	z-index: 1;
}
.pol{
	text-align: left;
}

.polr{
	width: 50%;
  align-items: center;
	position: relative;
	z-index: 1;
}
.por{
	text-align:right;
}

@media screen and (max-width:768px){
#policy h3{
	font-size: 36px;
}
}

@media screen and (max-width:480px){
	
#policy h2{font-size: 24px!important;margin:20!important;}
#policy h3{font-size: 24px!important;text-align: center;}
.poll{
	width: 100%!important;
  align-items: center;
}
.polr{
	width: 100%!important;
  align-items: center;
}
	
#policy .contents a {
  width: 200px;
}

#policyb {
  padding:40px 0;
}
	
.button09 a {
  margin: 40px auto;
  padding: 1em;
  width: 250px;
}
	
#pol1::before,#pol2::before,#pol3::before{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
	padding:0;
	top: 20px;
	right: auto;
	left: 0!important;
	font-size: 100px;
	text-align: left;
}
#pol1::after,#pol2::after,#pol3::after{
	top:0;
	bottom:auto;
	right: auto;
	left: 0;
	width: 60%;
	height: 50%;
	}
	
}

/*BEAUTY
---------------------------------------------------------------------------*/

#beauty{
	background-image: url("../images/bebg.jpg")	;
	background-position: center bottom;
	background-size: cover;
	padding: 100px 0;
}

#bele{
	width: calc(100%-100px);
	padding: 0 50px;
	float: left;
	margin: 0 0 40px;
}

#bele h3{
	margin-bottom: 20px;
	line-height: 1.5;
	font-size: 36px;
	letter-spacing: 2px;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
	text-align: center;
	font-weight: bold;
}
#bele p{
	padding: 0 20px 0 0;
}

#beri{
	width: calc(100%-100px);
	padding: 0 50px;
	float: left;
}

#beri2{
	width: calc(100%-100px);
	padding: 0;
	float: left;
}

#beri ul,#beri2 ul{
	list-style: none;
}
#beri ul li,#beri2 ul li{
	margin: 0 7px 14px;
	width: calc(100%/3 - 14px);
	float: left;
}
#beri ul li img,#beri2 ul li img{
box-shadow: 5px 3px 10px 0px rgba(0,0,0,0.3);
}


@media screen and (max-width:1300px){
	#beauty{
	background-image: url("../images/bebg.jpg")	;
	background-position: left bottom;
	background-size: cover;
	padding: 100px 0;
}

#bele{
	width:60%;
	padding: 0 50px;
	float: right;
	margin: 0 0 40px;
}
}

@media screen and (max-width:768px){
#beauty{
	background-image: url("../images/bebg.jpg")	;
	background-position: left bottom;
	background-size: cover;
	padding: 0;
}

#bele{width: 60%; padding: 0;float: right;}
#beri,#beri2{padding: 0;}
}

@media screen and (max-width:480px){
	
#beauty{
	background-image: url("../images/bebgsp.jpg")	;
	background-position: center bottom;
	background-size: cover;
	padding: 0 0 250px;
}
#bele{width: 100%; }
#beri ul li,#beri2 ul li{margin: 0 0 20px;width: 100%;}
#bele p{padding: 0;}
#bele h3{
	font-size: 30px;
	text-align: center;
}
	
}



/*LIST
---------------------------------------------------------------------------*/
#list{
	background: linear-gradient(45deg, rgba(204,211,220,1.00) 0%, rgba(241,241,241,1) 100%);
}
#list h2{
	color: #303234;
}
#listin ul{
	list-style: none;
}
#listin li{
  position: relative;
	margin:0.5% 0.5%;
	width: calc(100% / 5 - 1%);
	border: 1px solid #33393F;
	box-sizing: border-box;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	float: left;
	display: flex;
	align-items: center;
	height: 80px;
	background-color: rgba(0,0,0,0.5);
}
#listin li::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 30px 30px;
  border-color: transparent transparent #33393F transparent;
  transition: 0.3s;
}
#listin li::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 5px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #fff;
  transition: 0.3s;
}
#listin h3{
	font-size: 16px;
	text-align: center;
	color: #fff;
	margin: 0 auto;
	line-height: 1;
	letter-spacing: 0.1em;
	font-weight: bold;
	text-shadow: 0px 0px 4px rgba(0,0,0,1)!important;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}
#listin li:hover{
	opacity: 0.5;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.liin{
	padding:0 10px;
	background-color: rgba(0,0,0,0.2);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;position: relative;
	font-size: 12px;		/*文字サイズ*/
	text-align: center;
	z-index: 999;
}
footer a {color: #333;}
footer a:hover {color: #fff;}
footer .pr {display: block;font-size: 80%;}

#footel{
	margin:0;
	padding:10px 0;
	width:100%;
	font-weight:normal;
	color:#FFF;
	}

/*BACK TOP設定
---------------------------------------------------------------------------*/

.content p{
	margin-bottom: 100px;
	text-align: center;
	color: #f27773;
	font-weight: bold;
}
#back-top{
	position: fixed;
	bottom: 10vh;
	right: 3%;
	z-index: 9999;
}
#back-top a{
	width: 40px;
	height: 40px;
	background: rgba(0,0,0,.6);
	display: block;
	color: #fff;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	text-decoration: none;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	padding: 10px 0 0;
	color: #fff;
}
#copyright a{
	color: #fff;
}

/*医院情報
---------------------------------------------------------------------------*/
#info .pr {display: block;font-size: 80%;}
#info {
	position: relative;z-index: 20;
	clear: both;
	line-height: 1.5;	/*行間を基準より少し狭くする*/
	padding: 50px 0;	/*上、左右、下へのボックス内の余白*/
	font-size: 85%;		/*文字サイズ*/
}
#info a {
	color: #333;	/*リンクの文字色*/
	text-decoration: none;
}
#info a:hover {
	color: #333;	/*マウスオン時のリンクの文字色*/
}
/*footer内のh3タグ*/
#info h3 {
	margin-bottom: 10px;
	font-size: 24px;	/*文字サイズ*/
}
/*footer内のh3タグの１文字目*/
#info h3::first-letter {
	border-left: 2px solid #fff;	/*左側の線の幅、線種、色*/
	padding-left: 10px;				/*線とテキストの間の余白*/
}
/*footer内の段落タグ*/
#info p {
	padding: 0px 10px 20px;	/*上、左右、下への余白*/
}
/*footer内の左側のブロック指定*/
#footer-left {
	width: 38%;	/*幅*/
	float: left;	/*左に回り込み*/
	padding-left: 5%;	/*左に空ける余白*/
}
#footer-left p{
	display: block;
	width: 90%;
}
/*フッターのロゴブロック*/
#footer-logo {
	 padding-bottom: 10px;
	 margin-bottom: 10px;
}
/*フッターのロゴ画像*/
#footer-logo img {
	 width: 100%;
}
/*footer内の右側のブロック指定*/
#footer-right {
	width: 48%;
	float: right;
	padding-right: 5%;
}

/*フッターリンク
---------------------------------------------------------------------------*/
#footermenu {
	clear: both;
	padding: 20px 0;
	overflow: hidden;
 }
#footermenu ul {
	list-style: none;
	margin: auto;
	width: 96vw;
}
#footermenu li {
	float: left;
	width: 15vw;
	padding:0.5% 0.5vw;
}

/*診療時間
---------------------------------------------------------------------------*/
.time {
	width: 100%;
	margin: 0 auto 20px;
	border-bottom: 1px solid #ccc;	/*テーブルの下の枠線の幅、線種、色*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.8);	/*背景色。255,255,255は白の事で0.8は透明度80%の事*/
}
.time th {
	border-top: 1px solid #ccc;	/*tdタグとthタグの上側の枠線の幅、線種、色*/
	padding:4px;	/*ボックス内の余白*/
	word-break: break-all;
	font-weight: normal;
	width: 25%;
}
.time td {
	border-top: 1px solid #ccc;	/*tdタグとthタグの上側の枠線の幅、線種、色*/
	padding:4px;	/*ボックス内の余白*/
	word-break: break-all;
	text-align: center;
}

/*inviewのスタイル
---------------------------------------------------------------------------*/
/*下から上にフェードインしてくるスタイル（待機中）*/
.up {
	overflow: hidden;position: relative;
	opacity: 0;		/*透明度0%*/
	bottom: -50px;	/*基準値の下50pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.upstyle{
	opacity: 1;		/*透明度100%*/
	bottom: 0px;	/*基準値まで戻す*/
	transition: 1s 0.3s;	/*1sはアニメーションの実行時間1秒。0.3sは0.3秒遅れてスタートする指定。*/
}
/*左からフェードインしてくるスタイル（待機中）*/
.left {
	overflow: hidden;position: relative;
	opacity: 0;		/*透明度0%*/
	left: -200px;	/*基準値より左に200pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.leftstyle{
	opacity: 1;		/*透明度100%*/
	left: 0px;		/*基準値まで戻す*/
	transition: 1s 0.3s;	/*1sはアニメーションの実行時間1秒。0.3sは0.3秒遅れてスタートする指定。*/
}
/*右からフェードインしてくるスタイル（待機中）*/
.right {
	overflow: hidden;position: relative;
	opacity: 0;		/*透明度0%*/
	right: -200px;	/*基準値より右に200pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.rightstyle{
	opacity: 1;		/*透明度100%*/
	right: 0px;		/*基準値まで戻す*/
	transition: 1s 0.3s;	/*1sはアニメーションの実行時間1秒。0.3sは0.3秒遅れてスタートする指定。*/
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb0 {margin-bottom: 0 !important;}
.mb10 {margin-bottom: 10px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb50 {margin-bottom: 50px !important;}
.p0 {padding:0 !important;}
.p10 {padding:10px !important;}
.p20 {padding:20px !important;}
.p30 {padding:30px !important;}
.p40 {padding:40px !important;}
.p50 {padding:50px !important;}
.clear {clear: both;}
ul.disc {padding: 0 25px 0;list-style: disc;}
.color1, .color1 a {color: #dc8f09 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.w50 {overflow: hidden;width: 50%;}
.photo {padding: 10px;background: #fff;border: 5px solid #fff;box-shadow: 2px 4px 5px rgba(0,0,0,0.2);}
.big1 {font-size: 40px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}

.c {text-align: center !important;}
.r {text-align: right !important;}
.l {text-align: left !important;}
.fl {float: left;}
img.fl {float: left;width:30%;margin-right: 20px;}
.fr {float: right;}
img.fr {float: right;width:30%;margin-left: 20px;}
img.fl40 {float: left;width:40%;margin-right: 20px;}
img.fr40 {float: right;width:40%;margin-left: 20px;}
.tw50 {overflow: hidden;width: 50%;}
.tw50-2 {overflow: hidden;width: 50%;}
.tw33 {overflow: hidden;width: 33%;}
.tw25 {overflow: hidden;width: 25%;}

.pc { display: block !important;}
.sp { display: none !important; }
.pc2 { display: block !important;}
.sp2 { display: none !important; }
.imgc{margin: 0 auto}
.fontmin{font-family: "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";}
.cw{color: #FFF;}
.bgc{background-color: #ed9f42;}
.bgw{background-color: #fff;}
.bgb{background-color: #1F1D1E;}
.bgg{background-color: #DCDFE2;}
.bg{background-color: #F2F7F7 !important;}
.bg2{background-color: #EBE7DB !important;}
.bg3{background-color: #143D80 !important;}
.bds{border: solid 1px #b39a46;}
.bdd{border: dotted 2px #b39a46;}
.oh{overflow: hidden;}

.btn {
  position: relative;
  display: inline-block;
	box-sizing: border-box;
  padding: 0.25em 5%;
  text-decoration: none;
  color: #fff;
  background: #735D2F;
  transition: .4s;
	width: 90%;
	font-size: 16px;
	line-height: 36px;
	letter-spacing: 1px;
border: 1px solid #735D2F;
}
.btn:hover {
  background: #fff;
  color:#735D2F;
border: 1px solid #735D2F;
}
.btn::after {
position: absolute;
content: "";
border-top: 2px solid #FFF;
border-right: 2px solid #FFF;
width: 8px;
height: 8px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
right: 20px;
top: 16px;
}

table.com{
margin:0 auto;
	padding: 4px;
    border-collapse:collapse;
    border-spacing:0;
    background-color:#ffffff;
    empty-cells:show;
	box-sizing: border-box;
}
.com th{
	font-size: 14px;
	letter-spacing: 1px;
    padding:10px;
	border-bottom: solid 4px #fff;
	border-left: solid 4px #fff;
	color: #333;
}
.com td{
	font-size: 14px;
	color: #333; 
    padding:10px;
	border-bottom: solid 4px #fff;
	border-left: solid 4px #fff;
}

table.com2{
	width: 100%;
margin:0 auto;
	padding: 4px;
    border-collapse:collapse;
    border-spacing:0;
    background-color:#ffffff;
    empty-cells:show;
	border-top: solid 1px #ccc;
	border-left: solid 1px #ccc;
}
.com2 th{
	font-size: 14px;
	letter-spacing: 1px;
    padding:10px;
	border-bottom: solid 1px #ccc;
	border-right: solid 1px #ccc;
	color: #333;
}
.com2 td{
	font-size: 14px;
	color: #333; 
    padding:10px;
	border-bottom: solid 1px #ccc;
	border-right: solid 1px #ccc;
}

table.com3{
	width: 100%;
margin:0 auto;
	padding: 4px;
    border-collapse:collapse;
    border-spacing:0;
    background-color:#ffffff;
    empty-cells:show;
	border-top: solid 1px #ccc;
	border-left: solid 1px #ccc;
}
.com3 th{
	font-size: 14px;
	letter-spacing: 1px;
    padding:10px;
	border-bottom: solid 1px #ccc;
	border-right: solid 1px #ccc;
	color: #333;
}
.com3 td{
	font-size: 14px;
	color: #333; 
    padding:10px;
	border-bottom: solid 1px #ccc;
	border-right: solid 1px #ccc;
}


/*内部ページ
---------------------------------------------------------------------------*/

.scontents {
	overflow: hidden;margin: 0 auto;
	max-width: 1200px;	/*サイトの最大幅*/
	padding: 50px 5%;	/*上下、左右へのコンテンツ内の余白*/
	line-height: 2;
}

.conl70{
	float: left;
	width: 70%;
}
.conl30{
	float: left;
	width: 30%;
}

.conr70{
	float: right;
	width: 70%;
}
.conr30{
	float: right;
	width: 30%;
}

.conl60{
	float: left;
	width: 60%;
	overflow: hidden;
}
.conl40{
	float: left;
	width: 40%;
}

.conr60{
	float: right;
	width: 60%;
}
.conr40{
	float: right;
	width: 40%;
}

.txt{
	padding: 10px;
	color: #333;
	overflow: hidden;
	clear: both;
}

.st {
	position: relative;
	padding:.5em .2em;
	background-color: #2D4253;
	text-align:center !important;
	font-size:20px !important;
	font-weight:bold;
	letter-spacing:2px;
	color:#FFF;
	margin:0 auto 30px;
}
.st::before,
.st::after {
	position: absolute;
	bottom: 8px;
	z-index: -1;
	content: '';
	width: 30%;
	height: 50%;
	box-shadow: 0 10px 15px rgba(0, 0, 0, .2);
}
.st::before {
	-webkit-transform: rotate(-3deg);
	transform: rotate(-3deg);
	left: .3em;
}
.st::after {
	-webkit-transform: rotate(3deg);
	transform: rotate(3deg);
	right: .3em;
}

.st2 {
	margin: 0 auto;
  position: relative;
  padding:1% 2%;
  background: repeating-linear-gradient(-45deg, #F1F1F1, #F1F1F1 2px,#E3E9ED 3px, #E3E9ED 8px);
  border-radius: 7px;
	font-size:18px !important;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif" !important;
	text-align: left!important;
}

.st2:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #E3E9ED;
  width: 0;
  height: 0;
}

.st2-2 {
	margin: 0 auto;
  position: relative;
  padding:1% 2%;
  background: repeating-linear-gradient(-45deg, #EDEBE3, #EDEBE3 2px,#E1DFD2 3px, #E1DFD2 8px);
  border-radius: 7px;
	font-size:18px !important;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif" !important;
	text-align: left!important;
}

.st2-2:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #E1DFD2;
  width: 0;
  height: 0;
}

.st2sta {
	margin: 0;
  position: relative;
  padding:1% 2%;
  background: repeating-linear-gradient(-45deg, #EDEBE3, #EDEBE3 2px,#E1DFD2 3px, #E1DFD2 8px);
  border-radius: 7px;
	font-size:18px !important;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif" !important;
	text-align: left!important;
	width: 60%;
}

.st2sta:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #E1DFD2;
  width: 0;
  height: 0;
}

ul.smli li{border-bottom: 2px dotted #ccc;}

/*title*/

.inner h2.acc {
	background: url(../img/acc/t2.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.all {
	background: url(../img/all/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.geka {
	background: url(../img/geka/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.ds {
	background: url(../img/3ds/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.ama {
	background: url(../img/ama/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.smile {
	background: url(../img/smile/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.chew {
	background: url(../img/chew/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.mira {
	background: url(../img/mira/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.jaw {
	background: url(../img/jaw/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.preve {
  background: url(../img/preve/t.jpg) no-repeat center center/cover;
  padding: 140px 0px 100px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 36px;
  letter-spacing: 1px;
  font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
  text-align: center;
}

.preve span {
  display: block;
  font-size: 14px;
  color: #999;
  letter-spacing: 0.3em;
}
.inner h2.laser {
	background: url(../img/laser/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.cad {
	background: url(../img/cad/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.chi {
	background: url(../img/chi/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner .doc {
  background: url(../img/doc/t.jpg) no-repeat center center/cover;
  padding: 140px 0px 100px;
  color: #fff;
	margin-bottom: 20px;
  line-height: 1.5;
  font-size: 36px;
  letter-spacing: 1px;
  font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
  text-align: center;
}
.inner .doc span {
  display: block;
  font-size: 14px;
  color: #999;
  letter-spacing: 0.3em;
}
.inner h2.end {
	background: url(../img/end/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.first {
	background: url(../img/first/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.gishi {
	background: url(../img/gishi/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.imp {
	background: url(../img/imp/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.info {
	background: url(../img/info/t3.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.invi {
	background: url(../img/invi/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.link {
	background: url(../img/link/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.list {
	background: url(../img/list/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.meth {
	background: url(../img/meth/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.mou {
	background: url(../img/mou/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.net {
	background: url(../img/net/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.nom {
	background: url(../img/nom/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.mek {
	background: url(../img/mek/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.meth {
	background: url(../img/meth/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.peri {
	background: url(../img/peri/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
	margin-bottom: 20px;
  line-height: 1.5;
  font-size: 36px;
  letter-spacing: 1px;
  font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
  text-align: center;
}
.peri span {
  display: block;
  font-size: 14px;
  color: #999;
  letter-spacing: 0.3em;
}
.inner h2.pmtc {
	background: url(../img/pmtc/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.poli {
	background: url(../img/poli/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.pri {
	background: url(../img/pri/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.puc {
	background: url(../img/puc/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.rec {
	background: url(../img/rec/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.sm {
	background: url(../img/sm/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.staff {
	background: url(../img/staff/t2.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.whi {
	background: url(../img/whi/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.zir {
	background: url(../img/zir/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.dire {
	background: url(../img/dire/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}
.inner h2.lam {
	background: url(../img/lam/t.jpg) no-repeat center center/cover;
	padding: 140px 0px 100px;
	color: #fff;
}

.metht1{
	background:linear-gradient(0deg,#ffc708 0%,#ffc708 50%,#fee60a 50%,#fee60a 100%);
}
.metht1 img{
	margin: 0 auto;
}
.metht2{
	background:linear-gradient(0deg,#ffa306 0%,#ffa306 50%,#f8db03 50%,#f8db03 100%);
}
.metht2 img{
	margin: 0 auto;
}
.metht3{
	background:linear-gradient(0deg,#ff8307 0%,#ff8307 50%,#feaf0a 50%,#feaf0a 100%);
}
.metht3 img{
	margin: 0 auto;
}


/*画面を横向きにした場合の高さが500px以下の場合の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (orientation: landscape) and (max-height:500px){


/*トップページの「ホームページ開設キャンペーン」ボックス設定
---------------------------------------------------------------------------*/
#topics {
	display: none;	/*画面が狭いので非表示にする*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s li a {
	float: left;	/*左に回り込みさせて２列にする*/
	width: 40%;		/*幅*/
	margin-left: 4%;	/*メニューの左側に空けるスペース*/
}

}


@media screen and (max-width:1100px){
	

/*オリジナルメニュー
---------------------------------------------------------------------------*/

#tel{
	display: block;
	width:20%;
	margin:0; 
	padding:0;
	right:0;
	top: 0;
	position:fixed;
	z-index:999;
	}

#tel a{
	display:block;
	width:100%;
	height:100%;
}
	
/*メインメニュー
---------------------------------------------------------------------------*/

/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: fixed;z-index: 50;
	top: 0px;
	width: 100%;
	background: rgba(0,0,0,0.7);	/*背景色*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	margin-bottom: 30px;
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 16px;	/*メニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	color: #fff;	/*文字色*/
	font-size: 14px;
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}
}

/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){
/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*fixmenuから折りたたみメニューになるのでリセット。*/
body.is-fixed .inner#first,body.is-fixed-menu .inner#first {
	margin-top: 0;
}

/*inner
---------------------------------------------------------------------------*/
.inner#first {padding-top: 50px;}
body#top .inner#first {padding-top: 0px;}

/*コンテンツ
---------------------------------------------------------------------------*/
/*h2タグ*/
.contents h2 {
	font-size: 30px;	/*文字サイズ*/
}
section + section {
	padding-top: 20px;
}

/*list1（トップページの「こんなお悩みありませんか？」のブロック）
---------------------------------------------------------------------------*/
/*各ブロックの設定*/
.point {
	width: 48%;		/*ブロック幅*/
}



/*Facebook
---------------------------------------------------------------------------*/
#fb{
	width: 100%;
}

/*医院情報
---------------------------------------------------------------------------*/
/*footer内の左右のブロック指定*/
#footer-left,#footer-right {
	width: auto;	/*幅*/
	float: none;	/*回り込みの解除*/
	padding: 0 5%;	/*上下、左右へのブロック内の余白*/
}

/*footer内の段落タグ*/
#info p {
	float: left;
}
/*フッターリンク
---------------------------------------------------------------------------*/
#footermenu li {
	width: 31vw;
}
	
/*その他
---------------------------------------------------------------------------*/
.big1 {font-size: 32px;}
.w50 {overflow: hidden;width: auto;}
.tw50-2 {width: 100%;}
	
.pc2 { display: none !important;}
.sp2 { display: block !important; }

.conl70{
	width: 55%;
}
.conl30{
	width: 45%;
}

.conr70{
	width: 55%;
}
.conr30{
	width: 45%;
}

.conl60{
	width: 50%;
}
.conl40{
	width: 50%;
}

.conr60{
	width: 50%;
}
.conr40{
	width: 50%;
}
	
	
}

@media screen and (max-width:768px){

/*==================header==================*/
	
header {
	margin-bottom: 0;
	padding: 10px 0 0;
	height: 9vh;
	width: 100%;
}


#listin li{
  position: relative;
	margin:0.5% 0.5%;
	width: calc(100% / 3 - 1%);
	border: 1px solid #33393F;
	box-sizing: border-box;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	float: left;
	display: flex;
	align-items: center;
	height: 80px;
	background-color: rgba(0,0,0,0.5);
}
	
	
}

/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;	/*行間*/
}

/*ヘッダー
---------------------------------------------------------------------------*/

	
header {
	height: 60px!important;
	background-color: rgba(255,255,255,1.00)!important;
}
	
.slider {
	width: 100%;
	margin:0;
	padding:0;
}

/*新着＆カレンダー＆Facebook＆Instagram
---------------------------------------------------------------------------*/
#newscalen{
	width: 100%;
	margin: 0 0 20px;
}
	
#whats{
	width: 98%;
	margin: 0 0 20px;
}
	
#calen{
	width: 100%;
	margin: 0 0 40px;
}

#fb{
	width: 100%;
	margin: 20px 0;
}

#insta{
	width: 100%;
	margin: 0;
}
	
/*inner
---------------------------------------------------------------------------*/
.inner#first {padding-top: 70px;}

.inner h3 {
	font-size: 24px;
	text-align: center;
}

.inner h4 {
	font-size: 20px;
	text-align: center;
}

/*POINT4
---------------------------------------------------------------------------*/
#point4{
	padding: 0;
}
/*各ブロックの設定*/
.point {
	width: 100%;		/*ブロック幅*/
	padding: 0;
}


/*LIST
---------------------------------------------------------------------------*/
#listin li{
	width: 100%;
	margin: 0 0 10px;
}
#listin li img{
	width: 30%;
	float: left;
}
#listin li h3 {
  font-size: 18px;
}
	
	
/*医院情報
---------------------------------------------------------------------------*/
#info {
	text-align: center;
}

/*フッターリンク
---------------------------------------------------------------------------*/
#footermenu {
}
#footermenu ul {
	width: 100%;
}
#footermenu li {
	width: 100%;
	padding:1% 5%;
}

/*フッター
---------------------------------------------------------------------------*/
	
#footel {
	margin:0;
	position: fixed;
    bottom:0;
	width:100%;
	padding:0;
	display: flex;
	background: #21324f;
	justify-content: space-between;
}

#footel a{
	width: 50%;
	text-align: center;
	margin: 0;
		padding: 0;
	 display: block;
	}
	#footel .tel{
		background:#ff7633; 
	}
	#footel a img{
		width: 100%;
		max-width: 100%;
		float: left;
  display: block;
		 letter-spacing: 1em;
		 line-height:1;
		vertical-align:middle;
		margin: 0;
		padding: 0;
	}
#footel a:hover{
		opacity: 0.7;
	}	
	
	
/*テーブル
---------------------------------------------------------------------------*/
.time th {
	width: 40%;
}
	
/*その他
---------------------------------------------------------------------------*/
.photo {padding: 5px;border: 2px solid #fff;}
.ws,.wl {width: 94%;}
.fl {float: none;}
img.fl {float: none;display: block;width:90%;margin: 0 auto 20px;}
.fr {float: none;}
img.fr {float: none;display: block;width:90%;margin: 0 auto 20px;}
img.fl40 {float: none;display: block;width:90%;margin: 0 auto 20px;}
img.fr40 {float: none;display: block;width:90%;margin: 0 auto 20px;}
.tw50 {width: auto;}
.tw33 {width: auto;}
.tw25 {width: auto;}
.big1 {font-size: 30px;}

.pc { display: none !important; }
.sp { display: block !important; }
	
table.com {
	width: 100%;
  border-collapse: collapse;
}
.com td,.com th {
	width: auto;
  display: block;
  padding: 10px;
}
	
table.com2 {
	width: 100%;
  border-collapse: collapse;
}
.com2 td,.com2 th {
	width: auto;
  display: block;
  padding: 10px;
}

/*内部
---------------------------------------------------------------------------*/
.scontents {
	padding:30px 0;	/*上下、左右へのコンテンツ内の余白*/
}

.conl70{
	float:none;
	width: 100%;
}
.conl30{
	float:none;
	width: 100%;
}

.conr70{
	float: none;
	width: 100%;
}
.conr30{
	float: none;
	width: 100%;
}

.conl60{
	float:none;
	width: 100%;
}
.conl40{
	float:none;
	width: 100%;
}

.conr60{
	float: none;
	width: 100%;
}
.conr40{
	float: none;
	width: 100%;
}

.st {
	width: 94%;
	font-size: 16px;
	padding:.5rem 1%;
	margin:0 2% 30px;
}

.st2{
	width: 92%;
	}

.st2sta{
	margin: 0 auto;
	width: 92%;
	}

.metht1{
	background:linear-gradient(0deg,#ffc708 0%,#ffc708 40%,#fee60a 40%,#fee60a 100%);
}


}


/*----------------------------------------------------
  form
----------------------------------------------------*/
#entform {
    display: block;
    overflow: hidden;
    position: relative;
}

#entform table { width: 96%; font-size:16px; margin:10px auto;}
#entform th, #entform td  { padding: 10px; border: 1px solid #ddd; }
#entform th  { background: #fafafa; font-weight:normal;}
.must{
	background-color: red;
    color: white;
    font-size: 70%;
    padding: 5px 5px;
    margin-right: 5px;
}
#entform input{
	    min-height: 30px;
}
#entform input{
	    min-height: 30px;
}
#entform input[type="checkbox"],#entform input[type="radio"] {
	min-height: auto;
}
#entform select{
	    min-height: 21px;
}
#entform .wpcf7-checkbox .wpcf7-list-item{
	width: 45%;
}
#entwrap{
    width:100%;
    margin:0 auto;
    padding:0;
    text-align:center;
    }
    
@media screen and (max-width: 768px) {
    #entwrap{
    width:94%;
    margin:0 auto;
    padding:15px 0 80px;
    text-align:center;
    }
}
       

@media only screen and (max-width:480px){
#entwrap{
    width:94%;
    margin:0 auto;
    padding:15px 0 80px;
    text-align:center;
    }
}


.ent th  { width: 20%; text-align: left; font-weight:normal;}
.ent td  { text-align: left;}



@media only screen and (max-width:480px){
    .ent table {margin:10px auto;}
    .ent th,
    .ent td{
		box-sizing: border-box;
    width: 100%;
    display: block;
    border-top: none;
    font-size:14px;
    }
  .ent tr:first-child th { border-top: 1px solid #ddd; }


}

.wpcf7 textarea {
	border: 1px solid #ccc;
}
.wpcf7 .numss{
	max-width:100px;
}
.wpcf7 .recs td p:nth-child(2){
	margin-top:10px;
}
@media(min-width:576px){
	.wpcf7 .recs th{
		width:30%;
	}
}


.form-control{box-sizing: border-box; display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}

