<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */
/* みんなの知識ちょっと便利帳 */
/* 文字列変換ツール */
/* https://www.benricho.org/moji_conv/string-converter/ */
/*  2052/06/08*/

	html, body {
	  margin: 0;
	  padding: 0;
	}
    #string-tool * {
      box-sizing: border-box;
      font-family: sans-serif;
    }
    #string-tool {
      padding: 20px 20px 0 20px;
      background-color: #eef6fc;
      color: #003366;
      max-width: 800px;
      margin: auto;
      border: 1px solid #99c;
      border-radius: 8px;
    }
	#inputText{
	font-weight: 600;
	background-color:#FFFCDE;
	border-radius: 5px;
	}
    @media (prefers-color-scheme: dark) {
      .string-tool {
        background-color: #1e1e2f;
        color: #eee;
      }
      .string-tool pre {
        background-color: #333;
      }
    }
    #string-tool .section {
      margin-bottom: 25px;
    }
    #string-tool label {
      font-weight: bold;
      display: block;
      margin-bottom: 5px;
    }
    #string-tool textarea{
      width: 100%;
      min-height: 100px;
      resize: none;
      padding: 2px 8px 8px 8px;
      font-size: 1em;
      margin-bottom: 8px;
    }
    #string-tool input[type="text"] {
      width: 100%;
      min-height: 100px;
      resize: none;
      padding: 2px 8px 8px 8px;
      font-size: 1em;
      margin-bottom: 8px;
    }    
    #string-tool pre {
      padding: 10px;
      background: #f0f8ff;
      white-space: pre-wrap;
      overflow-x: auto;
    }
    #string-tool .desc {
      font-size: 0.9em;
      color: #555;
      margin: 0 0 3px 20px;
    }
	#string-tool .desc-example {
	  font-size: 0.9em;
	  color: #555;
	  margin: 0 0 3px 30px;
	  word-wrap: break-word;        /* 古いブラウザ用も含めて */
	  overflow-wrap: break-word;    /* 標準プロパティ */
	  word-break: break-all;        /* 必要なら1文字ずつでも折り返す */
	}
    #string-tool .desc-qr {
      font-size: 14px;
      color: #555;
      margin: 0 0 0 25px;
    }    
    #string-tool button {
      margin-right: 5px;
      margin-top: 0px;
      background-color: #337ab7; /* 変換ボタン: 青系 */
      color: white;
      border: none;
      padding: 6px 12px;
      border-radius: 4px;
      cursor: pointer;
    }
    #string-tool button:hover {
      background-color: #286090;
    }
    /* リセット・クリアボタン用の赤系スタイル */
    #string-tool .reset-button {
      background-color: #c9302c; /* 落ち着いた赤 */
    }
    #string-tool .reset-button:hover {
      background-color: #ac2925;
    }
    #string-tool .output-container {
      position: relative;
      border: 1px solid #99c;
      padding: 0 10px 10px;
      border-radius: 5px;
      background-color: #fff;
    }
    #string-tool .output-container-base64 {
      position: relative;
      border: 1px solid #99c;
      margin-top: 7px;
      padding: 0 10px 10px;
      border-radius: 5px;
      background-color: #fff;
    }  
    #string-tool .output-container-qr {
      position: relative;
      border: 1px solid #99c;
      padding: 10px 10px 10px;
      border-radius: 5px;
      background-color: #fff;
    }    
    #qrCanvas {
      margin: 15px 0 0 25px;
      border: 1px solid #ccc;
      background-color: white;
    }
    html {
      scroll-behavior: smooth;
    }
    #navigation {
    font-size: 15px;
      background-color: #f9f9f9;
      margin-top: 15px;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    #navigation a {
      margin-right: 10px;
      text-decoration: none;
      color: #007BFF;
    }
    #navigation a:hover {
      text-decoration: underline;
    }
    #string-tool .section {
    position: relative;
    margin: 20px auto;
    }
    #string-tool .counter {
    display: block;
    text-align: right;
    font-size: 14px;
    color: #555;
    background-color: #f5f5f5;
	margin-top: 0;
    padding: 2px 6px;
    border-radius: 4px;
    }
    #string-tool .subtitle{font-size:22px;font-weight:700;text-align:center;margin:0 5px 5px;padding:13px 0 15px 0;background-color:#2990FF;border-radius:8px;color:#fff}
    .qr-note{
    font-size: 12px;
    text-align: right;
    margin: 0 5px 0 0;
    }
    .qr-note02{
    font-size: 0.9em;
    font-weight: normal;
    margin-left: 5px;
    }
    .qr-text-display {
      padding: 6px;
      margin: 0 0 5px 15px;
      background-color: #f8f8f8;
      border: 1px solid #ddd;
      white-space: pre-wrap;
      word-wrap: break-word;
    }
    .input-btnarea{
    margin: 0 0 0 10px;
    }
    .base64-btnarea{
    margin: 0 0 0 10px;
    }
	.notes{
	margin: 10px 0 0 5px;
    font-size: 12px;
    font-weight: normal;
    }
	.notes02{
	margin: 0 0 0 5px;
    font-size: 12px;
    font-weight: normal;
    }    </pre></body></html>