@charset "UTF-8";

/**
*
* /s/ページ
* ※一部順不同のためブラウザから検索して特定
*
* 注意
* flex-basisはie11でバグがあるため不使用推奨
**/
/**
* search main
**/
#main.search_center_wrap {
    width: 100%;
}

.search_right_wrap+#main.search_center_wrap {
    width: calc(100% - 41rem);
}

@media (max-width: 1300px) {
    .search_right_wrap+#main.search_center_wrap {
        width: calc(100% - 33.5rem);
    }
}

@media (max-width: 1200px) {
    .search_right_wrap+#main.search_center_wrap {
        width: calc(100% - 16.75rem);
    }
}

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

    .search_right_wrap+#main.search_center_wrap {
        width: 100%;
    }
}

@media (max-width: 767px) {
    #main.search_center_wrap {
        width: 100%;
    }

    .search_right_wrap+#main.search_center_wrap {
        width: 100%;
    }
}

/**
* search left side
**/
#side.search_left_wrap {
    max-width: none;
    width: 100%;
    padding: 1rem 0 0;
    /* height: auto !important; */
    /* margin-bottom: 100px; */
}

.search_left_banner {
    display: none;
    padding: 2rem 0 0;
}
@media (min-width: 960px) {
    #side.search_left_wrap {
    height: auto !important;
    }
}
@media (max-width: 959px) {

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

    #side.search_left_wrap.active[data-search-items] {
        opacity: 1;
        pointer-events: auto;
        z-index: 9999;
    }

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

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

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

/**
* search right side
**/
.search_right_wrap {
    order: 3;
    max-width: none;
    width: 18.75rem;
    padding: 1rem 0 0;
    margin-bottom: 1rem;
    position: relative;
}

@media (max-width: 1300px) {
    .search_right_wrap {
        width: 15rem;
    }
}

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

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

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

/**
* search_item
**/
.search_item {
    border-bottom: 1px solid #d6d6d6;
    padding: 20px 0;
    display: flex;
    align-items: flex-start;
}

.search_item:first-of-type {
    justify-content: space-between;
    align-items: center;
}

.search_item:first-of-type>* {
    width: auto !important;
}

.search_item:first-of-type .label {
    font-size: 20px;
}

.search_item:first-of-type .word_search {
    justify-content: space-between;
    min-width: 350px;
}

.search_item:first-of-type .search-field {
    height: 50px;
    width: calc(100% - 50px);
}

.search_item:first-of-type .search-submit {
    height: 50px;
    width: 50px;
}

.search_content > .search_item {
    justify-content: flex-start;
    align-items: flex-start;
}

.search_content > .search_item .label {
    font-size:16px;
    margin-right: 10px; 
    width: 10%!important;
}

.search_content > .search_item .checkbox_flex {
    width: 90%!important;
}
.search_item .label {
    font-size: 16px;
    font-weight: 500;
    /* margin-right: 10px; */
    width: 10%;
}

.search_item .checkbox_flex {
    width: 90%;
}

.search_item .checkbox_flex label {
    font-size: 14px;
    width: 25%;
}

@media screen and (max-width: 767px) {
    .search_item {
        padding: 10px 0;
        flex-direction: column;
    }

    .search_item:first-of-type>* {
        width: 100%;
    }

    .search_item .label {
        width: 100%;
        margin-bottom: 10px;
    }

    .search_item:first-of-type .word_search_wrap {
        margin-bottom: 0;
    }

    .search_item .checkbox_flex {
        margin-left: 0;
    }
    .search_item .checkbox_flex label {
        width: 50%;
    }

    .search_content > .search_item .label {
        width: 100%!important;
    }
    
    .search_content > .search_item .checkbox_flex {
        width: 100%!important;
    }
}

/* open button (appended by js) */
.search_item_open {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #006900;
    background: #006900;
    color: #fff;
    width: 1.75rem;
    height: 1.75rem;
    font-size: 1rem;
    position: absolute;
    top: auto;
    right: 0.5rem;
    bottom: 0.5rem;
    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 #006900;
    background: #fff;
    color: #006900;
}

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

/* search_item_area */
#search_item_area {}

.search_item_area_btn {
    padding: 0.75rem;
    text-align: center;
}

.search_item_area_btn .btn {
    max-width: 12.5rem;
    height: 2.5rem;
    margin: 0;
}

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

/* checkbox_list */
.checkbox_list_area {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0 1rem 1rem;
}

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

/* 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 */
.checkbox_list_area>li {}

@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: 0.375rem;
}

.checkbox_list_area>li a {
    display: block;
    position: relative;
    color: #666;
    font-size: 0.75rem;
    padding: 0.25rem 0 0.25rem 0.75rem;
}

.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 #006900;
    border-right: 2px solid #006900;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent;
    transform: rotate(45deg);
}

@media (min-width: 768px) {
    .checkbox_list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
        align-content: flex-start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 0 0 0.75rem;
    }

    .checkbox_list>li {
        padding: 0.75rem 0.75rem 0;
        font-size: 0.75rem;
        color: #666;
        width: 100%;
        /* 1col 100%, 2col 50%, 3col 33.33% */
    }
}

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

    /* 1col 100%, 2col 50%, 3col 33.33% */
}

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

    /* 1col 100%, 2col 50%, 3col 33.33% */
}

