:root {
    --text: #3D3D3D;
    --red01: #BD1800;
    --red02: #640000;
    --red03: #FFEEEE;
    --red04: #DA1111;
    --blue01: #008FD1;
    --blue02: #C0EBFF;
    --blue03: #6EC0E6;
    --orange01: #D7A341;
    --gray01: #F1F1F1;
    --gray02: #D9D9D9;
    --gray03: #C5C5C5;
    --gray04: #FBFBFB;
    --gray05: #D5D5D5;
    --white: #FFFFFF;
}


/* ーーーーーーーーーーーー 共通 ーーーーーーーーーーーー */
html {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
}

body {
    margin: 0;
    min-height: 100vh;
    position: relative;
    padding-bottom: 594px;
    box-sizing: border-box;
}

main {
    margin-bottom: 50px;
}

p,
h1,
h2 {
    margin: 0;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

dl,
dd {
    margin: 0;
}

table {
    border-collapse: collapse;
    width: 100%;
}

a {
    color: var(--text);
    text-decoration: none;
    transition: 0.5s;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: 0.5s;
}

a:hover,
button:hover {
    opacity: 0.6;
}

label {
    cursor: pointer;
    transition: 0.5s;
}

label:hover {
    opacity: 0.6;
}

img {
    width: 100%;
}

.container {
    padding: 0 20px;
    max-width: 480px;
    margin: 0 auto;
}

.d-pc {
    display: none;
}

.btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    background-image: linear-gradient(0deg, var(--gray02), var(--gray01));
    border: 1px solid var(--gray03);
    border-radius: 5px;
}

.btn-mini {
    height: 30px;
    font-size: 12px;
    border-radius: 3px;
}

.btn-blue {
    color: var(--white);
    background-image: linear-gradient(0deg, var(--blue01), var(--blue02));
    border: 1px solid var(--blue03);
}

.btn-orange {
    color: var(--white);
    background-image: linear-gradient(0deg, #D18B00, #FFAA00);
    border: 1px solid var(--orange01);
}

.btn span {
    width: 100%;
    padding: 0 25px 0 12px;
}

.btn::after {
    content: "";
    position: absolute;
    top: 52%;
    right: 22px;
    transform: translateY(-50%);
    display: inline-block;
    width: 8px;
    height: 12px;
    background-image: url(../images/btn-arrow.svg);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
}

.btn-mini::after {
    right: 12px;
    width: 6px;
    height: 8px;
}

.btn-blue::after,
.btn-orange::after {
    background-image: url(../images/btn-arrow-white.svg);
}

.btn-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    margin: auto;
    margin-top: 50px;
}

@media (min-width: 900px) {
    html {
        font-size: 16px;
    }

    body {
        padding-bottom: 263px;
    }

    main {
        margin-bottom: 100px;
    }

    .d-sp {
        display: none;
    }

    .d-pc {
        display: block;
    }

    .btn-area {
        gap: 30px;
        margin-top: 60px;
    }
}


/* ーーーーーーーーーーーー ヘッダー ーーーーーーーーーーーー */
header {
    background-color: var(--white);
    border-top: 2px solid var(--red01);
}

header .header-main {
    padding: 0 20px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 880px;
    margin: 0 auto;
}

header .header-main>p {
    font-weight: 700;
}

header .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
}

header .menu>p {
    font-size: 10px;
    font-weight: 500;
}

header .menu label {
    position: relative;
    width: 24px;
    height: 24px;
    transition: 0.5s;
}

header .menu label:hover {
    opacity: 0.6;
}

header .menu label span {
    position: absolute;
    top: calc(50% - 1px);
    left: -5px;
    display: block;
    width: 35px;
    height: 2px;
    background-color: var(--red01);
    border-radius: 5px;
    transition: 0.5s;
}

header .menu label span:first-of-type {
    top: 4px;
}

header .menu label span:last-of-type {
    top: auto;
    bottom: 4px;
}

.drawer_hidden {
    display: none;
}

.drawer_open {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 101;
    cursor: pointer;
    transition: 0.5s;
}

#drawer_input:checked+.drawer_open {
    transition: 0.5s;
}

#drawer_input:checked~.drawer_open span:nth-of-type(1) {
    top: 10px;
    transform: rotate(45deg);
    background-color: var(--text);
}

#drawer_input:checked~.drawer_open span:nth-of-type(2) {
    opacity: 0;
}

#drawer_input:checked~.drawer_open span:nth-of-type(3) {
    bottom: auto;
    top: 10px;
    transform: rotate(-45deg);
    background-color: var(--text);
}

body.is-fixed {
    overflow: hidden;
}

.nav_content {
    width: 324px;
    height: 100%;
    position: fixed;
    z-index: 99;
    overflow: auto;
    background: var(--gray01);
    transition: 0.5s;
    padding: 60px 0 50px;
    top: 0%;
    left: 100%;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    pointer-events: none;
}

.nav_content::-webkit-scrollbar {
    display: none;
}

#drawer_input:checked~.nav_content {
    right: 0;
    left: calc(100% - 324px);
}

.nav_content>div:not(:first-of-type) {
    margin-top: 15px;
}

.nav_content p {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--white);
    height: 28px;
    background-color: var(--red01);
    padding: 0 20px;
}

.nav_content ul li:not(:first-of-type) {
    border-top: 1px solid var(--gray01);
}

