@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');  /* フォントのインポート */
@import url('https://fonts.googleapis.com/css2?family=Itim&display=swap');   /* フォントのインポート */


@media all and (min-width: 500px) {
  .wrapper {
    display: flex;
  }
  .left {
    flex-grow: 1;
  }
  .right {
    flex-grow: 1;
  }
}

/* 
hamburger(ハンバーガーアイコン)
=================================== */
.hamburger {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 50px;
  height: 40px;
  cursor: pointer;
  z-index: 300;
}

.hamburger__line {
  position: absolute;
  width: 50px;
  height: 4px;
  right: 0;
  background-color: rgb(255, 170, 0);
  transition: all 0.5s;
}

.hamburger__line--1 {
  top: 1px;
}

.hamburger__line--2 {
  top: 18px;
}

.hamburger__line--3 {
  top: 36px;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
  transform: rotate(-45deg);
  top: 11px;
}

.open .hamburger__line--2 {
  opacity: 0;
}

.open .hamburger__line--3 {
  transform: rotate(45deg);
  top: 11px;
}

/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
  position: fixed;
  right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
  padding-left: 30px;
  top: 0;
  width: 25%; /* 出てくるスライドメニューの幅 */
  height: 100vh;
  font-size: 25px;
  background-color: rgba(254, 253, 242, 0.9);
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
  right: 0;
}


/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}


.SSS_link {
        background: rgb(255, 255, 255,0.8);
        font-size: 20px;
        padding: 0px 0px 0px 50px;
        text-align: right;
}

#selectCSS {
  color: #007bff;
  background-color: rgb(255, 255, 255,0);
}

#Node {
  color: #007bff;
  background-color: rgb(255, 255, 255,0);
}

#page_num1 {
  border-radius: 5px;
}

#page_num_mosa1 {
  border-radius: 5px;
}

#page_num_namespace {
  border-radius: 5px;
}

#page_num_meta {
  border-radius: 5px;
}

#page_num_holder1 {
  border-radius: 5px;
}

#form-maxfee {
  border-radius: 5px;
}

#form-enc {
  border-radius: 5px;
}


/* ポップアップ */
.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: .6s;
}
.popup.is-show {
  opacity: 1;
  visibility: visible;
}
.popup-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 80%;
  max-width: 600px;
  padding: 50px;
  background-color: #fff;
  z-index: 1000;
  border-radius: 16px;
}
.popup-inner img {
  width: 100%;
}
.bg-black {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.8);
  z-index: 999;
  cursor: pointer;
}
/********************************************/

h1 {
  color:rgb(205, 0, 255);
  font-size: 4rem;
  font-weight: bold;
  text-align: right;
  margin: 50px 80px 0px auto;
  font-family: 'Sacramento', cursive;
  text-shadow: 2px 2px 3px white;
}

h2 {
  color:rgb(205, 0, 255);
  font-size: 3rem;
  font-family: 'Itim', cursive;
  margin: 0px 0px 0px 30px;
  text-shadow: 2px 2px 3px white;
}

h3 {
  font-size: 40px; 
  font-family: 'Itim', cursive;
  /*display: flex;
  justify-content: flex-end;*/
  text-align: right;
  margin: 0px 80px 10px auto;
  text-shadow: 2px 2px 3px white;
}

h4 {
  font-size: 40px; 
  font-family: 'Itim', cursive;
  /*display: flex;
  justify-content: flex-end;*/
  text-align: center;
  margin: 40px auto 40px auto;
  text-shadow: 2px 2px 3px white;
}

.left {
  width: 720px;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
}

@media screen and (max-width:  480px) {
  .left {
    width: 360px;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
  }
}

.right {
  overflow: auto;
}

@media screen and (max-width:  480px) {
  .right {
    width: 360px;
    overflow: auto;
  }
}

/*a.accountInfo{
  text-decoration: none;
  color:rgb(205, 0, 255);
}*/

button.accountInfo:hover{
  color:rgb(0, 234, 255);
}

button.accountInfo{
  color:rgb(205, 0, 255);
  border: none;
  outline: none;
  background: transparent;
  text-shadow: 2px 2px 3px white;
}

.account-card {
  background: rgb(255, 255, 255,0.8);
  border-radius: 16px;
  margin: 0px 16px 16px 16px;
  padding: 16px 18px 18px 18px;
  position: relative;
  box-shadow: 5px 5px 5px rgb(102, 113, 102);
}

.account-card #m_ns_button {
  text-align: right;
}

.account-card #account_name {
  font-family: 'Itim', cursive;
  font-size: 30px;
  position: absolute;
  top: 20px; 
  right: 30px;
  text-shadow: 2px 2px 3px white;
}

#account_append_info_1 {
  max-height: 120px;
  overflow-y: auto;
}

#account_append_info_1:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

#account_append_info_2 { 
  max-height: 120px;
  overflow-y: auto;
}

#account_append_info_2:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

#account_append_info_2 #tree_button { 
  position: absolute;
  top: -40px; 
  right: 20px;
}

.sender-card {
  background: rgb(255, 255, 255,0.8);
  border-radius: 16px;
  margin: 16px 16px 0px 16px;
  padding: 16px 36px 36px 36px;
  color: #2f4f4f;
  box-shadow: 5px 5px 5px rgb(102, 113, 102);
}

.sender-card #agg_button {
  margin-top: 12px;
  text-align: left;
}

.sender-card #multisig_message {
  position: relative;
  top: 0px;
  left: 100px;
}

/*label {
    margin: 5px 0 0 0;
    padding: 3px;
    color: #ffffff;
    background-color: #384878;
    border-radius: 5px;
    cursor: pointer;
}*/

input[type="file"] {
    display: none;
}

