@charset "UTF-8";

/*---------------------------- 共通部分 ----------------------------*/

html, body, header, nav, article, section, aside, footer,
div, span, p, h1, h2, h3, h4,
ul, ol, li, dl, dt, dd,
table, tr, th, td, tbody, thead, tfoot {
  margin: 0;
  padding: 0;
}

header, nav, article, section, aside, footer {
  display: block;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

a:link {
  color: #583822;
}

a:visited {
  color: #583822;
}

a:hover {
  color: #765c47;
}

p {
  margin: 15px 0 15px 0;
  line-height: 1.7;
  letter-spacing: 0.05em;
}


/*---------------------------- スマートフォン向けのスタイル ----------------------------*/
@media only screen and (max-width: 679px) {


/*---------------------------- ページ全体の指定 ----------------------------*/

body {
  width: 100%;
  font: 87.5% 'ヒラギノ角ゴ pro W3', "Hiragino KaKu Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif;
  color: #333333;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
}

/*---------- メイン ----------*/

#main {
  background-color: #ffffff;
}


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

#header {
  width: 100%;
  height: auto;
  padding: 4px 0 auto 0;
  line-height: 1.6;
}

#header h1 {
  display: none !important;
}

.pc_time{
 display: none !important;
}

/*-------スマホ用ハンバーガーメニューここから------*/


#header_phone {
 background: #fff;
 display: flex;
 padding: 0;
 position: fixed;
 justify-content: space-between;
 width: 100%;
 z-index: 20;
}

#header_phone.logo-erea {
  background: #fff;
}


#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  margin: 14px 7px auto auto;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

/*ハンバーガーの形をCSSで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}

/*閉じる用の薄黒箇所*/
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #bbb;
  opacity: 0;
  transition: .3s ease-in-out;
  z-index: 30;
}

/*メニューの中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 90%;
  max-width: 220px;/*最大幅*/
  height: 100%;
  background: #fff;
  transition: .3s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
  z-index: 40;
}

/*チェックがついたら表示させる*/
#nav-input:checked ~ #nav-close {
  display: block;
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

.phone-menu-erea{
        margin: 8px 0px auto auto;
	display: flex;
	display: -moz-flex;
	display: -o-flex;
	display: -webkit-flex;
	display: -ms-flex;
	flex-direction: row;
	-moz-flex-direction: row;
	-o-flex-direction: row;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
}

/*ロゴやサイトタイトルをセンタリング*/
.logo-erea{
 text-align: left;
 margin: 5px 0px auto auto;
}


/*ドロワーの中身の設定*/

#nav-content  {
  margin: 0;
  padding: 5px 0 0 0;
  width: 100%;
  text-align: left;
  background: #ff9e1b;
  z-index: 30;
}

#nav-content  ul {
  margin: 0;
  padding: 0;
  background: #ff9e1b; 
}

#nav-content  li {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  background: #ff9e1b; 

}

#nav-content li a{
  color: #54351f;
  display: block;
  border-bottom: solid 1px #fff;
  border-bottom-style: dotted;
  padding: 11px 4px 6px 26px;
  font-size: 14px;
  font-weight: bold;
  line-height: 2.5;
  text-decoration: none;
  background: #ff9e1b; /* Old browsers */
}

/*liの後の矢印*/

#nav-content li:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 4px solid #fff;
  position: absolute;
  top: 20px;
  right: 20px;
  transform:rotate(45deg)
}

#nav-content  li a:hover{
  font-weight: bold;
  color: #fff;
  background: #ff9e1b; 
}


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

#header #header_inner {
  margin: 0;
  padding: 2px;  /*-- 余白 --*/
  background-color: #ffffff;  
}


/*----- 左 logo -----*/

#h_logo {
  width: 100%;
  padding: 0;
  text-align: center;
  color: #666666;
}

#h_logo h2 {
  padding: 4px 0 0 0;  /*-- logo 位置 --*/
  margin: 0;
}

#h_logo img {
  max-width: 80%;
  height: auto;
}

#h_logo a {
  color: #666666 !important;
  text-decoration: none;
  font-size: 1em;
}

#h_logo a:hover {
  color: #888888 !important;
  text-decoration: underline;
  font-size: 1em;
}

