@charset "UTF-8";

/**
* search main
**/
[id="main"].search_center_wrap {
  order: 2;
  /* NOTE: 3col style */
  width: calc(100% - 328px);

  /* NOTE: 1col style */
  width: 100%;
  max-width: var(--basewrap-width-tight);
  margin: 0 auto;
}

.search_right_wrap+[id="main"].search_center_wrap {
  width: calc(100% - 656px);
  width: 100%;
}

@media (max-width: 1300px) {
  .search_right_wrap+[id="main"].search_center_wrap {
    width: calc(100% - 536px);
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .search_right_wrap+[id="main"].search_center_wrap {
    width: calc(100% - 268px);
    width: 100%;
  }
}

@media (max-width: 959px) {
  [id="main"].search_center_wrap {
    width: 100%;
  }

  .search_right_wrap+[id="main"].search_center_wrap {
    width: 100%;
  }
}

@media (max-width: 767px) {
  [id="main"].search_center_wrap {
    width: 100%;
  }

  .search_right_wrap+[id="main"].search_center_wrap {
    width: 100%;
  }
}

/**
* search left side
**/
[id="side"].search_left_wrap {
  order: 1;
  max-width: none;
  width: 300px;
  width: 100%;
  max-width: var(--basewrap-width-tight);
  margin: 0 auto 16px;
  padding: 16px 0 0;
  position: relative;
}

.search_left_banner {
  display: none;
  padding: 32px 0 0;
}

@media (max-width: 1300px) {
  [id="side"].search_left_wrap {
    width: 240px;
    width: 100%;
  }
}

@media (max-width: 1200px) {
  [id="side"].search_left_wrap {
    width: 240px;
    width: 100%;
  }

  .search_left_banner {
    display: block;
  }
}

@media (max-width: 959px) {
  [id="side"].search_left_wrap {
    width: 100%;
  }

  .search_left_banner {
    display: none;
  }

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

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

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

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

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


/**
* search right side
**/
.search_right_wrap {
  order: 3;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: stretch;
  max-width: none;
  width: 300px;
  width: 100%;
  max-width: var(--basewrap-width-tight);
  margin: 0 auto 16px;
  padding: 16px 0 0;
  gap: 16px;
  position: relative;
}

@media (max-width: 1300px) {
  .search_right_wrap {
    width: 240px;
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .search_right_wrap {
    display: none;
  }
}

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


/**
 * search_item wrapper
**/
.search_item_group {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: var(--btn-radius-l);
  border: 2px solid var(--main_c);
  padding: 20px;
}

.search_item_group__title {
  /* border-bottom: solid 2px var(--main_c); */
  font-weight: 700;
  font-size: 20px;
  line-height: 1.125;
  text-align: center;
  width: 100%;
  margin: 0 0 12px;
  padding: 0 0 8px;
  cursor: pointer;
}

.search_item_group__title::after {
  content: "▼";
  margin-left: .5em;
  font-size: 1.7rem;
  vertical-align: top;
}

@media (min-width: 960px) {
  .search_item_group {
    /* display: flex; */
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: var(--btn-radius-l);
    border: 2px solid var(--main_c);
    padding: 20px;
    gap: 20px;
  }

  .search_item_group__title {
    margin: 0 0 -8px;
  }

  .search_item_group>.search_item_submit,
  .search_item_group>.search_item {
    /* width: calc((100% - 20px * 2) / 3); */
    margin-top: 2rem;
  }
}

/**
 * search_item
**/
.search_item {
  background-color: #fff;
  border: 1px solid var(--main_c);
  border-radius: var(--btn-radius);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  padding: 0;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.search_item_head {
  background-color: var(--main_c);
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  padding: 6px 12px;
  margin: 0;
}

.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_head[data-accordion-head]+* {
  position: relative;
  padding-bottom: 32px;
  height: 64px;
  transition: all 0.6s ease;
}

.search_item_head[data-accordion-head]+*::after {
  content: "";
  pointer-events: none;
  display: block;
  left: 0;
  right: 0;
  bottom: -30px;
  height: 32px;
  position: absolute;
  z-index: 2;
  box-shadow: 0 -32px 16px -8px rgba(255, 255, 255, 0.8) inset;
  transition: box-shadow 0.5s ease;
}

.search_item_head.active[data-accordion-head]+*::after {
  box-shadow: 0 0 0 0 white inset;
}

/* accordion open button sytle */
/* not use default button */
.search_item_head[data-accordion-head]::after,
.search_item_head.accordion_head::after {
  display: none;
}

/* open button (appended by js) */
.search_item_open {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--main_c);
  background: var(--main_c);
  color: #fff;
  width: 28px;
  height: 28px;
  font-size: 16px;
  position: absolute;
  top: auto;
  right: 8px;
  bottom: 8px;
  left: auto;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.5s ease;
}

.search_item_open::before {
  content: "\f3d0";
  display: block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  transition: inherit;
}

.search_item_open:focus,
.search_item_open:hover {
  opacity: 1;
}

.search_item_open.active {
  border: 1px solid var(--main_c);
  background: #fff;
  color: var(--main_c);
}

.search_item_open.active::before {
  transform: rotateX(180deg);
}

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

.search_item_area_btn .btn {
  margin: 0;
}

/* checkbox_list */
.checkbox_list_area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-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: 12px;
  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);
}

@media (min-width: 768px) {
  .checkbox_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    padding: 0 0 12px;
  }

  .checkbox_list>li {
    padding: 12px 12px 0;
    font-size: 12px;
    color: #666;
    /* width: 100%; */
  }
}

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

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

