@charset "UTF-8";

body {
  width: 100%;
  color: #ffffff;
  font-family: "Lucida Grande", "Hiragino Kaku Gothic Pro", "Verdana",
    "メイリオ", "Meiryo", "MS Pゴシック", "Osaka", "arial", "helvetica",
    "sans-serif";
  font-size: 10pt;
  background-color: #000000;
}

img {
  width: 100%;
}

h1 {
  text-align: right;
  color: #ffc200;
  padding: 3px;
  background: #f00;
}

h2.con-title {
  margin-bottom: 10px;
}

#conteiner {
  width: 100%;
  margin: 0px auto;
}

#header .upTel {
  display: none;
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100px);
  }

}

#header .downTel {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime{
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

#header .marquee {
  position: relative;
  z-index: 100;
  width: 100%;
  overflow: hidden;
  padding: 10px;
}

#header .marquee p {
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  padding-left: 100%;
  width: auto;
  display: inline-block;
}

@keyframes marquee {
  0% {
    transform: translate(0);
  }

  100%,
  100% {
    transform: translate(-100%);
  }

}

#menu .menu_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#menu .menu_list li {
  width: 20%;
  margin: 2px 0;
  background: url("../img/menu.jpg") no-repeat;
  -webkit-background-size: 100%;
}

#menu .menu_list li a {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  color: #000;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
}

.telbtn {
  display: flex;
}

.breadcrumb {
  margin-left: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.breadcrumb ol {
  display: flex;
}

.breadcrumb ol a {
  color: #fff;
}

.breadcrumb ol a:hover {
  text-decoration: underline;
}

.breadcrumb ol li:nth-of-type(n + 2)::before {
  content: ">";
}

main {
  padding-bottom: 60px;
}

#content {
  padding: 5px;
}

#footer {
  padding-top: 20px;
  padding-bottom: 10px;
}

#footer h2 {
  color: #fff;
  padding: 9px;
  font-size: 1em;
  font-weight: bold;
}

#footer h2:before {
  content: "|";
}

#footer_menu {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#footer_menu li {
  width: 50%;
  border-bottom: 1px solid #000;
}

#footer_menu li:nth-child(odd) {
  border-right: 1px solid #000;
}

#footer_menu li a {
  display: block;
  width: 100%;
  height: 55px;
  line-height: 55px;
  color: #000000;
  background: #e0c86e;
  text-align: center;
}

#copyright {
  padding-top: 10px;
  padding-bottom: 15px;
  text-align: center;
  clear: both;
  line-height: 1.7em;
}

#copyright .footer_tel {
  text-decoration: underline;
}

#footer #page-top {
  display: none;
	position: fixed;
	right: 10px;
	z-index: 9999;
	opacity: 0;
	transform: translateY(100px);
}

#footer #page-top a {
	transition:all 0.3s;
}

#footer #page-top img{
	width: auto;
}

#footer #page-top.PageTopUp {
	animation: PageTopUpAnime 0.5s forwards;
}

@keyframes PageTopUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }

}

#footer #page-top.PageTopDown {
	animation: PageTopDownAnime 0.5s forwards;
}

@keyframes PageTopDownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(100px);
  }

}
