@charset "UTF-8";

html {
    font-size: 62.5%;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.6;
    font-family: Helvetica, HiraKakuProN-W3, meiryo, メイリオ, sans-serif;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    color: #585858;
    background: #ffffff;
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* 共通項目 */
.inner {
    width: 92%;
    max-width: 572px;
    margin: 0 auto;
}

.inner_min {
    width: 80%;
    margin: 0 auto;
}

.yellow_marker {
    background: linear-gradient(transparent 60%, #ff6 60%);
}

.yellow_marker_lage {
    background: linear-gradient(transparent 40%, rgb(255, 255, 183) 60%);
}

.red {
    color: #ff5858;
}

.blue {
    color: #5a73f3;
}

.pink {
    color: #ff2ab4;
}

.yellow_marker02 {
    background: linear-gradient(transparent 50%,#ffffa3 50%);
    font-weight: bold;
    color: #ff7070;
}

.text_style {
    font-size: 18px;
}

.margin_top {
    margin-top: 20px;
    font-weight: bold;
}

.margin_top_lage {
    font-weight: bold;
    margin-top: 200px;
}

.margin_top_min {
    margin-top: 10px;
}

.under_line {
    margin-top: 10px;
}

.review_number {
    font-size: 20px;
    margin-left: 10px;
}

.head_warning {
    text-align: center;
    font-weight: bold;
    color: #fff6b6;
    margin: 20px auto 0;
    background: rgb(88 88 88);
    border-radius: 4px;
    font-size: 14px;
}

.btn_warning {
    font-size: 12px;
    color: #ffffff;
    margin: 0 auto 0;
    width: 80%;
    margin-top: 12px;
    background: #7e7e7e;
    padding: 8px;
    border-radius: 4px;
}

.content_warning {
    position: relative;
    display: inline-block;
    padding: 0 48px;
    animation: blink 1s ease-in-out infinite alternate;
    color: #ff4561;
    font-weight: bold;
}

.content_warning_box {
    text-align: center;
    margin-top: 70px;
}

.content_warning::before,
.content_warning::after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 30px;
    height: 2px;
    border-top: solid 1px black;
    border-bottom: solid 1px black;
}

.content_warning::before {
    left: 10px;
}

.content_warning::after {
    right: 10px;
}

.content_warning_minBox {
    background: #fffdf1;
    margin-top: 10px;
}

.content_warning_minBox ul {
    font-size: 14px;
    padding: 13px;
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* ポイント */
.ap_textBox {
    margin-top: 20px;
}

.ap_textBox img {
    width: 25px;
}

.ap_textBox_ttl {
    font-weight: bold;
}

.ap_textBox_ttl img {
    margin-right: 10px;
}



/* ハッシュボックス */
.hash_box {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.hash {
    font-size: 12px;
    padding: 5px 15px;
    color: #ffffff;
    border-radius: 20px;
}

.hash_list01 {
    background: #ff5b8d;
}

.hash_list02 {
    background: #71cbd0;
}

.hash_list03 {
    background: #e8ae72;
}

/* 登録ボタン */
.btn_box {
    text-align: center;
    margin-top: 50px;
}

.btn_box02 {
    text-align: center;
    margin-top: 10px;
}

.btn {
    position: relative;
    display: inline-block;
    z-index: 0;
}

.btn02 {
    position: relative;
    display: inline-block;
    z-index: 0;
    background: #fc7979;
    border-radius: 50px;
    padding: 10px 0;
}

.btn02 a {
    width: 100%;
    padding: 10px;
    color: #fff;
    font-weight: bold;
}

.btn_copy {
    margin-top: 50px;
    text-align: center;
    font-size: 18px;
}

.ripple {
    display: block;
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #fc7979;
    border-radius: 30px;
    box-shadow: 0 0 5px #fc79795e;
    animation-name: rippleAnimation;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    animation-duration: 2s;
    -webkit-animation-name: rippleAnimation;
    -webkit-animation-timing-function: ease-out;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 2s;
    -moz-animation-name: rippleAnimation;
    -moz-animation-timing-function: ease-out;
    -moz-animation-iteration-count: infinite;
    -moz-animation-duration: 2s;
}

@keyframes rippleAnimation {
    0% {
        transform: scale(1, 1);
        opacity: 1;
    }

    100% {
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

@-webkit-keyframes rippleAnimation {
    0% {
        -webkit-transform: scale(1, 1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2, 1.5);
        opacity: 0;
    }
}

@-moz-keyframes rippleAnimation {
    0% {
        -moz-transform: scale(1, 1);
        opacity: 1;
    }

    100% {
        -moz-transform: scale(1.1, 1.1);
        opacity: 0;
    }
}

/* ユーザーレビュー */
.slick_slider {
    margin-top: 50px;
}

.slick_slider li {
    outline: none;
}

.review_box {
    border-radius: 10px;
    border: 2px solid #71cbd0;
    background: #f1f1f1;
    margin-right: 10px;
}

.review_box_top {
    background: #71cbd0;
    color: #ffffff;
    padding-left: 5px;
    border-radius: 5px 5px 0 0;
}

.review_box_bottom_wrap {
    padding: 10px;
}

.review_box_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review_ttl {
    font-weight: bold;
}

.review_name {
    font-size: 14px;
}

.review_text {
    margin-top: 10px;
    font-size: 14px;
}

/* 星マーク */
.star_rating_box {
    display: flex;
    align-items: center;
}

.star_rating {
    position: relative;
    display: inline-block;
    font-size: 20px;
    word-break: normal !important;
}

.star_rating .star_rating_item {
    position: absolute;
    overflow: hidden;
}

.star_rating .star_rating_item:before {
    content: "★★★★★";
    color: #ffcc33;
}

.star_rating:after {
    content: "★★★★★";
    color: #ccc;
}

/* ヘッダー */
.header {
    width: 100%;
    height: 260px;
    background-image: url(https://img-storage.com/lp/2020/o_u/onahureranking/items/default/main_vs.jpg);
    background-size: cover;
    background-position: center;
}

.noadult_header {
    background-image: url(https://img-storage.com/lp/2020/o_u/onahureranking/items/noadult/main_vs.jpg);
}

.header_subttl {
    position: absolute;
    top: 160px;
    left: 50%;
    transform: translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    width: 260px;
    text-shadow: 0 0 10px #FF0;
    color: #fff;
}

.header_ttlBox {
    transform: skewY(-3deg);
    transform-origin: 100% 100%;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    z-index: 1;
}

.header_ttlBox_inner {
    position: absolute;
    left: 0;
    top: 230px;
    overflow-x: hidden;
    background: linear-gradient(#fb896e, #ff5b8d);
    width: 100%;
    padding: 5px 0;
}

.header_ttlBox_inner_top {
    position: relative;
    top: 0;
    left: 10%;
}

.header_ttlBox_inner_bottom {
    position: relative;
    top: 0;
    left: 25%;
}






/* ヘッド部分 */
.date {
    font-size: 14px;
    margin-top: 55px;
    text-align: right;
}

.head_ttl {
    font-size: 26px;
    font-weight: bold;
    color: #ff54b3;
    margin-top: 20px;
}

.head_text {
    font-weight: bold;
    margin-top: 30px;
}

.head_list_wrap {
    position: relative;
}

.head_list {
    font-size: 16px;
    background: #e0f6ff;
    border-radius: 8px;
    box-shadow: 0px 0px 5px silver;
    padding: 20px 10px;
    font-weight: bold;
    color: #335867;
    margin-top: 30px;
}

.min_chara_img {
    width: 80px;
    position: absolute;
    bottom: 0;
    right: -15px;
    overflow-x: hidden;
}



.head_list li:not(:first-child) {
    margin-top: 10px;
}

.head_point {
    margin: 20px 0;
    font-weight: bold;
    font-size: 24px;
    color: #ff5858;
}

.head_point02 {
    margin: 60px 0 30px;
    font-weight: bold;
    font-size: 24px;
    color: #ff5858;    
}

.about_ai_box {
    position: relative;
    margin: 2em 0;
    padding: 0.8em;
    border: solid 3px #95ccff;
    border-radius: 8px;
}

.about_ai_point {
    font-size: 12px;
}

.box_ttl {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #95ccff;
    font-weight: bold;
}

.head_text_bottom {
    font-weight: bold;
    margin-top: 30px;
}

.danger_text {
    color: rgb(236, 31, 31);
    font-size: 14px;
    margin-top: 10px;
}

.fa-exclamation-circle {
    margin-right: 5px;
}

.ranking_sec {
    margin-top: 50px;
}

.ranking_text {
    margin-top: 20px;
    font-weight: bold;
}

.ranking02,
.ranking03 {
    margin-top: 50px;
}


.ranking_box {
    display: flex;
    margin-top: 30px;
}

.ap_img {
    width: 60px;
}

.ap_name {
    font-size: 20px;
    font-weight: bold;
    color: #603232;
}

.ranking_box_right {
    margin-left: 5%;
}


/* フッター */
.footer {
    text-align: center;
    color: #ffffff;
}

.footer_top {
    font-size: 18px;
    font-weight: bold;
    padding: 20px 0px 0;
    background: #fb896e;
}

.footer_top a {
    text-decoration: underline;
    text-shadow: 0 0 10px #ff5b8d;
}

.footer_copy {
    background: linear-gradient(#fb896e, #ff5b8d);
    padding: 10px;
}

@media screen and (max-width:320px) {
    body {
        font-size: 14px;
    }

    .header_ttlBox {
        font-size: 18px;
    }

    .star_rating {
        font-size: 14px;
    }

    .review_name {
        font-size: 12px;
    }

    .review_text {
        font-size: 12px;
    }

    .hash {
        font-size: 12px;
    }

    .review_number {
        font-size: 18px;
    }

}