@charset "utf-8";

/*CSS Reset*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
	margin: 0;
    padding: 0;
}

p,ol, ul, dl{
	margin: 0;
	padding: 0;
}

#root,
#__next {
  isolation: isolate;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}


/*PCSP共通設定*/
html {
  scroll-behavior: smooth;
}

/*smooth scroll*/

article {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
  background-color: var(--c_white);
  color: var(--c_gray_dark);
  font-size: var(--fs_body);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* スクリーンリーダーには読まれるが視覚的に非表示 */
.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;
}

/* =========================
   root
========================= */
:root {
  --c_white:#f5f4ef;
  --c_cream:#fdfcf8;
  --c_pure_white: #FFFFFF;
  --c_gray_dark: #232323;
  --c_gray: #777777;
  --c_gray_light: #F0F0F0;
  --c_yellow: #F3C922;
  --c_green: #468746;
  --c_red: #a93520;
  --c_brown: #96731E;
  --c_brown_light: #F4F1E8;
  --c_pink: #FB778F;
  --c_black_h_light: #919191;
}

/* =========================
       背景
    ========================= */
.bg-1 {
  background-color: var(--c_white);
}

.bg-2 {
  background-color: var(--c_white);
  background-image: url('../images/bg03.jpg');
  background-size: cover;
  background-position: center;
}

.bg-3 {
  background-color: var(--c_cream);
}

/* =========================
       スクロールアニメーション
    ========================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}


/* =========================
  ナビ共通
========================= */

#navFixed {
  width: 100%;
}

#navAnchor ul,
#navFixed ul {
  display: flex;
  justify-content: center;
  padding: 0;
  max-width: 1200px;
  margin: auto;
}


li.nav-btn {
  text-align: center;
  flex: 1;
}

li.nav-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--c_gray_dark);
  color: var(--c_white);
  transition: background .25s ease, transform .2s ease;
}

/* hover */
li.nav-btn a:hover {
  background: var(--c_red);
  transform: translateY(-3px);
}



/* =========================
   固定ナビ
========================= */
#navFixed {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.22, .61, .36, 1);
  background:var(--c_gray_dark);
}

#navFixed.is_show {
  transform: translateY(0);
}

#navFixed li:nth-child(1){
	border-right: 1px solid var(--c_black_h_light);
}


#navFixed li.nav-btn a:hover {
  transform: none;
  border:none;
}




/*759px以下*/
@media screen and (max-width: 759.9px) {
	
.spnone {
    display: none;
  }

  .inner {
    width: 90%;
    margin: 0 auto;
    padding: 3rem 0;
  }

  /* =========================
     root
  ========================= */
  :root {
    --fs_caption: 0.8rem;
    --fs_body: 1rem;
    --fs_sm: 1.1rem;
    --fs_md: 1.2rem;
    --fs_lg: 1.4rem;
    --fs_xl: 1.6rem;
    --fs_xxl: 1.8rem;
    --fs_3xl: 2rem;
    --fs_4xl: 2.2rem;
    --fs_5xl: 2.4rem;
    --fs_6xl: 2.6rem;
    --fs_7xl: 2.8rem;
    --fs_8xl: 3.5rem;
  }

  /* =========================
     h2
  ========================= */
  .section-label {
    font-size: var(--fs_caption);
    letter-spacing: 2px;
    color: var(--c_black_h_light);
  }

  h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: var(--fs_xxl);
    letter-spacing: 1px;
    font-weight: bold;
    line-height: 1.3;
    position: relative;
    padding-bottom: 12px;
  }

  h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--c_red);
  }

  /* =========================
     title
  ========================= */


  /* =========================
     Catch
  ========================= */
  #catch {
    position: relative;
  }

    #catch .inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: var(--fs_sm);
        font-weight: bold;
        padding: 2.5rem 0 2rem!important;
        text-align: center;
        line-height: 2;
		width: 90%!important;
		letter-spacing: 0!important;
    }
	
	
  .catch__lead,
  .catch__sub,
  .catch__highlight,
  .catch__strong {
    font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    text-align: center;
  }

  .catch__lead .num-big {
    font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
    color: var(--c_red);
    font-size: var(--fs_xxl);
   line-height: 2 !important;
  }

  .catch__lead .red {
    color: var(--c_red);
  }



  .catch__highlight .tag {
    display: inline-block;
    background: var(--c_red);
    color: var(--c_white);
    padding: 3px 8px;
    margin: 0 6px;
    line-height: 1.2;
  }

  .catch__sub ruby {
    color: var(--c_red);
  }

  .catch__sub ruby rt {
    font-size:7px;
    color: var(--c_red);
  }

  /* pamphletボタン */
  .pamphlet-badge {
    position: absolute;
    right: 20px;
    top: -85px;
    z-index: 99;
  }

  .pamphlet-badge a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--c_red);
    color: var(--c_white);
    font-size: var(--fs_sm);
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    gap: 5px;
    padding: 20px 0 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .3), 0 2px 4px rgba(0, 0, 0, .2);
    transition: transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
  }


  .pamphlet-badge .material-icons-outlined {
    font-size: var(--fs_lg);
  }
  /* =========================
     nav
  ========================= */
  .label-sp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	gap:5px;
  }

  .label-pc {
    display: none;
  }

  #navAnchor {
    margin: 0 auto 3rem;
    width: 90%;
  }

  #navAnchor ul {
    gap: 6px;
  }

  li.nav-btn a {
    padding: 0 8px;
    line-height: 1.3;
    font-size: var(--fs_sm);
    height: 60px;
  }

  #navFixed li.nav-btn a {
    height: 75px;
  }

  .totop {
    display: none !important;
  }
	
	section#plan,section#flow {
		scroll-margin-top: 25px;
	}
	div#stats {
		scroll-margin-top: 50px;
	}

  /* =========================
     About
  ========================= */
  #about {
    text-align: center;
  }
	
    #about .about__text h3 {
        font-size: var(--fs_lg);
        font-weight: bold;
        margin: 0 auto;
        color: var(--c_red);
        padding: 1rem 0 0;
        text-align: center;
    }
	
