/* --------------------------------------------- */
/* 共通
/* --------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  color: #333;
}

body {
  font-size: 13px;
  line-height: 1;
  color: #333;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: normal;
  letter-spacing: 1px;
}


/* --------------------------------------------- */
/* ローディング
/* --------------------------------------------- */

.loading-wrap {
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: #33231d;
  transition: .38s;
}

.loading {
  position: relative;
  width: 100%;
  height: 100%;
}

.line-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 144px;
  height: 1px;
}

.line {
  position: relative;
  width: 100%;
  height: 100%;
}

.line-inner {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  bottom: 0;
  animation: line-move .38s ease infinite;
}

@keyframes line-move {
  0% {
    right: 100%;
    opacity: 1s;
  }
  50% {
    right: 0;
  }
  99% {
    left: 100%;
    opacity: 0;
  }
  100%{
    left: 0;
    right: 100%;
  }
}



/* --------------------------------------------- */
/* ハンバーガーメニュー(アイコン)
/* --------------------------------------------- */

.hamb {
  position: fixed;
  top: 26px;
  right: 26px;
  height: 31px;
  display: none;
  z-index: 11;
}

.open {
  z-index: 200;
}

.hamb_inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.line01 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #000;
  height: 2px;
}

.line02 {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  background: #000;
  height: 2px;
}

.line03 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  height: 2px;
}

.open .line01 {
  background: #fcf3e6;
  transform: rotate(45deg);
  transition: .38s;
  top: 20px;
}

.open .line02 {
  background: transparent;
}

.open .line03 {
  background: #fcf3e6;
  transform: rotate(-45deg);
  transition: .38s;
  top: 20px;
  bottom: none;
}

.menu_p {
  font-size: 13px;
  text-align: center;
  display: block;
}

.open .menu_p {
  color: #fcf3e6;
  margin-top: 8px;
}

@media all and (max-width: 1100px) {

  .hamb {
    display: block;
  }


}

@media all and (max-width: 400px) {

  .hamb {
    top: 21px;
    right: 21px;
  }

}

/* --------------------------------------------- */
/* ハンバーガーメニュー
/* --------------------------------------------- */

.hamb_menu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 60%;
    background: #553223;
    z-index: 100;
    display: none;
}

.hamb_logo {
  width: 60%;
  margin: auto;
  margin-bottom: 55px;
  transform: translateY(21px);
  visibility: hidden;
  opacity: 0;
  transition: .38s;
}

.hamb_nav {
  width: 70%;
  margin: 21px auto;
  text-align: center;
  transform: translateY(21px);
  visibility: hidden;
  opacity: 0;
  transition: .38s;
}

.hamb_nav ul li {
  font-size: 18px;
  margin-bottom: 21px;
}

.hamb_nav ul li:last-of-type {
  margin-bottom: 0;
}

.hamb_nav ul li a {
  color: #fcf3e6;
  transition: .38s;
}

.hamb_nav ul li a:hover {
  opacity: .61;
}

.hamb_nav .nav_01 {
  color: #fcf3e6;
}

.hamb_tel {
  width: 70%;
  margin: auto;
  margin-top: 55px;
  transform: translateY(21px);
  visibility: hidden;
  opacity: 0;
  transition: .38s;
}

.hamb_tel_op {
  background: #553223;
}

.hamb_tel_op p {
  font-size: 13px;
  line-height: 34px;
  background: #fcf3e6;
  color: #553223;
  text-align: center;
  position: relative;
  margin-bottom: 8px;
}

.hamb_tel_op p::before{
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid #fcf3e6;
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.hamb_tel_img {
  width: 100%;
  margin-top: 18px;
}

.hamb_tel_img img {
  width: 100%;
}

.hamb_menu_inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.hamb_menu_inner02 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}

.hamb_menu .hamb_nav .sub_nav li {
  margin-bottom: 0;
  border-bottom: none;
  font-size: 13px;
}

