@charset "utf-8";
img {
    width: 100%;
}

section {
    padding: 80px 0;
}

section:nth-child(odd) {
    background: var(--color-brown01);
}

.btn_brown01.new_tab {
    width: 100%;
    margin-bottom: 10px;
}

.btn_brown01.new_tab:after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    width: 18px;
    height: 18px;
    background: url(/images_2024r/shop/common/icon/ico_btn_new_tab_white.svg)no-repeat;
    background-size: contain;
}

@media screen and (max-width: 768px) {
    .ppp_sec_inner {
        padding: 0;
    }
}


/* PPPの5つのこだわり */
#kodawari {
    margin-bottom: 60px;
    background: #E8E4D3;
}

/* タブ */
.tabs {
  margin: 40px auto 0;
}

.tabs .tabs__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  color: #333333;
  font-size: clamp( 11px, 3.5vw, 16px );
  font-weight: bold;
  transition: all 0.2s ease;
  cursor: pointer;
}


.tabs.tabs--type .tabs__list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tabs.tabs--type .tabs__item {
  position: relative;
  overflow: hidden;
  flex-grow: 1;
  flex-basis: calc( 100% / 4 );
}


.tabs.tabs--type .tabs__item:has(input:focus),
.tabs.tabs--type .tabs__item:has(input:active),
.tabs.tabs--type .tabs__item:has(input:checked) {
  border-bottom: 3px solid var(--color-red01);
  /* color: var(--color-red01); */
}

.tabs.tabs--type input {
  border: 0 !important;
  clip: rect( 0, 0, 0, 0 ) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.tabs__item.on > p {
  color: var(--color-red01);
}

.tabs.tabs--type .tabs__content {
  overflow: hidden;
  position: absolute;
  height: 0;
}

.tabs.tabs--type .tabs__list:has(#type-equipment > input:checked) ~ #type-equipment__content,
.tabs.tabs--type .tabs__list:has(#type-support > input:checked) ~ #type-support__content,
.tabs.tabs--type .tabs__list:has(#type-cuisine > input:checked) ~ #type-cuisine__content,
.tabs.tabs--type .tabs__list:has(#type-access > input:checked) ~ #type-access__content {
  overflow: visible;
  position: static;
  height: auto;
  padding: 30px 0;
}

.tabs.tabs--type .tabs__item:has(input) {
    border-bottom: 1px solid #333;
}

.tabs.tabs--type .tabs__item:has(input:focus:checked) {
    color: #333;
}


.box_card {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 410px));
    justify-content: flex-start;
    gap: 10px
}

.ttl_card_kodawari {
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: bold;
}

.txt_card_kodawari {
    margin-top: 20px;
}

#mv .box_card{
    grid-template-columns: repeat(3, 1fr);
}

#mv .tab_img{
    font-size: 12px;
    padding: 5px;
    left: 10px;
    bottom: 15px;
}

@media screen and (max-width: 768px) {
    .box_card {
        grid-template-columns: auto;
    }
    #mv .tab_img{
        font-size: 10px;
        padding: 2px 5px;
        left: 5px;
        bottom: 10px;
    }
}

/* おすすめ会場 */
#recommend .box_card {
    justify-content: center;
}

.card_venue {
    display: grid;
    gap: 20px;
    padding: 10px;
    border: 1px solid #715A2D;
}

.ttl_card_venue {
    font-size: 18px;
    font-weight: bold;
}

.venue_info {
    border: none;
}

.venue_info th,
.venue_info td {
    padding-bottom: 8px;
    padding-left: 10px;
    font-size: 12px;
}

.venue_info th {
    position: relative;
    display: block;
    min-width: 100px;
    padding: 5px 25px 5px 5px;
    background: #715A2D;
    color: #fff;
}

.venue_info th:after {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url(/images_2024r/shop/common/icon/icon_train.svg)no-repeat;
}

.venue_info th.ico_people:after {
    background: url(/images_2024r/shop/common/icon/icon_people.svg)no-repeat;
}

.venue_info th.ico_add:after {
    background: url(/images_2024r/shop/common/icon/icon_address.svg)no-repeat;
}

@media screen and (min-width: 1537px) {
    #recommend .box_card {
            grid-template-columns: repeat(2, minmax(200px, 410px));
    }
}

/* どんなことができる */
#party_scene .box_card {
    justify-content: center;
}

.card_scene {
    padding-bottom: 40px;
    background: #fff;
}

.box_scene_img {
    position: relative;
}