.nav_content li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 55px;
    background-color: var(--white);
    padding: 0 20px;
    pointer-events: auto;
}

.nav_content li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    display: inline-block;
    width: 6px;
    height: 10px;
    background-image: url(../images/btn-arrow.svg);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
}

.nav_content li a img {
    width: 40px;
}

.nav_content li a span {
    font-weight: 700;
    font-size: 15px;
}

.nav_back {
    top: 0%;
    left: 0;
    position: fixed;
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    z-index: 90;
    background-color: #000;
    transition: 0.5s;
}

#drawer_input:checked~.nav_back {
    visibility: visible;
    cursor: pointer;
    opacity: 0.7;
}

@media (min-width: 900px) {
    header {
        border-top: 8px solid var(--red01);
    }

    header .header-main {
        height: 80px;
    }

    header .header-main>p {
        font-size: 20px;
    }

    header .menu label {
        width: 28px;
        height: 30px;
    }

    header .menu label span {
        width: 24px;
    }

    header .menu label span:first-of-type {
        top: 5px;
    }

    header .menu label span:last-of-type {
        bottom: 5px;
    }

    #drawer_input:checked~.drawer_open span:nth-of-type(1) {
        left: 0;
    }

    #drawer_input:checked~.drawer_open span:nth-of-type(3) {
        left: 0;
    }

    .nav_content {
        top: -150%;
        bottom: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 880px;
        height: fit-content;
    }

    #drawer_input:checked~.nav_content {
        top: 30px;
        bottom: auto;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .nav_content>div {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .nav_content p,
    .nav_content span {
        font-size: 14px;
    }
}

/* パンくず */
header ol {
    border-top: 1px solid var(--gray03);
    border-bottom: 1px solid var(--gray03);
    background-color: var(--gray02);
    height: 25px;
    display: flex;
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    position: relative;
}

.breadcrumb::before,
.breadcrumb::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: block;
    height: 25px;
    width: 50%;
    background-color: var(--white);
    border-top: 1px solid var(--gray03);
    border-bottom: 1px solid var(--gray03);
}

.breadcrumb::after {
    left: auto;
    right: 0;
    background-color: var(--gray02);
}

header ol li {
    display: flex;
    align-items: center;
    padding-left: 15px;
}

header ol li:not(:last-of-type) {
    position: relative;
    height: 100%;
    padding-right: 8px;
    background-color: var(--white);
}

header ol li:not(:last-of-type)::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 50%;
    left: calc(100% - 1px);
    transform: translateY(-50%);
    display: inline-block;
    width: 14px;
    height: 28px;
    background-image: url(../images/breadcrumb.svg);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
}

header ol li p {
    font-size: 15px;
    font-weight: 700;
}

/* タイトル */
.title {
    height: 40px;
    background-color: var(--red01);
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    padding: 0 20px;
    display: block;
    max-width: 880px;
    width: calc(100% - 40px);
}

.sub-title {
    height: 28px;
    background-color: var(--gray01);
}

.sub-title div {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 100%;
    padding: 0 20px;
    max-width: 880px;
    margin: 0 auto;
}

.sub-title img {
    width: 15px;
}

.sub-title h2 {
    font-size: 13px;
    font-weight: 700;
    color: var(--red01);
}

@media (min-width: 900px) {
    .title {
        height: 64px;
    }

    h1 {
        font-size: 23px;
    }

    .sub-title {
        height: 40px;
    }

    .sub-title img {
        width: 20px;
    }

    .sub-title h2 {
        font-size: 16px;
    }
}


/* ーーーーーーーーーーーー フッター ーーーーーーーーーーーー */
footer {
    width: 100vw;
    position: absolute;
    bottom: 0;
}

footer ul li {
    height: 42px;
    background-color: var(--gray01);
}

footer ul li:nth-of-type(2n) {
    background-color: var(--gray04);
}

footer nav a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    padding: 0 20px;
}

footer nav a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    display: inline-block;
    width: 6px;
    height: 10px;
    background-image: url(../images/btn-arrow.svg);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
}

footer nav a img {
    width: 27px;
}

footer nav a span {
    font-size: 12px;
    font-weight: 700;
}

footer>div {
    background-color: var(--red01);
    color: var(--white);
    padding: 20px;
}

footer .container {
    max-width: 880px;
    padding: 0;
}

footer .container p {
    font-size: 12px;
}

footer .container a {
    font-size: 12px;
    color: var(--white);
    text-decoration: underline;
}

footer .footer-bold {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 11px;
}

footer .footer-flex>div:not(:first-of-type) {
    margin-top: 30px;
}

footer .footer-flex>div:last-of-type {
    display: flex;
    flex-direction: column;
}

footer small {
    display: block;
    width: 100%;
    font-size: 10px;
    text-align: center;
    background-color: var(--white);
    padding: 6px 0;
}

@media (min-width: 900px) {
    footer ul {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
    }

    footer ul li {
        height: 70px;
    }

    footer nav a {
        flex-direction: column;
        justify-content: center;
        gap: 7px;
        padding: 0 10px;
    }

    footer nav a::after {
        right: 15px;
    }

    footer>div {
        padding: 44px 20px;
    }

    footer .footer-bold {
        margin-bottom: 7px;
    }

    footer .footer-flex {
        display: flex;
        gap: 100px;
    }

    footer .footer-flex>div:not(:first-of-type) {
        margin-top: 0;
    }

    footer .footer-flex>div:last-of-type {
        flex-direction: column;
    }
}


