@import url(//fonts.googleapis.com/css?family=Cambo);

/*css*/
@import "../css/reset.css";
@import "../css/skeleton.css";
@import "../css/superfish.css";
@import "../css/camera.css";
@import "../css/carousel.css";

/* #FFFDED  オフホワイト */
/* #FEEDE2  ミルキーピンク */
/* #FDEEF2  チェリーブロッサム */
/* #EAE5F0  パウダーパープル */
/* #EBF5FD  パウダーブルー */
/* #EBF4EB  パウダーアクア薄緑*/
/* #FFFCDA  クリーム　*/

body {
	background-color: #FFFDED;
	height:100%;
	font-family: "Lucida Grande",
	"Hiragino Kaku Gothic ProN",
	"Meiryo",
	sans-serif;
	font-size:18px;
	color:#6e3c0f;
}

.main {	padding:250px 0 10px; }
.bg {
	max-width:1142px;
	margin:0 auto;
	background:#fff;
	border: solid 2px #ff99a3;
}

.bg_patern {
	padding:39px 0 20px;
	position:relative;
	margin:45px 0 0 0;
	background-color:  #fdf2ee;
}

a[href^="tel:"] {
	color: inherit;
	text-decoration:none;
}
* {
	-webkit-text-size-adjust: none;
}

.margin_top1 {margin-top:5px;}
.margin_top2 {margin-top:10px;}
.margin_top3 {margin-top:15px;}
.margin_top4 {margin-top:20px;}
.margin_top5 {margin-top:30px;}
.margin_top6 {margin-top:80px;}
.margin_1 {margin-bottom:5px;}
.margin_2 {margin-bottom:10px;}
.margin_3 {margin-bottom:15px;}
.margin_4 {margin-bottom:20px;}
.margin_5 {margin-bottom:25px;}
.margin_6 {margin-bottom:30px;}
.margin_7 {margin-bottom:35px;}
.margin_8 {margin-bottom:40px;}
.margin_9 {margin-bottom:50px;}

.mobile{display:none;}


/* 1. 右下の丸い起動ボタン */

/* --------------------------
   ▼▼▼ アピール吹き出し ▼▼▼
   -------------------------- */
#chat-tooltip {
   	position: fixed;
    bottom: 90px; /* ボタンの上に表示 */
    right: 20px;
    background-color: white;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 999;
    border: 2px solid #9E86C8;
    font-size: 14px;
    color: #5B4A7E;
    line-height: 1.4;
    animation: floatUpDown 3s infinite ease-in-out; /* ふわふわ動かす */
    max-width: 200px;
}

/* 吹き出しのしっぽ（▼）を作る */
#chat-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px; /* 本体の下に突き出す */
    right: 20px;  /* ボタンの中央くらいに合わせる */
    border-top: 8px solid #9E86C8;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}

/* 閉じるボタン */
.tooltip-close {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ccc;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    cursor: pointer;
    line-height: 18px; /* 文字の縦位置調整 */
    padding: 0;
}

/* ふわふわ動くアニメーション */
@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* スマホでは邪魔かもしれないので非表示にする場合（お好みで） */
@media screen and (max-width: 768px) {
    #chat-tooltip { display: none; }
}




        #chat-toggle-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background-color: #9E86C8; /* ★ラベンダー色 */
            color: white;
            border-radius: 50%;
            border: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            cursor: pointer;
            font-size: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            transition: transform 0.2s;
        }
        #chat-toggle-btn:hover {
            transform: scale(1.1); /* マウスを乗せると少し大きくなる */
        }

/* 2. チャットウィンドウ全体（最初は隠しておく） */
        #chat-widget {
            position: fixed;
            bottom: 90px; /* ボタンの少し上 */
            right: 20px;
            width: 350px;
            max-width: 90%; /* スマホ対応 */
            height: 500px;
            max-height: 80vh;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            display: none; /* 初期状態は非表示 */
            flex-direction: column;
            overflow: hidden;
            z-index: 1000;
        }

        /* 表示・非表示を切り替えるクラス */
        #chat-widget.active {
            display: flex;
        }

