

.img_wrap{
}
.img_wrap:hover{

  box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
  border: 1px solid gray;
  transform: translateY(-1px);
}

.framelabel {
    display: block; /* ブロックレベル要素化する */
    float: left; /* 要素の左寄せ・回り込を指定する */
    margin: 5px; /* ボックス外側の余白を指定する */
    font-size:25px;
    line-height: 40px; /* 行の高さを指定する */
    width: 145px; /* ボックスの横幅を指定する */
    height: 40px; /* ボックスの高さを指定する */
    padding-left: 5px; /* ボックス内左側の余白を指定する */
    padding-right: 5px; /* ボックス内御右側の余白を指定する */
    color: dodgerblue; /* フォントの色を指定 */
    text-align: center; /* テキストのセンタリングを指定する */
    cursor: pointer; /* マウスカーソルの形（リンクカーソル）を指定する */
    border: 2px solid dodgerblue; /* ボックスの境界線を実線で指定する */
    border-radius: 5px; /* 角丸を指定する */
    white-space: nowrap;
}
input[type="radio"]:checked + .framelabel {
background: dodgerblue;/* マウス選択時の背景色を指定する */
color: #ffffff; /* マウス選択時のフォント色を指定する */
}

.framelabel2 {
    display: block; /* ブロックレベル要素化する */
    float: left; /* 要素の左寄せ・回り込を指定する */
    margin: 10px; 5px; 0px; 5px; /* ボックス外側の余白を指定する */
    font-size:25px;
    line-height: 40px; /* 行の高さを指定する */
    width: 110px; /* ボックスの横幅を指定する */
    height: 50px; /* ボックスの高さを指定する */
    padding-top: 10px; /* ボックス内左側の余白を指定する */
    padding-left: 5px; /* ボックス内左側の余白を指定する */
    padding-right: 5px; /* ボックス内御右側の余白を指定する */
    color: green; /* フォントの色を指定 */
    text-align: center; /* テキストのセンタリングを指定する */
    cursor: pointer; /* マウスカーソルの形（リンクカーソル）を指定する */
    border: 2px solid green; /* ボックスの境界線を実線で指定する */
    border-radius: 5px; /* 角丸を指定する */
    white-space: nowrap;
}
input[type="radio"]:checked + .framelabel2 {
background: green;/* マウス選択時の背景色を指定する */
color: #ffffff; /* マウス選択時のフォント色を指定する */
}

.framelabel-lang {
    display: block; /* ブロックレベル要素化する */
    float: left; /* 要素の左寄せ・回り込を指定する */
    /* margin: 5px; ボックス外側の余白を指定する */
    font-size:32px;
    line-height: 56px; /* 行の高さを指定する */
    width: 100%; /* ボックスの横幅を指定する */
    height: 56px; /* ボックスの高さを指定する */
    /* padding-left: 5px; ボックス内左側の余白を指定する */
    /* padding-right: 5px; ボックス内御右側の余白を指定する */
    padding: 5px 0px;
    color: Maroon; /* フォントの色を指定 */
    text-align: center; /* テキストのセンタリングを指定する */
    cursor: pointer; /* マウスカーソルの形（リンクカーソル）を指定する */
    border: 2px solid Maroon; /* ボックスの境界線を実線で指定する */
    border-radius: 5px; /* 角丸を指定する */
    white-space: nowrap;
}
input[type="radio"]:checked + .framelabel-lang {
background: Maroon;/* マウス選択時の背景色を指定する */
color: #ffffff; /* マウス選択時のフォント色を指定する */
}








/* ボタンスタイル解除 */
input[type="submit"],
input[type="button"]
{
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;

}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/* 標準ボタンスタイル設定 */
input[type="button"], input[type="submit"], input[type="image"],.rbutton {
    font-family: ＭＳ Ｐゴシック,ヒラギノ角ゴ ProN;
    cursor: pointer; /* マウスカーソルの形（リンクカーソル）を指定する */
    line-height:100px;
    font-size:55px;
    color: white;
    background-color: Maroon;
    border-radius: 10px;
}



















