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

  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
-------------------------------------------------- */
@media (max-width: 1024px) {
  .header .logo {
    width: 60px;
    margin: 0 auto;
  }
  .header .logo a {
    display: block;
  }
  .header .headContactBtn {
    width: 100px;
  }
  .header .headContactBtn a {
    display: block;
  }
  .header .hamburger {
    cursor: pointer;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 40px;
    z-index: 10000;
    background: #f1f1f1;
  }
  .header .hamburger .span {
    background: #000000;
    position: absolute;
    left: 50%;
    width: 25px;
    height: 2px;
    transform: translateX(-50%);
    transition: 0.4s;
  }
  .header .hamburger .span:nth-of-type(1) {
    top: 10px;
  }
  .header .hamburger .span:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .header .hamburger .span:nth-of-type(3) {
    bottom: 10px;
  }
  .header .hamburger.is-open.hamburger .span:nth-of-type(1) {
    transform: translate(-50%, 9px) rotate(-45deg);
  }
  .header .hamburger.is-open.hamburger .span:nth-of-type(2) {
    opacity: 0;
  }
  .header .hamburger.is-open.hamburger .span:nth-of-type(3) {
    transform: translate(-50%, -9px) rotate(45deg);
  }
  .header.topHeader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 100px);
  }
  .header.topHeader .headerContainer {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    z-index: 999;
    background: #191a37;
  }
  .header.topHeader .headContactBtn {
    position: absolute;
    top: 70%;
    right: 20px;
    z-index: 999;
  }
  .header.pageHeader .logo {
    display: none;
  }
  .header.pageHeader .headContactBtn {
    display: none;
  }
}
/* --------------------------------------------------
	nav
-------------------------------------------------- */
@media (max-width: 1024px) {
  .navBox {
    overflow: auto;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100%;
    padding: 80px 40px 60px;
    z-index: 999;
    background: #f3f3f3;
    opacity: 0;
    transition: 0.6s;
  }
  .navBox.active {
    right: 0;
    z-index: 1000;
    opacity: 1;
  }
  .navBox .navList {
    margin: 0 0 20px;
    border-bottom: 2px dotted #444444;
  }
  .navBox .navList .ul .li {
    text-align: left;
  }
  .navBox .navList .ul .li + .li {
    border-top: 2px dotted #444444;
  }
  .navBox .navList .ul a {
    display: block;
  }
  .navBox .navList .ul a,
.navBox .navList .ul > .li > div {
    padding: 10px 20px;
  }
}
/* --------------------------------------------------
	main
-------------------------------------------------- */
@media (max-width: 1024px) {
  .pageKvPanel {
    height: 150px;
  }
  .pageKvPanel .pageKvTitle {
    font-size: 24px;
  }

  .mapBox {
    padding: 0 0 70%;
  }
}
/* --------------------------------------------------
	footer
-------------------------------------------------- */
@media (max-width: 1024px) {
  .footer .footContact {
    padding: 60px 0;
  }
  .footer .footContact .secBox .secTtlBox {
    margin: 0 0 30px;
  }
  .footer .footContact .secBox .secTtlBox .img {
    position: absolute;
    top: -40px;
    left: 0;
    width: 80px;
  }
  .footer .footContact .secBox .secTtlBox .secTtl {
    font-size: 23px;
  }
  .footer .footContact .secBox .btnBox {
    padding: 60px 0 0 50px;
  }
  .footer .footContact .secBox .btnBox .balloon {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
  }
  .footer .footContact .secBox .btnBox .btnContact {
    max-width: 240px;
  }
  .footer .footPanel {
    padding: 40px 0 20px;
  }
  .footer .footPanel .logo {
    width: 60px;
    margin: 0 0 15px;
  }
  .footer .footPanel .txt {
    font-size: 14px;
  }
  .footer .footPanel .copy {
    margin: 80px 0 0;
    font-size: 12px;
    text-align: center;
  }
}