/* ヘッダー */
        #chat-header {
            background-color: #9E86C8; /* ★ラベンダー色 */
            color: white;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        #close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
        }

/* 質問チップスのスタイル */
        #suggestion-chips {
					display: flex;
					overflow-x: auto;
					padding: 10px;
					gap: 10px;
					white-space: nowrap;
					background: #f9f9f9;
					border-top: 1px solid #eee;
				}
				.chip {
					background: white;
					border: 1px solid #9E86C8; /* ★枠線はラベンダー */
					color: #5B4A7E;            /* ★文字は「濃い紫」でくっきりと */
					padding: 5px 12px;
					border-radius: 20px;
					font-size: 13px;
					cursor: pointer;
					transition: 0.2s;
				}
				/* マウスを乗せたとき、またはスマホでタップしたとき */
				.chip:hover, .chip:active {
					background-color: #9E86C8; /* ★背景をラベンダーに */
					color: white;              /* 文字を白に */
				}

				/* チャット内のリンクデザイン */
				.chat-link {
				    color: #0066cc;           /* リンクらしい青色 */
				    text-decoration: underline; /* 下線をつける */
				    font-weight: bold;        /* 太字にして目立たせる */
				    word-break: break-all;    /* 長いURLが吹き出しを突き破らないように折り返す */
				}

				/* マウスを乗せたとき */
				.chat-link:hover {
				    color: #ff9900;           /* ホバー時はオレンジなどにして「押せる」感を出す */
				    text-decoration: none;
				}

/* メッセージ表示エリア */
        #chat-display {
            flex: 1;
            padding: 15px;
            overflow-y: auto;
            background-color: #f9f9f9;
        }

/* メッセージの行（アイコンと吹き出しを横並びにする） */
        .message-row {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-end;
        }
/* ユーザー（右側）のスタイル */
        .message-row.user {
            flex-direction: row-reverse; /* 右寄せにする */
        }

 /* アイコン画像 */
        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin: 0 10px;
            object-fit: cover;
            border: 1px solid #ddd;
        }

 /* 吹き出し */
        .bubble {
            max-width: 70%;
            padding: 10px 15px;
            border-radius: 15px;
            font-size: 14px;
            line-height: 1.5;
            position: relative;
            word-wrap: break-word;
        }

 /* AIの吹き出し色 */
        .message-row.bot .bubble {
            color: black;
            border: 1px solid #ccc;
            border-bottom-left-radius: 2px;
        }
 /* ユーザーの吹き出し色 */
        .message-row.user .bubble {
            background-color: #9E86C8; /* ★ラベンダー色 */
            color: white;
            border-bottom-right-radius: 2px;
        }

/* 吹き出しのスタイル */
.message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
    max-width: 80%;
    line-height: 1.4;
}




/* 入力エリアの全体枠 */
#input-area {
    padding: 10px;
    border-top: 1px solid #eee;
    display: flex; /* 横並びにする */
    background: #fff;
}

/* 入力ボックス */
#chat-input {
    flex: 1; /* 余白を埋める */
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    font-size: 16px;
}

/* 送信ボタン */
#input-area button {
    margin-left: 10px;
    padding: 8px 15px;
    background: #9E86C8; /* ★ラベンダー色 */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#input-area button:hover {
    background: #8e74bb; /* ★少し濃いラベンダー（ホバー時） */
}

/* -------------------------------------------
   ▼▼▼ スマホ最適化 ▼▼▼
   ------------------------------------------- */
