@charset "UTF-8";

/**
* search wrapper
**/
.search_result {
  --search-side-width: 280px;
  min-height: 1000px;
  display: flex;
  gap: 40px 30px
}

/* ドロワーメニューモード（カタログで使用中） */
.search_result.mode--drawer_on_sp {}

@media (max-width: 1300px) {
  .search_result {
    --search-side-width: 260px;
  }
}

@media (max-width: 1200px) {
  .search_result {
    --search-side-width: 240px;
  }
}

@media (max-width: 959px) {
  .search_result {
    --search-side-width: 100%;
    min-height: auto;
    flex-wrap: wrap;
    gap: 10px;
  }

  /* ドロワーメニューモード（カタログで使用中） */
  .search_result.mode--drawer_on_sp {
    --search-side-width: 240px;
    display: block;
  }
}

/**
* catalogSearch
**/
@media only screen and (max-width: 767px) {
  #catalog #footer {
    padding-bottom: 50px
  }

  #catalog #page_top {
    bottom: 58px;
  }
}

.catalogSearch {
  margin-bottom: 2.5rem
}

.catalogSearch-tab {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
}

.catalogSearch-tab__label {
  flex: 1 1;
  order: -1;
  padding: 1.5rem .5rem;
  background: #f6f4f3;
  border-radius: 8px 8px 0 0;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  cursor: pointer;
}

.catalogSearch-tab__input {
  display: none;
}

.catalogSearch__inner {
  display: none;
  width: 100%;
  padding: 4rem 5vw;
  background-color: #f6f4f3;
  border: 2px solid var(--sub_c);
}

.catalogSearch-tab__label:hover,
.catalogSearch-tab__label:has(:checked) {
  background-color: var(--sub_c);
  color: #fff;
}

.catalogSearch-tab__label:has(:checked):hover {
  opacity: 1;
  cursor: default
}

.catalogSearch-tab__label:has(:checked)+div {
  display: block;
}

.catalogSearch__word {
  max-width: 400px;
  margin: 0 auto;
}

.catalogSearch__word .search-field {
  width: 100%;
  height: 50px;
  margin: 0;
  padding: 0 8px;
  background: #fff;
  border: 2px solid var(--sub_c);
  border-radius: 8px;
  line-height: 1;
}

.catalogSearch__submit {
  max-width: 400px;
  margin: 2.5rem auto 0;
}

.catalogSearch__word+.catalogSearch__submit {
  margin-top: 1rem
}

@media (min-width: 768px) {
  .catalogSearch__makerList {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }

  .catalogSearch__makerList-block {
    width: calc((100% / 2) - 10px)
  }
}

.catalogSearch__maker-accordion {
  max-width: 500px;
  margin-bottom: 7px;
  border-bottom: 1px solid var(--sub_c);
}

.catalogSearch__maker-accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1rem 2rem;
  font-weight: 600;
  cursor: pointer;
}

.catalogSearch__maker-accordion summary::-webkit-details-marker {
  display: none;
}

.catalogSearch__maker-accordion summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 2px solid var(--sub_c);
  border-right: 2px solid var(--sub_c);
  content: '';
  transition: transform .3s;
}

.catalogSearch__maker-accordion[open] summary::after {
  transform: rotate(225deg);
}

.catalogSearch__maker-accordion .makerName {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 2em 1.5em;
  color: #333333;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform .5s, opacity .5s;
}

.catalogSearch__maker-accordion[open] .makerName {
  transform: none;
  opacity: 1;
}

.catalogSearch__cat {
  font-size: 1.5rem;
  display: flex;
  gap: 5vw;
}

.catalogSearch__cat ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