.checkbox_list>li ul {
  padding: 0 0 0 16px;
}

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

  .checkbox_list>li {
    margin-bottom: 8px;
  }

  .checkbox_list>li ul {
    padding: 0 0 8px 20px;
  }

  /* 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: 12px;
  }

  .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;
    transform: translate(0, -50%) rotate(45deg);
  }
}

/* search_item word_search */
.search_item .word_search_wrap {
  padding: 12px;
}

.search_item .word_search {
  width: 100%;
}

/* search_item button */
.search_item_submit {
  text-align: center;
}

.search_item_submit .btn {
  max-width: 350px;
}

.search_center_wrap .title02 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4em;
  overflow: hidden;
  padding: 32px 0 0;
  margin: 0 0 8px;
  color: var(--font_c);
}

.search_center_wrap .title02 span {
  float: right;
  font-size: 11px;
  font-weight: 100;
  color: #706e6e;
}

.search_center_wrap .title02 span b {
  font-size: 18px;
  font-weight: 700;
  color: var(--main_c);
  padding-right: 3px;
}

@media (max-width: 767px) {
  .search_center_wrap .title02 {
    border-radius: 6px;
    background: #fff;
    font-size: 16px;
    text-align: center;
    position: relative;
    overflow: visible;
    padding: 16px;
    margin: 0 0 8px;
  }

  .search_center_wrap .title02 span {
    padding-top: 8px;
    float: none;
    display: block;
  }

  .search_center_wrap .title02 span b {
    font-size: 16px;
  }
}

.search_center_wrap .column_detail_main {
  font-size: 12px;
  line-height: 1.45;
  margin-bottom: 1.5em;
}

@media (max-width: 767px) {
  .detail_box .title02 {
    text-align: left;
    padding: 0;
    margin: 0;
  }

  .search_center_wrap .column_detail_main {
    font-size: 12px;
    line-height: 28px;
    margin: 0 0 8px;
  }
}