#about h4 {
    font-size: var(--fs_md);
    font-weight: bold;
		padding: 1rem 0 0;
	line-height: 1.3;
}

  #about .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .about__text {
    font-size: var(--fs_body);
    line-height: 1.9;
    letter-spacing: 1px;
    text-align: left;
  }

  ul.tab-nav {
    margin: 0 auto;
  }

  .tab-nav {
    display: flex;
    gap: 6px;
    justify-content: center;
    width: 100%;
  }

.tab-btn {
  background: var(--c_gray_dark);
  color: var(--c_pure_white);
  font-size: 0.9rem;

  flex: 1;
  cursor: pointer;
  line-height: 1.1;
  border-right: 1px solid rgba(255, 255, 255, .25);
  transition: opacity .2s ease, transform .2s ease;
  flex-direction: column;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: inline-block;
}

li.tab-btn a {
  padding: 5px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

  .tab-btn:last-child {
    border-right: none;
  }

  .tab-btn .material-icons-outlined {
    font-size: var(--fs_body);
  }


/* =========================
   Stats
========================= */

#stats {
  text-align: center;
}

    #stats h3 {
        font-size: var(--fs_lg);
        font-weight: bold;
        margin: 1rem auto 1.5rem;
    }


.photo-card-box {
  margin: 1rem auto;
}

.photo-card {
  background: var(--c_pure_white);
        overflow: hidden;
        margin: 0 auto 1.5rem;
}

.photo-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}


.photo-card__body {
  padding: 16px;
  text-align: left;
}

.photo-card__body dl {
  display: flex;
  align-items: stretch;
  background: var(--c_pure_white);
}


.photo-card__body dt.sli_txt {
  border-left: solid 4px var(--c_red);
  display: flex;
  flex-direction: column;
  font-weight: bold;
  padding: 0 0 0 10px;
  margin: 0 auto 1rem;
  line-height: 1.3;
}

span.rec_sub_title {
  color: var(--c_green);
  font-size: var(--fs_md);
}

span.rec_main_title {
  color: var(--c_red);
  font-size: var(--fs_lg);
}


.photo-card__body dd p.venue-highlight {
  background: var(--c_light_gray, #f5f5f5); 
  padding: 10px 14px;
  margin-bottom: 0.75rem;
  line-height: 1.6;
        text-indent: -2.5em;
        padding-left: 3.5em;
}

.photo-card__body dd span {
  font-weight: bold;
}

.stats__card p,
.photo-card__text {
  font-size: var(--fs_sm);
  line-height: 1.6;
}


  /* =========================
       Highlights
    ========================= */

  #highlights h2 {
    margin: 0 auto 1.5rem;
  }

#highlights h2 span.sub_title {
        font-size: var(--fs_sm);
        padding: 1rem 0 0;
        text-align: center;
    }
.recommend {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}




.recommend-img {
  display: flex;
  flex-direction: column;
}
.recommend-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  flex: 1;
	padding: 0 0 0.5rem;
}


.recommend-img--double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.recommend-img--double img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sli_txt {
  width: 100%;
}

