*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.wrapper{
    margin-inline: auto;
    width: 94%;
    max-width: 600px;
    overflow-x: hidden;
    margin: 20px auto;
}

p,
img,
video{
    display: block;
    margin: 13px auto;
}
p{
    font-size: 16px;
    line-height: 1.8;
}
img,
video{
    width: 100%;
    object-fit: contain;
}

.menu_box{
    border-radius: 10px;
    background-color: #f7f7f7;
    padding: 15px 25px 20px;
    position: relative;
    overflow-y: hidden;
    height: 200px;
    transition: 0.3s height ease;
}
.menu_box.active{
    grid-template-rows: 1fr;
    height: 360px;
}
.menu_box h3{
    color: #666;
    margin-bottom: 5px;
}
.menu_box ul{
    list-style: none;
}
.menu_box ul li{
    border-bottom: 1px dotted #abb1ad;
    padding: 5px;
    font-size: 12px;
}
.menu_box ul li a{
    text-decoration: none;
    color: #666;
}
.menu_box .cover{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(247, 247, 247, 0) 0%, #f7f7f7 100%);
    z-index: 0;
    opacity: 1;
    transition: all 0.3s;
    display: block;
}
.menu_box.active .cover{
    opacity: 0;
    display: none;
}
.menu_box+.more_btn{
    display: block;
    text-align: center;
    font-size: 12px;
    position: relative;
    top: -20px;
    z-index: 1;
}
.menu_box+.more_btn span{
    color: #fff;
    background-color: #aaa;
    padding: 5px 20px;
    border-radius: 5px;
}


h2.ttl{
    padding: 13px 10px;
    border-left: 4px solid #fd9f84;
    background-color: #ffe7df;
    line-height: 1.3;
    font-size: 21px;
    margin: 30px auto 15px;
}

h3.ttl{
    padding: 5px 10px;
    font-size: 20px;
    margin: 10px 00px 10px 0px;
    color: #e84d21;
    border-bottom: 2px solid #fd9f84;
}


.taC{
    text-align: center;
}
.taR{
    text-align: right;
}
.fcB{
    color: #0067ce;
}
.fcO{
    color: #e4471e;
}
.fcR{
    color: #f20000;
}
.anno{
    text-align: right;
    margin-top: 3px;
    font-size: 10px;
    color: #999;
}