@media screen and (max-width: 480px) {
    
    /* チャット画面本体をスマホ全体に広げる */
    #chat-widget {
        width: 90% !important;        /* 横幅いっぱい */
        height: 85% !important;       /* 縦幅いっぱい */
        max-width: none !important;   /* 90%制限を解除 */
        max-height: none !important;  /* 80vh制限を解除 */
        z-index: 99999; /* 最前面に */
    }

    /* 入力エリアのデザイン調整 */
    #input-area {
        padding: 15px 10px; /* タップしやすいように広めに */
    }
    
    /* 送信ボタンを少し大きく */
    #input-area button {
        padding: 12px 20px;
    }

    #chat-header span {
        font-size: 18px; 
    }
    
    /* ▼▼▼ 閉じるボタンを大きくする ▼▼▼ */
    #close-btn {
        font-size: 25px !important;  /* ×マーク自体のサイズ（PCは20pxなので約1.8倍） */
        padding: 5px 25px !important; /* 指が当たりやすいように透明な余白を広げる */
        line-height: 0.8 !important;   /* 文字が大きくなっても縦位置がズレないように調整 */
        width: auto !important;        /* 横幅の制限をなくす */
        height: auto !important;       /* 縦幅の制限をなくす */
    }
    
    /* ついでに、タイトル文字とボタンが近すぎないように少し離す */
    #chat-header span {
        margin-right: 10px;
    }
}







.pink {
	padding: 30px;
	background: #FDEEF2;
	border-radius: 20px;
	-webkit-border-radius: 20px;
}

.grid80 {
	width: 80%;
	margin: 0 auto;
}

.center{
	display: flex;
	justify-content: center;
}
.center50{
	display: flex;
	justify-content: center;
	width: 50%;
}
.left{
	display: flex;
	justify-content: left;
}

p.center , p.center-mobile , p.center-span {text-align: center;}
p.right{text-align: right;}

.back_to_top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
}

.green-title{
	color: #8ec53e;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	text-shadow: 2px 2px 2px #EBF4EB
}

#top_title {
	font-size:28px;
	text-align: center;
	text-shadow:
	2px 0px 2px #ff6e7f, 0px  2px 2px #ff6e7f,-2px 0 2px #ff6e7f,0 -2px 2px #ff6e7f,
	2px 2px 2px #ff6e7f,-2px -2px 2px #ff6e7f;
	color: white;

}

#drsfile  {
	width: 200px;
	margin: 0 auto;
	margin-top: 30px;
	border: 2px solid #99cb52;
	box-shadow:0 0 5px #99cb52;
	border-radius: 20px;
	-webkit-border-radius: 20px;
}
#drsfile img:hover { opacity: 0.8}

.webmon {
	display: flex;
	justify-content: center;}

.webmon:hover { opacity: 0.8}

#drsfile-jobs  {
	width: 100px;
	margin: 0 auto;
	padding: 3px;
	background: #ffad4b;
	border: 5px solid #fff1e1;
	border-radius: 3px;
	-webkit-border-radius: 3px;
  box-shadow:
	3px 0px 1px #ffad4b, 0px  3px 1px #ffad4b,-3px 0 1px #ffad4b,0 -3px 1px #ffad4b,
	3px 3px 1px #ffad4b,-3px -3px 1px #ffad4b;
}
#drsfile-jobs :hover { text-shadow:1px 1px white ;}


#onlineb :hover { opacity: 0.9}
.kanpos :hover { opacity: 0.8}

h2 {
	color: #617f5e;
	font-size: 20px;
	text-align: center;
	width: 70%;
	margin: 0 auto;
	margin-bottom: 30px;
	padding: 10px 0;
	border: 1px solid #80b436;
	border-top: 3px solid #80b436;
	border-bottom: 3px solid #80b436;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	background: #EBF4EB;
}

.bg_patern h2 {
	border-top: 2px solid #80b436;
	border-bottom: 2px solid #80b436;
}

h3 {
	color: #617f5e;
	font-size: 20px;
	text-align: center;
	width: 70%;
	margin: 0 auto;
	margin-bottom: 30px;
	padding: 10px 0;
	border-bottom: 3px solid #80b436;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	background: #EBF4EB;
}

