*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #f4f4f4;
}
.wrapper{
    max-width: 620px;
    margin: 0 auto;
    padding: 15px 20px;
    background-color: #fff;
}
p,
img,
video{
    display: block;
    margin: 20px 0;
}
p{
    font-size: 20px;
    text-align: center;
    line-height: 1.8;
}
img,
video{
    width: 100%;
    object-fit: contain;
}

.taR{
    text-align: right;
}

.mt0{
    margin-top: 0;
}
.mb0{
    margin-bottom: 0;
}

h2{
    margin: 40px auto 10px;
    background: #ffe4e4;
    padding: 10px 10px;
    border-left: 10px solid #f36969;
    font-size: 22px;
    line-height: 1.7;
}
h2.orange{
    border-bottom: 3px solid #faad41;
    border-left: 8px solid #faad41;
    background: none;
}

mark{
    font-weight: bold;
    background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #ffff00 0%) repeat scroll 0 0;
}
mark.y-thin{
    background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #ffffcc 0%) repeat scroll 0 0;
}

.fcBB{
    color: rgb(0, 71, 178);
}
.fcP{
    color: rgb(255, 0, 135);
}
.fcR{
    color: rgb(230, 0, 0);
}

.fs15{
    font-size: 15px;
}
.fs19{
    font-size: 19px;
}
.fs21{
    font-size: 21px;
}
.fs23{
    font-size: 23px;
}
.fs25{
    font-size: 25px;
}
.fs27{
    font-size: 27px;
}

.anno{
    color: #666;
    font-size: 10px;
    text-align: right;
    margin-top: 0;
}
sup{
    font-size: 0.5em;
}

.border-box{
    background-color: #FFF8ED;
    border-radius: 10px;
    border: 2.5px dotted #DB3276;
    padding: 5px;
    margin: 10px 0;
}
.border-box p{
    margin: 0;
    font-weight: bold;
}

.review_box{
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 3px 3px 2px #ffce8f;
    padding: 10px 10px 15px;
    position: relative;
    margin: 30px auto 10px;
}
.review_box .ttl{
    position: absolute;
    top: 0;
    left: 0;
    background: #ffa836;
    border-radius: 5px;
    padding: 5px 10px;
    box-shadow: 2px 2px 2px #888;
    color: #fff;
    font-weight: bold;
    font-size: 25px;
    text-shadow: 1px 1px 1px #888;
}
.review_box p{
    font-size: 19px;
    text-align: justify;
}
.review_box+.anno{
    text-align: right;
}

.anq-box{
    padding: 10px 10px 25px;
    border-bottom: 1px solid #cccccc;
    margin-bottom: 25px;
}
.anq-box .nav-number{
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    position: relative;
}
.anq-box .nav-number::before{
    content: '';
    width: 80%;
    height: 20px;
    background-color: #eeeeee;
    position: absolute;
    top: calc(50% - 10px);
    left: 10%;
    z-index: 0;
}
@media screen and (min-width: 769px){
    .anq-box .nav-number::before{
        width: 48%;
        left: 26%;
    }
}
.anq-box .nav-number span{
    font-size: 20px;
    border-radius: 50%;
    padding: 0;
    font-weight: bold;
    width: 45px;
    aspect-ratio: 1 / 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    background-color: #ffa07a;
    color: #fff;
    padding-bottom: 3px;
}
.anq-box .nav-number span.current{
    background-color: #ff7f50;
}
.anq-box .nav-number span.bef{
    background-color: #bbbbbb;
}
.anq-box h3{
    font-size: 20px;
    margin: 30px auto 10px;
}
.anq-box .radio-box input[type="radio"],
.anq-box .radio-box input[type="checkbox"]{
    display: none;
}
.anq-box .radio-box label{
    color: #000000;
    background-color: #eeeeee;
    width: 100%;
    border-radius: 100vh;
    padding: 0.5em 1em;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    display: inline-block;
    box-sizing: border-box;
    cursor: pointer;
    margin-bottom: 15px;
}
.anq-box .radio-box input[type="radio"]:checked+label,
.anq-box .radio-box input[type="checkbox"]:checked+label{
    background-color: #ff6347;
    color: #ffffff;
}

.video-flex{
    display: flex;
    align-items: flex-start;
}
.video-flex video{
    width: 50%;
}

.shuffle {
    text-align: center;
    animation: shuffle 2s ease-in infinite;
    box-sizing: border-box;
    display: block;
}
@keyframes shuffle {
    0% {
        transform: skewX(9deg);
    }
    10% {
        transform: skewX(-8deg);
    }
    20% {
        transform: skewX(7deg);
    }
    30% {
        transform: skewX(-6deg);
    }
    40% {
        transform: skewX(5deg);
    }
    50% {
        transform: skewX(-4deg);
    }
    60% {
        transform: skewX(3deg);
    }
    70% {
        transform: skewX(-2deg);
    }
    80% {
        transform: skewX(1deg);
    }
    90% {
        transform: skewX(0deg);
    }
    100% {
        transform: skewX(0deg);
    }
}

.downArrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.downArrow>span {
    width: 100px;
    height: 65px;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.downArrow>span::before {
    content: "";
    display: block;
    margin: 0 auto;
    width: 50%;
    height: 40%;
    background: #ffc8c8;
}
.downArrow>span::after {
    content: "";
    display: block;
    width: 100%;
    height: 60%;
    background: -webkit-gradient(linear, left bottom, right top, color-stop(49%, transparent), color-stop(50%, #d096bb)) top left/50% 100% no-repeat, -webkit-gradient(linear, right bottom, left top, color-stop(49%, transparent), color-stop(50%, #d096bb)) top right/50% 100% no-repeat;
    background: linear-gradient(to top right, transparent 49%, #ffc8c8 50%) top left/50% 100% no-repeat, linear-gradient(to top left, transparent 49%, #ffc8c8 50%) top right/50% 100% no-repeat;
}
.movebtn {
    -webkit-animation-name: movebtn;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease;
    -moz-animation-name: movebtn;
    -moz-animation-duration: 1.5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease;
    align-items: flex-start;
    justify-content: center;
}
@-webkit-keyframes movebtn {
    0% {
        -webkit-transform: translate(0, 0);
    }
    50% {
        -webkit-transform: translate(0, -8px);
    }
    100% {
        -webkit-transform: translate(0, 0);
    }
}
@-moz-keyframes movebtn {
    0% {
        -moz-transform: translate(0, 0);
    }
    50% {
        -moz-transform: translate(0, -8px);
    }
    100% {
        -moz-transform: translate(0, 0);
    }
}

footer{
    font-size: 13px;
    padding: 5%;
    background: #ECECEC;
    text-align: center;
    margin-top: 10px;
}
footer a{
    color: #4682b4;
}