#h_logo .senmon {
  display: none !important;
}



/*----- 右 info -----*/

#h_info {
  display: none;
}



/*---------- メイン画像 ----------*/

#header-img {
  width: 100%;
  height: auto;
  margin: 0 6px 0;
}

.main_photo {
  display: block;
  margin: 50px auto 0 auto;
}

/*---------- ヘッダーメニュー ----------*/

#header-menu {
display: none !important;
}


#header-menu_phone {
  margin: 0 auto 2px auto;
  border-top: 1px solid #f7ca76;
  border-right: 1px solid #f7ca76;
}

#header-menu_phone ul {
  padding: 0;
}

#header-menu_phone ul li {
  width: 50%;
  margin: 0;
  padding: 0;
  float: left;
  list-style: none;
  text-align: center;
}

#header-menu_phone li a {
  width: 99.6%;
  font-size: 0.95em;
  padding: 13px 0 13px 0;
  display: block;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #765c47 !important;
  text-decoration: none;
  border-left: 1px solid #f7ca76;
  border-bottom: 1px solid #f7ca76;
  background: linear-gradient(#fdf5e5, #f9cf81);
}

#header-menu_phone li a:hover {
  color: #765c47 !important;
  display: block;
  text-decoration: none;
  background: #e2d0ab url(../img/head_menu_back_hover.gif) repeat-x;
}

#header-menu_phone li.home a {
  border-bottom: 1px solid #cbb994;
}

#header-menu_phone span.sub {
  display: none;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0; 
  visibility: hidden;
}



/*---------- メインコンテンツ ----------*/

#container {
  padding: 0;
}


/*---------- コンテンツ ----------*/

#contents {
  padding: 0px 6px 10px 6px;
  font-size: 1em;
}

.article {
  margin: 0;
  padding: 0;
}

.section {
  margin: 0 0 20px 0;
  padding: 0 0 5px 0;
}

#contents #pannavi {
  margin: 0 0 5px 0;
  padding: 0 0 8px 0;
  font-size: 0.92em;
}

#contents h2 {
  margin: 0 0 7px 0;
  padding: 9px 8px 5px 12px;
  font-size: 1.28em;
  color: #fffffc;
  line-height: 1.7;
  background: url(../img/h_bg.gif) center repeat-x;
}

#contents h2.txt {
  margin: 0 0 7px 0;
  padding: 0;
  border: none;
  font-size: 1.28em;
  color: #54351f;
  background: none;
}

#contents h2.txt2 {
  margin: 0 0 7px 0;
  padding: 0;
  border: none;
  font-size: 1.28em;
  color: #54351f;
  background: none;
}

#contents h2.page_title {
  margin: 5px 0 15px 0;
  padding: 14px 0 10px 13px;
  font-weight: bold;
  font-size: 1.28em;
  color: #fff;
  line-height: 1.7;
  text-align: center;
  background-color: #ff9e1b;
  background-image: none;
}

#contents h2.important {
  margin: 0px 0 10px 0;
  padding: 14px 0 10px 5px;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  background: #ff0000;
  background-repeat: no-repeat;
}


#contents h3 {
  margin: 12px 3px 10px 3px;
  padding: 12px 10px 6px 12px;
  line-height: 1.6;
  font-size: 1.28em;
  color: #54351f;
  border-top: solid 1px #dddddd;
  border-right: solid 1px #dddddd;
  border-bottom: solid 1px #aaaaaa;
  border-left: solid 5px #882200;
  background: url(../img/h3_bg.gif) center repeat-x;
}

#contents h3.beta {
  margin: 12px 3px 10px 3px;
  padding: 10px 10px 8px 13px;
  line-height: 1.6;
  font-size: 1.28em;
  color: #fffffc;
  border-top: solid 1px #c85d15;
  border-right: solid 1px #c85d15;
  border-bottom: solid 1px #c85d15;
  border-left: solid 5px #c85d15;
  background: url(../img/h3_beta.gif) repeat-x;
}

#contents h3.point {
  margin: 10px 0 10px 0;
  padding: 8px 10px 6px 10px;
  line-height: 1.4;
  font-size: 1.28em;
  color: #e85922;
  border-top: solid 1px #888888;
  border-right: none;
  border-bottom: solid 4px #663300;
  border-left: none;
  background-image: url(../img/h3_point.gif) ;
}

