@charset "utf-8";
body {
	animation: fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
	background-color: #FDFEFF;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
img{
	max-width: 100%;
	width: 100%;
	border: none;
}
#wrapper {
	height: auto;
	max-width: 960px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	letter-spacing: 1px;
	word-spacing: 1px;
}
#wrapper img {
	height: auto;
	width: auto;
}
#wrapper #head {
	height: auto;
	width: 100%;
}
#wrapper #head a #head1 {
	height: auto;
	width: 16.6667%;
}
#wrapper #head #head2 {
	height: auto;
	width: 66.66666%;
}
#wrapper #head a #head3 {
	height: auto;
	width: 16.6666666%;
}
#wrapper #kuhaku {
	height: auto;
	width: auto;
}
#wrapper #navi {
	height: auto;
	width: 100%;
	padding-top: 1px;
	padding-bottom: 1px;
}
#wrapper #navi #navib {
	height: auto;
	width: 16.6666%;
}
#wrapper #visual {
	height: auto;
	width: 100%;
}
#wrapper #side {
	height: auto;
	width: 17%;
	float: left;
	margin-bottom: 15px;
	margin-top: 0px;
}
#wrapper #main {
	/* [disabled]height: auto; */
	width: 100%;
	float: right;
	line-height: 25px;
	letter-spacing: 1px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	word-spacing: 1px;
}
#wrapper #main h1 {
	color: #241517;
	font-size: medium;
}
#wrapper #main h2 {
	font-size: medium;
	color: #FFFFFF;
	background-color: #1B2478;
	clear: left;
	font-weight: lighter;
}
#wrapper #main h3 {
	color: #210304;
	border-bottom-style: double;
	border-bottom-color: #400000;
	border-left-style: double;
	border-left-color: #400000;
	clear: left;
	font-weight: lighter;
}
#wrapper #main table tr th {
	text-align: left;
	color: #666;
}
#wrapper #main table {

}
#wrapper #main #hidari {
	margin-right: 7px;
	margin-top: 3px;
	float: left;
}
#wrapper #foot {
	height: auto;
	width: 100%;
	float: left;
}
#wrapper #topbanner {
	height: auto;
	width: auto;
}
.sbanner {
	height: auto;
	max-width: 100%;
	padding-top: 5%;
	padding-bottom: 5%;
}
#wrapper #side #sidetreatment {
	height: auto;
	max-width: 100%;
	background-image: url(image/side_treatment_back.jpg);
	margin-bottom: 30px;
}
#wrapper #foot #footkanban {
	height: auto;
	max-width: 100%;
	padding: 2px;
	width: 100%;
}
#wrapper #foot #footkanban h2 {
	font-size: 16px;
}
#wrapper #foot #footkanban #foottime {
	float: right;
}
#wrapper #topbanner h1 {
	margin-top: 10px;
	margin-bottom: 2px;

}
#wrapper #main h4 {
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #81762E;
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #9D8333;
	color: #333333;
	font-weight: lighter;
}
#wrapper #main #haikeishoku {
	background-color: #C8D5F2;
}
#wrapper #main .topbanner {
	height: auto;
	width: 25%;
	float: left;
}
/* ハンバーガーメニュー始め */
.scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}
#nav-tgl {
  display: none;
}
.nav-tgl-btn {
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  margin: 0;
}
.open {
  z-index: 2;
  width: 48px;
  height: 48px;
  background: #000;
  transition: background .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open::before,
.open::after {
  content: "";
}
.open span,
.open::before,
.open::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 30%;
  width: 40%;
  border-bottom: 2px solid white;
  transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open::before {
  transform: translateY(-8px);
}
.open::after {
  transform: translateY(8px);
}
.close {
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: background .6s;
}
#nav-tgl:checked + .open {
  background: #dd4884;
  transform: translateX(-250px);
}
#nav-tgl:checked + .open span {
  transform: scaleX(0);
}
#nav-tgl:checked + .open::before {
  transform: rotate(45deg);
}
#nav-tgl:checked + .open::after {
  transform: rotate(-45deg);
}
#nav-tgl:checked ~ .close {
  pointer-events: auto;
  background: rgba(0,0,0,.3);
}

.content-wrapper {
  transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#nav-tgl:checked ~ .content-wrapper {
  transform: translateX(-250px);
}



/* メニューデザイン */
.drower-menu {
  z-index: 999;
  position: fixed;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  margin: 0;
  padding: 0 0 10px;
  box-sizing: border-box;
  background: #333;
  transform: translateX(100%);
  transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.drower-menu a {
  display: block;
  color: white;
  padding: 10px;
  text-decoration: inherit;
  transition: background .6s;
  font-size: 1.4rem;
}
.drower-menu a:hover {
  background: black;
}
#nav-tgl:checked ~ .drower-menu {
  transform: none;
}
/* ハンバーガーメニュー終了 */
a:link {
	color: #968256;
}
a:visited {
	color: #646464;
}
a:hover {
	color: #835E07;
}
a:active {
	color: #5F4405;
}
/*ユーチューブレスポンシブ*/
.wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
@media screen and (min-width:1024px){
	/*1024px以上のスタイル*/
	img{
	width: 100%;
	max-width: 100%;
	border: none;
}
	a:hover img {
  opacity: 0.70;
  filter: alpha(opacity=70);
  -moz-opacity: 0.70;
  -ms-filter: "alpha(opacity=70)";
}
/* PCで電話番号リンクを無効に */
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}
#wrapper #visual h1 {
	margin-top: -1px;
	margin-bottom: -1px;
}