.checkbox_list>li ul {
    padding: 0 0 0 1rem;
}

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

    .checkbox_list>li {
        margin-bottom: 0.5rem;
    }

    .checkbox_list>li ul {
        padding: 0 0 0.5rem 1.25rem;
    }

    /* checkbox_list_area */
    .checkbox_list_area>li input {
        margin-top: 0.875rem;
        margin-right: 0.5rem;
    }

    .checkbox_list_area>li a {
        padding: 0.5rem 0 0.5rem 0.75rem;
        margin-right: 1rem;
        font-size: 0.75rem;
    }

    .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 #006900;
        border-right: 2px solid #006900;
        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: 0.75rem;
}

.search_item .word_search {
    width: 100%;
}

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

.search_item_submit .btn {
    max-width: 12.5rem;
}

.search_center_wrap .title02 {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.4em;
    overflow: hidden;
    padding: 2rem 0 0;
    margin: 0 0 0.5rem;
}

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

.search_center_wrap .title02 span b {
    font-size: 1.125rem;
    font-weight: 700;
    color: #006900;
    padding-right: 3px;
}

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

    .search_center_wrap .title02 span {
        padding-top: 0.5rem;
        float: none;
        display: block;
    }

    .search_center_wrap .title02 span b {
        font-size: 1rem;
    }
}

.search_center_wrap .column_detail_main {
    font-size: 0.75rem;
    line-height: 1.75rem;
}

@media (max-width: 767px) {
    .search_center_wrap .column_detail_main {
        font-size: 0.75rem;
        line-height: 1.75rem;
        margin: 0 0 0.5rem;
    }
}

.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: 2rem;
    line-height: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0 0.75rem;
    margin: 0 0 0.75rem;
}

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

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

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

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

.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 #006900;
    overflow: hidden;
}

.option_status::before,
.option_status::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #006900;
    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,
.option input:focus~.option_status {}

.option:hover input~.option_status::before,
.option input:focus~.option_status::before {
    background: #006900;
    opacity: 0;
}

.option:hover input~.option_status::after,
.option input:focus~.option_status::after {
    background: #006900;
    opacity: 0.5;
}

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

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

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

#search_f_menu.active {
    background: #006900;
    color: #fff;
}

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

#search_f_menu .text_parts {
    color: inherit;
    font-size: 0.6875rem;
    font-weight: 500;
    line-height: 1.125rem;
    letter-spacing: 0.1ex;
    text-align: left;
    width: calc(100% - 5.5rem);
    padding: 0 1.75rem 0 0;
    margin: 0;
    transition: width 0.4s ease;
}

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

#search_f_menu .box_btn {
    width: 5.5rem;
    padding: 0;
    margin: 0;
    position: relative;
    transition: width 0.4s ease;
}

#search_f_menu.active .box_btn {
    width: 9.125rem;
}

#search_f_menu .btn_change {
    display: block;
    border-radius: 3em;
    border: solid 1px;
    background: transparent;
    color: inherit;
    font-size: 0.6875rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.1ex;
    position: relative;
    width: 5.5rem;
    height: 2.75rem;
    margin: 0 0 0 auto;
    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%;
    transform: translate(0, -50%);
}

#search_f_menu .btn_change[data-search-results-cancel] {
    width: 2.75rem;
    right: 5.75rem;
    font-size: 1rem;
}

#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;
}

/**
* 検索条件変更メニュー固定化
**/
#search_menu {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    width: 100vw;
    padding: 0.875rem 0.875rem;
    margin: 0 -1rem;
    background: rgba(0, 0, 0, 0.92);
    color: #fff;
    transition:
        background-color 0.4s ease,
        color 0.2s ease;
}

#search_menu.active {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    background: #006900;
    color: #fff;
    z-index: 3000;
}

@media (min-width: 767px) {
    #search_menu {
        margin: 1rem -1rem;
    }
}

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

#search_menu .text_parts {
    color: inherit;
    font-size: 0.6875rem;
    font-weight: 500;
    line-height: 1.125rem;
    letter-spacing: 0.1ex;
    text-align: left;
    width: calc(100% - 5.5rem);
    padding: 0 1.75rem 0 0;
    margin: 0;
    transition: width 0.4s ease;
}

#search_menu.active .text_parts {
    width: calc(100% - 9.125rem);
}

#search_menu .box_btn {
    width: 5.5rem;
    padding: 0;
    margin: 0;
    position: relative;
    transition: width 0.4s ease;
}

#search_menu.active .box_btn {
    width: 9.125rem;
}

#search_menu .btn_change {
    display: block;
    border-radius: 3em;
    border: solid 1px;
    background: transparent;
    color: inherit;
    font-size: 0.6875rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.1ex;
    position: relative;
    width: 5.5rem;
    height: 2.75rem;
    margin: 0 0 0 auto;
    transition: opacity 0.4s ease;
}

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

#search_menu .btn_change[data-search-results-cancel] {
    width: 2.75rem;
    right: 5.75rem;
    font-size: 1rem;
}

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

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

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

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

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

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

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