/* ーーーーーーーーーーーー トップ ーーーーーーーーーーーー */
.top-title {
    height: 100px;
    flex-direction: column;
    gap: 6px;
}

.top-title p {
    font-size: 10px;
    font-weight: 500;
    color: var(--white);
    padding: 0 20px;
    display: block;
    max-width: 880px;
    width: calc(100% - 40px);
}

.top {
    margin-top: 30px;
}

.top section {
    margin-top: 20px;
}

.top section h2 {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    padding-left: 7px;
    margin-bottom: 10px;
}

.top section h2::before {
    content: "";
    position: absolute;
    top: 55%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 3px;
    height: 20px;
    background-color: var(--red01);
}

.top ul {
    display: flex;
    flex-wrap: wrap;
}

.top ul li {
    width: calc(50% - 10px);
    margin-bottom: 20px;
}

.top ul li:nth-of-type(2n-1) {
    margin-right: 20px;
}

.top ul li:nth-of-type(5) {
    width: 100%;
    margin-right: 0;
}

.top ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
    height: 100%;
}

.top ul li a img {
    width: 34px;
    padding: 15px 0 13px;
}

.top ul li a span {
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: var(--white);
    padding: 2px 0 3px 0;
    background-color: var(--red01);
    border-radius: 0px 0px 5px 5px;
    height: 100%;
    align-content: center;
}

@media (min-width: 900px) {
    .top-title {
        height: 200px;
        gap: 12px;
    }

    .top-title p {
        font-size: 16px;
    }

    .top {
        margin-top: 50px;
        max-width: 880px;
    }

    .top section {
        margin-top: 45px;
    }

    .top section h2 {
        font-size: 20px;
        padding-left: 13px;
        margin-bottom: 20px;
    }

    .top section h2::before {
        top: 50%;
        height: 30px;
    }

    .top ul {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    }

    .top ul li {
        width: 100%;
        margin: 0;
    }

    .top ul li a img {
        width: 60px;
        padding: 20px 0 17px;
    }

    .top ul li a span {
        font-size: 14px;
        padding: 14px 0 15px 0;
        background-color: var(--red01);
    }
}

/* ーーーーーーーーーーーー 検索 ーーーーーーーーーーーー */
.search-title h1 {
    position: relative;
    padding-left: 50px;
}

.search-title h1 span {
    font-size: 14px;
    font-weight: 400;
}

