
*{margin:0;padding:0;box-sizing: border-box;}
body {
    font-family: "Segoe UI", Meiryo, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 100%;
    font-weight:100;
    background :#F7F7F7;
}
li{list-style-type : none;}
a{text-decoration: none;}
#base{margin:0 auto;width:90%;max-width:1200px;}
div#div_detail{width:100%;margin-bottom:4rem;}
#tbl_detail{border-collapse: collapse;width:100%;}
/*formの設定*/
form table{width:100%}

form input[type="text"], form select{
    box-sizing: border-box;
    border: 1px solid #999;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 1.2rem;
    width: 15rem;
}
button {
    width:140px;
    display:inline-block;
    font-size:18px;
    text-align:center;
    padding:10px;
    background:#47885e;
    color:#fff;
    line-height:1em;
    border:none;
    border-radius: 10px;
}
button:hover {  color:#fff;  background:#47885ec4;}

form table td{padding:5px;}
#pagetop {
    position: fixed;
    right: 10px;
    bottom: 10px;
    margin: 0;
    z-index:21;
}
#pagetop a {
    position: relative;
    display: flex;
    width: 65px;
    height: 65px;
    justify-content: center;
    background: #efa8a8;
    transition: opacity .6s ease;
    color: #FFF;
    align-items: center;
    text-decoration: none;
    border-radius: 100%;
}
#pagetop a span.mi-pagetop{font-size: 32px;}
#pagetop a:hover {  background: #d7ddab;}
.pagetop{   opacity: 0;  visibility: hidden;}
.active{    opacity: 1;  visibility: visible;}

a:link,a:visited {	color: #47885e;}
a:hover,a:focus,a:active {	color: #303030;}
h1{text-align: center;margin-bottom:2rem;}

#tbl_detail td{border:solid 1px #ccc;padding:4px;}
#tbl_detail tr:nth-child(odd){background:#ecedec;}
#tbl_detail tr:nth-child(even){background: #f1f1f1;}
#tbl_detail thead th{background:#47885e;font-weight:normal;color:#fff;border:solid 1px #ccc;}
#tbl_detail tr:hover {  background: #d7ddab;}
.w6{width:2.4rem;}
.r{text-align:right;}
hr {
    margin: 2rem 0;    padding: 0;
    border: 0;
    border-top: 1px dashed #ccc;
    height: 1em;
    text-align: center;
    overflow: visible;
}
hr::after {
    position: relative;
    color: #ccc;
    content: '\00273f';

    display: inline-block;
    height: 2em;
    line-height: 2em;
    top: -1em;
    padding: 0 0.5em;
}

.flex{display:flex;flex-flow: row wrap;justify-content: space-between;}

#tbl_detail thead th {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
  }