.recommend h5 {
  border-left: solid 4px var(--c_red);
  display: flex;
  flex-direction: column;
  font-weight: bold;
  padding: 0 0 0 10px;
  letter-spacing: 1px;
  margin: 0 auto 0.5rem;
}
span.rec_main_title {
  color: var(--c_red);
  font-size: var(--fs_xl);
}
span.rec_sub_title {
  color: var(--c_green);
  font-size: var(--fs_md);
}


ul.recommend dl.bullet-list {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.25em 0.7em;
  align-items: baseline;
  background: none;
}
ul.recommend dl.bullet-list dt {
  font-weight: bold;
  font-size: var(--fs_sm);
  white-space: nowrap;
}
ul.recommend dl.bullet-list dd {
  margin: 0;
  font-size: var(--fs_sm);
  line-height: 1.6;
}
ul.recommend p {
  font-size: var(--fs_sm);
  line-height: 1.6;
}

  /* =========================
     Plan section
  ========================= */
  #plan h2,#booth h2 {
    margin: 0 auto 2rem;
  }

  #plan h3 .section-label,#booth h3 .section-label {
    font-size: var(--fs_body);
    letter-spacing: 2px;
    color: var(--c_gray);
  }

    #plan h3,#booth h3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: var(--fs_lg);
        letter-spacing: 1px;
        font-weight: bold;
        position: relative;
        padding: 0 0 10px;
        margin: 0.5rem auto 1rem;
    }

  #plan h3::after, #booth h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--c_red);
  }

  /* Coming Soon対応 */
  .plan__tab-btn[disabled],
  .plan__tab-btn.is-disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: default;
    background: var(--c_black_h_light);
  }

  /* タブボタン */
  .plan__tabs {
    display: flex;
    gap: 0;
    width: 100%;
  }

.plan__tab-btn {
        flex: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 4px;
        font-size: var(--fs_body);
        font-weight: bold;
        border: none;
        background: var(--c_gray_dark);
        color: var(--c_white);
        border-radius: 10px 10px 0 0;
        transition: background .2s ease;
        flex-direction: column;
        line-height: 1.2;
        min-height: 50px;
    }

  .plan__tab-btn:last-child {
    margin-right: 0;
  }

  .plan__tab-btn .plan__tab-sub {
    font-size: var(--fs_caption);
    opacity: 0.8;
  }

  .plan__tab-btn.is-active {
    background: var(--c_red);
  }

  /* タブコンテンツ */
  .plan__tab-content {
    display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: var(--c_pure_white);
        padding: 1.5rem 1rem;
    }

  .plan__tab-content.is-active {
    display: flex;
  }

  .plan__tab-content .plan__block + .plan__block {
    margin-top: 2.5rem;
  }

  /* 画像 */
  figure {
    max-width: 100%;
    position: relative;
    margin: 0 auto;
  }

  figure img {
    width: 100%;
    height: auto;
  }


  /* =========================
     Support section
  ========================= */
  .support__card_box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 95%;
    margin: 1.5rem auto 0;
  }

  .support__card_box h4 {
    font-size: var(--fs_md);
    font-weight: bold;
    margin: 0 auto;
	width: 9%;
  }

  .support__card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .support__card__icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--c_red);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .support__card__icon .material-icons-outlined {
    font-size: var(--fs_3xl);
    color: var(--c_white);
  }

  .support__card h3 {
    font-size: var(--fs_md);
    font-weight: bold;
  }

  .support__card p {
    font-size: var(--fs_body);
    line-height: 1.6;
  }
	
	.txt_caption{
		padding: 20px 0 0 0;
		margin: auto;
		font-size: var(--fs_caption);
		text-align: right;
	}	


 /* =========================
   FAQ section
========================= */
#faq h2 {
  margin: 0 auto 2rem;
}

.faq__category-body__inner {
    background-color: var(--c_pure_white);
}	
	
.faq__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.faq__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq__category {
  border-radius: 2px;
  overflow: hidden;
}