.tab_img {
    position: absolute;
    bottom: 20px;
    left: 16px;
    padding: 10px;
    border-radius: 6px;
    background: rgb(113 90 45 / 70%);
    color: #fff;
}

.box_scene_txt {
    padding: 20px 10px 0;
    font-weight: bold;
}

.box_scene_tag {
    width: 75%;
    margin: 40px auto 0;
}

.ttl_scene_tag {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.box_scene_tag ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 110px));
    justify-content: space-evenly;
    gap: 10px;
}

.name_scene {
    display: grid;
    align-items: center;
    padding: 10px 8px;
    border: 1px solid #715A2D;
    border-radius: 6px;
    background: #fff;
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
}

@media screen and (width < 768px) {
    .box_scene_tag {
        width: 100%;
    }

    .name_scene {
        padding: 10px 8px;
        font-size: 12px;
        line-height: 1.2;
    }
}

/* 検索フォーム */

.hidden{
    display: none!important;
}

#search_venue .cont_results_ttl{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

#search_venue .cont_results_ttl .ttl_txt{
    display: flex;
    align-items: center;
}

#search_venue .cont_results_ttl .ttl_txt .lucide{
    margin-right: 10px;
}

#search_venue .cont_results_ttl .lucide-filter{
    width: 20px;
    height: 20px;
    color: rgba(156,163,175,.8);
}


.ttl_search{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 24px;
}

.ttl_search svg{
    margin-right: 10px;
}

#searchForm .form_item{
    margin-bottom: 10px;
}

#searchForm .form_item label{
    display: inline-block;
    pointer-events: none;
}

#searchForm .form_item input{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    font-size: 16px;
    color: #333;
}

#searchForm .form_item select{
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    font-size: 16px;
    color: #333;
    background-image: url(/images_2024r/shop/common/icon/ico_down_arrow.svg);
    background-size: 16px 16px;
    background-position: right 2px center;
    background-repeat: no-repeat;
}

#searchForm .form_btn button{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    height: 40px;
    background: var(--color-brown03);
    color: #fff;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

#searchForm .cont_guest_grid{
    display: grid;
    grid-template-columns: auto max-content;
    gap: 10px;
}

#guestType{
    min-width: 65px;
}

#filterStatus{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#clearFilters{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
    color: #000;
    cursor: pointer;
}

#venueResults{
    margin-top: 30px;
}

#venueResults .ttl_txt{
    font-size: 16px;
    font-weight: bold;
}

#venueResults .cont_result{
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #ccc;
}

#venueResults .cont_result:not(:last-of-type){
    margin-bottom: 20px;
}

#venueResults .cont_shop_info{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4,max-content);
    gap: 10px;
    padding: 10px;
}

#venueResults .cont_area,#venueResults .cont_capacity,#venueResults .cont_price{
    display: flex;
    align-items: center;
}

#venueResults .cont_img{
    height: 198px;
}

#venueResults .cont_img img{
    display: block;
    height: inherit;
    object-fit: cover;
}

#venueResults .box_ttl{
    position: relative;
}

#venueResults .cont_genre{
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    font-size: 12px;
    z-index: 10;
    border: 1px solid var(--color-brown03);
    border-radius: 5px;
    padding: 0 5px;
}

#venueResults .lucide{
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

#venueResults .box_gap{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#venueResults .ttl_shop{
    font-size: 16px;
}

#venueResults .cont_scenes button{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 30px;
    height: 32px;
    color: #000;
    padding: 0 5px;
    border: none;
    background-color: rgba(204,204,204,.6);
    border-radius: 5px;
    cursor: pointer;
}

#venueResults .cont_scenes .scenes_it{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    background: var(--color-brown01);
    border-radius: 5px;
    margin-bottom: 10px;
}

#venueResults .cont_scenes .scenes_it{
    margin-right: 10px;
}

#venueResults .cont_link a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    color: #fff;
    background: var(--color-brown03);
    border-radius: 10px;
}

#noResults{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgb(107,114,128);
}

#noResults .lucide-search{
    color: rgba(156,163,175,.8);
    margin-bottom: 20px;
}

#noResults .noResults_txt{
    font-size: 16px;
    margin-bottom: 10px;
}

#loadMoreContainer{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

#loadMoreBtn{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 45px;
    font-size: 16px;
    line-height: 1;
    border-radius: 10px;
    background-color: var(--color-red01);
    color: #fff;
    border: none;
    cursor: pointer;
}