@charset "utf-8";

/* リセットCSS */
*,
::before,
::after {
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a{
  color: inherit;
  text-decoration: none;
}

/* 基本スタイル */
body {
  font-family: sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 1;
  background-color: #fff;
}

img {
  max-width: 100%;
}

/* ヘッダースタイル */
.header-inner {
  max-width: 1200px;
  height: 110px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle-menu-button {
  display: none;
}

.header-left {
  display: flex;
  align-items: baseline;
}

.header-logo {
  /* display: block; */
  width: 160px;
}

.header-logo2 {
  /* display: block; */
  width: 80px;
}

.site-menu ul {
  display: flex;
}

.site-menu ul li {
  margin-left: 20px;
  margin-right: 20px;
  font-size: 1rem;
  font-weight: 600;
}

.site-menu ul li a {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 1.0rem;
}

.header-tel-block {
  text-align: right;
  line-height: 1.2;
}

.header-tel-block .number {
  font-family: "Noto Sans", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  line-height: 2.3rem;
  width: 15rem;
}

.header-tel-block img{
  vertical-align: -15%;
  max-width: 1.4rem;
}

.header-tel-block .txt{
  font-size: 1.0rem;
}
.header-tel-block .txt02{
  font-size: 0.8rem;
}



/* フッタースタイル */
.footer {
  background-color: #328e32;
  color: #fff;
}

.footer-inner {
  margin-left: 5%;
  margin-right: 5%;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 30px;
  padding-bottom: 15px; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* flex-direction: column; */
}

.footer-left {
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
}

.footer-company {
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1.4;
}

.footer-company02 {
  font-size: 1.2rem;
}

.footer-company03 {
  font-size: 1.1rem;
}

.footer-address {
  margin-top: 15px;
  line-height: 1.2;
  font-size: 0.9rem;
}

.footer-tel-block {
  line-height: 1.4;
}

.footer-tel-block .txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-tel-block .txt img {
  vertical-align: -40%;
  max-width: 2.2rem;
}

.footer-tel-block .number {
  font-family: "Noto Sans", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.footer-tel-block .time {
  font-size: 1.3rem;
}

.footer-contact-button {
  width: 300px;
  text-align: right;
}

.button10 {
  display: inline-block;
  background: linear-gradient(to right, #ffda6a 0%, #fff7de 45%, #ffda6a 100%);
  background-size: 200% auto;  
  color: #000;
  text-align:center;
  border-radius: 80px;
  padding: 15px 30px;
  text-decoration: none;
  transition: .5s;
  line-height: 1.2;
  font-size: 1.6em;
  font-weight: 600;
  font-family: "Sawarabi Mincho", serif;
  font-style: normal;
}
.button10:hover {
  color: #000;
  background-position: right center;
}
.button10 span {
  font-size: 1.4rem;
  font-weight: normal;
}
.footer-contact {
  margin-top: 0.5rem;
}
.button10 img {
  max-width: 1.4em;
  margin-right: 7px;
  vertical-align: middle;
}

.copyright {
  margin-top: 15px;
  text-align: center;
  margin-top: 3rem;
  background: #000;
  padding: 0.4rem 0;
  font-size: 0.8rem;
  font-weight: bold;
  color: #fff;
}

/* レスポンシブスタイル　 */
@media (max-width: 821px) {
  html{
    font-size: 14px;
  }
  .site-menu ul {
    display: block;
    text-align: center;
  }
  .site-menu li {
    margin-top: 20px;
  }
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    height: 60px;
    z-index: 10;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  }
  .header-inner {
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
  }

  .header-site-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    color: #328e32;
    background-color: #fff;
    padding-top: 30px;
    padding-bottom: 50px;
    display: none;
  }
  .header-site-menu ul li a {
    font-size: 2.0rem;
    font-weight: bold;
  }
  .header-site-menu.is-show{
    display: block;
  }
  .toggle-menu-button {
    display: block;
    width: 44px;
    height: 34px;
    background-image: url(../img/icon-menu.png);
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
    order: 4;
  }

  .header-logo {
    width: 90px;
    order: 1;
  }
  .header-logo2 {
    width: 40px;
    order: 2;
  }

  .header-tel-block {
    order: 3;
    text-align: left;
    width: 100px;
    }
   .header-tel-block img{
    width: 0.7rem;
    vertical-align: -10%;
   }
  .header-tel-block .number {
    font-size: 15px;
    line-height: 1.2;
  }
  .header-tel-block .txt {
    font-size: 10px;
  }
  .header-tel-block .txt02 {
    font-size: 8px;
  }

  .footer-inner {
    display: block;
    text-align: center;
  }
  .footer-company {
    font-weight: 400;
    display: flex;
    flex-direction: column;
  }
  .footer-company01 {
    order: 2;
    font-size: 0.9rem;
  }
  .footer-company02 span{
    display: inline-block;
    font-weight: 600;
  } 
  .footer-company03 {
    order: 3;
    font-weight: 600;
  }
  .footer-address {
  display: none;
  }
   .footer-tel-block {
  padding-top: 20px;
  }
  .footer-contact-button {
    display: none;
  }
}