@charset "utf-8";

/* ベース */
body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", sans-serif;
  line-height: 1.5;
 
}

img,
embed,
object,
iframe {
  vertical-align: middle;
}

a,
a img {
  transition-duration: .5s all linear;
}

a:hover {
  color: inherit;
}

span {
  font-size: 12px;
}


/* h1 .{
  font-size:clamp(30px, 1.8vw, 50px); 
  /* 画面幅が狭いとき(最小値)、基準値、画面幅が広いとき(最大値) }*/

.title01,
.title02{
  font-size:clamp(14px, 1.8vw, 45px); 
   /* 画面幅が狭いとき(最小値)、基準値、画面幅が広いとき(最大値) */
  text-align: center;
  margin: 40px;
 
}
h3{
  font-size:clamp(10px, 1.8vw, 15px); 
  text-align: center;
  /* 画面幅が狭いとき(最小値)、基準値、画面幅が広いとき(最大値) */
  margin-top: 5px;
}


/* 共通 */
.l-header__inner,
.l-footer__inner,
.p-hero__inner {
  margin: 0 auto;
}

a.p-header__logo,
a.p-footer__img {
  transition-duration: .5s;
}

a.p-header__logo:hover,
a.p-footer__img:hover {
  opacity: .6;
}

/* ↓↓↓↓↓↓↓↓ レイアウト ↓↓↓↓↓↓↓↓ */

/* 画像横並びテスト */
.flex{
  display: flex;
  flex-wrap: wrap;   /* flexを折り返す */
  justify-content:space-around; /* 両端も空白あり */
}
.flex div{
    width: calc(50% - 22px); /* margin padding分を引く */
    margin: 1px;
    padding: 5px;
  }

  /* 画像にフレーム */


/* ヘッダーレイアウト */
.l-header--blue {
  background-color: #000000;
}

.l-header__inner {
  padding: 12px 18px 24px;
}

/* メインレイアウト */
.l-main {
  background-color: #feecaa;
}

.l-main2025 {
  background-color: #F0EEBB;
  padding-bottom: 100px;
}


/* フッターレイアウト */
.l-footer {
  padding: 12px 18px;
}

.l-footer__copy {
  margin: 14px 0 0;
}


/* ↓↓↓↓↓↓↓↓ プロジェクト ↓↓↓↓↓↓↓↓ */
/* ヘッダーコンテンツ */
.p-header__heading {
  font-size: 12px;
}

.p-header__logo {
  display: block;
  max-width: 130px;
}

.p-header__logoImg {
  width: 100%;
}

/* ファーストビュー */
.p-hero{
  background-color: #f1f4f8;
  width: 100%;
}

/* .p-hero {
  background: repeating-linear-gradient(70deg, #4acee5, #4acee5 6px, #73d5e5 6px, #73d5e5 12px);
  width: 100%;
}*/

.p-hero__mv {
  display: block;
  margin: 0 auto;
}


/* 各セクション */
.p-section {
  margin: 0 auto;
  padding: 0 0 40px;
}

/*padding 0*/
.p-section2 {
  margin: 0 auto;
  padding: 0 ;
}

.p-section__inner {
  margin: 0 auto;
  padding: 0 18px;
}

.p-section__contents {
  margin: 0 auto;
}

.p-section__conversion {
  max-width: 280px;
  margin: 40px auto 0;
}

.p-section__contents,
.p-section__imgArea,
.p-section__videoArea,
.p-section__button {
  margin: 24px auto 0;
}

.p-section__button {
  max-width: 280px;
}


/* カード部分 */
.p-card {
  background-color: #FFF;
  border-radius: 10px;
  padding: 20px 36px 36px;
}

/* 塗り絵の白背景部分 */
.p-card01 {
  background-color: rgba(255,255,255,0.7);
  border-radius: 10px; /*角丸の部分*/
  /* padding: 20px 20px 26px;
  margin:15px;
  text-align: center; */
}

.p-card__headArea {
  text-align: center;
}

.p-card__textArea {
  font-size: 14px;
  margin: 16px auto 0;
}

.p-card__imgArea {
  margin: 18px auto 0;
}

.p-card__contents {
  margin: 8px auto 0;
}

.p-card--full .p-card__contents {
  margin-left: 18px;
  margin-right: 18px;
}


.p-card__note {
  font-size: 12px;
  text-align: left;
  margin-top:  10px;
  font-weight: normal;
}


/* フッターコンテンツ */


