/* 一覧ページ */
#sec .ttl_wrap{
  padding-top: 130px;
  padding-bottom: 80px;
}
#sec .ttl_wrap .sec_ttl{
  position: relative;
  display: inline-block;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  color: #ac9268;
  text-align: center;
  padding-bottom: 0.2em;
  padding-right: 3em;
  padding-left: 3em;
}
#sec .ttl_wrap .sec_ttl::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: url(../../common/img/line_01.png);
  background-size: 100% 100%;
}

#sec .inner{
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 104px;
}


.event-lists {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #f3efe8;
} 

.event-card {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 30px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.event-card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.event-card-header {
  position: relative;
  background: #ac9268;
  color: white;
  padding: 15px 25px;
  text-align: left;
}

.event-type-badge {
  display: inline-block;
  background-color: rgba(255,255,255,0.2);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-title {
  margin: 0 0 10px 0;
  font-size: 22px;
  font-weight: 500;
}

.event-title a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.event-title a:hover {
  color: #ffd700;
}

.event-subtitle {
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.4;
}

.event-card-content {
  padding: 25px;
  padding-top: 35px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}

.event-info {
  flex: 1;
}

.event-date-time,
.event-target-price,
.event-venue {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
  line-height: 2;
}

.event-date-time:last-child,
.event-target-price:last-child,
.event-venue:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.event-date-time p,
.event-target-price p,
.event-venue p {
  margin: 5px 0;
  line-height: 1.5;
  color: #333;
}

.icon_lists{
  position: absolute;
  top: 15px;
  right: 25px;
  display: flex;
  font-size: 14px;
  justify-content: flex-end;
  gap: .5em;
}

.icon_list{
  border: 1px solid #fff;
  color: #fff;
  padding: .2em .7em;
  border-radius: 3px;
}

.event-actions {
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}



/* 応募終了バッジ */
.icon_list.full {
  background-color: #e74c3c;
}

.btn-event-closed {
  background: #ebebeb;
  pointer-events: none;
  opacity: 1;
  cursor: not-allowed;
  border-radius: 1000px;
  text-align: center;
  color: #ac9268;
  border: 1px solid #ac9268;
}
.event_single .event-actions .btn-event-closed::after {
  content: none !important;
}

.btn-detail,
.btn-reservation {
  display: block;
  width: 100%;
  position: relative;
  text-align: center;
  display: block;
  font-size: 15px;
  color: #ac9268;
  border: 1px solid #ac9268;
  padding: .4em 0;
  border-radius: 1000px;
}
.btn-detail::after,
.btn-reservation::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 43px;
  height: 8px;
  background: url(../../common/img/arrow_04.svg);
  background-size: 100% 100%;
}

.no-events {
  text-align: center;
  padding: 60px 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  color: #666;
}

.no-events p {
  font-size: 18px;
  margin: 0;
}


/* 詳細ページ */

.event-header {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 2px solid #e0e0e0;
}
.event_single .event-type-badge {
  display: inline-block;
  background: #ac9268;
  color: #fff;
  padding: .5em 3em;
  border-radius: 20px;
  font-size: 9pt;
  margin-bottom: 1em;
}

.event_single .event-title {
  font-size: 18pt;
  font-weight: 500;
  margin: .2em 0;
}

.event-subtitle {
  font-size: 16px;
  margin: 10px 0;
}

/* 新しいリスト形式のレイアウト */
.event-info-list {
  margin-bottom: 80px;
}

.event-info-row {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #f3efe8;
}

.event-info-row:last-child {
  border-bottom: none;
}

.info-label {
  width: 120px;
  font-weight: bold;
  color: #ac9268;
  font-size: 16px;
  flex-shrink: 0;
  margin-right: 30px;
  letter-spacing: 0.1em;
}

.info-value {
  flex: 1;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

/* 対象タグのスタイル */
.target-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.target-tag {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #333;
  color: #333;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 9pt;
  font-weight: 500;
  text-align: center;
  min-width: 50px;
}

.event-description {
  margin: 40px 0;
  font-size: 11pt;
}

.event-description h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  padding-bottom: 10px;
}

.event-content-text {
  line-height: 1.8;
  color: #333;
}

.event-content-text hr {
  color: #e0e0e0;
}

.event-content-text img{
  height: auto;
  max-width: 100%;
}

.event-bnr-lists{
  width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.event-bnr-lists img{
  height: auto;
}

.btn-event-reservation,
.btn-back-to-list,
.btn-external-link {
  position: relative;
  text-align: center;
  display: block;
  font-size: 15px;
  color: #ac9268;
  border: 1px solid #ac9268;
  padding: .4em 0;
  border-radius: 1000px;
}

.event_single .event-actions {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.event_single .event-actions .btn{
  position: relative;
  width: 50%;
  padding: 0.8em 0;
}
.event_single .event-actions .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 43px;
  height: 8px;
  background: url(../../common/img/arrow_04.svg);
  background-size: 100% 100%;
}
.event_single .btn-back-to-list::after {
  content: none !important;
}

.btn-google-map{
  display: inline-block;
  font-size: 9pt;
  border: 1px solid #ac9268;
  color: #ac9268;
  padding: .4em 1.6em;
  margin-top: 0.6em;
  border-radius: 1000px;
}


@media(max-width:1600px){
  /* 一覧ページ */
  #sec .ttl_wrap{
    padding-top: 8.125vw;
    padding-bottom: 5vw;
  }
  #sec .ttl_wrap .sec_ttl{
    font-size: 1.875vw;
  }

  #sec .inner{
    width: 56.25vw;
    padding-bottom: 6.5vw;
  }


  .event-lists {
    padding-top: 6.25vw;
    padding-bottom: 6.25vw;
  } 

  .event-card {
    border-radius: 0.5vw;
    margin-bottom: 1.875vw;
  }

  .event-card-header {
    padding: 0.9375vw 1.5625vw;
  }

  .event-type-badge {
    padding: 0.375vw 0.75vw;
    border-radius: 0.9375vw;
    font-size: 0.75vw;
    margin-bottom: 0.625vw;
  }

  .event-title {
    margin: 0 0 0.625vw 0;
    font-size: 1.375vw;
  }

  .event-subtitle {
    font-size: 1vw;
  }

  .event-card-content {
    padding: 1.5625vw;
    padding-top: 2.1875vw;
    gap: 1.875vw;
  }
  .event-date-time,
  .event-target-price,
  .event-venue {
    margin-bottom: 0.9375vw;
    padding-bottom: 0.9375vw;
  }

  .event-date-time p,
  .event-target-price p,
  .event-venue p {
    margin: 0.3125vw 0;
  }

  .icon_lists{
    top: 0.9375vw;
    right: 1.5625vw;
    font-size: 0.875vw;
  }

  .event-actions {
    width: 17.5vw;
  }

  .btn-detail,
  .btn-reservation {
    font-size: 0.9375vw;
  }
  .btn-detail::after,
  .btn-reservation::after {
    right: 1.25vw;
    width: 2.6875vw;
    height: 0.5vw;
  }

  .no-events {
    padding: 3.75vw 1.25vw;
  }

  .no-events p {
    font-size: 1.125vw;
  }


  /* 詳細ページ */

  .event-header {
    padding-top: 6.25vw;
    padding-bottom: 1.875vw;
    margin-bottom: 2.5vw;
  }

  /* .event_single .event-title {
    font-size: 1.625vw;
  } */

  .event-subtitle {
    font-size: 1vw;
    margin: 0.625vw 0;
  }

  /* 新しいリスト形式のレイアウト */
  .event-info-list {
    margin-bottom: 5vw;
  }

  .event-info-row {
    padding: 1.25vw 0;
  }

  .info-label {
    width: 7.5vw;
    font-size: 11pt;
    margin-right: 1.875vw;
  }

  .info-value {
    font-size: 11pt;
  }

  /* 対象タグのスタイル */
  .target-tags {
    gap: 0.5vw;
  }

  .target-tag {
    padding: 0.25vw 0.75vw;
    min-width: 3.125vw;
  }

  .event-description {
    margin: 2.5vw 0;
  }

  .event-description h3 {
    font-size: 1.25vw;
    margin-bottom: 1.25vw;
    padding-bottom: 0.625vw;
  }

  .event-bnr-lists{
    width: 31.25vw;
    margin-bottom: 5vw;
    gap: 1.25VW;
  }

  .btn-event-reservation,
  .btn-back-to-list,
  .btn-external-link {
    font-size: 0.9375vw;
  }
  .event_single .event-actions .btn::after {
    right: 1.25vw;
    width: 2.6875vw;
    height: 0.5vw;
  }


}

