:root {
  /* 見出しテキストカラー */
  --color-theme-type: #FFFFFF;
  
  /* 見出しテキスト背景線カラー */
  --color-theme-line: #038B58;
  
  /* 背景カラー */
  --color-theme-base: #E5F0CF;
  
  /* 背景上テキストカラー */
  --color-theme-overlay-text: var(--color-text);
  
  /* PC背景オーバーレイカラー */
  --color-theme-bg-overlay: #EFF2F0;
  
  /* PC背景オーバーレイ透明度 */
  --color-theme-bg-overlay-opacity: 0.9;
  
  /* ヘッダー透明度 */
  --header-opacity: 0;
  
  /* 例）英語フォント（サンセリフの書体）を別のGoogleフォントなどに変更する場合の指定 */
  --font-sans-serif-en: "East Sea Dokdo", sans-serif;
  }
  
  
  .title-line:before,
.title-line:after {
  position: relative;
  display: inline-block;
  content: "";
  background: #33568D;
  width: 2.5px;
  height: 1.2em;
  margin: -.0.5em;
  margin-top: -.2em;
  vertical-align: middle;
}
 
.title-line:before {
  transform: rotate(-25deg);
}
 
.title-line:after {
  transform: rotate(25deg);
}