input[type=range] {
  -webkit-appearance: none;
  margin: 0;
  width: 100%;
}
input[type=range]:focus {
  outline: none;
}

/* WebKit・Blink向け 溝のスタイル */
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 12px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: #cccccc;
  border-radius: 1.3px;
  border: 1px solid #010101;
}
/* WebKit・Blink向け つまみのスタイル */
input[type=range]::-webkit-slider-thumb {

  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 46px;
  width: 46px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
  /* 以下は つまみの縦位置調整 */
  margin-top: -18px;  /* (つまみの高さ - トラックの高さ) / 2 。つまみの高さは border を含む */	

}


/* 何故か上の margin-top 指定が Edge に効いてしまうので、Edge向けに設定をリセット */
@supports (-ms-ime-align: auto) {
	input[type=range]::-webkit-slider-thumb {
		margin-top: 0 !important;
	}
}

/* WebKit・Blink向け focus時のスタイル */
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #999999;
}

/* Firefox向け 溝のスタイル */
input[type=range]::-moz-range-track {
  width: 100%;
  height: 12px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: #cccccc;
  border-radius: 1.3px;
  border: 0.2px solid #010101;
}
/* Firefox向け つまみのスタイル */
input[type=range]::-moz-range-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}

/* Edge・IE向け 溝のスタイル */
input[type=range]::-ms-track {
  width: 100%;
  height: 12px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}