.search-title h1::before {
    content: '';
    background-image: url(../images/rental.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0 0;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

@media (min-width: 900px) {
    .search-title h1 {
        padding-left: 65px;
        max-width: 840px;
    }

    .search-title h1 span {
        font-size: 18px;
    }

    .search-title h1::before {
        width: 35px;
        height: 35px;
        left: 20px;
    }
}

.search {
    margin-top: 50px;
}

.search .btn-list {
    display: flex;
    gap: 15px;
}

.search .btn-list li {
    width: 100%;
}

.search .btn-list a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
    padding: 20px 0;
}

.search .btn-list a img {
    width: 50px;
}

.search .btn-list a span {
    position: relative;
    font-weight: 700;
    color: var(--red01);
    padding-left: 18px;
}

.search .btn-list a span::before {
    content: '';
    background-image: url(../images/search.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0 0;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

@media (min-width: 900px) {
    .search {
        margin-top: 80px;
    }

    .search .btn-list {
        gap: 22px;
    }

    .search .btn-list a {
        gap: 20px;
        padding: 30px 0;
    }

    .search .btn-list a img {
        width: 76px;
    }

    .search .btn-list a span {
        padding-left: 24px;
    }

    .search .btn-list a span::before {
        width: 19px;
        height: 19px;
    }
}

/* チェック - 表 */
.search-check {
    max-width: 880px;
    margin: auto;
}

.search-check label {
    font-size: 16px;
}

.search-check summary {
    position: relative;
    display: block;
    border-bottom: 1px solid var(--gray01);
    padding: 0 20px;
}

.search-check summary::after {
    content: '';
    background-image: url(../images/select-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0 0;
    width: 13px;
    height: 7px;
    position: absolute;
    top: calc(50% - 3px);
    right: 18px;
    transition: 0.3s;
    transform: rotate(0deg);
}

details[open]>summary::after {
    right: 20px;
    transform: rotate(180deg);
}

.search-check summary label {
    position: relative;
    display: flex;
    align-items: center;
    height: 48px;
    margin-right: 30px;
}

.search-check summary label span {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 12px;
}

.search-check details .inner li {
    border-bottom: 1px solid var(--gray01);
}

.search-check details .inner li label {
    position: relative;
    display: flex;
    align-items: center;
    height: 48px;
    padding-left: 50px;
    padding-right: 20px;
}

.search-check details .inner .inner li label {
    padding-left: 80px;
}

.search-check details .inner li label span {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 12px;
}

.search-check details .inner li summary {
    padding: 0;
}

.search-check details .inner li summary label {
    height: 48px;
    padding: 0;
    padding-left: 50px;
    margin-right: 50px;
}

.search-check details .inner li summary label span {
    right: 0;
}

.search-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid var(--gray03);
    border-radius: 0;
    background: #fff;
    cursor: pointer;
    position: relative;
    margin: 0;
    margin-right: 10px;
}

.search-check input[type="checkbox"]:checked {
    background: var(--red01);
    border: none;
}

.btn-search {
    max-width: 880px;
    flex-direction: row;
    gap: 15px;
    padding: 0 20px;
    margin: auto;
    margin-top: 20px;
}

.btn-search .btn {
    font-size: 16px;
    padding-right: 8px;
}

.btn-search .btn::after {
    right: 11px;
}

.btn-fix {
    position: fixed;
    z-index: 2;
    bottom: 0;
    justify-content: center;
    max-width: 100%;
    width: calc(100% - 40px);
    background-color: rgba(61, 61, 61, 0.7);
    padding: 12px 20px;
    transition: 0.3s;
}

.btn-fix.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.btn-search .btn {
    max-width: 410px;
}

@media (min-width: 900px) {
    .search-check summary label {
        margin-right: 30px;
    }

    .btn-search {
        padding: 20px;
        gap: 60px;
    }
}

/* 検索条件 */
.conditions .property-btn {
    margin-top: 20px;
}

.conditions section {
    margin-top: 20px;
}

.conditions h2 {
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    background-color: var(--gray01);
    padding: 3px 0;
}

.conditions .range-text {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    margin: 10px 0;
}

.conditions input[type="range"] {
    margin-bottom: 20px;
}

.conditions ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 15px;
    row-gap: 10px;
    margin-top: 10px;
}

.conditions li label {
    height: calc(100% - 13px);
    font-size: 12px;
    border: 1px solid var(--gray05);
    padding: 6px 9px 7px 9px;
}

.conditions input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border: 1px solid var(--gray03);
    border-radius: 0;
    background: #fff;
    cursor: pointer;
    position: relative;
    margin: 0;
}

.conditions input[type="checkbox"]:checked {
    background: var(--red01);
    border: none;
}

.conditions input[type="checkbox"]:checked::before {
    width: 11px;
    height: 8px;
}

.conditions .btn-area {
    padding-left: 20px;
    padding-right: 20px;
}

.conditions .btn-fix {
    align-items: center;
}

.conditions .btn-fix .btn {
    max-width: 480px;
}

.conditions .btn-normal {
    margin-bottom: 40px;
}

.clear-btn {
    width: calc(100% - 40px);
    max-width: 480px;
    padding: 0 20px;
    margin: 40px auto 0;
}

.clear-btn button {
    font-size: 12px;
    color: var(--text);
    text-decoration: underline;
    padding: 0;
}

.conditions .category-title {
    grid-column: 1 / -1;
    font-size: 14px;
    font-weight: 700;
    color: var(--red01);
    margin-top: 20px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--gray03);
}

.conditions .category-title:first-child {
    margin-top: 0;
}

@media (min-width: 900px) {

    .conditions .property-btn {
        margin-top: 40px;
    }

    .conditions .container {
        margin-top: 40px;
    }

    .conditions h2 {
        font-size: 14px;
    }

}

/* レンジスライダー */
.range-area {
    height: 14px;
    width: calc(100% - 28px);
    margin: auto;
    margin-top: 24px;
    margin-bottom: 10px;
}