/* Q&A */
.faq__item {
 padding: 1rem;
  border-bottom: 1px solid var(--c_gray_light);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__q {
  display: flex;
  gap: 10px;
  font-size: var(--fs_body);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 5px;
}

.faq__q::before {
  content: 'Q.';
  color: var(--c_red);
  font-family: Arial, Helvetica, "sans-serif";
  font-weight: bold;
  flex-shrink: 0;
}

.faq__a {
  display: flex;
  gap: 10px;
  line-height: 1.5;
  color: #6d6d6d;
  font-size: var(--fs_body);
  margin: 0 auto;
}

.faq__a::before {
  content: 'A.';
  color: var(--c_gray_dark);
  font-family: Arial, Helvetica, "sans-serif";
  font-weight: bold;
  flex-shrink: 0;
}
	
/* =========================
     Flow
  ========================= */
  #flow .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .flow__timeline {
    width: 100%;
    max-width: 100%;
  }

  .flow__row {
    display: grid;
    grid-template-columns: 72px 32px 1fr;
    align-items: stretch;
  }

  .flow__year {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-right: 10px;
  }

  .flow__year span {
    font-family: Arial, sans-serif;
    font-size: var(--fs_md);
    font-weight: bold;
    color: var(--c_red);
    line-height: 1.1;
    white-space: nowrap;
  }

  .flow__axis {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .flow__dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid var(--c_red);
    flex-shrink: 0;
    z-index: 1;
  }

  .flow__dot--filled {
    background: var(--c_red);
  }

  .flow__vline {
    width: 3px;
    background: var(--c_red);
    flex: 1;
    min-height: 10px;
  }

  .flow__row:last-child .flow__vline {
    display: none;
  }

  .flow__event {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 0 1.5rem 0.5rem;
    align-items: flex-start;
    line-height: 1.3;
  }

  .flow__event__date {
    font-family: Arial, Helvetica, sans-serif;
    font-size: var(--fs_body);
    font-weight: bold;
    color: var(--c_gray_dark);
    white-space: nowrap;
  }

  .flow__event__text {
    font-size: var(--fs_body);
    line-height: 1.4;
    color: var(--c_gray_dark);
  }

  .flow__info-blocks {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 0 auto 1.5rem;
  }

  .flow__info-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .flow__info-title {
    font-size: var(--fs_md);
    font-weight: bold;
    border-bottom: 2px solid var(--c_red);
    padding-bottom: 5px;
  }

  .flow__info-table {
    width: 100%;
    border-collapse: collapse;
  }

.flow__info-table tr {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--c_gray_light);
}	
	
  .flow__info-table td {
    padding: 8px 0;
    font-size: var(--fs_body);
    line-height: 1.5;
  }

    .flow__info-table td:first-child {
        font-weight: bold;
        white-space: nowrap;
        width: 45%;
    }

  .flow__info-text {
    font-size: var(--fs_body);
  }

  .flow__nav-wrap {
    width: 100%;
  }

  .flow__nav-wrap ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin: auto;
  }

  .flow__nav-wrap li.nav-btn a {
    height: auto;
    padding: 10px 0;
    font-size: var(--fs_body);
    line-height: 1.4;
	gap: 10px;
  }
	
.flow_caption p {
    line-height: 1.5;
    padding: 0 0 0.5rem;
}	
  /* =========================
     Digital Pamphlet
  ========================= */
  #d-pamphlet h2 {
    margin: 0 auto 2.5rem;
  }

  #d-pamphlet .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }


  /* ボタン */	
    .d-pamphlet__btn {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        color: var(--c_white);
        background: var(--c_gray_dark);
        font-size: var(--fs_caption);
        font-weight: bold;
        padding: 8px 5px;
		line-height: 1.3;
        cursor: pointer;
        position: relative;
        width: 100%;
        justify-content: center;
    }

  .d-pamphlet__btn .material-icons-outlined {
    position: relative;
    z-index: 1;
    font-size: var(--fs_body);
  }
	
  .d-pamphlet__img {
    width: 100%;
    margin: 0 auto 1.5rem;
  }

.dp_contents {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.d-pamphlet__img {
  grid-column: span 3;
}
  .d-pamphlet__btn span {
    position: relative;
    z-index: 1;
  }

  .d-pamphlet__btn .material-icons-outlined {
    position: relative;
    z-index: 1;
    font-size: var(--fs_md);
  }

.d-pamphlet__img-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
}


.d-pamphlet__img-link {
  display: block;
  margin: 0 auto 1rem;
}

    .d-pamphlet__img img {
        width: 100%;
        height: auto;
        margin: auto;
        object-fit: cover;
        box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
        margin: 0 auto;
        transition: box-shadow .35s ease;
        display: block;
    }


}




