@charset "UTF-8";
/* hosted_event_list.zip のデザイン。グローバル指定は .host-body 配下にスコープ化。 */

:root{
  --color-cream:#FFFDD8;
  --color-gold:#DBA73B;
  --color-blue:#439ACF;
  --color-pink:#FF6FA2;
  --color-pink-border:#FF6FA2;
  --color-brown:#A88476;
  --color-green:#026838;
  --color-orange:#F7931E;
  --color-text:#333333;
  --content-width:1000px;
}

.host-body, .host-body *{ box-sizing:border-box; }

.host-body{
  margin:0;
  padding:0;
  background:#ffffff;
  font-family:"BIZ UDGothic","Noto Sans JP",sans-serif;
  color:var(--color-text);
  -webkit-font-smoothing:antialiased;
}

.host-body img{ max-width:100%; display:block; }
.host-body picture{ display:block; }

.host-body a{ text-decoration:none; }

.host-body .container{
  max-width:var(--content-width);
  margin:0 auto;
  padding:0;
}

@media (max-width:1040px){
  .host-body .container{
    padding:0 20px;
  }
}

/* ---------- Header / Hero placeholders ---------- */
.host-body .placeholder-header,.host-body .placeholder-hero{
  /* 後で追加予定のため、現在は非表示のプレースホルダーです */
  display:none;
}

/* ---------- Events Section ---------- */
.host-body .events-section{
  background:var(--color-cream);
  padding:48px 0 56px;
}

.host-body .section-heading{
  display:block;
  max-width:560px;
  width:100%;
  margin:0 auto 36px;
}

.host-body .event-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  column-gap:24px;
  row-gap:24px;
}

.host-body .event-card{
  position:relative;
  background:#ffffff;
  border-radius:20px;
  width:486px;
  min-height:246px;   /* 文字サイズ拡大時は内容に応じて高さが伸びる */
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  transition:transform .2s ease, box-shadow .2s ease;
}
.host-body .event-card .card-yuiyui-badge{
  position:absolute;bottom:6px;right:20px;
  width:88px;height:auto;z-index:6;pointer-events:none;
}
/* 合唱の祭典（32675）のみ 少し下げる */
.host-body .event-card.yuiyui-lower .card-yuiyui-badge{bottom:-6px;}
.host-body .event-card:hover{
  transform:translateY(-4px);
  box-shadow:0 8px 20px rgba(0,0,0,.12);
}
.host-body .event-card .card-thumb img{
  transition:transform .3s ease;
}
.host-body .event-card:hover .card-thumb img{
  transform:scale(1.05);
}

.host-body .card-ribbon{
  position:relative;
  width:92%;
  margin:15px auto 0;
  line-height:0;
}

.host-body .card-ribbon img{
  width:100%;
  height:auto;
  display:block;
}

.host-body .card-ribbon span{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ffffff;
  font-weight:700;
  font-size:18px;   /* リボンは固定グラフィックのため文字サイズ変更の対象外 */
  letter-spacing:.02em;
  padding:0 30px;
  text-align:center;
  white-space:nowrap;   /* 折り返しによる行の重なりを防ぐ */
  overflow:hidden;
  text-overflow:ellipsis;   /* はみ出す場合は末尾を「…」 */
}

.host-body .card-body{
  display:grid;
  flex:1;
  grid-template-columns:200px 1fr;
  grid-template-rows:auto auto;
  grid-template-areas:
    "thumb info"
    "thumb badge";
  column-gap:24px;
  row-gap:16px;
  padding:24px 24px 15px;
}

.host-body .card-thumb{
  grid-area:thumb;
  position:relative;
  align-self:start; /* セルの高さいっぱいに伸ばさず写真の高さに合わせる（バッジ位置ズレ防止） */
}

.host-body .card-thumb img{
  width:100%;
  height:140px;
  object-fit:cover;
  border-radius:0;
}