.btn-gradient-radius { /*  グラデーションボタン　mosaic namespace metadata  */
  display: inline-block;
  margin: 3px 0 3px 0; 
  padding: 0px 10px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  font-style: italic;
  color: blue;
  background-image: linear-gradient(45deg, #ffffff00 0%, #05b7feb2 100%);
  transition: .4s;
  box-shadow: 2px 2px 2px rgb(102, 113, 102);
}

.btn-gradient-radius:hover {
  background-image: linear-gradient(45deg, #ffffff00 0%, #ffffff00 100%);
}

.btn-gradient-radius_tree { /*  グラデーションボタン　tree button */
  display: inline-block;
  margin: 3px 10px 3px 0; 
  padding: 0px 10px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  font-style: italic;
  color: blue;
  background-image: linear-gradient(45deg, #ffffff00 0%, #e905feb2 100%);
  transition: .4s;
  box-shadow: 2px 2px 2px rgb(102, 113, 102);
}

.btn-gradient-radius_tree:hover {
  background-image: linear-gradient(45deg, #ffffff00 0%, #ffffff00 100%);
}

.btn-gradient-radius_2 { /*  グラデーションボタン　マルチシグアカウント  */
  display: inline-block;
  width:  35%;
  border-radius: 15px;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  font-style: italic;
  color: blue;
  background-image: linear-gradient(45deg, #ffffff00 0%, #66ffe670 100%);
  transition: .4s;
  box-shadow: 2px 2px 2px rgb(102, 113, 102);
}

.btn-gradient-radius_2:hover {
  background-image: linear-gradient(45deg, #ffffff00 0%, #ffffff00 100%);
}

#button-haichi{
  text-align: right;
} 

.button-sign{
  font-size: 20px;  
  width:100px;
  height:50px; 
  background-image: linear-gradient(45deg, #f707ff 0%, #af05fe 100%); 
  color:rgb(255,255,255); 
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 2px 2px 2px rgb(102, 113, 102);
}

.button-sign:hover{
  background-image:linear-gradient(45deg, #f700ff7f 0%, #f700ff7f 100%); 
}

.Address_List{
  padding: 4px;
  margin-left: 40px;
  border: solid;
  border-radius: 15px;
  font-size: 13px;
  font-style: italic;
  font-weight: bold;
  color: blue;
  background-image: linear-gradient(45deg, #ffffff00 0%, #05b7feb2 100%);
  cursor: pointer;
}

.Address_List:hover{
  background-image: linear-gradient(45deg, #ffffff00 0%, #ffffff00 100%); 
}

.multisig_agg{
  padding: 4px;
  margin-left: 200px;
  border: solid;
  border-radius: 15px;
  font-size: 13px;
  width: 300px; 
  font-style: italic;
  font-weight: bold;
  color: blue;
  background-image: linear-gradient(45deg, #ffffff00 0%, #05b7feb2 100%);
}

.button-txinfo{
  border-radius: 13px;
  font-size: 13px;
  font-weight: bold;
  color: blue;
  background-image: linear-gradient(45deg, #ffffff00 0%, #05b7feb2 100%);
  box-shadow: 2px 2px 2px rgb(102, 113, 102);
}

.button-txinfo:hover{
  background-image: linear-gradient(45deg, #ffffff00 0%, #ffffff00 100%);
}

.button-decrypted{
  background-image: linear-gradient(45deg, #f707ff 0%, #af05fe 100%);
  color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  width: 476px;
}

.button-decrypted:hover{
  background-image: linear-gradient(45deg, #f700ff7f 0%, #f700ff7f 100%); 
}

.popup_sub_button{
  background-image: linear-gradient(45deg, aquamarine 0%, aquamarine 100%);
  border-radius: 10px;
  transition: 0.4s;
  box-shadow: 2px 2px 2px rgb(102, 113, 102);
}

.popup_sub_button:hover{
  background-image: linear-gradient(45deg, #ffffff00 0%, #ffffff00 100%);
}

.tx-card {
  background: rgb(255, 255, 255,0.8);
  border-radius: 16px;
  width: 730px;
  margin-left: 750px;
  margin-top: 40px;
  padding: 32px 32px 32px 32px;
  box-shadow: 5px 5px 5px rgb(102, 113, 102);
}

@media screen and (max-width: 480px) {
  .tx-card {
    background: rgb(255, 255, 255,0.8);
    border-radius: 16px;
    margin-top: 800px;
    margin-left: 0px;
    padding: 32px 32px 32px 32px;
    box-shadow: 5px 5px 5px rgb(102, 113, 102);
  }
}

/* ═══════════════════════════════════════════════════
   Transaction History — Modern Card UI
   ═══════════════════════════════════════════════════ */

.txh-card {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  border-left: 5px solid #9060e0;
  box-shadow: 0 4px 20px rgba(80,40,160,0.13), 0 1px 5px rgba(0,0,0,0.07);
  margin-bottom: 18px;
  padding: 18px 22px 16px 20px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.18s, background 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.txh-card:hover {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 8px 28px rgba(80,40,160,0.22), 0 2px 7px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}

/* ── カードヘッダー (バッジ・日時・ボタン) ── */
.txh-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

/* ── Tx種別バッジ ── */
.txh-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: .5px;
  background: linear-gradient(135deg, rgba(110,60,220,0.14), rgba(5,183,254,0.18));
  border: 1px solid rgba(110,60,220,0.25);
  color: #5533aa;
}

/* ── アドレス行 ── */
.txh-addr-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 12px;
  color: #2f4f4f;
  line-height: 1.5;
}
.txh-addr-row .txh-label {
  color: #aaa;
  min-width: 38px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .4px;
}

/* ── 区切り線 ── */
.txh-sep {
  border: none;
  border-top: 1px solid rgba(144,96,224,0.13);
  margin: 0 -4px 12px;
}

/* ── アグリゲート アコーディオン ── */
.txh-accordion-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(184,134,11,0.09), rgba(255,200,40,0.11));
  border: 1px solid rgba(184,134,11,0.22);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: bold;
  color: #7a550a;
  margin-top: 8px;
  transition: background 0.2s, box-shadow 0.2s;
  width: 100%;
  text-align: left;
  box-shadow: 0 1px 4px rgba(184,134,11,0.10);
}
.txh-accordion-btn:hover {
  background: linear-gradient(135deg, rgba(184,134,11,0.17), rgba(255,200,40,0.20));
  box-shadow: 0 2px 8px rgba(184,134,11,0.18);
}
.txh-accordion-btn .txh-acc-arrow {
  transition: transform 0.25s;
  display: inline-block;
  font-size: 10px;
}
.txh-accordion-btn.open .txh-acc-arrow {
  transform: rotate(90deg);
}

/* ── 内部Txリスト ── */
.txh-inner-list {
  display: none;
  margin-top: 10px;
  border-left: 3px solid rgba(184,134,11,0.25);
  padding-left: 12px;
}
.txh-inner-list.open {
  display: block;
}
.txh-inner-item {
  background: linear-gradient(135deg, rgba(255,248,220,0.70), rgba(255,250,240,0.85));
  border: 1px solid rgba(184,134,11,0.12);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1.7;
}

/* ── NFT センター表示 ── */
.txh-nft-center {
  text-align: center;
  margin: 12px 0 6px;
  padding: 8px 0;
}


a.btn-style-link{
  display: inline-block;
  padding: 8px 24px;
  font-weight:bold;
  font-size: 15px;
  text-decoration: none;
  border-radius: 10px;
  border: 1px;
  background-image: linear-gradient(45deg, #ffffff00 0%, rgb(255, 145, 0, 0.5) 100%);
  /*background: #5e5;*/
  /*color: #ffff;*/
  box-shadow: 0px 2px 4px #575;
  transition: box-shadow .3s;
}

a.btn-style-link:hover{
  background-image: linear-gradient(45deg, #ffffff00 0%, #ffffff00 100%);  
}

a.btn-style-link_1{
  display: inline-block;
  padding: 8px 24px;
  font-weight:bold;
  font-size: 15px;
  text-decoration: none;
  border-radius: 10px;
  border: 1px;
  background-image: linear-gradient(45deg, #ffffff00 0%, rgb(0, 174, 255, 0.5) 100%);
  /*background: #5e5;*/
  /*color: #ffff;*/
  box-shadow: 0px 2px 4px #575;
  transition: box-shadow .3s;
}

a.btn-style-link_1:hover{
  background-image: linear-gradient(45deg, #ffffff00 0%, #ffffff00 100%);  
}

a.btn-style-link_2{
  display: inline-block;
  padding: 8px 24px;
  font-weight:bold;
  font-size: 15px;
  text-decoration: none;
  border-radius: 10px;
  border: 1px;
  background-image: linear-gradient(45deg, #ffffff00 0%, rgb(0, 255, 98, 0.5) 100%);
  /*background: #5e5;*/
  /*color: #ffff;*/
  box-shadow: 0px 2px 4px #575;
  transition: box-shadow .3s;
}

a.btn-style-link_2:hover{
  background-image: linear-gradient(45deg, #ffffff00 0%, #ffffff00 100%);  
}

a.btn-style-link_3{
  display: inline-block;
  padding: 8px 24px;
  font-weight:bold;
  font-size: 15px;
  text-decoration: none;
  border-radius: 10px;
  border: 1px;
  background-image: linear-gradient(45deg, #ffffff00 0%, rgba(0, 110, 255, 0.5) 100%);
  /*background: #5e5;*/
  /*color: #ffff;*/
  box-shadow: 0px 2px 4px #575;
  transition: box-shadow .3s;
}

a.btn-style-link_3:hover{
  background-image: linear-gradient(45deg, #ffffff00 0%, #ffffff00 100%);  
}

a.btn-style-link_4{
  display: inline-block;
  padding: 8px 24px;
  font-weight:bold;
  font-size: 15px;
  text-decoration: none;
  border-radius: 10px;
  border: 1px;
  background-image: linear-gradient(45deg, #ffffff00 0%, rgb(183, 0, 255, 0.5) 100%);
  /*background: #5e5;*/
  /*color: #ffff;*/
  box-shadow: 0px 2px 4px #575;
  transition: box-shadow .3s;
}

a.btn-style-link_4:hover{
  background-image: linear-gradient(45deg, #ffffff00 0%, #ffffff00 100%);  
}

a.btn-style-link_5{
  display: inline-block;
  padding: 8px 24px;
  font-weight:bold;
  font-size: 15px;
  text-decoration: none;
  border-radius: 10px;
  border: 1px;
  background-image: linear-gradient(45deg, #ffffff00 0%, rgb(255, 230, 0) 100%);
  /*background: #5e5;*/
  /*color: #ffff;*/
  box-shadow: 0px 2px 4px #575;
  transition: box-shadow .3s;
}

a.btn-style-link_5:hover{
  background-image: linear-gradient(45deg, #ffffff00 0%, #ffffff00 100%);  
}

.mosaic_img{
 /* appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none; */
  box-shadow: 10px 10px 10px rgb(102, 113, 102);
  transition: box-shadow .3s;
  margin: 0 auto;
  display: block;  
}

@media (max-width: 768px) { /*横幅が 768px 以下の場合*/
  .mosaic_img {
      max-width: 100%; /* 画像の幅を親要素に合わせる */
  }
}


.mosaic_img:hover{
  opacity: 0.8; /* ホバー時の透明度 */  
  
}


.textfiled-wrapper {
  display: flex;
  justify-content: space-between;
  margin: 8px;
}

.textfiled {
  width: 400px;                     /*テキストフィールドの大きさ*/
  height: 30px;
  border-radius: 5px;
  border: 1px solid black;
}

.textfiled2 {
  width: 400px;                     /*メッセージフィールド*/
  height: 60px;
  border-radius: 5px;
  border: 1px solid black;
}

@media screen and (max-width:  480px) {
  .textfiled-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 8px;
  }
}

@media screen and (max-width:  480px) {
  .textfiled {
    width: 100px;                     /*左の白い背景の大きさ*/
  }
}

#wallet-addr {
  font-size: 24px;                 /* ウォレットアドレスの文字サイズ*/
}

#wallet-xym {
  text-align: right;
  font-size: 30px;
  font-weight: 700;
}

#wallet-transactions{
  margin: 30px;
  word-wrap: break-word;
}

/*ul{
   padding: 0;
   margin: 0;
}*/

ul {
  margin: 0; /*余白をリセット*/
  padding: 0; /*余白をリセット*/
  list-style-type: none; /*マーカーを削除*/
  border-top: solid 1px #3dbfb8; /*枠線・上*/
 }
 ul li {
  padding: 10px 20px; /*余白*/
  background: #e3f6f5; /*背景色*/
  border-bottom: solid 1px #3dbfb8; /*枠線・下*/
 }

.decryption{
    display: flex;
    justify-content: space-between;
}

.decryption>li{
    margin: 0;
    list-style: none;
    text-align: center;
}

.container {
  font-size: 24px;
  margin: 20px 20px 20px 0px;
}

.container2 {        /* 追加する連署者*/
  display: flex;
  align-items: center;
  margin-bottom: 10px; /* 各項目の下に10ピクセルのマージンを追加 */
}
.delete-button {
  cursor: pointer;
}
.input-container1{
  width: 300px;
  border-radius: 6px;
  margin-top: 2px;
}

.input-container2{
  border-radius: 6px;
  margin-top: 2px;
  background-color: lemonchiffon;
  transition: 0.3s;
  box-shadow: 2px 2px 2px rgb(102, 113, 102);
}
.input-container2:hover{
  opacity: 0.6;
}

#display-container {
  display: flex;
  flex-direction: column-reverse; /* 表示コンテナの項目を逆順に配置 */
  align-items: flex-end; /* 右側に配置 */
}

.container-multisig{
  border: 2px solid rgb(35, 174, 255);
  border-radius: 10px;
  padding: 15px;
}

.wrapper {
  display: flex;
  justify-content: space-between;
  margin: 25px 50px auto 50px;
}

hr {
  border-top: 5px solid skyblue;
}

#version {
/* display: inline-block;*/
 color:rgb(255, 0, 251); 
 text-align: center;
 font-size: 24px;
 margin: 0px auto 0px 16px;
 /*background: rgb(255, 255, 255,0.8);*/
 filter: drop-shadow(2px 2px 0px #838383);
}

/********* ボタンクリックでクリップボードへコピー  *********/

.copy_container {
  display: flex;
  column-gap: 5px;
  align-items: center;
}
.copy_bt {
  padding: 0px 5px;
  position: relative;
  border-radius: 5px;
}

/*
.active {
  background-color: green;
  color: white;
}
*/

/******** iOS風トグルスイッチ　**************************/

/* 0 */
.toggle0 {
  position: relative;
  width: 50px;
  height: 30px;
  margin: 0px 50px;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
}
.toggle0 input[type=checkbox] {
  display: none;
}
.toggle0:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #6e6e6e;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.toggle0:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.toggle0.checked:before {
  background: #35c759;
}
.toggle0.checked:after {
  left: 23px;
  box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.5);
}

/* 1 */
.toggle1 {
  position: relative;
  width: 50px;
  height: 30px;
  margin: 0px 150px;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
}
.toggle1 input[type=checkbox] {
  display: none;
}
.toggle1:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #e9e9eb;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.toggle1:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.toggle1.checked:before {
  background: #35c759;
}
.toggle1.checked:after {
  left: 23px;
  box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.5);
}

/** 2 **/
.toggle2 {
  position: relative;
  width: 50px;
  height: 30px;
  margin: 0px 150px;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
}
.toggle2 input[type=checkbox] {
  display: none;
}
.toggle2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #e9e9eb;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.toggle2:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.toggle2.checked:before {
  background: #35c759;
}
.toggle2.checked:after {
  left: 23px;
  box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.5);
}

/** 3 **/
.toggle3 {
  position: relative;
  width: 50px;
  height: 30px;
  margin: 0px 150px;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
}
.toggle3 input[type=checkbox] {
  display: none;
}
.toggle3:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #e9e9eb;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.toggle3:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.toggle3.checked:before {
  background: #35c759;
}
.toggle3.checked:after {
  left: 23px;
  box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.5);
}

/** 4 **/
.toggle4 {
  position: relative;
  width: 50px;
  height: 30px;
  margin: 0px 150px;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
}
.toggle4 input[type=checkbox] {
  display: none;
}
.toggle4:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #e9e9eb;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.toggle4:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.toggle4.checked:before {
  background: #35c759;
}
.toggle4.checked:after {
  left: 23px;
  box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.5);
}


/** 5 **  供給量可変  / 増やす　/ 減らす  **/     
.toggle5 {
  position: relative;
  width: 60px;
  height: 30px;
  margin: 0px 20px;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
}
.toggle5 input[type=checkbox] {
  display: none;
}
.toggle5:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #35c759;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.toggle5:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.toggle5.checked:before {
  background: #35c759;
}
.toggle5.checked:after {
  left: 33px;
  box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.5);
}


/** 6  agg ファイルチェック **/
.toggle6 {
  position: relative;
  width: 50px;
  height: 30px;
  margin: 0px 150px;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
}
.toggle6 input[type=checkbox] {
  display: none;
}
.toggle6:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #e9e9eb;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.toggle6:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.toggle6.checked:before {
  background: #35c759;
}
.toggle6.checked:after {
  left: 23px;
  box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.5);
}

/** 7  一括回収  **/
.toggle7 {
  position: relative;
  width: 50px;
  height: 30px;
  margin: 0px 150px;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
}
.toggle7 input[type=checkbox] {
  display: none;
}
.toggle7:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #e9e9eb;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.toggle7:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.toggle7.checked:before {
  background: #35c759;
}
.toggle7.checked:after {
  left: 23px;
  box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.5);
}

/** 8  agg ファイルチェック **/
.toggle8 {
  position: relative;
  width: 50px;
  height: 30px;
  margin: 0px 150px;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
}
.toggle8 input[type=checkbox] {
  display: none;
}
.toggle8:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #e9e9eb;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.toggle8:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.toggle8.checked:before {
  background: #35c759;
}
.toggle8.checked:after {
  left: 23px;
  box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.5);
}

/* 9    multisigアカウントからの一括送信　アドレスチェック  */      
.toggle9 {
  position: relative;
  width: 50px;
  height: 30px;
  margin: 0px 150px;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
}
.toggle9 input[type=checkbox] {
  display: none;
}
.toggle9:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #e9e9eb;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.toggle9:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.toggle9.checked:before {
  background: #35c759;
}
.toggle9.checked:after {
  left: 23px;
  box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.5);
}