@media all and (max-width: 600px) {

  .hamb_menu {
    left: 0%;
  }
}
/* --------------------------------------------- */
/* ヘッダー
/* --------------------------------------------- */

.header {
  margin-bottom: 34px;
}

.logo {
  width: 300px;
  margin-top: 55px;
  margin-left: 55px;
  float: left;
  opacity: 0;
  visibility: hidden;
}

.logo img {
  width: 100%;
}

.header_info {
  overflow: hidden;
  margin-bottom: 34px;
}

.tel {
  float: right;
  margin-top: 55px;
  margin-right: 55px;
  opacity: 0;
  visibility: hidden;
}

.tel_op {
  width: 300px;
  background: #553223;
}

.tel_op p {
  font-size: 18px;
  line-height: 34px;
  color: #fcf3e6;
  text-align: center;
  position: relative;
  margin-bottom: 8px;
}

.tel_op p::before{
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid #553223;
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.tel_img {
  width: 300px;
  margin-top: 13px;
}

.tel_img img {
  width: 100%;
}

.nav {
  margin-right: 55px;
  visibility: hidden;
  opacity: 0;
}

.nav ul {
  text-align: right;
}

.nav ul li {
  display: inline-block;
  margin-left: 55px;
}

.nav ul li:nth-of-type(1) {
  margin-left: 0;
}

.nav ul li a{
  font-size: 21px;
  transition: .38s;
}

.nav ul li a:hover {
  opacity: .61;
}

.nav_01 {
  position: relative;
  font-size: 21px;
}

.nav_01:hover {
  cursor: pointer;
}

.header .nav_01 .sub_nav {
  text-align: center;
  flex-direction: column;
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(85,50,35,.8);
  border-top: solid #fff 13px;
}

.nav_01 .sub_nav li {
  margin-left: 0;
  margin-top: 8px;
  line-height: 1;
  padding : 5px;
  border-bottom: 1px solid rgba(255,255,255,.5);
  display: block;
}

.nav_01 .sub_nav li:last-of-type {
  border-bottom: none;
}

.nav .nav_01 .sub_nav li a {
  color: #fcf3e6;
  display: block;
  font-size: 13px;
  line-height: 34px;
}

@media all and (max-width: 1100px) {

  .header {
    margin-bottom: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 10;
  }

  .header_info {
    margin-bottom: 21px;
  }

  .logo {
    margin-top: 21px;
    margin-left: 21px;
    width: 170px;
  }

  .tel {
    display: none;
  }

  .nav {
    display: none;
  }
}

@media all and (max-width: 400px) {

  .logo {
    width: 150px;
    margin-top: 21px;
    margin-left: 21px;
}

}

/* --------------------------------------------- */
/* フッター(上)
/* --------------------------------------------- */

.footer_inner00 {
  padding: 55px;
  background: #553223;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}

.footer_inner01 {
  float: left;
  visibility: hidden;
  opacity: 0;
}

.footer_logo {
  width: 300px;
}

.footer_logo img {
  width: 100%;
}

.footer_info01 p {
  font-size: 16px;
  line-height: 29px;
  color: #fcf3e6;
  margin-top: 25px;
}

.footer_inner02 {
  display: flex;
  float: right;
  visibility: hidden;
  opacity: 0;
}

.footer_info02 {
  display: inline-block;
  padding: 21px 13px;
  background: #fcf3e6;
  margin-right: 34px;
}

.footer_info02 p {
  font-size: 21px;
  line-height: 34px;
  color: #553223;
}

.footer_tel_op {
  width: 445px;
  background: #fcf3e6;
}

.footer_tel_op p {
  font-size: 21px;
  line-height: 34px;
  color: #553223;
  text-align: center;
  position: relative;
  margin-bottom: 21px;
}

.footer_tel_op p::before{
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid #fcf3e6;
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}

.footer_tel_img {
  width: 445px;
}

.footer_tel_img a {
  display: block;
}

.footer_tel_img img {
  width: 100%;
}

.footer_info01_br {
  display: none;
}

@media all and (max-width: 1250px) {

  .footer_inner01 {
    float: none;
  }

  .footer_inner02 {
    float: none;
    margin-top: 34px;
  }

}

@media all and (max-width: 750px) {

  .footer_info02 p {
      font-size: 13px;
      line-height: 21px;
  }

}

@media all and (max-width: 700px) {

  .footer_info02 {
    display: none;
  }

}

@media all and (max-width: 590px) {

  .footer_info01_br {
    display: block;
  }

}

@media all and (max-width: 515px) {

  .footer_tel {
    width: 100%;
  }

  .footer_tel_op {
      width: 100%;
  }

  .footer_tel_img {
      width: 100%;
  }

  .footer_inner00 {
      padding: 55px 5%;
  }

}

@media all and (max-width: 470px) {

  .footer_info01 p {
      font-size: 16px;
      line-height: 26px;
  }


}

@media all and (max-width: 400px) {

  .footer_logo {
      width: 100%;
  }

  .footer_inner00 {
      padding: 34px 5%;
  }

}

/* --------------------------------------------- */
/* フッター(下)
/* --------------------------------------------- */

.footer_inner03 {
  padding: 55px;
  overflow: hidden;
}

.footer_banner {
  display: inline-block;
  float: right;
  overflow: hidden;
  transition: .38s;
  visibility: hidden;
  opacity: 0;
}

.footer_banner:hover {
  opacity: .61;
  cursor: pointer;
}

.footer_banner:hover .banner_img {
  transform: scale(1.1);
}

.banner_img {
  background-image: url("../images/banner.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 250px;
  height: 150px;
  transition: .38s;
}

.footer_banner p {
  background: #fcf3e6;
  color: #553223;
  text-align: center;
  font-size: 21px;
  line-height: 55px;
}

.footer_nav {
  margin-bottom: 55px;
  visibility: hidden;
  opacity: 0;
}

.footer_nav > ul > li {
  font-size: 18px;
  margin-left: 21px;
  display: inline-block;
  line-height: 34px;
}

.footer_nav ul li:nth-of-type(1) {
  margin-left: 0;
}

.footer_nav ul li a{
  transition: .38s;
}

.footer_nav ul li a:hover {
  opacity: .61;
}

.footer_copy {
  visibility: hidden;
  opacity: 0;
}

.footer_copy p {
  font-size: 21px;
}

.footer_sub_nav {
  display: inline-block;
}

.footer_sub_nav li {
  display: inline-block;
}
@media all and (max-width: 1200px) {

  .footer_nav ul li {
      margin-left: 0;
      display: block;
      margin-bottom: 21px;
  }

  .footer_nav ul li:last-of-type {
      margin-bottom: 0px;
  }

  .footer_sub_nav {
    display: block;
  }

  .footer_nav .footer_sub_nav li {
    display: block;
    padding-left: 34px;
    margin-bottom: 8px;
  }

  .higasikan_sl {
    display: none;
  }

  .footer_copy p {
    text-align: center;
  }

}

@media all and (max-width: 600px) {

  .footer_banner {
      width: 100%;
  }

  .footer_banner {
    float: none;
  }

  .banner_img {
    width: 100%;
    height: 300px;
}

  .footer_nav {
    margin-top: 34px;
    text-align: center;
  }

.footer_nav ul li {
  font-size: 18px;
  line-height: 30px;
}

.footer_nav .footer_sub_nav li {
    padding-left: 0;
  }

}

@media all and (max-width: 500px) {

  .footer_inner03 {
      padding: 55px 5%;
}

}
@media all and (max-width: 400px) {

  .banner_img {
    height: 150px;
}

.footer_copy p {
    font-size: 13px;
}

.footer_inner03 {
    padding: 34px 5%;
}


}
