/* 全体のcss */
body {
    margin: 0;
}
.top-header{
    background-color: #567e90;
}
.header-title:before {
    content: url(../img/logo.svg);
    vertical-align: middle;
    display: inline-block;
    margin: 5px;
    height: 50px;
}
.header-title {
    font-size: 20px;
    color:#f9f9f9;
}
/* 切り替えたぶのcss */
.view {
    margin: 50px;
}
.table {
    color: #808080;
    max-width: 328px;
    display: flex;
    justify-content: space-between;
}
.tab {
    padding: 10px;
    width: 50%;;
    cursor: pointer;
}
.active {
    color: #f9f9f9;
    background: #567e90;
    border-radius: 10px 10px 0 0;
}
.tab-contents-item {
    display: none;
}
.tab-contents-item.show {
    display: block;
}
hr {
    margin: 0px;
}
/* 入力エリアのcss */
.input-frame {
    margin-top: 20px;
}
.textlines {
    border: 2px solid #567e90;
    border-radius: 0.67em;
    width: 100%;
    height: 400px;
    resize: none;
    line-height: 1.2;
}
button {
    border: 0;
    border-radius: 5px;
    background: #567e90;
    color: #fff;
    padding: 8px 16px;
    font-size: 25px;
    cursor: pointer;
    margin: 10px 0;
}
#DLC {
    display: none;
}
a {
    text-decoration: none;
    color: #fff;
    display: block;
}
.attention {
    color: red;
}