@charset "UTF-8";

.sp-br {
  display: none;
}

/* ===================================
表示されているページの詳細
=================================== */
.area_category_inner {
  padding-top: 30px;
  padding-bottom: 140px;
}

.cat_detal_box {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
}

.cat_detal_box .page_nav {
  padding-top: 6px;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.cat_detal_box .page_nav span {
  margin-right: 5px;
  font-size: 16px;
  font-weight: 600;
}

/* 並べ替えボタン */
.row_change_box {
  position: relative;
  display: flex;
}

.row_change_box .rc_ttl {
  padding-top: 8px;
  /*margin-right: 177px; プルダウン内文字列が長くなったので追加20230817*/
  margin-right: 210px;
  color: #293271;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.row_change_box .rc_list_box {
  position: absolute;
  right: 0;
  margin-left: 16px;
  /*width: 160px; プルダウン内文字列が長くなったので追加20230817*/
  width: 196px;
  border: 1px solid #e2e2e2;
  background-color: #fff;
}

.row_change_box .rc_list_box .rc_list_ttl {
  position: relative;
  cursor: pointer;
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.row_change_box .rc_list_box .rc_list_ttl::after {
  content: "";
  position: absolute;
  top: 43%;
  right: 12.5%;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: center;
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #999999;
  border-bottom: 1px solid #999999;
  transition: .3s;
}

.row_change_box .rc_list_box .rc_list_ttl.active::after {
  top: 55%;
  transform: translateY(-50%) rotate(-135deg);
}

.row_change_box .rc_list_box .rc_list {
  display: none;
  padding: 0 0 10px;
}

.row_change_box .rc_list_box .rc_list li a {
  display: block;
  padding: 0 20px;
  font-size: 12px;
  letter-spacing: 0.12em;
  transition: .3s;
}

.row_change_box .rc_list_box .rc_list li a:hover {
  opacity: .6;
}

/* 会場一覧 */
.content_area {
  margin-top: 20px;
}

.venue_list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.venue_list li {
  width: calc((100% / 3) - 15px);
  margin-right: 22px;
  margin-bottom: 30px;
}

.venue_list li:nth-of-type(3n) {
  margin-right: 0;
}

.venue_list li a {
  display: block;
  padding: 20px;
  padding-bottom: 25px;
  height: 100%;
  background-color: #fff;
  transition: .3s;
}

.venue_list li a:hover {
  opacity: .6;
}

.venue_list li:last-of-type {
  margin-right: 0;
}

.v_ttl {
  margin-top: 14px;
  font-size: 14px;
  letter-spacing: 0.11em;
  word-wrap: break-word;
}

.v_img {
  aspect-ratio: 3/2;
}

.v_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.v_detail {
  margin-top: 7px;
}

.v_detail .v_rank {
  color: #c4a972;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.v_detail .v_rank::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 11px;
  margin-right: 2px;
  background-image: url(../img/top/rank_star.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.v_detail .v_price {
  font-size: 12px;
  letter-spacing: 0.12em;
}

.archive_btn a {
  position: relative;
  padding-left: 24px;
  font-size: 12px;
  letter-spacing: 0.12em;
  transition: .3s;
}

.archive_btn a:hover {
  opacity: .6;
}

.archive_btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 15px;
  height: 1px;
  background-color: #333;
}

/* ページネーション */
/*
.pagenation{
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.pagenation li a{
  display: block;
  padding: 5px 10px;
  color: #293271;
  font-size: 12px;
  transition: .3s;
}
.pagenation li a:hover{
  opacity: .6;
}

.pagenation .current a{
  position: relative;
  pointer-events: none;
}
.pagenation .current a::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: block;
  width: 6px;
  height: 1px;
  background-color: #293271;
}
.pagenation .num{
  margin-right: 11px;
}
.pagenation .next a{
  position: relative;
  padding-right: 30px;
}
.pagenation .next a::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%) rotate(-45deg);
  display: block;
  width: 5px;
  height: 5px;
  border-right: 1px solid #293271;
  border-bottom: 1px solid #293271;
}
*/

/* ページネーション */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: block;
  margin-right: 11px;
  padding: 5px 10px;
  color: #293271;
  font-size: 12px;
  transition: .3s;
}

.wp-pagenavi a:hover {
  opacity: .6;
}

.wp-pagenavi .current {
  position: relative;
  pointer-events: none;
}

.wp-pagenavi .current::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: block;
  width: 6px;
  height: 1px;
  background-color: #293271;
}

.wp-pagenavi .nextpostslink {
  position: relative;
  padding-right: 30px;
}

.wp-pagenavi .nextpostslink::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%) rotate(-45deg);
  display: block;
  width: 5px;
  height: 5px;
  border-right: 1px solid #293271;
  border-bottom: 1px solid #293271;
}