h5 {
	color: #5a8856;
	font-size: 20px;
	text-align: center;
	width: 70%;
	margin: 0 auto;
	margin-bottom: 30px;
	padding: 10px 0;
	border-bottom: 3px solid #80b436;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	background: #EBF4EB;
}

a       { color:#5e2c0f; text-decoration: underline; }
a:hover { color:#FC8A58; }
#center { text-align: center;}
.non_break { display: none;}
#cancel_mobile_special { display: inline-block;}

/************************************Header**************************************/

#top-white { color:white ; font-size:5px}
#top { color:#819f7e ; font-size:15px; margin-bottom: 10px}

#header-box {
	margin:-222px 0px 10px;
	text-align:center;
	background:#fff;
	/*padding:30px 60px ;*/
	display:inline-block;
	border-radius: 300px 300px 0 0/ 250px 250px 0 0;
	-webkit-border-radius: 300px 300px 0 0/ 250px 250px 0 0;
	border-top: solid 2px #ff99a3;
	border-left: solid 2px #ff99a3;
	border-right: solid 2px #ff99a3;
}
#header-boxs {
	margin:-221px 0px 10px;
	text-align:center;
	background:#fff;
	/*padding:30px 60px ;*/
	display:inline-block;
	border-radius: 300px 300px 0 0/ 250px 250px 0 0;
	-webkit-border-radius: 300px 300px 0 0/ 250px 250px 0 0;
	border-top: solid 2px #ff99a3;
	border-left: solid 2px #ff99a3;
	border-right: solid 2px #ff99a3;
}

h1#logo   { padding:40px 150px 10px;}
h1#logo a {display:inline-block; width:230px;}

#navi { display: none;}
#navi1 { display: none;}
#facebook-mobile { display: none;}

header {text-align:center;}
header h1 a img {display: block;}

/*
#yoyaku2013 img{
	width: 175px;
	border: 5px solid #93c293;
	box-shadow: 1px 1px 1px gray;
	border-radius: 10px ;
	-webkit-border-radius: 10px ;
	float:left;
}
#yoyaku2013 p{
	font-size: 16px;
	float:left;
  margin-left: 10px;
}
#yoyaku2013 img:hover   { opacity: 0.7}

#yoyaku2013m img{
	width: 70px;
	text-align: center;
	margin-left: -5px;
	border: 5px solid #93c293;
	border-radius: 10px ;
	-webkit-border-radius: 10px ;
}
.top-telbox{
	float: right;
	width: 250;
	text-align: right;
	margin-bottom: 10px;
}
*/

a img:hover{opacity: 0.8}

/*いらない記述か*/
.sf-menu li ul {
	background: #ff876e;
	border: solid 2px #ffcdc3;
	border-radius: 5px 5px　10px　10px;
	-webkit-border-radius: 5px 5px　10px　10px;
}
.sf-menu li ul li         { text-align: left; padding: 0 10px; }
.sf-menu li ul li a       { display: block; text-shadow: 1px 1px #6d6d6d; font-size: 16px}
.sf-menu li ul li a:hover { color: white;  font-weight: bold;}
/*いらない記述か*/

/************************************トップページ************************************/

#cov19{
	width: 200px;
	background-color: #ff5505;
	color: white;
	border-radius:20px;
	box-shadow:0 0 3px #6e3c0f;
	text-align: center;
	padding:25px 2px;
}
#cov19:hover {opacity: 0.8}

#new_clinic_mobile_1 { display: none;}
#new_clinic_mobile_2 { display: none;}

#divingai{ text-align: center;}
#divingai_mobile{ display: none;}

#ingai{
	color: #f63f9e;
	color: #f63f9e;
	font-size:22px;
	margin: 0 auto;
	text-align: center;
	background: #fdcad3;
	padding: 30px 50px;
	border: solid 5px #fddee4;
	border-radius: 30px;
	-webkit-border-radius: 30px;
}
span#ingai:hover { color:red;}