.mark{
    background: linear-gradient(to bottom, transparent 0%, transparent 65%, #fff59c 40%, #fff492 100%);
}

.rankTable{
    border: 4px solid #fd9f84;
    overflow-x: scroll;
}
.rankTable table{
    border-collapse: collapse;
    width: 600px;
}
.rankTable table th,
.rankTable table td{
    text-align: center;
    font-size: 12px;
}
.rankTable table th{
    background-color: #fd9f84;
    color: #fff;
    border-bottom: 1px solid #fff;
    font-weight: bold;
    padding: 3px  0;
    width: 17%;
}
.rankTable table th:first-child{
    background-color: #e4471e;
    width: 15%;
    position: sticky;
    left: 0;
}
.rankTable table td{
    padding: 5px 0;
    border-left: 1px dotted #ddd;
    border-bottom: 1px dotted #ddd;
}
.rankTable table td .great,
.rankTable table td .good,
.rankTable table td .soso{
    display: block;
    font-size: 30px;
    font-weight: bold;
}
.rankTable table td .great{
    color: #e73f6a;
}
.rankTable table td .good{
    color: #0e83b7;
    font-weight: normal;
}
.rankTable table td .soso{
    color: #ffdd17;
}
.rankTable table tr:first-child img,
.rankTable table tr:nth-last-child(2) img{
    margin: 0;
}
.rankTable table tr:first-child td,
.rankTable table tr:nth-last-child(2) td{
    border-bottom: none;
}





.product_box{
    border-radius: 10px;
    padding: 15px 10px;
    margin-bottom: 15px;
}
.product_box.first{
    border: 1px solid #fd9f84;
}
.product_box.second{
    border: 1px solid #a6db90;
}
.product_box.third{
    border: 1px solid #b5d7e8;
}

.product_box h2{
    font-size: 18px;
    text-align: center;
    line-height: 1.3;
}
.product_box.first h2{
    border-bottom: 2px solid #e4471e;
}
.product_box.second h2{
    border-bottom: 2px solid #66b545;
}
.product_box.third h2{
    border-bottom: 2px solid #4796bd;
}
.product_box h3{
    position: relative;
    line-height: 1.3;
    margin: 25px auto 10px;
    font-size: 17px;
    padding: 8px 0 8px 38px;
    border-radius: 5px;
    color: #fff;
}
.product_box h3::before{
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 3px;
    transform: rotate(45deg);
    position: absolute;
    top: 36%;
    left: 10px;
    background-color: #fff;
}
.product_box.first h3{
    background-color: #e4471e;
}
.product_box.second h3{
    background-color: #66b545;
}
.product_box.third h3{
    background-color: #4796bd;
}
/*.product_box.first h3::before{*/
/*    background-color: #e4471e;*/
/*}*/
/*.product_box.second h3::before{*/
/*    background-color: #66b545;*/
/*}*/
/*.product_box.third h3::before{*/
/*    background-color: #4796bd;*/
/*}*/

.product_box .price_flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product_box .price_flex p{
    text-align: center;
    margin: 0;
    width: 40%;
    line-height: 1.3;
    font-weight: bold;
    color: #f20000;
}
.product_box .price_flex a{
    display: block;
    width: 60%;
    background-color: #1ab047;
    border-radius: 10px;
    box-shadow: 2px 3px 5px #135f2a;
    font-size: 16px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    line-height: 1.3;
    padding: 10px 0;
}
.official{
    text-align: right;
    font-size: 14px;
    line-height: 1.3;
}

.voice_ttl{
    text-align: center;
    border-bottom: 1px dashed #e4471e;
    margin-top: 30px;
    padding-bottom: 5px;
}

.min_table{
    border-radius: 5px;
    overflow: hidden;
}
.product_box.first .min_table{
    border: 1px solid #e4471e;
}
.product_box.second .min_table{
    border: 1px solid #66b545;
}
.product_box.third .min_table{
    border: 1px solid #4796bd;
}
.min_table table{
    border-collapse: collapse;
    text-align: left;
    width: 100%;
}
.min_table table th,
.min_table table td{
    font-size: 13px;
    line-height: 1.2;
    padding: 6px 8px;
}
.min_table table th{
    border-bottom: 1px solid #fff;
    color: #fff;
}
.product_box.first .min_table table th{
    background-color: #e4471e;
}
.product_box.second .min_table table th{
    background-color: #66b545;
}
.product_box.third .min_table table th{
    background-color: #4796bd;
}
.min_table table th span{
    font-size: 10px;
}
.product_box.first .min_table table td{
    border-bottom: 1px solid #e4471e;
}
.product_box.second .min_table table td{
    border-bottom: 1px solid #66b545;
}
.product_box.third .min_table table td{
    border-bottom: 1px solid #4796bd;
}
.product_box .min_table table tr:last-child td{
    border: none !important;
}
.cta{
    margin-top: 20px;
}
.cta a{
    display: block;
    background-color: #1ab047;
    border-radius: 10px;
    box-shadow: 2px 3px 5px #135f2a;
    font-size: 16px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    line-height: 1.3;
    padding: 10px 0;
}

.voice_slider_wrapper{
    margin: 10px auto 0;
    overflow: hidden;
}
.voice_child{
    border: 2px solid #e4471e;
    border-radius: 10px;
    padding: 15px;
}
.voice_child .name{
    display: flex;
    align-items: center;
}
.voice_child .name img,
.voice_child .name p{
    margin: 0;
}
.voice_child .name img{
    width: 15%;
    margin-right: 2%;
}
.voice_child .name p{
    color: #e4471e;
    font-size: 16px;
    font-weight: bold;
}
.voice_child .body{
    font-size: 14px;
    text-align: justify;
    line-height: 1.8;
    padding-top: 10px;
}
.voice_slider .slick-dots li{
    margin: 0;
}
.voice_slider .slick-dots li button:before,
.voice_slider .slick-dots li.slick-active button:before{
    font-size: 10px;
    color: #e4471e;
}

footer{
    text-align: center;
    padding: 30px 0;
    background-color: #aaa;
}
footer a{
    display: block;
    text-align: center;
    padding: 1%;
    color: #fff;
    font-size: 13px;
}

.follow_bnr{
    position: fixed;
    width: 40%;
    max-width: 200px;
    right: 5px;
    bottom: 5px;
}
.follow_bnr img{
    margin: 0;
}

.exitPopup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;    
    transform: translate(-50%, -50%);
    padding: 20px;
    z-index: 100;
}
.exitPopup .close-btn {
    position: absolute;
    background: none;
    border: none;
    cursor: pointer;
    top: -51px;
    right: 10px;    
    font-size: 56px;
    color: #fff;    
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
}
@media screen and (max-width: 767px) {
    .exitPopup {
        width: 87%;
    }
    footer{
    padding: 30px 0 75px;
}
}

#search-form{
    margin: 15px 0;
}


@media screen and (min-width: 769px){
    .rankTable{
        overflow: visible;
    }
}

.problem {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #fd9f84;
    margin-top: 20px;
}

.problem span {
    width: 5%;
    margin: 0;
}

.problem b {
    margin-left: 1%;
    color: #e84d21;
}