@charset "UTF-8";

/* -------------------------------------------
   通常の挿入画像
------------------------------------------- */
.top_page .text_area_layout > img{
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 30px 0;
  border-radius: 0;
}


/* -------------------------------------------
   パーティクル生成後はDOMテキストを隠す
------------------------------------------- */
.top_page.fx-active .text_area_layout{
  visibility: hidden;
}


.copy_index{
position: fixed;
z-index: 9;
bottom: 10px;
left: 10px;

mix-blend-mode: difference;


font-family: "swiss-721-bt", sans-serif;
font-weight: 700;
font-style: normal;

/*FONT 375px計算*/
font-size: 7px;
font-size: 1.8666667vw;
font-size: clamp(6px, 1.8666667vw, 8px);

line-height: 1.1;
color: #fff;

letter-spacing: -0.02em;
font-feature-settings: "liga" 1, "pnum" 1;
}





/* スマホ終了
------------------------------------------------------------------------------------------- */
@media screen and (min-width: 768px) {

/* -------------------------------------------
   通常の挿入画像
------------------------------------------- */
.top_page .text_area_layout > img{
  display: block;
  width: 100%;
/*  max-width: 750px;*/
  height: auto;
  margin: 0 0 40px 0;
  border-radius: 0;
}

/* -------------------------------------------
   パーティクル生成後はDOMテキストを隠す
------------------------------------------- */
.top_page.fx-active .text_area_layout{
  visibility: hidden;
}


.copy_index{
visibility: hidden;
display: none;
}




}/*PC終了*/








/* -------------------------------------------
   パーティクル調整パネル
------------------------------------------- */
.top_page #panel{
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 100;

  width: 440px;
  max-height: calc(100vh - 24px);
  overflow-y: auto;
  padding: 10px 12px;

  background: rgba(20,20,20,.88);
  color: #eee;

  font-family: monospace;
  font-size: 11px;

  border-radius: 6px;
  backdrop-filter: blur(4px);
}

/* panel-body を2カラムに */
.top_page #panel #panel-body{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
}
/* 全幅で見せたい要素（ボタン・注記・見出し）は2カラムをまたぐ */
.top_page #panel #panel-body > #apply,
.top_page #panel #panel-body > .note{
  grid-column: 1 / -1;
}

.top_page #panel .panel-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.top_page #panel button{
  background: #333;
  color: #eee;
  border: 1px solid #555;
  border-radius: 4px;

  font-family: monospace;
  font-size: 11px;
  cursor: pointer;

  padding: 2px 8px;
}

.top_page #panel #toggle{
  padding: 0 8px;
  line-height: 1.4;
}

.top_page #panel label{
  display: block;
  clear: both;

  margin: 7px 0;
  line-height: 1.5;
}

.top_page #panel input[type="range"]{
  display: block;
  width: 100%;
  margin-top: 3px;
}

.top_page #panel input[type="number"]{
  float: right;
  width: 60px;

  background: #2a2a2a;
  color: #7fd;

  border: 1px solid #555;
  border-radius: 3px;

  font-family: monospace;
  font-size: 11px;
  text-align: center;

  padding: 1px 2px;
}

.top_page #panel #apply{
  width: 100%;
  margin-top: 6px;
  padding: 4px;
}

.top_page #panel .note{
  margin-top: 6px;
  color: #999;
  line-height: 1.4;
  font-size: 10px;
}

.top_page #panel.collapsed #panel-body{
  display: none;
}

/* ===== スマホ：パネルを画面幅に収めて1カラムに ===== */
@media screen and (max-width: 767px){
  .top_page #panel{
    width: auto;
    left: 12px;
    right: 12px;
    max-height: calc(100vh - 24px);
  }
  .top_page #panel #panel-body{
    grid-template-columns: 1fr;   /* 狭い画面では1カラム */
  }
}