.noUi-target {
    height: 4px;
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.noUi-connects {
    overflow: visible;
    position: relative;
    height: 2px;
    background-color: var(--gray03);
}

.noUi-connect {
    position: absolute;
    top: -1px;
    height: 4px;
    background-color: var(--red02);
}

.noUi-handle,
.noUi-horizontal .noUi-handle {
    width: 28px;
    height: 28px;
    right: -14px;
    top: -14px;
    background-color: var(--red01);
    border-radius: 14px;
    border: none;
    box-shadow: none;
    cursor: pointer;
}

.noUi-handle:after,
.noUi-handle:before {
    display: none;
}

.range-pips {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.range-pips p {
    font-size: 11px;
    width: 30%;
    text-align: center;
}

.range-pips p:first-of-type {
    text-align: left;
}

.range-pips p:last-of-type {
    text-align: right;
}

/* もっとみる */
.more-btn {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.more-btn::before {
    content: "";
    position: absolute;
    bottom: 60%;
    left: 0;
    display: block;
    width: 100%;
    height: 34px;
    background-image: linear-gradient(0deg, rgb(255, 255, 255), rgba(255, 255, 255, 0.6));
}

.more-btn .btn {
    font-size: 14px;
    max-width: 160px;
    height: 30px;
}

.more-btn .btn::after {
    top: 50%;
    right: 11px;
    width: 10px;
    height: 10px;
    background-image: url(../images/plus.svg);
}

.more-btn input[type="checkbox"] {
    display: none;
}

.wrap:has(input[type="checkbox"]:checked) .more-btn {
    display: none;
}

.search-equipment .item-wrap li {
    display: none;
}

.search-equipment.wrap:has(input[type="checkbox"]:checked) .item-wrap li {
    display: block;
}

.search-equipment .more-btn::before {
    display: none;
}


/* ーーーーーーーーーーーー 物件一覧 ーーーーーーーーーーーー */
.property .container {
    margin-top: 10px;
}

.property .number {
    font-size: 10px;
}

.property .number span {
    font-size: 14px;
    font-weight: 700;
}

.property-btn {
    margin-top: 10px;
    gap: 10px;
}

.property-btn .btn {
    justify-content: flex-start;
    gap: 8px;
    width: calc(100% - 80px);
    height: 36px;
    font-size: 12px;
    font-weight: 400;
    padding-left: 20px;
    padding-right: 60px;
}

.property-btn .btn::after {
    right: 12px;
    width: 5px;
    height: 7px;
}

.property-btn .btn img {
    width: 18px;
}

.property-btn .btn .text {
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.property-btn .btn .change {
    width: fit-content;
    padding: 0;
    position: absolute;
    right: 22px;
}

@media (min-width: 900px) {
    .property .container {
        margin-top: 38px;
    }

    .property .number {
        font-size: 12px;
    }

    .property .number span {
        font-size: 16px;
    }

    .property-btn {
        gap: 15px;
    }

    .property-btn .btn {
        font-size: 12px;
    }

    .property-btn .btn span {
        font-size: 12px;
    }
}

.property .property-list {
    background-color: var(--gray01);
    margin-top: 20px;
    padding: 20px 0;
}

.select-area {
    display: flex;
    justify-content: space-between;
}

.select-area select {
    width: fit-content;
    padding-right: 30px;
    font-size: 12px;
    height: 32px;
    margin-top: 0;
    background-image: url("../images/select-arrow-gray.svg");
    background-repeat: no-repeat;
    background-size: 10px auto;
    background-position: right 10px center;
    background-color: var(--white);
    border: none;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
}

.property-list ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.property-list li {
    background-color: var(--white);
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 10px;
}

.property-list li h2 {
    font-size: 16px;
    font-weight: 700;
}

.property-list li a>div {
    display: flex;
    gap: 22px;
    border-top: 1px solid var(--gray01);
    margin-top: 10px;
    padding-top: 15px;
}

.property-list li .img-area {
    width: 50%;
    max-width: 125px;
}

.property-list li .text-area {
    flex-shrink: 0;
}

.property-list li .text-area p {
    font-size: 12px;
}

.property-list li .text-area .price {
    font-size: 14px;
    font-weight: 700;
    color: var(--red04);
}

.property-list li .text-area .sub-price {
    font-size: 10px;
}

.property-list li .text-area>div {
    display: flex;
    gap: 7px;
}

.property-list li .btn {
    margin-top: 15px;
    font-size: 16px;
    height: 40px;
}

.property-list .pager {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.pager li {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 33px;
    min-width: 13px;
    font-size: 12px;
    box-shadow: none;
    border: 1px solid var(--gray03);
    padding: 0 10px;
}

.pager.full li.prev,
.pager.full li.next {
    width: 100%;
}

.pager .active {
    color: var(--white);
    background-color: var(--red01);
    border: 1px solid var(--red01);
}

.pager li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.number-right {
    text-align: right;
    margin-top: 15px;
}

@media (min-width: 900px) {
    .property .property-list {
        margin-top: 40px;
        padding: 40px 0;
    }

    .property .property-list .container {
        margin-top: 0;
    }

    .property-list ul {
        gap: 30px;
    }

    .property-list li {
        padding: 18px 20px;
    }

    .property-list li a>div {
        gap: 28px;
    }

    .property-list .pager li {
        padding: 0;
        font-size: 14px;
        height: 47px;
        min-width: 47px;
    }
    .pager li.prev {
        margin-right: 15px;
    }
    .pager li.next {
        margin-left: 15px;
    }
    .property-list .pager li.prev,
    .property-list .pager li.next {
        min-width: 65px;
    }
}

/* ーーーーーーーーーーーー 物件詳細 ーーーーーーーーーーーー */
.dtl .title {
    height: 100%;
    flex-direction: column;
    padding: 10px 0;
}

.dtl .title p {
    font-size: 12px;
    color: var(--white);
    padding: 0 20px;
    display: block;
    max-width: 880px;
    width: calc(100% - 40px);
}

@media (min-width: 900px) {
    .dtl .title {
        height: 88px;
    }

    .dtl .title p {
        font-size: 14px;
    }
}


/* swiper */
.swiper-area {
    margin-top: 15px;
}

.swiper-area .container {
    position: relative;
    max-width: 335px;
}

.swiper-button-next span,
.swiper-button-prev span {
    position: relative;
    width: 100%;
    height: 100%;
}

.swiper-button-next {
    right: -10px !important;
}

.swiper-button-prev {
    left: -10px !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    display: none;
}

.swiper-button-next span::after,
.swiper-button-prev span::after {
    content: "";
    position: absolute;
    background-image: url(../images/slider-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0 0;
    width: 9px;
    height: 14px;
    top: 50%;
    left: 10px;
    transform: translateY(50%);
    rotate: 180deg;
}

.swiper-button-next span::after {
    left: auto;
    right: 10px;
    transform: translateY(-50%);
    rotate: 0deg;
}

.slider .swiper-slide {
    width: calc(100% - 56px) !important;
    padding: 0 28px;
}

.slider .swiper-slide img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 5px;
}

.slider-thumbnail {
    max-width: 480px;
    padding: 0 20px;
    margin: 15px auto 30px;
}

.slider-thumbnail .swiper-slide {
    cursor: pointer;
    width: 68px;
    height: 68px;
    border-radius: 5px;
    margin-right: 9px;
    transition: 0.5s;
}

.slider-thumbnail .swiper-slide:hover {
    opacity: 0.6;
}

.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
    box-sizing: border-box;
    border: 2px solid var(--red01);
}

.slider-thumbnail .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.float-btn {
    position: absolute;
    z-index: 2;
    bottom: 12px;
    right: 57px;
    display: flex;
    gap: 9px;
}

.float-btn button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 48px;
    height: 48px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    padding: 0;
}

.float-btn button img {
    width: 20px;
}

.float-btn button span {
    font-size: 8px;
    color: var(--white);
}

@media (min-width: 900px) {
    .slider-thumbnail {
        max-width: 335px;
    }
}


/* モーダル */
.swiper-area .modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1000;
}

.swiper-area .modal.is-active {
    display: block;
}

.swiper-area .modal .modal-bk {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.swiper-area .modal .modal-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    max-width: 335px;
    margin: 50px auto 0;
}

.swiper-area .modal .modal-btn img {
    width: 22px;
}

.swiper-area .modal .container {
    margin-top: 20px;
}

.swiper-area #modal02 .container {
    overflow-y: scroll;
    height: calc(100vh - 90px);
}

.swiper-area .modal .swiper-slide {
    width: calc(100% - 56px) !important;
    padding: 0 28px;
}

.slider02 .swiper-slide img {
    border-radius: 13px;
}

.swiper-area .modal .swiper-button-next span::after,
.swiper-area .modal .swiper-button-prev span::after {
    background-image: url(../images/slider-arrow-white.svg);
}

.swiper-area .modal .swiper-slide p {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: var(--white);
    margin-top: 20px;
}

.swiper-area .modal .swiper-slide .comment {
    font-size: 12px;
    font-weight: 400;
    margin-top: 7px;
}

.swiper-area #modal02 .modal-btn {
    justify-content: flex-end;
}