/*760px以上*/
@media screen and (min-width: 760px),
print {
  .pcnone {
    display: none;
  }

  /* =========================
   root
========================= */
  :root {
    --fs_caption: 14px;
    --fs_body: 16px;
    --fs_sm: 18px;
    --fs_md: 20px;
    --fs_lg: 24px;
    --fs_xl: 28px;
    --fs_xxl: 32px;
    --fs_3xl: 34px;
    --fs_4xl: 38px;
    --fs_5xl: 42px;
    --fs_6xl: 46px;
    --fs_7xl: 50px;
    --fs_8xl: 60px;
  }


  /* CSS */
  h1 {
    width: auto;
    max-width: 1200px;
    min-width: 550px;
    margin: 0 auto 5px;
  }

  .inner {
    max-width: 1200px;
    min-width: 550px;
    width: 96%;
    margin: 0 auto;
    padding: 7rem 0;
  }

  /* =========================
       h2
    ========================= */
  .section-label {
    font-size: var(--fs_sm);
    letter-spacing: 2px;
    color: var(--c_black_h_light);
  }

  h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: var(--fs_7xl);
    letter-spacing: 2px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
  }

  h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--c_red);
  }



  /* =========================
  title
========================= */
  #title {
    width: 100%;
    background: var(--c_gray_light) url("../images/bgimg.jpg") no-repeat 50% 50%;
    background-size: cover;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow-x: clip;
  }

  #title img {
    max-width: 1500px;
    width: 100%;
    margin: auto;
  }


  /* 雲 */
  #title::before {
        content: "";
        position: absolute;
        top: clamp(-30px, -10vw, -40px);
        left: 36%;
        transform: translateX(calc(1500px / -2)) translateX(-10%);
        width: clamp(400px, 75vw, 1100px);
        aspect-ratio: 1100 / 300;
        height: auto;
        background: url(../images/g_cloud.png) no-repeat;
        background-size: contain;
        z-index: 2;
        pointer-events: none;
    }

  #title::after {
        content: "";
        position: absolute;
        bottom: clamp(-112px, -15vw, -60px);
        left: 60%;
        transform: translateX(calc(1500px / 2)) translateX(-70%);
        width: clamp(300px, 75vw, 835px);
        aspect-ratio: 835 / 400;
        height: auto;
        background: url(../images/r_cloud.png) no-repeat;
        background-size: contain;
        z-index: 2;
        pointer-events: none;
    }

  /* =========================
   Catch
========================= */
  #catch {
    position: relative;
  }

#catch p.reveal-delay-2, #catch p.reveal-delay-3, #catch p.reveal-delay-4 {
    padding: 0 0 15px;
}	
	
  /* pamphletボタン */
  .pamphlet-badge {
    position: absolute;
    left: 20px;
    top: -80px;
    z-index: 99;
  }

  .pamphlet-badge a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--c_red);
    color: var(--c_white);
    font-size: var(--fs_md);
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    gap: 5px;
    padding: 20px 0 0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .35), 0 2px 4px rgba(0, 0, 0, .2);
    transition: transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
  }

  .pamphlet-badge a:hover {
    transform: translateY(3px);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
  }

  .pamphlet-badge .material-icons-outlined {
    font-size: var(--fs_xl);
  }

    #catch .inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-box: trim-both cap alphabetic;
        font-size: var(--fs_3xl);
        font-weight: bold;
        padding: 6rem 0 3rem;
        position: relative;
        z-index: 3;
        letter-spacing: 3px;
        line-height: 2.2;
    }

  .catch__lead,
  .catch__sub,
  .catch__highlight,
  .catch__strong {
    font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  }


  .catch__lead .num-big {
    font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
    color: var(--c_red);
    font-size: var(--fs_8xl);
  }

  .catch__lead .red {
    color: var(--c_red);
  }


  .catch__highlight .tag {
    display: inline-block;
    background: var(--c_red);
    color: var(--c_white);
    padding: 4px 10px;
    margin: 0px 10px;
    line-height: 1.2;
  }

  .catch__sub ruby {
    color: var(--c_red);
  }

  .catch__sub ruby rt {
    font-size: 10px;
    color: var(--c_red);
  }


  /* =========================
   nav
========================= */
  .label-sp {
    display: none;
  }

  .label-pc {
    display: inline;
    display: flex;
    align-content: center;
    align-items: center;
    gap: 6px;
  }

  #navAnchor ul {
    gap: 15px;
  }

  #navAnchor {
    margin: 0 auto 5rem;
    width: 96%;
  }

  #navFixed li.nav-btn a{
    height: 80px;
  }

  li.nav-btn a {
    gap: 6px;
    padding: 12px 20px;
    font-size: var(--fs_md);
    height: 65px;
    line-height: 1.2;
  }

  /* =========================
       About 
    ========================= */
  #about {
    text-align: center;
  }
	
    #about .about__text h3 {
        font-size: var(--fs_xxl);
        font-weight: bold;
        margin: 0 auto;
        color: var(--c_red);
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0 0 1rem;
    }
	