#maru,#maru2 {
	font-size: 11px;
	line-height: 24px;
	margin-right: 8px;
	text-shadow: 1px 1px white, 2px 2px 1px gray;
}
div#maru { float: left; margin-bottom: 5px}
div#maru2 { float: left; margin-bottom: 50px}
#h22 { float: left; margin-bottom: 5px}

#special {
	display: inline-block;
	font-size: 22px;
	text-align: center;
	width: 200px;
	margin: 0 auto;
	padding: 30px;
	border: 5px solid #ffd4d9;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	background: #ff909d;
	color: white;
}
#special:hover { opacity: 0.8}
#special a:hover { color:#FC8A58}

#white {
	font-size: 20px;
	font-weight: bold;
	color: white;
	text-align: center;
	text-shadow:
	3px 0px 2px #ff6e7f, 0px  3px 2px #ff6e7f,-3px 0 2px #ff6e7f,0 -3px 2px #ff6e7f,
	3px 3px 2px #ff6e7f,-3px -3px 2px #ff6e7f;
	padding: 50px 30px;
	border: 10px solid #fbdfe6;
	background: #fff;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	box-shadow: 5px 5px white,-5px -5px white;
}
#white02 {
	background-color: #f7b9ca;
	padding: 20px 15px;
	border: 4px double white;
	border-radius: 10px;
}

#information {
	width: 80%;
	margin: 0 auto;
	border: 1px solid gray;
	padding: 20px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
}
#info-day{
	font-family: Georgia;
	/*color: #617f5e;*/
	float: left;
	font-weight:700;
}
#info-week{
	font-family: Georgia;
	/*color: #617f5e;*/
	float: left;
	font-weight:700;
	margin-left: 5px;
}
#new{
	font-family: Georgia;
	font-style: italic;
	color: #FA3932;
	font-weight: 700;
	margin-left: 5px;
}
#info-title { clear: left; font-size:16px;margin-left: 10px}
#info-body {
	background-color: #FDEEF2;
	padding: 40px 20px;
	margin-top: 10px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
}

/************************************/

#time-table{
	width: 80%;
	margin: 0 auto;
	border-collapse: collapse;
 }

#time-table th{
	background: #92c792;
	color: white;
 	vertical-align: middle;
 	border: 1px solid #5aaa5a;
 	border-radius:3px;
 	-webkit-border-radius: 3px;
 	text-shadow:2px 2px 1px #417f41;
 }

#time-table td{
	color: #54714f;
	font-weight: bold;
  text-align: center;
  vertical-align: middle;
  background-color: white;
  border: 1px solid #5aaa5a;
  border-radius:3px;
  -webkit-border-radius: 3px;
 }

.mornig{padding-left: 10px }
#holiday2 { margin-left: 20%;}

/************************************/

#go_index4 {
	font-size: 15px;
	text-align: right;
	margin: 10px 0 10px;
	text-decoration: underline;
}
#go_index4 > a       { color: #502c0b}
#go_index4 > a:hover {color: #FF6347}

/**********************************クリニック紹介*************************************/

#yoyaku2013-1 { margin-top:30px; text-align: center;}
#yoyaku2013-1 img{
	width: 175px;
	border: 5px solid #93c293;
	border-radius: 10px ;
	-webkit-border-radius: 10px ;
}
#yoyaku2013-1 img:hover { opacity: 0.7}
#yoyakutel {
	text-align: center;
	width: 330px;
	margin: 0 auto;
	padding: 20px;
	border: 3px solid #ffb0bd;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	background: #fff4f9;
}
p#tel{
	font-size:25px;
	font-weight:bold;
	margin-bottom:10px;
}

