/* input(662,9): run-time error CSS1056: Expected media feature, found '800px'
input(687,9): run-time error CSS1056: Expected media feature, found '800px'
input(698,15): run-time error CSS1034: Expected closing parenthesis, found '<' */
:root{
    --color_main: #655b46; 
    --color_main_dark: #534c3d; 
    --color_main_light: #eee;
    --accent_color_main: #f69e00;
    --accent_color_sub: #41B8B6;
    --color_error: #f07466;
}
*{
    box-sizing: border-box;
}

body{
    display: block;
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 80px 0 0;
    font-weight: 500;
    font-size: 14px;
    text-align: left;
    color: #182430;
    overflow-x: hidden;
}

/* 古いバージョンからの引継ぎ */

.hidden { /* ローディングスピンのダイアログを計算中以外は非表示にする */
    display: none;
}

/* dialog関連 */
.ui-dialog{
    border-radius: .5rem;
    box-shadow: 0 2px .5rem 0 rgba(0, 0, 0, .3);
}
.ui-widget-header{
    border:none;
    background-color: transparent;
}
.ui-dialog .ui-dialog-titlebar-close{
    border-radius: 100vmax;
    background-color: #ccc;
    color: white;
}


/* ボタンなどの青枠を消す */

.uq_2407 input[type="button"],
.uq_2407 textarea,
.uq_2407 select,
.uq_2407 button {
  outline: none;
}
.uq_2407 input[type="submit"],
.uq_2407 input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  -webkit-appearance: button;
  border: none;
  border-style: none;
  box-sizing: border-box;
  cursor: pointer;
}
.uq_2407 input[type="submit"]::-webkit-search-decoration,
.uq_2407 input[type="button"]::-webkit-search-decoration {
  display: none;
}
.uq_2407 button, .uq_2407 input, .uq_2407 select, .uq_2407 textarea,
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
    font-family : inherit;
    font-size : 100%;
}

.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button, .el_btn,
.ui-widget input:focus, .ui-widget select:focus, .ui-widget textarea:focus, .ui-widget button:focus, .el_btn:focus{
    font-weight: 600;
}
.el_btn{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem 1rem;
    color: white !important;
    background-color: var(--color_main_dark);
    border-radius: .25rem;
}
.el_btn:hover{
    background-color: var(--color_main);
}
button, .ui-widget button {
    color: white;
    background-color: var(--color_main_dark);
}
button:hover, .ui-widget button:hover {
    color: white;
    background-color: var(--color_main);
    font-weight: 600;
}
.uq_2407 button,
.uq_2407 input[type="button"]{
  cursor: pointer;
  outline:0;
}
/* link */
.uq_2407 a:link { 
	color: #111;
	text-decoration:none;
}
.uq_2407 a:visited { color: #333; }
.uq_2407 a:hover { 
    color: #666;
    font-size: 600;
}
.uq_2407 a:active { color: #555; }
.uq_2407 a.alink_disabled{
    pointer-events: none;
    color: #ccc;
}

/* テキスト関係 */
.el_h2{
    margin:0;
    font-size: 1.75rem;
    font-weight: 600;
}
.el_h3{
    margin:0;
    font-size: 1.25rem;
    font-weight: 600;
    white-space: nowrap;
    color: var(--color_main_dark);
}
.el_h4{
    margin:0;
    font-size: 1rem;
    font-weight: 600;
}

.el_fukidashi{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding:.5rem 1rem;
    border-radius: .25rem;
    color:var(--color_main_dark);
    background-color: var(--accent_color_main);
    font-weight: 600;
    letter-spacing: .05em;
    position:relative;
  }
  .el_fukidashi:after{
    content:"";
    display: flex;
    width:0;
    height:0;
    margin-bottom: 1rem;
    border-top: 1rem solid  var(--accent_color_main);
    border-right: .5rem solid transparent;
    border-left: .5rem solid transparent;
    position:absolute;
    bottom: -2rem;
    left: calc(50% - .5rem);
  }
  

/* section */
.bl_whiteShadow{
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-radius: 1rem;
    background-color: white;
    box-shadow: 0 1px 6px 1px rgba(0, 0, 0, .1);
}
/* table */
.bl_list.bl_list__column{
    margin-top: .5rem;
    margin-bottom: .5rem;
    padding-inline-start: 0;
}

/* helper */
.hp_whitespace_nowrap{
    white-space: nowrap;
}
.hp_strVertical{
    writing-mode: vertical-rl;
}
.hp_borderTop__bolder{
    border-top: solid 1.5px currentColor !important;
}
.hp_borderBottom__bolder{
    border-bottom: solid 1.5px currentColor !important;
}
.el_strUnderlined{
    border-bottom: 1px solid currentColor;
}

/* header  */
.uq_2407 .bl_header{
    display: block;
    width: 100%;
    padding: 0 1rem;
    background-color: var(--color_main_dark);
    z-index: 990;
    top: 0;
    left: 0;
    position: fixed;
    overflow: hidden;
    box-shadow: 0 2px 2px 0 rgba(0,0,0, .3);
}
.uq_2407 .upper_grid{
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 1rem;
    width: 100%;
    height: 80px;
}

.uq_2407 .logo_wrapper a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 1rem;

}
.uq_2407 .logo_wrapper .main_logo{
  display:inline-flex;
  align-items: center;
  column-gap: .75rem;
  width: auto;
  height: 56px;
  font-size: 20px;
  font-weight: 500;
  font-feature-settings: "palt";
  color: white;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .7));
}

