@charset "utf-8";
/*
Cascading Style Sheets : main.css
- Written by : Shigeki Nishitsuji
*/
/************************************************************
	reset
************************************************************/
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, li, dl, dt, dd {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-start: 0;
  padding: 0;
  margin: 0;
	margin-bottom:2px;
}

ul {
  list-style: none;
}

input, select {
  vertical-align: middle;
}

img {
  vertical-align: bottom;
}

a {
  display: block;
  text-decoration: none;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
}

/* html, body */
html {
  height: 100%;
}

body {
  height: 100%;
  line-height: 1;
  margin: 0;
  font: 13px "メイリオ", Meiryo, Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

#globalNav{
	z-index: 99999;
}


#globalNav #closepanel {
  position: absolute;
  left: 30%;
  bottom: 20%;
  width: 40%;
  height: 36px;
  font: 18px/36px Arial, Helvetica, sans-serif;
  text-align: center;
  color: #2b1107;
  background: #F1F1F1;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
#globalNav #closepanel .fa-angle-right {
  position: relative;
  top: 2px;
  margin-right: 4px;
  font-size: 24px;
}

.openpanel {
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.closepanel {
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.zIndexUp {
  z-index: 999999 !important;
}

/************************************************************
 * header
************************************************************/
#header {
  overflow: visible;
  position: relative;
  background: url(../images/common/bg_header.png) repeat-x 0 0;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 999;
  height: 70px;
}

#logo {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 9999;
  /*-webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);*/
}

#headerRight {
  width: auto;
  float: right;
  margin: 10px 8px 10px 0;
  overflow: hidden;
}
#headerRight li {
  float: left;
  width: 50px;
  height: 50px;
  padding: 5px;
  margin-left: 8px;
  background: #E3DBD5;
  border: 1px solid #3E250C;
  -webkit-box-shadow: inset 0 0 1px 1px #fff;
  -moz-box-shadow: inset 0 0 1px 1px #fff;
  box-shadow: inset 0 0 1px 1px #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius:75px;
 -moz-border-radius:75px;
 -webkit-border-radius: 75px;
}
#headerRight li:first-child {
  margin-left: 0;
}

#menu img {
  margin-top: 1px;
}

/* globalNav */
#globalNav {
  display: none;
  width: 100%;
  min-height: 100%;
  background: rgba(0, 0, 0, 0.8);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  left: 0;
}
#globalNav ul {
  width: 94%;
  margin: 20px auto;
  background: none;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
}
#globalNav ul li {
  height: 50px;
  width: 100%;
  font: 14px/50px "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #ddd;
  background: #F8FBF8;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  margin-bottom: 16px;
}
#globalNav ul li a {
  display: block;
  text-align: center;
  color: #310607;
  text-decoration: none;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.9);
}
#globalNav ul li a span {
  padding: 20px 0 20px 22px;
  background: url(../../images/common/icon_clover.png) no-repeat 0 50%;
  -webkit-background-size: 18px 17px;
  background-size: 18px 17px;
}

/************************************************************
 * slider
************************************************************/
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 154px;
  overflow: hidden;
}
.slider .slide {
  width: 100%;
  height: auto;
  float: left;
  clear: none;
}
.slider .slide img {
  display: block;
	width: 100%;
	height: auto;
  margin: 0 auto;
}


/************************************************************
 * content
************************************************************/
#content{
	background: #FFF;
}

#content h3 {
  font-size: 13px;
}

#ttl{
	background:#44632d !important;
	border-top-left-radius:0 !important;
	border-top-right-radius:0 !important;
	border:1px solid #374D28 !important;
	color:#3f0000;
	padding-left:15px !important;
}

