@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* ===================================================
   レスポンシブ用のブレイクポイント変数
   =================================================== */
* {
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden; /* 装飾要素などによる横スクロール発生を防ぐ安全策 */
}

/* ===================================================
   d-1〜d-12用 アニメーション定義（4種類でメリハリをつける）
   =================================================== */
/* 1. ふわふわ浮く（大きめ・安定感のある要素向け） */
@keyframes floaty {
  0% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-14px) rotate(2deg);
  }
  100% {
    transform: translateY(0) rotate(-2deg);
  }
}
/* 2. 元気に跳ねる（小さめ・キャラクター性のある要素向け） */
@keyframes bounce {
  0% {
    transform: translateY(0) scale(1);
  }
  20% {
    transform: translateY(-18px) scale(1.03);
  }
  40% {
    transform: translateY(0) scale(0.98);
  }
  55% {
    transform: translateY(-8px) scale(1.01);
  }
  70% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
/* 3. 左右に揺れる（斜め配置・アクセント要素向け） */
@keyframes wobble {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
/* 4. 呼吸するように拡大縮小（注目させたい要素向け） */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/* ===================================================
   header h1（ロゴ）用アニメーション
   =================================================== */
@keyframes headerPop {
  0% {
    opacity: 0;
    transform: translateY(-60px) scale(0.9);
  }
  55% {
    opacity: 1;
    transform: translateY(12px) scale(1.04);
  }
  75% {
    transform: translateY(-6px) scale(0.98);
  }
  90% {
    transform: translateY(2px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes headerBreath {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.015);
  }
  100% {
    transform: scale(1);
  }
}
header {
  background: url(img/head-bk.png) top center repeat-x;
  background-size: cover;
}
header h1 {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 0 100px;
}
header h1 img {
  width: 100%;
  animation: headerPop 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) both, headerBreath 4s ease-in-out 1.1s infinite;
}
@media (max-width: 768px) {
  header h1 {
    padding: 10px 20px 60px;
  }
}
@media (max-width: 480px) {
  header h1 {
    padding: 10px 16px 40px;
  }
}

.contents {
  background: url(img/contents-bk.png) no-repeat;
  background-size: cover;
  background-position: top center;
  padding-bottom: 3rem;
}
@media (max-width: 480px) {
  .contents {
    background-position: top center;
    background-size: cover;
  }
}

.container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 4rem;
  padding-top: 8rem;
  padding-left: 20px;
  padding-right: 20px;
}
.container h2 {
  background: #fff;
  width: 25%;
  margin: 0 auto;
  padding: 0.7rem 0;
  text-align: center;
  border: 0.3rem solid #158fc9;
  border-radius: 2rem;
  font-size: 1.2rem;
  color: #158fc9;
}
.container .section-heading {
  position: relative;
  width: 100%;
  padding: 42px 20px 34px;
  text-align: center;
}
.container .section-heading h3 {
  position: relative;
  display: inline-block;
  margin-top: 3rem;
  color: #231815;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
.container .section-heading h3::before,
.container .section-heading h3::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2px;
  height: 92px;
  background: #231815;
  transform-origin: center;
}
.container .section-heading h3::before {
  left: -90px;
  transform: translateY(-50%) rotate(-22deg);
}
.container .section-heading h3::after {
  right: -90px;
  transform: translateY(-50%) rotate(22deg);
}
.container #event-main {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: nowrap;
  gap: 1rem;
}
.container #event-main .event-main-img {
  flex: 0 1 31%;
  width: 31%;
}
.container #event-main .event-main-img img {
  display: block;
  width: 100%;
  height: auto;
}
.container .activity-text {
  width: 560px;
  max-width: 100%;
  margin: 2rem auto 0;
  padding: 18px 16px;
  color: #1f1715;
}
.container .activity-text p {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.08em;
}
.container p.active-last {
  margin-top: 3rem;
}
.container .activity-text__circle {
  display: inline-block;
  margin-right: 4px;
  font-weight: 700;
}
.container .activity-text__line {
  display: inline;
}
.container .activity-text__indent {
  display: inline-block;
  padding-left: 1.8em;
}
.container .activity-text__small {
  font-size: 0.72em;
  font-weight: 900;
  letter-spacing: 0.04em;
}
@media (max-width: 992px) {
  .container {
    margin-top: 3rem;
    padding-top: 5rem;
  }
  .container h2 {
    width: 45%;
  }
  .container .section-heading h3 {
    font-size: 1.7rem;
  }
  .container .section-heading h3::before,
  .container .section-heading h3::after {
    height: 60px;
  }
  .container .section-heading h3::before {
    left: -55px;
  }
  .container .section-heading h3::after {
    right: -55px;
  }
}
@media (max-width: 768px) {
  .container {
    margin-top: 2rem;
    padding-top: 3rem;
    padding-left: 16px;
    padding-right: 16px;
  }
  .container h2 {
    width: 60%;
    font-size: 1.05rem;
  }
  .container .section-heading h3 {
    font-size: 1.4rem;
  }
  .container .section-heading h3::before,
  .container .section-heading h3::after {
    height: 40px;
  }
  .container .section-heading h3::before {
    left: -36px;
  }
  .container .section-heading h3::after {
    right: -36px;
  }
  .container #event-main {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
  }
  .container #event-main .event-main-img {
    width: 70%;
    flex: 0 1 auto;
  }
  .container .activity-text p {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .container {
    margin-top: 1.5rem;
    padding-top: 2rem;
    padding-left: 12px;
    padding-right: 12px;
  }
  .container h2 {
    width: 75%;
    font-size: 0.95rem;
  }
  .container .section-heading {
    padding: 24px 10px 20px;
  }
  .container .section-heading h3 {
    font-size: 1.2rem;
  }
  .container .section-heading h3::before,
  .container .section-heading h3::after {
    display: none;
  }
  .container #event-main .event-main-img {
    width: 90%;
  }
  .container .activity-text {
    padding: 12px 8px;
  }
  .container .activity-text p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

