@charset "UTF-8";
/* CSS Document */
/*===================================================
	共通CSS（SMP）
===================================================*/
/* --------------------------------------------------
	base
-------------------------------------------------- */
@media (max-width: 1139px) {
  body {
    min-width: 0;
    font-size: 12px;
  }

  a:hover {
    text-decoration: none;
  }

  /*改行*/
  .pcBreak {
    display: none;
  }

  .spBreak {
    display: block;
  }

  /*spのみ表示*/
  .pcHidden {
    display: block;
  }

  .spHidden {
    display: none;
  }

  #sideBtn {
    display: none;
  }

  .topicPath {
    display: none;
  }
}
/* --------------------------------------------------
	header
-------------------------------------------------- */
.header .logoBox {
  position: fixed;
  top: 35px;
  left: 25px;
}
.header .logoBox .logo {
  width: 100px;
}
.header .logoBox .headTtl {
  display: none;
}
.header .hamburger {
  cursor: pointer;
  position: fixed;
  top: 35px;
  right: 20px;
  width: 25px;
  height: 18px;
  z-index: 10000;
}
.header .hamburger span {
  background: #ffffff;
  position: absolute;
  left: 50%;
  width: 25px;
  height: 1px;
  transform: translateX(-50%);
  transition: 0.4s;
}
.header .hamburger span:nth-of-type(1) {
  top: 0;
}
.header .hamburger span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header .hamburger span:nth-of-type(3) {
  bottom: 0;
}
.header .hamburger.is-open span {
  height: 1px;
  background: #5f5f5f;
}
.header .hamburger.is-open span:nth-of-type(1) {
  transform: translate(-50%, 8px) rotate(-35deg);
}
.header .hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}
.header .hamburger.is-open span:nth-of-type(3) {
  transform: translate(-50%, -8px) rotate(35deg);
}

/* --------------------------------------------------
	nav
-------------------------------------------------- */
.navBox {
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding: 120px 20px 100px;
}
.navBox .navContainer {
  width: 90%;
  max-width: 265px;
  margin: 0 auto;
}
.navBox .navLogo {
  display: block;
  position: absolute;
  top: 35px;
  left: 20px;
  width: 100px;
}
.navBox .navLogo a {
  display: block;
}
.navBox .navList {
  display: flex;
  justify-content: space-between;
  margin: 0 0 50px;
}
.navBox .navList ul {
  width: 48%;
}
.navBox .navList ul li + li {
  margin: 30px 0 0;
}
.navBox .navList ul li a {
  font-size: 13px;
}
.navBox .navItem {
  margin: 0 0 30px;
}
.navBox .navItem ul li + li {
  margin: 10px 0 0;
}
.navBox .navSns .insta {
  width: 60%;
  max-width: 250px;
  min-width: 180px;
}
.navBox .navSns .insta a {
  display: block;
}

.fixedNavBox {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 999;
}
.fixedNavBox ul {
  display: flex;
}
.fixedNavBox ul li {
  width: 50%;
}
.fixedNavBox ul li + li {
  border-left: 1px solid #ffffff;
}
.fixedNavBox ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 90px;
  font-size: 14px;
  color: #ffffff;
  background: #6d6360;
}
.fixedNavBox ul li a > span {
  display: block;
  text-align: center;
}
.fixedNavBox ul li a > span span {
  display: inline-block;
  padding: 0 15px 0 0;
  background: url("../image/common/fixed_nav_arrow_right.png") right center no-repeat;
  background-size: 8px auto;
}

/* --------------------------------------------------
	main
-------------------------------------------------- */
.mapBox {
  padding: 0 0 70%;
}

.videoBox {
  padding: 0 0 70%;
}

.btnMore a {
  display: block;
  padding: 17px 20px;
  font-size: 15px;
  text-align: left;
}
.btnMore a span {
  display: block;
  max-width: 180px;
  margin: 0 auto;
  padding: 0 15px 0 0;
  background: url("../image/common/btn_more_arrow.png") right center no-repeat;
  background-size: 7px auto;
}

/* --------------------------------------------------
	footer
-------------------------------------------------- */
.footer {
  padding: 50px 25px 120px;
  background: #c4a097;
}
.footer .footPanel {
  width: 100%;
}
.footer .footBox {
  max-width: 260px;
  margin: 0 auto;
}
.footer .footBox .txtBox .ttlHead {
  display: block;
  margin: 0 0 40px;
}
.footer .footBox .txtBox .ttlHead .ttl {
  font-size: 31px;
}
.footer .footBox .txtBox .ttlHead .insta {
  display: none;
}
.footer .footBox .txtBox .navItem ul li + li {
  margin: 10px 0 0;
}
.footer .footBox .logoBox {
  width: 100px;
  margin: 50px 0 0 10px;
}