@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho:wght@400;500;600;700;800&family=Tenor+Sans&display=swap');

html {
    /**
     * 主要ブラウザのデフォルトフォントサイズは16pxなので、1rem=16px
     * スマホ版を見据えてremでサイズ指定したいので、10/16(0.625)することで、1rem=10pxにする。
     * 12px = 1.2rem
     * 16px = 1.6rem
     * 20px = 2rem ...
     */
    font-size: 62.5%;

    /** default font-style */
    font-family: "Noto Sans JP", serif;

    /*
    font-family: "Noto Sans JP", serif;
    font-family: "Shippori Mincho", serif;
    font-family: "Tenor Sans", serif;
    */

    color: #0C090D;
}

body {
    margin: 0;
}
body.common__dialog-open {
    overflow: hidden;
}

p, h1, h2, h3, h4, h5, h6, figure, ol, ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

dl {
    margin: 0;
}

dd {
    margin: 0;
}

button {
    cursor: pointer;
    border: none;
}

a {
    cursor: pointer;
}

h1,h2,h3,h4,h5,h6 {
    margin: 0;
}



/** 共通 */
.common__common--overlay {
    position: absolute;
    inset: 0 0;
    width: 100%;
    height: 100%;
    padding-bottom: 0.1rem;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.common__header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.common__header-overlay.active {
    display: block;
}

.contents-not-show {
    display: none !important;
}

.contents-for-sp {
    display: none;
}

@media screen and (max-width: 767px) {
    .contents-for-sp {
        display: block;
    }
    .contents-for-pc {
        display: none;
    }
}

.common__main-page.common__common--overlay {
    display: block;
}

/** header部分 */
.common__header--logo-gbc {
    width: 22rem;
    height: 6.2rem;
    display: inline-flex;
}

@media screen and (max-width: 991px) {
    .common__header--logo-gbc {
        display: none;
    }
}

.common__header--logo-gbc-sp {
    display: none;
}

@media screen and (max-width: 991px) {
    .common__header--logo-gbc-sp {
        display: block;
        width: 13.8rem;
        height: 3.6rem;
        margin-top: 0.65rem;
        margin-bottom: 0.65rem;
    }
}

.common__header--top {
    display: flex;
    align-items: center;
    height: 7.8rem;
    gap: 0;
    padding: 0 max(1.6rem, calc(50% - 64rem))0.8rem;
    background-color: #FFF;
}

@media screen and (max-width: 991px) {
    .common__header--top {
        height: 4.9rem;
    }
}

/* ==== Outer gradient (PC & SP) ==== */
.common__header--button-bg,
.common__header--button-bg-sp {
    /* selectタグの疑似要素では制御できないため、新規でクラスを作成 */
    display: inline-block;
    /* thickness of the gradient border area */
    padding: 0.12rem;
    border-radius: 5.6rem;
    background: linear-gradient(0.25turn, #FF8FAD, #92A3FF);
    margin: 0 max(0.8rem, calc(100% - 103rem)) 0 0;
    position: relative;
    /* width/height are now auto based on inner content */
}

/* SP-specific tweaks for outer wrapper (if you still need smaller min size, keep only for SP) */
.common__header--button-bg-sp {
    display: none;
}

/* PC/SP switch */
@media screen and (max-width: 991px) {
    .common__header--button-bg {
        display: none;
    }
    .common__header--button-bg-sp {
        display: inline-block;
    }
}

/* ==== Inner white button (PC & SP) ==== */
.common__header--button-region,
.common__header--button-region-sp {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5.6rem;
    background-color: #FFF;
    border: none;
    outline: none;
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1;
    color: #0C090D;
    /* サイズはテキスト + 余白 で決まる */
    padding: 0.8rem 3.0rem 0.8rem 1.2rem; /* right side more for arrow */
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    white-space: nowrap;
    /* width / height removed so it’s content-based */
}

.common__header--button-region-sp {
    display: none;
}

/* ==== Arrow (chevron) ==== */
.common__header--button-region::before,
.common__header--button-region::after,
.common__header--button-region-sp::before,
.common__header--button-region-sp::after {
    content: '';
    position: absolute;
    width: 0.13rem;
    height: 0.7rem;
    background: #606283;
    border-radius: 0.1rem;
}

/* 左の棒 */
.common__header--button-region::before,
.common__header--button-region-sp::before {
    transform: translateY(-50%) rotate(-45deg);
    top: 50%;
    right: 1.7rem;
}

/* 右の棒 */
.common__header--button-region::after,
.common__header--button-region-sp::after {
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
    right: 1.3rem;
}

/* ==== SP inner button tweaks ==== */
@media screen and (max-width: 991px) {
    .common__header--button-region-sp {
        display: inline-flex;
        font-size: 1.2rem;
        padding: 0.6rem 2.4rem 0.6rem 1rem;
    }
}

.common__header--nav-region {
    display: none;
    position: absolute;
    box-sizing: border-box;
    top: calc(100% + 0.8rem);
    left: 0rem;
    width: 28rem;
    height: 33.6rem;
    background: linear-gradient(0.25turn, #FF8FAD, #92A3FF);
    border-radius: 0.8rem;
    z-index: 1000;
}

.common__header--nav-region-active {
    display: block;
}

.common__header--ul-region {
    box-sizing: border-box;
    position: relative;
    top: 0.2rem;
    left: 0.2rem;
    border-radius: 0.6rem;
    background-color: #FFF;
    width: calc(100% - 0.4rem);
    height: calc(100% - 0.4rem);
}

.common__header--li-region {
    position: relative;
    box-sizing: border-box;
    width: 27.6rem;
    height: 4.8rem;
    border-bottom: solid 0.1rem #E9EAF8;
    padding: 0 1rem 0 2.2rem;
    padding: 0 0 0 2.2rem;
    display: flex;
    align-items: center;
    text-align: left;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background-color 0.3s;
    user-select: none;
    font-weight: 400;
}

.common__header--li-region:nth-of-type(1) {
    height: 4.6rem;
    border-top-left-radius: 0.6rem;
    border-top-right-radius: 0.6rem;
    border-bottom: none;
}

.common__header--li-region:nth-last-of-type(1) {
    height: 4.6rem;
    border-bottom-left-radius: 0.6rem;
    border-bottom-right-radius: 0.6rem;
    border-bottom: none;
}

.common__header--li-region::before {
    content: '';
    position: relative;
    top: 0.1rem;
    left: -0.6rem;
    width: 1.12rem;
    height: 1.12rem;
    background: linear-gradient(0.25turn, #FFCFDC, #9FACF0);
    clip-path: polygon(50% 0, 0 50%, 50% 100%, 100% 50%);
}

.common__header--li-region:hover {
    background-color: #E9EAF8;
}

.common__header--li-region-selected {
    background-color: #F3F5FB;
}

@media screen and (max-width: 991px) {
    .common__header--li-region {
        font-size: 1.2rem;
    }
}

.common__header-top--img {
    width: 2rem;
    height: 2rem;
}

.common__header-top--a {
    cursor: pointer;
}

@media screen and (max-width: 991px) {
    .common__header-top--nav {
        display: none;
    }
}

.common__header-top--ul {
    display: flex;
    padding: 0;
    width: auto;
}

.common__header-top--ul li {
    margin-right: 2.67rem;
    padding-left: 0.2rem;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.8rem;
    letter-spacing: 0.05rem;
}

.common__header-top--ul li a {
    text-decoration: none;
    color: #606283;
    white-space: nowrap;
}

.common__header--input-container {
    position: relative;
    max-width: 34rem;
    width: 100%;
}

.common__header--input {
    position: absolute;
    left: 0;
    box-sizing: border-box;
    flex-grow: 1;
    position: relative;
    width: 100%;
    height: 4.1rem;
    border: solid 0.1rem #E9EAF8;
    padding: 0.8rem 4rem 0.8rem 4rem;
    border-radius: 10rem;
    outline: none;
    font-family: "Noto Sans JP", serif;
    color: #0C090D;
    font-weight: 400;
    font-size: 1.4rem;
    background: #F3F5FB;
}

.common__header--input::placeholder {
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2.52rem;
    letter-spacing: 0.04rem;
    color: #9394A1;
}

.common__header--input-img {
    position: absolute;
    left: 2rem;
    top: 1.4rem
}
@media screen and (max-width: 991px) {
    .common__header--input-container {
        display: none;
    }
}

.common__header--button-search-sp {
    display: none;
}

@media screen and (max-width: 991px) {
    .common__header--button-search-sp {
        position: absolute;
        right: 2rem;
        top: 0.5rem;
        display: unset;
        width: 2.8rem;
        height: 4.1rem;
        background-image: url("../../assets/images/search-red.webp");
        background-repeat: no-repeat;
        background-position: center 0;
        background-size: 2.8rem 2.8rem;
        object-fit: cover;
        box-sizing: border-box;
        padding: 2.8rem 0 0 0;
        background-color: #FFF;
        font-weight: 400;
        font-size: 1.1rem;
        line-height: 100%;
        color: #E43B68;
    }

    .common__header--button-search-sp.__menu-open {
        width: 3.3rem;
        background-image: url("../../assets/images/cross-red.webp");
    }
}

.common__header--close-button {
    height: 100%;
    margin: 0.4rem 0 0.4rem auto;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    padding: 0;
}

.common__header--close-button span {
    font-size: 1.1rem;
    line-height: 100%;
    color: #E43B68;
    white-wrap: nowrap;
}

.common__header--ul-prefecture {
    box-sizing: border-box;
    padding: 0 calc(50% - 64rem);
    width: 100%;
    height: 4rem;
    background: #8195FF;
    display: flex;
    align-items: center;
    overflow-x: scroll;
    overflow-y: none;
}

.common__header--ul-prefecture::-webkit-scrollbar {
    display: none;
}

.common__header--li-prefecture {
    position: relative;
    box-sizing: border-box;
    min-width: fit-content;
    width: auto;
    height: 2.8rem;
    border-radius: 2.4rem;
    display: flex;
    align-items: center;;
    justify-content: center;
    color: #FFF;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 2.4rem;
    letter-spacing: 0.05rem;
    padding-right: 2rem;
    padding-left: 1.2rem;
    margin: 0 0.4rem;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s;
}

.common__header--li-prefecture span::before,
.common__header--li-prefecture span::after {
    content: '';
    position: absolute;
    width: 0.13rem;
    height: 0.7rem;
    background-color: #FFF;
}

.common__header--li-prefecture span::before {
    transform: rotate(-45deg);
    top: 1.2rem;
    right: 1.2rem;
}

.common__header--li-prefecture span::after {
    transform: rotate(45deg);
    top: 1.2rem;
    right: 0.8rem;
}

.common__header--li-prefecture:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 991px) {
    .common__header--li-prefecture {
        font-size: 1.2rem;
    }
}

.common__header--li-prefecture-selecting {
    position: relative;
    background-color: #6F84F2;
}

/* 旧デザインの三角形は不要なので打ち消し */
.common__header--li-prefecture-selecting::before,
.common__header--li-prefecture-selecting::after {
    content: none !important;
}

.common__header--li-prefecture-selecting::before {
    top: 3.6rem;
    left: inherit;
    width: 3.6rem;
    height: 2.8rem;
    background: linear-gradient(0.25turn, #FF8FAD, #92A3FF);
    transform: translate(0) rotate(90%);

    clip-path: polygon(50% 0, 0 100%, 100% 100%, 50% 0);
    z-index: 2;
}

.common__header--li-prefecture-selecting::after {
    top: 4rem;
    left: inherit;
    width: 3.6rem;
    height: 2.8rem;
    background-color: #FFF;;
    transform: translate(0) rotate(0);
    clip-path: polygon(50% 0, 0 100%, 100% 100%, 50% 0);
    z-index: 3;
}

.common__header--nav-prefecture {
    position: relative;
    overflow-x: scroll;
    overflow-y: visible;
}

.common__header--nav-prefecture::-webkit-scrollbar {
    display: none;
}

/* ==== エリアダイアログ（PC） ==== */
.common__header--nav-city-bg {
    display: none;
    position: fixed;
    box-sizing: border-box;

    /* ヘッダー(7.8rem) + 都道府県バー(4rem) + 矢印高さ(2.8rem) ≒ 14.6rem */
    top: 14.6rem;

    /* 初期状態は中央寄せ。クリック時に JS で left を上書きして
       選択中の都道府県タブの真下に持っていきます */
    left: 50%;
    transform: translateX(-50%);

    width: 85rem;
    height: 66.5rem;
    max-height: calc(100vh - 18rem);

    background: linear-gradient(0.25turn, #FF8FAD, #92A3FF);
    border-radius: 0.8rem;
    padding: 0.6rem 3.2rem 1.6rem 3.2rem;
    z-index: 1000;
    overflow: visible;
}

/* 都道府県バーとダイアログをつなぐ三角形（ふきだし） */
.common__header--nav-city-bg::before,
.common__header--nav-city-bg::after {
    content: '';
    position: absolute;
    width: 3.6rem;
    height: 2.8rem;
    /* JS から渡される位置。デフォルトは中央(50%) */
    left: var(--arrow-left, 50%);
    transform: translateX(-50%);
    clip-path: polygon(50% 0, 0 100%, 100% 100%, 50% 0);
}

/* 外側のグラデーション枠 */
.common__header--nav-city-bg::before {
    top: -2.8rem;                /* 三角のベースがダイアログ上辺にくっつくように調整 */
    background: linear-gradient(0.25turn, #FF8FAD, #92A3FF);
    z-index: 1000;
}

/* 内側の白い三角部分 */
.common__header--nav-city-bg::after {
    top: -2.4rem;                /* 外枠より少し下げて “フチあり” に見せる */
    background-color: #FFF;
    z-index: 1001;
}

.common__header--nav-city {
    position: absolute;
    box-sizing: border-box;
    top: 0.2rem;
    left: 0.2rem;
    width: calc(100% - 0.4rem);
    height: calc(100% - 0.4rem);
    background-color: #FFF;
    border-radius: 0.68rem;
    padding: 1.6rem 2.8rem 1.6rem 2.8rem;
    z-index: 1001;
    overflow-y: auto;
}

.common__header--nav-city-active {
    display: block;
}

.common__header--ul-city {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    margin: 0;
}

.common__header--li-city {
    position: relative;
    box-sizing: border-box;
    width: 14.4rem;
    height: 4.5rem;
    border-bottom: solid 0.1rem #E9EAF8;
    padding: 0 1rem 0 2.2rem;
    padding: 0 0 0 2.2rem;
    display: flex;
    align-items: center;
    text-align: left;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background-color 0.3s;
    user-select: none;
}

.common__header--li-city::before {
    content: '';
    position: relative;
    top: 0.1rem;
    left: -0.6rem;
    width: 1.12rem;
    height: 1.12rem;
    background: linear-gradient(0.25turn, #FFCFDC, #9FACF0);
    clip-path: polygon(50% 0, 0 50%, 50% 100%, 100% 50%);
}

.common__header--li-city:hover {
    background-color: #E9EAF8;
}

.common__header--li-triangle {
    display: flex;
}

.common__header--li-triangle::before {
    content: '';
    position: absolute;
    top: 1.8rem;
    right: 2.2rem;
    width: 0.1rem;
    height: 0.7rem;
    border-radius: 0.1rem;
    transform: rotate(-45deg);
    background-color: #606283;
}

.common__header--li-triangle::after {
    content: '';
    position: absolute;
    top: 2.24rem;
    right: 2.2rem;
    width: 0.1rem;
    height: 0.7rem;
    border-radius: 0.1rem;
    transform: rotate(45deg);
    background-color: #606283;
}

/** main部分 */
main {
    position: relative;
}

.common__main--top-link {
    display: flex;
    flex-wrap: nowrap;
    height: 3.4rem;
    align-items: end;
    padding-left: max(1.6rem, calc(50% - 64rem));
}

@media screen and (max-width: 767px) {
    .common__main--top-link {
        height: 3.4rem;
        align-items: center;
    }
}

.__narrow {
    padding-left: calc(50% - 71rem);
}

.common__main--top-link li {
    display: flex;
}

.common__main--top-link li::after {
    content: '/';
    position: relative;
    font-size: 1.2rem;
    line-height: 1.8rem;
    font-weight: 400;
    margin: 0 0.3rem;
}

@media screen and (max-width: 767px) {
    .common__main--top-link li {
        align-items: center;
    }

    .common__main--top-link li::after {
        margin: 0 0.6rem;
    }
}


.common__main--top-link li:nth-last-of-type(1)::after {
    display: none;
}

.common__main--img-home {
    width: 1.8rem;
    height: 1.8rem;
    display: flex;
    position: relative;
    bottom: 0.1rem;
    margin-right: 0.3rem;
}

@media screen and (max-width: 767px) {
    .common__main--img-home {
        width: 1.4rem;
        height: 1.4rem;
    }
}

.common__main--a-top-link {
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.8rem;
    letter-spacing: 0.05rem;
    text-align: center;
    color: #0C090D;
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    .common__main--a-top-link {
        font-size: 1rem;
    }
}

.common__main--top-link-text {
    margin: 0;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.8rem;
    letter-spacing: 0.05rem;
    text-align: center;
    color: #0C090D;
}

@media screen and (max-width: 767px) {
    .common__main--top-link-text {
        font-size: 1rem;
    }
}

main.common__common--overlay {
    display: block;
}

.common__main--side-link {
	font-family: Shippori Mincho;
    width: 5.9rem;
    height: 21.3rem;
    border-radius: 0.3rem 0 0 0.3rem;
    background: linear-gradient(121.89deg, #FF8FAD 17.76%, #92A3FF 82.24%);
    writing-mode: vertical-rl;
    text-orientation: upright;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Shippori Mincho;
    font-weight: 800;
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: 0.2rem;
    z-index: 100;
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .common__main--side-link {
        display: none;
    }
}

/** footer部分 */
footer {
    box-sizing: border-box;
    position: relative;
    background-image: url('../../assets/images/footer-bg.webp');
    background-repeat: repeat-y;
    background-position: 0 -3.6rem;
    background-size: 100% calc(100% + 3.6rem);
    display: block;
    padding-left: max(0%, calc(50% - 72rem));
    padding-right: max(0%, calc(50% - 72rem));
    width: 100%;
}

@media screen and (max-width: 767px) {
    footer {
        /** sp版固定フッター用の余白 */
        margin-bottom: 5.2rem;
    }
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.common__footer--top {
    width: 100%;
    padding: 6.4rem max(1.6rem, calc(50% - 64rem));
    display: flex;
    justify-content: stretch;
    gap: 6.4rem;
    box-sizing: border-box;
}

@media screen and (max-width: 991px) {
    .common__footer--top {
        width: 100%;
        padding: 4rem 1.6rem;
        flex-direction: column;
        align-items: center;
        justify-content: unset;
        gap: 4rem;
    }
}

.common__footer--top-inside {
    position: relative;
    width: 100%;
    padding: 8.2rem 0 7.6rem 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width: 991px) {
    .common__footer--top-inside {
        width: fit-content;
        min-width: min(100%, 60.8rem);
        padding-bottom: 0;
    }
}

.common__footer--top-inside::before,
.common__footer--top-inside::after {
    content: '';
    position: absolute;
    display: block;
}

.common__footer--top-inside::before {
    width: 100%;
    height: 4.344rem;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image:
        url("../../assets/images/crown.webp"),
        url("../../assets/images/decoration-line.webp");
    background-repeat: no-repeat no-repeat;
    background-size:
        21.5581rem 3.899rem,
        100% 1.1rem;
    background-position:
        50% 0,
        0 100%;
}

@media screen and (max-width: 991px) {
    .common__footer--top-inside::before {
        height: 3.183rem;
        background-size:
            15.152rem 2.738rem,
            100% 1.1rem;
    }
}

.common__footer--top-inside::after {
    width: 100%;
    height: 4.344rem;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scale(1, -1);
    background-image:
        url("../../assets/images/crown.webp"),
        url("../../assets/images/decoration-line.webp");
    background-repeat: no-repeat no-repeat;
    background-size:
        21.5581rem 3.899rem,
        100% 1.1rem;
    background-position:
        50% 0,
        0 100%;
}

@media screen and (max-width: 991px) {
    .common__footer--top-inside::after {
        display: none;
    }
}

.common__footer--p-title {
    position: relative;
    font-weight: 600;
    font-size: 2.4rem;
    font-family: "Shippori Mincho", serif;
    line-height: 3.6rem;
    letter-spacing: 0.05rem;
    color: #0C090D;
    text-align: center;
    margin-bottom: 3.2rem;
}

.common__footer--p-title::before {
    content: '';
    position: absolute;
    background-image: url("../../assets/images/diamond-2.webp");
    background-repeat: no-repeat;
    width: 2.2rem;
    height: 1.7rem;
    top: -1.8rem;
    left: calc(50% - 1.1rem);
}


.common__footer--ul-parent {
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 991px) {
    .common__footer--ul-parent {
        row-gap: 2.4rem;
    }
}

.common__footer--li-parent {
    display: flex;
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: 0.04rem;
    color: #0C090D;
    height: 2.9rem;
}

@media screen and (max-width: 991px) {
    .common__footer--li-parent {
        flex-direction: column;
        height: unset;
        row-gap: 0.8rem;
    }
}

.common__footer--a-region {
    text-decoration: none;
    box-sizing: border-box;
    width: 12.5rem;
    display: flex;
    align-items: center;
    padding: 0.4rem 1rem 0.4rem 1rem;
    color: #0C090D;
}

@media screen and (max-width: 991px) {
    .common__footer--a-region {
        border: solid 0.1rem #FC7E9F;
        background-color: #FFF;
        color: #000;
        border-radius: 1.85rem;
        width: fit-content;
        height: 3.7rem;
    }
}

.common__footer--a-region-selected {
    background-color: #FC7E9F;
    color: #FFF;
    border-radius: 4.8rem;
}

/* .common__footer--ul-prefecture-2th { */
.common__footer--ul-prefecture {
    width: 100%;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: 0.03rem;
    color: #0C090D;
    height: 2.9rem;
}

@media screen and (max-width: 991px) {
    .common__footer--ul-prefecture {
        font-size: 1.2rem;
        flex-wrap: wrap;
        row-gap: 1.2rem;
        height: unset;
    }
}

.common__footer--ul-prefecture-2th {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: 0.03rem;
    color: #0C090D;
    flex-wrap: wrap;
    row-gap: 1.2rem;
    max-width: 60.8rem;
}

.common__footer--li-prefecture {
    min-width: fit-content;
    box-sizing: border-box;
    padding: 0 1.2rem;
    border-right: solid 0.1rem #9394A1;
}

.common__footer--a-prefecture {
    text-decoration: none;
    color: #0C090D;
}

.common__footer--a-prefecture.common__footer--li-city-selected {
    color: #E43B68;
}

.common__footer--ul-prefecture li:nth-last-child(1) {
    border: none;
}

.common__footer--bottom {
    position: relative;
    box-sizing: border-box;
    height: 21rem;
    display: flex;
    gap: 9.3rem;
    padding: 6.4rem max(1.6rem, calc(50% - 72rem));
    justify-content: center;
}

@media screen and (max-width: 991px) {
    .common__footer--bottom {
        height: auto;
        padding: 4rem 1.6rem 14.8rem 1.6rem;
        gap: 0;
    }
}

.common__footer--logo-gbc {
    position: absolute;
    top: 0;
    left: 1.6rem;
    width: 24rem;
    height: 6.8rem;
    transform: translate(0, 100%);
}

@media screen and (max-width: 991px) {
    .common__footer--logo-gbc  {
        top: unset;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -4rem);
    }
}

.common__footer--bottom-nav {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    width: fit-content;
    height: 8.2rem;
}

@media screen and (max-width: 991px) {
    .common__footer--bottom-nav {
        height: auto;
    }
}

.common__footer--ul-navigation {
    width: fit-content;
    display: flex;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2.1rem;
    letter-spacing: 0.04rem;
    color: #0C090D;
    height: 2.1rem;
    column-gap: 4rem;
}

@media screen and (max-width: 991px) {
    .common__footer--ul-navigation {
        height: unset;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.6rem 2.4rem;
    }
}

.common__footer--li-navigation {
    min-width: fit-content;
}

.common__footer--a-navigation {
    text-decoration: none;
    color: #0C090D;
}

.common__footer--copyright {
    height: 6.6rem;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.8rem;
    color: #0C090D;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.common__footer--img-pagetop {
    position: absolute;
    right: 4.8rem;
    bottom: 4.8rem;
    cursor: pointer;
}

@media screen and (max-width: 991px) {
    .common__footer--img-pagetop {
        right: 2.4rem;
        bottom: 4rem;
    }
}

.common__footer-fixed--nav,
.common__footer-fixed--ul,
.common__footer-fixed--li,
.common__footer-fixed--a {
    display: none;
}

@media screen and (max-width: 767px) {
    .common__footer-fixed--nav {
        display: unset;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 5.2rem;
        z-index: 100;
    }

    .common__footer-fixed--ul {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        width: 100%;
        height: 100%;
    }

    .common__footer-fixed--li {
        display: unset;
        width: 100%;
        height: 100%;
    }

    .common__footer-fixed--a {
        display: block;
        text-align: center;
        background-color: #FFF;
        height: 100%;
        width: 100%;
        padding: 3rem 0 0.8rem 0;
        font-weight: 400;
        font-size: 1.1rem;
        line-height: 130%;
        color: #606283;
        background-position: 50% 0.8rem;
        background-repeat: no-repeat;
        background-size: 2rem 2rem;
        text-decoration: none;
        cursor: pointer;
    }

    .common__footer-fixed--a.active {
        color: #E43B68;
    }

    .common__footer-fixed--ul .common__footer-fixed--li:nth-of-type(1) .common__footer-fixed--a {
        background-image: url("../../assets/images/navigation/home2-off.webp");
    }
    .common__footer-fixed--ul .common__footer-fixed--li:nth-of-type(1) .common__footer-fixed--a.active {
        background-image: url("../../assets/images/navigation/home2-on.webp");
    }
    .common__footer-fixed--ul .common__footer-fixed--li:nth-of-type(2) .common__footer-fixed--a {
        background-image: url("../../assets/images/navigation/search-off.webp");
    }
    .common__footer-fixed--ul .common__footer-fixed--li:nth-of-type(2) .common__footer-fixed--a.active {
        background-image: url("../../assets/images/navigation/search-on.webp");
    }
    .common__footer-fixed--ul .common__footer-fixed--li:nth-of-type(3) .common__footer-fixed--a {
        background-image: url("../../assets/images/navigation/history-off.webp");
    }
    .common__footer-fixed--ul .common__footer-fixed--li:nth-of-type(3) .common__footer-fixed--a.active {
        background-image: url("../../assets/images/navigation/history-on.webp");
    }
    .common__footer-fixed--ul .common__footer-fixed--li:nth-of-type(4) .common__footer-fixed--a {
        background-image: url("../../assets/images/navigation/pencil-off.webp");
    }
    .common__footer-fixed--ul .common__footer-fixed--li:nth-of-type(4) .common__footer-fixed--a.active {
        background-image: url("../../assets/images/navigation/pencil-on.webp");
    }
}

/** footer end */

.common__main-page--title-h1 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 600;
    font-size: 3.5rem;
    line-height: 5.25rem;
    letter-spacing: 0.175rem;
    color: #606283;
    margin: 1.6rem;
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.common__main-page--title-h1 span {
    display: flex;
    align-items: center;
}

.common__title-block--title-h1-decoration-left {
    width: 5.4rem;
    height: 1.42rem;
}

.common__title-block--title-h1-decoration-right {
    width: 5.4rem;
    height: 1.42rem;
    transform: scalex(-1);
}

.common__dialog {
    position: fixed;
    inset: 10px;
    width: auto;
    max-width: 100rem;
    max-height: calc(100vh - 20px);
    border: 0;
    border-radius: 1rem;
    display: none;
    margin: auto;
    padding: 0;
    overflow: auto;
}

.common__dialog.__cast {
    height: min(100%, calc(100vh - 20px));
    max-height: 96.2rem;
}

.common__dialog.__job {
    height: min(100%, calc(100vh - 20px));
    max-height: 91.4rem;
}

/*.common__dialog::-webkit-scrollbar{
    display: none;
}*/

.common__dialog::backdrop {
    background: rgba(0, 0, 0, 0.7);
}

/* 疑似要素でオーバーレイを作成 */
.common__dialog::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    display: none;
}

/* モーダルが表示されたときにオーバーレイを有効化 */
.common__dialog[open] {
    display: block;
}

.common__dialog[open]::before {
    display: block;
}

.common__dialog--header {
    height: 6.2rem;
    background: linear-gradient(90.94deg, #FF8FAD -1.38%, #92A3FF 101.39%);
    position: relative;
}

.common__dialog--h2 {
    font-family: Shippori Mincho;
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: 0.05rem;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
}

.common__dialog--h2::before {
    content: "";
    background: url(../../assets/images/decoration-title.webp) no-repeat;
    background-size: contain;
    display: block;
    width: 5rem;
    height: 1.1rem;
}

.common__dialog--h2::after {
    content: "";
    background: url(../../assets/images/decoration-title.webp) no-repeat;
    background-size: contain;
    display: block;
    width: 5rem;
    height: 1.1rem;
    transform: scaleX(-1);
}

.common__dialog--img--close {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    cursor: pointer;
}

.common__dialog--ul-pref {
    display: flex;
    padding: 1.5rem 1.6rem;
    flex-wrap: wrap;
}

.common__dialog--input-pref {
    display: none;
}

.common__dialog--li-pref {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 150%;
    letter-spacing: 0.05rem;
    text-align: center;
    height: 3rem;
    align-content: center;
    vertical-align:middle;
    white-space: nowrap;
}

.common__dialog--label-pref {
    padding: 0.4rem 1.25rem;
    border-radius: 2.5rem;
    height: 3rem;
    user-select: none;
    cursor: pointer;
}

.common__dialog--input-pref:checked + label {
    background-color: #E43B68;
    color: white;
}

.common__dialog--content {
    padding: 0 1.6rem;
}

.common__dialog--ul-tab {
    display: flex;
    width: 100%;
    border-bottom: 0.1rem #D3D4DB solid;
    margin: 0 0 1.6rem;
}

.common__dialog--li-tab {
    width: 16rem;
    height: 3.7rem;
    padding: 0.8rem 1.6rem;
    border-radius: 0.8rem 0.8rem 0 0;
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: 0.05rem;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    background: #F3F5FB;
    color: #9394A1;
    border: 0.1rem #D3D4DB solid;
    border-bottom: 0;
    cursor: pointer;
    position: relative;
}

.common__dialog--li-tab.__area::before {
    content: url(../../assets/images/map-pin-gray.webp);
    position: absolute;
    top: 1.05rem;
    left: 4rem;
}

.common__dialog--li-tab.__detailed::before {
    content: url(../../assets/images/document-gray.webp);
    position: absolute;
    top: 1.05rem;
    left: 2.6rem;
}

.common__dialog--li-tab.__area.__select::before {
    content: url(../../assets/images/map-pin-white.webp);
    position: absolute;
    top: 1.05rem;
    left: 4rem;
}

.common__dialog--li-tab.__detailed.__select::before {
    content: url(../../assets/images/document-white.webp);
    position: absolute;
    top: 1.05rem;
    left: 2.6rem;
}

.common__dialog--li-tab.__select {
    background: #E43B68;
    color: #fff;
    border: 0;
}

.common__dialog--p-area {
    position: absolute;
    top: 50%;
    left: 6rem;
    transform: translateY(-50%);
    white-space: nowrap;
}

.common__dialog--p-detailed {
    position: absolute;
    top: 50%;
    right: 2.6rem;
    transform: translateY(-50%);
    white-space: nowrap;
}

@media screen and (max-width: 991px) {
    .common__dialog--li-tab {
        width: 12rem;
        height: 4.2rem;
        padding: 1.2rem 1.6rem;
        font-size: 1.2rem;
    }

    .common__dialog--li-tab.__area::before,
    .common__dialog--li-tab.__area.__select::before {
        top: 1.3rem;
        left: 2.3rem;
    }

    .common__dialog--li-tab.__detailed::before,
    .common__dialog--li-tab.__detailed.__select::before {
        top: 1.3rem;
        left: 1.25rem;
    }

    .common__dialog--p-area {
        left: 4.3rem;
    }

    .common__dialog--p-detailed {
        right: 1.25rem;
    }
}

.common__dialog--img-map {
    width: 1.6rem;
    height: 1.7rem;
}

.common__dialog--area {
    height: 41.1rem;;
    max-height: 41.1rem;
    overflow-y: auto;
}

.common__dialog--area.__cast {
    height: 41.1rem;;
    max-height: 67.3rem;
    overflow-y: auto;
}

.common__dialog--area.__job {
    height: 41.1rem;;
    max-height: 62.5rem;
    overflow-y: auto;
}

/*.common__dialog--area::-webkit-scrollbar {
    display: none;
}*/
.common__dialog--detailed {
    max-height: 41.1rem;
    overflow-y: auto;
}

/*.common__dialog--detailed::-webkit-scrollbar {
    display: none;
}*/

.common__dialog--detailed.__cast {
    max-height: 67.3rem;
    overflow-y: auto;
}

.common__dialog--detailed.__job {
    max-height: 62.5rem;
    overflow-y: auto;
}

.common__dialog--h3 {
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: 0.05rem;
    margin: 0;
    padding: 0 1.6rem;
}

.common__dialog--ul-area {
    margin: 1.6rem 0 3.2rem;
    padding: 0 1.6rem;
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fit, 1fr);
}

.common__dialog--ul-area.__detailed {
    grid-template-columns: repeat(3, 1fr);
}

.common__dialog--li-item {
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: 0.05rem;
    padding: 0.8rem;
    width: 30.9rem;
    height: 3.7rem;
    box-sizing: border-box;
    border-radius: 0.8rem;
    color: #383844;
}

/* @media screen and (max-width: 991px) {
    .common__dialog--li-item {
        width: 18.4rem;
    }
}

@media screen and (max-width: 420px) {
    .common__dialog--li-item {
        width: 100%;
        font-size: 1.2rem;
    }
} */

.common__dialog--input-area {
    display: none;
}

.common__dialog--label-area {
    border-radius: 2.5rem;
    user-select: none;
    box-sizing: border-box;
    cursor: pointer;
    padding: 0rem 2.6rem;
    position: relative;
    display: block;
    width: 100%;
}

.common__dialog--label-area::before {
    background: #fff;
    border: 0.1rem solid #9394A1;
    content: '';
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    left: 0;
    margin-top: -0.8rem;
    position: absolute;
    top: 45%;
    border-radius: 0.3rem;
}

.common__dialog--label-area::after {
    border-right: 0.28rem solid #E43B68;
    border-bottom: 0.28rem solid #E43B68;
    content: '';
    display: block;
    height: 1rem;
    left: 0.5rem;
    margin-top: -0.7rem;
    opacity: 0;
    position: absolute;
    top: 43%;
    transform: rotate(45deg);
    width: 0.5rem;
}

.common__dialog--input-area:checked + .common__dialog--label-area::after {
    opacity: 1;
}

.common__dialog--li-item:has(.common__dialog--input-area:checked) {
    background: #FFEFF4;
}

.common__dialog--footer{
    /*height: 11.3rem;*/
    padding: 1.4rem 1.6rem;
    margin: 0 -1.6rem;
    box-sizing: border-box;
    box-shadow: 0 -0.2rem 2rem 0 #78787D1A;
    background: none;
}

.common__dialog--ul-footer {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    margin: 0 0 0.8rem;
    overflow-x: auto;
    white-space: nowrap;
    user-select: none;
}

.common__dialog--ul-footer.active {
    cursor: grabbing;
}

.common__dialog--ul-footer::-webkit-scrollbar{
    display: none;
}

.common__dialog--li-footer {
    height: 3rem;
    padding: 0.6rem 0.7rem;
    border-radius: 10rem;
    background: #F3F5FB;
    border: 0.1rem solid #606283;
    display: flex;
    gap: 1rem;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 120%;
    box-sizing: border-box;
}

.common__dialog--img-cross {
    width: 1.1rem;
    height: 1.1rem;
    align-self: center;
    cursor: pointer;
}

.common__dialog--p-reset {
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 150%;
    letter-spacing: 0.05rem;
    text-decoration: underline;
    color: #0C090D;
    margin-left: 0.6rem;
    cursor: pointer;
}

.common__dialog--result {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    justify-content: flex-end;
}

.common__dialog--p-count {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 150%;
    letter-spacing: 0.05rem;
    color: #0C090D;
}

.common__dialog--span {
    font-family: Noto Sans JP;
    font-weight: 400;
    font-size: 2.4rem;
    line-height: 150%;
    letter-spacing: 0.05rem;
    color: #E43B68;
}

.common__dialog--button {
    width: 22rem;
    height: 4.3rem;
    padding: 0.8rem 1.6rem;
    margin: 0;
    border-radius: 10rem;
    background: #E43B68;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 150%;
    border: 0;
    color: #fff;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.common__dialog--button::after {
    content: "";
    background: url(../../assets/images/search-white.webp) no-repeat;
    background-size: contain;
    width: 1.8rem;
    height: 1.8rem;
    position: absolute;
    top: 50%;
    right: 1.6rem;
    transform: translateY(-50%);
}

.__inactive {
    background: url(../../assets/images/search-gray.webp) no-repeat;
    background: #E9EAF8;
    color: #9394A1;
    cursor: not-allowed;
}

.__inactive::after {
    background: url(../../assets/images/search-gray.webp) no-repeat;
}

.common__dialog--range {
    margin: 1.6rem 1.6rem 4.5rem;
}

.common__dialog--container {
    display: flex;
    gap: 0.8rem;
}

.common__dialog--p {
    display: block;
    width: 15.6rem;
    height: 4.8rem;
    border-radius: 0.4rem;
    gap: 0.2rem;
    padding-top: 2rem;
    padding-right: 1.2rem;
    padding-bottom: 0.6rem;
    padding-left: 1.2rem;
    border: 0.1rem solid #9394A1;
    box-sizing: border-box;
    position: relative;
}

.common__dialog--p::before {
    position: absolute;
    top: 0.5rem;
    left: 1.2rem;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 100%;
    letter-spacing: 0.04rem;
    color: #606283;
}

.__lower::before {
    content: "下限";
}

.__upper::before {
    content: "上限";
}

.common__dialog--bar {
    width: 32rem;
    height: 0.2rem;
    background: #606283;
    margin: 3.5rem 0;
    position: relative;
}

.common__dialog--bar::before {
    content: "";
    display: block;
    width: 2.2rem;
    height: 2.2rem;
    border: 0.1rem solid #606283;
    border-radius: 50%;
    background: #606283;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.common__dialog--bar::after {
    content: "";
    display: block;
    width: 2.2rem;
    height: 2.2rem;
    border: 0.1rem solid #606283;
    border-radius: 50%;
    background: #606283;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

/* sp版の絞り込みダイアログ */
.common__bottom-sheet {
    position: fixed;
    top: 5.7rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 5.7rem);
    transform: translateY(100%);
    transition: transform 0.3s;
    background-color: #FFF;
    z-index: 1;
}

.common__bottom-sheet.__is-open {
    transform: translateY(0);
}

body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.common__bottom-sheet--header {
    width: 100%;
    height: 8rem;
    padding: 1.6rem 6.35rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90.94deg, #FF8FAD -1.38%, #92A3FF 101.39%);
    position: relative;
}

.common__header--button-close-sp {
    position: absolute;
    width: 3.2rem;
    height: 3.2rem;
    top: 50%;
    left: 1.2rem;
    transform: translateY(-50%);
    color: transparent;
    background: url('../../assets/images/system-uicons_cross.webp');
    background-size: 100%;
    background-position: center;
}

.common__bottom-sheet--nav {
    display: flex;
    width: 100%;
    height: 6rem;
}

.common__bottom-sheet--nav-item {
    width: calc(100% / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem 0 0.8rem;
    box-sizing: border-box;
    border-bottom: 2px solid #D3D4DB;
    font-family: 'Noto Sans JP';
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 150%;
    letter-spacing: 0.06rem;
    color: #606283;
}

.common__bottom-sheet--nav-item.__selected {
    color: #E43B68;
    border-bottom: 2px solid #E43B68;
    box-shadow: 0 2px 0 0 #7F80894D;
}

.common__bottom-sheet--nav-icon {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.2rem;
}

.common__bottom-sheet--header-text {
    font-family: 'Shippori Mincho';
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 150%;
    letter-spacing: 0.08rem;
    color: #FFF;
    text-align: center;
    vertical-align:middle;
    padding: 0 5rem;
    position: relative;
}

.common__bottom-sheet--header-text::before,
.common__bottom-sheet--header-text::after {
    content: '';
    position: absolute;
    width: 5rem;
    height: 1.1rem;
    top: 50%;
    background-image: url('../../assets/images/title-decoration.webp');
    background-size: 100%;
    background-position: center center;
}

.common__bottom-sheet--header-text::before {
    left: 0;
    transform: translateY(-50%);
}
.common__bottom-sheet--header-text::after {
    right: 0;
    transform: scale(-1, 1) translateY(-50%);
}

.common__bottom-sheet .common__header--input-container {
    display: flex;
    margin: 1.6rem 0.8rem;
    width: calc(100% - 1.6rem);
    max-width: 56rem;
}

.common__dialog--ul-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.common__bottom-sheet .common__dialog--ul-wrapper::-webkit-scrollbar{
    display: none;
}

.common__bottom-sheet .common__dialog--ul-pref {
    padding: 0 0.8rem 1.2rem;
    flex-wrap: nowrap;
}

.common__bottom-sheet .common__dialog--li-pref {
    font-size: 1.2rem;
    height: 3.4rem;
}

.common__bottom-sheet .common__dialog--label-pref {
    padding: 0.8rem 1.2rem;
}

.common__bottom-sheet .common__dialog--content {
    position: relative;
    padding: 0;
}

.common__bottom-sheet .common__dialog--ul-tab {
    margin: 0 0 1.2rem;
}

.common__bottom-sheet .common__dialog--h3 {
    font-size: 1.2rem;
}

.common__bottom-sheet .common__dialog--ul-area {
    margin: 0.8rem 0 0;
    padding: 0 1.6rem 2.4rem;
}

.common__bottom-sheet .__spacer {
    padding: 0 1.6rem 10.6rem;
}

.common__bottom-sheet .common__dialog--footer {
    position: fixed;
    width: 100vw;
    height: 11.6rem;
    bottom: 0;
    left: 1.6rem;
    z-index: 1;
    box-shadow: 0px -2px 20px 0px #78787D1A;
    padding: 1.6rem 0;
    box-sizing: border-box;
    background-color: #FFF;
}

.common__bottom-sheet .common__dialog--ul-footer {
    padding: 0 0.8rem;
    margin: 0 0 1.6rem;
}

.common__bottom-sheet .common__dialog--li-footer {
    height: 2.8rem;
    font-size: 1.2rem;
}

.common__bottom-sheet .common__dialog--p-count {
    font-size: 1.2rem;
}
.common__bottom-sheet .common__dialog--span {
    font-size: 2rem;
}

.common__bottom-sheet .common__dialog--button {
    width: 12.8rem;
    height: 4rem;
    padding: 0.8rem 3.05rem;
    margin-right: 1.6rem;
    font-size: 1.6rem;
}

.common__bottom-sheet .common__dialog--button::after {
    display: none;
}

.common__bottom-sheet .common__dialog--button.__inactive {
    background-color: #E43B68;
    color: #FFF;
}

.common__bottom-sheet .common__dialog--detailed {
    overflow-y: overlay;
}

/** sp版のエリア選択のダイアログ */
.common__sp-dialog--container {
    position: fixed;
    background-color: #FFF;
    width: 100%;
    max-width: unset;
    height: auto;
    max-height: 41rem;
    box-sizing: border-box;
    padding: 0 0 10.6rem 0;
    margin: auto 0 0 0;
    box-shadow: 0 0.3rem 2rem 0 rgba(106, 108, 124, 0.1);
    background-image: linear-gradient(to right, #FF8FAD, #92A3FF);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% 5.6rem;
    border: none;
    border-top-left-radius: 0.8rem;
    border-top-right-radius: 0.8rem;
    overflow: hidden;
}

.common__sp-dialog--container::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 992px) {
    .common__sp-dialog--container {
        display: none;
    }
}


.common__sp-dialog--button-close {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    width: 3.2rem;
    height: 3.2rem;
    background-color: transparent;
    background-image: url("../../assets/images/select-area_cross.webp");
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 3.2rem 3.2rem;
    display: inline-flex;
    outline: none;
}

.common__sp-dialog--p-change-region {
    position: relative;
    text-align: center;
    width: fit-content;
    font-family: "Shippori Mincho", serif;
    color: #FFF;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 150%;
    letter-spacing: 0.05rem;
    margin: 0 0 0 50%;
    transform: translate(-50%, 25%);
    height: 5.6rem;
}

.common__sp-dialog--p-change-region::after,
.common__sp-dialog--p-change-region::before {
    content: '';
    position: absolute;
    top: 0.1rem;
    width: 3.792rem;
    height: 0.834rem;
    background-image: url("../../assets/images/decoration-1.webp");
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 3.792rem 0.834rem;
}

.common__sp-dialog--p-change-region::before {
    left: -0.7rem;
    transform: translate(-100%, 100%) scale(-1, 1);
}

.common__sp-dialog--p-change-region::after {
    left: calc(100% + 0.7rem);
    transform: translate(0, 100%);
}

.common__sp-dialog--ul-region {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    box-sizing: border-box;
    padding: 1.6rem;
    width: 37.5rem;
    margin-left: 50%;
    transform: translateX(-50%);
}

.common__sp-dialog--button-region {
    width: 16.7rem;
    height: 4.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../../assets/images/button-bg.webp");
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% 100%;
    border-radius: 0.4rem;
    outline: none;
    font-weight: 700;
    color: #FFF;
    font-family: "Noto Sans JP", serif;
    font-size: 1.6rem;
    line-height: 150%;
}

/* Remove focus outline on dialog */
.common__dialog--area, 
.common__dialog,
.common__dialog:focus,
.common__dialog:focus-visible {
    outline: none;
}

.common__dialog--button-reset {
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 150%;
    letter-spacing: 0.05rem;
    text-decoration: underline;
    color: #0C090D;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: none; /* 条件が選択されるまで非表示 */
}

/* Generic 2-handle range slider */
.common-range-slider {
  --crs-track-h: 4px;
  --crs-thumb: 16px;

  position: relative;
  width: 100%;
  height: var(--crs-thumb);
  /* keep spacing OUTSIDE the component if possible */
}

.common-range-slider__track,
.common-range-slider__range {
  position: absolute;
  top: 50%;
  height: var(--crs-track-h);
  transform: translateY(-50%);
  border-radius: 999px;
}

.common-range-slider__track {
  left: 0;
  right: 0;
  background-color: #e5e5e5;
}

.common-range-slider__range {
  background-color: #f3a0c8;
}

.common-range-slider__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  background: transparent;
  pointer-events: none;

  appearance: none;
  -webkit-appearance: none;
}

/* ---------- WebKit (Chrome / Safari / iOS) ---------- */
/* Define the native track height so the thumb can be centered deterministically */
.common-range-slider__input::-webkit-slider-runnable-track {
  height: var(--crs-track-h);
  background: transparent;
  border: 0;
}

.common-range-slider__input::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;

  width: var(--crs-thumb);
  height: var(--crs-thumb);
  box-sizing: border-box;

  /* Structural: center thumb around a track of --crs-track-h */
  margin-top: calc((var(--crs-track-h) - var(--crs-thumb)) / 2);

  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #f3a0c8;
}

/* ---------- Firefox ---------- */
.common-range-slider__input::-moz-range-track {
  height: var(--crs-track-h);
  background: transparent;
  border: 0;
}

.common-range-slider__input::-moz-range-thumb {
  pointer-events: auto;

  width: var(--crs-thumb);
  height: var(--crs-thumb);
  box-sizing: border-box;

  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #f3a0c8;
}

/* Optional: remove the default focus outline style differences if you want */
.common-range-slider__input:focus {
  outline: none;
}