#about .about__text h3::before,
#about .about__text h3::after {
  content: "";
  flex: 1;
  height: 3px;
  background-color:var(--c_red);
}

#about h4 {
    font-size: var(--fs_lg);
    font-weight: bold;
		padding: 1.5rem 0 0;
}
  #about .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .about__text {
    font-size: var(--fs_md);
    line-height: 2;
    letter-spacing: 1px;
    text-align: center;
    margin: 0 auto;
  }

  ul.tab-nav {
    margin: 0 auto 2rem;
  }

  .tab-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%;
  }


.tab-btn {
  background: var(--c_gray_dark);
  color: var(--c_pure_white);
  font-size: var(--fs_md);
  flex: 1;
  cursor: pointer;
  line-height: 1.1;
  border-right: 1px solid rgba(255, 255, 255, .25);
  transition: opacity .2s ease, transform .2s ease;
  flex-direction: column;
  height: 65px;
  display: inline-block;
}

li.tab-btn a {
  padding: 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

  .tab-btn:last-child {
    border-right: none;
  }

  .tab-btn:hover {
    transform: translateY(-3px);
    background: var(--c_red);
  }

  .tab-btn .material-icons-outlined {
    font-size: var(--fs_md);
  }
/* =========================
   Stats
========================= */

#stats {
  text-align: center;
}

#stats h3 {
  font-size: var(--fs_xl);
  font-weight: bold;
  margin: 0 auto;
}


.photo-card-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 2rem auto;
}

.photo-card {
  background: var(--c_pure_white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .10);
  overflow: hidden;
}

.photo-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}


.photo-card__body {
  padding: 16px;
  text-align: left;
}

.photo-card__body dl {
  display: flex;
  align-items: stretch;
  background: var(--c_pure_white);
}


.photo-card__body dt.sli_txt {
  border-left: solid 4px var(--c_red);
  display: flex;
  flex-direction: column;
  font-weight: bold;
  padding: 0 0 0 10px;
  margin: 0 auto 1rem;
  line-height: 1.3;
}

span.rec_sub_title {
  color: var(--c_green);
  font-size: var(--fs_md);
}

span.rec_main_title {
  color: var(--c_red);
  font-size: var(--fs_xl);
}


.photo-card__body dd p.venue-highlight {
  background: var(--c_light_gray, #f5f5f5); 
  padding: 10px 14px;
  margin-bottom: 0.75rem;
  line-height: 1.6;
        text-indent: -2.5em;
        padding-left: 3.5em;
}

.photo-card__body dd span {
  font-weight: bold;
}

.stats__card p,
.photo-card__text {
  font-size: var(--fs_sm);
  line-height: 1.6;
}

  /* =========================
       Highlights
    ========================= */

  #highlights h2 {
    margin: 0 auto 4rem;
  }

	#highlights h2 span.sub_title{
		font-size: var(--fs_md);
		padding: 1rem 0 0;
	}
.recommend {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}


.recommend-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 25px;
}


.recommend-img {
  display: flex;
  flex-direction: column;
}
.recommend-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  flex: 1;
}


.recommend-img--double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.recommend-img--double img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sli_txt {
  width: 100%;
}

.recommend h5 {
  border-left: solid 4px var(--c_red);
  display: flex;
  flex-direction: column;
  font-weight: bold;
  padding: 0 0 0 10px;
  letter-spacing: 1px;
  margin: 0 auto 1rem;
}
span.rec_main_title {
  color: var(--c_red);
  font-size: var(--fs_xl);
}
span.rec_sub_title {
  color: var(--c_green);
  font-size: var(--fs_md);
}


