:root {
  --primary-color: #d1517a;
  --secondary-color: #4fc4cf;
  --bg-color: #fdf0f3;
  --text-main: #333;
  --pink-light: #f9d0dc;
  --font-family:
    "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
  background: linear-gradient(
    to top,
    #e8597a 0%,
    #f0849f 15%,
    #f9c5d4 35%,
    #fde8ee 55%,
    #fff5f7 75%,
    #ffffff 100%
  );
}
ol,ul {
	list-style: none;
}
body {
  background: transparent;
  font-family: var(--font-family);
  color: var(--text-main);
  width: 100%;
  overflow-x: hidden;
}

/* ===== インナー共通 ===== */
.inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===== ヘッダー ===== */
.site-header {
  width: 100%;
  height: 100px;
  background-image: url('../img/header.png');
  background-repeat: repeat-x;
  background-size: auto 90px;
  line-height: 0;
}

.header-stripe {
  display: none;
}

/* ===== ヒーローセクション ===== */
.hero {
  background: transparent;
  padding: 20px 0 20px;
  position: relative;
}

.hero .inner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* メインロゴ */
.main-logo {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
}

.main-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* デコレーション画像 共通 */
.deco {
  position: absolute;
  z-index: 1;
}

/* 左：かき氷（上部） */
.deco-left-ice01 {
  left: -20px;
  top: 10px;
  width: 230px;
}

/* 左：かき氷機 */
.deco-left-ice02 {
  left: -20px;
  bottom: -80px;
  width: 200px;
}

/* 右：氷旗 */
.deco-right-ice01 {
  right: -20px;
  top: -80px;
  width: 200px;
}

/* 右：かき氷（ピンク・レモン） */
.deco-right-ice02 {
  right: -40px;
  bottom: -50px;
  width: 230px;
}

.deco img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== 日程セクション ===== */
.date-section {
  background: transparent;
  padding: 10px 0 16px;
  text-align: center;
}

.date-wrap {
  display: flex;
  justify-content: center;
}

.date-img {
  max-width: 800px;
  width: 100%;
  height: auto;
  display: block;
}

/* ===== コンテンツセクション ===== */
.content-section {
  background: transparent;
  padding: 24px 0 32px;
}

.content-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
}

/* 左カラム */
.col-left {
  background-color: #fff;
  border-radius: 12px;
  border: 6px solid #d1517a;
  padding: 0;
  text-align: center;
  box-shadow: 0 4px 12px rgba(209, 81, 122, 0.25);
  overflow: hidden;
}

/* ===== ダウンロードバナー ===== */
.app-banner {
  display: flex;
  align-items: center;
  background-color: #d1517a;
  color: #fff;
  padding: 10px 12px;
  gap: 8px;
  font-weight: 700;
  line-height: 1.4;
}

.banner-free {
  background-color: #fff;
  color: #d1517a;
  border-radius: 6px;
  padding: 3px 7px;
  font-size: 0.75rem;
  font-weight: 900;
  white-space: nowrap;
  flex-shrink: 0;
}

.banner-label {
  flex: 1;
  text-align: left;
  font-size: 0.82rem;
  line-height: 1.5;
}

.banner-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.banner-icon svg {
  display: block;
}

/* furari画像エリア */
.furari-img {
  padding: 12px 12px 12px;
}
.furari-qr {
  width: 90%;
  margin: 10px auto;
}
.furari-img ul li {
  margin-bottom: 10px;
}
.furari-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* 右カラム */
.col-right {
  position: relative;
}

.catchcopy {
  margin-bottom: 16px;
}

.text01-img {
  max-width: 680px;
  width: 100%;
  height: auto;
  display: block;
}

.desc-text-bold {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-main);
}
.desc-text {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-main);
}

.note {
  font-size: 1.2rem;
}

/* 右下のかき氷イラスト */
.deco-right-ice03 {
  position: absolute;
  right: 0;
  top: 230px;
  width: 150px;
  z-index: 1;
}

.deco-right-ice03 img {
  width: 100%;
  height: auto;
  display: block;
}

/* 協賛 */
.sponsors {
  margin-top: 16px;
  position: relative;
  z-index: 2;
}

.sponsor-title {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-main);
}

.sponsor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-main);
  line-height: 1.2;
}