@media (max-width: 767px) {
  .catalogSearch-tab__label {
    padding: .6rem .1rem .4rem;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .catalogSearch__inner {
    padding: 1rem 3vw;
  }

  .catalogSearch__cat {
    flex-direction: column;
    gap: 0
  }

  .catalogSearch__word .search-field {
    height: 40px
  }

  .catalogSearch__submit {
    margin-top: 1rem
  }

  .catalogSearch__word+.catalogSearch__submit {
    margin-top: .5rem
  }
}

/**
* catalogResult
**/
.catalogResult {}

.catalogResult-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.catalogResult-head .paging {
  margin: 0;
  padding: 0;
  text-align: right;
}

.catalogResult-head__checkbox {
  padding: 0;
  margin: 0;
  border: none;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  gap: .5em 1rem;
}

.catalogResult-head__checkbox label {
  display: flex;
  align-items: center;
  gap: 0 .4rem;
  position: relative;
  cursor: pointer;
}

.catalogResult-head__checkbox label::before {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 2px solid var(--sub_c);
  content: '';
}

.catalogResult-head__checkbox label:has(:checked)::after {
  position: absolute;
  top: 5px;
  left: 7px;
  transform: rotate(45deg);
  width: 5px;
  height: 10px;
  border: solid var(--main_c);
  border-width: 0 3px 3px 0;
  content: '';
}

.catalogResult-head__checkbox input {
  display: none;
}

@media (max-width: 767px) {
  .catalogResult-head {
    flex-wrap: wrap;
    gap: 12px 0;
  }
}

/**
* wordSearch
**/
.wordSearch {
  padding: 2rem 0 8rem
}

.wordSearch-head {}

.wordSearch-head-form {
  width: 100%;
  padding: 2rem 2vw;
  background-color: #f6f4f3;
  border-radius: 8px;
}

.wordSearch-head-form form {
  width: 100%;
  max-width: 640px;
  height: 55px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.wordSearch-head-form__input {
  width: calc(100% - 80px);
}

.wordSearch-head-form__input input {
  width: 100%;
  height: 55px;
  padding: 0 1rem;
  border: 2px solid var(--sub_c);
  border-radius: 8px 0 0 8px;
}

.wordSearch-head-form__btn {
  width: 80px;
}

.wordSearch-head-form__btn button {
  width: 100%;
  height: 55px;
  background-color: var(--sub_c);
  border: none;
  border-radius: 0 8px 8px 0;
  color: #fff;
}

.wordSearchCts-tab {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
}

.wordSearchCts-tab__label {
  flex: 1 1;
  order: -1;
  padding: 1.5rem .5rem;
  background: #f6f4f3;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  position: relative;
  cursor: pointer;
}

.wordSearchCts-tab__input {
  display: none;
}

.wordSearchCts__inner {
  display: none;
  width: 100%;
  margin-top: 2rem;
}

.wordSearchCts-tab__label:hover,
.wordSearchCts-tab__label:has(:checked) {
  background-color: var(--main_c);
  color: #fff;
}

.wordSearchCts-tab__label:has(:checked):hover {
  opacity: 1;
  cursor: default
}

.wordSearchCts-tab__label:has(:checked)+div {
  display: block;
}

.wordSearchCts-tab__label:has(:checked)::before {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 9px;
  background-color: var(--main_c);
  content: '';
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@media (max-width: 767px) {
  .wordSearch-head-form {
    width: 100%;
    padding: 1rem;
  }

  .wordSearchCts-tab__label {
    padding: .6rem .1rem;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .wordSearchCts__inner {}
}

.wordSearchCts .column_list_wrap {
  border-top: 1px solid #efeae0;
  border-bottom: 1px solid #efeae0
}

.wordSearchCts .column_wrap .column_text .column_title {
  font-size: 2rem;
}

.wordSearchCts .column_company {
  display: block;
  color: #a09a93;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.2ex;
  width: 100%;
  margin: 8px 0 0;
  order: 10;
}

.wordSearchCts .count_txt {
  order: 11
}

@media (max-width: 767px) {
  .wordSearchCts .column_wrap .column_text .column_title {
    font-size: 1.5rem;
  }
}

/**
* search main
**/
#main.search_main_wrap {
  width: calc(100% - var(--search-side-width));
  order: 2;
}

@media (max-width: 959px) {
  #main.search_main_wrap {
    width: 100%;
    padding: 0;
  }
}

/**
* search left side
**/
@media (min-width: 960px) {
  .search_left_wrap[id="side"] {
    max-width: none;
    width: var(--search-side-width);
    position: relative;
    order: 1;
  }
}

@media (max-width: 959px) {
  .search_left_wrap[id="side"] {
    width: var(--search-side-width);
    padding: 0;
  }

  .search_left_wrap[data-search-items] {
    /* htmlから data-search-items を外すと通常バージョン */
    background: #fff;
    position: fixed;
    top: var(--site-header-height);
    right: 0;
    bottom: 72px;
    left: 0;
    z-index: 3000;
    width: auto;
    height: auto !important;
    padding: 16px;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    transition: opacity 0.8s ease;
    opacity: 0;
    pointer-events: none;
  }

  .search_left_wrap.active[data-search-items] {
    pointer-events: auto;
    opacity: 1;
  }

  /* 元のsubmitを消す */
  .search_left_wrap[data-search-items] .search_item_submit {
    display: none;
  }

  .search_left_wrap[data-search-items] .word_search .search-field {
    width: 100%;
  }

  .search_left_wrap[data-search-items] .word_search .search-submit {
    display: none;
  }
}

/**
* search left side drawer menu
* SP表示でドロワーメニュー
**/
/* PC、SP　基本スタイル */
/* button */
.drawer_on_sp__switch {
  position: absolute;
  opacity: 0 !important;
}

.drawer_on_sp__open {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, 1);
  width: 48px;
  height: 9em;
  aspect-ratio: 1 / 1;
  position: relative;
}

.drawer_on_sp__open P {
  color: #000;
  writing-mode: vertical-rl;
}

.drawer_on_sp__open .icon_off {
  position: relative;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.drawer_on_sp__open .icon_on {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* overlay */
.drawer_on_sp__overlay {
  background: rgba(255, 255, 255, 0);
  position: fixed;
  top: var(--site-header-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20000;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.drawer_on_sp__open:focus,
.drawer_on_sp__overlay:focus,
.drawer_on_sp__open:hover,
.drawer_on_sp__overlay:hover {
  opacity: 1;
}

/* PC　表示状態、表示位置 */
@media (min-width: 960px) {
  .drawer_on_sp__switch {
    display: none;
  }

  .drawer_on_sp__open {
    display: none;
  }

  .drawer_on_sp__overlay {
    display: none;
  }
}

/* SP　表示状態、表示位置 */
@media (max-width: 959px) {

  /* button */
  .drawer_on_sp__open {
    /* box-shadow: 12px 0 18px 0 rgba(0,0,0,0.24); */
    box-shadow: 2px 0 2px 0 rgba(0, 0, 0, 0.24);
    background: rgba(255, 255, 255, 1);
    position: fixed;
    top: calc(50% + var(--site-header-height));
    left: 0;
    z-index: 30000;
    transform: translate(0, -50%);
    transition:
      box-shadow 0.4s ease, background 0.4s ease, left 0.4s ease;
  }

  .search_result.mode--drawer_on_sp .drawer_on_sp__switch:checked~.drawer_on_sp__open {
    left: var(--search-side-width);
    box-shadow: 12px 0 18px 0 rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.9);
  }

  .search_result.mode--drawer_on_sp .drawer_on_sp__switch:checked~.drawer_on_sp__open .icon_off {
    opacity: 0;
  }

  .search_result.mode--drawer_on_sp .drawer_on_sp__switch:checked~.drawer_on_sp__open .icon_on {
    opacity: 1;
  }

  /* overlay */
  .drawer_on_sp__overlay {
    opacity: 0;
    pointer-events: none;
  }

  .search_result.mode--drawer_on_sp .drawer_on_sp__switch:checked~.drawer_on_sp__overlay {
    opacity: 1;
    pointer-events: auto;
  }

  /* side */
  .search_result.mode--drawer_on_sp .search_left_wrap[id="side"] {
    box-shadow: 12px 0 24px 0 rgba(0, 0, 0, 0.04);
    background-color: rgba(255, 255, 255, 0.9);
    width: var(--search-side-width);
    padding: 12px 12px 12px 0;
    position: fixed;
    top: var(--site-header-height);
    bottom: 0;
    left: calc(var(--search-side-width) * -1);
    z-index: 20000;
    transition: left 0.4s ease;
    overflow-x: hidden;
    overflow-y: auto;
    /*pointer-events: none;*/
  }

  .search_result.mode--drawer_on_sp .drawer_on_sp__switch:checked~.search_left_wrap[id="side"] {
    left: 0;
    /*pointer-events: auto;*/
  }
}

@media (max-width: 767px) {
  .drawer_on_sp__open {
    display: none
  }
}

/************************ 汎用または共通（カテゴリ） ************************/
.search_left_banner {
  display: none;
  padding: 32px 0 0;
}

@media (max-width: 1200px) {
  .search_left_banner {
    display: block;
  }
}

@media (max-width: 959px) {
  .search_left_banner {
    display: none;
  }
}

.search_main-cat__wrap {
  margin-bottom: 1rem;
  background: #f6f4f3;
  font-weight: 700;
  display: flex;
}

.search_main-cat__ttl {
  width: 140px;
  color: #9a8165;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search_main-cat__list {
  padding: 10px;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

@media (max-width: 767px) {
  .search_main-cat__wrap {
    flex-wrap: wrap
  }

  .search_main-cat__ttl,
  .search_main-cat__list {
    width: 100%
  }

  .search_main-cat__ttl {
    padding: 6px 1px 4px;
    border-bottom: 1px dashed;
    font-size: 1.2rem;
  }
}

/**
* search_item
**/
.search_item {
  background-color: #fff;
  border: 1px solid #d2d0cd;
  border-radius: 8px 8px 0 0;
  padding: 0;
  margin: 0 0 14px;
  overflow: hidden;
  position: relative;
}

.search_item_head {
  background-color: var(--main_c);
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 10px 0;
  margin: 0;
}

.search_item_head span {
  display: block;
  font-size: 1.2rem
}

.search_item_head .step_number {
  display: none;
}

@media (max-width: 767px) {
  .search_item_head {
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.1ex;
    padding: 8px 12px;
  }
}

.search_item_open {
  display: none
}

/* search_item_area */
.search_item_area_btn {
  padding: 12px;
  text-align: center;
}

.search_item_area_btn .btn {
  max-width: 200px;
  height: 40px;
  margin: 0;
}

/* checkbox_list */
.checkbox_list_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0 16px 16px;
}

@media (max-width: 767px) {
  .checkbox_list_area {
    padding: 0 16px 16px;
  }
}

/* if search box is full width */
/*
@media (min-width: 768px){
	.checkbox_list_area > li {width: 8.33%;}
}
@media (min-width: 960px){
	.checkbox_list_area > li {width: 8.33%;}
}
@media (min-width: 1200px){
	.checkbox_list_area > li {width: 8.33%;}
}
*/
/* if search box is right side */
@media (min-width: 768px) {
  .checkbox_list_area>li {
    width: 33.33%;
  }
}

@media (min-width: 960px) {
  .checkbox_list_area>li {
    width: 33.33%;
  }
}

@media (min-width: 1200px) {
  .checkbox_list_area>li {
    width: 33.33%;
  }
}

.checkbox_list_area>li input {
  display: none;
  float: left;
  margin-top: 6px;
}

.checkbox_list_area>li a {
  display: block;
  position: relative;
  color: #666;
  font-size: 1.2rem;
  padding: 4px 0 4px 12px;
}

.checkbox_list_area>li a::after {
  content: "";
  top: 0.833em;
  left: 0;
  width: 0.25em;
  height: 0.25em;
  color: #666;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.2em;
  display: block;
  position: absolute;
  border-top: 2px solid var(--main_c);
  border-right: 2px solid var(--main_c);
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkbox_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.checkbox_list>li {
  width: 100%;
  margin: .2em 0;
}

.checkbox_list_indent {
  margin-left: 1em;
}

@media (min-width: 960px) {
  .checkbox_list>li {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .checkbox_list>li {
    width: 100%;
  }
}

.checkbox_list>li ul {}

.checkbox_list>li.checkbox_all {
  margin-left: -2.4em;
}

@media (max-width: 767px) {
  .checkbox_list {}

  .checkbox_list>li {}

  .checkbox_list>li ul {}

  /* checkbox_list_area */
  .checkbox_list_area>li input {
    margin-top: 14px;
    margin-right: 8px;
  }

  .checkbox_list_area>li a {
    padding: 8px 0 8px 12px;
    margin-right: 16px;
    font-size: 1.2rem;
  }

  .checkbox_list_area>li a::after {
    content: "";
    top: 50%;
    left: 0;
    width: 0.25em;
    height: 0.25em;
    color: #666;
    font-size: 1em;
    font-weight: 700;
    line-height: 1.2em;
    display: block;
    position: absolute;
    border-top: 2px solid var(--main_c);
    border-right: 2px solid var(--main_c);
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent;
    -webkit-transform: translate(0, -50%) rotate(45deg);
    transform: translate(0, -50%) rotate(45deg);
  }
}

/* search_item word_search */
.search_item .word_search_wrap {
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
}

.search_item .word_search {
  width: calc(100% - 40px);
}

.search_item .word_search .search-field {
  border-radius: 6px 0 0 6px;
}

/* search_item button */
.search_item_submit {
  margin-top: 1rem;
  text-align: center;
  width: 100%;
}

.word_search_wrap .search_item_submit {
  width: 40px;
  margin: 0 !important
}

.word_search_wrap .search_item_submit .btn_search {
  height: 40px;
  background: var(--sub_c);
  border-radius: 0 6px 6px 0;
  border: 2px solid var(--sub_c);
  color: #fff;
  font-size: 14px;
}

.word_search_wrap .search_item_submit .btn_search::before {
  display: none
}

.search_main_wrap .column_detail_main {
  font-size: 1.4rem;
  margin: 20px 0;
}

@media (max-width: 959px) {
  .search_item_submit {
    max-width: 400px;
    margin: 2.5rem auto 0;
  }
}

@media (max-width: 767px) {
  .search_item_submit {
    margin-top: 1.5rem
  }

  .search_main_wrap .column_detail_main {
    font-size: 1.2rem;
    margin: 0 0 8px;
  }
}


.search_change_view {
  max-width: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.search_change_view div p {
  background: #000;
  color: #fff;
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  font-weight: 600;
  padding: 0 12px;
  margin: 0 0 12px;
}

@media (max-width: 1300.98px) {
  .search_change_view div p {
    height: auto;
    font-size: 12px;
    padding: 3px 8px;
  }
}

@media (max-width: 767.98px) {
  .search_change_view div p {
    background: #fff;
    color: #000;
    text-align: left;
    margin: 0;
    padding: 0 0 8px;
    font-weight: 700;
  }
}



/**
* 検索項目
**/
.option {
  display: block;
  font-size: 1.4rem;
  line-height: 1.615em;
  padding: 0 0 0 2.2rem;
  position: relative;
  cursor: pointer;
}

.option input {
  position: absolute;
  opacity: 0;
}

.option_status {
  position: absolute;
  left: 0;
  top: 0.25em;
  z-index: 1;
  -webkit-transform: translate(0, 2%);
  transform: translate(0, 2%);
  width: 1em;
  height: 1em;
  background-color: #fff;
  border: 1px solid var(--sub_c);
  overflow: hidden;
}

.option_status::before,
.option_status::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--main_c);
  opacity: 0;
}

.option_status::before {
  -webkit-transform: scale(1.25);
  transform: scale(1.25);
}

.option.option_checkbox .option_status {
  border-radius: 0;
}

.option.option_radio .option_status {
  border-radius: 50%;
}

.option.option_checkbox .option_status::before {
  border-radius: 0;
}

.option.option_radio .option_status::before {
  border-radius: 50%;
}

/* hover,focus style */
.option:hover input~.option_status::before,
.option input:focus~.option_status::before {
  background: var(--main_c);
  opacity: 0;
}

.option:hover input~.option_status::after,
.option input:focus~.option_status::after {
  background: var(--main_c);
  opacity: 0.5;
}

/* checked style */
.option input:checked~.option_status::before {
  opacity: 1;
}

.option input:checked~.option_status::after {
  opacity: 0;
}

@media (max-width: 767px) {
  .option {
    font-size: 1.5rem;
  }
}

/**
* サイドバー アコーディオン
**/
.search-accordion {
  max-width: 500px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
}

.search-accordion_ttl {
  height: 52px;
  background-color: var(--main_c);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.search-accordion_ttl:hover {
  opacity: .9
}

.search-accordion_ttl::-webkit-details-marker {
  display: none;
}

.search-accordion_ttl::before,
.search-accordion_ttl::after {
  width: 3px;
  height: .9em;
  border-radius: 1px;
  background-color: #fff;
  content: '';
  right: 2rem;
  position: absolute;
}

.search-accordion_ttl::before {
  rotate: 90deg;
}

.search-accordion_ttl::after {
  transition: rotate .3s;
}

.search-accordion[open] .search-accordion_ttl::after {
  rotate: 90deg;
}

.search-accordion_cts {
  padding: 15px 10px;
  background: #f6f4f3;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform .5s, opacity .5s;
}

.search-accordion[open] .search-accordion_cts {
  transform: none;
  opacity: 1;
}

@media (max-width: 959px) {
  .search-accordion {
    display: none
  }
}

.search-tab {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  gap: 0 8px;
}

.search-tab .bg_white,
.search-accordion .bg_white {
  background: #fff;
}

.search-tab__label {
  flex: 1 1;
  order: -1;
  padding: 1.5rem .5rem;
  background: #f6f4f3;
  border-radius: 8px 8px 0 0;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.search-tab__label span {
  font-size: 1.8rem
}

.search-tab__input {
  display: none;
}

.search-tab__inner {
  display: none;
  width: 100%;
  padding: 4rem 5vw;
  background-color: #f6f4f3;
  border: 2px solid var(--sub_c);
}

.search-tab__inner .word_search_wrap {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.search-tab__inner .word_search {
  width: calc(100% - 60px);
}

.search-tab__inner .word_search+.search_item_submit {
  width: 60px;
}

.search-tab__label:hover,
.search-tab__label:has(:checked) {
  background-color: var(--sub_c);
  color: #fff;
}

.search-tab__label:has(:checked):hover {
  opacity: 1;
  cursor: default
}

.search-tab__label:has(:checked)+div {
  display: block;
}

.search-tab__cat {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5vw;
}

@media (max-width: 767px) {
  .search-tab__label {
    padding: 1rem .1rem .8rem;
    font-size: 1rem;
  }

  .search-tab__label span {
    font-size: 1.2rem
  }

  .search-tab__inner {
    padding: 1rem 3vw;
  }

  .search-tab__cat {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (min-width: 960px) {
  .search-tab {
    display: none
  }
}

/* カテゴリが無い場合は、カテゴリのタブを非表示 */
.search-tab[data-has=""] .search-tab__label.type--cate,
.search-tab[data-has=""] .search-tab__inner.type--cate {
  display: none;
}

/**
* フローティングメニュー
**/
#search_f_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  padding: 14px 14px;
  background: rgba(0, 0, 0, 0.92);
  color: #fff;
  -webkit-transition: background-color 0.4s ease, color 0.2s ease;
  transition: background-color 0.4s ease, color 0.2s ease;
}

#search_f_menu.active {
  background: #fdef5d;
  color: #383838;
}

@media (min-width: 960px) {
  #search_f_menu {
    display: none;
  }
}

#search_f_menu .text_parts {
  color: inherit;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.8rem;
  letter-spacing: 0.1ex;
  text-align: left;
  width: calc(100% - 88px);
  padding: 0 28px 0 0;
  margin: 0;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

#search_f_menu.active .text_parts {
  width: calc(100% - 146px);
}

#search_f_menu .box_btn {
  width: 88px;
  padding: 0;
  margin: 0;
  position: relative;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

#search_f_menu.active .box_btn {
  width: 146px;
}

#search_f_menu .btn_change {
  display: block;
  border-radius: 10px;
  border: 1px solid;
  background: transparent;
  color: inherit;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1ex;
  position: relative;
  width: 88px;
  height: 44px;
  margin: 0 0 0 auto;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

/* style */
#search_f_menu .btn_change[data-search-results-cancel],
#search_f_menu .btn_change[data-search-results-submit] {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

#search_f_menu .btn_change[data-search-results-cancel] {
  width: 44px;
  right: 92px;
  font-size: 1.6rem;
}

#search_f_menu .btn_change[data-search-results-submit] {
  right: 0;
}

/* transition */
#search_f_menu .btn_change[data-search-results-change] {
  opacity: 1;
}

#search_f_menu .btn_change[data-search-results-cancel] {
  opacity: 0;
  pointer-events: none;
}

#search_f_menu .btn_change[data-search-results-submit] {
  opacity: 0;
  pointer-events: none;
}