/**********************************************************/
/* モーダルウィンドウ    Mosaic  */
/**********************************************************/
.popup_m {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: .6s;
  display: flex;
  align-items: center;
}
.popup_m.is-show {
  opacity: 1;
  visibility: visible;
}
.popup_m-inner {
  position: relative;
  /*margin: 0 auto;*/
  margin: 50px auto auto auto; 
  padding-bottom: 50px;
  width: 100%;
  height: auto;
  max-width: 1600px;
  background-color: #fff;
  z-index: 3; 
  border-radius: 16px;
}
@media screen and (max-width: 480px) {
  .popup_m-inner {
    height: 100%;
  }
}
.popup_m-inner img {
  width: 100%;
}
.close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
.close-btn i {
  font-size: 20px;
  color: #333;
}
.black-background_m {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1000%;
  background-color: rgba(0,0,0,.8);
  z-index: -1;
  cursor: pointer;
}

/* Mosaic Parameter */
.Form {
  margin-left: auto;
  margin-right: auto;
  padding: 0 4%;
  max-width: 1500px;
  height: 100%;
  }
  
  .Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 10px;
  padding-left: 20%;
  /*padding-bottom: 12px;*/
  width: 100%;
  display: flex;
  align-items: center;
  }
  @media screen and (max-width: 480px) {
    .Form-Item {
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
    }
  }
  .Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
  }
  .Form-Item-Label {
  width: 100%;
  max-width: 300px;
  letter-spacing: 0.05em;
  /*font-weight: bold;*/
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Label {
  max-width: inherit;
  display: flex;
  align-items: center;
  font-size: 15px;
  }
  }
 .divisibility {
  width: 220px;
  height: 35px;
  margin-top: 5px;
  margin-bottom: auto;
  border-radius: 5px;
  }
  .Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 230px;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
  border-radius: 4px;
  padding-top: 4px;
  padding-bottom: 4px;
  width: 32px;
  font-size: 10px;
  }
  }
  .Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Input {
  margin-left: 0;
  margin-top: 18px;
  height: 40px;
  flex: inherit;
  font-size: 15px;
  }
  }
  @media screen and (max-width: 480px) {
  .Divisibility {
  margin-top: 18px;
  margin-left: 0;
  height: 200px;
  flex: inherit;
  font-size: 15px;
  }
  }
  .Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #5bc8ac;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 2px 2px 2px rgb(102, 113, 102);
  }
  .Form-Btn:hover{
    opacity: 0.6;
  }
  @media screen and (max-width: 480px) {
  .Form-Btn {
  margin-top: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 160px;
  font-size: 16px;
  }
  }


/**********************************************************/
/* モーダルウィンドウ Namespace  */
/**********************************************************/
.popup_n {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 600;
  opacity: 0;
  visibility: hidden;
  transition: .6s;
  display: flex;
  align-items: center;
}
.popup_n.is-show {
  opacity: 1;
  visibility: visible;
}
.popup_n-inner {
  position: relative;
  /*margin: 0 auto;*/
  margin: 100px auto auto auto;
  padding-bottom: 50px;
  width: 100%;
  height: auto;
  max-width: 1600px;
  background-color: #fff;
  z-index: 3;
  border-radius: 16px;
}
@media screen and (max-width: 480px) {
  .popup_n-inner {
    height: 100%;
  }
}
.popup_n-inner img {
  width: 100%;
}
.close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  height: 70px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
.close-btn i {
  padding: 15px;
  font-size: 40px;
  color: #333;
}
.black-background_n {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1000%;
  background-color: rgba(0,0,0,.8);
  z-index: -1;
  cursor: pointer;
}

