@charset "UTF-8";
/*==================================================================
  Charme Yellow Happy Project フェス1 — LP
  Design tokens: Figma 由来 / コーディング作法: サンコー印刷ルール準拠
  ・SCSS を正とし、コンパイル済み style.css を同居させる
  ・ブレイクポイントは変数 + mixin で管理
  ・html font-size 62.5% を基準に px / rem 併記
==================================================================*/
:root {
  --y-primary: #FFEB57;
  --y-golden: #FFE103;
  --y-deep: #FDD000;
  --amber: #FFAE00;
  --ink: #231815;
  --text: #333333;
  --gray: #595757;
  --pink: #F64E8A;
  --pink-2: #F56498;
  --pink-deep: #E95383;
  --pink-soft: #F7C8CE;
  --blue: #0088FF;
  --coral: #FF9172; }

/*---------- breakpoints ----------*/
/* このLPはモバイル基準（中央カラム）で組み、PCで左右の羽根を出す */
/*---------- colors ----------*/
/*---------- layout ----------*/
/*---------- typography ----------*/
/*---------- effects ----------*/
/* インライン SVG（アイコン）*/
/*==================================================================
  base
==================================================================*/
* {
  box-sizing: border-box; }

html {
  font-size: 62.5%;
  /* 1rem = 10px */
  scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
  /* 羽・中央共通の背景: 黄色い斜線ストライプが白へフェードし、最下部にFigma実測(#FFE100・高さ40px)の帯が入る */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0.55) 66%, #ffffff 90%), repeating-linear-gradient(35deg, #fff6b3 0 10px, #fff9cc 10px 20px);
  background-attachment: fixed; }

.page {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
  color: #595757;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.9;
  background: #fff;
  max-width: 430px;
  margin-inline: auto;
  overflow-x: clip;
  position: relative;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.06); }

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

strong {
  font-weight: 700; }

.wrap {
  padding-inline: 24px; }

