@charset "utf-8";
/*============================================
スライドショー（PC版）
============================================*/
@media screen and (min-width:641px) {

div#dialog {
    display: flex;
    align-items: flex-start;
    margin:5px 0px;
    align-items: center;
}

div#dialog img {
    object-fit: contain;
}

div#dialog p {
    margin:5px;
    text-indent: 0em;
}

div#question {
    width:830px;
    margin:10px;
    border: dotted 5px #ffd700;
    text-align: center;
}

div#question p {
    width:810px;
    text-indent: 0em;
}

div#question p#questiontitle {
    font-size: 120%;
    font-weight: bold;
    width:810px;
    text-indent: 0em;
}
}

/*============================================
スライドショー（モバイル版）
============================================*/
@media screen and (max-width:640px) {

div#dialog {
    display: flex;
    align-items: flex-start;
    align-items: center;
}

div#dialog img {
    object-fit: contain;
}

div#dialog p {
    margin:5px;
    text-indent: 0em;
}

div#question {
    width:98%;
    margin:10px 0px;
    border: dotted 5px #ffd700;
    text-align: center;
}

div#question p {
    width:100%;
    text-indent: 0em;
}

div#question p#questiontitle {
    font-size: 120%;
    font-weight: bold;
    width:100%;
    text-indent: 0em;
}

}