*, *:before, *:after {
    box-sizing: border-box;
}


/* --------------------------------------------------------------------------
    CSS変数の定義
-----------------------------------------------------------------------------*/
:root {
    --main-color: #fff; /* デフォルトの色 */
    --sub-color: #023A64;
    --padding-value: 0.5em;
    --text-size: 12px;
    --dark-bgcolor: #15202b;
}


/* --------------------------------------------------------------------------
    CSSの定義(被HTMLアイテム)
-----------------------------------------------------------------------------*/


/* ディスプレイ用のスタイル */
html {
    font-size: 12px;
    -webkit-print-color-adjust: exact;
}


/* 見出し要素 */
h1, h2, h3, h4, h5, h6 {
    padding-top: var(--padding-value);
    padding-bottom: var(--padding-value);
    padding-left: 1rem;
    color:#FFFFFF;
/*    filter: drop-shadow(0.5em 0.5em 2px #aaaaaa);*/
}

/* メイン */
main {
    padding : 20px;
    background-color: #ffffff;
}


/* MarkDown入力部 */
textarea {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    Height: 850px;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 12px;
    outline: none;
    resize: vertical;
    font-family: "MS Gothic", "MSゴシック", sans-serif !important;
}


/* 引用符 */
blockquote {
    padding: .25em 0 .25em .75em;
    border-left: 3px solid #789;
}


/* 整形済みテキスト */
pre {
    font-size: 12px;
    color: #2F4F4F;
    background-color: #F5F5F5;
    border-radius: 3px;
    padding: 12px;
    font-family: var(--main-font);
}


/* リスト */
li {
    /*list-style: none;*/
}


/* カラーピッカー */
input[type="color"] {
    width: 140px;
    height: 25px;
    vertical-align: -7px;
/*    border: none;*/
    background: none;
}


/* コード表示部分 */
code {
    font-family: "MS Gothic", "MSゴシック", sans-serif !important;
}


/* --------------------------------------------------------------------------
    CSSの定義(被ID、クラスアイテム)
-----------------------------------------------------------------------------*/

/* ロゴ */
#Logo {
    padding-left: 10px;
}


/* ヘルプヘッダー */
#HelpHeader {
   /*padding-bottom : 30px;*/
    margin-bottom : 30px;
}

#map { 
    height: 300px; 
}


/* コード表示タグ */
div.language-tag {
    background-color: #789;
    color:#ffffff;
    padding: 5px;
    border-radius: 7px;
    margin-bottom: 5px;
}


/* スタイル画面 */
.settingItem {
    margin-top: 7px;
}


/* 左空白のみ */
.left-alignment {
    padding-left: var(--text-size);
}


/* 下空白のみ */
.bottom-alignment {
    padding-bottom: var(--text-size);
}


/* 上空白のみ */
.top-alignment {
    margin-top: var(--text-size);
}


p.explain{
    color: #aaaaaa !important;
}


/* 上下左右 */
.Item {
    padding-top: var(--text-size);
    padding-left: var(--text-size);
    padding-bottom: var(--text-size);
    margin-right: var(--text-size);
}


/* 目次 */
#box {
    width: 100%;
    height: 150px;
    padding: 20px;
    border: none;
    background-color: rgb(210, 232, 247);
    box-sizing: border-box;
}

/* Box */
#box li {
    margin-top: 2px;
    margin-left: 30px;
}


/* 付箋の本文 */
.sticky-note-body {
    outline: none;
    text-align: left;
}


/* --------------------------------------------------------------------------
    フォントフェイスの定義
-----------------------------------------------------------------------------*/


/* ヒラギノ角ゴ　Pro　W3 */
@font-face {
    font-family: 'HiGothic-local';
    font-style: normal;
    src: local("ヒラギノ角ゴ Pro W3"), local("Hiragino Kaku Gothic Pro");
}


/* 游ゴシック Medium */
@font-face {
    font-family: 'YuGothic-local';
    font-style: normal;
    src: local("游ゴシック Medium"), local("Yu Gothic Medium"), local("游ゴシック体"), local("YuGothic");
}


/* MS Pゴシック */
@font-face {
    font-family: 'MSGothic-local';
    font-style: normal;
    src: local("ＭＳ Ｐゴシック"), local("MS PGothic");
}


/* メイリオ */
@font-face {
    font-family: 'SansJP-local';
    font-style: normal;
    src: local("メイリオ"), local(Meiryo), local(Osaka) ;
}


/* BIZ UDP Gothic */
@font-face {
	font-family: 'BIZ-UDP-Gothic';
	src: url(../font/BIZ_UDPGothic/BIZUDPGothic-Regular.ttf);
}


/* IBM PLEX SANS JP */
@font-face {
	font-family: 'IBM-PLEX-SANS-JP';
	src: url(../font/IBM_Plex_Sans_JP/IBMPlexSansJP-Regular.ttf);
}


/* Kosugi Maru */
@font-face {
	font-family: 'Kosugi-Maru';
	src: url(../font/Kosugi_Maru/KosugiMaru-Regular.ttf);
}


/* M Plus Rounded 1 C */
@font-face {
	font-family: 'MPLUS-Rounded1C';
	src: url(../font/M_PLUS_Rounded_1c/MPLUSRounded1c-Regular.ttf);
}


/* NotoSans JP */
@font-face {
	font-family: 'NotoSansJP';
	src: url(../font/Noto_Sans_JP/NotoSansJP-VariableFont_wght.ttf);
}


/* --------------------------------------------------------------------------
    クエリの定義
-----------------------------------------------------------------------------*/


/* 印刷時クエリ */
@media print {
    .hideInPrint {
        display: none;
    }
    .main {
		padding: 0px;
	}
    hr.page-break {
        break-before: page;
    }
}


/* 印刷時指定 */
@page {
	size: A4 portrait;
	margin: 0;
}


/* --------------------------------------------------------------------------
    アニメーションの定義
-----------------------------------------------------------------------------*/


/* フェードイン */
.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
    opacity: 0.0;
}
    
@keyframes fadeInAnime{
    from {
        opacity: 0.0;
    }
    
    to {
        opacity: 1.0;
    }
}


/* フェードアウト */
.fadeOut {
    animation-name: fadeOutAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 1.0;
}
    
@keyframes fadeOutAnime{
    from {
        opacity: 1.0;
    }
    
    to {
        opacity: 0.0;
    }
}


/*ローディング*/
.Loading {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 0px !important;
  }