#sche {
  background: #fff5d7;
  margin-top: 3rem;
  border-radius: 1rem;
  padding: 2rem 3rem;
}
#sche #sche-img {
  width: 10%;
  margin: 0 auto;
}
#sche #sche-date {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#sche #sche-date p {
  width: 140px;
  margin-bottom: 0.6rem;
  color: #158fc9;
  font-weight: 600;
  letter-spacing: 0.1rem;
}
#sche #sche-date .month {
  font-size: 20px;
}
#sche #sche-date .date {
  font-size: 40px;
}
#sche #sche-date .day {
  font-size: 13px;
}
#sche #sche-date #pink {
  color: #ee869a !important;
}
@media (max-width: 768px) {
  #sche {
    padding: 1.5rem 1.2rem;
  }
  #sche #sche-img {
    width: 20%;
  }
  #sche #sche-date {
    justify-content: center;
    gap: 0.4rem;
  }
  #sche #sche-date p {
    width: 30%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  #sche {
    padding: 1.2rem 0.8rem;
  }
  #sche #sche-img {
    width: 30%;
  }
  #sche #sche-date p {
    width: 45%;
  }
  #sche #sche-date .date {
    font-size: 32px;
  }
  #sche #sche-date .month {
    font-size: 16px;
  }
}

#info {
  background: #fdeeed;
  width: 70%;
  margin: 0 auto;
  margin-top: 2rem;
  padding: 2rem 0;
  border-radius: 1rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}
#info .info-img {
  width: 28%;
}
#info .info-img img {
  width: 100%;
}
@media (max-width: 768px) {
  #info {
    width: 90%;
    flex-direction: column;
    align-items: center;
  }
  #info .info-img {
    width: 60%;
  }
}
@media (max-width: 480px) {
  #info .info-img {
    width: 80%;
  }
}

#tenki {
  margin-top: 1.6rem;
  font-size: 1rem;
  text-align: center;
}
@media (max-width: 480px) {
  #tenki {
    font-size: 0.85rem;
    padding: 0 8px;
  }
}