.commonBox {
  width: 95%;
  margin: 20px auto 30px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.commonBox h2 {
  padding: 8px 0 6px 12px;
  color: #2b1107;
  font-size: 14px;
  text-shadow: 0 1px rgba(255, 255, 255, 0.6);
/*border-bottom: 2px solid #2b1107;*/
  background: #FE731F;
  background-image: url(../../images/common/icon_clover.png), -webkit-linear-gradient(rgba(255, 255, 255, 0.08), rgba(245, 245, 245, 0.08) 5%, rgba(0, 0, 0, 0.08));
  background-image: url(../../images/common/icon_clover.png), linear-gradient(rgba(255, 255, 255, 0.08), rgba(245, 245, 245, 0.08) 5%, rgba(0, 0, 0, 0.08));
  background-position: 10px 50%, 0 0, 0 0;
  background-repeat: no-repeat, repeat, repeat;
  -webkit-background-size: 15px 14px, auto auto, auto auto;
  background-size: 15px 14px, auto auto, auto auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.commonBox h2 .fa{
	position: relative;
	top: 1px;
	margin: 0 5px 0 0;
	font-size: 18px;
}
.commonBox .innerBox {
  padding: 10px 16px;
  background: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-bottom-left-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

#section01 h3{
	font-size: 13px;
	letter-spacing: -0.03em;
	margin-bottom: 10px;
	color: #372206;
}
#section01 p{
	font-size: 12px;
	color: #372206;
}


#section02 .innerBox {
  padding: 10px;
}
#section02 table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}
#section02 table th, #section02 table td {
  padding: 4px;
  color: #3E2C0C;
  text-shadow: 0 1px 0 #fff;
  border: 1px solid  #fff;
}
#section02 table th {
  margin: 0px;
  width: 60px;
  font-weight: normal;
  font-size: 13px;
  background: #D1BA92;
}
#section02 table td {
  font-size: 12px;
  background: #eee;
}
#section02 table td span {
  display: block;
  font-size: 11px;
}

#access {
  margin-bottom: 0;
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
}
#access .innerBox {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.gmap_large{
	text-align: right;
	padding: 3px 5px 3px 0;
}

.gmap_large a{
	color: #000;
}

#switchButton {
  width: 94%;
  height: 40px;
  line-height: 40px;
  margin: 0 auto;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
  background: #EFF1F6;
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.06));
  border: 1px solid #ddd;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 -1px #ccc;
  box-shadow: inset 0 -1px #ccc;
}
#switchButton li {
  height: 40px;
  width: 50%;
  font: 14px/40px "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #2b1107;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  text-align: center;
}
#switchButton li:first-child {
  border-right: 1px solid #fff;
}
#switchButton li:last-child {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
#switchButton li a {
  color: #2b1107;
  text-decoration: none;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.9);
}
#footer{
	padding: 16px 0;
	background: url(../images/common/bg_header.png) repeat 0 0;
}

#footer #copyright {
  width: 100%;
  color: #310607;
  text-shadow: 0 1px 1px #fff;
  text-align: center;
  padding: 3px 0;
  font-size: 12px;
  color: #fff;
  text-shadow: 0 1px rgba(0, 0, 0, 0.6);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/************************************************************
 * menupage
************************************************************/
#menu_content{
	margin: 0;
	padding: 0 0 35px 0;
	background: #FFF;
}
.menupage .menu table {
  border-collapse: collapse;
}
.menupage .menu table th {
  padding-left: 5px;
}
.menupage .menu table td {
  padding-right: 5px;
}

.row {
  background: rgba(0, 0, 0, 0.02);
}

.menu h2 {
  width: 100%;
  height: 30px;
  position: relative;
  padding-left: 36px;
  line-height: 30px;
  color: #FE731F;
  font-size: 14px;
  text-shadow: 0 1px rgba(255, 255, 255, 0.6);
  background: #EBC9A4 url(../images/menu/icon-price.png) no-repeat 10px 50% !important;
  background-size: 18px 18px!important;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(74, 74, 74, 0.1);
}

/*#touchIcon img{
  position: absolute;
  right: 5px;
  top: 2px;
}*/

