@charset "UTF-8";

@font-face {
    font-family: 'NotoSansCJKjp';
    font-style: normal;
    font-weight: 900;
    src: url('../font/NotoSansCJKjp-Black.woff') format('woff'),
        url('../font/NotoSansCJKjp-Black.eot') format('eot');
    font-display: swap;
}

body {
    background: #FFF;
    padding-top: 40px;
    font-family: sans-serif;
}

.open {
    overflow: hidden;
}

.head-bar {
    background: #32baeb;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
}

.head-content {
    width: 100%;
    padding: 10px;
    position: relative;
}

.logo a {
    width: 144px;
    display: block;
    margin: 0 auto;
}

.logo img {
    display: block;
    margin: 0 auto;
}


.girls-bar {
    padding: 25px 0;
    background-color: #FFF;
}

.girls-content {
    width: 100%;
    padding: 25px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;

    background-color: #eeede2;
    background-image:
        repeating-linear-gradient(-45deg,
            #FAF9F2, #FAF9F2 10px,
            transparent 0, transparent 25px);

}

.girls-content img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.center {
    text-align: center;
}

em {
    font-style: normal;
    font-weight: bold;
    color: #e75d5d;
}

.pagenav {
    font-weight: bold;
}

.page_item a {
    font-weight: normal;
    color: #333;
}

/************************************************************************************/

/* チェックボックスを非表示 */

.menu-checkbox {
    display: none;
}

/* メニューボタンの装飾 */

.menu-button {
    display: block;
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: 200;
    height: 20px;
    width: 24px;
    cursor: pointer;
}

.menu-button::before, .menu-button::after {
    content: '';
    transition: .3s;
}

.menu-button::before, .menu-button::after, .menu-button span {
    display: block;
    position: absolute;
    left: 0;
    height: 1.5px;
    width: 100%;
    background-color: #FFF;
}

.menu-button::before {
    top: 4px;
}

.menu-button::after {
    bottom: 2.5px;
}

.menu-button span {
    top: 50%;
}

/* メニューボタンのアニメーション */

.menu-checkbox:checked~.menu-button::before {
    top: 50%;
    transform: rotate(45deg);
}

.menu-checkbox:checked~.menu-button::after {
    top: 50%;
    transform: rotate(-45deg);
}

.menu-checkbox:checked~.menu-button span {
    display: none;
}

/* ドロワーメニューの装飾 */

.drawer-menu {
    background: #000;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    text-align: center;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
}

.drawer-menu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.drawer-menu ul li {
    line-height: 2;
}

.drawer-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.drawer-menu a:hover {
    color: #666;
}

/* ドロワーメニューの開閉 */

.menu-checkbox:checked~.drawer-menu {
    visibility: visible;
    opacity: 1;
}

/************************************************************************************/


header {
    background: #FFF;
    width: 100%;
    margin: 0 auto;
}

/************************************************************************************/

main {
    background: #FFF;
    width: 100%;
    margin: 0 auto;
}

main .main {
    padding: 0 10px 10px 10px;
}

main .title {
    padding-bottom: 32px;
}

main .title h1 {
    font-family: 'NotoSansCJKjp';
    font-weight: 900;
    font-size: 30px;
    color: #32baeb;
    line-height: 1.2;
}

main p {
    color: #333;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.6;
    padding-bottom: 1em;
}

main p.comment {
    padding-bottom: 0;
}

h2 {
    font-family: 'NotoSansCJKjp';
    font-weight: 900;
    font-size: 20px;
    color: #333;
    padding: 1em 0;
    line-height: 1.2;
}

h3 {
    font-family: 'NotoSansCJKjp';
    font-weight: 900;
    font-size: 16px;
    color: #333;
    line-height: 2;
}

#ranking::after {
    content: "[PR]";
    font-size: smaller;
    font-weight: normal;
}

/************************************************************************************/

.toc {
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    margin: 1em 0;
    padding: 1em 10px;
    font-size: 16px;
}

.toc p {
    color: #333;
}

.toc ol {
    list-style-type: none;
}

.toc ol li a::before {
    content: "▼";
}

.toc ol li {
    line-height: 1.9;
}

.toc ol li a {
    color: #0052cc;
}

/************************************************************************************/

.site {
    border-bottom: 1px dotted #aaa;
    padding-bottom: 10px;
}

.site h3.title {
    font-family: 'NotoSansCJKjp';
    font-weight: 900;
    font-size: 20px;
    padding: 10px 0;
}

.site h3.title a {
    color: #333;
    text-decoration: none;
}

.site h3.title .reds {
    font-size: 16px;
    color: #e12d2d;
}

.site h4 {
    color: #32baeb;
    text-align: center;
    margin: 10px 0;
}

.site .comment {
    color: #008800;
    font-size: 16px;
    font-weight: bold;
}

.site .price {
    list-style-type: none;
    font-size: 15px;
    color: #333;
}

.site .data {
    list-style-type: none;
}

.site .data .item-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.site .thumbnail {
    text-align: center;
}

.site .thumbnail img {
    width: 150px;
    height: 159px;
}

.site .free-points, .site .lucky-code {
    color: #e12d2d;
    font-weight: bold;
}

