html,
body {
    font-size: 62.5%;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, 'Noto Sans JP', "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: #1a1a1a;
    font-size: 16px;
    word-break: normal;
    font-weight: 400;
    line-height: 1.6;
}

img {
    max-width: none;
}

.contents {
    height: auto;
    background: transparent;
    padding-top: 50px;
    user-select: none;
    max-width: none;
}

.contents-top {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contents-top-main {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

/* ↓ トップ画像 */
.top-hero-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.top-image-container {
    position: relative;
    width: 100%;
    display: flex;
    height: 70svh;
}

.top-image-container img {
    object-fit: cover;
    height: auto;
    width: 100%;
    flex: 1;
    max-width: calc(100% / 3);
    object-position: top;
}

.pc-image {
    display: block;
}

.sp-image {
    display: none;
}

.top-text-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    bottom: 24px;
    left: 16px;
    right: 16px;
    color: white;
    text-shadow: 1px 1px 1px black, 1px 2px 1px black, 1px 6px 2px rgba(16, 16, 16, 0.2);
    z-index: 10;
    text-align: left;
    word-break: break-word;
    width: fit-content;
}

.top-text-container .hero-subtitle {
    font-size: 16px;
    display: block;
    position: relative;
}

.top-text-container .hero-subtitle.has-content {
    padding-left: 20px;
}

.top-text-container .hero-subtitle.has-content::before {
    content: "▶";
    font-size: 0.5em;
    color: red;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    text-shadow: none;
}

.top-text-container .hero-title {
    font-size: 27.5px;
    font-weight: 700;
    padding-left: 20px;
    line-height: 3rem;
}

.top-text-container .hero-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    padding-left: 20px;
}

@media (max-width: 767px) {
    .top-text-container .hero-title {
        font-size: 20px;
    }

    .top-text-container .hero-description {
        font-size: 13px;
    }

    .top-text-container .hero-subtitle.has-content::before {
        left: 8px;
        top: 56%;
    }

    .top-image-container {
        height: 50svh;
    }
    .top-image-container img {
        max-width: 100%;
    }

    .top-text-container {
        left: 2px;
    }

    .pc-image {
        display: none;
    }

    .sp-image {
        display: block;
    }
}

/* ↑ トップ画像 */

/* ↓ map */
.contents-top-map {
    margin: 24px;
}

@media (max-width: 767px) {
    .contents-top-map {
        margin: 20px 0 0 0;
    }
    .map__wrap {
        margin: 16px;
    }
}

/* ↑ map */

/* ↓ 女の子リストエリア */
.twocolumn {
    display: flex;
    gap: 32px;
    align-items: stretch;
}

.twocolumn>* {
    flex: 1;
    direction: ltr;
}

.girls-list-container {
    margin: 16px;
}

@media (max-width: 768px) {
    .twocolumn {
        flex-direction: column-reverse;
    }

    .girls-list-container .section-title{
        font-size: 24px;
    }
}

/* ↑ 女の子リストエリア */

/*　↓ 女の子リスト */
ul.girls_lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    list-style: none;
    padding: 0;
}

.girls_list {
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    background: #f0f0f0;
    aspect-ratio: 3/4;
    transition: all 0.3s ease;
}

.girls_list:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.girls_list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.girl_infos {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0.5em;
    display: flex;
    flex-direction: column;
    color: white;
    font-size: 14px;
    line-height: 1.25em;
    font-weight: 500;
    word-break: normal;
    background-color: rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

.girl_info {
    color: white;
    font-size: 14px;
    line-height: 1.25em;
    font-weight: 500;
    word-break: normal;
}

.girl_info:not(:first-child) {
    font-size: 12px;
    font-weight: 300;
}

.girl_info {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 2px;
}

.girl_info:last-child {
    margin-bottom: 0;
}

.girl_info>* {
    flex-shrink: 0;
    white-space: nowrap;
}

.girl_info> :first-child {
    flex-shrink: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 8px;
}

.girl_link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    text-decoration: none;
}

.no-data {
    grid-column: 1 / 4;
}

.no-data {
    text-align: center;
    padding: 40px;
    color: #999;
    background: #f9f9f9;
    border-radius: 10px;
}

/* ローディング */
.loading-container {
    text-align: center;
    padding: 40px 0;
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    ul.girls_lists {
        grid-template-columns: repeat(2, 1fr);
    }

    .no-data {
        grid-column: 1 / -1;
    }
}

/*　↑ 女の子リスト */


/* ↓　女の子検索 */
.girl_search_wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    line-height: 1.5em;
}

.girl_search {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px 0px, rgba(0, 0, 0, 0.04) 0px 2px 6px 0px, rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(0, 0, 0, 0.01) 0px 0px 1.5px 0px;
    background-color: rgb(250, 250, 250);
    border-radius: 10px;
}

.input_item {
    width: 100%;
    gap: 8px;
    display: flex;
    flex-direction: column;
}