.uq_2407 .el_h1_program{
    font-size: 1.25rem;
    white-space: nowrap;
}
.uq_2407 .el_h1_building{
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: .05rem;
    white-space: nowrap;
}
.uq_2407 .el_h1_standard{
    color: white;
    font-size: 1rem;
    font-weight: 800;
    white-space: nowrap;
    border-top: 1px currentColor solid;
    border-bottom: 1px currentColor solid;
}
.uq_2407 .logo_wrapper .version{
    display: flex;
    align-items: center;
    height: 1.75rem;
    padding: 0 1rem;
    font-size: .75rem;
    font-weight: bolder;
    line-height: 1;
    color: var(--color_main_dark);
    background-color: var(--accent_color_main);
    border-radius: .2rem;
} 
.uq_2407 .bl_headerNav{
    display: flex;
    align-items: center;
    column-gap: 2rem;
}
.uq_2407 .bl_headerNav a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    column-gap: .5rem;
    color: white;

}

.uq_2407 .bl_header + main{
    max-width: 1000px;
    margin: 0 auto 2rem;
    padding: 2rem;
}

/* 使用条件許諾 */
.ui-dialog{
    width: 70vw;
    max-height: 80vh;
    font-family: inherit;
    z-index: 1000;
    top:5vh;
}
.bl_confirm.ui-dialog-content {
    max-height:calc(80vh - 10rem) !important;
    overflow-y: scroll;
}


/* サマリーセクション */
#summary {
    margin: 0 0 3rem;
}
#summary p{
    margin: 0;
}

/* アップロードセクション */
#upload {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap:1rem;
    margin-bottom: 1rem;
    padding: 2rem;
}

#upload .dropArea{ 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: .5rem;
    width: 100%;
    min-height: 20vh;
    border: 1px dotted #666; min-height: 150px;
    background-color:#fcfcfa;
    border-radius: .5rem;
    cursor: pointer;
}
#upload .dropArea div{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
#upload .dropArea div>span{
    display: flex;
}