.Form2 {
  margin-left: auto;
  margin-right: auto;
  padding: 0 4%;
  max-width: 1500px;
  height: 100%;
  }
  
  .Form-Item2 {
  border-top: 1px solid #ddd;
  padding-left: 20%;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  }

  
  @media screen and (max-width: 480px) {
    .Form-Item2 {
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
    }
  }
  .Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
  }
  .Form-Item-Label {
  width: 100%;
  max-width: 300px;
  letter-spacing: 0.05em;   
  /*font-weight: bold;*/
  font-size: 18px;
  }
  .Form-Item-Label-Required2 {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 240px;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Label-Required2 {
  border-radius: 4px;
  padding-top: 4px;
  padding-bottom: 4px;
  width: 32px;
  font-size: 10px;
  }
  } 
  .Form-Item-Input_N {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Input_N {
  margin-left: 0;
  margin-top: 18px;
  height: 40px;
  flex: inherit;
  font-size: 15px;
  }
  }

/********************************************************/

.re_maxFee {
    width: 220px;
    height: 35px;
    margin-top: 5px;
    margin-bottom: auto;
    border-radius: 5px;
    }
    @media screen and (max-width: 480px) {
    .re_maxFee {
    margin-top: 8px;
    }
    }

.msig_min_del {
      width: 220px;
      height: 35px;
      margin-bottom: auto;
      border-radius: 5px;
      }
      @media screen and (max-width: 480px) {
      .msig_min_del {
      margin-top: 8px;
      }
      }
 
.alias_type {
      width: 240px;
      height: 35px;
      margin-top: 5px;
      margin-bottom: auto;
      border-radius: 5px;
      }
      @media screen and (max-width: 480px) {
      .alias_type {
      margin-top: 8px;
      }
      }

.select1 {
        width: 240px;
        height: 35px;
        margin-top: 5px;
        margin-bottom: auto;
        border-radius: 5px;
        }
        @media screen and (max-width: 480px) {
        .select1 {
        margin-top: 8px;
        }
        }

.select_r {
          width: 240px;
          height: 35px;
          margin-top: 5px;
          margin-bottom: auto;
          border-radius: 5px;
          }
          @media screen and (max-width: 480px) {
          .select_r {
          margin-top: 8px;
          }
          }

.Meta_type {
            width: 240px;
            height: 35px;
            margin-top: 5px;
            margin-bottom: auto;
            border-radius: 5px;
            }
            @media screen and (max-width: 480px) {
            .Meta_type {
            margin-top: 8px;
            }
            }

.select_Meta {
              width: 240px;
              height: 35px;
              margin-top: 5px;
              margin-bottom: auto;
              border-radius: 5px;
              }
              @media screen and (max-width: 480px) {
              .select_Meta {
              margin-top: 8px;
              }
              }

.select_m1 {
                width: 400px;
                height: 30px;
                margin-top: 7px;
                margin-bottom: auto;
                border-radius: 5px;
                }
                @media screen and (max-width: 480px) {
                .select_m1 {
                margin-top: 8px;
                }
                } 
                
.select_m2 {
                width: 300px;
                height: 35px;
                margin-top: 5px;
                margin-bottom: auto;
                border-radius: 5px;
                }
                @media screen and (max-width: 480px) {
                .select_m2 {
                margin-top: 8px;
                }
                }                 
          
.select_mo {
                width: 240px;
                height: 35px;
                margin-top: 5px;
                margin-bottom: auto;
                border-radius: 5px;
                }
                @media screen and (max-width: 480px) {
                .select_mo {
                margin-top: 8px;
                }
                } 
                
.select_sup {
                  width: 240px;
                  height: 35px;
                  margin-top: 5px;
                  margin-bottom: auto;
                  border-radius: 5px;
                  }
                  @media screen and (max-width: 480px) {
                  .select_sup {
                  margin-top: 8px;
                  }
                  }                 
                
.select_N {
                  width: 240px;
                  height: 35px;
                  margin-top: 5px;
                  margin-bottom: auto;
                  border-radius: 5px;
                  }
                  @media screen and (max-width: 480px) {
                  .select_N {
                  margin-top: 8px;
                  }
                  }
.select_msig {
                  width: 310px;
                  height: 35px;
                 /* margin-top: 3px;
                  margin-bottom: auto;*/
                  align-items: center;
                  border-radius: 5px;
                  }
                  @media screen and (max-width: 480px) {
                  .select_msig {
                  margin-top: 8px;
                  }
                  }

.multisig_address_select {
                    padding-top: 5px;
                  }
.multisig_address_select_1 {
                    padding-top: 5px;
                  }

.meta_address {
                font-size: 18px;
                  }                

/**********************************************************/
/* モーダルウィンドウ  sub Namespace  */
/**********************************************************/
.popup_sn {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 600;
  opacity: 0;
  visibility: hidden;
  transition: .6s;
  display: flex;
  align-items: center;
}
.popup_sn.is-show {
  opacity: 1;
  visibility: visible;
}
.popup_sn-inner {
  position: relative;
  /*margin: 0 auto;*/
  margin: 100px auto auto auto;
  padding-bottom: 50px;
  width: 100%;
  height: auto;
  max-width: 1600px;
  background-color: #fff;
  z-index: 3;
  border-radius: 16px;
}
@media screen and (max-width: 480px) {
  .popup_sn-inner {
    height: 100%;
  }
}
.popup_sn-inner img {
  width: 100%;
}
.close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  height: 70px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
.close-btn i {
  padding: 15px;
  font-size: 40px;
  color: #333;
}
.black-background_sn {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1000%;
  background-color: rgba(0,0,0,.8);
  z-index: -1;
  cursor: pointer;
}

.Form_sn {
  margin-left: auto;
  margin-right: auto;
  padding: 0 4%;
  max-width: 1500px;
  height: 100%;
  }
  
  .Form-Item_sn {
  border-top: 1px solid #ddd;
  padding-left: 20%;
  padding-right: 100px;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  }

  
  @media screen and (max-width: 480px) {
    .Form-Item_sn {
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
    }
  }
  .Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
  }
  .Form-Item-Label {
  width: 100%;
  max-width: 300px;
  letter-spacing: 0.05em;   
  /*font-weight: bold;*/
  font-size: 18px;
  }
  .Form-Item-Label-Required_sn {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 240px;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Label-Required_sn {
  border-radius: 4px;
  padding-top: 4px;
  padding-bottom: 4px;
  width: 32px;
  font-size: 10px;
  }
  } 
  .Form-Item-Input_sn {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Input_sn {
  margin-left: 0;
  margin-top: 18px;
  height: 40px;
  flex: inherit;
  font-size: 15px;
  }
  }

/**********************************************************/
/* モーダルウィンドウ   供給量変更  */
/**********************************************************/
.popup_sup {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 700;
  opacity: 0;
  visibility: hidden;
  transition: .6s;
  display: flex;
  align-items: center;
}
.popup_sup.is-show {
  opacity: 1;
  visibility: visible;
}
.popup_sup-inner {
  position: relative;
  /*margin: 0 auto;*/
  margin: 100px auto auto auto; 
  padding-bottom: 50px;
  width: 100%;
  height: auto;
  max-width: 1000px;
  background-color: #fff;
  z-index: 3;
  border-radius: 16px;
}
@media screen and (max-width: 480px) {
  .popup_sup-inner {
    height: 100%;
  }
}
.popup_sup-inner img {
  width: 100%;
}
.close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  height: 70px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
.close-btn i {
  padding: 15px;
  font-size: 40px;
  color: #333;
}
.black-background_sup {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1000%;
  background-color: rgba(0,0,0,.8);
  z-index: -1;
  cursor: pointer;
}

.Form_sup {
  margin-left: auto;
  margin-right: auto;
  padding: 0 4%;
  max-width: 1000px;
  height: 100%;
  }
  
  .Form-Item_sup {
  border-top: 1px solid #ddd;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  }

  @media screen and (max-width: 480px) {
    .Form-Item_sup {
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
    }
  }
  .Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
  }
  .Form-Item-Label {
  width: 100%;
  max-width: 300px;
  letter-spacing: 0.05em;   
  /*font-weight: bold;*/
  font-size: 18px;
  }
  .Form-Item-Label-Required_sup {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 240px;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Label-Required_sup {
  border-radius: 4px;
  padding-top: 4px;
  padding-bottom: 4px;
  width: 32px;
  font-size: 10px;
  }
  } 
  .Form-Item-Input_sup {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Input_sup {
  margin-left: 0;
  margin-top: 18px;
  height: 40px;
  flex: inherit;
  font-size: 15px;
  }
  }

