@charset "UTF-8";
.pc-only {
  display: block;
}

@media screen and (max-width: 769px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none;
}

@media screen and (max-width: 769px) {
  .sp-only {
    display: block !important;
  }
}

.pc-menu {
  display: block;
}

@media screen and (max-width: 1024px) {
  .pc-menu {
    display: none !important;
  }
}

.sp-menu {
  display: none;
}

@media screen and (max-width: 1024px) {
  .sp-menu {
    display: block;
  }
}

.globalMenuSp {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 20;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  color: #000;
  text-align: center;
  background-image: url(../img/header_sp.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position-y: bottom;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.globalMenuSp .main-menu {
  padding: 20px;
}

.globalMenuSp .main-menu img.logo {
  width: 200px;
  display: block;
}

.globalMenuSp .main-menu .item-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}

.globalMenuSp .main-menu .item-box a {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  max-width: 48%;
  text-decoration: none;
  color: white;
  margin-bottom: 40px;
}

.globalMenuSp .main-menu .item-box a img {
  max-width: 100%;
}

.globalMenuSp .main-menu .item-box a span {
  display: block;
  width: 100%;
  text-align: center;
}

/* このクラスを、jQueryで付与・削除する */
.navToggle.active {
  /*
    span {
        border-bottom: solid 1px #FFF;
    }     
    span:nth-child(4) {
        color: #FFF;
    }
    */
}

.navToggle {
  display: block;
  position: fixed;
  width: 50px;
  height: 51px;
  cursor: pointer;
  z-index: 30;
  text-align: center;
  top: 10px;
  right: 9px;
  background-color: white;
  border-radius: 4px;
}

.navToggle span {
  display: block;
  position: absolute;
  /* .navToggleに対して */
  width: 27px;
  border-bottom: solid 1px #e98c3e;
  -webkit-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  left: 12px;
}

.navToggle span:nth-child(1) {
  top: 9px;
}

.navToggle span:nth-child(2) {
  top: 18px;
}

.navToggle span:nth-child(3) {
  top: 27px;
}

.navToggle span:nth-child(4) {
  border: none;
  color: #111;
  font-size: 9px;
  font-weight: bold;
  top: 34px;
  width: 50px;
  left: 0px;
}

/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
  top: 18px;
  left: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.common__header-box-bg {
  background-image: url(../img/bg-header-title.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 60px;
}

.common__header-box-bg .common__header-box {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  padding: 50px 50px;
}

@media screen and (max-width: 769px) {
  .common__header-box-bg .common__header-box {
    padding: 20px 20px;
  }
}

.common__header-box-bg .common__header-box h1 {
  font-size: 3rem;
  border-left: 2px solid #a27c52;
  padding-left: 22px;
  letter-spacing: 0px;
}

@media screen and (max-width: 769px) {
  .common__header-box-bg .common__header-box h1 {
    font-size: 2.5rem;
  }
}

.common__wysiwyg-box {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  padding: 0px 50px;
  margin-bottom: 170px;
}

@media screen and (max-width: 1024px) {
  .common__wysiwyg-box {
    max-width: 80%;
  }
}

@media screen and (max-width: 769px) {
  .common__wysiwyg-box {
    max-width: 90%;
  }
}

@media screen and (max-width: 769px) {
  .common__wysiwyg-box {
    padding: 0px 20px;
  }
}

.common__wysiwyg-box h2 {
  position: relative;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
}

@media screen and (max-width: 769px) {
  .common__wysiwyg-box h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
  }
}

.common__wysiwyg-box h2::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  top: calc(50% - 30px);
  left: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 769px) {
  .common__wysiwyg-box h2::before {
    width: 40px;
    height: 40px;
    top: calc(50% - 20px);
  }
}

.common__wysiwyg-box p {
  text-align: justify;
  text-justify: inter-ideograph;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 600;
  color: #141414;
  margin-bottom: 50px;
}