.site .iphone {
    display: inline-block;
    background: #979797;
    width: 60px;
    height: 18px;
    line-height: 18px;
    font-size: 14px;
    border-radius: 3px;
    color: #FFF;
    text-align: center;
}

.site .android {
    display: inline-block;
    background: #9AD60B;
    width: 60px;
    height: 18px;
    line-height: 18px;
    font-size: 14px;
    border-radius: 3px;
    color: #FFF;
    text-align: center;
}

.site .pc {
    display: inline-block;
    background: #7ABBEB;
    width: 60px;
    height: 18px;
    line-height: 18px;
    font-size: 14px;
    border-radius: 3px;
    color: #FFF;
    text-align: center;
}

.site .site-link {
    margin-top: 10px;
}

.site .site-link a {
    display: block;
    background: #003dcc;
    border-radius: 3px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-decoration: none;
}

.site .detail-link {
    margin-top: 10px;
}

.site .detail-link a {
    display: block;
    background: #a3c1c5;
    border-radius: 3px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-align: center;
    text-decoration: none;
}

.site .pr {
    font-size: 12px;
    color: yellow;
}


.next {
    padding: 20px 10px 30px 10px;
}

.next a {
    display: block;
    padding: 10px 0;
    background: #0F9480;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    color: #FFF;
    text-decoration: none;
}

/************************************************************************************/

.posts {
    padding: 10px;
}

.post a {
    display: block;
    text-decoration: none;
}

.post img {
    float: left;
    margin-right: 10px;
    width: 120px;
    height: auto;
}

.post h3 {
    color: #333;
}

.post p {
    color: #333;
    margin-left: 130px;
}

.post p::after {
    content: " ";
    display: block;
    clear: both;
}

.post {
    padding: 10px 0;
    transition: all .3s ease;
}

.post:hover {
    background: #dbdbdf;
}

.post+.post {
    border-top: 1px dotted #333;
}


/************************************************************************************/

.links {
    padding: 10px;
}

.link a {
    color: #333;
    font-weight: bold;
}

.link p {
    color: #333;
}

.link {
    padding: 10px 0;
}

.link+.link {
    border-top: 1px dotted #333;
}

/************************************************************************************/

.pages ul {
    list-style-type: none;
}

.pages a {
    color: #333;
    padding: 10px 0;
    display: block;
}

.pages li {
    transition: all .3s ease;
}

.pages li:hover {
    background: #dbdbdf;
}

.pages li+li {
    border-top: 1px dotted #333;
}

/************************************************************************************/

footer {
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    padding: 30px;
    box-sizing: border-box;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    transition: all .2s;
    color: #fff;
}

.footer-top {
    text-align: center;
    margin: 0 0 18px 0;
}

.footer-top h2 {
    margin-top: 0;
}

.footer-menu {
    max-width: 300px;
    margin: 1em auto;
    font-size: 16px;
}

.footer-menu ul {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    align-items: top;
    list-style-type: none;
}

.copyright {
    text-align: center;
    font-size: 16px;
}

/************************************************************************************/

.wpcf7-form {
    padding: 10px;
}

.wpcf7-text {
    width: 100%;
    max-width: 100%;
    min-height: 40px;
    padding: 0 8px;
    vertical-align: middle;
    color: #4c4c4c;
    border: 1px solid #d2d2d2;
    border-radius: 4px;
    background-color: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) inset;
    font-size: 18px;
    box-sizing: border-box;
}

.wpcf7-textarea {
    width: 100%;
    max-width: 100%;
    min-height: 40px;
    padding: 0 8px;
    vertical-align: middle;
    color: #4c4c4c;
    border: 1px solid #d2d2d2;
    border-radius: 4px;
    background-color: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) inset;
    font-size: 18px;
    box-sizing: border-box;
}

.wpcf7-submit {
    width: 100%;
    font-size: 18px;
    height: 32px;
    margin-top: 10px;
    background: #F0F0F0;
    border: 1px solid #808080 !important;
    box-shadow: 3px 3px 0 #edf2f5;
    cursor: pointer;
}

.wpcf7 form .wpcf7-response-output {
    margin: 2em 0em 1em !important;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #FF0000 !important;
}

/************************************************************************************/

blockquote {
    position: relative;
    padding: 30px 15px 8px 15px;
    margin: 16px 0;
    box-sizing: border-box;
    font-style: italic;
    background: #fff;
    border: 1px solid #EEE;
    color: #222;
}

blockquote:before {
    display: inline-block;
    position: absolute;
    top: 13px;
    left: 15px;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    color: #CCC;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
}

blockquote p {
    padding: 0;
    margin: 10px 0;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    text-align: right;
    color: #222;
    font-size: 0.9em;
}

/************************************************************************************/

nav.breadcrumb ol {
    list-style-type: none;
    padding: 1rem 0;
    margin-left: 10px;
    display: flex;
    justify-content: flex-start;
}

nav.breadcrumb ol li {
    margin-right: 10px;
    font-size: 15px;
}

nav.breadcrumb ol li+li::before {
    content: "/";
    margin-right: 10px;
}