.swiper-area .modal ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 20px;
}

.swiper-area .modal li p {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.swiper-area .modal ul ul {
    flex-direction: row;
    gap: 3px;
    flex-wrap: wrap;
}

.swiper-area .modal ul ul li {
    width: 110px;
    height: 110px;
    border-radius: 5px;
    width: calc((100% - 6px) / 3);
}

.swiper-area .modal ul img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: 0.5s;
    border-radius: 5px;
}

.swiper-area .modal ul img:hover {
    opacity: 0.6;
}

.swiper-area .modal .image-area {
    max-width: 280px;
}

.swiper-area .modal .image-area img {
    border-radius: 5px;
}

.swiper-area .modal .image-area p {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: var(--white);
    margin-top: 20px;
}

.swiper-area .modal .image-area .comment {
    font-size: 12px;
    font-weight: 400;
    margin-top: 7px;
}

.dtl dl {
    margin-bottom: 20px;
}

.dtl dl div {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.dtl dl .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 0;
}

.dtl dl .mt {
    margin-top: 5px;
}

.dtl dt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 23px;
    font-size: 12px;
    text-align: center;
    background-color: var(--gray01);
    border-radius: 5px;
}

.dtl dd {
    font-weight: 700;
}

.dtl dd>span {
    font-size: 24px;
    color: var(--red04);
    margin-right: 7px;
}

.dtl dd span span {
    font-size: 16px;
}

.dtl dd .btn {
    width: fit-content;
    height: 30px;
    gap: 5px;
    margin-top: 10px;
}

.dtl dd .btn::after {
    display: none;
}

.dtl dd .btn img {
    width: 10px;
    padding-left: 12px;
}

.dtl dd .btn span {
    font-size: 12px;
    font-weight: 600;
    padding-right: 14px;
    padding-left: 0;
}

@media (min-width: 900px) {
    .dtl dl div {
        gap: 12px;
    }

    .dtl dt {
        height: 28px;
        width: 64px;
        font-size: 14px;
    }
}

.map-area {
    height: 142px;
    max-width: 480px;
    margin: 0 auto;
}

.map-area iframe {
    width: 100%;
    height: 142px;
}

@media (min-width: 900px) {
    .map-area {
        margin-top: 30px;
    }
}

.property.dtl section {
    margin-top: 20px;
}

.dtl section h2 {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    padding-left: 20px;
    margin-bottom: 10px;
}