/* 計算結果セクション */
#result{
    display: flex;
    flex-direction: column;
    column-gap: 1rem;
    margin-top: 2rem;
}
#result section{
    width: 100%;
}
#result .report{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 3rem;
}
#result .report_table_wrapper{
    border: 2px solid var(--color_main_dark);
    border-radius: .5rem;
    /* overflow: auto; */
}
#result .report_table_wrapper table{
    border-radius: .5rem;
    border-collapse: collapse;
    overflow: hidden;
}
#result .report_table_wrapper table th{
    color: var(--color_main);
}
#result .report_table_wrapper table  th,
#result .report_table_wrapper table  td{
    padding: .25rem .5rem;
    border: 1px solid #ccc;
    word-break: auto-phrase;
}
#result .report_table_wrapper table p{
    margin: 0;
} 
#result .report_table_wrapper thead th{
    background-color: #f69e0010;
}
#result .report_table_wrapper .el_total th,
#result .report_table_wrapper .el_total td{
    padding: .5rem;
    background-color: #f69e0010;
    font-weight: 600;
}
.alignC{
    text-align: center;
}
.alignR{
    text-align: right;
}
.el_parArea{
    display: inline-flex;
    justify-content: flex-end;
    min-width: 6.5em;
    text-align: right;
    white-space: nowrap;
}
.bl_hantei .el_parArea,
.bl_bei .el_parArea{
    min-width: 7em;
}
#result .report_error{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 0;
    margin: 2rem 0;
}
#result .bl_infoReports{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: .25rem;
    column-gap: 1rem;
    border-bottom: 1px solid var(--color_main_light); 
}
#result .bl_infoReports .bl_borderList td{
    border-bottom: 1px solid var(--color_main_light); 
}
#result .bl_infoReports .el_h4{
    min-width: 8rem;
    margin: .2rem 0;
    font-size: .8rem;
    line-height: 1.2;
}
#result .bl_infoReports span{
    opacity: .5;
}

#result .bl_borderList{
    width: 100%;
    border-top: 2px solid var(--color_main_dark);
    border-bottom: 2px solid var(--color_main_dark); 
}
#result .bl_infoReports .bl_borderList td{
    padding: .25rem;
}
#result .bl_infoReports .el_cathegory{
    font-size: .75rem;
    letter-spacing: -.05em;
    white-space: nowrap;
}

#result .bl_borderList table{
    width: 100%;
    border-collapse: collapse;
}
#result .bl_borderList table thead th{
    padding: 0 .5rem;
    border-bottom: 1px solid var(--color_main_dark);
    color: var(--color_main_dark);
    text-align: left;
    font-size: .7rem;
}
#result .bl_borderList table tbody td{
    padding: .5rem;
    border-bottom: 1px solid #ccc;
    font-size: .8rem;
    line-height: 1.2;
    text-align: left;
    vertical-align: baseline;
}
#result .bl_borderList table tbody td.vm{
    vertical-align: middle;
}
#result .bl_borderList table tbody td p{
    width: fit-content;
    margin:0;
}
#result .bl_borderList ul{
    padding-inline-start: 0;
    margin: 0 0 0 .75rem;
}
 

.bl_csvWrapper {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2rem;
    row-gap: .5rem;
}
.bl_csvWrapper .el_h3{
    width: 100%;
}
.bl_csvWrapper .el_btn{
    width: 15rem;
    height: 2rem;
    white-space: nowrap;
}
.bl_csvWrapper br{
    display: none;
}
#resultSummaryDialog {
    display: none;
}

#resultSummaryDialog .report_table_wrapper{
    border: 2px solid var(--color_main_dark);
    border-radius: .5rem;
}
#resultSummaryDialog .report_table_wrapper table{
    border-radius: .5rem;
    border-collapse: collapse;
    overflow: hidden;
}
#resultSummaryDialog .report_table_wrapper table th{
    color: var(--color_main);
}
#resultSummaryDialog .report_table_wrapper table  th,
#resultSummaryDialog .report_table_wrapper table  td{
    padding: .25rem 1rem;
    border: 1px solid #ccc;
}
/* PDFダウンロード時のモーダル */
#report_statux #generating_report{
    margin: auto 0;
}
#report_status .ui-dialog .ui-dialog-titlebar-close{
    display: none !important;
}
.ui-dialog .ui-dialog-titlebar-close{
    display:none !important;
}
/* アップロード時のエラーセクション */
section#error{
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    background-color: #fff4f3;
}

/* 省エネ計算結果登録システムへの連携 */