/**********************************************************/
/* モーダルウィンドウ   aggregate  */
/**********************************************************/
.popup_agg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 700;
  opacity: 0;
  visibility: hidden;
  transition: .6s;
  display: flex;
  align-items: center;
}
.popup_agg.is-show {
  opacity: 1;
  visibility: visible;
}
.popup_agg-inner {
  position: relative;
  /*margin: 0 auto;*/
  margin: 100px auto auto auto; 
  padding-bottom: 50px;
  width: 100%;
  height: auto;
  max-width: 1000px;
  background-color: #fff;
  z-index: 3;
  border-radius: 16px;
}
@media screen and (max-width: 480px) {
  .popup_agg-inner {
    height: 100%;
  }
}
.popup_agg-inner img {
  width: 60%;
}
.popup_agg-inner .cmd-item-thumb,
.popup_agg-inner .cmd-trigger-thumb {
  width: 38px;
}
.close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  height: 70px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
.close-agg i {
  padding: 15px;
  font-size: 40px;
  color: #333;
}
.black-background_agg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1000%;
  background-color: rgba(0,0,0,.8);
  z-index: -1;
  cursor: pointer;
}

.Form_agg {
  margin-left: auto;
  margin-right: auto;
  padding: 0 4%;
  max-width: 1000px;
  height: 100%;
  }
  
  .Form-Item_agg {
  border-top: 1px solid #ddd;
  padding-top: 12px;
  padding-left: 8%;
  padding-bottom: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  }

  
  @media screen and (max-width: 480px) {
    .Form-Item_agg {
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
    }
  }
  .Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
  }
  .Form-Item-Label {
  width: 100%;
  max-width: 300px;
  letter-spacing: 0.05em;   
  /*font-weight: bold;*/
  font-size: 18px;
  }
  .Form-Item-Label-Required_agg {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 250px;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Label-Required_agg {
  border-radius: 4px;
  padding-top: 4px;
  padding-bottom: 4px;
  width: 32px;
  font-size: 10px;
  }
  } 
  .Form-Item-Input_agg {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 430px;
  background: #eaedf2;
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Input_agg {
  margin-left: 0;
  margin-top: 18px;
  height: 40px;
  flex: inherit;
  font-size: 15px;
  }
  }
  

/**********************************************************/
/* モーダルウィンドウ   Revoke  モザイク回収  */
/**********************************************************/
.popup_r {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 700;
  opacity: 0;
  visibility: hidden;
  transition: .6s;
  display: flex;
  align-items: center;
}
.popup_r.is-show {
  opacity: 1;
  visibility: visible;
}
.popup_r-inner {
  position: relative;
  /*margin: 0 auto;*/
  margin: 100px auto auto auto; 
  padding-bottom: 50px;
  width: 100%;
  height: auto;
  max-width: 1000px;
  background-color: #fff;
  z-index: 3;
  border-radius: 16px;
}
@media screen and (max-width: 480px) {
  .popup_r-inner {
    height: 100%;
  }
}
.popup_r-inner img {
  width: 100%;
}
.close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  height: 70px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
.close-btn i {
  padding: 15px;
  font-size: 40px;
  color: #333;
}
.black-background_r {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1000%;
  background-color: rgba(0,0,0,.8);
  z-index: -1;
  cursor: pointer;
}

.Form_r {
  margin-left: auto;
  margin-right: auto;
  padding: 0 4%;
  max-width: 1000px;
  height: 100%;
  }
  
  .Form-Item_r {
  border-top: 1px solid #ddd;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  }

  
  @media screen and (max-width: 480px) {
    .Form-Item_r {
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
    }
  }
  .Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
  }
  .Form-Item-Label {
  width: 100%;
  max-width: 300px;
  letter-spacing: 0.05em;   
  /*font-weight: bold;*/
  font-size: 18px;
  }
  .Form-Item-Label-Required_r {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 240px;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Label-Required2 {
  border-radius: 4px;
  padding-top: 4px;
  padding-bottom: 4px;
  width: 32px;
  font-size: 10px;
  }
  } 
  .Form-Item-Input_r {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Input_r {
  margin-left: 0;
  margin-top: 18px;
  height: 40px;
  flex: inherit;
  font-size: 15px;
  }
  }
 
/**********************************************************/
/* モーダルウィンドウ   エイリアスリンク  */
/**********************************************************/
.popup_L {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transition: .6s;
  display: flex;
  align-items: center;
}
.popup_L.is-show {
  opacity: 1;
  visibility: visible;
}
.popup_L-inner {
  position: relative;
  /*margin: 0 auto;*/
  margin: 100px auto auto auto; 
  padding-bottom: 50px;
  width: 100%;
  height: auto;
  max-width: 1000px;
  background-color: #fff;
  z-index: 3;
  border-radius: 16px;
}
@media screen and (max-width: 480px) {
  .popup_L-inner {
    height: 100%;
  }
}
.popup_L-inner img {
  width: 100%;
}
.close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  height: 70px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
.close-btn i {
  padding: 15px;
  font-size: 40px;
  color: #333;
}
.black-background_L {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1000%;
  background-color: rgba(0,0,0,.8);
  z-index: -1;
  cursor: pointer;
}

.Form_L {
  margin-left: auto;
  margin-right: auto;
  padding: 0 4%;
  max-width: 1000px;
  height: 100%;
  }
  
  .Form-Item_L {
  border-top: 1px solid #ddd;
  padding-left: 10%;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  }

  
  @media screen and (max-width: 480px) {
    .Form-Item_L {
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
    }
  }
  .Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
  }
  .Form-Item-Label {
  width: 100%;
  max-width: 300px;
  letter-spacing: 0.05em;   
  /*font-weight: bold;*/
  font-size: 18px;
  }
  .Form-Item-Label-Required_L {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 240px;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Label-Required_L {
  border-radius: 4px;
  padding-top: 4px;
  padding-bottom: 4px;
  width: 32px;
  font-size: 10px;
  }
  } 
  .Form-Item-Input_L {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Input_L {
  margin-left: 0;
  margin-top: 18px;
  height: 40px;
  flex: inherit;
  font-size: 15px;
  }
  }

/**********************************************************/
/* モーダルウィンドウ   Metadata  */
/**********************************************************/
.popup_Meta {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 700;
  opacity: 0;
  visibility: hidden;
  transition: .6s;
  display: flex;
  align-items: center;
}
.popup_Meta.is-show {
  opacity: 1;
  visibility: visible;
}
.popup_Meta-inner {
  position: relative;
  /*margin: 0 auto;*/
  margin: 100px auto auto auto; 
  padding-bottom: 50px;
  width: 100%;
  height: auto;
  max-width: 1800px;
  background-color: #fff;
  z-index: 3;
  border-radius: 16px;
}
@media screen and (max-width: 480px) {
  .popup_Meta-inner {
    height: 100%;
  }
}
.popup_Meta-inner img {
  width: 100%;
}
.close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  height: 70px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
.close-btn i {
  padding: 15px;
  font-size: 40px;
  color: #333;
}
.black-background_Meta {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1000%;
  background-color: rgba(0,0,0,.8);
  z-index: -1;
  cursor: pointer;
}

.Form_Meta {
  margin: 0 auto;
  max-width: 1700px;
  height: 100%;
  }
  
  .Form-Item_Meta {
  padding-left: 30%;
  border-top: 1px solid #ddd;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  }

  
  @media screen and (max-width: 480px) {
    .Form-Item_Meta {
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
    }
  }
  .Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
  }
  .Form-Item-Label {
  width: 100%;
  max-width: 300px;
  letter-spacing: 0.05em;   
  /*font-weight: bold;*/
  font-size: 18px;
  }
  .Form-Item-Label-Required_Meta {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 240px;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Label-Required_Meta {
  border-radius: 4px;
  padding-top: 4px;
  padding-bottom: 4px;
  width: 32px;
  font-size: 10px;
  }
  } 
  .Form-Item-Input_Meta {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 490px;
  background: #eaedf2;
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Input_Meta {
  margin-left: 0;
  margin-top: 18px;
  height: 40px;
  flex: inherit;
  font-size: 15px;
  }
  }
  .Form-Item-Input_Meta_value {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
    height: 90px;
    flex: 1;
    width: 100%;
    max-width: 490px;
    background: #eaedf2;
    font-size: 18px;
    overflow-wrap: anywhere;
    }
    @media screen and (max-width: 480px) {
    .Form-Item-Input_Meta_value {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
    }
    }


/***********************************/


/**********************************************************/
/* モーダルウィンドウ   accountInfo  */
/**********************************************************/
.popup_aInfo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 700;
  opacity: 0;
  visibility: hidden;
  transition: .6s;
  display: flex;
  align-items: center;
}
.popup_aInfo.is-show {
  opacity: 1;
  visibility: visible;
}
.popup_aInfo-inner {
  position: relative;
  /*margin: 0 auto;*/
  margin: 100px auto auto auto; 
  padding-bottom: 50px;
  width: 100%;
  height: auto;
  max-width: 1300px;
  background-color: #fff;
  z-index: 3;
  border-radius: 16px;
}
@media screen and (max-width: 480px) {
  .popup_aInfo-inner {
    height: 100%;
  }
}
.popup_aInfo-inner img {
  width: 100%;
}
.close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  height: 70px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
.close-btn i {
  padding: 15px;
  font-size: 40px;
  color: #333;
}
.black-background_aInfo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1000%;
  background-color: rgba(0,0,0,.8);
  z-index: -1;
  cursor: pointer;
}