.dtl section h2::before {
    content: "";
    position: absolute;
    background-image: url(../images/h2.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0 0;
    width: 15px;
    height: 15px;
    top: 54%;
    left: 0;
    transform: translateY(-50%);
}

.bg-gray {
    background-color: var(--gray01);
    padding: 10px 0 20px;
    max-width: 480px;
    margin: 0 auto;
}

.dtl .bg-gray {
    margin-top: 0 !important;
}

.dtl .bg-gray .container {
    margin-top: 0 !important;
}

.bg-white {
    background-color: var(--white);
    border-radius: 10px;
    padding: 15px;
}

.dtl .bg-gray p {
    font-size: 12px;
}

@media (min-width: 900px) {
    .property.dtl section {
        margin-top: 30px;
    }

    .dtl section h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .bg-gray {
        padding: 20px 0 15px;
    }

    .dtl .bg-gray p {
        font-size: 14px;
    }
}

.dtl section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dtl section li {
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    padding: 0;
}

.dtl section li img {
    width: 33px;
}

.dtl section li p {
    font-size: 14px;
}

.dtl section th {
    width: 108px;
    font-size: 12px;
    font-weight: 400;
    vertical-align: top;
    text-align: left;
    background-color: var(--gray01);
    border: 1px solid var(--gray03);
    padding: 6px 10px 8px;
}

.dtl .facility th {
    width: 108px;
}

.dtl section td {
    width: calc(100% - 98px);
    font-size: 12px;
    border: 1px solid var(--gray03);
    padding: 6px 10px 8px;
}


/* CTA */
.dtl .cta {
    background-color: var(--gray01);
    padding-bottom: 15px;
    max-width: 480px;
    margin: 0 auto;
}

.dtl .cta h2 {
    font-size: 18px;
    text-align: center;
    color: var(--white);
    background-color: var(--red01);
    padding: 15px 0;
}

.dtl .cta .container {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.dtl .cta .container img {
    width: 100px;
}

.dtl .cta .container p {
    font-weight: 700;
}

.dtl .cta .container p:first-of-type {
    font-size: 16px;
}

.dtl .cta .container .price {
    font-size: 24px;
    color: var(--red04);
    margin-top: 6px;
}

.dtl .cta .container .price span {
    font-size: 16px;
}

.dtl .cta .btn-area {
    margin-bottom: 0;
}

.dtl .cta .btn {
    font-size: 16px;
    gap: 10px;
    width: 100%;
}

.dtl .cta .btn::after {
    display: none;
}

.dtl .cta .btn img {
    width: 25px;
}


.btn-url {
    width: 204px;
    height: 40px;
    margin: 20px auto;
}

.btn-url .btn {
    font-size: 14px;
}

.btn-url .btn::after {
    display: none;
}

.btn-url img {
    width: 24px;
    margin-right: 5px;
}

.dtl .btn-fix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.dtl .btn-fix img {
    width: 25px;
    margin-left: 16px;
    margin-right: 6px;
}

.dtl .btn-fix .d-pc {
    display: none;
}

.dtl .btn-fix .btn::after {
    right: 8px;
}

.dtl .btn-fix .btn>span {
    font-size: 14px;
    padding: 0;
}

.dtl .btn-fix .btn>span>span {
    display: block;
    font-size: 12px;
    padding: 0;
    margin-bottom: -2px;
}

@media (min-width: 900px) {
    .dtl .btn-fix {
        display: flex;
    }

    .dtl .btn-fix .d-pc {
        display: flex;
    }

    .dtl .btn-fix .btn {
        max-width: 480px;
        margin: 0 auto;
    }

    .dtl .btn-fix .btn::after {
        right: 20px;
    }

    .dtl .btn-fix .btn span {
        font-size: 16px;
        width: fit-content;
        padding-right: 22px;
    }
}

/* もっとみる */
.dtl .item-wrap li:nth-child(n+5) {
    display: none;
}

.dtl .wrap:has(input[type="checkbox"]:checked) .item-wrap li:nth-child(n+5) {
    display: flex;
}

.environ+.more-btn {
    margin-top: 0;
}

.dtl .item-wrap tr:nth-child(n+6) {
    display: none;
}

.dtl .wrap:has(input[type="checkbox"]:checked) .item-wrap tr:nth-child(n+6) {
    display: table-row;
}

.dtl .item-wrap.facility tr:nth-child(n+3) {
    display: none;
}

.dtl .wrap:has(input[type="checkbox"]:checked) .item-wrap.facility tr:nth-child(n+3) {
    display: table-row;
}


/* ーーーーーーーーーーーー 問い合わせ ーーーーーーーーーーーー */
/* ステップ */
.step {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.step::before,
.step::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 5px;
    left: 10px;
    display: block;
    width: calc(50% - 10px);
    height: 1px;
    background-color: var(--gray03);
}

.step::after {
    left: auto;
    right: 10px;
}

.step02::before {
    background-color: var(--red01);
}

.step03::before,
.step03::after {
    background-color: var(--red01);
}

.step li p {
    position: relative;
    font-size: 12px;
    font-weight: bold;
    color: var(--gray03);
    padding-top: 11px;
}

.step li p::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    height: 11px;
    width: 11px;
    border-radius: 11px;
    background-color: var(--gray03);
}

.step01 li:first-of-type p {
    color: var(--text);
}

.step01 li:first-of-type p::before {
    background-color: var(--red01);
}

.step02 li:first-of-type p,
.step02 li:nth-of-type(2) p {
    color: var(--text);
}

.step02 li:first-of-type p::before,
.step02 li:nth-of-type(2) p::before {
    background-color: var(--red01);
}

.step03 li p {
    color: var(--text);
}

.step03 li p::before {
    background-color: var(--red01);
}

@media (min-width: 900px) {
    .step {
        margin-top: 80px;
    }
}

/* 物件情報 */
.contact section {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: space-between;
}

.contact section>div:first-of-type {
    width: 40%;
    max-width: 188px;
}

.contact section>div:last-of-type {
    flex-shrink: 0;
    width: 55%;
}

.contact section img {
    margin-bottom: 15px;
    width: 135px;
}

.contact section h2 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact section p {
    font-size: 12px;
    margin-top: 5px;
}

.contact section .price {
    font-size: 14px;
    font-weight: 700;
    color: var(--red04);
}

.contact section>div>div {
    display: flex;
    gap: 10px;
}

@media (min-width: 900px) {
    .contact section {
        margin-top: 30px;
    }

    .contact section h2 {
        font-size: 18px;
    }

    .contact section .price {
        font-size: 18px;
    }

    .contact section p {
        margin-top: 8px;
    }
}

/* フォーム */
form>div {
    margin-top: 25px;
}

form>div>p {
    font-weight: 700;
}

form ::placeholder {
    color: var(--gray02);
}

form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=date] {
    width: calc(100% - 22px);
    height: 40px;
    margin-top: 8px;
    border-radius: 5px;
    border: 1px solid var(--gray03);
    padding: 0 10px;
    font-size: 14px;
    color: var(--text);
}

