@charset "utf-8";

@import url('//fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap');

html {
  font-size: 62.5%;
}
@media screen and (min-width:768px){
  html {
    /* タブレット端末用*/
    font-size: 11.66px;
  }
}

@media screen and (min-width:1024px){
  html {
    /* デスクトップ端末用*/
    font-size: 13.33px;
  }
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  /* font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif; */
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  color: #333;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-feature-settings: 'palt' 1;
  font-feature-settings: 'palt' 1;
  letter-spacing: .1em;
}
* {
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a:hover {
  opacity: .8;
}

.container {
  max-width: 1020px;
  padding: 0 10px;
  margin: 0 auto;
}

.sp {
  display: none;
}
@media(max-width: 599px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/* ----------------
ヘッダー
----------------- */
#header {
  position: relative;
  padding: 10px 0;
  box-shadow: 0px 1px 1.98px 0.02px rgba(106, 106, 106, 0.3);
  z-index: 1;
}
.header-inner {
  display: flex;
  align-items: center;
}
#header .logo {
  max-width: 250px;
  margin: 0;
}
.logo-img {
  display: block;
}
#header .tel-number {
  font-size: 2.2rem;
  margin: 0;
  padding-right: 15px;
}
#header .tel-number::before {
  content: "";
  display: inline-block;
  background: url(../images/tel-icon-header.png) no-repeat;
  background-size: contain;
  background-position: center;
  min-width: 26px;
  width: 26px;
  height: 26px;
  margin: 2px 2px 0 0;
}
#header .contact-box__in {
  max-width: 480px;
  width: 100%;
  margin: 0;
}
#header .btn {
  font-size: 1.2rem;
  padding: 12px 0px;
}
#header .btn-tag {
  font-size: .8rem;
  bottom: -8px;
}
.header-contact {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
  margin-left: auto;
}
.header-contact.sp {
  display: none;
}
.sim-icon::before {
  content: "";
  display: inline-block;
  background: url(../images/calculator-icon-header.png) no-repeat;
  background-size: contain;
  background-position: center;
  min-width: 22px;
  width: 22px;
  height: 26px;
}
.btn-box .btn .sim-icon {
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 599px) {
  .btn-box .btn .sim-icon {
    display: none;
  }
}
.btn-box .btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media(max-width: 991px) {
  #header .logo {
      max-width: 200px;
  }
  #header .contact-box__in {
    max-width: 480px;
  }
}
@media(max-width:767px) {
  .header-contact.sp {
    display: block;
  }
  .header-contact.pc {
    display: none;
  }
  .header-contact__box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .header-contact__link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
  }
  .header-icon  {
    border-radius: 6px;
    margin-left: 5px;
    width: 36px;
    height: 36px;
  }
  /* .tel-icon {
    background: #24b87f;
  } */
  .mail-icon {
    background: #ff9822;
  }
  .calc-icon {
    background: #fd7734;
  }
}
@media(max-width: 599px) {
  #header .logo {
    max-width: 180px;
  }
}

/* ----------------
フッター
----------------- */
#footer {
  background: #15a88a;
  padding: 40px 0 0 0;
}
.footer-logo {
  max-width: 260px;
  /* margin: 0 auto; */
}
.footer-box {
  padding: 20px 0 0 0;
}
.footer-text p {
  color: #fff;
  font-size: 1.2rem;
}
.tel-link a {
  color: #fff;
  text-decoration: none;
}
#footer .tel-number {
  font-size: 3.2rem;
  justify-content: flex-start;
  margin: 25px 0 5px 0;
  color: #fff;
}
#footer .tel-number::before {
  min-width: 40px;
  width: 40px;
  height: 40px;
}
#footer .tel-hour {
  color: #fff;
  font-size: 1.3rem;
  text-align: left;
  margin: 0;
}
#footer .contact-box__in {
  padding: 20px 0;
  margin: 0;
  max-width: 500px;
  width: 100%;
}
#footer .btn {
  font-size: 1.4rem;
}
.footer-nav {
  margin: 40px 0 0 0;
  padding: 20px 0 20px 0;
  border-top: solid 1px #7aca9e;
}
.footer-nav__list li {
  padding: 0 1em;
}
.footer-nav__list li a {
  color: #fff;
}
.copyright {
  letter-spacing: 0;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  background: #0e9f90;
  padding: 10px 0;
}
@media(min-width: 600px) {
  .footer-inner {
    display: flex;
    justify-content: space-between;
  }
  .footer-contact {
    width: 49%;
  }
  .footer-box {
    width: 42%;
    padding: 0;
  }
  #footer .btn-tag {
    font-size: 1.0rem;
  }
  .footer-text p {
    font-size: 1.0rem;
  }
  .footer-nav__list {
    display: flex;
    justify-content: center;
  }
  .footer-nav__list li:not(:last-of-type) {
    border-right: solid 1px #fff;
  }
}
@media(max-width: 599px) {
  .footer-logo {
    margin: 0 auto;
  }
  #footer .tel-number {
    justify-content: center;
  }
  #footer .tel-hour {
    text-align: center;
  }
  #footer .btn {
    font-size: 3.9vw;
  }
  .footer-nav__list li {
    padding: 0 0 10px 0;
  }
}


/* お問い合わせボタン */
.contact-box {
  position: relative;
  background: #fff;
  margin: -10px 0 0 0;
  border-radius: 10px 10px 0 0;
  padding: 60px 0 40px;
}
.contact-box__in {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}
.btn-box {
  position: relative;
  width: 49%;
}
.btn {
  display: block;
  padding: 20px 0px;
  font-size: 2rem;
  background: #f1f1f1;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  text-align: center;
}
.btn-primary {
  background: #fd7734;
}
.btn-secondary {
  background: #ff9822;
}
.btn-tag {
  background: #f2f384;
  display: inline-block;
  border-radius: 20px;
  font-size: 1.2rem;
  padding: 0 1em;
  position: absolute;
  bottom: -12px;
  right: 5px;
}
@media(max-width: 599px) {
  .contact-box {
    padding: 30px 0 20px;
  }
  .btn {
    font-size: 3.9vw;
  }
  .btn-tag {
    bottom: -10px;
  }
}