.Form_aInfo {
  margin-left: auto;
  margin-right: auto;
  padding: 0 4%;
  max-width: 1600px;
  height: 100%;
  }
  
  .Form-Item_aInfo {
  border-top: 1px solid #ddd;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  }

  
  @media screen and (max-width: 480px) {
    .Form-Item_aInfo {
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
    }
  }
  .Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
  }
  .Form-Item-Label {
  width: 100%;
  max-width: 300px;
  letter-spacing: 0.05em;   
  /*font-weight: bold;*/
  font-size: 18px;
  }
  .Form-Item-Label-Required_aInfo {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 240px;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Label-Required2 {
  border-radius: 4px;
  padding-top: 4px;
  padding-bottom: 4px;
  width: 32px;
  font-size: 10px;
  }
  } 
  .Form-Item-Input_aInfo {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 880px;
  background: #eaedf2;
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Input_aInfo {
  margin-left: 0;
  margin-top: 18px;
  height: 40px;
  flex: inherit;
  font-size: 15px;
  }
  }


/**********************************************************/
/* モーダルウィンドウ   donation  */
/**********************************************************/
.popup_dona {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 700;
  opacity: 0;
  visibility: hidden;
  transition: .6s;
  display: flex;
  align-items: center;
}
.popup_dona.is-show {
  opacity: 1;
  visibility: visible;
}
.popup_dona-inner {
  position: relative;
  /*margin: 0 auto;*/
  margin: 100px auto auto auto; 
  padding-bottom: 50px;
  width: 100%;
  height: auto;
  max-width: 1000px;
  background-color: #fff;
  z-index: 3;
  border-radius: 16px;
}
@media screen and (max-width: 480px) {
  .popup_dona-inner {
    height: 100%;
  }
}
.popup_dona-inner img {
  width: 100%;
}
.close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  height: 70px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
.close-btn i {
  padding: 15px;
  font-size: 40px;
  color: #333;
}
.black-background_dona {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1000%;
  background-color: rgba(0,0,0,.8);
  z-index: -1;
  cursor: pointer;
}

.Form_dona {
  margin-left: auto;
  margin-right: auto;
  padding: 0 4%;
  max-width: 800px;
  height: 100%;
  }
  
  .Form-Item_dona {
  border-top: 1px solid #ddd;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  }

  
  @media screen and (max-width: 480px) {
    .Form-Item_dona {
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
    }
  }
  .Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
  }
  .Form-Item-Label {
  width: 100%;
  max-width: 300px;
  letter-spacing: 0.05em;   
  /*font-weight: bold;*/
  font-size: 18px;
  }
  .Form-Item-Label-Required_dona {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 240px;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Label-Required_dona {
  border-radius: 4px;
  padding-top: 4px;
  padding-bottom: 4px;
  width: 32px;
  font-size: 10px;
  }
  } 
  .Form-Item-Input_dona {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Input_dona {
  margin-left: 0;
  margin-top: 18px;
  height: 40px;
  flex: inherit;
  font-size: 15px;
  }
  }  

/**********************************************************/
/* モーダルウィンドウ   multisig  Account */
/**********************************************************/
.popup_Msig {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 700;
  opacity: 0;
  visibility: hidden;
  transition: .6s;
  display: flex;
  align-items: center;
}
.popup_Msig.is-show {
  opacity: 1;
  visibility: visible;
}
.popup_Msig-inner {
  position: relative;
  /*margin: 0 auto;*/
  margin: 100px auto auto auto; 
  padding-bottom: 50px;
  width: 100%;
  height: auto;
  max-width: 1000px;
  background-color: #fff;
  z-index: 3;
  border-radius: 16px;
}
@media screen and (max-width: 480px) {
  .popup_Msig-inner {
    height: 100%;
  }
}
.popup_Msig-inner img {
  width: 100%;
}
.close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  height: 70px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
.close-btn i {
  padding: 15px;
  font-size: 40px;
  color: #333;
}
.black-background_Msig {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1000%;
  background-color: rgba(0,0,0,.8);
  z-index: -1;
  cursor: pointer;
}

.Form_Msig {
  margin-left: auto;
  margin-right: auto;
  padding: 0 4%;
  max-width: 900px;
  height: 100%;
  }
  
  .Form-Item_Msig {
  border-top: 1px solid #ddd;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  }

  
  @media screen and (max-width: 480px) {
    .Form-Item_Msig {
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
    }
  }

  .Form-Item_Msig_1 {
    border: 3px solid rgb(204, 35, 255);
    padding: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 10px;
    }

  .Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
  }
  .Form-Item-Label {
  width: 100%;
  max-width: 300px;
  letter-spacing: 0.05em;   
  /*font-weight: bold;*/
  font-size: 18px;
  }
  .Form-Item-Label-Required_Msig {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 240px;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Label-Required_Msig {
  border-radius: 4px;
  padding-top: 4px;
  padding-bottom: 4px;
  width: 32px;
  font-size: 10px;
  }
  } 
  .Form-Item-Input_Msig {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 5px;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Input_Msig {
  margin-left: 0;
  margin-top: 18px;
  height: 40px;
  flex: inherit;
  font-size: 15px;
  }
  }  

/**********************************************************/
/* モーダルウィンドウ   multisig 送信 */
/**********************************************************/
.popup_multisig {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 700;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;   /* 非表示時はクリックを通過させる */
  transition: .6s;
  display: flex;
  align-items: center;
}
.popup_multisig.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;   /* 表示時はクリックを受け取る */
}
.popup_multisig-inner {
  position: relative;
  /*margin: 0 auto;*/
  margin: 100px auto auto auto; 
  padding-bottom: 50px;
  width: 100%;
  height: auto;
  max-width: 1000px;
  background-color: #fff;
  z-index: 3;
  border-radius: 16px;
}
@media screen and (max-width: 480px) {
  .popup_multisig-inner {
    height: 100%;
  }
}
.popup_multisig-inner img {
  width: 100%;
}
.close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  height: 70px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
.close-btn i {
  padding: 15px;
  font-size: 40px;
  color: #333;
}
.black-background_multisig {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1000%;
  background-color: rgba(0,0,0,.8);
  z-index: -1;
  cursor: pointer;
}

.Form_multisig {
  margin-left: auto;
  margin-right: auto;
  padding: 0 4%;
  max-width: 800px;
  height: 100%;
  }
  
  .Form-Item_multisig {
  border-top: 1px solid #ddd;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  }

  
  @media screen and (max-width: 480px) {
    .Form-Item_multisig {
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
    }
  }

  .Form-Item_multisig_1 {
    border: 3px solid rgb(204, 35, 255);
    padding: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 10px;
    }

  .Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
  }
  .Form-Item-Label {
  width: 100%;
  max-width: 300px;
  letter-spacing: 0.05em;   
  /*font-weight: bold;*/
  font-size: 18px;
  }
  .Form-Item-Label-Required_multisig {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 240px;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Label-Required_multisig {
  border-radius: 4px;
  padding-top: 4px;
  padding-bottom: 4px;
  width: 32px;
  font-size: 10px;
  }
  } 
  .Form-Item-Input_multisig {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
  }
  @media screen and (max-width: 480px) {
  .Form-Item-Input_multisig {
  margin-left: 0;
  margin-top: 18px;
  height: 40px;
  flex: inherit;
  font-size: 15px;
  }
  }  

/*******************************************/

.table-container {
  position: relative;
  display: flex;
  justify-content: center;
  /* 水平方向に中央揃え */
  margin-top: 20px;
}

#download_csv_button {
  position: absolute;
  top: -35px;
  border-radius: 5px;
  /*right: 0;*/
}

table {
  table-layout: fixed;  /*  */
  border-collapse:  collapse; /* セルの線を重ねる */
  width: 100%;
}

tr:nth-child(even) {
  background-color:  rgb(181, 255, 255);    /* 背景色指定 */
}

th,td {
  padding: 5px 10px;          /* 余白指定 */

  border: 1px solid #ccc;
  padding: 8px;
  word-wrap: break-word;
  white-space: normal;
  word-break: break-all;
  overflow-wrap: break-word;
}

/**********************************/
#nowLoading {
  display: table;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0.9;
}

/*#nowLoading_re {
  display: table;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0.9;
}

#nowLoading_MV {
  display: table;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0.5; 
} */
 
#innerMsg_agg {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding-top: 140px;
  z-index:20000;
  background: url("./src/kurukuru.gif") center center no-repeat;
}

#innerMsg_msig {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding-top: 140px;
  z-index:20000;
  background: url("./src/kurukuru.gif") center center no-repeat;
}

#innerMsg_re {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding-top: 140px;
  z-index:20000;
  background: url("./src/kurukuru.gif") center center no-repeat;
}
/* ─────────────────────────────────────────────── */
/* Multisig Account Panel - Cosigner Card UI       */
/* ─────────────────────────────────────────────── */

.msig-status-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: #fff;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: bold;
  margin: 6px 0 4px;
}
.msig-status-badge.new {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
}
.msig-status-vals {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.msig-section-label {
  font-size: 13px;
  font-weight: bold;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 12px 0 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid #e0e0e0;
}

/* 既存連署者カード */
.msig-cosig-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 7px 12px;
  margin-bottom: 6px;
  transition: background 0.2s, opacity 0.2s;
}
.msig-cosig-card.msig-cosig-queued {
  opacity: 0.4;
  background: #ffe8e8;
  border-color: #f5c6c6;
}

