/* =========================================================
   TSC Classic For Children
   article scope
========================================================= */

.cfc {
  --cfc-main: #00a99d;
  --cfc-main-dark: #087d76;
  --cfc-dark: #173c3b;
  --cfc-text: #253536;
  --cfc-pale: #f0faf8;
  --cfc-line: #cce7e3;
  --cfc-concert: #101b1d;
  --cfc-white: #ffffff;

  position: relative;
  overflow: hidden;

  font-size: 22px;
  line-height: 1.8;
  color: var(--cfc-text);

  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    sans-serif;
}


/* reset inside article */

.cfc *,
.cfc *::before,
.cfc *::after {
  box-sizing: border-box;
}

.cfc h1,
.cfc h2,
.cfc h3,
.cfc h4,
.cfc p,
.cfc figure,
.cfc dl,
.cfc dd {
  margin: 0;
}

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

.cfc a {
  color: inherit;
  text-decoration: none;
}

p{text-align:left;}

/* =========================================================
   COMMON
========================================================= */

.cfc-container {
  width: min(1100px, calc(100% - 4em));
  margin-inline: auto;
}

.cfc-section {
  padding-block: 5em;
}

.cfc-section-head {
  margin-bottom: 3em;
  text-align: center;
}

.cfc-section-label {
  margin-bottom: 0.8em;

  font-size: 0.68em;
  line-height: 1;
  letter-spacing: 0.22em;
  text-align:center;

  color: var(--cfc-main);
  font-weight: 700;
}

.cfc-heading {
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;

  font-size: 1.8em;
  line-height: 1.45;
  font-weight: 500;

  color: var(--cfc-dark);
}

.cfc-heading--center {
  text-align: center;
}

.cfc-section-intro {
  margin-top: 0.8em;

  font-size: 0.9em;
  letter-spacing: 0.05em;
  text-align:center;

  color: #526766;
}

.cfc-body-text p + p {
  margin-top: 1.5em;
}


/* =========================================================
   HERO
========================================================= */

.cfc-hero {
  position: relative;

  min-height: 32em;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: #000;
}

.cfc-hero__image {
  position: absolute;
  inset: 0;
}

.cfc-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.cfc-hero__overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0.28) 55%,
      rgba(0, 0, 0, 0.48) 100%
    );
}

.cfc-hero__inner {
  position: relative;
  z-index: 2;

  padding-block: 4em;
  transform: translateY(5em);

  text-align: center;
  color: #fff;
}

.cfc-hero__lead {
  margin-bottom: 1.2em;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 0.95em;
  letter-spacing: 0.12em;
}

.cfc-hero__title {
  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 3.2em;
  line-height: 1.05;
  font-weight: 400;
  width:100%;
  text-align:center;

  letter-spacing: 0.01em;

  text-shadow: 0 0.1em 0.5em rgba(0, 0, 0, 0.25);
}

.cfc-hero__inner p{text-align:center;}

.cfc-body-text {font-size:0.8em;}

.cfc-hero__title span {
  display: block;

  margin-bottom: 0.15em;

  font-size: 0.5em;
  color: #50d3c9;
}

.cfc-hero__copy {
  margin-top: 0.8em;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 1.05em;
  line-height: 1.9;
  letter-spacing: 0.06em;

  text-shadow: 0 0.08em 0.3em rgba(0, 0, 0, 0.45);
}


/* =========================================================
   MESSAGE
========================================================= */

.cfc-message {
  background: #fff;
}

.cfc-message__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3.5em;
  align-items: center;
}

.cfc-message__text .cfc-heading {
  margin-bottom: 1.3em;
}

.cfc-message__visual {
  position: relative;
}

.cfc-message__photo {
  overflow: hidden;
  border-radius: 0.6em;
}

.cfc-message__photo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cfc-message__copy {
  position: absolute;
  right: 1.3em;
  bottom: 1.2em;

  padding: 0.7em 1em;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 1.2em;
  line-height: 1.55;

  color: #fff;

  background: rgba(14, 54, 52, 0.72);

  backdrop-filter: blur(4px);
}


/* =========================================================
   ABOUT
========================================================= */

.cfc-about {
  padding-bottom: 3em;

  background:
    linear-gradient(
      180deg,
      #f7fcfb 0%,
      var(--cfc-pale) 100%
    );
}

.cfc-about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}

.cfc-about-card {
  position: relative;
  text-align: center;
}

.cfc-about-card + .cfc-about-card::before {
  content: "";

  position: absolute;
  top: 0;
  bottom: 0;
  left: -1em;

  width: 1px;

  background: var(--cfc-line);
}

.cfc-about-card__icon {
  margin-bottom: 1.2em;
}