select {
    width: 100%;
    height: 40px;
    margin-top: 8px;
    border-radius: 5px;
    border: 1px solid var(--gray03);
    -webkit-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("../images/select-arrow.svg");
    background-repeat: no-repeat;
    background-size: 12px auto;
    background-position: right 14px center;
    padding: 0 10px;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text);
}

form textarea {
    width: calc(100% - 22px);
    height: 155px;
    margin-top: 8px;
    border-radius: 5px;
    border: 1px solid var(--gray03);
    padding: 10px;
    font-size: 14px;
    color: var(--text);
}

textarea,
textarea::placeholder {
    font-weight: 400 !important;
    font-family: "Noto Sans JP", sans-serif;
}

form input[type=date] {
    position: relative;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    color: var(--text);
}

form input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    z-index: 1;
}

form input[type="date"]::after {
    content: '';
    background-image: url(../images/calendar.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0 0;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 9px;
    transform: translateY(-50%);
}

.required {
    margin-left: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    padding: 1px 5px;
    background-color: var(--red04);
    border-radius: 3px;
}

.checkbox,
.radio {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 5px;
}

.checkbox label,
.radio label {
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.5s;
}

.checkbox label:hover,
.radio label:hover {
    opacity: 0.6;
}

form input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid var(--gray03);
    border-radius: 0;
    background: #fff;
    cursor: pointer;
    position: relative;
    margin: 0;
}

input[type="checkbox"]:checked {
    background: var(--blue01);
    border: none;
}

input[type="checkbox"]:checked::before {
    content: "";
    position: absolute;
    background-image: url(../images/check.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0 0;
    width: 16px;
    height: 12px;
    top: 50%;
    right: 2px;
    transform: translateY(-50%);
}

input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid var(--gray03);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    position: relative;
    margin: 0;
}

input[type="radio"]:checked {
    border-color: var(--blue01);
}

input[type="radio"]:checked::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--blue01);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.contact .comment {
    position: relative;
    font-size: 12px;
    font-weight: 400;
    padding-left: 16px;
    margin-top: 16px;
}

.contact .comment::before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
}

.consent {
    margin-top: 50px;
}

.consent .scroll {
    height: 109px;
    padding: 10px 16px 10px 10px;
    border: 1px solid var(--gray03);
    border-radius: 5px;
    margin-top: 16px;
    margin-bottom: 15px;
}

.consent .scroll p {
    height: 109px;
    font-size: 12px;
    padding-right: 8px;
    overflow-y: scroll;
}

.scroll p::-webkit-scrollbar {
    width: 2px;
}

.scroll p::-webkit-scrollbar-thumb {
    background: var(--red01);
}

.scroll p::-webkit-scrollbar-track {
    background: var(--gray03);
}

.submit-btn {
    position: relative;
}

.submit-btn::after {
    content: "";
    position: absolute;
    top: 52%;
    right: 22px;
    transform: translateY(-50%);
    display: inline-block;
    width: 8px;
    height: 12px;
    background-image: url(../images/btn-arrow-white.svg);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
}

.submit-btn input {
    transition: 0.5s;
}

.submit-btn input:hover {
    opacity: 0.6;
}

@media (min-width: 900px) {
    form {
        margin-top: 40px;
    }

    form>div {
        margin-top: 40px;
    }

    form>div>p {
        font-size: 18px;
    }

    form input[type=text],
    form input[type=email],
    form input[type=tel],
    form input[type=date] {
        font-size: 16px;
    }

    select {
        font-size: 16px;
    }

    form textarea {
        font-size: 16px;
    }

    .consent {
        margin-top: 60px;
    }

    .consent .scroll p {
        font-size: 14px;
    }

    .consent .checkbox label {
        justify-content: center;
    }

    .submit-btn {
        margin-top: 60px;
    }
}

/* エラー */
.error-message {
    display: none;
    font-weight: 400;
    color: var(--red04);
    background-color: var(--red03);
    border-radius: 3px;
    padding: 12px;
    margin-top: 16px;
}

form>.error-message {
    margin-top: 24px;
}

.error>.error-message {
    display: block;
}

/* 確認 */
.contact dt {
    margin-top: 24px;
    font-weight: 700;
}

.contact dd {
    margin-top: 8px;
}

@media (min-width: 900px) {
    .contact dt {
        margin-top: 40px;
    }

    .contact dd {
        margin-top: 12px;
    }
}

/* 完了 */
.complete {
    margin-top: 24px;
}

.complete h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

@media (min-width: 900px) {
    .complete {
        margin-top: 40px;
    }

    .complete h2 {
        font-size: 23px;
        margin-bottom: 15px;
    }
}