/* ジャンルバッジ（イベント一覧 event_list_body.css と同一デザイン） */
.host-body .card-thumb .badge{
  position:absolute;
  left:50%;
  bottom:0;
  transform:translate(-50%, 50%);
  display:flex;
  align-items:center;
  justify-content:center;
  width:80px;
  height:22px;
  border-radius:20px;
  color:#fff;
  font-size:calc(14px * var(--fz, 1));
  font-weight:700;
  letter-spacing:.05em;
  white-space:nowrap;
  z-index:2;
}
.host-body .card-thumb .badge.music{ background:#fc0000; }
.host-body .card-thumb .badge.play{ background:#f3901e; }
.host-body .card-thumb .badge.geinou{ background:#754c24; }
.host-body .card-thumb .badge.dance{ background:#39b24a; }
.host-body .card-thumb .badge.art{ background:#fc7ba9; }
.host-body .card-thumb .badge.other{ background:#0571b9; }
.host-body .card-thumb .badge.shusai{ background:#ec2b46; }

.host-body .card-info{
  grid-area:info;
  min-width:0;
}

.host-body .card-date{
  margin:0;
  font-size:calc(14px * var(--fz, 1));
  line-height:18px;
}

.host-body .card-divider{
  border:none;
  border-top:1px solid #cccccc;
  margin:10px 0;
}

.host-body .card-desc{
  font-size:calc(15px * var(--fz, 1));
  font-weight:700;
  line-height:20px;
  color:var(--color-text);
  margin:0;
}

.host-body .card-badge{
  grid-area:badge;
  justify-self:start;
  align-self:start;
  min-width:120px;
  width:auto;
  max-width:100%;
  box-sizing:border-box;
  white-space:nowrap;
  text-align:center;
  background:var(--color-blue);
  color:#ffffff;
  font-size:calc(13px * var(--fz, 1));
  font-weight:700;
  padding:8px 20px;
  border-radius:16px;
}

.host-body .card-link{
  position:absolute;
  inset:0;
  z-index:2;
}

/* ---------- Present Campaign Section ---------- */
.host-body .present-section{
  background:var(--color-cream);
  padding:20px 0 60px;
}
.host-body .present-card{
  position:relative;
  background:#ffe1ec;
  border-radius:32px;
  max-width:1000px;
  margin:70px auto 0;
  padding:70px 60px 56px;
}
.host-body .present-badge{
  position:absolute;
  top:-46px;
  left:-36px;
  width:280px;
  max-width:60%;
}
.host-body .present-badge img{width:100%;height:auto;display:block;}
.host-body .present-title{
  text-align:center;
  font-family:'Noto Sans JP',sans-serif;font-weight:700;
  font-size:calc(34px * var(--fz, 1));line-height:1.4;color:var(--color-text);
  margin:0 0 24px;
}
.host-body .present-lead{
  text-align:center;
  font-family:'Noto Sans JP',sans-serif;font-weight:700;
  font-size:calc(18px * var(--fz, 1));line-height:1.8;color:var(--color-text);
  margin:0 0 36px;
}
.host-body .present-body{
  display:flex;align-items:center;gap:44px;
}
.host-body .present-visual{flex:0 0 42%;}
.host-body .present-visual img{width:100%;height:auto;display:block;}
.host-body .present-note{flex:1 1 auto;}
.host-body .present-note p{
  font-size:calc(15px * var(--fz, 1));line-height:1.85;color:var(--color-text);
  margin:0 0 6px;
}
.host-body .present-note a{color:var(--color-blue);text-decoration:underline;word-break:break-all;}
.host-body .present-btn-wrap{text-align:center;margin-top:40px;}
.host-body .present-btn{
  display:inline-flex;align-items:center;gap:24px;justify-content:center;
  background:#fff;color:var(--color-pink);
  border:2px solid var(--color-pink-border);border-radius:40px;
  font-family:'Noto Sans JP',sans-serif;font-weight:700;
  font-size:calc(18px * var(--fz, 1));
  padding:16px 44px;min-width:300px;
  transition:background .2s ease,color .2s ease;
}
.host-body .present-btn:hover{background:var(--color-pink);color:#fff;}

/* ---------- Marche Section ---------- */
.host-body .marche-section{
  background:var(--color-cream);
  padding:0 0 56px;
}

.host-body .marche-section img{
  margin:0 auto;
}

/* ---------- Interview Section ---------- */
.host-body .interview-section{
  background:var(--color-orange);
  padding:44px 0 56px;
  text-align:center;
}

.host-body .interview-heading{
  color:#ffffff;
  font-size:calc(22px * var(--fz, 1));
  font-weight:700;
  margin:0 0 24px;
  font-family:"Noto Sans JP","BIZ UDGothic",sans-serif;
}
.host-body .interview-heading img{display:block;width:418px;max-width:100%;height:auto;margin:0 auto;}

.host-body .interview-photo{
  max-width:1000px;
  margin:0 auto 24px;
  border-radius:2px;
  overflow:hidden;
}
.host-body .interview-photo picture{display:block;}
.host-body .interview-photo img{width:100%;height:auto;display:block;}

.host-body .interview-link{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  color:#ffffff;
  font-weight:700;
  font-size:calc(15px * var(--fz, 1));
}

.host-body .interview-link img{
  width:28px;
  height:28px;
}

/* ---------- CTA Section ---------- */
.host-body .cta-section{
  background:#ffffff;
  padding:48px 0;
  text-align:center;
}

.host-body .cta-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--color-pink);
  font-weight:700;
  font-size:calc(16px * var(--fz, 1));
  border:3px solid var(--color-pink-border);
  border-radius:999px;
  padding:14px 36px;
  transition:background-color .2s ease, color .2s ease;
}
.host-body .cta-btn:hover{
  background:var(--color-pink);
  color:#ffffff;
}

/* interview-link hover */
.host-body .interview-link{
  transition:opacity .2s ease;
}
.host-body .interview-link:hover{
  opacity:.75;
}
.host-body .interview-link img{
  transition:transform .2s ease;
}
.host-body .interview-link:hover img{
  transform:translateX(4px);
}

@media (max-width:640px){
  .host-body .event-card .card-yuiyui-badge{width:60px;top:auto;bottom:12px;right:16px;}
  /* プレゼント（SP） */
  .host-body .present-section{padding:20px 0 44px;}
  .host-body .present-card{
    border-radius:24px;margin:60px 16px 0;padding:56px 22px 40px;
  }
  .host-body .present-badge{
    position:absolute;top:-38px;left:50%;transform:translateX(-50%);
    width:220px;max-width:70%;
  }
  .host-body .present-title{font-size:calc(26px * var(--fz, 1));margin:0 0 18px;}
  .host-body .present-lead{font-size:calc(15px * var(--fz, 1));line-height:1.9;margin:0 0 26px;}
  .host-body .present-body{flex-direction:column;gap:24px;}
  .host-body .present-visual{flex:0 0 auto;width:100%;}
  .host-body .present-visual img{max-width:100%;margin:0 auto;}
  .host-body .present-note p{font-size:calc(14px * var(--fz, 1));line-height:1.9;}
  .host-body .present-btn-wrap{margin-top:30px;}
  .host-body .present-btn{width:100%;min-width:0;font-size:calc(16px * var(--fz, 1));padding:16px 20px;gap:16px;}

  .host-body .event-grid{
    grid-template-columns:1fr;
    row-gap:17px;
  }

  .host-body .event-card{
    display:block;
    width:100%;
    height:auto;
    overflow:visible;
    border-radius:14px;
    box-shadow:none;
    padding-top:0;
    margin-top:0;
  }

  .host-body .card-ribbon span{
    display:block;
    top:50%;
    height:auto;
    transform:translateY(-50%);
    line-height:1.2;
    font-style:normal;
    font-size:calc(18px * var(--fz, 1));
    padding:0 34px;
  }

  .host-body .card-body{
    grid-template-columns:38% 1fr;
    grid-template-rows:auto 1fr;
    grid-template-areas:
      "thumb info"
      "badge info";
    column-gap:16px;
    row-gap:22px;
    padding:16px 20px 24px;
  }

  .host-body .card-thumb img{
    height:auto;
    aspect-ratio:401/280;
    border-radius:8px;
  }

  .host-body .card-date{
    font-size:calc(14px * var(--fz, 1));
    line-height:18px;
  }

  .host-body .card-divider{
    margin:10px 0;
  }

  .host-body .card-desc{
    font-size:calc(14px * var(--fz, 1));
    font-weight:700;
    line-height:20px;
    margin:0;
  }

  .host-body .card-badge{
    width:95%;
    justify-self:center;
    align-self:end;
    text-align:center;
    font-size:calc(13px * var(--fz, 1));
    padding:8px 15px;
  }

  .host-body .interview-link{
    display:flex;
    justify-content:center;
  }
}


/* ---------- ゆい結いマルシェ（marche.zip 差し込み） ---------- */
.host-body .yuiyui {
  width: 100%;
  padding: 80px 0;
  background-color: lightblue;
  background: url("../img/hosted_event/yuiyui_bg2.webp") center top;
  background-repeat: repeat;
  background-size: 1366px auto;
}
.host-body .yuiyui .inner {
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 30px;
  background-color: #c9c9c9;
  background: url("../img/hosted_event/yuiyui_bg.webp") center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.host-body .yuiyui .info {
  margin: 0 auto;
  padding-top: 16%;
  width: 80%;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  gap: 24px;
}
.host-body .yuiyui .info .ph {
  padding-bottom: 10px;
  width: 42%;
}
.host-body .yuiyui .info .txt {
  width: 54%;
}
.host-body .yuiyui .info .yuiyui_ttl {
  padding-bottom: 16px;
  width: 100%;
}
.host-body .yuiyui .info p {
  font-size: calc(18px * var(--fz, 1));
}
.host-body .yuiyui .subttl {
  margin: 0 auto 10px;
  width: 80%;
  font-size: calc(20px * var(--fz, 1));
  font-weight: 700;
  color: rgba(14, 180, 180, 1);
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border: 0;
}
.host-body .yuiyui .subttl::before, .host-body .yuiyui .subttl::after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: currentColor !important;
  position: unset;
  border: unset;
  margin-left: unset;
  margin-right: unset;
  flex-grow: unset;
}
.host-body .yuiyui .subttl::before {
  transform: rotate(60deg);
}
.host-body .yuiyui .subttl::after {
  transform: rotate(-60deg);
}
.host-body .yuiyui .btn-block {
  margin: 0 auto;
  width: 80%;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.host-body .yuiyui .btn-block .btn {
  width: calc(50% - 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-sizing: border-box;
  background-color: #fff;
}
.host-body .yuiyui-spbr { display: none; } /* SP専用改行（PCでは非表示） */
.host-body .yuiyui .btn-block .btn a {
  padding: 0.8em 1.2em 0.8em 0.9em;
  width: 100%;
  font-size: calc(15px * var(--fz, 1)); /* 文字サイズ変更に対応 */
  white-space: normal;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  text-decoration: none;
  border-radius: 10px;
  background-color: rgba(14, 180, 180, 1);
  position: relative;
  transition: 0.5s;
}
.host-body .yuiyui .btn-block .btn a:before {
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  bottom: 0;
  content: "";
  height: 10px;
  margin: auto;
  position: absolute;
  right: 0.8em;
  top: 0;
  transform: rotate(45deg);
  width: 10px;
}
.host-body .yuiyui .btn-block .btn a:hover {
  background-color: rgba(14, 180, 180, 0.7);
}
.host-body .yuiyui .btn-block .btn:first-child a, .host-body .yuiyui .btn-block .btn:last-child a {
  background-color: rgba(238, 130, 137, 1);
}
.host-body .yuiyui .btn-block .btn:first-child a:hover, .host-body .yuiyui .btn-block .btn:last-child a:hover {
  background-color: rgba(238, 130, 137, 0.7);
}
@media (max-width: 767px) {.host-body .yuiyui {
    width: 100%;
    padding: 30px 0;
  }
.host-body .yuiyui .info {
    margin: 0 auto;
    padding-top: 16%;
    width: 80%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column-reverse;
    gap: 16px;
  }
.host-body .yuiyui .info .ph {
    margin: 0 auto;
    padding-bottom: 0;
    width: 90%;
  }
.host-body .yuiyui .info .txt {
    padding-bottom: 1em;
    width: 100%;
  }
.host-body .yuiyui .info .yuiyui_ttl {
    padding-bottom: 12px;
  }
.host-body .yuiyui .info p {
    font-size: calc(15px * var(--fz, 1));
  }
.host-body .yuiyui .subttl {
    margin: 0 auto 10px;
    width: 90%;
    font-size: calc(15px * var(--fz, 1));
  }
.host-body .yuiyui .subttl::before, .host-body .yuiyui .subttl::after {
    content: "";
    width: 20px;
  }
.host-body .yuiyui .btn-block {
    margin: 0 auto;
    width: 90%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
.host-body .yuiyui .btn-block .btn {
    width: 90%;
  }
.host-body .yuiyui-spbr { display: inline; }
.host-body .yuiyui .btn-block .btn a, .host-body .yuiyui .btn-block .btn:last-child a {
    width: 100%;
    background-color: rgba(14, 180, 180, 1);
    white-space: normal;
  }
.host-body .yuiyui .btn-block .btn a:hover, .host-body .yuiyui .btn-block .btn:last-child a:hover {
    background-color: rgba(14, 180, 180, 0.7);
  }
.host-body .yuiyui .btn-block .btn:first-child a, .host-body .yuiyui .btn-block .btn:nth-child(3) a {
    background-color: rgba(238, 130, 137, 1);
  }
.host-body .yuiyui .btn-block .btn:first-child a:hover, .host-body .yuiyui .btn-block .btn:nth-child(3) a:hover {
    background-color: rgba(238, 130, 137, 0.7);
  }
}

/* ---------- みん芸モデルコース（トップpage-front と共通デザイン / .host-body 用） ---------- */
.host-body .modelcourse-section{ background:var(--color-cream); padding:60px 0 80px; }
.host-body .br-sp{ display:none; }
.host-body .ft-course-card{
  background-color:#fff;
  background-image:url("../img/top2026/model_course_bg.webp");
  background-repeat:no-repeat;
  background-position:right bottom;
  background-size:340px auto;
  border-radius:20px;
  max-width:960px;margin:0 auto;
  padding:48px 45px 50px;
  box-shadow:0 6px 24px rgba(0,0,0,.10);
}
.host-body .ft-course-title{text-align:center;margin-bottom:22px;}
.host-body .ft-course-title img{display:block;width:auto;max-width:80%;height:auto;margin:0 auto;}
.host-body .ft-course-lead{
  text-align:center;font-weight:500;
  font-size:calc(17px * var(--fz, 1));line-height:1.9;margin:0 0 38px;color:var(--color-text);
}
.host-body .ft-course-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:40px 30px;
}
.host-body .ft-course-item{ display:flex;flex-direction:column; }
.host-body .ft-course-item-img img{
  width:100%;height:200px;object-fit:cover;display:block;border-radius:2px;
}
.host-body .ft-course-item-title{
  font-family:"Noto Sans JP",sans-serif;font-weight:700;
  font-size:calc(24px * var(--fz, 1));margin:16px 0 10px;color:var(--color-text);
}
.host-body .ft-course-item-text{
  font-size:calc(16px * var(--fz, 1));line-height:1.7;margin:0 0 14px;flex:1 1 auto;color:var(--color-text);
}
.host-body .ft-course-link{
  display:inline-flex;align-items:center;gap:10px;align-self:flex-start;
  color:var(--color-pink);font-weight:700;font-size:calc(17px * var(--fz, 1));
  transition:opacity .2s ease;
}
.host-body .ft-course-link:hover{opacity:.8;}
.host-body .ft-course-arrow{
  display:inline-flex;align-items:center;justify-content:center;
  width:28px;height:28px;border-radius:50%;
  background:var(--color-pink);color:#fff;font-size:calc(15px * var(--fz, 1));line-height:1;
  transition:transform .2s ease;
}
.host-body .ft-course-link:hover .ft-course-arrow{transform:translateX(3px);}

@media (max-width:767px){
  .host-body .modelcourse-section{ padding:30px 0 50px; }
  .host-body .br-sp{ display:inline; }
  .host-body .ft-course-card{padding:28px 20px 34px;border-radius:14px;margin:0 auto;background-size:150px auto;}
  .host-body .ft-course-title img{max-width:100%;}
  .host-body .ft-course-lead{font-size:calc(14px * var(--fz, 1));}
  .host-body .ft-course-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:24px 14px;}
  .host-body .ft-course-item-title{font-size:calc(16px * var(--fz, 1));white-space:nowrap;}
  .host-body .ft-course-item-img img{height:auto;aspect-ratio:571/410;}
}

/* アイコン凡例（主催イベントカード上・右寄せ） */
.host-body .legend-icon{text-align:right;margin:0 0 14px;}
.host-body .legend-icon img{display:inline-block;width:485px;max-width:100%;height:auto;}