.cfc-about-card__icon span {
  display: inline-grid;
  place-items: center;

  width: 3.2em;
  height: 3.2em;

  border: 1px solid var(--cfc-main);
  border-radius: 50%;

  font-size: 0.75em;
  letter-spacing: 0.08em;

  color: var(--cfc-main);
  font-weight: 700;
}

.cfc-about-card h3 {
  margin-bottom: 1em;

  font-size: 1.05em;
  line-height: 1.55;

  color: var(--cfc-main-dark);
}

.cfc-about-card p {
  font-size: 0.78em;
  line-height: 1.9;
}


/* =========================================================
   PROJECT
========================================================= */

/* =========================================================
   PROJECT
========================================================= */

.cfc-project {
  padding-block: 1em 5em;
  background: var(--cfc-pale);
}

.cfc-project__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4em;
}

.cfc-project-card {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 2.2em 1.8em;

  text-align: center;

  background: #fff;
  border: 1px solid var(--cfc-line);
  border-radius: 0.55em;
}

.cfc-project-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 2.5em;
  height: 2.5em;
  margin-bottom: 1.3em;
}

.cfc-project-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cfc-project-card__title {
  margin-bottom: 1.5em !important;

  font-size: 1em;
  line-height: 1.5;
  font-weight: 700;

  color: var(--cfc-main-dark);
}

.cfc-project-card__text {
  font-size: 0.78em;
  line-height: 1.9;
  text-align: left;
}

.cfc-project-card__text span {
  display: block;
  margin-top: 0.4em;
}

/* =========================================================
   CONCERTS
========================================================= */

.cfc-concerts {
  background: #fff;
}

/* =========================================================
   CONCERT CARD
========================================================= */

.cfc-concert-card {
  overflow: hidden;

  border-radius: 0.6em;

  background:
    linear-gradient(
      135deg,
      #102123 0%,
      #0d191b 100%
    );

  color: #fff;
}


/* -------------------------
   BODY
-------------------------- */

.cfc-concert-card__body {
  display: grid;

  /* 左を少し細く、右を大きく */
  grid-template-columns: 0.9fr 1.1fr;

  gap: 3.5em;

  padding: 3.2em;
}


/* =========================================================
   LEFT
========================================================= */

.cfc-concert-card__info {
  min-width: 0;
}


/* 上部英字 */

.cfc-concert-card__eyebrow {
  display: flex;
  align-items: center;
  gap: 1em;

  margin-bottom: 0.8em;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 0.7em;
  letter-spacing: 0.18em;

  color: #75d6cf;
}

.cfc-concert-card__eyebrow::after {
  content: "";

  width: 5em;
  height: 1px;

  background: rgba(117, 214, 207, 0.7);
}


/* 第1弾 */

.cfc-concert-card__tag {
  display: inline-block;

  margin-bottom: 1em;
  padding: 0.35em 1em;

  border-radius: 999px;

  background: #dff4ef;

  color: #173c3b;

  font-size: 1em;
  line-height: 1.4;
  font-weight: 700;
}


/* 日付 */

.cfc-concert-card__date {
  margin-bottom: 0.7em;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 1.5em;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.cfc-concert-card__date span {
  margin-left: 0.5em;

  font-size: 0.45em;
  letter-spacing: 0.15em;

  color: #71d4cc;
}


/* タイトル */

.cfc-concert-card__title {
  margin-bottom: 1.5em;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;

  font-size: 1.7em;
  line-height: 1.35;
  font-weight: 500;

  letter-spacing: 0.03em;
}

.cfc-concert-card__title small {
  display: block;

  margin-top: 0.25em;

  font-family:
    Georgia,
    "Noto Serif JP",
    serif;

  font-size: 0.6em;
  font-weight: 400;

  color: #9adbd5;
}


/* =========================================================
   詳細
========================================================= */

.cfc-concert-data {
  margin-bottom: 2em;
}

.cfc-concert-data > div {
  display: grid;
  grid-template-columns: 5em 1fr;

  gap: 1.2em;

  padding-block: 0.55em;

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cfc-concert-data dt {
  display: flex;
  align-items: center;
  justify-content: center;

  align-self: start;

  padding: 0.25em 0.6em;

  border-radius: 0.2em;

  background: #07958d;

  font-size: 0.68em;
  line-height: 1.4;
  font-weight: 700;

  color: #fff;
}

.cfc-concert-data dd {
  padding-top: 0.1em;

  font-size: 0.82em;
  line-height: 1.75;

  text-align: left;
}


/* =========================================================
   PROGRAM
========================================================= */

.cfc-program {
  padding-top: 4em;
}

.cfc-program__label {
  display: flex;
  align-items: center;
  gap: 1em;

  margin-bottom: 1.2em;

  font-size: 0.65em;
  letter-spacing: 0.2em;

  color: #69d6ce;
}

.cfc-program__label::after {
  content: "";

  flex: 1;

  height: 1px;

  background: rgba(105, 214, 206, 0.55);
}

.cfc-program p:not(.cfc-program__label) {
  font-size: 0.78em;
  line-height: 1.75;
}

.cfc-program p + p {
  margin-top: 1em;
}


/* =========================================================
   CTA
========================================================= */

.cfc-concert-card__cta {
  margin-top: 2.3em;

  text-align: center;
}

.cfc-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  width: min(100%, 19em);

  padding: 0.95em 1.5em;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      #078f88,
      #08bcb0
    );

  font-size: 0.82em;
  line-height: 1.4;
  font-weight: 700;

  color: #fff;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.cfc-button:hover {
  transform: translateY(-0.1em);
  opacity: 0.9;
}

