@charset "UTF-8";

/***** 全体の幅設定 *****/
@media only screen and (min-width : 600px) {
    .c_allBody{
        width: 600px;
    }
}
            
/***** スタートページ *****/
.ci_cautions{
    text-align: center;
}
.ci_button{
    margin: 12px 0px 80px 0px;
    font-size:150%;
    border: 0;
    border-radius: 10px;
    padding: 20px 40px;
    color: white;
    background-color: #3c53d8;
}

/***** メインページ *****/
/* ナビゲーション */
.c_nav{
    text-align: right;
    padding: 4px 10px 4px 10px;
    border-radius: 6px;
    background-color: #e3f2ff;
}

/* チェックメッセージ */
.c_checkmsg{
    color:#616161;
    margin:10px 2px 2px 2px;
}

/* ログ */
.c_logsOuter{
    margin:12px 10px 0px 10px;
    text-align: center;
    overflow:scroll;
    height:84px;
}
.c_logsInner{
    text-align: center;
}
.c_logItem{
    margin: 1px;
    font-size:100%;
    border: 0;
    border-radius: 2px;
    background-color: #c6e6fa;
}

/* 入力エリア */
.c_areaAll{
    text-align: center;
    margin:10px 0px 10px 0px;
}
.c_area{
    color: darkslateblue;
    width: 90%;
    line-height: 1.8;
    font-size:150%;
    font-weight: bold;
    resize: none;
    border-radius: 6px;
    border: 3px solid #25379c;
}
/* 入力エリア下 */
.c_small{
    font-size:70%;
    color:gray;
}

/* 既定セリフ種類 */
.c_kind{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin:4px;
}
.c_kindItem{
    flex-grow: 1;
    font-size:100%;
    margin: 1px;
    color: white;
    border: 0;
    border-radius: 3px;
}

/* 既定セリフ */
.c_wordsOuter{
    margin: 10px 0px 15px 0px;
    text-align: center;
}
.c_word{
    margin: 1px;
    font-size:100%;
    border: 0;
    border-radius: 2px;
    background-color: #a8d4f1;
}

/* 速度スライダ */
.c_speed{
    display: flex;
    justify-content: center;
}
.c_sokudo{
    color:gray;
}
.c_slider{
    width: 60%;
}

input[type="range"] {
    -webkit-appearance: none;
    outline: none;
    height: 12px;
    width: 100%;
    background: #8acdff;
    border-radius: 10px;
    border: solid 4px #dff1ff;
  }

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: #4199e6;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.20);
  }

/* Q&A ページ */
.c_qaContainer dt {
    padding: 10px 10px 10px 35px;
    border-radius: 5px;
    background: #cce6ff;
    text-indent: -25px;
}
.c_qaContainer dt:before {
    content: "Q.";
    font-weight: bold;
    margin-right: 7px;
}
.c_qaContainer dd {
    margin: 15px 10px 20px 35px;
    text-indent: -25px;
}
.c_qaContainer dd:before {
    content: "A.";
    color: #1771c6;
    font-weight: bold;
    margin-right: 7px;
}

/* QRコードページ */
.cf_posters{
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin:20px;
    gap: 20px;
}
.cf_poster{
    font-size:100%;
    text-align: center;
}
.cf_text{
    margin:20px 10px 10px 10px;
    text-align: left;
    padding: 10px 10px 10px 10px;
    border-radius: 5px;
    background: #cce6ff;
}
.cf_textgap{
    margin:8px 0px 0px 0px;
}

/* フッター */
footer{
    margin: 28px 0px 0px 0px;
    padding: 8px 8px 8px 8px;
    color:#4b4b4b;
    text-align: center;
    font-size:80%;
    background: #95c6f3;
}

/* 全体 */
body{
    background-color: #effaff;
    font-family: sans-serif;
}