.container {
    background: white;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction:column;
}
.container::-webkit-scrollbar {  /* Chrome, Safari 対応 */
    display:none;
}
.stage {
    width: 100%;
    height: 100%;
    /*padding: 10px;*/
    display: flex;
    flex-direction: row;
}
.box {
    /*width: 100%;*/
    height: 30px;
    margin: 10px;
    display: flex;
    flex-direction: row;
}
/* 左側で狭い領域 */
.box1 {
    min-width: 250px;
    height: 100%;
    margin: 10px 5px 10px 10px;
    display: flex;
    flex-direction: column;
}
/* 右側で広い領域 */
.box2 {
    /*width: 100%;*/
    height: 100%;
    margin: 10px 10px 10px 5px;
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
}
.infoarea {
    /*background-color: aqua;*/
    padding: 10p;
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: column;
}
.info_row {
    width: 100%;
    display: flex;
    flex-direction: row;
}
.info_caption {
    width: 120px;
    margin-left: 10px;
}
.info_value {
    width: 100%;
}
.submit {
    width: 200px;
    border-radius: 20px;
    border-width: 1px;
    margin: 10px;
    height: 40px;
    font-size: 12pt;
}
.gridarea {
    width: 100%;
    height: 100%;
    display: flex;
    /*flex: 1 1;*/
    flex-direction: column;
}
.export {
    width: 200px;
    border-radius: 5px;
    border-width: 1px;
    margin-right: 10px;
    height: 40px;
    font-size: 12pt;
}

.pack_area {
    /*background-color: yellow;*/
    width: 200px;
    margin: 0 5px 0 0;
    display: flex;
    flex-direction: row;
}
 /* === ボタンを表示するエリア ============================== */
 .switchArea {
    line-height    : 32px;                /* 1行の高さ          */
    letter-spacing : 0;                   /* 文字間             */
    text-align     : center;              /* 文字位置は中央     */
    font-size      : 18px;                /* 文字サイズ         */
  
    position       : relative;            /* 親要素が基点       */
    margin         : auto;                /* 中央寄せ           */
    width          : 200px;               /* ボタンの横幅       */
    /*background     : #fff;                /* デフォルト背景色   */
}
  
/* === チェックボックス ==================================== */
.switchArea input[type="checkbox"] {
    display        : none;            /* チェックボックス非表示 */
}
  
   /* === チェックボックスのラベル（標準） ==================== */
.switchArea label {
    display        : block;               /* ボックス要素に変更 */
    box-sizing     : border-box;          /* 枠線を含んだサイズ */
    height         : 40px;                /* ボタンの高さ       */
    border         : 2px solid #999999;   /* 未選択タブのの枠線 */
    border-radius  : 30px;                /* 角丸               */
    background     : #fff;                /* デフォルト背景色   */
}
  
   /* === チェックボックスのラベル（ONのとき） ================ */
.switchArea input[type="checkbox"]:checked +label {
    border-color   : #78bd78;             /* 選択タブの枠線     */
}
  
   /* === 表示する文字（標準） ================================ */
.switchArea label span:after{
    content        : "オリジナル";               /* 表示する文字       */
    padding        : 0 0 0 30px;          /* 表示する位置       */
    /*color          : #78bd78;             /* 文字色             */
    color          : #999999;             /* 文字色             */
}
  
   /* === 表示する文字（ONのとき） ============================ */
.switchArea  input[type="checkbox"]:checked + label span:after{
    content        : "自治体標準ODS";     /* 表示する文字       */
    padding        : 0 30px 0 0;          /* 表示する位置       */
    color          :blue;              /* 文字色             */
}
  
   /* === 丸部分のSTYLE（標準） =============================== */
.switchArea #swImg {
    position       : absolute;            /* 親要素からの相対位置*/
    width          : 32px;                /* 丸の横幅           */
    height         : 32px;                /* 丸の高さ           */
    background     : #999999;             /* カーソルタブの背景 */
    top            : 4px;                 /* 親要素からの位置   */
    left           : 4px;                 /* 親要素からの位置   */
    border-radius  : 26px;                /* 角丸               */
    transition     : .2s;                 /* 滑らか変化         */
}
  
   /* === 丸部分のSTYLE（ONのとき） =========================== */
.switchArea input[type="checkbox"]:checked ~ #swImg {
    transform      : translateX(160px);    /* 丸も右へ移動       */
    /*background     : #78bd78;             /* カーソルタブの背景 */
    background     : blue;             /* カーソルタブの背景 */
}
