*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

body {
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 400;
  word-break: break-all;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  color: #344939;
}

a {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

p {
  line-height: 1.6;
  text-align: justify
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2
}

ul>li, ol>li {
  color: #344939;
  line-height: 1.4
}

input[type=submit], input[type=reset] {
  cursor: pointer
}

input, textarea {
  font-family: Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif
}

/*******
common
***************/

.contentArea {
  padding: 74px 0 408px;
  position: relative;
}

.contentAreaBg{
  content: '';
  position: absolute;
  width: 100%;
  height: 100vh;
  right: 50%;
  top: 0;
  -webkit-transform: translate(50%, 0%);
  transform: translate(50%, 0%);
  background-image: url(../img/common/bg_pattern.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.common-box {
  max-width: 955px;
  margin: 0 auto;
}

.common-hl {
  color: #344939;
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-bottom: 18px;
  letter-spacing: 6px;
}

.common-hl::after {
  content: '';
  position: absolute;
  right: 50%;
  bottom: 0;
  -webkit-transform: translate(50%, 0%);
  transform: translate(50%, 0%);
  width: 240px;
  height: 10px;
  background: url(../img/common/border_hl.png) no-repeat center;
  background-size: 240px auto;
}

.common-kv {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 105px 15px;
  text-align: center;
}

.common-kv__main {
  font-size: 35px;
  font-weight: 600;
  font-family: 'Zen Maru Gothic', sans-serif;
  text-align: center;
  display: inline-block;
  padding: 43px 10px;
  min-width: 480px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  line-height: 1;
  letter-spacing: 3px;
}

.common-btn {
  background-color: #30bb9e;
  display: inline-block;
  max-width: 420px;
  width: 100%;
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 30px 10px;
  font-size: 20px;
  font-weight: 800;
  border-radius: 40px;
  letter-spacing: 2px;
}

.header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  width: 234px;
  margin-left: 40px;
}

.header-hamburger .menu-btn {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.header-hamburger .menu-btn span,
.header-hamburger .menu-btn span:before,
.header-hamburger .menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #5db89f;
  position: absolute;
}

.header-hamburger .menu-btn span:before {
  bottom: 8px;
}

.header-hamburger .menu-btn span:after {
  top: 8px;
}

.header-hamburger #menu-btn-check {
  display: none;
}

.header-hamburger #menu-btn-check:checked~.menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}

.header-hamburger #menu-btn-check:checked~.menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

.header-hamburger #menu-btn-check:checked~.menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

.header-navi {
  display: flex;
  justify-content: space-between;
  width: 610px;
  margin: 0 22px 0 auto;
}

.header-navi li a {
  color: #344939;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  font-family: 'Zen Maru Gothic', sans-serif;
  letter-spacing: 1.5px;
}

.header-navi li a:hover {
  color: #5db89f;
}

.header-navi li a.current {
  color: #5db89f;
}

.header-navi-contact {
  max-width: 370px;
  margin: 50px auto 0;
}

.header-navi-contact__lead {
  text-align: center;
  font-size: 14px;
  color: #fff;
  font-weight: 800;
}

.header-navi li a.header-navi-contact__tel {
  background-color: #fff;
  color: #f56701;
  font-weight: 900;
  font-size: 25px;
  border-radius: 65px;
  text-align: center;
  padding: 15px 10px 15px 30px;
  display: block;
  margin-top: 10px;
  font-family: 'M PLUS 1p', sans-serif;
  position: relative;
}

.header-navi-contact__tel::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 50%;
  width: 30px;
  height: 30px;
  background: url(../img/common/icon/tel.svg) no-repeat center;
  background-size: 30px auto;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.header-navi-contact__time {
  font-size: 14px;
  font-weight: 800;
  margin-top: 10px;
  text-align: center;
  color: #fff;
}

.header-contact {
  background-color: #ffea9c;
  padding: 38px 37px 26px 25px;
}

.header-contact__inner {
  width: 263px;
}

.footer {
  background-color: #e5f2f2;
  padding-top: 100px;
}

.footer-contact {
  max-width: 670px;
  margin: 0 auto;
}

.footer-contact__lead {
  letter-spacing: 1.4px;
  margin-top: 33px;
  text-align: center;
  line-height: 1.9;
}

.footer-contact__tel {
  background-color: #f56701;
  color: #fff;
  font-weight: 800;
  font-size: 40px;
  border-radius: 65px;
  text-align: center;
  padding: 20px 10px;
  display: block;
  margin: 36px auto 0;
  max-width: 450px;
}

.footer-contact__time {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-top: 10px;
  text-align: center;
  color: #f56701;
}

.footer-info {
  background-color: #30bb9e;
  margin-top: 95px;
  padding: 20px 0;
}

.footer-info__inner {
  display: flex;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-info__logo {
  width: 152px;
}

.footer-info__address {
  color: #fff;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-left: 46px;
  letter-spacing: 4px;
  line-height: 1;
}

.footer-info__privacy {
  color: #fff;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  margin-left: auto;
  letter-spacing: 3px;
}


/*******
 responsive
***************/
@media print, screen and (min-width: 800px) {
  body {
    min-width: 1300px;
  }

  a:not(.hn) {
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out
  }

  a:not(.hn):hover {
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    opacity: .7
  }

  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}

@media only screen and (max-width: 799px) {
  body {
    margin-top: 60px;
  }

  .contentArea {
    padding: 40px 15px 200px;
  }

  .common-hl {
    font-size: 23px;
    letter-spacing: 3px;
  }

  .common-hl::after {
    width: 180px;
    background-size: 180px auto;
  }

  .common-kv {
    padding: 60px 15px;
  }

  .common-kv__main {
    font-size: 25px;
    padding: 30px 10px;
    min-width: auto;
    max-width: 350px;
    width: 100%;
    letter-spacing: 1px;
  }

  .common-btn {
    max-width: 350px;
    padding: 20px 10px;
    font-size: 18px;
    letter-spacing: 1px;
  }

  .header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 100;
    background-color: #fff;
  }

  .header-logo {
    width: 150px;
    margin-left: 20px;
  }

  .header-navi {
    width: 100%;
    height: calc(100% - 60px);
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 80;
    background-color: #5db89f;
    padding: 60px 15px 0;
    display: none;
  }

  .header-navi li {
    list-style: none;
  }

  .header-navi li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 17px 10px;
    text-align: center;
  }

  .header-navi li a:hover {
    color: #fff;
  }

  .header-navi li a.current {
    color: #fff;
  }

  .footer {
    padding-top: 50px;
  }

  .footer-contact {
    padding: 0 15px;
  }

  .footer-contact__lead {
    letter-spacing: 0;
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
  }

  .footer-contact__tel {
    font-size: 28px;
    text-align: center;
    padding: 20px 10px;
    margin-top: 15px;
    text-decoration: none;
  }

  .footer-contact__time {
    letter-spacing: 0;
    font-size: 16px;
  }

  .footer-info {
    margin-top: 50px;
    padding: 20px 0;
  }

  .footer-info__inner {
    display: block;
  }

  .footer-info__logo {
    display: block;
    margin: 0 auto;
  }

  .footer-info__address {
    font-size: 14px;
    margin: 20px 0 0;
    text-align: center;
    letter-spacing: 2px;
  }

  .footer-info__privacy {
    display: block;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 20px 0 0;
    font-weight: 300;
  }
}

@media only screen and (min-width: 560px)and (max-width: 799px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}