#contents h3.gold,
#contents h3.gold02 {
  margin: 12px 3px 10px 3px;
  padding: 13px 10px 9px 16px;
  line-height: 1.6;
  font-size: 1.28em;
  color: #662200;
  border: none;
  background-image: none;
  background-color: #f1e7d1;
}

#contents h3.gray,
#contents h3.gray02 {
  margin: 12px 3px 10px 3px;
  padding: 13px 10px 9px 16px;
  line-height: 1.6;
  font-size: 1.28em;
  color: #662200;
  border: solid 1px #d9d1d1;
  background-image: none;
  background-color: #f1ecec;
}

#contents p {
  padding-right: 2px;
  padding-left: 2px;
  line-height: 1.6;
}

#contents .contents_menu  {
  margin: 0;
  padding: 5px 0 0 0;
  width: 100%;
  text-align: left;
}

#contents .contents_menu  ul {
  margin: 0;
  padding: 0;
}

#contents .contents_menu  li {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

#contents .contents_menu  li a{
  color: #54351f;
  display: block;
  border-top: solid 1px #ddd;
  border-right: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  border-left: solid 1px #ddd;
  padding: 11px 4px 6px 26px;
  font-size: 14px;
  font-weight: bold;
  line-height: 4.5;
  text-decoration: none;
  background: rgb(255,255,255); /* Old browsers */
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(234,234,234,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(234,234,234,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(234,234,234,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eaeaea',GradientType=0 ); /* IE6-9 */
}


#contents .contents_menu li:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-top: 4px solid #ccc;
  border-right: 4px solid #ccc;
  position: absolute;
  top: 29px;
  right: 20px;
  transform:rotate(45deg);
}

#contents .contents_menu  li a:hover{
  font-weight: bold;
  color: #fff;
  background: #ff9e1b; 
}


.uketsuke_time{
 margin: 2px auto 12px auto;
 font-size: 11px;
 text-align: center;
}

.toiawase_time{
 margin: 2px auto 12px auto;
 font-size: 12px;
 text-align: left;
}



#contents .slider{
  z-index: 10;
}



/*---------- SP電話ボタン ----------*/