@media(max-width:750px){
  /* 一覧ページ */
  #sec .ttl_wrap{
    padding-top: 15vw;
    padding-bottom: 15vw;
  }
  #sec .ttl_wrap .sec_ttl{
    font-size: 5.33vw;
    padding-right: 3em;
    padding-left: 3em;
  }
  #sec .ttl_wrap .sec_ttl::after{
    height: 1px;
  }

  #sec .inner{
    width: 86.66vw;
    padding-bottom: 9.53vw;
  }


  .event-lists {
    padding-top: 8vw;
    padding-bottom: 8vw;
    background: #f3efe8;
  } 

  .event-card {
    background-color: #fff;
    border-radius: 2vw;
    margin-bottom: 4vw;
    overflow: hidden;
    transition: box-shadow 0.3s;
  }

  .event-card:hover {
    box-shadow: 0 1vw 2vw rgba(0,0,0,0.15);
  }

  .event-card-header {
    position: relative;
    background: #ac9268;
    color: white;
    padding: 3vw;
    text-align: left;
  }

  .event-type-badge {
    display: inline-block;
    background-color: rgba(255,255,255,0.2);
    padding: 1vw 2vw;
    border-radius: 3vw;
    font-size: 2.5vw;
    font-weight: bold;
    margin-bottom: 2vw;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .event-title {
    margin: 0 0 2vw 0;
    font-size: 4vw;
    font-weight: 500;
  }

  .event-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }

  .event-title a:hover {
    color: #ffd700;
  }

  .event-subtitle {
    margin: 0;
    font-size: 3vw;
    opacity: 0.9;
    line-height: 1.4;
  }

  .event-card-content {
    padding: 4vw;
    display: block;
  }

  .event-info {
    width: 100%;
    margin-bottom: 4vw;
  }

  .event-date-time,
  .event-target-price,
  .event-venue {
    margin-bottom: 3vw;
    padding-bottom: 3vw;
    border-bottom: 0.3vw solid #f0f0f0;
    line-height: 1.6;
    font-size: 3vw;
  }

  .event-date-time:last-child,
  .event-target-price:last-child,
  .event-venue:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .event-date-time p,
  .event-target-price p,
  .event-venue p {
    margin: 1vw 0;
    line-height: 1.5;
    color: #333;
    font-size: 3vw;
  }

  .icon_lists{
    position: absolute;
    top: 3vw;
    right: 3vw;
    display: flex;
    font-size: 2.5vw;
    justify-content: flex-end;
    gap: 1vw;
  }

  .icon_list{
    border: 0.3vw solid #fff;
    color: #fff;
    padding: 0.5vw 1.5vw;
    border-radius: 0.8vw;
  }

  .event-actions {
    width: 100%;
  }

  .btn-detail,
  .btn-reservation {
    display: block;
    position: relative;
    text-align: center;
    font-size: 3.5vw;
    color: #ac9268;
    border: 0.3vw solid #ac9268;
    padding: 2vw 0;
    border-radius: 50vw;
    margin-bottom: 2vw;
  }
  .btn-detail::after,
  .btn-reservation::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4vw;
    transform: translateY(-50%);
    width: 8vw;
    height: 2vw;
    background: url(../../common/img/arrow_04.svg);
    background-size: 100% 100%;
  }

  .no-events {
    text-align: center;
    padding: 8vw 4vw;
    background-color: #f8f9fa;
    border-radius: 2vw;
    color: #666;
  }

  .no-events p {
    font-size: 3.5vw;
    margin: 0;
  }


  /* 詳細ページ */

  .event-header {
    text-align: center;
    padding-top: 8vw;
    padding-bottom: 4vw;
    margin-bottom: 6vw;
    border-bottom: 0.5vw solid #e0e0e0;
  }
  .event_single .event-type-badge {
    display: inline-block;
    background: #ac9268;
    color: #fff;
    padding: 1vw 6vw;
    border-radius: 5vw;
    font-size: 8pt;
    margin-bottom: 2vw;
  }

  .event_single .event-title {
    /* font-size: 5vw; */
    font-size: 15pt;
    font-weight: 500;
    margin: 0.5vw 0;
  }

  .event-subtitle {
    font-size: 3.5vw;
    margin: 2vw 0;
  }

  /* 新しいリスト形式のレイアウト */
  .event-info-list {
    margin-bottom: 10vw;
  }

  .event-info-row {
    display: block;
    padding: 4vw 0;
    border-bottom: 0.3vw solid #f3efe8;
  }

  .event-info-row:last-child {
    border-bottom: none;
  }

  .info-label {
    width: 100%;
    font-weight: bold;
    color: #ac9268;
    font-size: 11pt;
    margin-bottom: 1.2vw;
    letter-spacing: 0.1em;
  }

  .info-value {
    width: 100%;
    color: #333;
    font-size: 11pt;
    line-height: 1.6;
  }

  /* 対象タグのスタイル */
  .target-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 2vw;
  }

  .target-tag {
    display: inline-block;
    background-color: #fff;
    border: 0.3vw solid #333;
    color: #333;
    padding: 1vw 2vw;
    border-radius: 1vw;
    font-size: 9pt;
    font-weight: 500;
    text-align: center;
    min-width: 12vw;
  }

  .event-description {
    margin: 6vw 0;
  }

  .event-description h3 {
    font-size: 4vw;
    font-weight: bold;
    margin-bottom: 3vw;
    color: #333;
    padding-bottom: 2vw;
  }

  .event-content-text {
    line-height: 1.8;
    color: #333;
  }

  .event-bnr-lists{
    width: 90%;
    margin-bottom: 10vw;
    gap: 3vw;
  }

  .btn-event-reservation,
  .btn-back-to-list,
  .btn-external-link {
    position: relative;
    text-align: center;
    display: block;
    font-size: 3.5vw;
    color: #ac9268;
    border: 0.3vw solid #ac9268;
    padding: 2vw 0;
    border-radius: 50vw;
    margin-bottom: 2vw;
  }

  .event_single .event-actions {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .event_single .event-actions .btn{
    position: relative;
    display: block;
    width: 100%;
    padding: 2vw 0;
    margin-bottom: 4vw;
  }
  .event_single .event-actions .btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4vw;
    transform: translateY(-50%);
    width: 8vw;
    height: 2vw;
    background: url(../../common/img/arrow_04.svg);
    background-size: 100% 100%;
  }
  .event_single .btn-back-to-list::after {
    content: none !important;
  }

  .btn-google-map {
    font-size: 8pt;
  }
}