@charset "utf-8";

section{
    margin :16px;
}
p {
    font-size: 14px;
    font-weight: 400;
    color: #888;
    line-height: 1.25em;
}
a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
}

button {
    border-width: 0;
}

.wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content {
    max-width: 1000px;
    min-width: 0;
    width: 100%;
}

.area_content_columns {
    margin-top: 34px;
}

/* 幅が768以上の時 */
@media (min-width: 768px) {
    .area_content_columns {
        display: grid;
        grid-template-columns: minmax(0px, 1fr) minmax(0, 3fr);
        grid-template-areas:
        "search description"
        "search aiConcierge"
        "search slider"
        "search shopLists";
        max-width: 1200px;
        width: 100%;
        margin: auto;
        gap: 1em;
    }

    .shop_search {
        grid-area: search;
        min-width: 210px;
    }

    .ai-concierge-search {
        display: block;
        grid-area: aiConcierge;
    }

    .description {
        grid-area: description;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .sec_your_girls {
        grid-area: slider;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .search_box_list {
        grid-area: shopLists;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .area_header_wrap {
        display: grid;
        grid-template-columns: 2fr 1fr;
    }

    .area_header_wrap .header_img_wrap {
        grid-column: 2;
        grid-row: span 2;
        display: flex;
        align-items: flex-start;
        margin-top: 16px;
    }
}

/* 幅が767以下の時 */
@media (max-width: 767px) {
    /* 全体 */
    .area_content_columns {
        display: flex;
        flex-direction: column;
    }

    .shop_search { order: 3; }
    .description { order: 1; }
    .ai-concierge-search { order: 2; }
    .sec_your_girls {
        order: 4;
    }
    .search_box_list { order: 5; }

    .header_img_wrap img {
        width: 80% !important;
    }
}

/* エリアセクション */
.page_header_wrap {
    margin: 1em;
}

.header_img_wrap {
    width: 100%;
    text-align: center;
}

.page_region {
    color: rgb(118, 118, 118);
}

.page_title {
    color: rgb(17, 17, 17);
    font-size: 44px;
    font-weight: bold;
}

.page_subtitle {
    font-size: 20px;
    color: rgb(118, 118, 118);
}

.currently_published_counts {
    display: flex;
    justify-content: right;
    margin: 0.5em 0;
    gap: 0.5em;
    color: #888;
}

.currently_published_counts .sum_count {
    color: red;
}

/* 記事 */
.area_info {
    position: relative;
    margin: 1em;
}

.area_article_text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.area_article_text.expanded {
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.area_article_before {
    display: block; /* 初期表示 */
    position: absolute;
    right: 0;
    bottom: 0;
    color: #0f65ef;
    text-decoration: underline;
    cursor: pointer;
    background: white;
    padding-left: 0.6em;
    line-height: 1.4;
    word-break: normal;
}

.area_article_before::before {
    content: "...";
    margin-right: 0.5em;
    text-decoration: none;
    display: inline-block;
    color: #333;
}

.area_article_after {
    display: none;
    color: #0f65ef;
    text-decoration: underline;
    cursor: pointer;
    text-align: center;
    margin-top: 10px;
}

/* 女の子スライダー */
.sec_your_girls {
    margin: 0;
    margin-top: 16px;
}

.your_girls_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.your_girls_sec {
    max-width: none;
    width: 100%;
}

.your_girls_sec_texts {
    display: flex;
    justify-content: space-between;
    padding: 0.5em;
    background-color: #a01b1f;
}

.your_girls_sec_texts p, .your_girls_sec_texts .review_all_text{
    color: #ffffff;
    text-align: center;
}

ul.your_girls {
    display: flex;
    overflow-x: auto;
}

li.your_girl {
    width: 120px;
    flex-shrink: 0;
    aspect-ratio: 3/4; /* 縦横比を固定 */
    overflow: hidden;  /* はみ出し防止 */
}

li.your_girl a img {
    width: 100%;
    height: 100%;      /* 追加 */
    object-fit: cover; /* 追加 */
    display: block;    /* 追加 */
}

/* 幅が767以下の時 */
@media (max-width: 767px) {
    .your_girls_sec_texts {
        flex-direction: column;
        text-align: center;
    }
    .your_girls_sec_texts p,
    .your_girls_sec_texts span {
        font-size: 12px;
    }
}

/* 店舗一覧 */
.search_box_list {
    padding-top: 36px;
}

.shops {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* 漫画バナー */
.manga-banner {
    margin-top: 16px;
    display: block;
    position: relative;
    overflow: hidden;
    transition: 300ms;
}

.manga-banner::before {
    position: absolute;
    content: '';
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    transition: 300ms;
    animation: shinyshiny 4.5s ease-in-out infinite;
    z-index: 1;
}

.Manga-tag {
    position: relative;
    padding: 0 39px 0 10px;
    background: linear-gradient(90deg, rgba(247, 93, 139, 1), rgba(254, 220, 64, 1));
    font-size: 16px;
    color: white;
    line-height: 1.3;
    z-index: 0;
    width: fit-content;
}

.Manga-tag:before {
    position: absolute;
    content: '';
    right: -2px;
    top: -2px;
    border: none;
    border-right: solid 40px white;
    border-bottom: solid 79px transparent;
    z-index: -2
}

.manga-banner img {
    border: 1px solid #999;
    /* ↓　UI変更対応 @SC 2024/12/23 */
    position: relative;
    /* ↑　UI変更対応 @SC 2024/12/23 */
}

@media screen and (max-width:767px) {
    .manga-banner {
    padding-bottom: 10px;
    }

    .manga-banner img {
        /* max-width: calc(100% - 20px); */
        max-width: calc(100% - 22px);
        /* padding: 0 10px; */
        margin: 0 10px;
    }

    /* ↓　UI変更対応 @SC 2024/12/23 */
    .Manga-tag {
        margin-left: 10px;
    }

    /* ↑　UI変更対応 @SC 2024/12/23 */
}

@-webkit-keyframes shinyshiny {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0;
    }

    44% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0;
    }

    89% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }

    90% {
        -webkit-transform: scale(4) rotate(45deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}
