﻿@charset "utf-8";
/* CSS Document */
.error {
    color: #fdd000;
    font-size: 12px;
    margin: 0 0 10px 0;
    font-weight: bold;
}

/* --------------------------------------------------------------------
ページャー設定
-------------------------------------------------------------------- */
/* 1行のみ表示 */
.one_line {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
/* 2行のみ表示 */
.two_line {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 0px !important;
}
/* 3行のみ表示 */
.three_line {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 0px !important;
}
section#pager {
    margin: 0px;
    padding: 30px 0px 10px;
}
.pager_area {
    position: relative;
    width: auto;
}
.pager_area ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.pager_area ul li {
    width: 40px;
    margin: 0px 5px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 40px;
    text-align: center;
    border-color: #FDD000;
    color: #FDD000;
}
.pager_area ul li a {
    display: block;
    color: #FDD000;
    padding: 8px 0px;
    border-radius: 20px;
}
.pager_area ul li:nth-of-type(n+2):nth-last-of-type(n+2) a {
   /* background: #FFF;*/
    border: 1px solid #FDD000;
}
.prev_page a {
    background-image: url("../img/arrow_left4.svg") !important;
    background-repeat: no-repeat !important;
    background-size: 13px 7px !important;
    background-position: left center !important;
}
.next_page a {
    background-image: url("../img/arrow_right.svg") !important;
    background-repeat: no-repeat !important;
    background-size: 13px 7px !important;
    background-position: right center !important;
}
.now_page {
    width: 38px !important;
    background: #FDD000;
    color: #FFF !important;
    border: 1px solid #FDD000;
    padding: 8px 0px;
    border-radius: 20px;
}
.search_result {
    font-size: 16px;
    font-weight: bold;
    color: #414042;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}
.search_result::after {
    content: '件';
    font-size: 12px;
    font-weight: normal;
    display: inline-block;
    top: 4px;
    right: -15px;
    position: absolute;
}
.bold {
    font-weight: bold;
}

/* --------------------------------------------------------------------
スライダー
-------------------------------------------------------------------- */
.swiper-area {
    overflow: hidden;
    position: relative;
}
.swiper-container {
    width: 100%;
    /*max-height: 40vh;*/
    z-index: 0;
    overflow: hidden;
    padding: 0px 0px 20px;
    margin: 0px;
}
.swiper-container.senpai-detail {
    margin-bottom: -35px;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin-bottom: 2px;
}

.swiper-container div.img-box{
    height: 57vw;
    max-height: 530px;
    width: 100%;
    text-align: center;
    display: flex;
}

@media screen and (max-width: 736px) {
    .swiper-container div.img-box{
        height: 70.5vw;
    }
}

.swiper-container div.img-box img {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
}

.swiper-pagination {
    bottom: 4px !important;
    position: relative;
}
.swiper-pagination.inside {
    bottom: 35px !important;
    z-index: 999;
}
.swiper-pagination-bullet {
    display: inline-block;
    border-radius: 100%;
    background: rgba(251, 113, 34, 0.1) !important;
    opacity: 10 !important;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #FDD000 !important;
}
