@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&subset=japanese');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
* {
  font-family: "Noto Sans JP","Hiragino Kaku Gothic ProN","Meiryo",sans-serif;
  box-sizing: border-box;
}
:root {
  --text-color: #333;
  --green: #1cb569;
  --orange: #f2a215;
  --shadow: 0 0 4px #aaa;
  --bg-color: #f5f5f5;
  --bg-main: #f5f5f5;
  --border-color: rgb(218, 218, 218);
}
html {
  font-size: 62.5%; /* 1rem = 10px */
  color: var(--text-color);
}
body {
  margin: 0;
  background: #f5f5f5;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}
table {
  border-collapse: collapse;
}
.material-icons {
  padding-top: 0.1em;
  font-size: 1.5em;
}
.align-center {
  display: flex;
  align-items: center;
}

.title {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  height: 60px;
  padding-left: 60px;
  background-repeat: no-repeat;
  background-size: auto 60px;
  background-position: left bottom;
  font-size: clamp(2rem, 2.5vw, 3.2rem);
  font-weight: bold;
  line-height: 1.2;
}
.searchtitle.title{
  padding-left:0;
}
  .title>span {
    display: inline-block;
    width: 100%;
    font-size: 1.6rem;
  }
.search_count{
  font-weight: bold;
}
.search_count span{
  color: var(--orange);
}
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  max-width: 450px;
  height: 3.4em;
  margin: 20px auto;
  background: var(--green);
  border: none;
  border-radius: 1.6em;
  box-shadow: var(--shadow);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 10px 40px;
}
  .header button{
    display: none;
  }
  .menu-sp{
    display: none;
  }
  .header__logo {
    display: block;
    height: 100%;
    object-fit: contain;
  }
  .header__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 60%;
    max-width: 700px;
    border: none;
  }
    .header__item {
      color: var(--text-color);
      text-align: center;
      font-weight: bold;
      text-decoration: none;
    }
  .header__call {
    width: 15%;
    min-width: 18em;
    text-align: center;
  }
    .header__tel {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      font-size: 2.4rem;
      font-weight: bold;
    }
    .header__time {
      font-size: 1.4rem;
    }

.search-sp{
  display: none;
}

@media screen and (max-width: 391px) {
  .inactive {
    right: -391px !important;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
  }
    .header button{
      display: block;
      background-color: transparent;
      border: 0px;
      width: 45px;
      height: 45px;
      border-radius: 10px;
      position: relative;
      cursor: pointer;
    }
      .header button .navToggle_bar::before{
        top: 10px;
        left: 0 !important;
        content: '';
      }
      .header button .navToggle_bar::after{
        top: -10px;
        left: 0 !important;
        content: '';
      }
      .header button .navToggle_bar::before,
      .header button .navToggle_bar::after,
      .header button .navToggle_bar{
        display: block;
        position: absolute;
        left: 8px;
        width: 30px;
        height: 4px;
        -webkit-transition: .35s ease-in-out;
        -moz-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
        background-color: var(--orange);
        border-radius: 5px;
      }

      .btn-search{
        background: #e9e9e9;
        padding: 10px;
        margin: 5px 30px;
        border-radius: 5px;
        /* color: white; */
        border: none;
        width: 100%;
      }

    .menu-sp{
      display: block;
      width: 100%;
      height: 100%;
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      transition: right .1s cubic-bezier(0.820, 0.085, 0.395, 0.895);
      z-index: 98;
    }
    .inactive {
      right: -767px;
    }
    .menu-sp-wrapper{
      background: rgb(77 77 77 / 55%);
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 100vh;
      width: 100%;
      z-index: 99;
    }

    .menu-sp-content-head{
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .menu-sp-content-head .navToggle_bar{
      height: 0 !important;
    }

    .menu-sp-content-head .navToggle_bar::before{
      transform: rotate(45deg);
      top: 50% !important;
    }

    .menu-sp-content-head .navToggle_bar::after{
      transform: rotate(-45deg);
      top: 50% !important;
    }

    .menu-sp-content{
      display: flex;
      flex-direction: column;
      background-color: white;
      position: absolute;
      top: 0;
      right: 0;
      height: 100vh;
      width: 75%;
      z-index: 100;
    }

    .menu-sp-content>a{
      font-size: 22px;
      border-bottom: 2px solid var(--orange);
      padding: 20px;
      text-align: start;
      font-weight: normal !important;
    }

    .menu-sp-content>div{
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      padding: 10px 30px;
    }

    .menu-sp-content>div>a{
      background-color: var(--green);
      border-radius: 5px;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 6px;
      text-decoration: none;
      width: 100%;
    }

    .menu-sp-content>div>a>div:first-of-type{
      font-size: 22px;
      display: flex;
      align-items: center;
    }

    .menu-sp-content>div>p{
      font-size: 16px;
    }


    .header .open-menu{
      display: block !important;
      position: fixed;
    }

    .header--top {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
    }
    .header__logo {
      display: block;
      height: 100%;
      object-fit: contain;
    }
    .header__list {
      display: none;
    }
    .header__call {
      display: none;
    }

    .title{
      background-size: 40px 46px !important;
      margin-top: 10px !important;
    }

  .search-sp{
    /* display: block; */
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    padding: 20px;
  }

  .open-search-sp{
    display: block;
  }

  .search-sp-title{
    font-size: 18px;
  }

  .open-search-sp .search-sp-content .search_sidebar{
    display: block !important;
  } 

  .open-search-sp .search-sp-content .search_sidebar-title{
    display: none !important;
  }

  .open-search-sp .search_sidebar-content{
    border: none;
    padding: 15px 0;
  }
}

.footer {
  clip-path: ellipse(90% 100% at 50% 100%);
  width: 100%;
  margin-top: 60px;
  background: var(--orange);
  color: #fff;
}
  .footer__inner {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 60px;
  }
    .footer__text {
      padding: 1.2em 0.6em;
      border-bottom: solid 2px #fff;
      text-align: center;
      font-weight: bold;
      line-height: 1.8;
    }
    .footer__head {
      width: 90%;
      margin-top: 1.2em;
      font-size: 3.2rem;
    }
    .footer__list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding: 1.4em 1.4em 2.8em;
    }
      .footer__block {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 1.2em);
        gap: 1.2em;
      }
        .footer__item {
          display: inline-block;
          color: #fff;
          font-weight: bold;
          text-decoration: none;
        }
    .footer__copyright {
      padding: 0.2em 0;
      text-align: center;
    }

.close-icon{
  position: relative;
  cursor: pointer;
}

.close-icon::after,
.close-icon::before{
  content: "";
  width: 2px;
  height: 20px;
  background-color: #333;
  position: absolute;
  border-radius: 10px;    
  left: -10px;
  top: -10px;
}

.close-icon::after{
  transform: rotate(45deg);
}

.close-icon::before{
  transform: rotate(-45deg);
}
