@charset "UTF-8";


/* 基本 */
* {
  box-sizing: border-box;
}

body {
  background: #FFFAEA;
}

main {
  margin-top: -56px;
}

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


/* LPヘッダー */
.l-header {
  position: relative;
  z-index: 100;
}

.l-header-inner .header-lp-black {
  background-color: rgba(1, 3, 6, 0.2);
  padding: 15px 15px;
}


.header-logo img {
  width: 160px;
}

@media screen and (max-width: 980px) {
.header-logo img {
  width: 110px;
}
}



/* MV */
.mv2024 {
  min-height: 400px;
  background: url(../images/gw2024/mv.png) no-repeat center center;
  background-size: cover;
}

.mv2024-inner {
  margin: 0 auto;
  max-width: 474px;
}
.mv2024-inner img{
  margin-top: 66px;
}

@media screen and (max-width: 767px) {
.mv2024 {
  /*min-height: 305px;*/
  margin-bottom: 10px;
  background: url(../images/gw2024/sp_mv_02.png) no-repeat center center;
  background-size: cover;
}

.mv2024-inner {
  max-width: 292px;
}
.mv2024-inner img{
  margin-top: 116px;
}
}


/* イベント */
.content {
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px;
}

.content-list {
  margin: 40px 0 60px;
}

.content-list li{
  box-shadow: 0 0 2px rgba(0,0,0,0.1);
  border-radius: 20px;
}

.content-list li + li{
  margin-top: 40px;
}

.content-list a {
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  color: #484848;
  text-decoration: none;
  background: #fff;
}

.content-img {
  width: 330px;
}

.content-img img {
  border-radius: 12px;
}

.content-img img.img-fit {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.content-detail {
  width: calc(100% - 350px);
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}

.content-detail h2 {
  width: 100%;
  margin-bottom: 15px;
  font-size: 24px;
  color: #FF6D01;
  line-height: 1.2;
}

.content-spot,
.content-date {
  width: 100%;
  margin-bottom: 7px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

.content-date {
  margin-bottom: 10px;
}

.content-spot span,
.content-date span {
  width: calc(100% - 95px);
}

span.event-label {
  width: 88px;
  height: 30px;
  line-height: 30px;
  background: #2BAFFF;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
}

.content-txt {
  width: 100%;
  font-size: 14px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
.content-list {
  margin: 0 0 60px;
}

.content-list li{
  border-radius: 16px;
}

.content-list li + li{
  margin-top: 30px;
}

.content-list a {
  padding: 15px;
  border-radius: 16px;
  display: block;
}

.content-img {
  width: 100%;
  margin-bottom: 10px;
}

.content-img img {
  border-radius: 10px;
}

.content-img img.img-fit {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.content-detail {
  width: 100%;
  display: block;
}

.content-detail h2 {
  margin-bottom: 10px;
  font-size: 18px;
}
.content-detail h2.narrow {
  letter-spacing: -0.08rem;
}

.content-spot,
.content-date {
  font-size: 14px;
}

.content-spot span,
.content-date span {
  border-radius: 13px;
  font-size: 12px;
  width: calc(100% - 77px);
}

span.event-label {
  width: 70px;
  height: 26px;
  line-height: 26px;
  font-size: 12px;
}
  

.content-txt {
  font-size: 12px;
}
}



/* フッター */
.breadcrumb-wrap {
  border: none;
  background: #f48d14;
}

.breadcrumb a,
.icon-arrow_left_thin::before,
.footer-sns-wrap .icon-line::before {
  color: #fff;
}

.l-banner-white,
.l-banner-gray {
  background: #fea53b;
}

.l-footer .l-footer-sub {
  border: none;
  background: #fea53b;
}

.l-footer,
.l-footer-navi {
   background: #f48d14;
}

@media screen and (max-width: 980px) {
footer .footer-main .l-footer-menu dd, footer .l-footer-sub .l-footer-menu dd {
  background: #fea53b !important;
}

footer .l-footer-sub .l-footer-menu {
  background: #f48d14 !important;
}
}


/* 終了表示 */
.event-end {
/*  opacity: 0.5;*/
  position: relative;
}
.event-end .content-list a {
  background: #ccc;
}


.event-end::before {
  content: 'This event has ended.'; /* data-hoverの値を表示 */
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  white-space: pre; /* これがないと改行が効かない */
  z-index: 103;
  text-shadow: 0 0 8px rgba(0,0,0,0.6);
}

.event-end::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
  transition: opacity 0.3s;
  z-index: 102;
  border-radius: 20px;
}