/* セレクトボックスと×ボタンのラッパー */
.select_wrapper,
.input_wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.select_wrapper select,
.input_wrapper input {
    flex: 1;
    padding: 0 40px 0 1em;
    height: 48px;
    border: solid 1px rgb(234, 234, 234);
    border-radius: 7.5px;
    background-color: #fff;
}


/* ×ボタンのスタイル */
.clear_btn {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}


/* 日時指定エリアのスタイル */
.date_time_item {
    flex-direction: column;
    gap: 12px;
}

.date_input_wrapper,
.time_input_wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* 口コミチェックボックス*/
.checkbox_item {
    flex-direction: row;
    align-items: center;
    padding: 8px 0;
}

.checkbox_label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #4a4a4a;
    font-size: 14px;
}

.checkbox_label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgb(234, 234, 234);
    border-radius: 4px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox_label input[type="checkbox"]:checked+.checkmark {
    background-color: #a01b1f;
    border-color: #a01b1f;
}

.checkbox_label input[type="checkbox"]:checked+.checkmark::after {
    content: "✓";
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.girl_search label {
    color: #4a4a4a;
    font-size: 14px;
    font-weight: 500;
}

.girl_search input[type="submit"] {
    border: none;
    border-radius: 9999px;
    background-color: #a01b1f;
    color: white;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    height: 48px;
    margin-top: 8px;
}

.sec_girl_search .section-title {
    display: none;
}

/* セレクトボックスのスタイリング */
.girl_search select {
    appearance: none;
}

.girl_search select {
    color: #999;
}

.girl_search select:invalid {
    color: #999;
}

.girl_search select:valid {
    color: #333;
}

.girl_search select option {
    color: #333;
}

.girl_search select option:first-child {
    color: #999;
}

select option[disabled] {
    display: none;
}

@media (min-width: 768px) {
    .sec_girl_search .section-title {
        display: block;
        opacity: 0;
    }

    .date_time_item {
        flex-direction: row;
        align-items: end;
        gap: 16px;
    }

    .date_input_wrapper,
    .time_input_wrapper {
        flex: 1;
    }
}

/* ↑　女の子検索 */


/* ↓ 口コミ */
.contents_review .contens_title {
    width: calc(100% - 16px);
}

.search_btn img {
    height: 35px;
}

.search_btn {
    border: solid #eaeaea 1px;
    border-radius: 9999px;
    text-align: center;
    font-size: 16px;
    line-height: 1.5em;
    margin: 4px 0;
    padding: 8px 24px;
    width: 100%;
    position: relative;
}

.review_all_text::after {
    content: ">";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.contents_review {
    margin: 16px;
    width: calc(100% - 16px);
}

.contents_review .review_box {
    width: 100%;
}

.review_box .review_slider_box {
    overflow-x: auto;
    overflow-y: hidden;
}

.review_box .review_slider {
    width: max-content;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    padding-top: 10px;
}

.review_box .review_slider > :last-child {
    margin-right: 16px;
}

.review_box .review_list {
    width: 300px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.review_box .review_list:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.review_box .review_link {
    flex-shrink: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 16px;
    text-decoration: none;
}

.review_title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    display: block;
    width: 88%;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.review_rate {
    display: flex;
    align-items: center;
}

.review_item_star {
    display: flex;
    padding-right: 4px;
    position: relative;
    left: -2px;
}

.review_average_star_icon.in_item {
    width: 24px;
    height: 24px;
    vertical-align: bottom;
}

.review_average_star_icon.star_on {
    background-image: url('/img/renewal/star-fill.svg');
}

.review_average_star_icon.star_half {
    background-image: url('/img/renewal/star-half.svg');
}

.review_average_star_icon.star_off {
    background-image: url('/img/renewal/star-border.svg');
}

.review_item_star .total_rate {
    position: relative;
    color: #DF9B56;
    font-weight: bold;
    padding: 0 3px 0;
}

.review_text {
    font-size: 14px;
    text-align: left;
    line-height: 1.5;
    word-break: break-word;
    color: #4a4a4a;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rl_user {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.img_profile_waku {
    width: 48px;
}

.img_profile {
    right: 0;
    left: 0;
    overflow: hidden;
    margin: auto !important;
    box-sizing: border-box;
    box-shadow: var(--boxshadow);
}

.img_profile img {
    max-width: 46.5px;
    max-height: 31px;
}

.review_dataItem {
    text-align: right;
    font-size: 0.6em;
    line-height: 1.5em;
}

.review_all_link,
.srcGirl .search {
    width: 75%;
    display: block;
    background: #000;
    color: #FFF;
    line-height: 46px;
    border-radius: 23px;
    position: relative;
    overflow: hidden;
    height: 46px;
    font-size: 18px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 30%);
    margin: 20px auto 0;
    background-color: #eb6100;
    border: 2px solid #b84c00;
}

.review_all_link span,
.srcGirl .search span {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFF;
}

.review_all_link span::after,
.srcGirl .search span::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    right: -20px;
    bottom: 50%;
    border-bottom: 3px solid #FFF;
    border-left: 3px solid #FFF;
    transform: rotate(45deg) translateY(-50%);
    transform: rotate(225deg) translateY(-50%);
    margin-bottom: -3px;
}

.total_rate {
    position: relative;
    color: #DF9B56;
    font-weight: bold;
    padding: 0 3px 0;
    font-size: 19px;
}

@media screen and (max-width: 1000px) {
    .review_box .more-btn {
        width: calc(100% - 16px);
    }
}

@media screen and (max-width: 768px) {
    .search_btn img {
        height: 27px;
    }
}

/* ↑ 口コミ */


/* ↓ 漫画バナー */
.contents_manga {
    margin: 64px 16px 16px 16px;
}

.manga-banner {
    display: block;
    text-align: center;
    margin: 16px 0;
}

.manga-banner img {
    width: 100%;
    max-width: 500px;
}

.contents-top__Manga {
    text-align: center;
}

@media screen and (max-width:767px) {
    .contents_manga {
        margin: 30px auto 0;
    }

    .contents_manga {
        margin: 64px 16px 16px 16px;
    }
}

/* ↑ 漫画バナー */


/* ↓ 共通もっと見るボタン */
.more-btn {
    display: inline-block;
    border: solid #eaeaea 1px;
    border-radius: 9999px;
    text-align: center;
    font-size: 16px;
    line-height: 1.5em;
    margin: 16px 0;
    padding: 8px 24px;
    width: 100%;
    position: relative;
    background-color: #fff;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
}

.more-btn::after {
    content: ">";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: bold;
}

/* ↑ 共通もっと見るボタン */

.section-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin: 15px 0;
    color: #344054;
    letter-spacing: -0.02em;
    text-align: center;
    box-sizing: border-box;
    line-height: 56px;
    margin: 0;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 28px;
        margin: 0;
    }
}