.menu h2 span {
  position: absolute;
  width: 18px;
  height: 100%;
  top: 0;
  right: 10px;
}
.menu .inner {
  display: none;
  padding: 8px;
  background: url(../../images/common/bg_pattern.jpg);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.menu h3 {
  margin-top: 10px;
  color: #37591B;
  text-indent: -0.1em;
}
.menu h3:first-child {
  margin-top: 0;
}
.menu table {
  width: 98%;
  margin: 0 auto;
}
.menu table th, .menu table td {
  padding: 5px 0;
  font-weight: normal;
  font-size: 12px;
}
.menu table th {
  width: 84%;
  text-align: left;
}
.menu table td {
  text-align: right;
}
.menu .listbox {
  width: 98%;
  margin: 10px auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  text-shadow: 0 1px 0 #333;
  font-size: 12px;
  background: rgba(52, 95, 16, 0.58);
}
.menu .listbox h4 {
  padding: 10px;
  font-size: 13px;
}
.menu .listbox .aco {
  padding: 0 10px 10px;
}
.menu .listbox table {
  width: 100%;
}
.menu .listbox li, .menu .listbox th, .menu .listbox td {
  font-size: 12px;
}
.menu .listbox th, .menu .listbox td {
  padding: 1px 0;
}
.menu .infolist {
  width: 84%;
  margin-left: 10px;
}
.menu .infolist th {
  width: 26%;
}
.menu .infolist td {
  text-align: left;
}
.menu .single {
  margin-top: 8px;
  margin-left: -0.1em;
}
.menu .single th {
  text-indent: -0.1em;
  font-weight: bold;
  font-size: 13px;
  color: #37591B;
}
.menu .single th span {
  font-size: 12px;
}

.aco {
  display: none;
}

.plus {
  background: url(../../images/common/plus.png) no-repeat 98% 50%;
  -webkit-background-size: 18px 18px;
  background-size: 18px 18px;
}

.minus {
  background: url(../../images/common/minus.png) no-repeat 98% 50%;
  -webkit-background-size: 18px 18px;
  background-size: 18px 18px;
}

.listbox .plus {
  background: url(../../images/common/plus_white.png) no-repeat 98% 50%;
  -webkit-background-size: 18px 18px;
  background-size: 18px 18px;
}
.listbox .minus {
  background: url(../../images/common/minus_white.png) no-repeat 98% 50%;
  -webkit-background-size: 18px 18px;
  background-size: 18px 18px;
}
/*menu*/
#mainvisual{
	width: 100%;
	height: auto;
}
#mainvisual img{
	width: 100%;
	height: auto;
}
.h2-ttl02{
	background:#9eb25f !important;
	border-top-left-radius:0 !important;
	border-top-right-radius:0 !important;
	border:1px solid #374D28 !important;
	color:#3f0000;
	padding-left:15px !important;
}
.h2-ttl{
	background:#d5e5a1 !important;
	border-top-left-radius:0 !important;
	border-top-right-radius:0 !important;
	border:1px solid #374D28 !important;
	color:#3f0000;
	padding-left:15px !important;
}
.menu-top{ background:#EFF2D6;}
.menu-top span{
	color:#8C0000;
	font-size:109%;
}
.menu-top li{
	position:relative;
	top:10px;
	text-align:left;
}
.menu-bot{ background:#F1EFD2;}
.menu-bot ul{ margin-top:0 !important; padding-top:10px !important;}
.menu ul {
	padding:0 10px 10px 10px;
}
.menu li {
	
}
.border li{ border-bottom:1px solid #c8a98f; padding-top:8px;}
.border li.end{ border-bottom:none;}
.border dt{ font-weight:bold;}
.menu dl {
	font-size:85%;
	color:#3f0000;
	/*margin-bottom:2px;*/
	padding:2px 5px;
}
.menu dt {
	float:left;	
	padding-left:2px;
}
.menu ul.fix-pad{ margin-top:0 !important; padding-top:10px;}
.menu dt.fix-pad1{ padding-top:20px;}
.menu dd {
	text-align:right;
	padding-right:2px;
	font-weight: bold;
}

.menu dl:nth-child(even){background-color: #F0EADD; }
.menu dl:nth-child(odd){}


.menu  p {
	color:#3f0000;
	font-size:80%;
	letter-spacing:1px;
	padding-bottom:8px;
}
.img-style{
	text-align:center;
}
.uisuki dt{
	width:50%;
  float:left;
}
.uisuki .syurui{
	width:30%;
  float:left;
}
.osusume{
	text-align:left;
}
.osusume dl dt{
	margin:0 10px 10px;
}
@media screen and (max-width : 320px){
.img-style img{ width:100%;}
}
.text1 {
	color:#3f0000;
	font-size:80%;
	letter-spacing:1px;
	padding:10px;
}
.text2 {
	color:#3f0000;
	font-size:80%;
	letter-spacing:1px;
	padding-top:10px;
	padding-right:10px;
	padding-bottom:0 !important;
	text-align:right;
}
.h3-ttl{
	margin-top:0 !important;
	background:#F0DBB5;
	color:#3f0000 !important;
	padding-left:10px;
	padding-top:10px;
}
/************************************************************
 * menupage
************************************************************/
.ac-content{
	background: none repeat scroll 0 0 #EFF2D6;	
	padding:10px 10px;
}
.ac-content dl {
    color: #3F0000;
    font-size: 90%;
    margin-bottom: 2px;
}
.ac-content dt {
    float: left;
    padding-left: 2px;
}
.ac-content span {
    font-size:85%;
}
.ac-content dd {
    padding-right: 2px;
    text-align: right;
}
.ac-content p span {
    font-size: 109%;
		margin:0 0 5px;
		color: #8C0000;
}
.ac-content ul {
    font-size: 82%;
}
.ac-content p{
		font-size: 82%;	
		margin:0 0 5px;
}
.explanation {
    color: #8DA34B;
}
.red{
		color: #CE4603;	
}
.box{
		border: 1px solid #567241;
		padding:10px;	
}
.img-style img{
		max-width:100%;	
}
.img-style p{
		text-align:left;
		color:#8C0000;
}
.line{
		border-bottom:1px dotted #8DA34B;
		margin:20px 0;	
}

#salePuppy{
	padding: 0 0 10px 0;
}

#salePuppyDetailButton {
  width: 94%;
  height: 40px;
  line-height: 40px;
  margin: 0 auto;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
  background: #EFF1F6;
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.06));
  border: 1px solid #ddd;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 -1px #ccc;
  box-shadow: inset 0 -1px #ccc;
}

