
/**
 *	The whole of question
 */
#yesno_wrap {
    padding: 42px 50px 58px;
    border: 1px solid #bfbfbf;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: unset;
}

#question_wrap {
	display: block;
	position: relative;
	width: 100%;
	margin-bottom: 0.5rem;
}

/**
 *	Choices block
 */
ul#choices {
	list-style: none;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 15px;
	padding: 0;
	padding-left: 0;
}
ul#choices li {
    list-style: none !important;
    margin-left: 0;
    margin: 10px 0;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    line-height: 1.7;
    display: flex;
    width: 300px;
    height: 130px;
    letter-spacing: 1.3px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    transition: 0.5s;
}
ul#choices li button {
    width: 100%;
    padding: 0.7em;
    margin-bottom: 3px;
    font-size: 1.25rem;
    border-radius: 10px;
    background: #23282d;
    color: #ffffff;
    height: 100%;
    background-color: #025c90;
    border: none;
    cursor: pointer;
	font-family:'Roboto', 'Noto Sans JP', sans-serif;
}

ul#choices li #back_button {
    width: 80% !important;
    height: 80% !important;
    font-size: 1.05rem !important;
    background-color: #808080;
}

ul#choices li #back_button:hover {
    background-color: #909090;
}

ul#choices li button:hover {
    background-color: #009dac;   
}

/**
 *	Question block
 */
.yesno_q {
	text-align: left;
	display: inline-block;
	font-size: 1.5rem;
}
.yesno_q dt {
	display: inline-block;
    vertical-align: top;
}
.yesno_q dt span {
    color: #025c90;
    font-size: 24px;
    font-weight: 400;
}

.yesno_q dd {
    display: inline-block;
    font-size: 18px;
    letter-spacing: 1.9px;
}
.yesno_q dd span {
    color: #025c90;
    font-size: 24px;
}


.yesno_q dd video {
    width: 100%
}

.yesno_q dd blockquote {
    background-color: #e8f0f5
}

.yesno_q dd h2 {
    font-size: 22px;
    font-weight: bold;
    border-bottom: 1px solid #025c90;
    padding: 10px;
    margin: 25px 0
}

.yesno_q dd h3 {
    font-size: 20px;
    font-weight: bold;
    background-color: #e8f0f5;
    border-top: 1px solid #000;
    padding: 10px;
    margin: 25px 0
}

.yesno_q dd h4 {
    font-size: 18px;
    font-weight: 400;
    border-top: 2px solid #808080;
    border-bottom: 1px dotted #808080;
    padding: 10px;
    margin: 25px 0
}

.yesno_q dd h5 {
    padding: 12px;
    margin: 5px;
    color: #303030;
    border-bottom: 1px solid #025c90
}

.yesno_q dd p {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .15em;
    line-height: 1.8
}

.yesno_q dd ol {
    padding-left: 25px
}

.yesno_q dd ul {
    padding-left: 25px
}

.yesno_q dd ul li {
    list-style: disc
}

.yesno_q dd dl dt {
    float: left;
    clear: left
}

.yesno_q dd dl dd {
    margin-left: 15px;
    float: left
}

.yesno_q dd dl::after {
    content: '';
    display: block;
    clear: both
}

.yesno_q dd small {
    font-size: 12px
}

.yesno_q dd .small {
    font-size: 12px
}

.yesno_q dd .x-small {
    font-size: 10px
}

.yesno_q dd .left {
    text-align: left !important;
    display: inline-block;
    width: 49%;
    vertical-align: top
}

.yesno_q dd .right {
    text-align: right !important;
    display: inline-block;
    width: 49%;
    vertical-align: top
}

.yesno_q dd .arw {
    position: relative;
    margin-bottom: 10px;
    padding-left: 15px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: .15em
}

.yesno_q dd .arw::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 6px;
    height: 6px;
    border: solid 1px #666
}

@media only screen and 
    (-webkit-min-device-pixel-ratio: 2),
    (min-resolution: 2dppx) {
        #yesno_wrap {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
}