#clinic_title {
	font-size:23px;
	font-weight: bold;
	text-align: center;
	text-shadow:
	3px 0px 2px #ff6e7f, 0px  3px 2px #ff6e7f,-3px 0 2px #ff6e7f,0 -3px 2px #ff6e7f,
	3px 3px 2px #ff6e7f,-3px -3px 2px #ff6e7f;
	color: white;
}

#slide-intoroduce { margin:-40px 0 -40px; }

.box_inside       { padding-bottom:10px;}
.box_inside img   { margin-bottom:10px;}

/***********************************診療案内************************************/



/***********************************医師紹介************************************/

#yui_picture { width: 90%; margin: 0 auto}
#yui_picture > img {
	padding: 3px;
	border: 5px solid #bad7ba;
	border-radius: 50%;
	-webkit-border-radius: 50%;
}

#introduction-namef { font-size:13px; text-align: right; margin: 10px 5px -5px 0;}
#introduction-name  { font-size:15px; text-align: right;}

/***********************************スタッフ募集***********************************/

p.staff{
	border: 7px solid #ffc9bf;
	padding: 30px;
	border-radius: 50px;
	-webkit-border-radius: 50px;

}

#staff {
	font-size: 22px;
	margin: 0 auto;
	font-weight: bold;
	text-align: center;
	width: 180px;
	padding: 20px 10px;
	border: 5px solid #ffd4d9;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	background: #ff909d;
	color: white;
}

#staff_name  { text-align: center; font-weight: bold; font-size: 22px;line-height:22px;}
#staff_name_mobile { display: none;}
#staff_san    { font-size:15px; line-height:22px; margin-left: 2px}

#yoyaku2013-2 { margin-top:30px; text-align: center;}
#yoyaku2013-2 img{
	width: 175px;
	border: 5px solid #93c293;
	border-radius: 10px ;
	-webkit-border-radius: 10px ;
}
#yoyaku2013-2 img:hover { opacity: 0.7}

/***********************************健康診断、検診***********************************/

.health_title{
	border: 3px solid pink;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	padding: 10px 0;
	background: white;
}

.free_health {
	display: inline-block;
	width: 39%;
	margin: 1%;
	text-align: center;
	padding: 30px 0;
	border: 3px solid pink;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	background: white;
}

#webform_exam {
	background-color: pink;
	font-size: 17px;
	padding: 20px 10px;
	border: 6px double white;
	border-radius: 20px;
}


.vpd_mobile { display: none;}
.vpd{
	width: 80%;
	margin: 0 auto;
	border-collapse: separate;
 }
.vpd td{
  	padding: 20px;
  	vertical-align: middle;
  	background-color: white;
  	border: 1px solid #5aaa5a;
  	border-radius:5px;
  	-webkit-border-radius: 5px;
  }
 .vpd td.data {
	 font-weight: bold;
	 color: #617f5e;
 	 background: #EBF4EB;
	 width: 120px;
	 text-align:center;
   border: 3px solid #80b436;
   border-radius:3px;
   -webkit-border-radius: 3px;
 }

/***********************************診療予約***********************************/

.yoyakuhou img { width: 300px; border: 2px solid #bebebe;}

.ingai{
	background:#FDEEF2;
	padding:40px 0;
	border-radius: 30px
}

a.no-underline {
  text-decoration: none;
}

/*********************************Footer**************************************/

#bottom_tel {
	font-size: 20px;
}

footer { text-align:center;}

/*.social_icon {display:inline-block;}
.social_icon:hover a { opacity:0.3;}
.social_icon a {
	-webkit-transition-property: opacity;
	-webkit-transition-duration: 500ms;
	 -moz-transition-property: opacity;
	 -moz-transition-duration: 500ms;
	 margin-right:6px;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.social_icon a:hover{ opacity:1;}*/

.privacy {
	font-family: 'Cambo', serif;
	text-transform:uppercase;
	font-size:16px;
	padding:50px 0 80px 0;
	}
.privacy_mobile { display: none;}