#search_f_menu.active .btn_change[data-search-results-change] {
  opacity: 0;
  pointer-events: none;
}

#search_f_menu.active .btn_change[data-search-results-cancel] {
  opacity: 1;
  pointer-events: auto;
}

#search_f_menu.active .btn_change[data-search-results-submit] {
  opacity: 1;
  pointer-events: auto;
}

/*calender*/
.search_calender_wrap {
  max-width: 400px;
  margin: 1rem auto 0;
  position: relative;
}

.search_datepicker {
  max-width: 400px;
  margin: 0 auto;
  border-bottom: 1px solid #E9E8E7;
}

.search_datepicker .ui-datepicker {
  width: 100%;
}

.search_datepicker .ui-widget.ui-widget-content {
  min-width: unset;
  box-shadow: none;
}

.search_calender {
  width: 100%;
  background-color: #fff;
}

.search_calender caption {
  background-color: #fff;
  margin: .5rem 0;
}

.search_calender caption .search_calender tr th,
.search_calender tr td {
  text-align: center;
  font-size: 13px;
  padding: 2px;
}

.selected_date {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  background: transparent;
  font-size: 13px;
  text-align: center;
  width: 100%;
  margin: 0 0 5px;
  padding: 0;
  gap: 2px;
}

.selected_date input[type="date"] {
  max-width: calc((100% - 10px - 2px*2) / 2);
  width: 100%;
  height: 40px;
}