#price {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
#price #price-img {
  width: 49%;
}
@media (max-width: 768px) {
  #price {
    gap: 0.8rem;
  }
  #price #price-img {
    width: 48%;
  }
}
@media (max-width: 480px) {
  #price {
    justify-content: center;
  }
  #price #price-img {
    width: 80%;
  }
}

#map {
  margin-top: 2rem;
}
#map img {
  width: 100%;
  height: auto;
}

#ichigoenlink {
  width: 1000px;
  max-width: 100%;
  margin: 7rem auto 0;
  padding: 0 16px;
}
@media (max-width: 768px) {
  #ichigoenlink {
    margin-top: 4rem;
  }
}
@media (max-width: 480px) {
  #ichigoenlink {
    margin-top: 3rem;
  }
}

/* ===================================================
   フッター：#foot-contentsの上部余白をスマホでしっかり確保する
   =================================================== */
footer {
  background: url(img/footer-bk.png) top center repeat-x;
  background-size: auto 100%;
  margin-top: 2rem;
  position: relative;
}
footer #foot-contents {
  border-top: 0.1rem solid #fff;
  width: 1300px;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 17rem;
  padding-left: 16px;
  padding-right: 16px;
}
footer #foot-contents .spon {
  background: #961e23;
  text-align: center;
  padding: 0.3rem 0;
  font-size: 1.7rem;
  color: #fff;
}
footer #foot-contents .sponlogo {
  width: 50%;
  margin: 2rem auto 0;
}
footer #foot-contents #spon-2 {
  margin-top: 2rem;
}
footer #foot-contents #spon-2 .sponlogo {
  width: 25%;
}
footer #foot-contents #spon-2 #spon-main {
  width: 28%;
  margin: 2rem auto;
}
footer #foot-contents #spon-2 #spon-2 {
  margin: 0 auto;
}
footer #foot-contents #spon-2 #spon-2 .spon {
  margin: 0 0 12px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