.privacy a {
	color:#7c7773;
	-webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;}

.privacy a:hover {color:orangered;}
.privacy span {
	color:#ff613e;
	font-size:30px;
	margin-top:-8px;
	display:inline-block;
	padding:0 6px;
	}

/*===========================RESPONSIVE LAYOUTS===================================*/


@media only screen and (max-width: 995px) {

.bg  {max-width:800px;}

/*
.bg_block1 span {font-size: 34px;line-height: 40px;}
.bg_block1 span img { margin-top:12px;}
.bg_block1 a {font-size:12px;}
.page4_block1 {padding: 0 120px 0 0;}
*/

}
@media only screen and (max-width: 767px) {

.grid80 { width: 100%}

.bg  {max-width:470px;}
.main {padding:165px 0 10px;}

.center50{width: 100%;}

#header-box {
	width: 300px;
	margin:-163px 0px 10px;
	border-radius: 300px 300px 0 0;
	-webkit-border-radius: 300px 300px 0 0;
}
#header-boxs {
	width: 300px;
	margin:-163px 0px 10px;
	border-radius: 300px 300px 0 0;
	-webkit-border-radius: 300px 300px 0 0;
}
h1#logo   { padding:30px 70px 10px;}

.mobile{display:block;}
#white {font-size: 18px;}

.green-title{ font-size: 18px;}

.top-telbox { display: none;}
p.center , p.center-span { text-align: left;}
.break { display: none;}
.non_break { display: block;}
.non_cancel { display: none;}
#map_pc { display: none;}
#map_pad { display: block;}
#top { display: none }
#yoyaku2013 { display: none;}
hr#style-hr_green { display: none;}
/*
#navi { display: block; width: 100%; margin-top: -20px;}
#navi ul li a {
	display : block;
	font-size: 15px;
	color : white;
	border-top: 1px solid white;
	padding: 7px 0;
	text-shadow:1px 1px 1px gray;
	font-weight: bold;
}
#pull_1 { background: #ffad4b; border-radius: 10px; width: 100%;}
#pull_2 { background: #ff876e; border-radius: 10px; width: 100%;}
#pull_3 { background: #ff6e7f; border-radius: 10px; width: 100%;}
#pull_4 { background: #94cfd9; border-radius: 10px; width: 100%;}
#pull_5 { background: #b4d4b4; border-radius: 10px; width: 100%;}
#pull_6 { background: #7f9edb; border-radius: 10px; width: 100%; margin-bottom:20px }
木の枝*/
#navi1 { display: block; }
#navi1 ul li a {
	display : block;
	font-size: 14px;
	color : white;
	text-decoration: none;
	text-shadow:1px 1px 1px gray;
	font-weight: bold;
}

#pull_21 { background: #ff876e; border-radius: 10px; float: left; width: 32%; line-height:20px; margin: 1px ;padding: 28px 0; box-shadow:0px 1px 1px gray;-webkit-box-shadow:0px 1px 1px gray; margin-bottom: 2px}
#pull_11 { background: #ffad4b; border-radius: 10px; float: left; width: 32%; line-height:18px; margin: 1px ;padding: 20px 0; box-shadow:0px 1px 1px gray;-webkit-box-shadow:0px 1px 1px gray; margin-bottom: 2px}
#pull_31 { background: #94cfd9; border-radius: 10px; float: left; width: 32%; line-height:20px; margin: 1px ;padding: 28px 0; box-shadow:0px 1px 1px gray;-webkit-box-shadow:0px 1px 1px gray; margin-bottom: 2px}

