@charset "utf-8";
/* CSS Document */

body {
    margin: 0;
    height: 100%;
    min-height: 700px; /* 最小の高さを設定 */
	font-size: 0.8em;
}

#backimage {
    margin: 0;
    position: fixed;
    left: 0;
    top: 0;
    background-size: cover; /* 背景の幅と高さ */
    background-position: center; /* 中心を捉える */
    background-repeat: no-repeat; /* リピート表示させない */
    background-image: url('./img/umesato_1.jpg'); /* 白背景を回避するためにデフォルトを設定 */
    height: 100vh;
    width: 100vw;
    z-index: -1;
    transition: background-image 0.5s ease; /* 背景画像の変更時のトランジション効果 */
}

#content-back {
    width: 100vw;
}

.bkimg {
    width: 100%;
    height: auto;
}

#contents {
    position: absolute;
    right: 0;
    height: auto;
    width: 30%;
	min-width: 30%;
	max-width: 30%;
    background-color: white;
}

.contact-menu {
    z-index: 80;
	width: 150px;
}
.contact-menu p {
    position: absolute;
	left:10px;
	top:10px;
	color: #fff;
}
.contact-menu a {
	color: #fff;
}
.contact-menu a:hover {
	color: #6a3906;
}


.top-img {
	width: 100%;
	height: auto;
	margin: 0;
}
.top-img2 {
	width: 80%!important;
	height: auto!important;
	margin: 10px 0;
}

.top-img3 {
	width: auto!important;
	height: auto!important;
	margin: 10px 0 0;
}

.top-text {
	width: 80%;
	margin: 0 auto 1em!important;
	text-align: left;
}

.green-back {
	background-color: #e0f0e2;
	padding: 15px 20px 30px;
	margin: 0;
}

.gray-back {
	background-color: #f9f9f9;
	padding: 20px;
	margin: 0;
}

.gray-back table th {
	width: 100px;
	padding: 5px;
	text-align: left;
	vertical-align: middle;
}
.gray-back table td {
	width: auto;
	padding: 5px;
	text-align: left;
	vertical-align: middle;
}

.green-back h4,p{
	margin: 0!important;
}

.red-back {
	background-color: #5e1010;
	padding: 20px;
	margin: 0;
}
.red-back p{
	margin: 0!important;
	color:#fff;
}

.red-back img {
	margin-top: -40px;
	margin-right: 0px;
	margin-left: 10px;
	margin-bottom: 0;
	float: right;
	width: auto!important;
	height: auto!important;
}
.white-back {
	background-color: #fff;
	padding: 20px;
	margin: 0;
}
#contents p {
	margin: 15px 10px;
	padding: 0;
	line-height: 1.5em;
}

#contents img {
	width: 100%;
	height: auto;
	vertical-align:top;
}

.img-left {
	width: auto!important;
	height: auto!important;
	float: left;
	margin-right: 10px;
}

h1,h2,h3,h4,h5,h6,h7 {
	margin: 15px 0;
}

.cb {
	clear: both;
}

.center-title {
	text-align: center;
	margin: 0;
	color: #474004;
}

.t-center {
	text-align: center;
	margin: 0!important;
	color:#7c7c7c;
}

.haka-setsumei table {
	margin: 0 5px 1em;
	border: 0;
}
.haka-setsumei table td {
	padding: 5px;
	width: 60%;
	text-align: left;
	font-size: 0.9em;
}
.haka-setsumei table th {
	padding: 5px;
	width: 40%;
	font-weight: 600;
	text-align: right;
	font-size: 0.9em;
	vertical-align: top;
}

.hosoku {
	padding: 10px;
	margin: 10px;
	font-size: 0.9em;
}
.hosoku　p {
	padding: 0!important;
	margin: 0!important;
}

.pet-title {
	color: #474004;
}
.pet-img {
	width: 80%!important;
	height: auto;
	margin: 1em auto!important;
}

.pet-box h4 {
	color: #fff;
	font-weight: bold;
	font-size: 1.3em;
	line-height: 1.3em;
}
.pet-box p {
	font-weight: bold;
	font-size: 1.2em
}

.access {
	text-align: center;
}

.access img {
	width: auto!important;
	height: auto!important;
} 

/* ハンバーガーメニュー */
.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #fff;
    border-radius: 50%;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #6a3906;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
.menu-content {
    width: 100%;
    max-width: 30%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #ffffff;
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #6a3906;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#6a3906;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 1px #6a3906;
    border-right: solid 1px #6a3906;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}
.menu-content {
    width: 100%;
    max-width: 30%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #fff;
    transition: all 0.5s;/*アニメーション設定*/
    overflow-y: scroll;
}
#menu-btn-check:checked ~ .menu-content {
    left: 70%;/*メニューを画面内へ*/
}

/* フッター メニュー表示 */
.footer-textbox {
	 writing-mode: vertical-rl;
	 margin: 0 auto;
	}
.footer-textbox a{
	 text-decoration: none;
	}
	
/* お知らせ・更新 */
.nu-box li{
  border-bottom: dotted 3px #5e1010;
}

.center-title-nu {
	text-align: center;
	margin: 10px 0 30px;
	color: #474004;
}
.center-title-nu:before {
  content: '';/*何も入れない*/
  display: inline-block;
  width: 35px;/*画像の幅*/
  height: 35px;/*画像の高さ*/
  background-image: url(img/haka.png);
  background-size: contain;
  vertical-align: middle;
  }


/* iPod含めてサイズ以下は背景を隠すように表示 */
@media screen and (max-width: 960px) {
	#contents {
		position: static;
		right: 0;
		width: 100%;
		min-width: 390px;
		max-width: 960px;
		background-color: white;
	}
	.menu-content {
		max-width: 100%;
		min-width: 100%;
	}
	#menu-btn-check:checked ~ .menu-content {
		left: 0;/*メニューを画面内へ*/
	}
}
