@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;
}

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: #F8F7F5;
  --c_pure_white: #FFFFFF;
  --c_gray_dark: #232323;
  --c_gray: #777777;
  --c_gray_light: #F0F0F0;
  --c_yellow: #F3C922;
  --c_green: #468746;
  --c_red: #C50B0C;
  --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_pure_white);
}

/* =========================
       スクロールアニメーション
    ========================= */
.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,
li.nav-btn.nav-btn--green a:hover {
  background: var(--c_red);
  transform: translateY(-3px);
}

/* 緑ボタン */
li.nav-btn.nav-btn--green a {
  background: var(--c_green);
}


/* =========================
   固定ナビ
========================= */
#navFixed {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.22, .61, .36, 1);
  background: linear-gradient(to right, var(--c_green) 50%, var(--c_gray_dark) 50%);
}

#navFixed.is_show {
  transform: translateY(0);
}

#navFixed li:nth-child(2){
	border-right: 1px solid var(--c_black_h_light);
}


#navFixed li.nav-btn a:hover,
#navFixed li.nav-btn.nav-btn--green 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_sm);
    letter-spacing: 2px;
    color: var(--c_black_h_light);
  }

  h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: var(--fs_3xl);
    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_md);
        font-weight: bold;
        padding: 2.5rem 0 1.5rem!important;
        text-align: center;
        line-height: 2.1;
		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_5xl);
    line-height: 1;
  }

  .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,
  #navFixed li.nav-btn.nav-btn--green a {
    height: 75px;
  }

  .totop {
    display: none !important;
  }
	
	section#highlights,section#plan,section#flow {
		scroll-margin-top: 25px;
	}


  /* =========================
     About
  ========================= */
  #about {
    text-align: center;
  }

  #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_xl);
    font-weight: bold;
    margin: 1rem auto 1.5rem;
  }

  .stats__cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin: auto;
  }

 

  .stats__card {
    border: 2px solid var(--c_red);
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
  }

  .stats__card__label {
    font-size: var(--fs_md);
    font-weight: bold;
    color: var(--c_red);
  }

  .stats__card__text {
    font-size: var(--fs_xl);
    font-weight: bold;
    color: var(--c_red);
  }

  .stats__card__num {
    font-weight: bold;
    color: var(--c_red);
    font-size: var(--fs_5xl);
    display: inline-flex;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
  }

  .stats__card__note {
    font-size: var(--fs_caption);
    color: var(--c_red);
    margin-top: 6px;
    font-weight: bold;
  }

  /* =========================
     Photo cards
  ========================= */
  .photo-card-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem auto 1rem;
  }

  .photo-card {
    background: var(--c_pure_white);
  }

  .photo-card__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
  }

  .photo-card__body {
    padding: 12px;
    text-align: left;
  }

    .photo-card__tag {
        display: inline-flex;
        align-items: center;
        font-size: var(--fs_md);
        font-weight: bold;
        margin-bottom: 4px;
        padding-left: 10px;
        border-left: 3px solid var(--c_red);
        line-height: 1.4;
    }

  .photo-card__text {
    font-size: var(--fs_body);
    line-height: 1.6;
  }

  /* =========================
     Highlights
  ========================= */
  #highlights h2 {
    margin: 0 auto 1rem;
  }

  .highlights__item_box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .highlights__item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .highlights__item--img-right .highlights__item__img {
    order: 0;
  }

  .highlights__item--img-right .highlights__item__body {
    order: 0;
  }

  .highlights__item__img img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 2px;
  }

  .highlights__item__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

/* =========================
   赤バー highlight
========================= */
	