.phone {
  margin: 9px auto 12px 53px;
  padding: 4px 2px 2px 2px;
  position: relative;
  text-align: center;
  display: inline-block;
  line-height: 2.5;
  background: rgb(191,210,85); /* Old browsers */
  background: -moz-linear-gradient(top, rgba(191,210,85,1) 0%, rgba(142,185,42,1) 50%, rgba(114,170,0,1) 51%, rgba(158,203,45,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(191,210,85,1) 0%,rgba(142,185,42,1) 50%,rgba(114,170,0,1) 51%,rgba(158,203,45,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(191,210,85,1) 0%,rgba(142,185,42,1) 50%,rgba(114,170,0,1) 51%,rgba(158,203,45,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bfd255', endColorstr='#9ecb2d',GradientType=0 ); /* IE6-9 */  box-shadow: inset 0 2px 0 rgba(255,255,255,0.5), 0 2px 2px rgba(0, 0, 0, 0.19);
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

.btn-gradation:hover {
  opacity: 0.8;
}

.phone a {
  position: absolute;
  line-height: 2.5;
  top: 0;
  left: 0;
  height:100%;
  width: 100%;
  color: #fff !important;
  text-decoration: none;
}

.phone img {
  margin: 15px 5px auto 2px ;
}

.phone table {
  margin: 0px auto 0px 0px;
  padding: 0px;
  position: center;
  text-align: center;
}

.phone tr {
  margin: 0px auto 0px 0px;
  padding: 0px;
  position: center;
  text-align: center;
}

.phone td {
  margin: 0px auto 0px 0px;
  padding: 0px;
  position: center;
  text-align: center;
}


span.tel {
  font-size: 1.42em;
  line-height: 2.5;
  font-weight: bold;
}

/*--ページ上へ戻る--*/
.page_back {
  color: #fff;
  text-align: right;
}

.page_back a{
  padding: 2px 4px;
  color: #fff;
  background: #bbb; 

}

/*---------- 画像の回り込み ----------*/

img.picture {
  display: block;
  clear: both;
  margin: 20px auto 20px auto;
}

img.picture_r {
  display: block;
  clear: both;
  margin: 20px auto 20px auto;
}


/*---------- 表（テーブル） ----------*/

table.t01 {
  border: solid 1px #bbbbbb;
  border-collapse: collapse;
  padding: 4px;
}

td.t01 {
  padding: 4px;
  border: solid 1px #bbbbbb;
  border-collapse: collapse;
}

td.head {
  padding: 9px 6px 6px 15px;
  border: solid 1px #cccccc;
  border-collapse: collapse;
  background-image: url(../img/main_block_bg.gif);
}

td.t00 {
  padding: 4px;
}


table.table_line {
  width: 100%;
  border-collapse: collapse;
  border: solid 1px #bbbbbb;
  padding : 8px 4px 8px 4px;
}

td.table_head {
  border-collapse: collapse;
  border: solid 1px #bbbbbb;
  padding : 12px 8px 12px 8px;
  background-color: #fff8e3;
  width: 80px;
}

td.table_left {
  border-collapse: collapse;
  border: solid 1px #bbbbbb;
  padding : 8px 4px 8px 4px;
  background-color: #fff8e3;
  width: 30%;
}

td.table_right {
  border-collapse: collapse;
  border: solid 1px #bbbbbb;
  padding : 8px 4px 8px 4px;
  background-color: #ffffff;
  width: 70%;
}

td.table_line {
  width: auto;
  border-collapse: collapse;
  border: solid 1px #bbbbbb;
  padding: 12px 8px 12px 8px;
}

/*----関市健診・がん検診の結果---*/

table .kekka {
  width: 100%;
  border-collapse:separate;
  border-spacing: 0;
}

table .kekka th:first-child{
  border-radius: 5px 0 0 0;
}

table .kekka th:last-child{
  border-radius: 0 5px 0 0;
  border-right: 1px solid #689900;
}

table .kekka th {
  text-align: center;
  color:white;
  background: #72aa00;
  border-left: 1px solid #689900;
  border-top: 1px solid #689900;
  border-bottom: 1px solid #689900;
  width: 25%;
  padding: 10px 0;
}

table .kekka td {
  text-align: center;
  border-left: 1px solid #689900;
  border-bottom: 1px solid #689900;
  border-top: none;
  width: 25%;
  padding: 10px 0;
}

table .kekka td:last-child{
  border-right: 1px solid #689900;
}

table .kekka tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}

table .kekka tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}

/*----関市健診・がん検診の結果ここまで---*/


/*---------- 動画 ----------*/

.movie {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 20px;
}

.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/*---------- Googleマップ ----------*/

.map {
  position: relative;
  padding-bottom: 75%; 
  height: 0;
  overflow: hidden;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  padding: 6%;
  width: 88% !important;
  height: 100% !important;
}


/*---------- サイドエリア ----------*/

#menu {
  margin: 0 0 20px 0;
}

.menulist {
  text-decoration: none;
  margin: 0 0 25px 0;
}

.menulist h2 {
  padding: 10px 0 6px 14px;
  font-size: 1.18em;
  color: #fffffc;
  border-bottom: solid 1px;
  border-bottom-color: #583822;
  background: url(../img/h_bg_gray.gif) center repeat-x;
}

.menulist h3 {
  padding: 10px 0 6px 14px;
  font-size: 1.18em;
  color: #fffffc;
  background-color: #ff9e1b;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  text-align: center;

}

.menulist ul {
  width: 100%;
  border-top: solid 1px;
  border-top-color: #cccccc;
  text-align: center;

}



#header-menu li {
  width: 100%;
  margin: 0;
  padding: 0;
  float: left;
  list-style: none;
  text-align: center;
}


.menulist li a {
  position: relative;
  padding: 13px 10px 8px 10px;
  display: block;
  color: #54351f !important;
  text-decoration: none;
  border-bottom: solid 1px;
  border-bottom-color: #ccc;
  background: rgb(255,255,255); /* Old browsers */
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(234,234,234,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(234,234,234,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(234,234,234,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eaeaea',GradientType=0 ); /* IE6-9 */
}

.menulist li a:hover {
  color: #745a45 !important;
  display: block;
  text-decoration: none;
  border-bottom: solid 1px;
  border-bottom-color: #cccccc;
  background: #fff; 
}

.menulist li a:after {
  content: ;
  position: absolute;
  right: 10px;
}

.menu_free {
  margin: 0 0 20px 0;
  padding: 0 0 5px 0;
  font-size: 1em;
  color: #333333;
  background-color: #f1f0f0;
}

.menu_free h2 {
  margin: 0 0 6px 0;
  padding: 10px 0 6px 14px;
  font-size: 1.18em;
  color: #fffffc;
  border-bottom: solid 1px;
  border-bottom-color: #583822;
  background: url(../img/h_bg_gray.gif) center repeat-x;
}

.menu_free h3 {
  margin: 0 0 6px 0;
  padding: 10px 0 6px 14px;
  font-size: 1.18em;
  color: #fffffc;
  border-bottom: solid 1px;
  border-bottom-color: #583822;
  background: url(../img/h_bg_gray.gif) center repeat-x;
}

.menu_free p{
  padding: 0 5px 0 5px;
  font-size: 1em;
  line-height: 1.7;
  color: #333333;
}

/*---------- サイド・上バナー画像 ----------*/

.menu_top {
  margin: 20px 0 20px 0;
  padding: 20px 0 10px 0;
  text-align: center;
  background-color: #f1f0f0;
}

.menu_top a{
  color: #54351f;
  margin: 0
  padding: 6px 0 6px 0;
}

.menu_top a:hover{
  color: #745a45;
}

.menu_top img{
  margin: 0 0 8px 0;
}

.menu_top p{
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

.menu_btn {
  margin: 20px auto 20px auto;
  padding: 0;
  width: 220px;
  text-align: left;
}

.menu_btn a{
  margin: 0 0 8px 0;
  color: #583822;
  display: block;
  border: solid 1px #dddddd;
  padding: 8px 4px 4px 30px;
  font-size: 14px;
  line-height: 3.5;
  text-decoration: none;
  background: rgb(255,255,255); /* Old browsers */
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(234,234,234,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(234,234,234,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(234,234,234,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eaeaea',GradientType=0 ); /* IE6-9 */
 }

.menu_btn a:hover{
  color: #765c47;
  background: #fff;
}


.menu_btn_under {
  margin: 0 auto 30px auto !important;
  padding: 0 !important;
  width: 220px;
  text-align: left;
}

.menu_btn_under a{
  margin: 0 !important;
  color: #583822;
  display: block;
  border: solid 1px #dddddd;
  padding: 10px 4px 6px 12px !important;
  font-size: 13px;
  line-height: 1.9;
  text-align: left;
  text-decoration: none;
  background: rgb(255,255,255); /* Old browsers */
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(234,234,234,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(234,234,234,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(234,234,234,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eaeaea',GradientType=0 ); /* IE6-9 */
 }

.menu_btn_under a:hover{
  color: #765c47;
  background: #fff; /* Old browsers */

}


/*---------- サイド・下バナー画像 ----------*/

.menu_btn_under {
  margin: 0 0 20px 0;
  padding: 10px 0 0 0;
  text-align: center;
  background-color: #f1f0f0;
}

.menu_btn_under a{
  margin: 0 0 8px 0;
  color: #54351f;
  display: block;
  padding: 0;
  line-height: 1.9;
  text-decoration: none;
}

.menu_btn_under a:hover{
  color: #745a45;
}


/*---------- サイドエリア・トップに戻る ----------*/

.menu_back {
  display: inline;
}


/*---------- フッター ----------*/

#footer {
  width: auto;
  padding: 10px 10px 20px 10px;
  color: #333333;
  line-height: 1.7;
  text-align: center;
  background-color: #fcb448;
}

#footer p {
  padding: 10px;
  color: #555555;
}

#footer a {
  color: #555555 !important;
}

#footer a:hover {
  color: #777777 !important;
}

#footer a:visited {
  color: #555555;
}

#footer small {
  padding: 10px;
  font-size: 0.92em;
  color: #555555;
}

#footer small a {
  color: #555555 !important;
  text-decoration: none;
}

#footer small a:hover {
  color: #777777 !important;
  text-decoration: underline;
}

#footer small a:visited {
  color: #555555;
  text-decoration: none;
}

/*--フッター テーブル--*/

.f_time table {
  width: 100%;
  border-radius: 10px;
}

.f_time table th {
  background: #f5f5f5;
  text-align: center;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;

}

.f_time table td {
  background: #fff;
  text-align: center;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  padding: auto;
}


.f_time table tr:nth-child(1) td {
  border-bottom: 1px dashed #a9a9a9;

}

.f_time p{
  text-align: left;

}

/*---------- コンテンツ枠装飾 ----------*/

.gray_bg {
  margin: 18px 0 18px 0;
  padding: 2px 18px 2px 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border-top: solid 1px #dddddd;
  border-right: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
  border-left: solid 1px #dddddd;
  background-color: #eeeeee;
}

.gray_bg p {
  padding: 3px;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.brown_bg {
  margin: 18px 2px 18px 2px;
  padding: 2px 8px 2px 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border-top: solid 1px #dddddd;
  border-right: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
  border-left: solid 1px #dddddd;
  background-color: #f8f4e6;
}

.pink_bg {
  margin: 18px 2px 18px 2px;
  padding: 2px 8px 2px 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border-top: solid 1px #dddddd;
  border-right: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
  border-left: solid 1px #dddddd;
  background-color: #fdeee6;
}

.green_bg {
  margin: 18px 2px 18px 2px;
  padding: 2px 8px 2px 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border-top: solid 1px #dddddd;
  border-right: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
  border-left: solid 1px #dddddd;
  background-color: #f0f6da;
}

.blue_bg {
  margin: 18px 2px 18px 2px;
  padding: 2px 8px 2px 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border-top: solid 1px #dddddd;
  border-right: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
  border-left: solid 1px #dddddd;
  background-color: #ebf6f7;
}

.info_bg {
  margin: 18px 2px 18px 2px;
  padding: 2px 8px 2px 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  background-color: #fff8e3;
}

.point_bg {
  margin: 10px 2px 10px 2px;
  padding: 2px 5px 2px 15px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border: solid 1px #dfcf98;
  background-color: #fcfbf9;
}

.pale_bg {
  margin: 18px 2px 18px 2px;
  padding: 8px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  background-color: #fffedf;
}

.message_bg {
  margin: 18px 2px 18px 2px;
  padding: 2px 8px 2px 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  background-color: #fff8e3;
  background-image: url(../img/message.png);
  background-repeat: no-repeat;
}

.memo_bg {
  margin: 8px 0 18px 0;
  padding: 6px 18px 6px 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  background-color: #faf2e2;
}

.memo_w_bg {
  margin: 8px 0 12px 0;
  padding: 6px 18px 6px 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  background-color: #fff8ee;
}

.koe_bg {
  margin: 0;
  padding: 0;
}

.koe_beta_bg {
  margin: 8px 0 8px 0;
  padding: 2px 10px 2px 10px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  background-color: #7e6a41;
}

.check_bg {
  margin: 8px 0 18px 0;
  padding: 2px 18px 2px 18px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #6c4e1f;
  border: solid 6px #ded0b2;
  background-color: #faf1e3;
}

.check_bg p {
  margin: 18px 0 18px 0;
  padding: 0 2px 0 2px;
  line-height: 1.7;
  color: #6c4e1f;
}

.banner_bg {
  margin: 3px 0 10px 0;
  padding: 10px 10px 10px 14px;
  border-top: solid 3px #dec58e;
  border-right: solid 3px #dec58e;
  border-bottom: solid 3px #dec58e;
  border-left: solid 3px #dec58e;
  background-color: #fff8e3;
}

.waku_bg {
  margin: 14px 2px 14px 2px;
  padding: 2px 8px 2px 10px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border-top: solid 10px #f1eae0;
  border-right: solid 6px #f1eae0;
  border-bottom: solid 10px #f1eae0;
  border-left: solid 6px #f1eae0;
}

.waku_gray_bg {
  margin: 14px 2px 14px 2px;
  padding: 6px 14px 2px 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border-top: solid 2px #dddddd;
  border-right: solid 2px #dddddd;
  border-bottom: solid 2px #dddddd;
  border-left: solid 2px #dddddd;
  background-color: #fcfbf9;
}

#contents .waku_tone_bg {
  margin: 14px 2px 14px 2px;
  padding: 2px 8px 2px 10px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border-top: solid 10px #f1eae0;
  border-right: solid 6px #f1eae0;
  border-bottom: solid 10px #f1eae0;
  border-left: solid 6px #f1eae0;
  background-color: #fffcf7;
}

.waku_gold_bg {
  margin: 14px 2px 14px 2px;
  padding: 2px 6px 2px 8px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border-top: solid 5px #f0ddb2;
  border-right: solid 5px #f0ddb2;
  border-bottom: solid 5px #f0ddb2;
  border-left: solid 5px #f0ddb2;
  background-color: #fff8e3;
}

.gray_bg_contact {
  margin: 18px 2px 10px 2px;
  padding: 10px 8px 10px 18px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  border-top: solid 1px #dddddd;
  border-right: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
  border-left: solid 1px #dddddd;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  background-color: #eeeeee;
}

.gray_bg_contact p {
  margin: 0;
  padding: 3px 0 3px 0;
  line-height: 1.7;
}

.w_shadow{
  width: 85%;
  margin: 0px auto 20px auto;
  padding: 10px 18px 10px 18px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  box-shadow: 0 0 8px gray;
}

.news01_bg{
  margin: 9px 2px 10px 2px;
  padding: 10px 8px 10px 18px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  background-color: #f4f4ec;
  background-colo: #f4f4ec;

}

.news01_bg p {
  margin: 0;
  padding: 3px 0 3px 0;
  line-height: 1.7;
}

.news01_bg img {
  margin: 0;
  padding: 0 15px 0 0;
}


.news02_bg{
  margin: 18px 2px 10px 2px;
  padding: 10px 8px 10px 18px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  border-top: solid 1px #dddddd;
  border-right: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
  border-left: solid 1px #dddddd;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  background-color: #ffffff;
}

.news02_bg p {
  margin: 0;
  padding: 3px 0 3px 0;
  line-height: 1.7;
}



.news02_bg img {
  margin: 0;
  padding: 0 15px 0 0;
}


.kensa {
  margin: 18px 2px 10px 2px;
  padding: 10px 8px 10px 18px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  border-top: solid 1px #bbb;
  border-right: solid 1px #bbb;
  border-bottom: solid 1px #bbb;
  border-left: solid 1px #bbb;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  background: rgb(255,255,255); /* Old browsers */
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(234,234,234,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(234,234,234,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(234,234,234,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eaeaea',GradientType=0 ); /* IE6-9 */
}


.kensa img {
  margin: 0;
  padding: 3px 0 3px 5px;
  float: left;
}

.kensa p {
  margin: 0 0 0 10px;
  padding: 3px 0 3px 0px;
  line-height: 1.7;
}

.kensa p span.k_name {
  color: #ff9e1b;
  font-weight: bold;
  font-size: 1.15em;
  line-height: 1.8;
}

.inchoushoukai {
  margin: 18px 2px 10px 2px;
  padding: 10px 8px 10px 18px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  border-top: solid 1px #bbb;
  border-right: solid 1px #bbb;
  border-bottom: solid 1px #bbb;
  border-left: solid 1px #bbb;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}


.inchoushoukai img {
  margin: 0;
  padding: 3px 0 3px 0px;
  float: left;
}

.inchoushoukai p {
  margin: 0 0 0 10px;
  padding: 3px 0 3px 0px;
  line-height: 1.7;
}


.inchoushikaku  {
  margin: 18px 2px 10px 2px;
  padding: 10px 8px 10px 18px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  background: #fdf5e5;
}

.inchoushikaku  p {
  margin: 0 0 0 10px;
  padding: 3px 0 3px 0px;
  line-height: 1.7;
  text-align: left;
}


/*---------- 文字装飾 ----------*/

span.big {
  font-size: 1.12em;
  line-height: 1.9;
}

span.b_big {
  font-weight: bold;
  font-size: 1.12em;
  line-height: 1.7;
}

span.b_big_x {
  font-weight: bold;
  font-size: 1.25em;
  line-height: 1.7;
}

span.check {
  font-weight: bold;
  font-size: 1.12em;
  line-height: 1.7;
  color: #555555;
}

span.red {
  color: #e60033;
}

span.red_x {
  color: #e60033;
  font-size: 1.12em;
  line-height: 1.7;
}

span.red_b {
  color: #e60033;
  font-weight: bold;
  line-height: 1.7;
}

span.red_big {
  color: #e60033;
  font-weight: bold;
  font-size: 1.12em;
  line-height: 1.7;
}

span.red_big_x {
  color: #e60033;
  font-weight: bold;
  font-size: 1.25em;
  line-height: 1.7;
}

span.brown {
  color: #993300;
}

span.brown_b {
  color: #993300;
  font-weight: bold;
}

span.brown_x {
  color: #993300;
  font-size: 1.12em;
  line-height: 1.7;
}

span.brown_b {
  color: #993300;
  font-weight: bold;
  line-height: 1.7;
}

span.brown_big {
  color: #993300;
  font-weight: bold;
  font-size: 1.12em;
  line-height: 1.7;
}

span.brown_big_x {
  color: #993300;
  font-weight: bold;
  font-size: 1.25em;
  line-height: 1.7;
}

span.blue {
  color: #007bbb;
}

span.blue_b {
  color: #007bbb;
  font-weight: bold;
  line-height: 1.7;
}

span.blue_big {
  color: #007bbb;
  font-weight: bold;
  font-size: 1.12em;
  line-height: 1.7;
}

span.pink {
  color: #c53d43;
}

span.pink_b {
  color: #c53d43;
  font-weight: bold;
  line-height: 1.7;
}

span.pink_big {
  color: #c53d43;
  font-weight: bold;
  font-size: 1.12em;
  line-height: 1.7;
}

span.orange {
  color: #e85922;
  line-height: 1.7;
}

span.orange_b {
  color: #e85922;
  font-weight: bold;
  line-height: 1.7;
}

span.orange_big {
  color: #e85922;
  font-weight: bold;
  font-size: 1.12em;
  line-height: 1.7;
}

span.orange_big_x {
  color: #e85922;
  font-weight: bold;
  font-size: 1.25em;
  line-height: 1.7;
}

span.green {
  color: #00ae4f;
}

span.green_b {
  color: #688119;
  font-weight: bold;
  line-height: 1.7;
}

span.green_big {
  color: #688119;
  font-weight: bold;
  font-size: 1.12em;
  line-height: 1.7;
}

span.white_b {
  color: #ffffff;
  font-weight: bold;
  line-height: 1.7;
}

span.white_big {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.12em;
  line-height: 1.7;
}

span.mark {
  padding: 2px 2px 0 2px;
  color: #54351f;
  line-height: 1.7;
  background-color: #fdfaab;
}

span.mark_b {
  padding: 2px 2px 0 2px;
  color: #54351f;
  line-height: 1.7;
  font-weight: bold;
  background-color: #fdfaab;
}

span.mark_big {
  padding: 2px 2px 0 2px;
  color: #54351f;
  font-size: 1.12em;
  line-height: 1.7;
  font-weight: bold;
  background-color: #fdfaab;
}

 span.mark_red {
  padding: 2px 2px 0 2px;
  color: #e60033;
  line-height: 1.7;
  background-color: #fdfaab;
}

span.mark_red_b {
  padding: 2px 2px 0 2px;
  color: #e60033;
  font-weight: bold;
  line-height: 1.7;
  background-color: #fdfaab;
}

span.mark_brown {
  padding: 2px 2px 0 2px;
  color: #993300;
  line-height: 1.7;
  background-color: #fdfaab;
}

span.mark_brown_b {
  padding: 2px 2px 0 2px;
  color: #993300;
  font-weight: bold;
  line-height: 1.7;
  background-color: #fdfaab;
}




/*---------- Line ----------*/

#menu hr.line {
  margin: 0;
  padding: 2px 0 6px 0;
  border: 0;
  border-bottom: dotted 1px #666666;
}




/*---------- トップに戻る ----------*/

.menu_back p.back {
  margin: 6px 0 0 0;
  padding: 0 5px 0 0;
  text-align: right;
}

.scroll {
  width: 180px;
  height: 28px;
}

}