.wp-pagenavi .previouspostslink {
  position: relative;
  padding-left: 30px;
}

.wp-pagenavi .previouspostslink::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%) rotate(135deg);
  display: block;
  width: 5px;
  height: 5px;
  border-right: 1px solid #293271;
  border-bottom: 1px solid #293271;
}


/* ===================================
サイドバー エリアカテゴリー一覧
=================================== */
.stick_area {
  position: unset;
  top: 150px;
  margin-top: -10px;
}

.s_a_ttl {
  margin-top: 20px;
  margin-bottom: 3px;
  color: #293271;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.s_a_ttl:first-child {
  margin-top: 0;
}

.s_a_form {
    position: relative;
}

input.side_textarea {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #e2e2e2;
  padding: 20px 20px 15px;
  width: 100%;
  background-color: #fff;
  font-size: 12px;
  letter-spacing: 0.12em;
  background-image: url(../img/common/search_icon.svg);
  background-position: center right 20px;
  background-repeat: no-repeat;
  background-size: 20px;
}

input.side_textarea::placeholder {
  color: #bcbcbc;
}

.side_select_box {
  background-color: #fff;
  padding: 10px 20px;
}

.side_select_box li {
  border-bottom: 1px solid #e2e2e2;
}

.side_select_box select {
  width: 100%;
  border: none;
  -webkit-appearance: auto;
  appearance: auto;
  background: #fff;
  font-size: 14px;
  color: #293271;
}

/* フォームタイトル */
.side_form_ttl_box {
  cursor: pointer;
  position: relative;
  padding: 14px 10px;
}

.side_form_ttl_box .side_form_cross {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
}

.side_form_ttl_box .side_form_cross span {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  transform-origin: center;
  display: block;
  background-color: #333;
  width: 100%;
  height: 1px;
  transition: .3s;
}

_:lang(x)::-moz-placeholder,
.side_form_ttl_box .side_form_cross span:first-of-type {
  right: calc(50% - 1px);
}

.side_form_ttl_box .side_form_cross span:first-of-type {
  transform: translate(50%, -50%) rotate(90deg);
}

.side_form_ttl_box .side_form_cross.active span:first-of-type {
  transform: translate(50%, -50%) rotate(0deg);
}

/* フォーム中身 */
.side_form_item {
  display: none;
  padding-bottom: 13px;
}

.side_form_ttl {
  color: #293271;
  font-size: 14px;
  letter-spacing: 0.12em;
}

label {
  font-size: 12px;
  letter-spacing: 0.12em;
}

/* ラジオボタン */
.radio_form {}

.radio_form input[type=radio] {
  display: none;
}

.radio_form input[type=radio]+label {
  position: relative;
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  padding: 1px 0;
  padding-left: 36px;
  transition: .3s;
}

.radio_form input[type=radio]+label:hover {
  opacity: .6;
}

.radio_form input[type=radio]+label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  display: block;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 100%;
}

.radio_form input[type=radio]+label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  display: block;
  width: 5px;
  height: 5px;
  background-color: #293271;
  border-radius: 100%;
  opacity: 0;
  transition: .3s;
}

.radio_form input[type=radio]:checked+label {
  position: relative;
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  padding: 1px 0;
  padding-left: 36px;
}

.radio_form input[type=radio]:checked+label::after {
  opacity: 1;
}

/* チェックボタン */
.check_form {}

.check_form input[type=checkbox] {
  display: none;
}

.check_form input[type=checkbox]+label {
  position: relative;
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  padding: 1px 0;
  padding-left: 36px;
  transition: .3s;
}

.check_form input[type=checkbox]+label:hover {
  opacity: .6;
}

.check_form input[type=checkbox]+label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  display: block;
  width: 13px;
  height: 13px;
  background-color: #fff;
  border: 1px solid #e2e2e2;
}