.p-footer,
.p-footer__col {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

.p-footer__img {
  display: block;
  margin: 0 0 0 18px;
}

.p-footer__img:first-child {
  margin: 0;
}

.p-footer__img--youtube {
  max-width: 34px;
}

.p-footer__img--twitter {
  max-width: 30px;
}

.p-footer__img--itscom {
  max-width: 120px;
}

/* ↓↓↓↓↓↓↓↓ コンポーネント ↓↓↓↓↓↓↓↓ */
/* ヘディング */
.c-heading {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #D61518;
  border-bottom: solid 2px #D61518;
  padding: 6px 24px;
}

/* イントロ */
.c-intro__inner {
  padding: 16px 0;
}

.c-intro__head {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}

.c-intro__lead {
  font-size: 16px;
  margin-top: 16px;
}
.c-intro__lead_b {
  font-size: 16px;
  margin-top: 16px;
  font-weight: bold;
}

.c-intro__lead2 {
  font-size: 14px;
  margin-top: 16px;
}

.c-intro__title {
  font-size: 18px;
  margin-top: 16px;
  font-weight: bold;
  color: #D61518;
}

.c-present {
  font-size: 16px;
  margin-top: 10px;
}
.c-presenttxt {
  font-size: 16px;
  margin-top: 4px;
}

.c-intro__img {
  max-width: 700px;
  margin: 36px auto 0;
}

.p-present__notes {
  font-size: 14px;
  margin-top: 20px;
}

.p-present__notes ul {
  padding-left: 1rem;
  margin-top: 8px;
}

.p-present__notes li {
  list-style: disc;
  margin-top: 4px;
}


.p-present__list {
  font-size: 16px;
  margin-top: 10px;
}

.p-present__list ul {
  padding-left: 1rem;
  margin-top: 8px;
}

.p-present__list li {
  list-style: disc;
  margin-top: 4px;
}

/* カードコンテンツ */
.c-card {
  display: block;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  height: 100%;
  margin: 20px auto 0;
  padding: 20px 10px;
  transition-duration: .5s;
}

.c-card:hover {
  transform: scale(1.05);
}

.c-card__cap {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #D21577;
  height: 60px;
  padding: 10px 18px;
}

.c-card__text {
  color: initial;
  font-size: 14px;
  padding: 12px 0;
}


/* インフォメーションコンテンツ */
.c-info {
  position: relative;
  border-radius: 10px;
  padding: 60px 20px 54px;
  margin: 34px auto 0
}

.c-info--twitter,
.c-info--youtube {
  background-image: url("/ch/img/tw_bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0px 96%;
}

.c-info--twitter {
  background-color: #ffffff;
}

.c-info--youtube {
  background-color: #ffd6da;
}

/* .c-info--twitter .c-info__contents {
  height: 420px;
} */

.c-info__titleWrap {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.c-info__title {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  background-color: #515151;
  color: #FFF;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  width: 100%;
  /* height: 70px; */
  border-radius: 8px;
  padding: 10px 14px;
  margin: 0 auto;
}

.c-info__title::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 16px;
  border-top: solid 16px #515151;
  border-right: solid 13px transparent;
  border-left: solid 13px transparent;
}

.c-info__title a {
  font-size: 14px;
  color: #FFF;
  width: fit-content;
  border-bottom: solid 2px #FFF;
  margin: auto;
}

.c-info__title a:hover {
  color: #FFF;
  border-bottom: solid 2px transparent;
}

.c-info__contents,
.c-info__slider {
  max-width: 300px;
  height: auto;
  margin: 0 auto;
}

.c-info__slider {
  /* height: 196px; */
  height: 168.75px;
}

.c-info__slider a {
  position: relative;
}

.c-info__slider a::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background-image: url("/ch/top/img/logo_youtube@2x.png");
  background-size: 100%;
  background-repeat: no-repeat;
  width: 68px;
  height: 48px;
  transform: translate(-50%, -50%);
}

.c-info__slider iframe {
  width: 100%;
  height: 100%;
}


/* 定義リスト */
.c-definition__term,
.c-definition__description {
  font-size: 14px;
}

.c-definition__term {
  font-weight: bold;
}

/* スケジュール */
.c-schedule {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
}

.c-schedule__name,
.c-schedule__time {
  font-size: 16px;
}

.c-schedule__name {
  position: relative;
  font-weight: bold;
  margin-right: 56px;
}

.c-schedule__logo {
  position: absolute;
  top: 50%;
  left: calc(100% + 6px);
  transform: translateY(-50%);
  max-width: 50px;
}

.c-schedule__time {
  font-weight: bold;
}

.c-schedule__re {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-top:  10px;
}


.flex div img{

box-sizing: border-box;
  display: inline-block;
  border: 1px solid #ccc;
  padding: 1px;
  background: #fff;
  box-shadow: 1px 1px 5px rgba(20,20,20,0.2);

}

.list_01  ul li{
  margin-top: 1rem;
    display: list-item;
     list-style:none; /* デフォルトのリストスタイルを消す */
     font-weight: bold;
     text-indent: calc(-1em - 5px);
     margin-left: 1em;

}


.list_01  ul li span.author{
color:#234794;
   font-weight: lighter;
   margin-left: 10px;
}

.list_01 ul li:before {
    content: '＊'; /* リストのスタイルを＊にします */
    color: #e73828; /* リストのスタイルの色 */
    padding-right: 5px; /* リストの番号と文字の間に隙間をあける */
}

.p-card__headArea {
  margin-bottom: 18px;
}

.p-hero {
  background: linear-gradient(0deg, #fdeeb3, #ffc4b6);
}

.bg-hanabi {
  background:
    url(/ch/hanabi/img/2025/aiueo/aiueo_bg_1.png) no-repeat left -90px top -80px/40%,
    url(/ch/hanabi/img/2025/aiueo/aiueo_bg_2.png) no-repeat right -50px top 100px/50%,
    url(/ch/hanabi/img/2025/aiueo/aiueo_bg_3.png) no-repeat right 70px bottom 50px/60%,
    url(/ch/hanabi/img/2025/aiueo/aiueo_bg_4.png) no-repeat left 50px center/45%;
  background-color: #fff;
}

.img-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.img-list li {
  min-width: 240px;
  max-width: 300px;
  text-align: center;
}

.img-list li img  {
  border: 5px solid #feefe6;
  box-sizing: border-box;
  margin-bottom: 8px;
}

.dark-grey li {
  color: #555;
}

span.under-marker {
  background: linear-gradient(transparent 60%, #feefe6 30%);
  font-size: 16px;
}

/*pcの設定*/

@media screen and (min-width: 769px) {


  /* ベース */
  span {
    font-size: 14px;
  }

  /* 共通 */
  .l-header__inner,
  .l-footer__inner,
  .p-intro__inner,
  .p-suggest__inner {
    max-width: 1280px;
  }

  /* ↓↓↓↓↓↓↓↓ レイアウト ↓↓↓↓↓↓↓↓ */
  /* ヘッダーレイアウト */
  .l-header__inner {
    padding: 16px 140px 40px;
  }

  /* フッターレイアウト */
  .l-footer {
    padding: 30px 0;
  }

  .l-footer__inner {
    padding: 0 140px;
  }

  .l-footer__copy {
    text-align: right;
    margin: 10px 0 0;
    padding: 0 10px 0 0;
  }

 /* pcレスポンシブのテスト */
 .flex{
  display: flex;
  /* 高さが行ごとにそろい、絶対崩れない */
  padding: 10px;
  justify-content:space-around; /* 両端も空白あり */
  flex-wrap: wrap;   
  /* flexを折り返す */
} 

.flex div{
  width: calc(25% - 22px); /* margin padding分を引く */
	margin: 1px;
	padding: 10px;
}


  /* ↓↓↓↓↓↓↓↓ プロジェクト ↓↓↓↓↓↓↓↓ */
  /* ヘッダーコンテンツ */
  .p-header__heading {
    font-size: 14px;
  }

  .p-header__logo {
    max-width: 260px;
  }

  /* ファーストビュー */

  .p-hero__mv {
    max-width: 1600px;
    margin: 0 auto;
  }


  /* 各セクション */
  .p-section {
    margin: 0 auto;
    padding: 0 0 50px;
  }

  .p-section__inner {
    max-width: 1280px;
    margin: 0 auto;
    /* padding: 0 80px; */
    padding: 0 60px;
  }

  .p-section__contents {
    margin: 0 auto;
  }

  .p-section__conversion {
    max-width: 460px;
    margin: 60px auto 0;
  }

.p-section__contents,
.p-section__imgArea,
.p-section__videoArea,
.p-section__button {
  margin: 30px auto 0;
}

.p-section__videoArea {
  max-width: 700px;
}

.p-section__button {
  max-width: 600px;
}


/* ビデオ中身 */
/* .c-video {
  position: relative;
  padding-top: 56.25%;
}

.c-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */


  /* カード部分 */
  .p-card {
    border-radius: 30px;
   padding: 14px 30px 30px;
  }

  .p-card01 {
    background-color: rgba(255,255,255,0.7);
    border-radius: 10px; /*角丸の部分*/
    padding: 20px;
    /* text-align: center; */
  }

  .p-card__textArea {
    font-size: 14px;
    margin: 36px auto 0;
  }

  .p-card__imgArea {
    margin: 36px auto 0;
  }

  .p-card__contents {
    margin: 24px auto 0;
  }

  .p-card__contents:first-child {
    margin: 50px auto 0;
  }


  

  /* フッターコンテンツ */

  .p-footer__img {
    margin: 0 0 0 40px;
  }

  .p-footer__img--youtube {
    max-width: 58px;
  }

  .p-footer__img--twitter {
    max-width: 50px;
  }

  .p-footer__img--itscom {
    max-width: 220px;
  }


  /* ↓↓↓↓↓↓↓↓ コンポーネント ↓↓↓↓↓↓↓↓ */
  /* ヘディング */
  .c-heading {
    font-size: 30px;
    padding: 14px 30px;
  }

  /* イントロ */
  .c-intro__inner {
    padding: 24px 60px 24px;
  }

  .c-intro__head {
    font-size: 36px;
  }

  .c-intro__lead {
    font-size: 20px;
    margin-top: 12px;
  }

  .c-intro__lead_b {
    font-size: 20px;
    margin-top: 12px;
    font-weight: bold;
  }
  .c-intro__lead2 {
    font-size: 18px;
    margin-top: 12px;
  }
  .c-intro__title {
    font-size: 24px;
    margin-top: 12px;
    font-weight: bold;
    color: #D61518;
  }

  .c-present {
    font-size: 20px;
    margin-top: 8px;
  }

  .c-presenttxt {
    font-size: 20px;
    margin-top: 4px;
  }

  .p-present__notes {
    font-size: 16px;
    border-radius: 18px;
    margin-top: 20px;
  }

  .p-present__notes ul {
    padding-left: 1rem;
    margin-top: 8px;
  }
  
  .p-present__notes li {
    list-style: disc;
    font-size: 16px;
  }

  .p-present__list {
    font-size: 20px;
    border-radius: 18px;
    margin-top: 10px;
  }
  
  .p-present__list ul {
    padding-left: 1rem;
    margin-top: 8px;
  }
  
  .p-present__list li {
    list-style: disc;
  }


  /* カードコンテンツ */
  .c-card {
    margin: 20px auto 0;
    padding: 20px 10px;
  }

  .c-card__cap {
    font-size: 20px;
    height: 70px;
  }

  .c-card__text {
    font-size: 18px;
  }

  /* インフォメーションコンテンツ */
  .c-info {
    border-radius: 30px;
    padding: 160px 60px 74px;
    margin: 70px auto 0;
  }

  .c-info__titleWrap {
    top: -14%;
  }

  .c-info__title {
    font-size: 28px;
    line-height: 1.4;
    width: 100%;
    max-width: 900px;
    /* height: 170px; */
    border-radius: 24px;
    padding: 30px;
  }

  .c-info__title a {
    font-size: 26px;
  }

  .c-info--twitter .c-info__title::after,
  .c-info--youtube .c-info__title::after {
    top: 50%;
    left: 100px;
    width: 56px;
    height: 56px;
    background-size: 56px;
  }

  .c-info__title::before {
    top: 100%;
    left: 50%;
    width: 52px;
    height: 30px;
    border-top: solid 30px #515151;
    border-right: solid 26px transparent;
    border-left: solid 26px transparent;
  }

  .c-info__contents,
  .c-info__slider {
    max-width: 610px;
    height: auto;
    margin: 0 auto;
  }

  .c-info__slider {
    height: 350px;
  }

  /* 定義リスト */
  .c-definition__term,
  .c-definition__description {
    font-size: 20px;
  }

  /* スケジュール */
  .c-schedule {
     flex-flow: row nowrap;
  }

  .c-schedule__name {
    font-size: 22px;
    margin-right: 96px;
  }

  .c-schedule__logo {
    left: calc(100% + 10px);
    max-width: 76px;
  }

  .c-schedule__time {
    font-size: 22px;
  }

  .c-schedule__re {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin: 12px 0 6px 0;
  }
  .p-card__note {
    font-size: 16px;
    margin: 16px 0 6px 0;
    font-weight: normal;
    text-align: center;
  }

  .flex div img{

    box-sizing: border-box;
      display: inline-block;
      padding: 3px;
      border: 1px solid #ccc;
      background: #fff;
      box-shadow: 1px 1px 5px rgba(20,20,20,0.2);
    
    }

.bg-hanabi {
  background:
    url(/ch/hanabi/img/2025/aiueo/aiueo_bg_1.png) no-repeat left -90px top -80px/30%,
    url(/ch/hanabi/img/2025/aiueo/aiueo_bg_2.png) no-repeat right -170px top 140px/40%,
    url(/ch/hanabi/img/2025/aiueo/aiueo_bg_3.png) no-repeat right 150px bottom 80px/33%,
    url(/ch/hanabi/img/2025/aiueo/aiueo_bg_4.png) no-repeat left 280px top 300px/25%;
  background-color: #fff;
}

.list_01 ul li{
  font-size: 18px;
 line-height: 2.0;
}

.p-card:has(.img-list) {
  padding: 14px 14px 30px;
}

.p-card01:has(.img-list) {
  padding-right: 0;
  padding-left: 0;
}

.img-list li {
  max-width: 340px;
}

span.under_marker {
  font-size: 18px;
}

}