@charset "shift_JIS";
/* CSS Document */
html {
  overflow-y: scroll;
}
body {
  width: 100%;
  height: 100%;
  color: #736357;
  font: 16px/0 'Noto Sans JP', Meiryo, YuGothic, "Yu Gothic medium", "Hiragino Sans", sans-serif;
  background-color: #fff;
}
*, *:before, *:after {
  padding: 0px;
  margin: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
a img {
  border: none;
  outline: none;
}
ul li {
  list-style: none;
}
/*
---------------------------------------------------ヘッダー
*/
header {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  line-height: 0em;
  z-index: 120;
  background-image: url(../images/header_bg2.png);
  background-repeat: no-repeat;
  background-position: right bottom;
}
body::before {
  display: block;
  position: absolute;
  z-index: 50;
  content: "";
  width: 40vw;
  min-height: 400px;
  left: 0;
  top: 0;
  background-image: url("../images/header_bg1.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}
header h1 {
  text-align: center;
}
/*
---------------------------------------------------ナビ
*/
nav {
  display: block;
  width: 100%;
  padding: 30px 0;
}
nav ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
nav ul li {
  padding: 1em;
  background-color: rgba(255, 255, 255, 0.8)
}
nav ul li a {
  color: #736357;
  text-decoration: none;
}
nav ul li a:hover {
  color: #00B7EE;
}
/*
---------------------------------------------------メインカラム
*/
main {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 60px;
  line-height: 1.8em;
}
main a {
  text-decoration: none;
}
main a:hover {}
/*
---------------------------------------------------フッター
*/
footer {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  background-color: #7FCEF4;
}
.pagetop {
  background-color: #fff;
  background-image: url(../images/pagetop_bg.png);
  background-repeat: repeat-x;
  background-position: bottom center;
  width: 100%;
  height: 100px;
  text-align: center;
}
#footer .address {
  padding: 20px 0 0 0;
  text-align: center;
  line-height: 1.8em;
  color: #fff;
}
#footer .address .houjinmei {}
#footer .address .enmei {
  font-family: "RocknRoll One", sans-serif;
  font-size: 1.5em;
  margin-bottom: 0.5em;
}
#footer .address .juusyo {
  font-size: 0.9em;
}
#footer .phoneBtn {
  text-align: center;
}
#footer .phoneBtn a {
  display: inline-block;
  margin: 1em auto;
  font-size: 1.5em;
  color: #00B7EE;
  text-decoration: none;
  padding: 0.25em 1em;
  background-color: #fff;
  border-radius: 1em;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
#footer .phoneBtn a i {
  margin-right: 0.5em;
}
#footer .phoneBtn a:hover {
  background-color: #736357;
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.copyright {
  font-size: 0.8em;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.2em;
  background-color: #603813;
}
/*
---------------------------------------------------レスポンシブ1024
*/
@media screen and (max-width:1024px) {
  /*
---------------------------------------------------1024ここまで
*/
}
/*
---------------------------------------------------レスポンシブ480
*/
@media screen and (max-width:480px) {
  .lf::after {
    content: "\A";
    white-space: pre;
  }
  nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  nav ul li {
    width: 50%;
    text-align: center;
  }
  #footer .address .juusyo {
    line-height: 1.2em;
    font-size: 0.9em;
  }
  /*
---------------------------------------------------480ここまで
*/
}