@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 {
    font-family: sans-serif;
    color: #f2f2f2;
    background: #121212;
}

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

a {
    color: #ea153c;
}

.important {
    font-weight: bold;
}

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

.title-bar {
    width: 100%;
}

.title-content {
    width: 640px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    background: #000;
}

.title-content .title, .title-content .menu {
    width: 100%;
    height: auto;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-content .title {
    text-align: center;
    padding: 10px 5px 10px 10px;
}

.title-content .title img {
    width: 60%;
    height: auto;
}

.title-content .menu {
    background-color: #262626;
    padding: 10px 10px 10px 5px;
}

.title-content .menu a {
    color: #f2f2f2;
    font-size: 13px;
}

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

.head-bar {
    width: 100%;
    height: 44px;
    background-color: #191919;
    position: sticky;
    z-index: 10;
    top: 0px;
    left: 0px;
}

.head-content {
    width: 640px;
    margin: 0 auto;
    padding: 10px 35px 10px 20px;
    position: relative;
}

.head-content h1 {
    font-size: 16px;
    font-weight: normal;
}

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

.menu-checkbox {
    display: none;
}

.menu-button {
    display: block;
    position: absolute;
    top: 10px;
    right: 20px;
    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 {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    height: 100%;
    width: 240px;
    transform: translateX(-100%);
    transition: .5s;
    background-color: #121212;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

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

.drawer-menu ul li .title {
    display: block;
    padding: 15px 10px;
    margin: 0;
    color: #fff;
    background: #363636;
    font-size: 16px;
}

.drawer-menu li {
    border-bottom: 1px dotted #343434;
}

.drawer-menu a {
    display: block;
    padding: 10px 10px;
    color: #FFF;
    text-decoration: none;
    font-size: 14px;
    background: url(../img/arrow.png) right 10px center no-repeat;
    background-size: 5px 8px;
}

.drawer-menu a:hover {
    background: #ff5a79 url(../img/arrow.png) right 10px center no-repeat;
    background-size: 5px 8px;
}

.menu-checkbox:checked~.drawer-menu {
    transform: translateX(0);
}

.menu-background {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .5);
    cursor: pointer;
}

.menu-checkbox:checked~.menu-background {
    display: block;
}

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

.eyecatch {
    width: 640px;
    margin: 0 auto;
    background: #000;
}

.eyecatch img {
    width: 100%;
    height: auto;
    padding: 20px;
    display: block;
}

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

.description {
    width: 640px;
    margin: 0 auto;
    background: #000;
    padding: 10px 20px 20px 20px;
}

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

.ad {
    width: 640px;
    margin: 0 auto;
    background: #000;
    font-size: 16px;
    color: #ff5a79;
    text-align: center;
    padding: 20px;
}

.ad img {
    max-width: 320px;
    aspect-ratio: 6 / 5;
}

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

.breadcrumb {
    width: 640px;
    margin: 0 auto;
    background: #000;
    overflow-x: auto;
    word-break: keep-all;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

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

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

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

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

main h2 {
    width: 640px;
    margin: 0 auto;
    background: #ea153c;
    color: #FFF;
    padding: 5px 20px;
}

.main h2::after {
    content: "[PR]";
    color:#FFF;
    font-size: 14px;
    font-weight: normal;
}

.main .document {
    width: 640px;
    margin: 0 auto;
    padding: 10px 20px;
    background: #000;
}

.main .document h3~h3 {
    margin-top: 20px;
}

.main .document h3 {
    color: #ea153c;
}

.main .document p+p {
    margin-top: 20px;
}

.site {
    width: 640px;
    margin: 0 auto;
    background: #000;
    border-bottom: 1px solid #ff5a79;
    padding: 10px 20px;
    position: relative;
}

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

.site h3 small {
    font-size: 13px;
}

.site .thumbnail {
    float: left;
    margin-right: 10px;
    transition: .3s;
}

.site .thumbnail:hover {
    opacity: .6;
}

.site .item {
    font-size: 14px;
    margin-left: 110px;
}

.item .value.rate {
    letter-spacing: 0.04em;
}

.item .value {
    margin-left: 2px;
    color: #ff5a79;
}

.site p.comment::before {
    clear: both;
}

.site p.comment {
    font-size: 14px;
    background-color: #DAD8D033;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
    color: #f2f2f2;
}

.site .site-link a {
    display: block;
    background-color: #009E1C;
    color: #f2f2f2;
    border-radius: 5px;
    margin: 10px 0;
    padding: 10px;
    text-decoration: none;
    text-align: center;
    transition: .3s;
}

.site .site-link a:hover {
    opacity: .6;
}

.site .detail-link a {
    display: block;
    background-color: #ea153c66;
    color: #f2f2f2;
    border-radius: 5px;
    margin: 10px 0;
    padding: 10px;
    text-decoration: none;
    text-align: center;
    transition: .3s;
}

.site .detail-link a:hover {
    opacity: .6;
}

.android {
    font-size: 13px;
    display: inline-block;
    background-color: #009E1C;
    color: #f2f2f2;
    border-radius: 3px;
    margin: 3px 0;
    padding: 2px 5px;
    text-decoration: none;
    text-align: center;
}

.iphone {
    font-size: 13px;
    display: inline-block;
    background-color: rgb(149, 149, 149);
    color: #f2f2f2;
    border-radius: 3px;
    margin: 3px 0;
    padding: 2px 5px;
    text-decoration: none;
    text-align: center;
}

.pc {
    font-size: 13px;
    display: inline-block;
    background-color: rgb(102, 123, 177);
    color: #f2f2f2;
    border-radius: 3px;
    margin: 3px 0;
    padding: 2px 5px;
    text-decoration: none;
    text-align: center;
}

.site .point {
    font-family: 'NotoSansCJKjp';
    font-weight: 900;
    font-size: 60px;
    position: absolute;
    right: 20px;
    top: 10px;
    opacity: .1;
    line-height: 50px;
    transition: .3s;
}

.site:hover .point {
    opacity: .3;
}

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

.detail {
    width: 640px;
    background-color: #000;
    margin: 0 auto;
}

.detail-content {
    padding: 20px;
}

.detail-content .thumbnail {
    text-align: center;
    margin-bottom: 20px;
}

.detail-content .thumbnail a {
    width: 300px;
    margin: 0 auto;
    display: block;
}

.detail-content .thumbnail a img {
    display: block;
}

.detail-content .site-link {
    margin: 20px 0;
}

.detail-content h3 {
    margin-top: 20px;
    color: #ea153c;
}

.detail-content .site-link a {
    display: block;
    color: #FFF;
    width: 300px;
    height: 50px;
    line-height: 50px;
    margin: 0 auto;
    background-color: #009E1C;
    border-radius: 25px;
    text-align: center;
    transition: .3s;
}

.detail-content .site-link a:hover {
    opacity: 0.5;
}

.detail-content ul {
    list-style-type: none;
}

.detail-content ul.check li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 5px;
    color: #009E1C
}

.detail-content ul.check li {
    text-indent: -1.3em;
    padding-left: 1.3em;
}

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

.nav-content {
    width: 640px;
    margin: 0 auto;
    background: #000;
}

.nav-content ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.nav-content li {
    border-bottom: 1px dotted #343434;
}

.nav-content a {
    display: block;
    padding: 10px 20px;
    color: #FFF;
    text-decoration: none;
    font-size: 14px;
    background: url(../img/arrow.png) right 20px center no-repeat;
    background-size: 5px 8px;
}

.nav-content a:hover {
    background: #ff5a79 url(../img/arrow.png) right 20px center no-repeat;
    background-size: 5px 8px;
}

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

.related-content {
    width: 640px;
    margin: 0 auto;
    background: #000;
}

.related-content ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.related-content li {
    border-bottom: 1px dotted #343434;
    list-style-type: none;
}

.related-content a {
    display: block;
    padding: 10px 20px;
    color: #FFF;
    text-decoration: none;
    font-size: 14px;
    background: url(../img/arrow.png) right 20px center no-repeat;
    background-size: 5px 8px;
}

.related-content a:hover {
    background: #ff5a79 url(../img/arrow.png) right 20px center no-repeat;
    background-size: 5px 8px;
}

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

footer {
    padding: 1em 0;
    background-color: #262626;
}

.footer-top {
    text-align: center;
    margin: 1em 0;
}

.footer-top a {
    color: #FFF;
    font-size: 18px;
}

.footer-menu {
    margin: 1em 0;
}

.footer-menu ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style-type: none;
}

.footer-menu ul li a {
    color: #FFFF;
}

.copyright {
    margin: 1em 0;
    font-size: 13px;
    text-align: center;
}

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

.modal-open {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 50px;
    font-weight: bold;
    color: #fff;
    background: #000;
    margin: auto;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 50%);
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;
}

.modal-container:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.modal-container.active {
    opacity: 1;
    visibility: visible;
}

.modal-body {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 500px;
    width: 90%;
}

.modal-close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 40px;
    color: #AAA;
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: #fff;
    text-align: left;
    padding: 30px;
}

.explanation {
    cursor: pointer;
    text-decoration: underline;
}

p#explanation {
    color: #121212;
}

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

.wsp-container li {
    margin-left: 20px;
}

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

#pack_search {
    padding-bottom: 20px;
}

#pack_search .search-select, #pack_search .search-input {
    position: relative;
    border: 1px solid #bbb;
    border-radius: 2px;
    background: #fff;
    margin-bottom: 1em;
}

#pack_search .search-select::before {
    position: absolute;
    top: 1em;
    right: 0.9em;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666;
    pointer-events: none;
}

#pack_search p {
    font-size: 15px;
    font-weight: bold;
    color: #ea153c;
    padding: 0px;
    margin: 0px 0px 2px 0px;
}

#pack_search .search-select select {
    width: 100%;
    padding-right: 1em;
    cursor: pointer;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
    padding: 8px 38px 8px 8px;
    color: #000;
    font-size: 15px;
}

#pack_search .search-input input {
    width: 100%;
    box-sizing: border-box;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
    padding: 8px;
    color: #000;
    font-size: 15px;
}

#pack_search .search-select select::-ms-expand {
    display: none;
}

#pack_search .enter-btn {
    width: 100%;
    height: 50px;
    background: #009E1C;
    font-size: 15px;
    line-height: 1.75;
    font-weight: bold;
    border: solid 1px #EEE;
    cursor: pointer;
    color: #FFF;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