#salePuppyDetailButton p{
	text-align: center;
}

#salePuppyDetailButton a{
	color: #000;
}

/************************************************************
 * ペット料金表
************************************************************/

#touchSlider6 {
	width: 95%;
	margin: 10px auto 10px auto;
	position: relative;
	overflow: hidden;
	height: auto;
	border: 1px solid #CAAF8E;
}

#touchSlider6 ul {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}

#touchSlider6 ul li {
	float: left;
	overflow: hidden;
	width: 100%;
	height: auto;
	font-size: 14px;
}

/*----------btn_page-----------*/

.btn_area {
	overflow:hidden;
	margin:1.429em 0 0 0;
}

.btn_area .btn_page.on {background:#FE731F!important;}

.btn_area .btn_page {
	display: inline-block;
	margin: 3px;
	font-size: 0px;
	line-height: 0;
	background: #666;
	text-indent:-9999px;
	border-radius:75px;
 	-moz-border-radius:75px;
 	-webkit-border-radius: 75px;
}

/*clearfix*/
.cf:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.cf {
  min-height: 1px;
}

* html .cf {
  height: 1px;
  /*¥*//*/
  height: auto;
  overflow: hidden;
  /**/
}


#sale_puppy > p{
	margin: 10px 0;
	text-align: center;
}

#sale_pet > div{
	box-shadow:rgba(0, 0, 0, 0.3) 0px 0px 6px 0px;
	-webkit-box-shadow:rgba(0, 0, 0, 0.3) 0px 0px 6px 0px;
	-moz-box-shadow:rgba(0, 0, 0, 0.3) 0px 0px 6px 0px;
	background-color: #fff;
	overflow: hidden;
	*zoom: 1;
}

.sales_common{
	width: 75%;
	margin: 15px auto;
	border-radius: 10px;
}

.sales_day{
	padding: 3px 5px;
	text-align: right;
}

.sales_image{
	width: 100%;;
}

.sales_image img{
	margin: 0;
	padding: 0;
	width: 100%;
}
.sales_date{
	color: #360000;
	text-align: center;
	font-weight: bold;
	margin-bottom: 10px;
}
.sales_date span {
	color: #e65c00;
}
.sales_text{
	color: #333;
	font-size: 15px;
	padding: 10px 13px 5px;
	font-weight: bold;
}

.sales_text a{
	color: #482323;
	text-decoration: none;
}
.sales_text a:hover{
	text-decoration: underline;
}
.sales_detail a {
	color: #ec8724;
	font-size: 15px;
	margin: 5px;
	text-align: center;
}


.sales_text2{
	color: #FF2C6E;
	font-size: 15px;
	padding: 15px 0px 5px 15px;
	font-weight: bold;
	text-align: center;
}

.sales_text2 a{
	color: #FF2C6E;
	text-decoration: none;
}