#stores {
  width: 1080px;
  margin: 0px auto;
}
#stores a {
  text-decoration: none;
}
#stores h2 {
  padding: 5px 30px;
  border-top: solid 3px #b32e2e;
  border-bottom: solid 3px #b32e2e;
  background-color: #fff;
}
#stores-text {
	text-align: center;
	font-weight: bold;
	font-size:1.6rem;
	color: #0099ff;
	padding: 0 50px;
}
.red {
  color: red;
  font-size:1.4rem;
}
#stores-text p {
	margin-bottom: 15px;
}
#area-a,#area-b,#area-c,#area-d,#area-e,#area-f,#area-g {
	color: #fff;
	text-align: center;
	font-size: 1.6rem;
	padding: 5px 0;
	margin-bottom: 20px;
}
#area-a {
	background: #3399cc;
}
#area-b {
	background: #9999cc;
}
#area-c {
	background: #ff9999;
}
#area-d {
	background: #ff9900;
}
#area-e {
	background: #996633;
}
#area-f {
	background: #66cc99;
}
#area-g {
	background: #e0a289;
}
.area-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
  margin: 0 auto 40px;
}
.area-box li {
	width: 16%;
  background-color: #fff;
	border: 1px solid #000;
	margin-bottom: 10px;
	font-weight: bold;
	font-size: 1.4rem;
	display: flex;
}
.area-box li a {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.area-box li img {
  width: 100%;
  display: block;
}
.shop {
	background-color: #ebebeb;
	text-align: center;
	color: #5c0000;
	font-weight: bold;
	font-size: 1.2rem;
  padding: 10px 0;
  height: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.shop a,.shop a:visited {
	color: #fff;
}
.service {
	text-align: center;
	color: #0099ff;
	font-size: 1.2rem;
	padding: 10px 0;
}
li.empty-card {
	margin: 0;
	height: 0;
	border-width: 0;
}
@media screen and (max-width: 480px) {
  #stores {
    width: 100%;
  }
  #stores h2 {
    text-align: center;
  }
  .area-box li {
    width: 49%;
  }
  #stores-text {
    padding: 10px;
  }
  #stores-text p {
    font-size: 1.2rem;
  }
  h3#area-a,h3#area-b,h3#area-c,h3#area-d,h3#area-e,h3#area-f,h3#area-g {
    font-size: 1.2rem;
  }
}
/* ===== フッター ===== */
.site-footer {
  background-color: rgba(255,255,255,0.7);
  padding: 14px 0;
  text-align: center;
  border-top: 2px solid #d1517a;
}

.site-footer p {
  font-size: 0.78rem;
  color: #666;
}

/* ===================================
   レスポンシブ（スマホ）
   =================================== */
@media (max-width: 768px) {
  /* ヒーロー */
  .hero .inner {
    min-height: 280px;
  }

  .main-logo {
    max-width:80%;
  }

  .deco-left-ice01 {
    width: 22%;
    left: 20px;
    top: -20px;
  }

  .deco-left-ice02 {
    width: 22%;
    left: 20px;
    bottom: -50px;
  }

  .deco-right-ice01 {
    width: 22%;
    right: 0;
    top: -60px;
  }

  .deco-right-ice02 {
    width: 27%;
    right: 0;
  }

  /* 日程 */
  .date-img {
    max-width: 100%;
  }

  /* コンテンツ：1カラムに変更 */
  .content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .col-left {
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
  }

  .text01-img {
    max-width: 100%;
  }

  .deco-right-ice03 {
    position: relative;
    width: 60px;
    top: auto;
    bottom: auto;
    margin-left: auto;
    margin-bottom: 15px;
  }

  .sponsor-list {
    gap: 4px 10px;
  }
  #stores {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero .inner {
    min-height: 230px;
  }

  .main-logo {
    max-width: 75%;
  }

  .deco-left-ice01 {
    width: 20%;
    left: 10px;
    top: -20px;
  }

  .deco-left-ice02 {
    width: 20%;
    left: 10px;
  bottom: -30px;
  }

  .deco-right-ice01 {
    width: 25%;
    right: 0px;
    top: -60px;
  }

  .deco-right-ice02 {
    width: 25%;
    right: 10px;
    bottom: -40px;
  }

  .content-section {
    padding: 18px 0 24px;
  }

  .desc-text {
    font-size: 0.85rem;
  }

  .sponsor-list {
    font-size: 0.75rem;
  }
}
