@charset "UTF-8";
/* ----------------------------------------------------------------------
基本設定
---------------------------------------------------------------------- */
/* ----関数設定---- */
/* -------- */
html {
  font-size: 62.5%;
}
body {
  background: url(../images/background@2x.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt";
  color: #333;
  letter-spacing: 0.05em;
  font-size: clamp(1.6rem, 1.4vw, 1.8rem);
}
h1, h2, h3, h4, h5 {
  font-weight: bold;
}
ul {
  list-style: none;
  padding-left: 0;
}
p {
  line-height: 1.8;
}
a {
  text-decoration: none;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
a.button {
  opacity: 1;
  color: #FFF;
  display: block;
  background: #42210b;
  border: solid 2px #42210b;
  font-weight: bold;
  border-radius: 0;
  margin: 16px auto;
  width: 90%;
  max-width: 400px;
  height: 30px;
  line-height: 30px;
  position: relative;
  text-align: center;
  font-size: 1.6rem;
}
a.button:hover {
  border: solid 2px #FFF;
}
a img {
  transition: 0.3s;
}
a:hover img {
  opacity: 0.8;
}
img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  border-radius: 5px;
}
.pc {
  display: none;
}
.ipad {
  display: none;
}
.sp {
  display: inline-block;
}
.inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1400px;
}
.inner.narrow {
  max-width: 1100px;
}
.aligncenter {
  display: block;
  margin: 0 auto;
}
.texts {
  font-size: 1.4rem;
  font-weight: normal;
}
.bg {
  background: #f1f6fb;
}
.mt50 {
  margin-top: 50px !important;
}
.mb0 {
  margin-bottom: 0 !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.pb50 {
  padding-bottom: 50px !important;
}
.clearfix::after {
  content: " ";
  display: block;
  clear: both;
}
#breadcrumbs {
  margin-top: 5px;
  font-size: 1.4rem;
  color: #999;
}
@media screen and (min-width: 768px) {
  .pc {
    display: inline-block;
  }
  .pc.block {
    display: block;
  }
  .ipad {
    display: inline-block;
  }
  .sp {
    display: none;
  }
  .inner {
    width: 94%;
  }
  a.button {
    height: 50px;
    line-height: 50px;
    font-size: 1.8rem;
  }
  .text-center-pc {
    text-align: center;
  }
  .text110 {
    font-size: 110%;
  }
}
/* ----------------------------------------------------------------------
アニメーション
---------------------------------------------------------------------- */
/* 画面に入ったら表示 */
.fadein {
  opacity: 0;
  transition: all 0.2s ease-out;
}
.fadein.bottom {
  transform: translate3d(0, 20px, 0);
  transition: all 0.2s ease-out;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: all 2s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (max-width: 767px) {
  .fadein {
    opacity: 1;
  }
  .fadein.bottom {
    transform: translate3d(0, 0, 0);
  }
}
/* ----------------------------------------------------------------------
ヘッダー
---------------------------------------------------------------------- */
header a {
  color: #FFF;
}
header a:hover {
  color: #CCC;
}
header nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 12px auto;
}
header nav .link {
  text-align: right;
}
.header {
  text-align: center;
}
@media (max-width: 375px) {
  .header {
    margin-top: 30px;
  }
}
@media (min-width: 376px) and (max-width: 1024px) {
  .header {
    margin-top: calc((27px * (100vw - 375px)) / (649px) + 30px);
  }
}
@media (min-width: 1025px) {
  .header {
    margin-top: 57px;
  }
}
.title {
  text-align: center;
  color: #FFF;
  font-size: clamp(24px, 5.429vw, 52px);
}
@media (max-width: 375px) {
  .title {
    margin-top: 10px;
  }
}
@media (min-width: 376px) and (max-width: 1024px) {
  .title {
    margin-top: calc((22px * (100vw - 375px)) / (649px) + 10px);
  }
}
@media (min-width: 1025px) {
  .title {
    margin-top: 32px;
  }
}
.title img {
  display: block;
  margin: 10px auto;
}
.search-results .header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.search-results .header .title {
  margin-top: 0;
}
@media (min-width: 376px) and (max-width: 1024px) {
  .header {
    margin-top: min(calc(30vw / 3.76), 57px);
  }
  .title {
    margin-top: min(calc(10vw / 3.76), 32px);
  }
}
@media screen and (min-width: 768px) {
  header nav .link {
    order: 2;
  }
}
@media screen and (max-width: 520px) {
  header nav .link {
    width: 100%;
    text-align: right;
    font-size: 12px;
    margin-bottom: 20px;
  }
  header nav .site_title {
    text-align: center;
    width: 100%;
  }
}
/* ----------------------------------------------------------------------
コンテンツ
---------------------------------------------------------------------- */
main.inner {
  background: rgba(255, 255, 255, 0.8);
  margin-top: 34px;
  max-width: 882px;
}
@media (max-width: 375px) {
  main.inner {
    padding-top: 24px;
  }
}
@media (min-width: 376px) and (max-width: 1024px) {
  main.inner {
    padding-top: calc((30px * (100vw - 375px)) / (649px) + 24px);
  }
}
@media (min-width: 1025px) {
  main.inner {
    padding-top: 54px;
  }
}
@media (max-width: 375px) {
  main.inner {
    padding-bottom: 24px;
  }
}
@media (min-width: 376px) and (max-width: 1024px) {
  main.inner {
    padding-bottom: calc((30px * (100vw - 375px)) / (649px) + 24px);
  }
}
@media (min-width: 1025px) {
  main.inner {
    padding-bottom: 54px;
  }
}
@media (max-width: 375px) {
  main.inner {
    padding-left: 24px;
  }
}
@media (min-width: 376px) and (max-width: 1024px) {
  main.inner {
    padding-left: calc((46px * (100vw - 375px)) / (649px) + 24px);
  }
}
@media (min-width: 1025px) {
  main.inner {
    padding-left: 70px;
  }
}
@media (max-width: 375px) {
  main.inner {
    padding-right: 24px;
  }
}
@media (min-width: 376px) and (max-width: 1024px) {
  main.inner {
    padding-right: calc((46px * (100vw - 375px)) / (649px) + 24px);
  }
}
@media (min-width: 1025px) {
  main.inner {
    padding-right: 70px;
  }
}
main.inner h3 {
  color: #42210b;
  margin-bottom: 12px;
}
@media (max-width: 375px) {
  main.inner h3 {
    margin-top: 30px;
  }
}
@media (min-width: 376px) and (max-width: 1024px) {
  main.inner h3 {
    margin-top: calc((20px * (100vw - 375px)) / (649px) + 30px);
  }
}
@media (min-width: 1025px) {
  main.inner h3 {
    margin-top: 50px;
  }
}
main.inner h3.mt0 {
  margin-top: 0;
}
main.inner #search select {
  background: #FFF;
  cursor: pointer;
  -webkit-appearance: auto;
  appearance: auto;
  padding: 5px 10px;
  border-radius: 5px;
  margin-right: 5px;
}
main.inner #search input[type="text"] {
  background: #FFF;
  padding: 16px 20px;
  border-radius: 5px;
  max-width: 100%;
}
main.inner #search input[type="text"]#keyword {
  width: 100%;
}
main.inner #search .search-info-date input {
  background: url(../images/icon_calendar.png) no-repeat center right 7px / 24px 24px, #FFF;
}
main.inner #search ul.checkbox {
  display: flex;
  gap: 20px;
}
main.inner #search ul.checkbox input[type=checkbox] {
  display: none;
}
main.inner #search ul.checkbox input[type=checkbox] + label {
  padding-left: 30px;
  position: relative;
}
main.inner #search ul.checkbox input[type=checkbox] + label:before {
  display: block;
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background-color: #FFF;
}
main.inner #search ul.checkbox input[type=checkbox]:checked + label:after {
  display: block;
  position: absolute;
  content: "";
  width: 14px;
  height: 7px;
  border-bottom: 3px solid;
  border-left: 3px solid;
  border-color: #fff;
  transform: rotate(-45deg);
  top: 50%;
  left: 4px;
  margin-top: -3px;
}
main.inner #search ul.checkbox input[type=checkbox]:checked + label:before {
  background-color: #42210b;
}
@media (max-width: 375px) {
  main.inner #search .submit_button {
    margin-top: 30px;
  }
}
@media (min-width: 376px) and (max-width: 1024px) {
  main.inner #search .submit_button {
    margin-top: calc((20px * (100vw - 375px)) / (649px) + 30px);
  }
}
@media (min-width: 1025px) {
  main.inner #search .submit_button {
    margin-top: 50px;
  }
}
main.inner #search .submit_button input {
  background: #42210b;
  color: #FFF;
  text-align: center;
  display: block;
  width: 100%;
  padding: 16px;
  font-weight: bold;
}
main.inner #search .number {
  color: #42210b;
  font-weight: bold;
  margin-bottom: 30px;
}
@media (max-width: 375px) {
  main.inner #search .number {
    margin-top: 30px;
  }
}
@media (min-width: 376px) and (max-width: 1024px) {
  main.inner #search .number {
    margin-top: calc((20px * (100vw - 375px)) / (649px) + 30px);
  }
}
@media (min-width: 1025px) {
  main.inner #search .number {
    margin-top: 50px;
  }
}
main.inner #search .requirements {
  background: #FFF;
  padding: 20px;
  font-size: clamp(1.4rem, 2.143vw, 1.6rem);
}
main.inner #search .requirements dl {
  margin-top: 10px;
}
main.inner #search .requirements dl.mt0 {
  margin-top: 0;
}
main.inner #search table {
  font-size: clamp(1.4rem, 2.143vw, 1.6rem);
}
main.inner #search table thead {
  background: #42210b;
  color: #FFF;
}
main.inner #search table thead th {
  padding: 10px;
  vertical-align: middle;
}
main.inner #search table tbody tr {
  border-bottom: solid 1px #333;
}
main.inner #search table tbody tr td {
  padding: 10px;
}
main.inner #search table tbody tr td:nth-child(1) {
  width: 125px;
}
main.inner #search table tbody tr td:nth-child(3) {
  width: 170px;
}
main.inner #search a.button {
  margin-top: 80px;
}
main.inner #search .event_date {
  display: flex;
  align-items: center;
  gap: 16px;
}
main.inner #search .event_date .order {
  display: flex;
  flex-flow: column;
}
main.inner #search .event_date .order .sortArrow {
  width: 12px;
}
main.inner #search .event_date .order .sortArrow .cls-1 {
  fill: #fff;
}
.wp-pagenavi {
  margin-top: 50px;
  text-align: center;
}
.wp-pagenavi a, .wp-pagenavi span {
  background: #42210b;
  color: #FFF;
  margin: 0;
  padding: 8px;
  border: solid 1px #e3dcd3;
  display: inline-block;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
  border-color: #42210b;
  background: #FFF;
  color: #42210b;
}
@media screen and (min-width: 768px) {
  #search .search-info-date {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  #search .requirements dl {
    display: flex;
  }
  #search .requirements dl dt {
    width: 110px;
  }
}
@media screen and (max-width: 520px) {
  main.inner #search .requirements dt {
    margin-bottom: 5px;
  }
  main.inner #search table thead tr {
    display: flex;
    align-items: center;
  }
  main.inner #search table thead tr th {
    padding: 10px;
  }
  main.inner #search table tbody tr td {
    display: block;
    padding: 5px 0;
  }
}
@media (min-width: 376px) and (max-width: 1024px) {
  main.inner {
    padding: min(calc(24vw / 3.76), 54px) min(calc(24vw / 3.76), 70px);
  }
  main.inner h3 {
    margin-top: min(calc(30vw / 3.76), 50px);
  }
  main.inner .submit_button, main.inner .number {
    margin-top: min(calc(30vw / 3.76), 50px);
  }
}
/* ----------------------------------------------------------------------
フッター
---------------------------------------------------------------------- */
footer {
  color: #FFF;
  margin: 46px auto;
}
footer .sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 21px;
}
footer #copyright {
  font-size: 12px;
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  #copyright {
    text-align: center;
  }
}