.section-subtitle {
    box-sizing: border-box;
    text-align: center;
    padding-top: 4px;
    color: #344054;
    font-size: 16px;
    line-height: 26px;
    margin: auto;
    max-width: 600px;
}

@media screen and (max-width:767px) {
    .section-subtitle {
        font-size: 13px;
    }
}

/* コンテンツ説明----- */
.contents-description {
    max-width: 1000px;
    padding: 0 16px;
    margin: 30px auto 0;
}


/* TRAVELER NEWS------ */
.contents-description .contents-top__news {
    border: none;
}

.contents-description.news {
    margin: 0 auto;
    width: fit-content;
}

.contents-top__news iframe {
    width: 100%;
    height: 462px;
    border: none;
}

.contents-top__news p {
    text-align: right;
    font-size: 18px;
}

/* ------TRAVELER NEWS */


/* 注意事項----------- */
.contents-description div {
    margin-top: 64px;
    font-size: 16px;
    text-align: left;
}

.contents-description h4 {
    margin: 0;
    padding: 0;
    font-weight: bold;
}

.contents-description p {
    margin: 0;
    font-size: 14px;
    color: #888;
    margin: 16px 0;
}

/* -----------注意事項 */

/* コンテンツバナー---- */
.contents-banner {
    max-width: 480px;
    margin: 10px auto 0;
}

/* ナイトライフ-------- */
.nightlife_link a {
    display: flex;
    background-color: #f4f4f4;
    padding: 2.5%;
}

.nightlife_img {
    max-width: 25%;
    padding-right: 2.5%;
    margin: auto;
}

.nightlife_text {
    font-size: 15px;
    word-break: break-word;
    width: 72.5%;
}

.nightlife_text span {
    font-size: 18px;
    font-weight: bold;
}

.nightlife_text.sp {
    display: none;
}

.nightlife_img img {
    max-width: 100%;
}

@media screen and (max-width:767px) {
    .nightlife_text {
        font-size: 14px;
    }

    .nightlife_text span {
        font-size: 16px;
    }

    .nightlife_text.pc {
        display: none;
    }

    .nightlife_text.sp {
        display: block;
    }
}

/* --------ナイトライフ */


/* YouTube・漫画------------- */
.travelerch-link_img {
    width: 100%;
}

/* buttom-menu */
.guest-footer__button {
    width: auto;
    padding: 8px 16px;
}

.guest-footer__container {
    gap: 8px;
    box-sizing: border-box;
}

.section-title-wrapper {
    margin-bottom: 20px;
}

/* 地方記事 */
/* 共通スタイル */
.area_article_before,
.area_article_after {
    color: #0f65ef;
    text-decoration: underline;
    cursor: pointer;
}

/* 個別スタイル */
.area_info {
    max-height: calc(1.5em * 3.5);
    overflow-y: auto;
    overflow-x: hidden;
    line-height: 1.5em;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

.area_article_text {
    line-height: 1.5em;
    word-break: normal;
}

.area_article_before,
.area_article_after {
    display: none;
}
