@charset "utf-8";
/* =========================================================================
   中継ページ（でらドラうまサミット）専用のスタイル。

   このページは広告のリンク先なので、テーマ共通の CSS（main.css 644KB、
   style.css 134KB ほか計 937KB）を読み込まない。代わりに、このページが
   実際に使うルールだけをここに集めてある。

   中身は
     ①最低限のベース（テーマのリセットを読まないぶんの穴埋め）
     ②style.css から抜き出した .evfm / .container / パンくず / 見出し のルール
   の2本立て。②は style.css を直したときに追従しないので、告知セクションの
   デザインを変えたときは、こちらにも反映すること。
   ------------------------------------------------------------------------- */

/* ── ① ベース ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  color: #222;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; border: 0; vertical-align: bottom; }

a { color: #c9000f; }

h1, h2, h3, h4, p, ul, figure { margin: 0; padding: 0; }

ul { list-style: none; }

/* 広告からの着地ページなので、サイト共通のヘッダーは置かず、
   トップへ戻れる細い帯だけを出す。 */
.evfm-topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border-bottom: 1px solid #e6e6e6;
  background: #fff;
}
.evfm-topbar a {
  color: #333;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: .04em;
}

.evfm-foot {
  padding: 28px 15px 34px;
  border-top: 1px solid #e6e6e6;
  color: #777;
  font-size: 12px;
  text-align: center;
}
.evfm-foot a { color: #777; }

/* 固定ヘッダーが無くなったので、旧テンプレートの余白確保は不要 */
.evfm-app { margin-top: 0; }

/* ── ② style.css から抜き出したルール ───────────────────────── */
.container{
  display: block;
  width: 100%;
  max-width: 1090px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 769px){
.popular .container{
        padding-left: 0;
        padding-right: 0;
    }
}
.popular{
  background: url('https://pikaichi-imaike.jp/wp/wp-content/uploads/2019/10/i-papular-bg.jpg') 50% 50%
    no-repeat;
  background-size: cover;
}
.tradition .container{
  max-width: 1130px;
}
.breadcrumbs__wrapper{
  display: block;
  width: 100%;
  padding-top: 15px;
  margin-bottom: 50px;
}
.breadcrumbs-list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row nowrap;
  list-style: none;
  width: 100%;
  margin: 0 0 0 15px;
  padding: 0;
}
.breadcrumbs-list li:not(:last-child):after{
  content: '>';
  position: absolute;
  bottom: 105%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: -13px;
  width: 8px;
  height: 1px;
  color: #000;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.breadcrumbs-list li:last-child a.breadcrumbs-link{
  border-bottom: 1px solid #000;
}
.breadcrumbs-item{
  position: relative;
  list-style: none;
  margin-right: 15px;
}
.breadcrumbs-link{
  font-size: 14px;
  line-height: 18px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: #000;
  text-decoration: none;
}
.section__title_border-wrapper{
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 65px;
}
.section__title_border-wrapper_mb100{
  margin-bottom: 100px;
}
.section__title_border-wrapper_mb90{
  margin-bottom: 90px;
}
.section__title_border-wrapper_mb80{
  margin-bottom: 80px;
}
.section__title_border-wrapper_mb82{
  margin-bottom: 82px;
}
.section__title_border-wrapper_mb70{
  margin-bottom: 50px;
}
.section__title_border-wrapper_mb50{
  margin-bottom: 50px;
}
.section__title_border-wrapper_mb65{
  margin-bottom: 65px;
}
.section__title_border-wrapper_mb30{
  margin-bottom: 30px;
}
.section__title_border{
  position: relative;
  margin: 0;
  padding: 5px 0;
  font-size: 23px;
  line-height: 27px;
  text-align: center;
  font-weight: 700;
  word-break: normal;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.section__title_border:after{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: -o-linear-gradient(right, #ff0000 50%, #ffcc00 50%);
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(50%, #ff0000),
    color-stop(50%, #ffcc00)
  );
  background: linear-gradient(to left, #ff0000 50%, #ffcc00 50%);
  height: 1px;
  width: 100%;
  max-width: 500px;
}
.section__title_border:before{
  content: '';
  position: absolute;
  background: -o-linear-gradient(right, #ff0000 50%, #ffcc00 50%);
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(50%, #ff0000),
    color-stop(50%, #ffcc00)
  );
  background: linear-gradient(to left, #ff0000 50%, #ffcc00 50%);
  height: 1px;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 500px;
}
.professional-global-wrap-r,
.professional-global-wrap-l{
  position: relative;
}
.professional-global-wrap-r:after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background-image: url('https://pikaichi-imaike.jp/wp/wp-content/uploads/2021/01/right-img.jpg');
  background-position: top right;
  background-repeat: repeat-y;
  width: 22.4%;
  height: 100%;
  z-index: -1;
}
.professional-global-wrap-l:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: url('https://pikaichi-imaike.jp/wp/wp-content/uploads/2021/01/left-img.jpg');
  background-position: top left;
  background-repeat: repeat-y;
  width: 22.4%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 1600px){
.professional-global-wrap-r:after{
    background-position: top left;
  }
.professional-global-wrap-l:before{
    background-position: top right;
  }
}
.professional-global-wrapper{
  display: block;
  max-width: 1095px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.traditional-images-wrapper .section__title_border-wrapper{
  padding: 0 15px;
}
@media screen and (max-width: 992px){
.section__title_border{
    font-size: 20px;
    line-height: 24px;
  }
.section__title_border-wrapper_mb82{
    margin-bottom: 35px;
  }
.section__title_border_golden{
    font-size: 20px;
    line-height: 24px;
  }
.section__title_border-wrapper_mb70{
    margin-bottom: 35px;
  }
.section__title_border{
    font-size: 21px;
    line-height: 25px;
  }
.section__title_border-wrapper_mb100{
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 769px){
.section__title_border-wrapper,
  .section__title_border-wrapper_mb100,
  .section__title_border-wrapper_mb80{
    margin-bottom: 50px;
  }
.section__title_border-wrapper,
  .section__title_border-wrapper_mb100{
    margin-bottom: 50px;
  }
.section__title_border{
    font-size: 18px;
    line-height: 24px;
  }
}
.evfm{
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 0 6px;
}
.evfm img{
  display: block;
  max-width: 100%;
  height: auto;
}
.evfm .evfm--sp{
  display: none;
}
.evfm__head{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2.5%;
  margin-bottom: 14px;
}
.evfm__date{
  width: 40%;
}
.evfm__title{
  width: 57%;
}
.evfm__guests{
  width: 100%;
  margin: 0 auto 16px;
}
.evfm__sphead{
  width: 100%;
  margin: 0 auto 14px;
}
.evfm__ticket{
  display: block;
  width: 100%;
  margin: 16px auto;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.evfm__ticket:hover{
  opacity: 0.85;
}
.evfm__ticket img{
  width: 100%;
}
.evfm__cols{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  list-style: none;
  padding: 0;
  margin: 22px auto;
  gap: 26px;
}
.evfm__col{
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
  min-width: 0;
}
.evfm__flyer{
  display: block;
  text-decoration: none;
}
.evfm__flyer-img img{
  width: 100%;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.evfm__flyer-cap{
  margin: 10px 0 0;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  color: #000;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.evfm__video{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 14px;
  background: #000;
}
.evfm__video iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.evfm__body-head{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}
.evfm__icon{
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 54px;
  margin-right: 12px;
}
.evfm__body-title{
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  color: #990000;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  
  word-break: normal;
  overflow-wrap: anywhere;
}
.evfm__body-text{
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #000;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  letter-spacing: -0.1px;
  
  word-break: normal;
  overflow-wrap: anywhere;
}
@media (max-width: 768px){
.evfm .evfm--pc{
    display: none;
  }
.evfm .evfm--sp{
    display: block;
  }
.evfm__cols{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    margin: 18px auto;
  }
.evfm__col{
    width: 100%;
  }
.evfm__flyer-img{
    max-width: 420px;
    margin: 0 auto;
  }
.evfm__body-head{
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
.evfm__body-title{
    text-align: center;
  }
.evfm__body-text{
    padding-left: 1em;
    padding-right: 1em;
  }
}
.evfm-lightbox{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.85);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 4vh 4vw;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: zoom-out;
}
.evfm-lightbox.is-open{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.evfm-lightbox__img{
  display: block;
  max-width: 100%;
  max-height: 92vh;
  width: auto;
  height: auto;
  -webkit-box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
  cursor: default;
}
.evfm-lightbox__close{
  position: absolute;
  top: 14px;
  right: 18px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 30px;
  line-height: 46px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.evfm-lightbox__close:hover{
  background: rgba(255, 255, 255, 0.35);
}
.evfm__flyer{
  cursor: zoom-in;
}
/* ── ③ <picture> 化にともなう調整 ─────────────────────────────
   画面幅に合わない画像をダウンロードさせないため、img を <picture> で包んだ。
   もとの CSS は img に幅を指定していたので、包み側にも同じ扱いをさせる。 */
.evfm picture { display: block; }
.evfm picture > img { width: 100%; }
.evfm .evfm--sp { display: none; }
@media (max-width: 768px) {
  .evfm .evfm--pc { display: none; }
  .evfm .evfm--sp { display: block; }
}

/* YouTube はクリックされるまで読み込まない（iframe 2本で 1MB 近くあるため）。
   クリック前はサムネイルと再生ボタンだけを出す。 */
.evfm__video { position: relative; }
.evfm__ytfacade {
  display: block;
  position: absolute;   /* iframe と同じ置き方（.evfm__video は aspect-ratio 16:9） */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #000;
}
.evfm__ytfacade img { width: 100%; height: 100%; object-fit: cover; display: block; }
.evfm__ytfacade::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 68px; height: 48px;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  background: rgba(0,0,0,.65);
}
.evfm__ytfacade::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  z-index: 2;
  width: 0; height: 0;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 11px 0 11px 19px;
  border-color: transparent transparent transparent #fff;
}

/* ── ④ 画面下に出しっぱなしの購入ボタン（スマホのみ）───────────
   スマホでは最初の購入バナーが 1,200px ほど下にあり、2画面ぶん
   スクロールしないと出てこない。どこにいても押せるように常時出す。
   ・高さは 56px 程度に抑え、本文の邪魔をしない
   ・iPhone の下端（ホームバー）にかからないよう safe-area を足す
   ・チラシの拡大表示（.evfm-lightbox は z-index:100000）より下に置き、
     拡大中は隠れるようにしてある */
.evfm-cta { display: none; }

@media (max-width: 768px) {
  .evfm-cta {
    display: block;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9000;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .94);
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .12);
  }
  .evfm-cta__btn {
    display: block;
    padding: 9px 10px;
    border-radius: 6px;
    background: #c9000f;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
  }
  .evfm-cta__sub {
    display: block;
    font-size: 11px;
    font-weight: 400;
    opacity: .9;
  }
  /* 固定ボタンのぶん、ページの末尾に余白を足す（フッターが隠れないように） */
  body.evfm-lite { padding-bottom: 84px; }
}

/* ===========================================================================
   スマホでは、飾りの背景画像を読まない（2026-08-12 追加）

   このページに残っていた3つの背景画像は、合計 704KB あった。
     i-papular-bg.jpg  241KB  .popular の和紙テクスチャ（1919×477）
     right-img.jpg     233KB  ページ右端の飾り帯（388×2413）
     left-img.jpg      231KB  ページ左端の飾り帯（415×2407）

   ★ この3つは**スマホでは1枚も見えない**。
     ・和紙テクスチャは平均色 #fcfcfb で、ほぼ白。小さい画面では白地と区別がつかない
     ・左右の飾り帯は幅22.4%・z-index:-1 で、スマホでは本文の裏に完全に隠れる
     390px と 1400px で描画して確認済み（スマホ側は消しても見た目が変わらない）。

   ★ 隠れているだけでは読み込みは止まらない。
     background-image を持つ要素の大きさが0でなければ、見えていなくても取りに行く。
     **`background-image: none` にして初めて読み込まれなくなる。**

   広告の着地はほぼスマホなので、ここが効く。パソコンの見た目は変えていない。
   ========================================================================= */
@media (max-width: 768px) {
  .professional-global-wrap-r:after,
  .professional-global-wrap-l:before {
    background-image: none;
  }
  .popular {
    /* テクスチャの平均色。ベタ塗りに置き換える */
    background-image: none;
    background-color: #fcfcfb;
  }
}