.bl_linkbox{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    column-gap: 1em;
    row-gap: 1rem;
    margin: 2rem auto;
    padding: 0;
}
.bl_linkbox a{
    margin: 0;
    line-height: 1.5;
    font-weight: bolder;
    text-align: center;
}
.bl_linkbox_textLink{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    column-gap:1rem;
    row-gap: .5rem;
}
.bl_linkbox_textLink .el_btn{
    display: flex;
    column-gap: .5rem;
    padding: .25rem 1rem;
    font-size: 1.25rem;
    color: var(--color_main_dark) !important;
    background-color: transparent;
}
.icon-chevron-double-right {
    box-sizing: border-box;
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 26px;
    height: 26px;
    color: var(--accent_color_main);
}
.icon-chevron-double-right span{
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    width: .75rem;
    height: .75rem;
    border-right: 3px solid currentColor;
    border-top: 3px solid currentColor;
    transform: rotate(45deg);
}

@keyframes arrow {
    0% {
    opacity: 0.3;
    transform: scale(.8) rotate(45deg);
    }

    25%  {
    opacity: 1;
    transform: scale(1.2) rotate(45deg);
    }

    100%  {
    opacity: 0.3;
    transform: scale(1) rotate(45deg);
    }
}
.icon-chevron-double-right span:nth-child(1){
    left:0;
    animation-delay: 0s;
}
.icon-chevron-double-right span:nth-child(2){
    left:10px;
    animation-delay: .3s;
}
.icon-chevron-double-right span:nth-child(3){
    left:20px;
    animation-delay: .6s;
}
.fail_msg{
    line-height: 1.5;
    font-weight: bolder;
    text-align: center;
}

/*
再出力ページ
*/
.pg_archive section{
    row-gap: 1rem;
}
.pg_archive .message{
    margin: 0;
}
.pg_archive .bl_tableUpload{
    width: fit-content;
    margin: 0 auto 2rem;
}
.pg_archive .bl_flexCenter{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1rem;
}

.pg_archive .bl_flexCenter .el_btn{
    width: fit-content;
}

/* 画面が狭いとき */
@media (800px <= width < 1280px) {
    .uq_2407 .logo_wrapper a{
        column-gap: .5rem;
    }
    .uq_2407 .el_h1_program{
        font-size: 1rem;
    }
    .uq_2407 .el_h1_building{
        font-size: 1.5rem;
    }
    .uq_2407 .el_h1_standard{
        font-size: .75rem;
    }
    .uq_2407 .logo_wrapper .version{
        width: fit-content;
        max-width: 7.5em;
        height:2.2em;
    }
    .uq_2407 .bl_headerNav{
        column-gap: 1rem;
    }
    .uq_2407 .bl_headerNav a{
        font-size: .75rem;
    }
}
@media (800px <= width < 1000px) {
    .uq_2407 .bl_headerNav {
        max-width: min-content;
        flex-wrap: wrap;
        align-items: flex-start;
        column-gap: 1rem;
    }
    .uq_2407 .bl_headerNav a{
        font-size: .75rem;
    } 
}
@media (width < 800px) {
    .el_parArea{
        font-size: .75rem;
    }
    .uq_2407 .logo_wrapper a{
        column-gap: .5rem;
    }
    .uq_2407 .el_h1_program{
        font-size: 1rem;
    }
    .uq_2407 .el_h1_building{
        font-size: 1.5rem;
    }
    .uq_2407 .el_h1_standard{
        font-size: .75rem;
    }
    .uq_2407 .logo_wrapper .version{
        width: fit-content;
        max-width: 7.5em;
        height:2.2em;
    }
    .uq_2407 .bl_headerNav {
        align-items: flex-start;
        flex-direction: column;
        column-gap: 1rem;
    }
    .uq_2407 .bl_headerNav a{
        font-size: .75rem;
    }
    #result .report_table_wrapper table .bl_flex__columnSp{
        display: flex;
        flex-direction: column;
    }
    
    #result .report_table_wrapper{
        overflow: auto;
    }
    #result .report_table_wrapper table  th,
    #result .report_table_wrapper table  td{
        padding: .25rem;
    }
    #result .report_table_wrapper .el_total th, #result .report_table_wrapper .el_total td {
        padding: .25rem;
    }
}