.search_change_view {
  max-width: 550px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

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

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

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

.option_status {
  position: absolute;
  left: 0;
  top: 0.25em;
  z-index: 1;
  transform: translate(0, 2%);
  width: 1em;
  height: 1em;
  border: solid 1px var(--main_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 {
  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;
}


/**
 * フローティングメニュー
**/
[id="search_f_menu"] {
  --menu-padding: 12px;
  --menu-lead-width: 144px;
  --menu-btn-width: 88px;
  --menu-btn-height: 44px;
  --menu-close-width: 44px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0);
  color: var(--main_c);
  width: calc(var(--menu-btn-width) + var(--menu-padding) * 2);
  height: calc(var(--menu-btn-width) + var(--menu-padding) * 2);
  padding: var(--menu-padding);
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.4s ease, color 0.2s ease, width 0.2s ease, height 0.2s ease;
}

[id="search_f_menu"].active {
  background: #faff2c;
  color: var(--font_c);
  width: 100%;
  height: calc(var(--menu-btn-height) + var(--menu-padding) * 2);
}

@media (min-width: 960px) {
  [id="search_f_menu"] {
    display: none;
  }
}

[id="search_f_menu"] .text_parts {
  color: inherit;
  font-size: 11px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.1ex;
  text-align: left;
  width: calc(100% - var(--menu-btn-width));
  width: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  transition: width 0.2s ease, padding 0.2s ease;
}

[id="search_f_menu"].active .text_parts {
  width: calc(100% - var(--menu-lead-width));
  padding: 0 28px 0 0;
}

[id="search_f_menu"] .box_btn {
  width: var(--menu-btn-width);
  padding: 0;
  margin: 0;
  position: relative;
  transition: width 0.2s ease;
}

[id="search_f_menu"].active .box_btn {
  width: var(--menu-lead-width);
}

[id="search_f_menu"] .btn_change {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: solid 2px;
  background: #faff2c;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1ex;
  position: relative;
  width: var(--menu-btn-width);
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 0 0 auto;
  transition: opacity 0.4s ease;
}

/* style */
[id="search_f_menu"] .btn_change[data-search-results-change] {
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.3);
}

[id="search_f_menu"] .btn_change[data-search-results-cancel],
[id="search_f_menu"] .btn_change[data-search-results-submit] {
  border-radius: var(--btn-radius);
  background: transparent;
  height: var(--menu-btn-height);
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

[id="search_f_menu"] .btn_change[data-search-results-cancel] {
  font-size: 16px;
  width: var(--menu-close-width);
  right: calc(var(--menu-btn-width) + 8px);
}

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

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

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

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

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

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

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

.modal_open {
  cursor: pointer;
}

.modal_open:hover {
  background-color: #e4f7fc;
}

#modal_pop-up,
#modal_pop-up_fav,
#modal_pop-up_dl {
  display: none;
}

.modal_overlay {
  display: none;
}

#modal_pop-up:checked+.modal_overlay,
#modal_pop-up_fav:checked+.modal_overlay,
#modal_pop-up_dl:checked+.modal_overlay {
  display: block;
  z-index: 9999;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
}

.modal {
  max-width: 980px;
  width: 94%;
  height: auto;
  margin: 0 auto;
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 8rem 5rem;
  border-radius: 3px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal>p {
  text-align: center;
  margin: 1em 0;
  font-weight: bold;
}

.modal>ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.modal>ul>li {
  margin: 10px;
}

.modal-btn_login {
  font-size: 1.6rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 2em;
  background: #e8f6f4;
  color: #fff;
  font-weight: 700;
  min-width: 240px;
  height: 54px;
  padding: 0 2em;
  border: none;
  background-color: var(--main_c);
  cursor: pointer;
}

.modal-btm_register {
  font-size: 1.6rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 2em;
  background: linear-gradient(-331deg, #fac739 0%, #fac739 0%, #fb0d6a 100%, #fb0d6a 100%);
  background-size: 112% 112%;
  color: #fff;
  font-weight: 700;
  min-width: 240px;
  height: 54px;
  padding: 0 2em;
  border: none;
  cursor: pointer;
}

.modal-btn_login:hover,
.modal-btm_register:hover {
  opacity: .7;
}

.modal_close {
  font-size: 1.6rem;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2f2f2;
}

.modal-btn_publish {
  background: var(--main_c);
  color: #fff;
  border-radius: 6px;
  border: 1px solid var(--main_c);
  font-size: 20px;
  font-weight: 700;
  line-height: 68px;
  text-align: center;
  height: 64px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.modal-btn_publish::before {
  content: "\f380";
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0) scale(1.75, 1.75);
  transform-origin: right center;
  margin: 0 8px 0 0;
}

.modal-btn_publish:hover {
  background: var(--main_c);
}

.detail_main_btn {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin: 0 0 5px;
}

.detail_main_btn .modal-btn_publish {
  width: 18em;
  font-size: 17px;
  height: 52px;
  font-weight: 500;
  letter-spacing: .1rem;
}

.modal-btn_dl {
  background: #fac739;
  color: #fff;
  border-radius: 6px;
  border: 1px solid #fac739;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .1rem;
  padding: 0 1em;
  line-height: 1;
  text-align: center;
  height: 52px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.modal-btn_dl:hover {
  background: #fac739;
}

@media (max-width: 767px) {
  .detail_main_btn {
    margin: 0 0 15px;
    justify-content: flex-start;
  }

  .detail_main_btn .modal-btn_publish,
  .modal-btn_dl {
    width: 16.5em;
    font-size: 15px;
    height: 48px;
    letter-spacing: 0;
    margin-right: 0;
  }

  .modal {
    padding: 2rem 2rem 4rem;
  }

  .modal>p {
    margin: 3em 0 1em;
  }

  .modal-btn_login,
  .modal-btm_register {
    min-width: 9em;
  }

  .modal>ul>li {
    margin: 5px;
  }
}