/* アドレス表示 */
.msig-cosig-addr {
  font-size: 12px;
  font-family: monospace;
  word-break: break-all;
  flex: 1;
  color: #333;
}
.msig-cosig-addr.del {
  color: #c0392b;
  text-decoration: line-through;
}
.msig-cosig-addr.add {
  color: #27ae60;
}

/* 🗑️ 削除ボタン */
.msig-del-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 2px 6px;
  border-radius: 6px;
  transition: background 0.15s;
  flex-shrink: 0;
}
.msig-del-btn:hover:not(:disabled) {
  background: #ffe0e0;
}
.msig-del-btn:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

/* ↩️ 取り消しボタン */
.msig-undo-btn {
  background: none;
  border: 1px solid #ccc;
  cursor: pointer;
  font-size: 13px;
  padding: 3px 8px;
  border-radius: 6px;
  color: #666;
  transition: background 0.15s;
  flex-shrink: 0;
  margin-left: 8px;
}
.msig-undo-btn:hover {
  background: #f0f0f0;
}

/* 削除予定アイテム */
.msig-delete-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff5f5;
  border: 1px dashed #f5c6c6;
  border-radius: 8px;
  padding: 6px 12px;
  margin-bottom: 5px;
}

/* 追加予定アイテム */
.msig-add-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f0fff4;
  border: 1px dashed #c3e6cb;
  border-radius: 8px;
  padding: 6px 12px;
  margin-bottom: 5px;
}

/* msig-hint: 補足テキスト */
.msig-hint {
  display: block;
  font-size: 11px;
  color: #aaa;
  margin-top: 3px;
}

/* 連署者アカウントへの切り替え案内 */
.msig-cosigner-notice {
  margin: 8px 4px 4px;
  padding: 10px 14px;
  background: #fff8e1;
  border-left: 4px solid #f39c12;
  border-radius: 6px;
  font-size: 13px;
  color: #6d4c00;
  line-height: 1.7;
  text-align: left;
}

