@charset "UTF-8";

/*　▼commonに切り替わったら移動　*/
  
#container {
  background: var(--color-bg);
}

/* =====================
  search
===================== */

#search .search_submit {
  width: 100vw;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 calc(50% - 50vw);
  border-radius: 0;
  background: rgba(236, 245, 245, 0.95);
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  bottom: 0;
  z-index: 100;
}

#search .search_submit.is_static {
  background: transparent;
  box-shadow: none;
}

#search .search_submit_trigger {
  width: 100%;
  height: 1px;
  display: block;
}

/*-------------------------------------------*/
/*	PC
/*-------------------------------------------*/

@media screen and (min-width:900px) {

  /* =====================
    container
  ===================== */

  /*　▼commonに切り替わったら移動　*/  

  #wrapper {
    overflow: clip;
  }

  #container {
    padding: 60px 0 80px;
  }

  .inner {
    max-width: 90%;
  }
  
  /* =====================
    search
  ===================== */
  
  #search {
    padding: 0;
  }

  #search .search_submit {
    padding: 15px 20px;
  }

  #search .search_submit button {
    width: 260px;
    height: 55px;
  }

  #search .search_more {
    margin-bottom: 40px;
  }

}

/*-------------------------------------------*/
/*	SP
/*-------------------------------------------*/

@media screen and (max-width:899px) {

  /* =====================
    container
  ===================== */

  #container {
    padding-bottom: 0;
  }

  /* =====================
    search
  ===================== */

  #search {
    padding-bottom: 0;
  }

  #search .search_submit {
    padding: 10px 20px calc(10px + env(safe-area-inset-bottom));
  }

  #search .search_submit button {
    width: 200px;
    height: 50px;
  }

  #search .search_more {
    margin-bottom: 30px;
  }

}