.common__wysiwyg-box p em {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(0%, #f7e800));
  background: linear-gradient(transparent 80%, #f7e800 0%);
  display: inline;
  /*横に余白をつけたり、下にずらしたりするときは以下のpaddingを調整してください*/
  padding: 0 2px -4px;
}

.common__wysiwyg-box img {
  width: 100%;
  margin-bottom: 50px;
}

.contact-form {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form .req {
  color: white;
  font-size: 1.2rem;
  background-color: #a70707;
  padding: 1px 10px 3px 10px;
  border-radius: 5px;
  font-weight: 500;
}

.contact-form p {
  margin-bottom: 20px;
}

.contact-form textarea,
.contact-form input {
  font-size: 1.7rem;
  width: 100%;
  padding: 8px;
  line-height: 1.3;
  margin-top: 7px;
}

.contact-form input[type="checkbox"] {
  width: inherit;
}

.contact-form input[type="submit"] {
  margin-top: 40px;
  padding: 10px 0px;
}

footer .contact-box-bg {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  background-image: url(../img/bg-contact-box.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 68px 0px;
}

@media screen and (max-width: 769px) {
  footer .contact-box-bg {
    padding: 30px 0px 10px 0px;
  }
}

footer .contact-box-bg .contact-box {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  padding: 0px 50px;
  text-align: right;
}

@media screen and (max-width: 800px) {
  footer .contact-box-bg .contact-box {
    padding: 0px 20px;
  }
}

footer .contact-box-bg .contact-box .btn {
  position: relative;
  color: white;
  text-decoration: none;
  background-color: #a27c52;
  padding: 10px 41px 10px 60px;
  margin-left: 10px;
}

@media screen and (max-width: 769px) {
  footer .contact-box-bg .contact-box .btn {
    display: block;
    width: 90%;
    margin: 0px auto 16px auto;
  }
}

footer .contact-box-bg .contact-box .btn::before {
  content: "";
  background-image: url(../img/logo-mail.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 16px);
  left: 16px;
  width: 33px;
  height: 33px;
}

footer .footer-box-bg {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  background-color: black;
  padding-top: 108px;
}

@media screen and (max-width: 769px) {
  footer .footer-box-bg {
    padding-top: 40px;
  }
}

footer .footer-box-bg .logo-box {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  padding: 0px 50px;
  margin-bottom: 64px;
}

@media screen and (max-width: 800px) {
  footer .footer-box-bg .logo-box {
    padding: 0px 20px;
  }
}

@media screen and (max-width: 769px) {
  footer .footer-box-bg .logo-box {
    width: 50%;
    margin-bottom: 37px;
  }
}

@media screen and (max-width: 769px) {
  footer .footer-box-bg .logo-box img {
    padding-right: 14%;
  }
}

footer .footer-box-bg .link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  padding: 0px 50px;
  padding-bottom: 20px;
  font-size: 1.3rem;
}

@media screen and (max-width: 800px) {
  footer .footer-box-bg .link-box {
    padding: 0px 20px;
  }
}

footer .footer-box-bg .link-box .left {
  -ms-flex-preferred-size: calc(100% - 200px);
      flex-basis: calc(100% - 200px);
  max-width: calc(100% - 200px);
}

@media screen and (max-width: 769px) {
  footer .footer-box-bg .link-box .left {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
}

footer .footer-box-bg .link-box .left a {
  color: white;
  text-decoration: none;
  margin-right: 20px;
}

@media screen and (max-width: 769px) {
  footer .footer-box-bg .link-box .left a {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 24px;
  }
}

footer .footer-box-bg .link-box .right {
  -ms-flex-preferred-size: 200px;
      flex-basis: 200px;
  max-width: 200px;
  color: white;
  text-align: right;
}

@media screen and (max-width: 769px) {
  footer .footer-box-bg .link-box .right {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}
/*# sourceMappingURL=common.css.map */