ul.recommend dl.bullet-list {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.3em 0.75em;
  align-items: baseline;
  background: none;
}
ul.recommend dl.bullet-list dt {
  font-weight: bold;
  font-size: var(--fs_sm);
  white-space: nowrap;
}
ul.recommend dl.bullet-list dd {
  margin: 0;
  font-size: var(--fs_sm);
  line-height: 1.6;
}
ul.recommend p {
  font-size: var(--fs_sm);
  line-height: 1.6;
}

	
	
  /* =========================
       Plan section
 ========================= */
	
	
  /* Coming Soon対応 */
  .plan__tab-btn[disabled],
  .plan__tab-btn.is-disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: default;
    background: var(--c_black_h_light);
  }


  #plan h2,#booth h2 {
    margin: 0 auto 3rem;
  }

  #plan h3 .section-label,#booth h3 .section-label {
    font-size: var(--fs_md);
    letter-spacing: 3px;
    color: var(--c_gray);
  }

  #plan h3,#booth h3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: var(--fs_4xl);
    letter-spacing: 2px;
    font-weight: bold;
    position: relative;
    padding: 0 0 10px;
    margin: 1rem auto 2.5rem;
  }

  #plan h3::after, #booth h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--c_red);
  }

  .plan__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  /* タブボタン */
  .plan__tabs {
    display: flex;
    gap: 0;
    align-self: flex-start;
    width: 100%;
    max-width: 1200px;
  }

  .plan__tab-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    font-size: var(--fs_lg);
    font-weight: bold;
    cursor: pointer;
    border: none;
    background: var(--c_gray_dark);
    color: var(--c_white);
    border-radius: 10px 10px 0 0;
    transition: background .2s ease;
    margin-right: 4px;
    flex-direction: column;
    line-height: 1.5;
  }

  .plan__tab-btn:last-child {
    margin-right: 0;
  }

  .plan__tab-btn .plan__tab-sub {
    font-size: var(--fs_caption);
    opacity: 0.8;
  }

  .plan__tab-btn.is-active {
    background: var(--c_red);
  }

  .plan__tab-btn:hover:not(.is-active) {
    background: var(--c_gray);
  }

  /* タブコンテンツ */
  .plan__tab-content {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: var(--c_pure_white);
    padding: 3rem 3rem 4rem;
    border-radius: 0 4px 4px 4px;
  }

  .plan__tab-content.is-active {
    display: flex;
  }

  .plan__tab-content .plan__block+.plan__block {
    margin-top: 3rem;
  }

  .plan__tab-content .plan__block+.support {
    margin-top: 2rem;
  }

  /* 画像 */
  figure {
    max-width: 970px;
    position: relative;
    margin: 0 auto;
  }

  figure img {
    width: 100%;
    height: auto;
  }
	
	.plan_caption{
		max-width: 970px;
		margin: auto;
	}

  /* =========================
       Support section 
    ========================= */
  .support__card_box {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 80%;
    margin: 3rem auto 0;

  }

  .support__card_box h4 {
    font-size: var(--fs_xl);
    font-weight: bold;
    margin: 0 auto;
  }

  .support__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    flex: 1;
  }

  .support__card__icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--c_red);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .support__card__icon .material-icons-outlined {
    font-size: var(--fs_7xl);
    color: var(--c_white);
  }

  .support__card h3 {
    font-size: var(--fs_lg);
    font-weight: bold;
  }

  .support__card p {
    font-size: var(--fs_sm);
    line-height: 1.5;
  }

	.txt_caption{
		margin: auto;
		width: 80%;
		font-size: var(--fs_sm);
		text-align: right;
	}
	


  /* =========================
       Flow 
========================= */

  #flow .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .flow__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .flow__timeline {
    width: 100%;
    max-width: 800px;
  }


  .flow__row {
    display: grid;
    grid-template-columns: 100px 40px 1fr;
    align-items: stretch;
  }

  /* 年ラベル */
  .flow__year {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-right: 15px;
  }

  .flow__year span {
    font-family: Arial, sans-serif;
    font-size: var(--fs_xl);
    font-weight: bold;
    color: var(--c_red);
    line-height: 1.1;
    white-space: nowrap;
  }

  /* 軸 */
  .flow__axis {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .flow__axis:first-child {
    margin: 10px 0 0 0;
  }

  .flow__dot {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 3px solid var(--c_red);
    flex-shrink: 0;
    z-index: 1.2;
  }

  .flow__dot--filled {
    background: var(--c_red);
  }

  .flow__vline {
    width: 3px;
    background: var(--c_red);
    flex: 1;
    min-height: 10px;
  }

  .flow__row:last-child .flow__vline {
    display: none;
  }

  /* イベント */
  .flow__event {
    display: flex;
    gap: 15px;
    padding: 0 0 2.5rem 16px;
    align-items: flex-start;
    line-height: 1.2;
  }

  .flow__event__date {
    font-family: Arial, Helvetica, "sans-serif";
    font-size: var(--fs_md);
    font-weight: bold;
    color: var(--c_gray_dark);
    white-space: nowrap;
    min-width: 150px;
  }

  .flow__event__text {
    font-size: var(--fs_sm);
    line-height: 1.2;
    color: var(--c_gray_dark);
  }

  /* 申込締切・開催スケジュール */
  .flow__info-blocks {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 0rem auto 2rem;
  }

  .flow__info-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .flow__info-title {
    font-size: var(--fs_lg);
    font-weight: bold;
    border-bottom: 2px solid var(--c_red);
    padding-bottom: 5px;
  }

  .flow__info-table {
    width: 100%;
    border-collapse: collapse;
  }

  .flow__info-table td {
    padding: 8px 0;
    font-size: var(--fs_sm);
    line-height: 2;
    border-bottom: 1px solid var(--c_gray_light);
    vertical-align: top;
  }

  .flow__info-table td:first-child {
    font-weight: bold;
    white-space: nowrap;
    width: 250px;
  }

  .flow__info-text {
    font-size: var(--fs_md);
  }

  .flow__nav-wrap {
    width: 100%;
  }

  .flow__nav-wrap ul {
    display: flex;
    justify-content: center;
    gap: 12px;
    max-width: 1200px;
    margin: auto;
  }	
	
 /* =========================
   FAQ section
========================= */
#faq h2 {
  margin: 0 auto 3rem;
}