/* 対象アカウント選択セレクト */
.msig-target-select {
  width: 100%;
  padding: 8px 12px;
  border: 2px solid #3498db;
  border-radius: 8px;
  font-size: 13px;
  color: #333;
  background: #fff;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}
.msig-target-select:focus {
  border-color: #2980b9;
  box-shadow: 0 0 0 3px rgba(52,152,219,0.15);
}

/* アドレステキスト（非選択時） */
.msig-addr-text {
  display: block;
  font-size: 12px;
  font-family: monospace;
  word-break: break-all;
  color: #555;
  padding: 4px 0;
}

/* ✅ 連署者OK状態のインフォボックス */
.msig-cosigner-notice.msig-cosigner-ok {
  background: #e8f8f0;
  border-left-color: #27ae60;
  color: #1a5c36;
}

/* ═══════════════════════════════════════════════════
   Multisig ツリー ポップアップ
   ═══════════════════════════════════════════════════ */
.popup_MsigTree {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.popup_MsigTree.is-show {
  display: flex;
}
.popup_MsigTree-inner {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  width: min(1200px, 96vw);
  height: min(85vh, 900px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.popup_MsigTree-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid #e8e0f0;
  background: linear-gradient(90deg, #f8eefe, #fdf0fb);
}
.popup_MsigTree-title {
  font-size: 17px;
  font-weight: 700;
  color: #6020a0;
}
.popup_MsigTree-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #aaa;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.15s;
}
.popup_MsigTree-close:hover { background: #f0e0f8; color: #600; }
.popup_MsigTree-body {
  flex: 1;
  padding: 8px 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #fcfaff;
}
#msig-tree-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
}
#msig-tree-canvas {
  display: block;
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #ede0fa;
}

/* ═══════════════════════════════════════════════════
   アカウント種別バッジ
   ═══════════════════════════════════════════════════ */
.msig-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.msig-badge--msig {
  background: linear-gradient(90deg, #fce4f6, #f0d8ff);
  color: #7a006a;
  border: 1.5px solid #e060c0;
}
.msig-badge--cosig {
  background: linear-gradient(90deg, #dbeeff, #e0d8ff);
  color: #00308a;
  border: 1.5px solid #4090e8;
}
.msig-badge--both {
  background: linear-gradient(90deg, #fce4f6, #dbeeff);
  color: #40006a;
  border: 1.5px solid #a040d0;
}
.msig-badge--normal {
  background: #f0f0f0;
  color: #777;
  border: 1.5px solid #ccc;
}

/* ═══════════════════════════════════════════════════
   マルチシグ送信パネル リデザイン (msig-send-*)
   ═══════════════════════════════════════════════════ */

/* ── カード全体 ───────────────────────────────────── */
.popup_multisig-inner.msig-send-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(80, 0, 120, 0.18);
  max-width: 520px;
  width: 96vw;
  max-height: 92vh;
  overflow-y: auto;
  background: #fff;
}

/* ── ヘッダー ─────────────────────────────────────── */
.msig-send-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 14px;
  background: linear-gradient(135deg, #f5e6ff 0%, #e8f4ff 100%);
  border-bottom: 1px solid #e8d8f8;
}
.msig-send-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.msig-send-icon { font-size: 28px; line-height: 1; }
.msig-send-title {
  font-size: 17px;
  font-weight: 800;
  color: #4a0080;
  line-height: 1.2;
}
.msig-send-subtitle {
  font-size: 11px;
  color: #9060b0;
  margin-top: 2px;
  font-family: monospace;
}
.msig-send-close {
  background: none;
  border: none;
  font-size: 18px;
  color: #bbb;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.msig-send-close:hover { background: #f8e0f8; color: #700; }

/* ── 送信元バッジ ─────────────────────────────────── */
.msig-send-from-box {
  margin: 16px 20px 0;
  background: linear-gradient(90deg, #fff5ff, #f0f8ff);
  border: 1.5px solid #d0b0f0;
  border-radius: 12px;
  padding: 10px 14px;
}
.msig-send-from-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9060b0;
  margin-bottom: 4px;
}
.msig-send-from-addr {
  font-size: 12px;
  font-family: monospace;
  color: #3a005a;
  word-break: break-all;
}

/* ── フォーム本体 ─────────────────────────────────── */
.msig-send-form {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── 個別フィールド ───────────────────────────────── */
.msig-send-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.msig-send-field-label {
  font-size: 12px;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.02em;
}
.msig-send-input {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  color: #333;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  outline: none;
  font-family: inherit;
}
.msig-send-input:focus {
  border-color: #a040e0;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(160,64,224,0.12);
}
.msig-send-textarea {
  resize: vertical;
  min-height: 70px;
  line-height: 1.5;
}

/* ── モザイク行 ───────────────────────────────────── */
.msig-send-mosaic-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.msig-send-mosaic-select select {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  background: #fafafa;
  outline: none;
  cursor: pointer;
}
.msig-send-balance {
  font-size: 12px;
  text-align: right;
  padding-right: 4px;
}

/* ── 手数料インフォ ───────────────────────────────── */
.msig-send-fee-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fffbe8;
  border: 1.5px solid #f0d800;
  border-radius: 10px;
  padding: 10px 13px;
}
.msig-send-fee-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.msig-send-fee-main {
  font-size: 13px;
  color: #7a5800;
  font-weight: 600;
}
.msig-send-fee-sub {
  font-size: 11px;
  color: #a07020;
  margin-top: 3px;
  line-height: 1.5;
}

/* ── 送信ボタン ───────────────────────────────────── */
.msig-send-btn {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #8020c0, #4060e8);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s, transform 0.1s;
  letter-spacing: 0.03em;
}
.msig-send-btn:hover { opacity: 0.92; transform: translateY(-1px); }
.msig-send-btn:active { transform: translateY(0); }
.msig-send-btn-arrow { font-size: 18px; }

/* ── 高度なオプション（折りたたみ） ─────────────── */
.msig-send-advanced {
  border: 1.5px solid #e8e0ef;
  border-radius: 10px;
  overflow: hidden;
}
.msig-send-advanced-toggle {
  padding: 9px 13px;
  font-size: 12px;
  color: #7050a0;
  cursor: pointer;
  user-select: none;
  list-style: none;
  background: #f8f0ff;
  font-weight: 600;
}
.msig-send-advanced-toggle::-webkit-details-marker { display: none; }
.msig-send-advanced-body {
  padding: 12px 14px;
  background: #fff;
}
.msig-send-adv-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.msig-send-adv-label { font-size: 13px; color: #555; }
.msig-send-adv-file-btn {
  display: inline-block;
  padding: 7px 14px;
  background: linear-gradient(90deg, #e8f0ff, #f0e8ff);
  border: 1.5px solid #c0b0e0;
  border-radius: 8px;
  font-size: 12px;
  color: #5030a0;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.msig-send-adv-file-btn:hover { background: linear-gradient(90deg, #d8e8ff, #e8d8ff); }
.msig-send-adv-filename {
  font-size: 12px;
  color: #aaa;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════
   Transaction History — Modern Card UI
   ═══════════════════════════════════════════════════ */

/* カード本体 */
.txh-card {
  background: rgba(255,255,255,0.75);
  border-radius: 12px;
  border-left: 4px solid #9060e0;
  box-shadow: 0 2px 10px rgba(80,40,160,0.10);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, background 0.2s;
  width: 100%;           /* 親コンテナの幅に収める */
  box-sizing: border-box;
}
.txh-card:hover {
  background: rgba(255,255,255,0.90);
  box-shadow: 0 4px 18px rgba(80,40,160,0.18);
}

/* TX種別ごとの左ボーダー色 */
.txh-card[data-type="transfer-out"]  { border-left-color: #e04040; }
.txh-card[data-type="transfer-in"]   { border-left-color: #20b060; }
.txh-card[data-type="aggregate"]     { border-left-color: #d08000; }
.txh-card[data-type="namespace"]     { border-left-color: #0090c0; }
.txh-card[data-type="mosaic"]        { border-left-color: #9000c0; }
.txh-card[data-type="hashlock"]      { border-left-color: #808080; }
.txh-card[data-type="other"]         { border-left-color: #a0a0a0; }

/* ヘッダーバー（種別バッジ + 日時 + Infoボタン） */
.txh-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 8px;
  background: rgba(248,245,255,0.5);
  border-bottom: 1px solid rgba(240,234,252,0.8);
  gap: 8px;
  flex-wrap: wrap;
}
.txh-card-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* TX種別バッジ */
.txh-type-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(90deg, #ede0ff, #dbeeff);
  color: #5020a0;
  border: 1px solid #c8aaf0;
}
.txh-type-badge.transfer-out { background: linear-gradient(90deg, #ffe0e0, #fff0e0); color: #a02020; border-color: #f0b0b0; }
.txh-type-badge.transfer-in  { background: linear-gradient(90deg, #e0ffe8, #e8ffe0); color: #006030; border-color: #90d0a0; }
.txh-type-badge.aggregate    { background: linear-gradient(90deg, #fff8e0, #ffefd0); color: #7a5000; border-color: #e0c060; }
.txh-type-badge.namespace    { background: linear-gradient(90deg, #e0f4ff, #dbeeff); color: #005580; border-color: #80c0e0; }
.txh-type-badge.mosaic       { background: linear-gradient(90deg, #f0e0ff, #ffe0f8); color: #6000a0; border-color: #c080e0; }
.txh-type-badge.hashlock     { background: #f0f0f0;                                  color: #666;    border-color: #ccc; }

/* 日時 + Infoリンク */
.txh-card-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.txh-date {
  font-size: 12px;
  font-family: 'Courier New', monospace;
  color: #7050a0;
  white-space: nowrap;
}
.txh-info-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #5050c0;
  background: linear-gradient(90deg, #eeeaff, #e8f0ff);
  border: 1px solid #c0c0f0;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.txh-info-link:hover { background: linear-gradient(90deg, #e0daff, #d8e8ff); }

/* カード本文 */
.txh-body {
  padding: 10px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* アドレス行 */
.txh-address-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #334;
}
.txh-address-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #998;
  min-width: 36px;
}
.txh-address-mono {
  font-family: 'Courier New', monospace;
  font-size: 11.5px;
  color: #334;
  word-break: break-all;
  flex: 1;
}
.txh-copy-btn {
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.15s;
  flex-shrink: 0;
}
.txh-copy-btn:hover { opacity: 0.9; }

/* 金額 / モザイク */
.txh-amount-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}
.txh-amount-row.send { color: #c02020; }
.txh-amount-row.recv { color: #207040; }
.txh-amount-label { font-size: 10px; font-weight: 700; text-transform: uppercase; color: inherit; opacity: 0.7; }
.txh-amount-value { font-size: 15px; font-weight: 800; letter-spacing: 0.02em; }
.txh-mosaic-name  { font-size: 12px; opacity: 0.75; }

/* メッセージ */
.txh-message {
  margin-top: 6px;
  padding: 6px 10px;
  background: #f8f4ff;
  border-left: 3px solid #c090f0;
  border-radius: 6px;
  font-size: 12px;
  color: #503080;
  line-height: 1.6;
  word-break: break-all;
}
.txh-message-enc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  background: linear-gradient(90deg, #ffe0ff, #f0e0ff);
  color: #8000a0;
  border: 1px solid #e090f0;
  cursor: pointer;
}
.txh-message-enc:hover { background: linear-gradient(90deg, #ffd0ff, #e8d0ff); }

/* Aggregate 内部Txリスト */
.txh-inner-list {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.txh-inner-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(240,235,255,0.6);
  font-size: 12px;
  color: #504020;
  word-break: break-all;
  flex-wrap: wrap;
  line-height: 1.5;
}
.txh-inner-item.send {
  background: linear-gradient(90deg, rgba(255,235,235,0.8), rgba(255,245,235,0.8));
  color: #802020;
  border-left: 3px solid #e04040;
  font-weight: 600;
}
.txh-inner-item.recv {
  background: linear-gradient(90deg, rgba(235,255,240,0.8), rgba(235,255,250,0.8));
  color: #205030;
  border-left: 3px solid #20b060;
  font-weight: 600;
}
.txh-inner-item.other {
  background: rgba(240,240,245,0.7);
  color: #555;
  border-left: 3px solid #aaa;
  font-style: italic;
}

/* 復号ボタン */
.txh-decrypt-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(90deg, #f0e8ff, #e8f0ff);
  border: 1px solid #c0b0f0;
  color: #5020a0;
  cursor: pointer;
  transition: background 0.15s;
}
.txh-decrypt-btn:hover { background: linear-gradient(90deg, #e8d8ff, #d8e8ff); }

/* ── Aggregate アコーディオン ───────────────────── */
.txh-agg-details {
  margin-top: 6px;
  border-radius: 10px;
  overflow: hidden;
}
.txh-agg-summary {
  list-style: none;
  cursor: pointer;
  padding: 7px 12px;
  border-radius: 10px;
  background: linear-gradient(90deg, #fff8e8, #fdf0d0);
  border: 1.5px solid #e8c060;
  color: #7a5000;
  font-size: 12px;
  font-weight: 700;
  user-select: none;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.txh-agg-summary::-webkit-details-marker { display: none; }
.txh-agg-summary::before {
  content: '▶';
  font-size: 10px;
  transition: transform 0.2s;
  display: inline-block;
}
.txh-agg-details[open] > .txh-agg-summary::before {
  transform: rotate(90deg);
}
.txh-agg-details[open] > .txh-agg-summary {
  border-radius: 10px 10px 0 0;
  background: linear-gradient(90deg, #fff0c0, #ffe8a0);
}
.txh-agg-details[open] > .txh-inner-list {
  border: 1.5px solid #e8c060;
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 6px;
  background: rgba(255,252,240,0.6);
}

/* Aggregate NFT area (accordion外、常に表示) */
.txh-agg-nft-area {
  margin: 6px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

/* NFT画像コンテナ (センタリング) */
.txh-nft-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0;
}

/* Aggregate メッセージエリア (accordion外、常に表示) */
.txh-agg-msg-area {
  margin: 4px 0;
}
.txh-agg-msg-item {
  background: rgba(245,245,220,0.85);
  border-left: 3px solid #c0a060;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  color: #5a4010;
  font-style: italic;
  margin-bottom: 4px;
  word-break: break-all;
}

/* ══════════════════════════════════════════════════
   カスタム モザイク ドロップダウン（サムネイル付き）
   ══════════════════════════════════════════════════ */

.cmd-wrapper {
  position: relative;
  display: inline-block;
  min-width: 220px;
  max-width: 100%;
  font-size: 14px;
  user-select: none;
  -webkit-user-select: none;
}

.cmd-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(120,100,220,0.35);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s;
  min-height: 40px;
  box-shadow: 0 2px 6px rgba(80,60,180,0.07);
}

.cmd-trigger:hover {
  border-color: rgba(124,58,237,0.65);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.10);
}

.cmd-trigger.open {
  border-color: rgba(124,58,237,0.75);
  border-radius: 10px 10px 0 0;
}

.cmd-trigger-thumb {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  display: none;
}

.cmd-trigger-text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #2f4f4f;
  font-size: 13px;
}

.cmd-arrow {
  flex-shrink: 0;
  display: inline-block;
  font-size: 10px;
  color: rgba(80,70,120,0.6);
  transition: transform 0.25s;
}

.cmd-trigger.open .cmd-arrow {
  transform: rotate(180deg);
}

.cmd-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(124,58,237,0.35);
  border-top: none;
  border-radius: 0 0 12px 12px;
  max-height: 320px;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(80,40,180,0.18);
}

.cmd-list.open {
  display: block;
}

.cmd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(120,100,220,0.06);
}

.cmd-item:last-child {
  border-bottom: none;
}

.cmd-item:hover {
  background: rgba(124,58,237,0.08);
}

.cmd-item.selected {
  background: rgba(124,58,237,0.13);
}

.cmd-item-thumb {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 7px;
  flex-shrink: 0;
  background: rgba(120,100,220,0.08);
  display: none;
}

.cmd-item-thumb.loaded {
  display: block;
}

.cmd-item-placeholder {
  width: 38px;
  height: 38px;
  border-radius: 7px;
  flex-shrink: 0;
  border: 1.5px dashed rgba(120,100,220,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(120,100,220,0.3);
}

.cmd-item-text {
  flex: 1;
  font-size: 13px;
  color: #2f4f4f;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cmd-hidden-select {
  display: none !important;
}