.selected_date input[type="date"][readonly] {
  border-color: #f6f6f6;
  background: #f6f6f6;
  outline: none;
  color: #999;
}

.selected_date span {
  display: block;
  color: #999;
  font-size: 10px;
}

.selected_01,
.selected_02 {
  background-color: #fff696;
}

button.prev,
button.next {
  position: absolute;
  top: 2rem;
  font-size: 1rem;
  background-color: #fff;
  color: var(--main_c);
  border: hidden;
}

button.prev {
  left: 1.5rem;
}

button.next {
  right: 1.5rem;
}

.form_input {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  padding: 1rem;
}

.form_input label input {
  width: 260px;
}

.form_input button {
  margin-left: 1rem;
  border-radius: 8px;
  border: none;
  padding: 0 1.5em;
  color: #fff;
  background-color: var(--sub_c);
}

.cinfo_page .mode--drawer_on_sp {
  display: none;
}

.drawer_on_sp__open {
  height: 18em;
}

.btn_box {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100vw;
}

.btn_box_item {
  width: calc((100% - 20px) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main_c);
}

.cinfo_page .column_detail_bottom-press,
.cinfo_page .column_detail_bottom-contact {
  margin: 0;
  padding: 1rem;
  width: 100%;
}

.cinfo_page .column_detail_bottom-contact__ttl {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.45;
}