footer #foot-contents #spon-2 #spon-2 > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 8px;
}
footer #foot-contents #spon-2 .sponsor-banner {
  display: grid;
  grid-template-columns: repeat(30, 1fr);
  grid-template-rows: calc(60px + 0.6rem) calc(36px + 0.6rem) calc(32px + 0.6rem);
  height: calc(130px + 1.8rem);
  background: #d90000;
  border: 1px solid #fff;
  box-sizing: border-box;
  overflow: hidden;
}
footer #foot-contents #spon-2 .sponsor-banner .sponsor-cell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  background: #d90000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0.3rem 6px;
}
footer #foot-contents #spon-2 .sponsor-banner .sponsor-cell img {
  display: block;
  width: auto;
  height: auto;
  max-width: 96%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer #foot-contents #spon-2 .sponsor-banner .cell-kenmin {
  grid-column: 1/7;
  grid-row: 1/2;
}
footer #foot-contents #spon-2 .sponsor-banner .cell-kenmin img {
  max-width: 97%;
  max-height: 92%;
}
footer #foot-contents #spon-2 .sponsor-banner .cell-gas {
  grid-column: 7/13;
  grid-row: 1/2;
}
footer #foot-contents #spon-2 .sponsor-banner .cell-gas img {
  max-width: 95%;
  max-height: 88%;
}
footer #foot-contents #spon-2 .sponsor-banner .cell-rex {
  grid-column: 13/19;
  grid-row: 1/2;
}
footer #foot-contents #spon-2 .sponsor-banner .cell-rex img {
  max-width: 94%;
  max-height: 88%;
}
footer #foot-contents #spon-2 .sponsor-banner .cell-nijo {
  grid-column: 19/25;
  grid-row: 1/2;
}
footer #foot-contents #spon-2 .sponsor-banner .cell-nijo img {
  max-width: 96%;
  max-height: 88%;
}
footer #foot-contents #spon-2 .sponsor-banner .cell-midolink {
  grid-column: 25/31;
  grid-row: 1/2;
  border-right: none;
}
footer #foot-contents #spon-2 .sponsor-banner .cell-midolink img {
  max-width: 96%;
  max-height: 88%;
}
footer #foot-contents #spon-2 .sponsor-banner .cell-yao {
  grid-column: 1/11;
  grid-row: 2/3;
}
footer #foot-contents #spon-2 .sponsor-banner .cell-yao img {
  max-width: 92%;
  max-height: 86%;
}
footer #foot-contents #spon-2 .sponsor-banner .cell-tsk {
  grid-column: 11/21;
  grid-row: 2/3;
}
footer #foot-contents #spon-2 .sponsor-banner .cell-tsk img {
  max-width: 92%;
  max-height: 86%;
}
footer #foot-contents #spon-2 .sponsor-banner .cell-imacs {
  grid-column: 21/31;
  grid-row: 2/3;
  border-right: none;
}
footer #foot-contents #spon-2 .sponsor-banner .cell-imacs img {
  max-width: 92%;
  max-height: 86%;
}
footer #foot-contents #spon-2 .sponsor-banner .cell-secom {
  grid-column: 1/16;
  grid-row: 3/4;
  border-bottom: none;
}
footer #foot-contents #spon-2 .sponsor-banner .cell-secom img {
  max-width: 34%;
  max-height: 86%;
}
footer #foot-contents #spon-2 .sponsor-banner .cell-empty {
  grid-column: 16/22;
  grid-row: 3/4;
  border-bottom: none;
}
footer #foot-contents #spon-2 .sponsor-banner .cell-tamaki {
  grid-column: 22/31;
  grid-row: 3/4;
  border-right: none;
  border-bottom: none;
}
footer #foot-contents #spon-2 .sponsor-banner .cell-tamaki img {
  max-width: 58%;
  max-height: 86%;
}
@media (max-width: 768px) {
  footer #foot-contents #spon-2 .sponsor-banner {
    display: flex;
    flex-direction: column;
    height: auto;
    grid-template-columns: none;
    grid-template-rows: none;
  }
  footer #foot-contents #spon-2 .sponsor-banner .sponsor-cell {
    grid-column: unset !important;
    grid-row: unset !important;
    width: 100%;
    border-right: none;
    padding: 0.8rem 12px;
  }
  footer #foot-contents #spon-2 .sponsor-banner .sponsor-cell img {
    max-width: 70% !important;
    max-height: 70px !important;
  }
  footer #foot-contents #spon-2 .sponsor-banner .cell-empty {
    display: none;
  }
}
@media (max-width: 992px) {
  footer #foot-contents {
    padding-top: 10rem;
  }
}
@media (max-width: 768px) {
  footer #foot-contents {
    padding-top: 10rem; /* タブレット縦でも余白をしっかり確保 */
  }
  footer #foot-contents .sponlogo {
    width: 70%;
  }
  footer #foot-contents #spon-2 .sponlogo {
    width: 45%;
  }
  footer #foot-contents #spon-2 #spon-main {
    width: 55%;
  }
}
@media (max-width: 480px) {
  footer #foot-contents {
    /* スマホでは上部の余白をこれまでよりさらに大きく確保する */
    padding-top: 10rem;
  }
  footer #foot-contents .spon {
    font-size: 1.3rem;
  }
  footer #foot-contents .sponlogo {
    width: 85%;
  }
  footer #foot-contents #spon-2 .sponlogo {
    width: 60%;
  }
  footer #foot-contents #spon-2 #spon-main {
    width: 75%;
  }
}
footer {
  /* footer自体にも最小の高さと上部余白を確保し、
     #foot-contentsのpadding-topが機能しない場合の保険とする */
}
@media (max-width: 768px) {
  footer {
    padding-top: 2rem;
  }
}
@media (max-width: 480px) {
  footer {
    padding-top: 3rem;
  }
}

/* ===================================================
   装飾イラスト（d-1〜d-12）
   =================================================== */