.highlight-text .hl {
	font-size: var(--fs_lg);
	font-weight: bold;
  background: transparent;
  color: transparent;
  padding: 2px 10px 4px;
	
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-image: linear-gradient(to right, var(--c_red) 100%, transparent 100%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
}

.highlight-text .hl.animate {
  animation: highlightWipeIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes highlightWipeIn {
  0%   { background-size: 0% 100%; color: transparent; }
  60%  { color: transparent; }
  100% { background-size: 100% 100%; color: var(--c_pure_white); }
}

	
  ul.highlights__item__list {
    padding-left: 1.2rem;
    font-size: var(--fs_body);
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  ul.highlights__item__list li {
    list-style: circle;
    line-height: 1.6;
  }

  /* =========================
     Plan section
  ========================= */
  #plan h2 {
    margin: 0 auto 2rem;
  }

  #plan h3 .section-label {
    font-size: var(--fs_body);
    letter-spacing: 2px;
    color: var(--c_gray);
  }

    #plan 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 {
    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__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: 1rem;
  }
	
  .faq__category {
    border-radius: 2px;
    overflow: hidden;
  }	

  /* アコーディオンボタン */
  .faq__category-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px 20px;
    background: var(--c_red);
    color: var(--c_pure_white);
    font-size: var(--fs_body);
    font-weight: bold;
    cursor: pointer;
    border: none;
    text-align: left;
    transition: opacity .2s ease;
  }

  .faq__category-btn:hover {
    opacity: .88;
  }

  .faq__category-btn .faq__acc-icon {
    font-size: var(--fs_xl);
    flex-shrink: 0;
  }

  .faq__category-btn .faq__acc-label {
    flex: 1;
  }

  /* アコーディオン */
  .faq__category-body {
    background: var(--c_pure_white);
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .4s cubic-bezier(.4, 0, .2, 1);
  }

  .faq__category-body.is-open {
    grid-template-rows: 1fr;
  }

  .faq__category-body__inner {
    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;
  }
	
  /* =========================
     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: 10px;
        color: var(--c_white);
        background: var(--c_gray_dark);
        font-size: var(--fs_body);
        font-weight: bold;
        padding: 12px 24px;
        cursor: pointer;
        position: relative;
        width: 80%;
        justify-content: center;
    }

  .d-pamphlet__btn .material-icons-outlined {
    position: relative;
    z-index: 1;
    font-size: var(--fs_body);
  }
	
    .dp_contents {
        display: flex;
        align-items: flex-start;
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }

  .d-pamphlet__img {
    width: 100%;
    margin: 0 auto 3rem;
  }


  .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: 80%;
        height: auto;
        margin: auto;
        object-fit: cover;
        box-shadow: 0 3px 10px 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(-150px, -10vw, -40px);
    left: 43%;
    transform: translateX(calc(1500px / -2)) translateX(-10%);
    width: clamp(400px, 75vw, 1100px);
    aspect-ratio: 1100 / 450;
    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(-185px, -15vw, -60px);
    left: 60%;
    transform: translateX(calc(1500px / 2)) translateX(-70%);
    width: clamp(300px, 75vw, 835px);
    aspect-ratio: 835 / 490;
    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: 4rem 0;
    position: relative;
    z-index: 3;
    letter-spacing: 3px;
  }

  .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 0;
    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,
  #navFixed li.nav-btn.nav-btn--green 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 .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .about__text {
    font-size: var(--fs_md);
    line-height: 2;
    letter-spacing: 2px;
    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_xxl);
    font-weight: bold;
    margin: 0 auto 2rem;
  }

  .stats__cards {
    display: flex;
    gap: 25px;
    justify-content: center;
    width: 90%;
    margin: auto;
  }


  .stats__card {
    border: 2px solid var(--c_red);
    border-radius: 10px;
    padding: 25px 15px 20px;
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
  }

  .stats__card__label {
    font-size: var(--fs_lg);
    font-weight: bold;
    color: var(--c_red);
  }

  .stats__card__text {
    font-size: var(--fs_4xl);
    font-weight: bold;
    color: var(--c_red);
  }

  .stats__card__num {
    font-weight: bold;
    color: var(--c_red);
    font-size: var(--fs_8xl);
    display: inline-flex;
    align-items: center;
    font-family: Arial, Helvetica, "sans-serif";
  }

  .stats__card__note {
    font-size: var(--fs_caption);
    color: var(--c_red);
    margin-top: 6px;
    font-weight: bold;

  }


  /* =========================
       Photo cards
    ========================= */

  .photo-card-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 5rem auto 2rem;
  }

  .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__tag {
    display: inline-flex;
    align-items: center;
    font-size: var(--fs_md);
    font-weight: bold;
    margin-bottom: 6px;
    padding-left: 10px;
    border-left: 3px solid var(--c_red);
    line-height: 1.4;
  }

  .photo-card__text {
    font-size: var(--fs_sm);
    line-height: 1.5;
  }

  /* =========================
       Highlights
    ========================= */

  #highlights h2 {
    margin: 0 auto 4rem;
  }

  .highlights__item_box {
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
  }


  .highlights__item {
    display: grid;
    gap: 2rem;
    align-items: center;
    align-items: start;
  }

  .highlights__item:nth-child(odd) {
    grid-template-columns: 2fr 3fr;
  }

  .highlights__item:nth-child(even) {
    grid-template-columns: 3fr 2fr;
  }

  .highlights__item--img-right .highlights__item__img {
    order: 2;
  }

  .highlights__item--img-right .highlights__item__body {
    order: 1;
  }

  .highlights__item__img img {
    width: 100%;
    aspect-ratio: 5/3;
    object-fit: cover;
    border-radius: 2px;
  }

  .highlights__item__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }


  ul.highlights__item__list {
    padding-left: 1.5rem;
    font-size: var(--fs_sm);
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  ul.highlights__item__list li {
    list-style: circle;
    line-height: 1.5;
  }

	
	
	
/* =========================
   赤バー highlight
========================= */

.highlight-text .hl {
	font-size: var(--fs_xxl);
	font-weight: bold;
  background: transparent;
  color: transparent;
  padding: 2px 10px 4px;
	
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-image: linear-gradient(to right, var(--c_red) 100%, transparent 100%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
}

.highlight-text .hl.animate {
  animation: highlightWipeIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes highlightWipeIn {
  0%   { background-size: 0% 100%; color: transparent; }
  60%  { color: transparent; }
  100% { background-size: 100% 100%; color: var(--c_pure_white); }
}
	
	
	
  /* =========================
       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 {
    margin: 0 auto 3rem;
  }

  #plan h3 .section-label {
    font-size: var(--fs_md);
    letter-spacing: 3px;
    color: var(--c_gray);
  }

  #plan 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 {
    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;
  }

  /* =========================
       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: 600px;
  }


  .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: 90px;
  }

  .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__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;
  }

  /* アコーディオンボタン */
  .faq__category-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 7px 20px;
    background: var(--c_red);
    color: var(--c_pure_white);
    font-size: var(--fs_md);
    font-weight: bold;
    cursor: pointer;
    border: none;
    text-align: left;
    transition: opacity .2s ease;
  }

  .faq__category-btn:hover {
    opacity: .88;
  }

  .faq__category-btn .faq__acc-icon {
    font-size: var(--fs_xxl);
    flex-shrink: 0;
  }

  .faq__category-btn .faq__acc-label {
    flex: 1;
  }

  /* アコーディオン */
  .faq__category-body {
    background: var(--c_pure_white);
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .4s cubic-bezier(.4, 0, .2, 1);
  }

  .faq__category-body.is-open {
    grid-template-rows: 1fr;
  }

  .faq__category-body__inner {
    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: flex;
        align-items: flex-start;
        width: 70%;
        justify-content: center;
    }

  .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: 14px 32px;
    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 2rem;
}

.d-pamphlet__img img {
  width: 100%;
  height: auto;
  max-width: 300px;
  object-fit: cover;
  box-shadow: 0 3px 10px 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);
}


}

/* 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;
  }

  .stats__cards p {
    margin: 0;
  }
}