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

  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: 767px) {/*767*/
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    padding: 10px 20px;
    z-index: 999;
    background: #ffffff;
  }
  .header .logo {
    max-width: 180px;
  }
  .header .logo a {
    display: block;
  }
  .header .hamburgerBox {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    padding: 15px;
    text-align: center;
    z-index: 999;
    background: #b6942e;
  }
  .header .hamburgerBox .hamburger {
    cursor: pointer;
    display: block;
    position: relative;
    width: 100%;
    height: 20px;
  }
  .header .hamburgerBox .hamburger .span {
    background: #ffffff;
    position: absolute;
    left: 50%;
    width: 30px;
    height: 2px;
    transform: translateX(-50%);
    transition: 0.4s;
  }
  .header .hamburgerBox .hamburger .span:nth-of-type(1) {
    top: 10;
  }
  .header .hamburgerBox .hamburger .span:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .header .hamburgerBox .hamburger .span:nth-of-type(3) {
    bottom: 0;
  }
  .header .hamburgerBox .is-open.hamburger .span:nth-of-type(1) {
    transform: translate(-50%, 9px) rotate(-45deg);
  }
  .header .hamburgerBox .is-open.hamburger .span:nth-of-type(2) {
    opacity: 0;
  }
  .header .hamburgerBox .is-open.hamburger .span:nth-of-type(3) {
    transform: translate(-50%, -9px) rotate(45deg);
  }
}
/* --------------------------------------------------
	nav
-------------------------------------------------- */
@media (max-width: 767px) {/*-767*/
  .navBox {
    overflow: auto;
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: calc(100% - 100px);
    z-index: 999;
    background: #ffffff;
    transition: 0.6s;
  }
  .navBox.active {
    top: 50px;
  }
  .navBox .navContainer {
    padding: 60px 20px;
  }
  .navBox .navList {
    text-align: center;
  }
  .navBox .navList .ul .li + .li {
    margin: 25px 0 0;
  }
  .navBox .navList .ul .li a {
    display: inline-block;
    font-size: 18px;
  }
  .navBox .navItem {
    width: 220px;
    margin: 20px auto 0;
    padding: 10px;
    color: #ffffff;
    text-align: center;
    background: #656565;
  }
  .navBox .navItem .ttl {
    padding: 2px 10px;
    font-size: 14px;
    background: #909090;
  }
  .navBox .navItem .contact {
    max-width: 180px;
    margin: 5px auto 0;
  }
  .navBox .navItem .contact a {
    display: block;
    padding: 5px 10px;
    font-size: 15px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    background: #b6942e;
  }
  .navBox .navItem .contact a p {
    display: inline-block;
    padding: 0 0 0 25px;
    background: url(https://www.lacorolle.com/system_panel/uploads/images/header_mail.png) left center no-repeat;
    background-size: 15px auto;
  }
}
/* --------------------------------------------------
	main
-------------------------------------------------- */
@media (max-width: 767px) {
  .pageMain {
    margin: 50px 0 0;
  }

  .pageKvPanel {
    height: 220px;
    padding: 20px;
  }
  .pageKvPanel .pageKvTitle {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    padding: 5px 20px;
    font-size: 24px;
  }

  .pageSecTtlBox {
    margin: 0 0 40px;
  }
  .pageSecTtlBox .sub {
    font-size: 35px;
  }
  .pageSecTtlBox .pageSecTtl {
    margin: -15px 0 0;
    font-size: 18px;
  }

  .mapBox {
    padding: 0 0 70%;
  }

  .btnMore {
    max-width: 230px;
  }

  .btnContact {
    max-width: 230px;
  }
}
/* --------------------------------------------------
	footer
-------------------------------------------------- */
@media (max-width: 767px) {
  .footer .footContact {
    padding: 40px 0 80px;
  }
  .footer .footContact .secTtl {
    margin: 0 0 15px;
  }
  .footer .footContact .secTtl p {
    font-size: 15px;
  }
  .footer .footContact .secTtl h2 {
    font-size: 24px;
  }
  .footer .footContact .contactItem .itemBox + .itemBox {
    margin: 40px 0 0;
  }
  .footer .footContact .contactItem .itemBox .ttl {
    margin: 0 0 5px;
    font-size: 18px;
  }
  .footer .footContact .contactItem .itemBox .tel a {
    font-size: 30px;
  }
  .footer .footContact .contactItem .itemBox .btnContact {
    max-width: 260px;
  }
  .footer .footPanel {
    padding: 40px 0 20px;
  }
  .footer .footPanel .logo {
    max-width: 200px;
    margin: 0 0 20px;
  }
  .footer .footPanel .copy {
    margin: 30px 0 0;
    font-size: 13px;
    text-align: center;
  }
}