.cinfo_page .column_detail_bottom-contact__txt {
  font-size: 1.3rem;
  margin-top: 0;
  padding-bottom: 0;
  border-bottom: none;
}

@media screen and (min-width:768px) and (max-width:1280px) {
  .cinfo_page .column_detail_bottom-contact__ttl {
    display: none;
  }

  .cinfo_page .column_detail_bottom-contact__txt {
    display: none;
  }
}

.cinfo_page .column_detail_bottom-contact__btn {
  margin-top: .5rem;
}

.btn_wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #f6f4f3;
  z-index: 99;
  border-top: solid 1px #efeae0;
  margin: 0 -15px;
}

.cinfo_page .column_detail_bottom-contact__btn a:hover {
  border: solid 2px #fff;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .cinfo_page .mode--drawer_on_sp {
    display: block;
  }

  .cinfo_page .column_detail_bottom-press {
    margin-left: 1rem;
  }

  .cinfo_page .column_detail_bottom-contact {
    margin: 2rem 0 0 1rem;
    padding: 1.5rem 1rem;
  }

  .cinfo_page .column_detail_bottom-contact__ttl {
    font-size: 1.4rem;
  }

  .cinfo_page .column_detail_bottom-contact__txt {
    font-size: 1.3rem;
    padding-bottom: 1.5rem;
  }

  .cinfo_page .column_detail_bottom-contact__btn a {
    font-size: 1.4rem;
  }

  .cinfo_page .search_box {
    margin-right: 1rem;
  }

  .btn_wrap {
    display: none;
  }
}

.search__sort {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 5px;
  margin-bottom: 15px;
}

.search__sort .select {
  width: 13em;
  margin: 0;
  padding: 0 0 0 15px;
  height: 50px;
  cursor: pointer;
  background: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 8px;
  box-shadow: none;
  font-size: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search__sort .select::after {
  content: "▼";
  font-size: 1.2rem;
  color: var(--sub_c);
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: 1.5px;
  transform: translateY(-50%);
}

.sort__ttl {}