.naiyou {
  position: relative;
  padding-bottom: 4rem;
}
.naiyou #d-1 {
  width: 470px;
  position: absolute;
  top: 0;
  left: -20px;
  transform-origin: top left;
}
.naiyou #d-2 {
  width: 290px;
  position: absolute;
  top: -60px;
  right: -20px;
  transform-origin: top right;
}
.naiyou #d-3 {
  width: 150px;
  position: absolute;
  bottom: -40px;
  left: 60px;
  transform-origin: bottom left;
}
.naiyou #d-4 {
  width: 360px;
  position: absolute;
  bottom: -60px;
  right: -60px;
  transform-origin: bottom right;
}

.kaisai {
  position: relative;
}
.kaisai #d-5 {
  width: 320px;
  position: absolute;
  top: -30px;
  transform-origin: top left;
}

.price {
  position: relative;
}
.price #d-6 {
  width: 670px;
  position: absolute;
  top: -110px;
  left: -100px;
  transform-origin: top left;
}
.price #d-7 {
  width: 310px;
  position: absolute;
  top: -110px;
  right: -100px;
  transform-origin: top right;
}

.place {
  position: relative;
}
.place #d-8 {
  width: 120px;
  position: absolute;
  top: 0px;
  left: 20px;
  transform-origin: top left;
}
.place #d-9 {
  width: 370px;
  position: absolute;
  top: -110px;
  right: -100px;
  transform-origin: top right;
}
.place #d-10 {
  width: 170px;
  position: absolute;
  top: 160px;
  left: -70px;
  transform-origin: top left;
}
.place #d-11 {
  width: 130px;
  position: absolute;
  top: 500px;
  right: -90px;
  transform-origin: top right;
}

.link {
  position: relative;
}
.link #d-12 {
  width: 1400px;
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  transform-origin: top center;
}

.naiyou [id^=d-] img,
.kaisai [id^=d-] img,
.price [id^=d-] img,
.place [id^=d-] img,
.link [id^=d-] img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center;
}

#d-1 img {
  animation: floaty 3.6s ease-in-out infinite;
  animation-delay: 0s;
}

#d-2 img {
  animation: wobble 2.4s ease-in-out infinite;
  animation-delay: 0.3s;
}

#d-3 img {
  animation: bounce 2.6s ease-in-out infinite;
  animation-delay: 0.6s;
}

#d-4 img {
  animation: floaty 4s ease-in-out infinite;
  animation-delay: 0.9s;
}

#d-5 img {
  animation: pulse 2.2s ease-in-out infinite;
  animation-delay: 0.2s;
}

#d-6 img {
  animation: floaty 4.2s ease-in-out infinite;
  animation-delay: 0.5s;
}

#d-7 img {
  animation: wobble 2.8s ease-in-out infinite;
  animation-delay: 0.8s;
}

#d-8 img {
  animation: bounce 2.3s ease-in-out infinite;
  animation-delay: 0.1s;
}

#d-9 img {
  animation: floaty 3.8s ease-in-out infinite;
  animation-delay: 0.4s;
}

#d-10 img {
  animation: bounce 2.5s ease-in-out infinite;
  animation-delay: 0.7s;
}

#d-11 img {
  animation: wobble 2.6s ease-in-out infinite;
  animation-delay: 1s;
}

#d-12 img {
  animation: pulse 3s ease-in-out infinite;
  animation-delay: 0.3s;
}

@media (max-width: 992px) {
  .naiyou [id^=d-], .kaisai [id^=d-], .price [id^=d-], .place [id^=d-], .link [id^=d-] {
    transform: scale(0.65);
  }
  .naiyou #d-12, .kaisai #d-12, .price #d-12, .place #d-12, .link #d-12 {
    transform: translateX(-50%) scale(0.65);
  }
}
@media (max-width: 768px) {
  .naiyou [id^=d-], .kaisai [id^=d-], .price [id^=d-], .place [id^=d-], .link [id^=d-] {
    transform: scale(0.45);
  }
  .naiyou #d-12, .kaisai #d-12, .price #d-12, .place #d-12, .link #d-12 {
    transform: translateX(-50%) scale(0.45);
  }
}
@media (max-width: 480px) {
  .naiyou [id^=d-], .kaisai [id^=d-], .price [id^=d-], .place [id^=d-], .link [id^=d-] {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */