*{
    margin: 0;
    position: relative;
    box-sizing: border-box;
}
header {
    height: auto;
    background-size: cover;
}
img {
    width:100%;
}
a {
    text-decoration: none;
}

.main-body {
    padding-bottom: 50px;
}
.main-catch {
    text-align: center;
    font-size: 70px;
    color: #FFF;
    font-family: serif;
    padding:48px 0 25px 0;
}
.navigation {
    list-style: none;
    min-width: 768px;
    max-width: 990px;
    margin: 0 auto 25px;
    text-align: center;
}
.navigation-headding {
    display: inline-block;
    text-align: center;
    margin-bottom: 25px;
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
}
.navigation-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.navigation-item {
    width: 100px;
    height: 100px;
}
.navigation-item+.navigation-item {
    margin-left: 12px;
}
.navigation-button {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    border: none;
    box-shadow: none;
    background: #050505;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    transition: all ease-out .2s;
}
.navigation-button._area-h {
    border: 3px solid #00CCFF;
    color: #00CCFF;
}
.navigation-button._area-th {
    border: 3px solid #00FFD8;
    color: #00FFD8;
}
.navigation-button._area-hr {
    border: 3px solid #F24769;
    color: #F24769;
}
.navigation-button._area-n {
    border: 3px solid #FEB901;
    color: #FEB901;
}
.navigation-button._area-tt {
    border: 3px solid #D267F5;
    color: #D267F5;
}
.navigation-button._area-k {
    border: 3px solid #FE64D7;
    color: #FE64D7;
}
.navigation-button._area-t {
    border: 3px solid #20E401;
    color: #20E401;
}
.navigation-button._area-q {
    border: 3px solid #C5A16B;
    color: #C5A16B;
}
.navigation-button.is-current {
    background: #ffffff;
}

.girls-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    min-width: 768px;
    max-width: 990px;
    margin: 0 auto 24px;
}
.girls-item {
    opacity: 0;
    width: 20%;
    padding: 4px 4px 8px;
    box-sizing: border-box;
    animation: fadeIn .2s forwards;
}
@keyframes fadeIn{
    0%{opacity: 0;}
    100%{opacity: 1}
}
.girls-item.is-hidden {
    display: none;
}
.girls-link {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;;
}
.girls-imageWrap {
    position: relative;
    width: 100%;
    padding-top: 125%;
}
.girls-image {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
.girls-information {
    position: absolute;
    left: 0;
    bottom: calc(48px - 50%);
    width: 100%;
    height: 50%;
    padding: 8px 0;
    background: rgba(0,0,0,0.2);
    transition: all ease-out .2s;
}
.girls-link:hover .girls-information {
    bottom: 0;
    background: rgba(0,0,0,0.5);
}
.girls-name,
.girls-shop {
    display: block;
    width: 100%;
    padding: 0 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    line-height: 1.2em;
    color: #FFFFFF;
}
.girls-name {
    margin-bottom: 4px;
    font-weight: bold;
}
.girls-shop {
    padding-bottom: 8px;
}
.girls-shop:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    display: block;
    width: 0;
    height: 1px;
    background: #FFF;
    transition: all ease-out .2s .1s;
}
.girls-link:hover .girls-shop:after{
    width: 100%;
}
.girls-comment {
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(100% - 56px);
    padding: 0 8px;
    font-size: 12px;
    line-height: 1.5em;
    color: #FFFFFF;
    transition: all ease-out .2s .2s;
}
.girls-link:hover .girls-comment{
    top: 48px;
}

.girls-area {
    padding: 6px 0 2px;
    background: #555;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}
.girls-area._area-h {
    background: #00CCFF;
}
.girls-area._area-th {
    background: #00FFD8;
}
.girls-area._area-hr {
    background: #F24769;
}
.girls-area._area-n {
    background: #FEB901;
}
.girls-area._area-tt {
    background: #D267F5;
}
.girls-area._area-k {
    background: #FE64D7;
}
.girls-area._area-t {
    background: #20E401;
}
.girls-area._area-q {
    background: #C5A16B;
}

.girl-moreButton {
    display: block;
    width: 300px;
    margin: 0 auto;
    padding: 16px 0;
    border: 2px solid ;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-radius: 30px;
}
.girl-moreButton.is-hidden {
    display: none;
}
p.navigation-headding::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0dd";
    top: -6px;
    position: relative;
    margin-right: 5px;
    color: #d80224;
}
/* ↓ヘッダー */
.logo {
    width: 25%;
    text-align: center;
    margin: auto;
    animation: fadeIn 1s .5s forwards;
}
.left {
    width: 20%;
    margin: 16% 0 0 10%;
    display: inline-block;
}
.right {
    width: 19%;
    position: absolute;
    right: 13%;
    top: 65%;
}
.Selection {
    width: 50%;
    margin: auto;
}
.header_box_01 {
    margin-bottom: 25px;
}
.header_box_03 li {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 10px;
    list-style: none;
    float: left;
    box-shadow: 2px 8px 9px;
    #060501
}
ul.area {
    margin: auto;
    display: table;
    text-align: center;
}
span.area_btn {
    font-size: 23px;
    font-weight: bold;
}
span.zenkoku_btn i {
    margin-left: 2px;
}
/* ↑ヘッダー */

/* ↓フッター */
.footer_box_01 {
    background: #FFF;
    padding: 15px;
    font-weight: bold;
    text-align: center;
    color: #FFF;
    height: 110px;
}
.footer_box_01 span {
    color: #FFEB3B;
    padding: 0 5px;
}
.footer_box_02 {
    background: #000;
    display: grid;
    text-align: center;
    padding-bottom: 100px;
}
.footer_box_02 li {
    float: left;
    list-style: none;
}
.footer_box_02 p {
    color: #FFC107;
}
.footer_box_02 a {
    color: #FFF;
    margin: 0 15px;
}
div.area {
    margin: auto;
    padding: 30px 0;
    display: table;
}
.footer_box_02 li a:hover {
    opacity: 0.6;
}
.footer_box_01 i {
    margin-left: 5px;
}
.footer_box_01 p {
    display: inline;
}
.footer_box_01 div:first-child {
    display: block;
    width: 590px;
    top: -65px;
    margin: auto;
}
.footer_list_01 {
    background: #b500f0;
    padding: 25px;
}
a.girl-moreButton.js-moreGirl:hover {
    background: #9631e2;
    cursor: pointer;
}
a.girl-moreButton.js-moreGirl::after {
    font-family: "Font Awesome 5 Free";
    content: "\f0d7";
    margin-left: 5px;
}
.main-body {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1d010a+0,1d010a+40&1+0,0+0,1+7 */
background: -moz-linear-gradient(top, rgba(29,1,10,0) 0%, rgba(29,1,10,1) 7%, rgba(29,1,10,1) 40%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(29,1,10,0) 0%,rgba(29,1,10,1) 7%,rgba(29,1,10,1) 40%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(29,1,10,0) 0%,rgba(29,1,10,1) 7%,rgba(29,1,10,1) 40%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#001d010a', endColorstr='#1d010a',GradientType=0 ); /* IE6-9 */
}
.banner {
    width: 100%;
}
.footer_logo {
    width: 150px;
    margin: auto;
}
.area p a {
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 1.5px;
}
.area p a:after {
    background-color: #FFF;
    border-radius: 5px;
    content: "";
    display: block;
    height: 8px;
    margin: auto;
    margin-top: 10px;
    width: 100%;
}
.area p {
    margin-bottom: 40px;
    display: inline-flex;
}
div.area {
    margin: auto;
    padding: 40px 0 50px;
}
.area p a span {
    color: #f9dd9e;
}
.footer_list_01 p {
    font-size: 20px;
}
p.member_toroku_btn {
    background: #000;
    padding: 10px;
    display: table;
    margin: auto;
    margin-top: 15px;
}
p.member_toroku_btn a {
    color: #FFF;
    font-size: 15px;
    letter-spacing: 1.5px;
}
p.member_toroku_btn i {
    color: #b500f0;
}
/* ↑フッター */

@media screen and (max-width:768px) { 
 ul.area {
     width:100%;
}  
.header_box_03 li {
    width: calc(89%/8);
    height: 85px;
    margin: 0 0.5%;
}
 span.area_btn {
    font-size: 20px;
}
.main-catch {
    font-size: 50px;
    padding: 40px 0 25px 0;
}
.Selection {
    width: 80%;
}
.header_box_01 {
    margin-bottom: 7%;
}
img.nominate-headdingImage._normalview {
    margin-bottom: -8px;
}
.footer_box_02 {
    padding-bottom: 70px;
}
.header_box_03 li:first-child{
    margin-left: 2%;
}
.header_box_03 li:last-child{
    margin-right: 2%;
}
}


/*ヘッダー上エリアメニュー*/
.topAreamenu {
    text-align: center;
}
.topAreamenu-toggle {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    font-weight: bold;
    background: #151515;
    color: #FFF;
    cursor: pointer;
}
.topAreamenu-toggle:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0da";
    top: 0px;
    position: relative;
    margin-right: 5px;
    color: #d80224;
}
#topAreamenuCheck {
    display: none;
}
.topAreamenu-list {
    height: 0;
    transition: all ease-out .25s;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0;
    list-style: none;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2) inset;
    background: #fff;
}
#topAreamenuCheck:checked+.topAreamenu-list {
    height: 50px;
}
.topAreamenu-item {
    margin: 0 8px;
}
.topAreamenu-link {
    color: #151515;
    border-bottom: 2px solid;
    padding: 2px 4px;
    display: inline-block;
    font-size: 14px;
}