.cfc-button span {
  margin-left: 1em;
}

.cfc-button-note {
  display: block;

  margin-top: 0.5em;

  font-size: 0.6em;

  color: #b5c4c3;
}


/* =========================================================
   RIGHT / FLYER
========================================================= */

.cfc-concert-card__visual {
  display: flex;
  flex-direction: column;

  justify-content: flex-start;

  min-width: 0;
}

.cfc-flyer {
  width: 100%;

  margin: 0;

  padding: 0.45em;

  background: none

  box-shadow:
    0 0.8em 2em rgba(0, 0, 0, 0.38);
}

.cfc-flyer img {
  display: block;

  width: 100%;
  height: auto;
}


/* チラシリンク */

.cfc-flyer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 1.3em;

  padding-block: 0.8em;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.2);

  font-size: 0.75em;

  color: #fff;

  transition: color 0.2s ease;
}

.cfc-flyer-link:hover {
  color: #77d9d1;
}


/* =========================================================
   MOVIE
========================================================= */

.cfc-movie {
  display: grid;
  grid-template-columns: 0.3fr 0.7fr;

  gap: 2.5em;
  align-items: center;

  padding: 2.5em 3.2em;

  border-top:
    1px solid rgba(255, 255, 255, 0.1);

  background: rgba(0, 0, 0, 0.12);
}

.cfc-movie__head h4 {
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 1.35em;
  font-weight: 500;
}

.cfc-movie__video {
  width: 100%;

  aspect-ratio: 16 / 9;
}

.cfc-movie__video iframe {
  display: block;

  width: 100%;
  height: 100%;

  border: 0;
}

.cfc-video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;

  gap: 0.6em;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.55)
    ),
    url("img/movie-thumb.jpg")
    center / cover no-repeat;

  border:
    1px solid rgba(255, 255, 255, 0.16);

  color: #fff;

  font-size: 0.7em;
  letter-spacing: 0.1em;
}

.cfc-video-placeholder__play {
  display: grid;
  place-items: center;

  width: 4em;
  height: 4em;

  border:
    1px solid rgba(255, 255, 255, 0.85);

  border-radius: 50%;
}

/* =========================================================
   CONCERT MOVIE
========================================================= */

.cfc-concert-movie {
  margin-top: 2.2em;
}

.cfc-concert-movie__head {
  display: flex;
  align-items: center;
  gap: 1em;

  margin-bottom: 0.8em;
}

.cfc-concert-movie__head .cfc-section-label {
  margin: 0;
}

.cfc-concert-movie__title {
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 0.8em;
  color: #fff;
}

.cfc-concert-movie__video {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.cfc-concert-movie__video iframe {
  display: block;

  width: 100%;
  height: 100%;

  border: 0;
}

.cfc-concert-movie__video .cfc-video-placeholder {
  width: 100%;
  height: 100%;
}

/* =========================================================
   SP
========================================================= */

@media (max-width: 767px) {

  .cfc-concert-card__body {
    grid-template-columns: 1fr;

    gap: 2.5em;

    padding: 2.2em 1.5em;
  }

  .cfc-concert-card__eyebrow {
    font-size: 0.72em;
  }

  .cfc-concert-card__tag {
    font-size: 1em;
  }

  .cfc-concert-card__date {
    font-size: 1.8em;
  }

  .cfc-concert-card__title {
    font-size: 1.8em;
  }

  .cfc-concert-data > div {
    grid-template-columns: 4.5em 1fr;
    gap: 1em;
  }

  .cfc-concert-data dd {
    font-size: 0.9em;
  }

  .cfc-program p:not(.cfc-program__label) {
    font-size: 0.9em;
  }

  .cfc-concert-card__cta {
    text-align: center;
  }

  .cfc-button {
    width: 100%;
  }

  .cfc-concert-card__visual {
    width: 100%;
    max-width: 34em;

    margin-inline: auto;
  }

  .cfc-movie {
    grid-template-columns: 1fr;

    gap: 1.5em;

    padding: 2em 1.5em;
  }

}

.cfc-concert-card__meta {
  display: flex;
  align-items: center;
  gap: 1.2em;

  margin-bottom: 1.3em;
}

.cfc-concert-card__tag {
  margin-bottom: 0;
}

.cfc-concert-card__date {
  margin-bottom: 0;
}

/* =========================================================
   PARTNERS
========================================================= */

.cfc-partners {
  background: #f9fcfb;
}

.cfc-sponsor-group + .cfc-sponsor-group {
  margin-top: 3.5em;
}

.cfc-sponsor-group h3 {
  margin-bottom: 1.5em;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 1em;
  font-weight: 400;

  text-align: center;

  color: var(--cfc-main-dark);
}

.cfc-sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;

  /* gap: 2.5em 3em; */
}