.faq__category-body__inner {
    background-color: var(--c_pure_white);
}	
	
.faq__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.faq__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq__category {
  border-radius: 2px;
  overflow: hidden;
}

/* Q&A */
.faq__item {
  padding: 20px 24px;
  border-bottom: 1px solid var(--c_gray_light);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__q {
  display: flex;
  gap: 10px;
  font-size: var(--fs_md);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 5px;
}

.faq__q::before {
  content: 'Q.';
  color: var(--c_red);
  font-family: Arial, Helvetica, "sans-serif";
  font-weight: bold;
  flex-shrink: 0;
}

.faq__a {
  display: flex;
  gap: 10px;
  line-height: 1.5;
  color: #6d6d6d;
  font-size: var(--fs_sm);
  margin: 0 auto;
}

.faq__a::before {
  content: 'A.';
  color: var(--c_gray_dark);
  font-family: Arial, Helvetica, "sans-serif";
  font-weight: bold;
  flex-shrink: 0;
}
	
  /* =========================
       Digital Pamphlet
    ========================= */
  #d-pamphlet h2 {
    margin: 0 auto 3.5rem;
  }

  #d-pamphlet .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .d-pamphlet__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
	
	
.dp_contents {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
}

.d-pamphlet__img:nth-child(1),
.d-pamphlet__img:nth-child(2) {
  grid-column: span 3; 
}

.d-pamphlet__img:nth-child(3),
.d-pamphlet__img:nth-child(4),
.d-pamphlet__img:nth-child(5) {
  grid-column: span 2; 
}

  .d-pamphlet__img {
    width: 100%;
    margin: 0 auto 2.5rem;
  }



  /* ボタン */
  .d-pamphlet__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 2px solid var(--c_gray_dark);
    color: var(--c_gray_dark);
    background: transparent;
    font-size: var(--fs_md);
    font-weight: bold;
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .35s ease;
  }

  .d-pamphlet__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--c_gray_dark);
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    z-index: 0;
  }

  .d-pamphlet__btn:hover {
    color: var(--c_pure_white);
  }

  .d-pamphlet__btn:hover::before {
    transform: translateX(0);
  }

  .d-pamphlet__btn span {
    position: relative;
    z-index: 1;
  }

  .d-pamphlet__btn .material-icons-outlined {
    position: relative;
    z-index: 1;
    font-size: var(--fs_md);
  }

.d-pamphlet__img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.d-pamphlet__img-link {
  display: block;
  max-width: 300px;
  width: 100%;
  margin: 0 auto 1.5rem;
}

.d-pamphlet__img img {
  width: 100%;
  height: auto;
  max-width: 300px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
  transition: box-shadow .35s ease; 
  display: block;
}

.d-pamphlet__img-link:hover img {
  box-shadow: none;
}

.d-pamphlet__img-wrap:hover .d-pamphlet__btn {
  color: var(--c_pure_white);
}
.d-pamphlet__img-wrap:hover .d-pamphlet__btn::before {
  transform: translateX(0);
}
	
	
	div#stats {
		scroll-margin-top: 100px;
	}	
}




/* 1500px以上 */
@media screen and (min-width: 1200px) {
  .pamphlet-badge {
    left: calc((100% - 1200px) / 2 + 24px);
  }
}

/* 1200px以下 */
@media screen and (max-width: 1200px) {

	.di1200none{display: none;}
#catch .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  padding: 4rem 0 3rem;
  position: relative;
  z-index: 3;
  letter-spacing: 3px;
  text-align: center;
  width: 90%; 
}

#catch .inner p {
  width: 100%;
  text-align: center;
}
#catch .inner > p {
  width: 100%;
  text-align: center;
  max-width: 1200px; 
}	
  .stats__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin: auto;
  }

}