/* Edge・IE向け 溝の色（つまみより左側） */
input[type=range]::-ms-fill-lower {
  background: #cccccc;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
/* Edge・IE向け 溝の色（つまみより右側） */
input[type=range]::-ms-fill-upper {
  background: #cccccc;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
/* Edge・IE向け つまみのスタイル */
input[type=range]::-ms-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}
/* Edge・IE向け focus時の色（つまみより左側） */
input[type=range]:focus::-ms-fill-lower {
  background: #999999;
}
/* Edge・IE向け focus時の色（つまみより右側） */
input[type=range]:focus::-ms-fill-upper {
  background: #999999;
}

/* Edge・IE向け ポップアップを非表示に */
input[type=range]::-ms-tooltip {
  display: none;
}



/* Radioボタンスタイル */
input[type="radio"] {
   -webkit-transform: scale(3);
   transform: scale(3);
   margin-left:34px;
   margin-right:26px;
   margin-top:24px;
   vertical-align:middle;
}

input[type="checkbox"]{
   -webkit-transform: scale(3);
   transform: scale(3);
   margin-left:34px;
   margin-right:26px;
   margin-top:24px;
   vertical-align:middle;
}

.radiocheckboxspan {
    line-height:50px;
    font-size:56px;
    vertical-align:top;
    margin-top:2px;
    display:inline-block;
}

.penbutton {
display:inline-block;
border: none;
cursor: pointer;
color: white; 
border-radius: 5px;
background: dimgray;
padding: 3px;
font-size:34px;
font-size:60px;
line-height:60px;
}




.canvas_f {

border:solid 2px gray;
background-color:#F5F5FA;


}





html, body {
    line-height: 135%; /*user-select: none;*/
}

body, ul, li {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

body{
}

@media screen and (min-width: 1000px) and (max-device-width: 5000px) {
    body {
    }
}

@media screen and (min-width: 0px) and (max-device-width: 999px) {
    body {
    }
}


body, td, div, li {
    font-family: ＭＳ Ｐゴシック,ヒラギノ角ゴ ProN;
}

li {
    line-height: 100%;
}

table {
    text-align: left;
}

.system_bodybackground {
    background-repeat: repeat-x;
}


.system_toptext, .system_toptext:hover {
    color: White;
    padding: 0px 4px 0px 4px;
    vertical-align: middle;
    line-height: 150%;
}

.system_head {
    color: navy;
    text-align: right;
    padding-right: 5px;
    border-top: solid 1px darkgray;
    border-left: solid 1px darkgray;
    border-right: solid 1px darkgray;
    background-color: gainsboro;
    line-height: 20px;
}

    .system_head a {
        background-color: #333333;
        color: white;
        border-right: solid 1px darkgray;
        border-left: solid 1px darkgray;
        text-align: center;
        height: 20px;
        width: 96px;
        display: inline-block;
        text-decoration: none;
    }

        .system_head a:hover {
            text-decoration: underline;
        }


    .system_head a {
        padding: 0px 5px;
    }

.system_foot {
    color: white;
    text-decoration: none;
}

.page_main, .itemize_title, .itemize_body, .system_head, .system_foot {
    line-height: 20px;
}

.itemize_title {
}

.itemize_title, .itemize_body {
    padding: 0px 2px 2px 0px;
}

.ulgroup .lihmenu {
}

.lihmenu {
    list-style-type: none;
    display: inline-block;
    vertical-align: middle;
}

.table_outline {
    background-color: #cccccc;
    color: #111111;
    line-height: 16px;
}

.table_top {
    background-color: #bbddff;
    color: #111111;
    text-align: center;
    height: 18px;
    padding: 2px 4px;
    vertical-align: middle;
    white-space: nowrap;
}

.table_left {
    background-color: #ddeeff;
    color: #111111;
    text-align: left;
    height: 18px;
    padding: 2px 4px;
    vertical-align: middle;
    white-space: nowrap;
}

.table_cell {
    background-color: white;
    color: #111111;
    vertical-align: middle;
    height: 18px;
    padding: 2px 4px;
}

input, select, textarea, label {
    margin: 3px 0px;
    padding: 2px 0px;
    
    font-family: ＭＳ Ｐゴシック,ヒラギノ角ゴ ProN;
}

select {
    background: transparent;
    position: relative;
    padding: 1px 1px 1px 10px;
    border: 1px solid dimgray;
}

    select::-ms-expand {
        margin-right: 0px;
    }





.input_label {
    padding: 2px 0px 0px 8px;
    height: 19px;
    margin: 0px 2px 0px 0px;
    text-align: left;
    white-space: nowrap;
    border-top: solid 1px #dddddd;
    border-right: solid 1px #aabbf7;
    border-bottom: solid 1px #aabbf7;
    border-left: solid 1px #dddddd;
    background-color: #ddeef7;
    color: Navy;
}

a {
    color: navy;
}

    a:link {
    }

    a:visited {
    }

    a:active {
        color: red;
    }

    a:hover {
        color: red;
        text-decoration: underline;
    }

.whitelink {
    color: white;
    text-decoration: none;
}

a.whitelink:hover {
    color: white;
    background-color: Transparent;
}

a.whitelink:active {
    color: white;
    background-color: Transparent;
}

.smalllink {
    text-decoration: none;
}

    .smalllink:hover {
        text-decoration: underline;
    }

a.visitlink:visited {
    color: Purple;
}

.minitext {
    color: Gray;
}

.grid_table {
    border-width: 1px 1px 1px 1px;
    border-style: solid;
    border-color: #ccc;
}

.grid_row {
    padding: 0px;
    height: 50px;
    line-height: 22px;
}


.grid_td {
    vertical-align: top;
    border-top: 1px solid #ddddcc;
    border-right: 1px solid #ccccaa;
    border-bottom: 1px solid #ccccaa;
    border-left: 1px solid #ddddcc;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    height: 100%;
}

#mobilemenu {
}

    #mobilemenu li {
        position: relative;
        float: left;
        width: 200px;
        height: 50px;
    }

        #mobilemenu li div.hovermenu {
            overflow: hidden;
            height: 0px;
        }

        #mobilemenu li:hover > div.hovermenu {
            overflow: visible;
            height: auto;
        }


/*@media (min-width: 1800px) {
    td {
        font-size: 90px;
    }
}*/

@media print {
    body {
    }
}

@media screen {
    body {
    }

    .printonly {
        display: none;
        visibility: hidden;
    }
}

/*@media (min-width: 1600px) {
    td {
        font-size: 30px;
    }
}*/

input::placeholder {
  color: #d0d0d0;
}