#pull_61 {      color: #363636; border-radius: 8px ; float: left; width: 27%; margin: 8px 8px 1px 10px; padding: 10px 0; box-shadow: 0 0 0 2px #5e9aed, 0 0 0 8px #a5e779;}
#pull_41 { background: #ff6e7f; border-radius: 10px; float: left; width: 32%; line-height:20px; margin: 1px ;padding: 28px 0; box-shadow:0px 1px 1px gray;-webkit-box-shadow:0px 1px 1px gray;}
#pull_51 { background: #b4d4b4; border-radius: 10px; float: left; width: 32%; line-height:20px; margin: 1px ;padding: 28px 0; box-shadow:0px 1px 1px gray;-webkit-box-shadow:0px 1px 1px gray;}

#maru,#maru2 { font-size: 8px;line-height: 23px;}

#yui_picture { width: 70%;}

#cancel_mobile,
#cancel_mobile_special { display: none;}
#information {　height: 450px;}
h1#logo a { width:165px;}

h6 { font-size: 20px;}
#new_clinic_1        { display: none;}
#new_clinic_mobile_1 { display: block;}

#ball_top { width: 60%;}

.box_inside p#center { text-align: center;}

#yoyakutel { width: 100%; padding: 15px 0px;}
p#tel{ font-size:22px;}

#idea_top { width: 80%; text-align: left;}
#idea { padding: 10px}

#yoyaku2013 img { display: none;}

#time-table{ width: 100%}
#time-table td{
	font-size: 15px;
}

.vpd { display: none;}

.vpd_mobile { display: block;}

.privacy { display: none;}
.privacy_mobile {
	display: block;
	font-family: 'Cambo', serif;
	text-transform:uppercase;
	color:#7c7773;
	font-size:16px;
	padding:30px 0 80px 0;
}

}

@media only screen and (max-width: 479px) {

.bg  {max-width:360px;}

#header-box {
	border-radius: 300px 300px 0 0/320px 320px 0 0;
	-webkit-border-radius: 300px 300px 0 0/320px 320px 0 0;
}
#header-boxs {
	border-radius: 300px 300px 0 0/ 320px 320px 0 0;
	-webkit-border-radius: 300px 300px 0 0/ 320px 320px 0 0;
}
h1#logo   { padding:30px 30px 10px;}

p.staff{padding: 30px 20px;}

#facebook { display: none;}
#facebook-mobile { display: block;}
.margin_top6 {margin-top:30px;}
body { font-size: 15px}
h2 { width: 100%}
h3 { width: 90%; margin: 0 auto;}

.oneyear {
	width: 250px;
	margin: 0 auto;
	font-size: 20px;
	text-align: center;
	font-weight: bold;
	text-shadow: 1px 1px 1px black;
	padding: 35px 25px;
	color: white;
	background: #94cfd9;
	border: 7px solid #c2e2e7;
	box-shadow: 3px 3px 2px #6cadb8;
	border-radius: 80px ;
	-webkit-border-radius: 80px ;
}

#divingai{ display: none;}
#divingai_mobile{
	display: inline-block;
	width: 90%;
	font-size:18px;
	text-align: center;
	background: #fdcad3;
	padding: 20px 10px;
	border: solid 5px #fddee4;
	border-radius: 30px;
	-webkit-border-radius: 30px;
}

#map_pad { display: none;}
#map_mobile { display: block;}
#top_title { font-size: 20px}
#clinic_title { font-size: 19px}
h1 > img { display: none;}

#staff_recruit { text-align: left;}
#new_clinic_mobile_1 { display: none;}
#new_clinic_mobile_2 {display: block; text-align: center;}

#staff      { text-align: center; padding: 10px; font-size: 18px;}
#staff_name { display: none;}
#staff_name_mobile {
	display: block;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: -20px;
	line-height:30px;
}
#staff_name_mobile_0 { color:#6e3c0f;}
#staff_san { line-height:30px;}

#information { width: 80%}
#holiday2 { margin-left: 0;}

#clinic_title { font-size: 18px;}

h3 > #train { float: left;}
#traffic { padding-right: 30px}
h3 > #bus { float: right; margin-top: -40px}

}

@media only screen and (max-width: 320px) {
.bg  {width:100%}

}