/* 太字の背景に敷く黄色ライン */
.mark-y {
  background: linear-gradient(transparent 62%, #fff17a 62%);
  font-weight: 700; }

.mark-w {
  background: linear-gradient(transparent 62%, #fff 62%);
  font-weight: 700; }

/*---------- buttons ----------*/
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 56px;
  padding: 14px 24px;
  border: none;
  border-radius: 999px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: transform 0.12s ease, filter 0.12s ease; }
  .btn::after {
    content: "";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%23333' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/13px no-repeat;
    position: absolute;
    right: 18px; }
  .btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.02); }
  .btn--yellow {
    background: #ffe103;
    color: #333333;
    box-shadow: 0 6px 0 #e8c400; }
  .btn--coral {
    background: linear-gradient(100deg, #ff9172, #f56498);
    color: #fff;
    box-shadow: 0 6px 0 #e95383; }
    .btn--coral::after {
      background: rgba(255, 255, 255, 0.9) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%23f64e8a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/13px no-repeat; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }

/*---------- section heading（英字 + span 日本語）----------*/
.section-head {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 56px;
  letter-spacing: 0.02em;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center; }
  .section-head__sub {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em; }

/*==================================================================
  hero
==================================================================*/
.hero {
  background: #fff;
  padding: 20px 24px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* ロゴを挟む bunting（左右対称） */
  /* 地面イラスト（キッチンカー等）は PC の羽根だけで使い、中央カラムでは隠す */ }
  .hero::before, .hero::after {
    content: "";
    position: absolute;
    top: 0;
    width: 130px;
    height: 100px;
    background: url("../assets/bunting-left-v2.png") no-repeat top center;
    background-size: contain;
    z-index: 3;
    pointer-events: none; }
  .hero::before {
    left: 0; }
  .hero::after {
    right: 0;
    transform: scaleX(-1); }
  .hero__inner {
    position: relative;
    z-index: 2; }
  .hero__logo {
    width: 88px;
    margin: 0 auto 10px;
    position: relative;
    z-index: 3; }
  .hero__ribbon {
    width: 92%;
    max-width: 384px;
    margin: 0 auto 6px;
    position: relative;
    z-index: 3; }
  .hero__fes1 {
    width: 62%;
    max-width: 260px;
    margin: 4px auto 0;
    position: relative;
    z-index: 3; }
  .hero__scene {
    position: relative;
    margin: -198px 0 0;
    width: calc(100% + 24px * 2);
    margin-left: -24px;
    /* Figma実測(Rectangle 14): 高さ=291px/画像497px=58.55%、白100%→31.25%まで固定、以降透明へ */
    /* Figma実測(Ellipse 14): 698×698pxの白円。ヒーロー画像より前面・吹き出し/人物イラスト(z-index:1,3)より背面に来る中間層。
       実測でz-index:0だと画像(static)より背面のままになる現象を確認したため、fig(z-index:1)と同値にしてDOM順(figが後なので前面)に委ねる */ }
    .hero__scene::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      z-index: 2;
      height: 58.55%;
      background: linear-gradient(to bottom, #fff 0 31.25%, rgba(255, 255, 255, 0) 100%);
      pointer-events: none; }
    .hero__scene::after {
      content: "";
      position: absolute;
      width: 460px;
      height: 65px;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      background: url("../assets/hero-scene-after.png") no-repeat center/contain;
      z-index: 1;
      pointer-events: none; }
  .hero__scene-img {
    width: 100%;
    display: block; }
  .hero__badge {
    position: absolute;
    z-index: 3; }
    .hero__badge--l {
      width: 31%;
      left: calc(3% + 60px);
      top: calc(19% + 115px); }
    .hero__badge--r {
      width: 29%;
      right: calc(3% + 60px);
      top: calc(19% + 115px); }
  .hero__bubble {
    position: absolute;
    z-index: 3;
    width: 30%; }
    .hero__bubble--l {
      left: calc(-2% + 20px);
      bottom: -1%; }
    .hero__bubble--r {
      right: calc(-2% + 20px);
      bottom: -1%; }
  .hero__meta {
    position: relative;
    font-family: "Fugaz One", sans-serif;
    z-index: 3;
    padding-top: 4px; }
  .hero__fig {
    position: absolute;
    width: 20%;
    top: -4px;
    z-index: 1; }
    .hero__fig--l {
      left: -15px;
      top: 8px;
      width: 26%; }
    .hero__fig--r {
      right: 10px;
      top: 0;
      width: 14.91%;
      transform: rotate(20deg); }
  .hero__date {
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px; }
  .hero__date-num {
    font-weight: 600;
    font-size: 40px;
    color: #333333;
    letter-spacing: 0.01em; }
  .hero__date-day {
    font-weight: 600;
    font-size: 24px;
    color: #f64e8a; }
  .hero__time {
    font-weight: 600;
    font-size: 24px;
    color: #333333;
    margin: 2px 0 12px;
    letter-spacing: 0.05em; }
  .hero__place {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 12px;
    line-height: 1.6; }
    .hero__place strong {
      font-size: 18px; }
  .hero__cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 20px;
    position: relative;
    z-index: 2; }
    .hero__cta .btn--yellow {
      background: linear-gradient(100deg, #ffeb57, #ffe103); }
  .hero__ground {
    display: none; }
    .hero__ground img {
      width: 100%; }

/*==================================================================
  intro
==================================================================*/
.intro {
  padding: 40px 10px 50px;
  text-align: center;
  position: relative;
  background: #fff; }
  .intro__title {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    line-height: 1.5;
    margin: 0 0 22px; }
  .intro__body {
    font-size: 15px;
    color: #595757;
    margin: 0; }
  .intro__fig {
    position: absolute;
    width: 90px;
    left: 10px;
    bottom: 25px;
    opacity: 0.95; }

/*==================================================================
  section arch top（bunting + flag）
==================================================================*/
.arch {
  position: relative;
  padding: 78px 24px 48px;
  text-align: justify; }
  .arch__bunting {
    display: none; }
  .arch::before, .arch::after {
    content: "";
    position: absolute;
    top: 18px;
    width: 100px;
    height: 75px;
    background: url("../assets/bunting-mixed2.png") no-repeat top center;
    background-size: contain;
    z-index: 1;
    pointer-events: none; }
  .arch::before {
    left: 2px; }
  .arch::after {
    right: 2px;
    transform: scaleX(-1); }
  .arch__flag {
    margin: 0 auto 2rem;
    width: 50px; }

.arch--white::before, .arch--white::after {
  top: 0;
  width: 100px;
  height: 75px;
  background: url("../assets/bunting-left-v2.png") no-repeat top center;
  background-size: contain;
  z-index: 1;
  pointer-events: none; }
.arch--white::before {
  left: 2px; }
.arch--white::after {
  right: 2px;
  transform: scaleX(-1); }
.arch--white__flag {
  margin: 0 auto 2rem;
  width: 50px; }

/*==================================================================
  event
==================================================================*/
.event {
  background: repeating-linear-gradient(45deg, #ffe861 0 8px, #fedd3b 8px 16px);
  position: relative; }
  .event .arch-top {
    position: absolute;
    top: 0; }
  .event__lead {
    font-size: 22px;
    font-weight: 900;
    color: #333333;
    line-height: 1.5;
    margin: 18px 0 14px;
    text-align: center; }
  .event__body {
    font-size: 14px;
    color: #595757;
    margin: 0; }

.note {
  font-size: 12px;
  color: #8a8a6a; }

.cats {
  background: #ffeb57;
  padding: 0; }

.cat {
  position: relative;
  min-height: 260px;
  padding: 0;
  overflow: visible; }
  .cat:nth-child(odd) {
    background: #f4eec3; }
    .cat:nth-child(odd) .cat__photo {
      right: -35px;
      top: -20px; }
    .cat:nth-child(odd) .cat__text {
      left: 15px;
      top: 40px;
      width: 180px; }
  .cat:nth-child(even) {
    background: #fff; }
    .cat:nth-child(even) .cat__photo {
      left: -35px;
      top: -20px; }
    .cat:nth-child(even) .cat__text {
      right: 20px;
      top: 40px;
      width: 180px; }
  .cat__photo {
    position: absolute;
    width: clamp(190px, 53cqw, 260px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1; }
    .cat__photo img {
      display: block;
      width: 100%;
      height: 100%;
      aspect-ratio: auto;
      object-fit: cover; }
  .cat__text {
    position: absolute;
    z-index: 2; }
  .cat__en {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 3px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #f64e8a; }
  .cat__star {
    color: #fdd000;
    font-size: 22px;
    line-height: 1;
    -webkit-text-stroke: 0; }
  .cat__jp {
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #333333; }
  .cat__desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #595757; }

/*==================================================================
  dance ceremony
==================================================================*/
.dance {
  background: repeating-linear-gradient(45deg, #ffe861 0 8px, #fedd3b 8px 16px);
  padding: 10px 24px; }
  .dance__card {
    position: relative;
    border-radius: 22px;
    padding: 34px 26px 38px;
    text-align: center;
    overflow: hidden; }
  .dance__fig {
    position: absolute;
    width: 70px;
    z-index: 1; }
    .dance__fig--r {
      top: 15px;
      right: 0; }
    .dance__fig--l {
      bottom: 18px;
      left: 0; }
  .dance__en {
    font-family: "Bebas Neue", sans-serif;
    color: #f64e8a;
    font-size: 17px;
    letter-spacing: 0.06em;
    margin: 0 0 8px; }
  .dance__title {
    font-size: 24px;
    font-weight: 900;
    color: #333333;
    line-height: 1.4;
    margin: 0 0 14px; }
  .dance__body {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    margin: 0 0 22px; }
  .dance__btn {
    max-width: 180px;
    margin: 0 auto;
    justify-content: left; }

/*==================================================================
  info
==================================================================*/
.info {
  background: #fff;
  padding-bottom: 40px; }
  .info .arch {
    padding: 54px 24px 10px; }
  .info__list {
    margin: 0;
    padding-top: 10px;
    text-align: center; }
    .info__list dt {
      color: #ffae00;
      font-weight: 700;
      font-size: 15px;
      margin-top: 22px; }
    .info__list dd {
      margin: 6px 0 0;
      font-size: 15px;
      color: #595757;
      line-height: 1.7; }
      .info__list dd strong {
        font-size: 17px;
        font-weight: 700; }
  .info__map {
    margin-top: 2rem; }
    .info__map iframe {
      border-radius: 8px; }

/*==================================================================
  share
==================================================================*/
.share {
  padding: 6px 24px 40px;
  background: #fff; }
  .share__card {
    display: block; }
    .share__card img {
      width: 100%;
      border-radius: 18px; }

/*==================================================================
  for shop
==================================================================*/
.forshop {
  background: #fff6b0;
  position: relative; }
  .forshop .arch {
    padding: 54px 24px 36px; }
    .forshop .arch::before, .forshop .arch::after {
      top: 0; }
    .forshop .arch::before {
      left: 2px; }
    .forshop .arch::after {
      right: 2px;
      transform: scaleX(-1); }
  .forshop .arch-top {
    position: absolute;
    top: 0; }
  .forshop__body {
    padding-bottom: 10px; }
  .forshop__lead {
    font-size: 14px;
    color: #595757;
    margin: 0 0 30px; }
  .forshop__subhead {
    text-align: center;
    font-size: 19px;
    font-weight: 700;
    color: #333333;
    margin: 34px 0 16px; }

/* 募集対象カード */
.targets {
  list-style: none;
  background: #fff;
  border-radius: 8px;
  padding: 22px 24px;
  margin: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06); }
  .targets li {
    position: relative;
    padding-left: 30px;
    font-size: 14.5px;
    margin: 4px 0; }
    .targets li:not(.targets__etc)::before {
      content: "";
      position: absolute;
      left: 0;
      top: 4px;
      width: 18px;
      height: 18px;
      border-radius: 4px;
      background: #ffae00 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4L19 7' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat; }
  .targets__etc {
    padding-left: 0;
    color: #595757; }

/* 出店までの流れ */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px; }

.step {
  display: flex;
  gap: 16px;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06); }
  .step__badge {
    flex: 0 0 54px;
    height: 54px;
    background: #ffe103;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333333;
    line-height: 1; }
  .step__label {
    font-size: 9px;
    font-weight: 700; }
  .step__num {
    font-family: "Montserrat", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
    font-weight: 800;
    font-size: 22px; }
  .step__text h4 {
    margin: 2px 0 6px;
    font-size: 16px;
    font-weight: 700;
    color: #333333; }
  .step__text p {
    margin: 0;
    font-size: 13.5px;
    color: #595757;
    line-height: 1.8; }

/* 注意事項 */
.notes {
  list-style: none;
  background: #fff;
  border-radius: 8px;
  padding: 22px 24px;
  margin: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06); }
  .notes li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    margin: 8px 0;
    line-height: 1.7; }
    .notes li::before {
      content: "・";
      position: absolute;
      left: 0; }
    .notes li a {
      font-weight: 600;
      color: #333; }
      .notes li a:hover {
        color: #f64e8a; }

/* guidelines */
.guidelines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 26px 24px;
  background: linear-gradient(120deg, #ff9172, #f56498);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(240, 100, 150, 0.3); }
  .guidelines__en {
    font-family: "Bebas Neue", sans-serif;
    color: #fff;
    font-size: 48px;
    letter-spacing: 0.05em;
    line-height: 1; }
  .guidelines__pill {
    background: #fff;
    color: #f64e8a;
    font-weight: 700;
    font-size: 15px;
    padding: 8px 40px;
    border-radius: 999px;
    width: 100%;
    text-align: center; }
  .guidelines__sub {
    color: #fff;
    font-size: 14px;
    font-weight: 700; }

/*==================================================================
  form（dl.mail-box / dt.required・optional 構造）
==================================================================*/
.form-sec {
  background: #fff6b0;
  padding-top: 8px;
  padding-bottom: 50px; }

.deadline {
  border: 2px solid #f64e8a;
  border-radius: 14px;
  background: #fff;
  text-align: center;
  padding: 16px;
  margin-bottom: 26px; }
  .deadline__label {
    color: #f64e8a;
    font-weight: 700;
    font-size: 16px;
    margin: 0 0 5px;
    line-height: 1; }
  .deadline__date {
    font-weight: 700;
    font-size: 17px;
    color: #333333;
    margin: 0;
    text-decoration: underline; }
  .deadline__note {
    font-size: 12px;
    color: #333;
    margin: 0; }

.form {
  background: #fff;
  border-radius: 8px;
  padding: 26px 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06); }

/* 入力欄は dl.mail-box 単位で並べる（サンコー作法） */
.mail-box {
  margin: 0 0 24px; }
  .mail-box dt {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 14.5px;
    color: #333333;
    /* 必須・任意バッジは dt のクラスから生成 */ }
    .mail-box dt.required::before, .mail-box dt.optional::before {
      font-size: 11px;
      font-weight: 700;
      color: #fff;
      padding: 3px 9px;
      border-radius: 4px;
      flex: none;
      line-height: 1.5; }
    .mail-box dt.required::before {
      content: "必須";
      background: #f64e8a; }
    .mail-box dt.optional::before {
      content: "任意";
      background: #9a9a9a; }
    .mail-box dt .mark {
      color: #f64e8a; }
  .mail-box dd {
    margin-left: 0; }
    .mail-box dd span.error_blank,
    .mail-box dd span.error_format,
    .mail-box dd span.error_match {
      display: block;
      color: #ff0000;
      margin-top: 3px; }

.hint {
  font-size: 12px;
  color: #888;
  margin: 0 0 8px;
  line-height: 1.6; }
  .hint--pink {
    color: #f64e8a; }

.mail-box dd input[type="text"],
.mail-box dd input[type="email"],
.mail-box dd input[type="tel"],
.mail-box dd input[type="url"],
.mail-box dd textarea {
  width: 100%;
  border: none;
  background: #f4f4f4;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 15px;
  color: #595757; }
.mail-box dd textarea {
  resize: vertical; }

.check,
.radio {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  margin-top: 8px;
  cursor: pointer; }
  .check input,
  .radio input {
    margin-top: 4px;
    accent-color: #f64e8a;
    width: 16px;
    height: 16px; }

.radio input {
  accent-color: #0088ff; }

.radio-row {
  display: flex;
  gap: 22px;
  margin-top: 8px; }
  .radio-row .radio {
    margin-top: 0; }
  .radio-row--wrap {
    flex-wrap: wrap;
    gap: 14px 22px; }

.check--agree {
  margin: 8px 0 22px; }
  .check--agree a {
    font-weight: 600;
    color: #333; }
    .check--agree a:hover {
      color: #f64e8a; }

.file {
  display: flex;
  align-items: center;
  gap: 12px; }
  .file__btn {
    background: #fff;
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 13px;
    cursor: pointer; }
    .file__btn input {
      display: none; }
  .file__state {
    font-size: 12px;
    color: #999; }

.form__submit {
  max-width: 300px;
  margin: 10px auto 0; }
  .form__submit::after {
    display: none; }

.attachment-note {
  background-color: #fff9cc;
  padding: 1.5rem;
  margin-bottom: 2rem; }
  .attachment-note .attachment-note__title {
    font-weight: 500;
    color: #f64e8a;
    margin: 0 0 1rem; }
  .attachment-note .attachment-note__text {
    font-size: 1.3rem;
    line-height: 1.7;
    margin: 0; }

.text-indent {
  text-indent: -1.6em;
  padding-left: 1.6em; }
  .text-indent a {
    color: #f64e8a; }

.recaptcha-area {
  display: flex;
  justify-content: center;
  margin-top: 3rem; }

#form_submit {
  text-align: center; }
  #form_submit input[type="button"] {
    font-weight: 600;
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0;
    width: 100%;
    padding: 1.4rem 3.5rem;
    vertical-align: middle;
    line-height: 1;
    background: linear-gradient(110deg, #FFE100, #FFBB00);
    color: #333;
    border: none;
    -webkit-appearance: none;
    border-radius: 2em;
    transition: 0.3s; }
    #form_submit input[type="button"]:hover {
      transform: translateX(-4px) scale(1.01);
      opacity: 0.92; }

.mb-4 {
  margin-bottom: 1.5rem; }

.privacy-policy {
  border: 1px solid #c3c3c3;
  padding: 1.5rem;
  margin-bottom: 3rem;
  background-color: #fff; }
  .privacy-policy h4 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 1rem; }
  .privacy-policy p {
    font-size: 14px;
    margin: 0;
    text-align: justify; }

/*==================================================================
  footer
==================================================================*/
.footer {
  background: #fff;
  text-align: center;
  padding: 30px 24px 0; }
  .footer__figs {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 80px;
    margin-bottom: 20px; }
    .footer__figs::before, .footer__figs::after {
      content: "";
      position: absolute;
      z-index: 3;
      pointer-events: none; }
    .footer__figs::before {
      top: 0px;
      left: 5px;
      width: 75px;
      height: 60px;
      background: url(../assets/fig-soccer.png) no-repeat top center;
      background-size: contain; }
    .footer__figs::after {
      top: -10px;
      right: 30px;
      width: 50px;
      height: 100px;
      background: url(../assets/fig-dancer-pink.png) no-repeat top center;
      background-size: contain;
      transform: rotate(25deg); }
  .footer__fig {
    width: 60px; }
  .footer__welcome {
    font-size: 17px;
    font-weight: 700;
    color: #333333;
    margin: 0; }
  .footer__tagline {
    font-size: 12px;
    font-weight: 700;
    margin: 26px 0 6px; }
  .footer__ribbon {
    width: 100%;
    margin: 0 auto 15px; }
  .footer__ribbon-jp {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0 0 24px; }
  .footer__logo {
    width: 78%;
    max-width: 340px;
    margin: 0 auto 10px; }
  .footer__addr {
    font-size: 14px;
    margin: 0; }
  .footer__tel {
    font-size: 14px;
    margin: 4px 0 16px; }
  .footer__ig {
    display: inline-flex;
    color: #333333; }
    .footer__ig svg {
      width: 34px;
      height: 34px; }
  .footer__copy {
    background: #ffe103;
    margin: 20px -24px 0;
    padding: 14px;
    font-size: 11px;
    color: #333333; }

/*==================================================================
  desktop side wings + nav（PCで固定、中央のみスクロール）
==================================================================*/
.side-nav {
  display: none; }

.wing {
  display: none; }

@media (min-width: 1024px) {
  body {
    position: relative; }

  /* 中央のスクロール列をフォンモックアップとして囲う */
  .page {
    border: 8px solid #f64e8a;
    border-top: none;
    border-bottom: none; }

  /*---------- side wings（装飾・ビューポート固定）----------*/
  .wing {
    display: block;
    position: fixed;
    top: 0;
    width: calc((100vw - 430px) / 2);
    height: 100vh;
    overflow: hidden;
    z-index: 0; }
    .wing--left {
      left: 0; }
    .wing--right {
      right: 0; }
    .wing__flag {
      position: absolute;
      top: 0;
      width: 21.387vh;
      z-index: 1; }
    .wing__flag--left {
      left: 0; }
    .wing__flag--right {
      right: 0; }
    .wing__hero {
      text-align: center;
      padding: 18vh 9% 0; }
    .wing__ribbon {
      width: 90%;
      max-width: 460px;
      margin: 0 auto 14px; }
    .wing__fes1 {
      width: 61%;
      max-width: 326px;
      margin: 10px auto 50px; }
    .wing__date {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 8px;
      margin: 0;
      line-height: 0.5; }
      .wing__date .hero__date-num {
        font-size: 54.182px;
        font-family: "Fugaz One", sans-serif; }
      .wing__date .hero__date-day {
        font-size: 32.509px;
        font-family: "Fugaz One", sans-serif; }
    .wing__time {
      font-family: "Fugaz One", sans-serif;
      font-weight: 800;
      font-size: 32.509px;
      color: #333333;
      text-align: center;
      margin: 6px 0 20px; }
    .wing__place {
      text-align: center;
      font-size: 16.255px;
      font-weight: 500;
      line-height: 1.65;
      margin: 0; }
      .wing__place strong {
        font-size: 21.673px;
        font-weight: 700; }
    .wing__foot {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 300px; }
    .wing__ground {
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 79%;
      transform: translateX(-50%); }
    .wing__ground--left {
      aspect-ratio: 380 / 89;
      height: auto; }
    .wing__ground--right {
      aspect-ratio: 1327 / 470;
      height: auto; }
    .wing__deco {
      position: absolute; }
      .wing__deco--balloon-a {
        left: 418.723px;
        bottom: 6.456vh;
        width: 4.326vh;
        height: 6.845vh;
        transform: rotate(22.5deg); }
      .wing__deco--balloon-b {
        left: 38.723px;
        bottom: 6.260vh;
        width: 4.326vh;
        height: 6.845vh;
        transform: rotate(157.5deg) scaleY(-1); }
      .wing__deco--dancer-left {
        left: 138.12px;
        bottom: 15vh;
        width: 5.858vh;
        height: 10.531vh;
        transform: rotate(135.73deg) scaleY(-1); }
      .wing__deco--soccer-left {
        left: 272.795px;
        bottom: 19vh;
        width: 8.966vh;
        height: 7.108vh;
        transform: rotate(-165.56deg) scaleY(-1); }
      .wing__deco--ball-a {
        left: 184.6915px;
        bottom: 22vh;
        width: 1.559vh;
        height: 1.546vh;
        transform: rotate(-174.75deg) scaleY(-1); }
      .wing__deco--ball-b {
        left: 256.5215px;
        bottom: 26vh;
        width: 1.559vh;
        height: 1.546vh;
        transform: rotate(-174.75deg) scaleY(-1); }
      .wing__deco--soccer-right {
        right: 123.8045px;
        bottom: 19vh;
        width: 8.203vh;
        height: 7.520vh;
        transform: rotate(21.52deg); }
      .wing__deco--dancer-right {
        right: 300px;
        bottom: 17vh;
        width: 9.082vh;
        height: 8.203vh; }
      .wing__deco--balloon-right-a {
        right: 72px;
        bottom: 10vh;
        width: 4.326vh;
        height: 6.845vh;
        transform: rotate(22.5deg); }
      .wing__deco--balloon-right-b {
        right: 497px;
        bottom: 11vh;
        width: 4.326vh;
        height: 6.845vh;
        transform: rotate(157.5deg) scaleY(-1); }
      .wing__deco--ball-right-a {
        right: 188.3485px;
        bottom: 24vh;
        width: 1.559vh;
        height: 1.546vh;
        transform: rotate(-174.75deg) scaleY(-1); }
      .wing__deco--ball-right-b {
        right: 303.8px;
        bottom: 21vh;
        width: 1.559vh;
        height: 1.546vh;
        transform: rotate(149.57deg) scaleY(-1); }

  .wing__foot img {
    position: absolute;
    bottom: 0;
    z-index: 3; }
  .wing__foot .wing_left_img_xl, .wing__foot .wing_left_img_s, .wing__foot .wing_right_img_xl, .wing__foot .wing_right_img_s {
    display: none; }
  .wing__foot::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 48.9px;
    background-color: #ffe103;
    z-index: 0; }

  /*---------- right-wing nav ----------*/
  .side-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: fixed;
    top: 18vh;
    right: calc((100vw - 430px) * 0.073753);
    z-index: 50;
    width: calc((100vw - 430px) * 0.36301); }
    .side-nav__item {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14.8px 15.198px;
      background: #fff;
      border-radius: 53.192px;
      box-shadow: 0 3.799px 9.498px rgba(0, 0, 0, 0.08);
      text-decoration: none;
      color: #333;
      transition: transform 0.12s ease, opacity 0.12s ease; }
      .side-nav__item:hover {
        transform: translateX(-4px) scale(1.01);
        opacity: 0.92; }
      .side-nav__item::after {
        content: "";
        background: #ffae00 url("data:image/svg+xml,%3Csvg%20xmlns=%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox=%220%200%2024%2024%22%3E%3Cpath%20d=%22M6%209l6%206%206-6%22%20fill=%22none%22%20stroke=%22%23fff%22%20stroke-width=%223%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22%2F%3E%3C%2Fsvg%3E") center/13px 13px no-repeat;
        position: absolute;
        right: 18px; }
    .side-nav__item-copy {
      display: flex;
      align-items: center;
      min-width: 0; }
    .side-nav__flag {
      flex: 0 0 auto;
      width: 24.957px;
      height: 30.591px;
      object-fit: contain; }
    .side-nav__labels {
      display: flex;
      align-items: baseline;
      min-width: 0; }
    .side-nav__title {
      margin-left: 9px;
      font-family: "Bebas Neue", sans-serif;
      font-size: 38px;
      line-height: 1;
      letter-spacing: 0.76px;
      white-space: nowrap; }
    .side-nav__note {
      margin-left: 10px;
      font-family: "Noto Sans JP", sans-serif;
      font-size: 15.198px;
      font-weight: 700;
      letter-spacing: 0.304px;
      white-space: nowrap; }
    .side-nav__chevron {
      flex: 0 0 auto;
      margin-left: 8px;
      font-size: 22.796px;
      color: #ffae00; }
    .side-nav__item--info {
      padding: 14.058px 14.435px; }
      .side-nav__item--info .side-nav__flag {
        width: 23.706px;
        height: 29.057px; }
      .side-nav__item--info .side-nav__title {
        font-size: 36.09px;
        line-height: 1;
        letter-spacing: 0.7218px; }
      .side-nav__item--info .side-nav__note {
        font-size: 14.44px;
        letter-spacing: 0.2888px; }
      .side-nav__item--info .side-nav__chevron {
        font-size: 21.65px; }
    .side-nav__item--coral {
      background: linear-gradient(to right, #ff9172, #f56498);
      color: #fff; }
      .side-nav__item--coral .side-nav__chevron {
        color: #fff; }
      .side-nav__item--coral::after {
        content: "";
        background: #ffffff url("data:image/svg+xml,%3Csvg%20xmlns=%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox=%220%200%2024%2024%22%3E%3Cpath%20d=%22M6%209l6%206%206-6%22%20fill=%22none%22%20stroke=%22%23F56498%22%20stroke-width=%223%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22%2F%3E%3C%2Fsvg%3E") center/13px 13px no-repeat;
        position: absolute;
        right: 18px; }
    .side-nav__share {
      position: relative;
      display: block;
      width: 100%;
      aspect-ratio: 366.562 / 147.227;
      background: linear-gradient(to right, #ffe100, #ffbb00);
      border-radius: 15.198px;
      text-decoration: none;
      color: #333;
      transition: opacity 0.3s ease; }
      .side-nav__share:hover {
        opacity: 0.7; }
    .side-nav__share-copy {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      position: absolute;
      left: 33.97px;
      top: 28.5px;
      z-index: 2;
      width: 157.353px; }
    .side-nav__share-title {
      font-family: "Bebas Neue", sans-serif;
      font-size: 50.52px;
      line-height: 1;
      letter-spacing: 1.0104px; }
    .side-nav__share-note {
      font-family: "Noto Sans JP", sans-serif;
      font-size: 13.3px;
      font-weight: 700;
      letter-spacing: 0.266px;
      white-space: nowrap; }
    .side-nav__account {
      display: flex;
      align-items: center;
      height: 22.796px;
      margin-top: 4px;
      padding: 0 12px;
      background: #fff;
      border-radius: 30.395px;
      font-family: "Noto Sans JP", sans-serif;
      font-size: 11.398px;
      font-weight: 500;
      white-space: nowrap; }
    .side-nav__ig-circle {
      position: absolute;
      left: 230.96px;
      top: 23.39px;
      width: 100.447px;
      height: 100.447px; }
    .side-nav__ig {
      position: absolute;
      left: 212.78px;
      top: 43.69px;
      width: 137px;
      text-align: center;
      font-size: 53.192px;
      color: #333;
      z-index: 1; }
    .side-nav__share-sub {
      position: absolute;
      left: 228.09px;
      top: 98.69px;
      width: 131.064px;
      font-family: "Brush Script MT", "Segoe Script", cursive;
      font-size: 28.495px;
      font-weight: 700;
      color: #f64e8a;
      transform: rotate(-8.49deg) skewX(-0.96deg);
      transform-origin: center;
      z-index: 2; }
    .side-nav__star, .side-nav__swash {
      position: absolute; }
    .side-nav__star--one {
      left: 328.29px;
      top: 29.47px;
      width: 17.234px;
      height: 18.31px;
      transform: rotate(-160.07deg) skewX(2.12deg) scaleY(-1); }
    .side-nav__star--two {
      left: 313.81px;
      top: 13.3px;
      width: 18.449px;
      height: 19.6px;
      transform: rotate(165.62deg) skewX(-1.58deg) scaleY(-1); }
    .side-nav__swash {
      left: 34.668px;
      top: 18.08px;
      width: 23.134px;
      height: 12.539px;
      transform: rotate(-46.14deg) skewX(-3.47deg); }

  .wing__foot img {
    position: absolute;
    bottom: 0; }
  .wing__foot .wing_left_img_xxl, .wing__foot .wing_right_img_xxl {
    display: block; }
  .wing__foot .wing_left_img_xl, .wing__foot .wing_left_img_s, .wing__foot .wing_right_img_xl, .wing__foot .wing_right_img_s {
    display: none; } }
/* 1200px 以上はカラムを少し広げる（--col 相当を上書き）*/
@media (min-width: 1200px) {
  .page {
    max-width: 460px; }

  .wing {
    width: calc((100vw - 460px) / 2); }

  .side-nav {
    right: calc((100vw - 460px) * 0.073753);
    width: calc((100vw - 460px) * 0.36301); } }
@media only screen and (max-width: 1440px) {
  .wing__foot img {
    position: absolute;
    bottom: 0; }
  .wing__foot .wing_left_img_xl, .wing__foot .wing_right_img_xl {
    display: block; }
  .wing__foot .wing_left_img_xxl, .wing__foot .wing_left_img_s, .wing__foot .wing_right_img_xxl, .wing__foot .wing_right_img_s {
    display: none; } }
@media only screen and (max-width: 1350px) {
  .side-nav__labels {
    display: flex;
    flex-direction: column;
    line-height: 1; }
    .side-nav__labels .side-nav__title {
      font-size: 30px; }
    .side-nav__labels .side-nav__note {
      font-size: 13px; }

  .wing__place {
    font-size: 15px; }

  .wing__foot img {
    position: absolute;
    bottom: 0; }
  .wing__foot .wing_left_img_s, .wing__foot .wing_right_img_s {
    display: block; }
  .wing__foot .wing_left_img_xxl, .wing__foot .wing_left_img_xl, .wing__foot .wing_right_img_xxl, .wing__foot .wing_right_img_xl {
    display: none; } }