.check_form input[type=checkbox]+label::after {
  content: "";
  position: absolute;
  top: 42%;
  left: 13px;
  transform: translateY(-50%) rotate(-45deg);
  display: block;
  width: 7px;
  height: 4px;
  border-left: 2px solid #293271;
  border-bottom: 2px solid #293271;
  opacity: 0;
  transition: .3s;
}

.check_form input[type=checkbox]:checked+label {
  position: relative;
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  padding: 1px 0;
  padding-left: 36px;
}

.check_form input[type=checkbox]:checked+label::after {
  opacity: 1;
}

/* 送信ボタン */
.side_form_btn {
  padding: 20px 0 30px;
  background-color: #fff;
}

button#sbtn {
  cursor: pointer;
  display: block;
  border: none;
  background-color: #293271;
  width: 200px;
  margin: auto;
  padding: 10px;
  font-family: 'Shippori Mincho', serif;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition: .3s;
}

button#sbtn:hover {
  opacity: .6;
}
.kekka {
  display: none;
}
@media screen and (max-width: 1100px) {
  .venue_list li a {
    padding: 15px;
  }

  .map_inner {
    padding: 15px;
  }
}

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

  .venue_list li {
    width: calc((100% / 2) - 5px);
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .venue_list li:last-of-type {
    margin-right: 10px;
  }

  .venue_list li:nth-of-type(3n) {
    margin-right: 10px;
  }

  .venue_list li:nth-of-type(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .sp-br {
    display: inline;
  }

  input.side_textarea {
    font-size: 16px;
  }

  .area .page_ttl {
    margin-bottom: 20px;
  }

  .area_category_inner {
    padding-bottom: 90px;
  }

  .cat_detal_box {
    flex-direction: column;
  }

  .row_change_box {
    margin-top: 10px;
  }

  .row_change_box .rc_ttl {
    margin-right: 0;
  }

  .row_change_box .rc_list_box {
    position: absolute;
    right: unset;
    left: 60px;
  }

  .archive_box {
    margin-bottom: 45px;
  }

  .venue_list {
    margin-bottom: 0;
  }

  .venue_list li a {
    height: 100%;
    padding: 8px;
  }

  .wp-pagenavi a,
  .wp-pagenavi span {
    padding: 5px 2px;
  }
}

@media screen and (max-width: 599px) {
  .right {
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 40px;
  }

  .cont_wrap {
    flex-direction: column-reverse;
  }

  .s_a_ttl {
    font-size: 14px;
  }

  .kekka {
    position: fixed;
    align-items: center;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    padding: 10px 20px;
    display: flex;
    z-index: 99;
  }

  .kekka p {
    width: 50%;
  }

  .kekka a {
    display: block;
    width: 50%;
    margin: 0 auto;
    background: #293271;
    text-align: center;
    border-radius: 30px;
    padding: 10px;
  }
}

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

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

/* 神社一覧 エリアごと */
.j_article_box .venue_list li {
  width: calc((100% / 4) - 15px);
  margin-right: 20px;
}

.j_article_box .venue_list li:nth-of-type(3n) {
  margin-right: 20px;
}

.j_article_box .venue_list li:nth-of-type(4n) {
  margin-right: 0px;
}

.v_detail .j_access {
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .j_article_box .venue_list li {
    width: calc((100% / 2) - 10px);
    margin-right: 20px;
  }

  .j_article_box .venue_list li:nth-of-type(3n) {
    margin-right: 20px;
  }

  .j_article_box .venue_list li:nth-of-type(4n) {
    margin-right: 0px;
  }

  .j_article_box .venue_list li:nth-of-type(2n) {
    margin-right: 0px;
  }
}

@media screen and (max-width: 599px) {
  .j_article_box .venue_list li {
    width: calc((100% / 2) - 5px);
    margin-right: 10px;
  }

  .j_article_box .venue_list li:nth-of-type(3n) {
    margin-right: 10px;
  }

  .j_article_box .venue_list li:nth-of-type(4n) {
    margin-right: 0px;
  }

  .j_article_box .venue_list li:nth-of-type(2n) {
    margin-right: 0px;
  }
}


#clear_sbtn {
	border:none;
	background-color: #fff0;
	position: absolute;
	right: 17px;
	bottom: 10px;
	width: 30px;
	height: 30px;
	cursor: pointer;
}