.cfc-sponsor-logo {
  width: 9em;
}

.cfc-sponsor-group--platinum .cfc-sponsor-logo {
  width: 30%;
}

.cfc-sponsor-group--medium .cfc-sponsor-logo {
  width: 23%;
}

.cfc-sponsor-logos--small .cfc-sponsor-logo {
  width: 18%;
}

.cfc-sponsor-logo img {
 /* max-height: 4em; 
 border: 1px solid #000;*/
  object-fit: contain;
  
}


/* =========================================================
   PC ONLY
========================================================= */

.cfc-pc {
  display: inline;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .cfc-message__grid {
    gap: 2.5em;
  }

  .cfc-about__grid,
  .cfc-project__grid {
    gap: 1.2em;
  }

  .cfc-concert-card__body {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2em;
  }

}


/* =========================================================
   SP
========================================================= */

@media (max-width: 767px) {

  .cfc {
    font-size: 14px;
  }

  .cfc-container {
    width: calc(100% - 2.5em);
  }

  .cfc-section {
    padding-block: 5em;
  }

  .cfc-section-head {
    margin-bottom: 2.6em;
  }

  .cfc-heading {
    font-size: 2em;
  }

  .cfc-pc {
    display: none;
  }


  /* HERO */

  .cfc-hero {
    min-height: 36em;
  }

  .cfc-hero__image img {
    object-position: 50% center;
  }

  .cfc-hero__inner {
    padding-block: 5em;
  }

  .cfc-hero__title {
    font-size: 3em;
  }

  .cfc-hero__copy {
    font-size: 1em;
  }


  /* MESSAGE */

  .cfc-message__grid {
    grid-template-columns: 1fr;
    gap: 2.5em;
  }

  .cfc-message__visual {
    order: 2;
  }

  .cfc-message__copy {
    right: 1em;
    bottom: 1em;

    font-size: 1.1em;
  }


  /* ABOUT */

  .cfc-about__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cfc-about-card {
    padding-block: 2.2em;
  }

  .cfc-about-card + .cfc-about-card {
    border-top: 1px solid var(--cfc-line);
  }

  .cfc-about-card + .cfc-about-card::before {
    display: none;
  }

  .cfc-about-card p {
    font-size: 0.9em;
  }


  /* PROJECT */

  .cfc-project {
    padding-top: 0;
  }

  .cfc-project__grid {
    grid-template-columns: 1fr;
  }

  .cfc-project-card {
    padding: 1.6em;
  }

  .cfc-project-card p {
    font-size: 0.88em;
  }


  /* CONCERT */

  .cfc-concert-card__body {
    grid-template-columns: 1fr;
    gap: 2.5em;

    padding: 2em 1.5em;
  }

  .cfc-concert-card__num {
    font-size: 2.2em;
  }

  .cfc-concert-card__title {
    font-size: 1.7em;
  }

  .cfc-concert-data > div {
    grid-template-columns: 4.5em 1fr;
  }

  .cfc-concert-data dd,
  .cfc-program p:not(.cfc-program__label) {
    font-size: 0.9em;
  }

  .cfc-button {
    width: 100%;
    min-width: 0;

    padding-inline: 1.2em;
  }

  .cfc-button-note {
    margin-left: 0;
    text-align: center;
  }

  .cfc-concert-card__visual {
    max-width: 24em;
    margin-inline: auto;
  }


  /* MOVIE */

  .cfc-movie {
    grid-template-columns: 1fr;
    gap: 1.5em;

    padding: 2em 1.5em;
  }


  /* PARTNERS */

  .cfc-sponsor-group + .cfc-sponsor-group {
    margin-top: 3em;
  }

  .cfc-sponsor-logos {
    gap: 1em;
	justify-content:center;
  }

  .cfc-sponsor-group--platinum .cfc-sponsor-logo {
    width: 65%;
  }

  .cfc-sponsor-group--medium .cfc-sponsor-logo {
    width: 47%;
  }

  .cfc-sponsor-logos--small .cfc-sponsor-logo {
    width: 30%;
  }

}

.flex_center{ justify-content:center;}