@charset "UTF-8";

/* =====================================
   1. 基本設定 (SP基準)
   ===================================== */
.contents {
  width: 100%;
  margin: 0 auto;
  color: #191919;
  background: #F21801;
  font-family: "Noto Sans JP", serif;
  overflow-x: hidden;
}

.contents * {
  box-sizing: border-box;
}

.contents *:focus {
  outline: none;
}

.contents img {
  display: block;
  max-width: 100%;
}

.contents a {
  font-weight: 500;
  text-decoration: none;
  color: inherit;
}

.pc {
  display: none !important;
}

.sp {
  display: block !important;
}

/* =====================================
   2. 各セクション設定
   ===================================== */
/* リード文 */
.lead-block {
  margin: 10px 0 0;
  padding: 15px 20px 17px;
  background: #fff;
}

.lead-block p {
  margin: 0;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.lead-block .text-red {
  font-weight: 700;
  color: #F21801;
}

/* =====================================
   アイテム共通設定 (スマホ用ベース)
   ===================================== */
.item-list {
  list-style: none;
  margin: 30px 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.item-list li {
  margin: 0;
  background-color: #fff;
  border-radius: 10px;
  overflow: visible;
  box-shadow: 0 5px 0 rgba(163, 13, 4, 1);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.item-list li a {
  display: flex;
  align-items: center;
  padding: 10px 40px 10px 15px;
  text-decoration: none;
  color: #191919;
  width: 100%;
  box-sizing: border-box;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.item-list li a img {
  width: 38%;
  height: auto;
  object-fit: contain;
  margin-right: 20px;
  filter: drop-shadow(2px 3px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.25s ease;
}

.item-list li::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  background-color: #F21801;
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);

  background-image: url("/img/usr/event/esyuzei/arrow_wh.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;

  transition: transform 0.25s ease;
}


/* --- ホバー --- */
.item-list li:hover::after {
  transform: translateY(-50%) translateX(4px);
}

.item-list li:hover img {
  transform: scale(1.06);
}


/* =====================================
   PC用設定 (780px以上)
   ===================================== */
@media only screen and (min-width: 780px) {
  .contents {
    width: 900px;
  }

  .pc {
    display: block !important;
  }

  .sp {
    display: none !important;
  }

  /* リード文 */
  .lead-block {
    margin: 10px 0 0;
    padding: 20px 20px 24px;
  }

  .lead-block p {
    margin: 0;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
  }

  /* アイテム (PC) ---------------------- */
  .item-list {
    margin: 35px 30px;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 16px;
  }

  .item-list li {
    width: 33%;
    margin: 0;
  }

  .item-list li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    height: 100%;
  }

  .item-list li a span {
    margin-top: auto;
    margin-bottom: auto;
  }

  .item-list li a img {
    width: 80%;
    margin: 8px;
  }

  .item-list li::after {
    width: 38px;
    height: 38px;
    right: -8px;
    bottom: -8px;
    top: auto;
    transform: none;
  }

  /* --- ホバー (PC) -- */
  .item-list li:hover::after {
    transform: translateX(3px);
  }
}
