@charset "UTF-8";

/* ==========================================================================
    Font Size
    ========================================================================== */
/* フォントサイズ
    @include font-size(14)
    こんな感じで記述する。
    vwなのでスマホのとき、でかすぎる時があるので、
    大きい文字(fs32とか)は、SPのみ、
    font-size: 6vw; こんな感じで上書きすることを許す。
    案件によってブレイクポイントは変更してね。
*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
}

input,
textarea {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    -webkit-text-size-adjust: 100%;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
    vertical-align: bottom;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #333;
}

main {
    margin-top: 60px;
}

@media only screen and (min-width: 992px) {
    main {
        margin-top: 63px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
dt,
dd,
th,
td,
a,
button {
    line-height: 1.875;
}

img {
    display: block;
}

.u-sp {
    display: block !important;
}

@media only screen and (min-width: 576px) {
    .u-sp {
        display: none !important;
    }
}

.u-tab {
    display: none !important;
}

@media only screen and (min-width: 576px) {
    .u-tab {
        display: block !important;
    }
}

.u-pc {
    display: none !important;
}

@media only screen and (min-width: 992px) {
    .u-pc {
        display: block !important;
    }
}

@media only screen and (min-width: 992px) {
    .sp {
        display: none !important;
    }
}

.c-txt-left {
    text-align: left;
}

.c-txt-center {
    text-align: center;
}

.c-txt-right {
    text-align: right;
}

#wpadminbar {
    z-index: 99999999;
}

/* ==================================
レイアウト
===================================== */
.l-container {
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media only screen and (min-width: 576px) {
    .l-container {
        padding-right: 50px;
        padding-left: 50px;
    }
}

@media only screen and (min-width: 992px) {
    .l-container {
        max-width: 1030px;
        margin-right: auto;
        margin-left: auto;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 15px;
    }
}

@media only screen and (min-width: 576px) {
    .l-column__blocks {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.l-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99999;
    background-color: #fff;
}

.l-header .l-header__inner {
    width: 100%;
    height: 100%;
    padding-left: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.l-header .l-header__logo {
    width: 223px;
    display: block;
}

@media only screen and (min-width: 992px) {
    .l-header .l-header__logo {
        width: 300px;
    }
}

@media only screen and (max-width: 575px) {
    .l-header .l-header__nav {
        height: calc(100vh - 60px);
    }
}

@media only screen and (max-width: 991px) {
    .l-header .l-header__nav {
        width: 100%;
        opacity: 0;
        visibility: hidden;
        position: fixed;
        top: 60px;
        right: 0;
        -webkit-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
        background-color: #fff;
        overflow: scroll;
    }
}

@media only screen and (min-width: 576px) {
    .l-header .l-header__nav {
        height: auto;
    }
}

@media only screen and (min-width: 992px) {
    .l-header .l-header__nav {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.l-header .l-header__nav ul {
    padding: 10px 15px 30px;
}

@media only screen and (min-width: 992px) {
    .l-header .l-header__nav ul {
        padding: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.l-header .l-header__nav ul li {
    border-bottom: 1px solid #b8d1d6;
}

@media only screen and (min-width: 992px) {
    .l-header .l-header__nav ul li {
        margin-right: 20px;
        border-bottom: none;
    }
}

@media only screen and (min-width: 992px) {
    .l-header .l-header__nav ul li.un-item {
        display: none;
    }
}

.l-header .l-header__nav ul li a {
    padding: 20px 0;
    font-size: 18px;
    line-height: 1.4444444444;
    color: #333;
    display: block;
}

@media only screen and (min-width: 992px) {
    .l-header .l-header__nav ul li a {
        padding: 5px;
        font-size: 13px;
    }
}

.l-header .l-header__contact {
    display: none;
}

@media only screen and (min-width: 992px) {
    .l-header .l-header__contact {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.l-header .l-header__contact a {
    width: 140px;
    height: 63px;
    font-size: 13px;
    color: #fff;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.l-header .l-header__contact a:nth-child(1) {
    background-color: #ec9440;
}

.l-header .l-header__contact a:nth-child(2) {
    width: 150px;
    background-color: #3aae36;
}

.l-header .l-header__contact a img {
    width: 30px;
    margin-right: 3px;
}

@media only screen and (min-width: 992px) {
    .l-header .l-contact {
        display: none;
    }
}

.l-header .p-hamburger {
    width: 60px;
    height: 60px;
    background-color: #00b185;
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    display: inline-block;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    cursor: pointer;
}

@media only screen and (min-width: 992px) {
    .l-header .p-hamburger {
        display: none;
    }
}

.l-header .p-hamburger:hover,
.l-header .p-hamburger:focus {
    -webkit-box-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.5);
}

.l-header .p-hamburger__line {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 18px;
    height: 2px;
    background-color: #fff;
    -webkit-transition: inherit;
    transition: inherit;
}

.l-header .p-hamburger__line::before,
.l-header .p-hamburger__line::after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: inherit;
    content: "";
    -webkit-transition: inherit;
    transition: inherit;
}

.l-header .p-hamburger__line::before {
    top: -8px;
}

.l-header .p-hamburger__line::after {
    top: 8px;
}

.l-header .p-hamburger[aria-expanded="true"] .p-hamburger__line {
    background-color: transparent;
}

.l-header .p-hamburger[aria-expanded="true"] .p-hamburger__line::before,
.l-header .p-hamburger[aria-expanded="true"] .p-hamburger__line::after {
    top: 0;
    background-color: #fff;
}

.l-header .p-hamburger[aria-expanded="true"] .p-hamburger__line::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.l-header .p-hamburger[aria-expanded="true"] .p-hamburger__line::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.l-header .u-visuallyHidden {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    margin: -1px;
}

body.is-drawerActive {
    overflow: hidden;
}

body.is-drawerActive .l-header .l-header__nav {
    opacity: 1;
    visibility: visible;
}

.l-footer {
    padding: 50px 0 20px;
    background-color: #7e938e;
    position: relative;
}

@media only screen and (min-width: 992px) {
    .l-footer {
        padding: 50px 0 35px;
    }
}

.l-footer .l-column__blocks {
    margin-bottom: 20px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media only screen and (min-width: 992px) {
    .l-footer .l-column__blocks {
        margin-bottom: 70px;
    }
}

.l-footer .l-footer__back {
    width: 73px;
    height: 73px;
    position: absolute;
    top: -37px;
    right: 15px;
    color: #fff;
    background-color: #f6b36d;
    border-radius: 50%;
    z-index: 999;
}

@media only screen and (min-width: 992px) {
    .l-footer .l-footer__back {
        right: 100px;
    }
}

.l-footer .l-footer__back span {
    padding-top: 30px;
    font-size: 14px;
    line-height: 1.2142857143;
    display: block;
    position: relative;
}

.l-footer .l-footer__back span::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 15px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotate(-45deg);
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}

.l-footer .l-footer__logo {
    max-width: 340px;
    margin-bottom: 15px;
    display: block;
}

@media only screen and (min-width: 576px) {
    .l-footer .l-footer__logo {
        max-width: 300px;
    }
}

@media only screen and (min-width: 992px) {
    .l-footer .l-footer__logo {
        max-width: 439px;
    }
}

@media only screen and (min-width: 576px) {
    .l-footer .l-footer__nav ul {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media only screen and (min-width: 576px) {
    .l-footer .l-footer__nav ul li:not(:last-child) {
        margin-right: 15px;
    }
}

@media only screen and (min-width: 992px) {
    .l-footer .l-footer__nav ul li:not(:last-child) {
        margin-right: 30px;
    }
}

.l-footer .l-footer__nav ul li a {
    font-size: 14px;
    line-height: 3.5714285714;
    color: #fff;
}

.l-footer .l-footer__copyright {
    font-size: 11px;
    display: block;
    color: #fff;
}

@media only screen and (min-width: 992px) {
    .l-footer .l-footer__copyright {
        font-size: 12px;
    }
}

.l-mv {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.l-mv .l-mv__img {
    max-height: 130px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (min-width: 992px) {
    .l-mv .l-mv__img {
        max-height: 250px;
    }
}

.l-mv .l-mv__ttl {
    width: 100%;
    font-size: 24px;
    letter-spacing: 0.15em;
    line-height: 1.6666666667;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media only screen and (min-width: 992px) {
    .l-mv .l-mv__ttl {
        font-size: 30px;
        line-height: 1.5;
    }
}

.l-contact {
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

@media only screen and (min-width: 992px) {
    .l-contact {
        padding: 100px 0;
    }
}

.l-contact>* {
    position: relative;
    z-index: 2;
}

@media only screen and (min-width: 576px) {
    .l-contact .l-contact__list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }
}

.l-contact .l-contact__list a {
    padding: 10px 0;
    font-size: 20px;
    color: #333;
    background-color: #fff;
    border-radius: 10px;
    display: block;
}

@media only screen and (min-width: 576px) {
    .l-contact .l-contact__list a {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media only screen and (min-width: 992px) {
    .l-contact .l-contact__list a {
        padding: 25px 0 15px;
        font-size: 26px;
    }
}

.l-contact .l-contact__list a:not(:last-child) {
    margin-bottom: 10px;
}

@media only screen and (min-width: 576px) {
    .l-contact .l-contact__list a:not(:last-child) {
        margin-bottom: 0;
    }
}

.l-contact .l-contact__list a span {
    width: 100%;
    padding-right: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (min-width: 576px) {
    .l-contact .l-contact__list a span {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.l-contact .l-contact__list a span img {
    width: 25px;
    margin-right: 5px;
}

@media only screen and (min-width: 992px) {
    .l-contact .l-contact__list a span img {
        width: 50px;
        margin-right: 0;
    }
}

@media only screen and (min-width: 992px) {
    .l-contact .l-contact__list a.un-tel {
        font-size: 30px;
        letter-spacing: 0.1em;
    }
}

.l-contact .l-contact__list a.un-tel .l-contact__time {
    letter-spacing: 0.05em;
}

.l-contact .l-contact__time {
    font-size: 14px;
}

@media only screen and (min-width: 992px) {
    .l-contact .l-contact__time {
        margin-top: -10px;
    }
}

.l-contact .l-contact__bg {
    width: 100%;
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
}

@media only screen and (min-width: 992px) {
    .l-contact .l-contact__bg {
        height: 100%;
    }
}

.p-access {
    padding: 40px 0 50px;
}

@media only screen and (min-width: 992px) {
    .p-access {
        padding: 80px 0 60px;
    }
}

.p-access .c-ttl {
    margin-bottom: 20px;
}

@media only screen and (min-width: 576px) {
    .p-access .c-ttl {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 992px) {
    .p-access .c-ttl {
        margin-bottom: 45px;
    }
}

.p-access .p-access__map {
    height: 215px;
    overflow: hidden;
    position: relative;
}

@media only screen and (min-width: 576px) {
    .p-access .p-access__map {
        width: 49.0875912409%;
        height: 250px;
    }
}

@media only screen and (min-width: 992px) {
    .p-access .p-access__map {
        height: 335px;
    }
}

.p-access .p-access__map iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 575px) {
    .p-access .p-access__info {
        margin-top: 5px;
    }
}

@media only screen and (min-width: 576px) {
    .p-access .p-access__info {
        width: 32.1167883212%;
        margin-right: 14.2%;
    }
}

.p-access .p-access__name {
    font-size: 18px;
}

@media only screen and (min-width: 992px) {
    .p-access .p-access__name {
        font-size: 20px;
    }
}

.p-access .p-access__address {
    padding: 5px 0 6px;
    font-size: 14px;
    border-bottom: 1px solid #e5e5e5;
}

@media only screen and (min-width: 992px) {
    .p-access .p-access__address {
        font-size: 16px;
        padding: 10px 0 18px;
    }
}

.p-access .p-access__txt {
    padding: 6px 0;
    letter-spacing: 0.15em;
    border-bottom: 1px solid #e5e5e5;
}

@media only screen and (min-width: 992px) {
    .p-access .p-access__txt {
        padding: 13px 0;
        font-size: 20px;
    }
}

.p-access .p-access__txt a {
    color: #333;
}

.p-access .p-access__txt span {
    font-size: 14px;
    color: #00b185;
}

@media only screen and (min-width: 992px) {
    .p-access .p-access__txt span {
        font-size: 16px;
    }
}

@media only screen and (min-width: 992px) {
    .p-access--sec {
        padding: 80px 0 100px;
    }
}

.p-access--sec .c-ttl,
.p-access--sec .c-ttl--sec {
    margin-bottom: 10px;
}

@media only screen and (min-width: 576px) {

    .p-access--sec .c-ttl,
    .p-access--sec .c-ttl--sec {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 992px) {

    .p-access--sec .c-ttl,
    .p-access--sec .c-ttl--sec {
        margin-bottom: 45px;
    }
}

.p-access--sec .p-access__map {
    height: 105px;
    overflow: hidden;
    position: relative;
}

@media only screen and (min-width: 576px) {
    .p-access--sec .p-access__map {
        width: 100%;
        height: 250px;
    }
}

@media only screen and (min-width: 992px) {
    .p-access--sec .p-access__map {
        height: 335px;
    }
}

.p-access--sec .p-access__map iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.l-nav {
    width: 100%;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    z-index: 999;
}

@media only screen and (min-width: 576px) {
    .l-nav {
        display: none;
    }
}

.l-nav.is-active {
    opacity: 1;
    visibility: visible;
}

.l-nav .l-nav__txt {
    color: #fff;
    background-color: #393939;
}

.l-nav .l-nav__txt span {
    font-size: 14px;
    position: relative;
}

.l-nav .l-nav__txt span::before,
.l-nav .l-nav__txt span::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-style: solid;
    border-width: 10px 7.5px 0 7.5px;
    border-color: #fff transparent transparent transparent;
}

.l-nav .l-nav__txt span::before {
    left: -25px;
}

.l-nav .l-nav__txt span::after {
    right: -25px;
}

.l-nav .l-nav__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.l-nav .l-nav__list a {
    width: 33.3333333333%;
    height: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.l-nav .l-nav__list a:nth-child(1) {
    background-color: #b9bbbb;
}

.l-nav .l-nav__list a:nth-child(2) {
    background-color: #ec9440;
}

.l-nav .l-nav__list a:nth-child(3) {
    background-color: #3aae36;
}

.l-nav .l-nav__list a img {
    width: 35px;
    margin: 0 auto;
}

.list-properties {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 50px;
}

@media screen and (max-width: 575px) {
    .list-properties {
        row-gap: 20px;
    }
}

.list-properties::after {
    content: "";
    width: 32%;
}

@media screen and (max-width: 991px) {
    .list-properties::after {
        display: none;
    }
}

.list-properties .card {
    width: 32%;
    background-color: #fff;
    padding: 20px;
}

@media screen and (max-width: 991px) {
    .list-properties .card {
        width: 47.5%;
    }
}

@media screen and (max-width: 575px) {
    .list-properties .card {
        width: 100%;
    }
}

.list-properties .card a {
    color: #333;
}

.list-properties .thumbnail {
    aspect-ratio: 1.616/1;
}

@media screen and (max-width: 575px) {
    .list-properties .thumbnail {
        aspect-ratio: 1.79/1;
    }
}

.list-properties .thumbnail img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.list-properties .closed {
    margin-top: 10px;
    background-color: #f52121;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding: 5px 0;
    text-align: center;
}

@media screen and (max-width: 575px) {
    .list-properties .closed {
        font-size: 14px;
        padding: 4px 0;
    }
}

.list-properties .list-categories {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

@media screen and (max-width: 575px) {
    .list-properties .list-categories {
        margin-top: 10px;
        gap: 5px;
    }
}

.list-properties .list-categories li {
    padding: 3px 10px;
    color: #fff;
    font-size: 12px;
    display: inline-block;
}

@media screen and (max-width: 575px) {
    .list-properties .list-categories li {
        font-size: 10px;
        padding: 3px 10px;
    }
}

.list-properties .list-categories li.price-revision {
    background-color: rgb(164, 0, 0);
}

.list-properties .list-categories li.rent-sale {
    background-color: #82d3bf;
}

.list-properties .list-categories li.type {
    background-color: #f6b36d;
}

.list-properties .price {
    font-size: 18px;
    margin-top: 5px;
}

@media screen and (max-width: 575px) {
    .list-properties .price {
        font-size: 16px;
    }
}

.list-properties .price span {
    display: inline-block;
    margin-left: 10px;
    font-size: 14px;
    color: #888888;
}

@media screen and (max-width: 575px) {
    .list-properties .price span {
        margin-left: 5px;
        font-size: 12px;
    }
}

.list-properties .list-overview {
    border-top: 1px solid #d3d3d3;
    margin-top: 10px;
    padding-top: 10px;
}

@media screen and (max-width: 575px) {
    .list-properties .list-overview {
        padding-top: 10px;
        margin-top: 10px;
    }
}

.list-properties .list-overview li {
    font-size: 14px;
    padding-left: 40px;
    position: relative;
}

@media screen and (max-width: 575px) {
    .list-properties .list-overview li {
        padding-left: 30px;
    }
}

.list-properties .list-overview li:not(:last-of-type) {
    margin-bottom: 10px;
}

@media screen and (max-width: 575px) {
    .list-properties .list-overview li:not(:last-of-type) {
        margin-bottom: 10px;
    }
}

.list-properties .list-overview li::before {
    position: absolute;
    content: "";
    display: block;
    left: 0;
    top: -2px;
    width: 30px;
    height: 30px;
}

@media screen and (max-width: 575px) {
    .list-properties .list-overview li::before {
        width: 25px;
        height: 25px;
        top: 0;
    }
}

.list-properties .list-overview li.property::before {
    background: url(../img/property/icon_property.png) no-repeat center/cover;
}

.list-properties .list-overview li.area::before {
    background: url(../img/property/icon_area.png) no-repeat center/cover;
}

.list-properties .list-overview li.access::before {
    background: url(../img/property/icon_access.png) no-repeat center/cover;
}

.list-properties .c-btn {
    color: #fff !important;
    margin: 20px auto 0;
}

.p-search {
    padding: 100px 0;
}

@media screen and (max-width: 575px) {
    .p-search {
        padding: 50px 0;
    }
}

.p-search .c-ttl {
    margin-bottom: 50px;
}

@media screen and (max-width: 575px) {
    .p-search .c-ttl {
        margin-bottom: 20px;
    }
}

.p-search .c-btn {
    cursor: pointer;
    margin: 50px auto 0;
    -webkit-appearance: none;
    border: none;
    outline: none;
}

@media screen and (max-width: 575px) {
    .p-search .c-btn {
        margin-top: 20px;
    }
}

.p-search .form-wrap .box {
    background-color: #ebebeb;
    padding: 20px;
    height: 138px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}

@media screen and (max-width: 991px) {
    .p-search .form-wrap .box {
        height: auto;
        padding: 15px;
        row-gap: 20px;
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 575px) {
    .p-search .form-wrap .box {
        row-gap: 10px;
    }
}

.p-search .form-wrap .accordion {
    width: 23.5%;
}

@media screen and (max-width: 991px) {
    .p-search .form-wrap .accordion {
        width: 47.5%;
    }
}

.p-search .form-wrap .ttl {
    margin-bottom: 10px;
    line-height: 1;
}

@media screen and (max-width: 575px) {
    .p-search .form-wrap .ttl {
        font-size: 14px;
        margin-bottom: 6px;
    }
}

.p-search .form-wrap .selectbox {
    border: 1px solid #acacac;
    background-color: #fff;
    font-size: 14px;
    position: relative;
    z-index: 99;
}

.p-search .form-wrap .selectbox .select {
    display: block;
    padding: 10px;
    padding-right: 40px;
    cursor: pointer;
    position: relative;
    color: #acacac;
    white-space: nowrap;
    overflow: hidden;
}

@media screen and (max-width: 575px) {
    .p-search .form-wrap .selectbox .select {
        padding: 6px 30px 6px 6px;
    }
}

.p-search .form-wrap .selectbox .select::after {
    position: absolute;
    width: 15px;
    height: 13px;
    content: "";
    background-color: #00b185;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 10px;
    -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}

@media screen and (max-width: 575px) {
    .p-search .form-wrap .selectbox .select::after {
        width: 9px;
        right: 6px;
        height: 8px;
    }
}

.p-search .form-wrap .selectbox .select.checked {
    color: #333;
}

.p-search .form-wrap .selectbox .select.selected {
    color: #333;
    font-weight: bold;
}

.p-search .form-wrap .selectbox .list-categories {
    border-top: 1px solid #acacac;
    display: none;
}

.p-search .form-wrap .selectbox .list-categories li {
    line-height: 1;
}

.p-search .form-wrap .selectbox .list-categories li input[type="radio"] {
    display: none;
}

.p-search .form-wrap .selectbox .list-categories li input[type="radio"]:checked+.radiobox {
    color: #fff;
    background-color: #82d3bf;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.p-search .form-wrap .selectbox .list-categories li .radiobox {
    cursor: pointer;
    display: block;
    padding: 10px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.p-search .form-wrap .selectbox .list-categories li .radiobox:hover {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    background-color: rgba(130, 212, 191, 0.16);
}

.p-search .form-wrap .uncheck-all {
    text-align: right;
    display: block;
    position: absolute;
    right: 20px;
    bottom: 15px;
    width: 100%;
    margin-top: 10px;
}

.p-search .form-wrap .uncheck-all span {
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
}

@media screen and (max-width: 991px) {
    .p-search .form-wrap .uncheck-all span {
        font-size: 12px;
    }
}

.p-result {
    background: rgb(242, 253, 249);
    background: -webkit-gradient(linear, left top, right top, from(rgb(242, 253, 249)), to(rgb(222, 242, 247)));
    background: -webkit-linear-gradient(left, rgb(242, 253, 249) 0%, rgb(222, 242, 247) 100%);
    background: linear-gradient(90deg, rgb(242, 253, 249) 0%, rgb(222, 242, 247) 100%);
    padding: 100px 0;
}

@media screen and (max-width: 575px) {
    .p-result {
        padding: 50px 0;
    }
}

.p-result .txt-result span {
    font-size: 30px;
}

@media screen and (max-width: 575px) {
    .p-result .txt-result span {
        font-size: 22px;
    }
}

.p-result .box-term {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
}

@media screen and (max-width: 575px) {
    .p-result .box-term {
        margin-top: 10px;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.p-result .box-term .ttl {
    background-color: #82d3bf;
    color: #fff;
    padding: 10px 20px;
    width: 110px;
}

@media screen and (max-width: 575px) {
    .p-result .box-term .ttl {
        padding: 5px 10px;
        width: 80px;
        font-size: 14px;
    }
}

.p-result .box-term .words {
    padding: 10px 17px;
    width: calc(100% - 110px);
    background-color: #fff;
}

@media screen and (max-width: 575px) {
    .p-result .box-term .words {
        padding: 4px 12px;
        width: calc(100% - 80px);
        font-size: 14px;
    }
}

.p-result .list-properties {
    margin-top: 50px;
}

@media screen and (max-width: 575px) {
    .p-result .list-properties {
        margin-top: 20px;
    }
}

.p-result .pagenation {
    margin-top: 100px;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    gap: 30px;
}

@media screen and (max-width: 575px) {
    .p-result .pagenation {
        margin-top: 30px;
        gap: 20px;
    }
}

.p-result .pagenation .page-numbers {
    color: #333333;
    font-weight: bold;
    font-size: 20px;
}

@media screen and (max-width: 575px) {
    .p-result .pagenation .page-numbers {
        font-size: 18px;
    }
}

.p-result .pagenation .page-numbers.current {
    color: #4a99e6;
}

.p-result .pagenation .page-numbers.prev,
.p-result .pagenation .page-numbers.next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.p-result .pagenation .page-numbers.prev {
    left: 0;
}

.p-result .pagenation .page-numbers.next {
    right: 0;
}

.p-single {
    padding: 100px 0;
}

@media screen and (max-width: 575px) {
    .p-single {
        padding: 50px 0;
    }
}

.p-single .l-container {
    max-width: 754px;
    padding: 0 15px;
}

.p-single .gallery {
    margin: 0 0 5px 0;
}

.p-single .gallery li {
    aspect-ratio: 1.616/1;
}

.p-single .gallery li img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.p-single .gallery img {
    vertical-align: bottom;
}

.p-single .gallery .slick-prev,
.p-single .gallery .slick-next {
    position: absolute;
    /*絶対配置にする*/
    z-index: 3;
    top: 42%;
    cursor: pointer;
    /*マウスカーソルを指マークに*/
    background: url(../img/common/slider_arrow.png) no-repeat center/cover;
    height: 40px;
    width: 40px;
    z-index: 999;
}

@media screen and (max-width: 575px) {

    .p-single .gallery .slick-prev,
    .p-single .gallery .slick-next {
        width: 22px;
        height: 22px;
    }
}

.p-single .gallery .slick-prev {
    /*戻る矢印の位置と形状*/
    left: 2.5%;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.p-single .gallery .slick-next {
    /*次へ矢印の位置と形状*/
    right: 2.5%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.p-single .gallery .slick-prev {
    left: 50%;
    -webkit-transform: translateX(-420px) scaleX(-1);
    transform: translateX(-420px) scaleX(-1);
}

@media screen and (max-width: 991px) {
    .p-single .gallery .slick-prev {
        -webkit-transform: translateX(-370px) scaleX(-1);
        transform: translateX(-370px) scaleX(-1);
    }
}

@media screen and (max-width: 575px) {
    .p-single .gallery .slick-prev {
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
        left: -10px;
    }
}

.p-single .gallery .slick-next {
    left: 50%;
    -webkit-transform: translateX(380px);
    transform: translateX(380px);
}

@media screen and (max-width: 991px) {
    .p-single .gallery .slick-next {
        -webkit-transform: translateX(330px);
        transform: translateX(330px);
    }
}

@media screen and (max-width: 575px) {
    .p-single .gallery .slick-next {
        -webkit-transform: none;
        transform: none;
        right: -10px;
        left: auto;
    }
}

.p-single .choice-btn {
    margin-top: 10px;
    -webkit-transform: scale(1.0275);
    transform: scale(1.0275);
}

.p-single .choice-btn li {
    margin: 0 10px;
    cursor: pointer;
    aspect-ratio: 1.616/1;
}

@media screen and (max-width: 575px) {
    .p-single .choice-btn li {
        margin: 0 5px;
    }
}

.p-single .choice-btn li img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.p-single .choice-btn li img {
    opacity: 0.5;
}

.p-single .choice-btn li.slick-current img {
    opacity: 1;
}

.p-single .closed {
    margin-top: 20px;
    background-color: #f52121;
    color: #fff;
    text-align: center;
    padding: 6px;
    font-weight: bold;
    font-size: 18px;
}

@media screen and (max-width: 575px) {
    .p-single .closed {
        font-size: 16px;
        padding: 6px;
    }
}

.p-single .box-basicinfo {
    background-color: #f2fdf9;
    padding: 20px;
    margin-top: 20px;
}

@media screen and (max-width: 575px) {
    .p-single .box-basicinfo {
        padding: 10px;
    }
}

.p-single .box-basicinfo .list-category {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #d3d3d3;
}

.p-single .box-basicinfo .list-category li {
    display: inline-block;
    font-size: 12px;
    padding: 5px 20px;
    font-weight: bold;
    color: #fff;
}

.p-single .box-basicinfo .list-category li.price-revision {
    background-color: rgb(164, 0, 0);
}

.p-single .box-basicinfo .list-category li.sale_rental {
    background-color: #82d3bf;
}

.p-single .box-basicinfo .list-category li.type {
    background-color: #f6b36d;
}

.p-single .box-basicinfo .list-price {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 10px;
    margin-top: 10px;
}

.p-single .box-basicinfo .list-price:nth-of-type(2) {
    margin-top: 10px;
}

@media screen and (max-width: 575px) {
    .p-single .box-basicinfo .list-price {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.p-single .box-basicinfo .list-price li {
    margin-right: 50px;
}

@media screen and (max-width: 575px) {
    .p-single .box-basicinfo .list-price li {
        margin-right: 0;
    }
}

.p-single .box-basicinfo .list-price li .ttl {
    font-size: 12px;
    padding: 5px 20px;
    font-weight: bold;
    background-color: #98d4e6;
    color: #fff;
    margin-right: 10px;
}

.p-single .panorama {
    margin-top: 50px;
}

@media screen and (max-width: 575px) {
    .p-single .panorama {
        margin: 20px calc(50% - 50vw) 0;
        width: 100vw;
    }
}

.p-single .panorama .image {
    aspect-ratio: 2.3/1;
}

.p-single .panorama .image iframe {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.p-single .details01 {
    margin-top: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width: 575px) {
    .p-single .details01 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.p-single .details01 dt,
.p-single .details01 dd {
    padding: 12px 0;
    border-bottom: 1px solid #d3d3d3;
}

@media screen and (max-width: 575px) {

    .p-single .details01 dt,
    .p-single .details01 dd {
        padding: 8px 0;
    }
}

.p-single .details01 dt {
    width: 20%;
    color: #0a5bb7;
}

@media screen and (max-width: 575px) {
    .p-single .details01 dt {
        width: 100%;
        border-bottom: none;
        padding-bottom: 0;
    }
}

.p-single .details01 dd {
    width: 80%;
}

@media screen and (max-width: 575px) {
    .p-single .details01 dd {
        width: 100%;
        padding-top: 0;
    }
}

.p-single .googlemap {
    margin-top: 50px;
    aspect-ratio: 2.298/1;
}

@media screen and (max-width: 575px) {
    .p-single .googlemap {
        aspect-ratio: 1/1;
        margin-top: 20px;
    }
}

.p-single .googlemap iframe {
    width: 100%;
    height: 100%;
}

.p-single .details02 {
    background-color: #f2fdf9;
    margin-top: 50px;
    padding: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width: 575px) {
    .p-single .details02 {
        padding: 10px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.p-single .details02 dt,
.p-single .details02 dd {
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 10px 0;
    line-height: 2.14285714;
}

.p-single .details02 dt:not(:last-of-type),
.p-single .details02 dd:not(:last-of-type) {
    background-image: -webkit-linear-gradient(left, #d3d3d3, #d3d3d3 4px, transparent 4px, transparent 8px);
    background-image: linear-gradient(to right, #d3d3d3, #d3d3d3 4px, transparent 4px, transparent 8px);
    background-size: 12px 1px;
    background-position: left bottom;
    background-repeat: repeat-x;
}

.p-single .details02 dt {
    width: 27%;
}

@media screen and (max-width: 575px) {
    .p-single .details02 dt {
        padding-bottom: 0;
        background: none !important;
        width: 100%;
    }
}

.p-single .details02 dd {
    width: 73%;
}

@media screen and (max-width: 575px) {
    .p-single .details02 dd {
        width: 100%;
        padding-top: 0;
    }
}

.p-single .details02 dd #copyTarget {
    background: transparent;
    font-weight: bold;
    font-size: 16px;
    border: none;
    outline: none;
}

.p-single .details02 dd .copy-btn {
    border: none;
    outline: none;
    color: #fff;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    padding: 6px 20px 4px;
    background-color: #00b185;
}

.p-single .details02 dd .copy-wrap {
    position: relative;
}

.p-single .details02 dd .copy-wrap #popup {
    opacity: 0;
    background-color: #7e938e;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    font-size: 12px;
    padding: 5px 10px;
    width: 200px;
    top: -60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
}

.p-single .details02 dd .copy-wrap #popup::after {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 20px;
    height: 10px;
    bottom: -9px;
    -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    content: "";
    display: block;
    background-color: #7e938e;
}

@media screen and (max-width: 767px) {
    .p-single .details02 dd .copy-wrap #popup::after {
        font-size: 10px;
    }
}

.p-single .btn-wrap {
    margin-top: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 50px;
}

@media screen and (max-width: 575px) {
    .p-single .btn-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }
}

.p-for-admin {
    padding: 100px 0;
    background-color: #f7f7f7;
}

@media screen and (max-width: 575px) {
    .p-for-admin {
        padding: 50px 0;
    }
}

.table-wrap {
    overflow: scroll;
    /* margin-bottom: 50px; */
    transform: rotate(-90deg) translateX(-105%);
    transform-origin: left top;
}

.table-wrap table {
    background-color: #fff;
    /* margin: 50px auto 0; */
    width: 100%;
    /* width: 817px; */
}

@media screen and (max-width: 575px) {
    .table-wrap table {
        margin-top: 50px;
    }
}

.table-wrap table th,
.table-wrap table td {
    font-size: 10px;
    padding: 5px;
    font-weight: bold;

    vertical-align: middle;
    padding: 4px 3px;
    border: 1px solid #707070;
}

.table-wrap table th {
    background-color: #e8e8e8;
    width: 80px;
}

/* ---------------------------- */
/* --- Base --- */
/* ---------------------------- */
.swiperModalButton {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

/* モーダル */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* padding: 30px; */
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    pointer-events: none;
    opacity: 0;
    z-index: 9999999;
    background-color: rgba(0, 0, 0, 0.65);
}

/* モーダルがactiveの時 */
.modal.is-active {
    opacity: 1;
    pointer-events: auto;
}

/* モーダル背景のオーバーレイ部分 */
.modal__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* モーダルのコンテンツ */
.modal__content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    background-color: #fff;
}

.modal__content .swiper-button-next,
.modal__content .swiper-rtl .swiper-button-prev {
    right: -40px;
}

.modal__content .swiper-button-prev,
.modal__content .swiper-rtl .swiper-button-next {
    left: -40px;
}

.modal_inner {
    aspect-ratio: 1.616/1;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.modal_inner .swiper-wrapper {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

/* 閉じるボタン */
.modal__close-btn {
    position: absolute;
    right: -10px;
    top: -30px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 20;
}

.modal__close-btn:hover {
    opacity: 0.8;
}

/* 閉じるボタンのX */
.lineClose {
    display: inline-block;
    vertical-align: middle;
    color: #313131;
    line-height: 1;
    width: 2rem;
    height: 2px;
    background: currentColor;
    border-radius: 0.1rem;
    position: relative;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.lineClose::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

p.swiperText {
    margin: 0;
    text-align: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: #fff !important;
    font-weight: normal;
}

@media screen and (max-width: 767px) {

    .swiper-button-next:after,
    .swiper-button-prev:after {
        display: none !important;
    }

    .modal_inner {
        width: 100% !important;
    }
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: -40px !important;
}

@media screen and (max-width: 767px) {

    .swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        bottom: -30px !important;
    }
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 6px;
}

.swiper-pagination-bullet {
    background-color: #fff;
    height: 10px;
    width: 10px;
}

@media screen and (max-width: 767px) {
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

.lineClose::before {
    background-color: #fff !important;
}

.lineClose {
    background-color: #fff !important;
}

.picBox img {
    cursor: pointer;
}

.swiper-slide.modalInSlider {
    aspect-ratio: 1.35/1;
    padding: 0 15px;
}

.swiper-slide.modalInSlider img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.gallery-slider {
    position: relative;
}

.gallery-slider .swiper-button-next01,
.gallery-slider .swiper-button-prev02 {
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: url(../img/common/slider_arrow.png) no-repeat center/contain;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -30px;
    position: absolute;
    z-index: 999;
    background-color: #fff;
    border-radius: 50%;
}

@media screen and (max-width: 767px) {

    .gallery-slider .swiper-button-next01,
    .gallery-slider .swiper-button-prev02 {
        width: 22px;
        height: 22px;
    }
}

.gallery-slider .swiper-button-next01 {
    right: -60px;
}

@media screen and (max-width: 767px) {
    .gallery-slider .swiper-button-next01 {
        right: -10px;
    }
}

.gallery-slider .swiper-button-prev02 {
    -webkit-transform: translateY(-50%) scaleX(-1);
    transform: translateY(-50%) scaleX(-1);
    left: -60px;
}

@media screen and (max-width: 767px) {
    .gallery-slider .swiper-button-prev02 {
        left: -10px;
    }
}

.swiper-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.swiper-container .swiper-slide {
    aspect-ratio: 1.616/1;
    cursor: pointer;
}

.swiper-container .swiper-slide img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    height: 100%;
}

.swiper-thumbnail {
    margin-top: 10px;
    overflow: hidden;
}

.swiper-thumbnail .swiper-slide {
    aspect-ratio: 1.616/1;
    cursor: pointer;
    opacity: 0.3;
}

.swiper-thumbnail .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-thumbnail .swiper-slide img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}

.panorama-slider {
    margin-bottom: 50px;
    position: relative;
}

.panorama-slider .swiper-button-next03,
.panorama-slider .swiper-button-prev04 {
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: url(../img/common/slider_arrow.png) no-repeat center/contain;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -30px;
    position: absolute;
    z-index: 999;
    background-color: #fff;
    border-radius: 50%;
}

@media screen and (max-width: 767px) {

    .panorama-slider .swiper-button-next03,
    .panorama-slider .swiper-button-prev04 {
        width: 22px;
        height: 22px;
    }
}

.panorama-slider .swiper-button-next03 {
    right: -60px;
}

@media screen and (max-width: 767px) {
    .panorama-slider .swiper-button-next03 {
        right: -10px;
    }
}

.panorama-slider .swiper-button-prev04 {
    -webkit-transform: translateY(-50%) scaleX(-1);
    transform: translateY(-50%) scaleX(-1);
    left: -60px;
}

@media screen and (max-width: 767px) {
    .panorama-slider .swiper-button-prev04 {
        left: -10px;
    }
}

.panorama-slider .swiper-pagination-bullet {
    background-color: #747474;
}

.panorama-slider .swiper-pagination02 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
}

.panorama-slider .swiper-horizontal>.swiper-pagination-bullets,
.panorama-slider .swiper-pagination-bullets.swiper-pagination-horizontal,
.panorama-slider .swiper-pagination-custom,
.panorama-slider .swiper-pagination-fraction {
    bottom: -40px !important;
}

@media screen and (max-width: 767px) {

    .panorama-slider .swiper-horizontal>.swiper-pagination-bullets,
    .panorama-slider .swiper-pagination-bullets.swiper-pagination-horizontal,
    .panorama-slider .swiper-pagination-custom,
    .panorama-slider .swiper-pagination-fraction {
        bottom: -30px !important;
    }
}

.panorama-slider .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.panorama-slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 6px;
}

.panorama-swiper-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

@media screen and (max-width: 575px) {
    .panorama-swiper-container {
        margin: 20px calc(50% - 50vw) 0;
        width: 100vw;
    }
}

.panorama-swiper-container .swiper-slide {
    aspect-ratio: 2.3/1;
}

.panorama-swiper-container .swiper-slide iframe {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.property-contact .c-ttl {
    margin-bottom: 50px;
}

.property-contact #thanks .p-thanks {
    padding: 0;
}

.property-contact #thanks .p-thanks .p-thanks__wrap {
    padding: 0;
}

.property-contact #thanks .p-thanks .p-thanks__txt {
    margin-bottom: 0;
}

.c-fw--m {
    font-weight: 500;
}

.c-fw--b {
    font-weight: 700;
}

.c-txt--left {
    text-align: left;
}

.c-txt--center {
    text-align: center;
}

.c-txt--right {
    text-align: right;
}

.c-ft--serif {
    font-family: "Noto Serif JP", serif;
}

.c-ttl {
    padding: 10px 0;
    font-size: 20px;
    letter-spacing: 0.15em;
    line-height: 1.45;
    background-image: -webkit-linear-gradient(left, #888, #888 6px, transparent 6px, transparent 12px);
    background-image: linear-gradient(to right, #888, #888 6px, transparent 6px, transparent 12px);
    /* 幅2の線を作る */
    background-size: 12px 1px;
    background-position: left bottom;
    background-repeat: repeat-x;
}

@media only screen and (min-width: 992px) {
    .c-ttl {
        padding: 20px 0;
        font-size: 30px;
    }
}

.c-ttl--sec {
    padding: 10px 0;
    font-size: 20px;
    letter-spacing: 0.26em;
    line-height: 1.45;
    border-bottom: 1px solid #888;
}

@media only screen and (min-width: 992px) {
    .c-ttl--sec {
        padding: 20px 0;
        font-size: 30px;
    }
}

.c-ttl--third {
    font-size: 18px;
    letter-spacing: 0.15em;
    line-height: 1.4444444444;
}

@media only screen and (min-width: 992px) {
    .c-ttl--third {
        font-size: 24px;
        line-height: 1.4583333333;
    }
}

.c-btn {
    width: 100%;
    height: 50px;
    font-size: 16px;
    line-height: 50px;
    color: #fff;
    background-color: #00b185;
    border: none;
    text-align: center;
    border-radius: 25px;
    display: block;
    position: relative;
}

@media only screen and (min-width: 576px) {
    .c-btn {
        max-width: 260px;
    }
}

.c-btn::after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}

.c-btn--back {
    background-color: #333;
}

#index .p-mv {
    position: relative;
}

@media only screen and (min-width: 576px) {
    #index .p-mv .p-mv__tel {
        width: 47%;
        position: absolute;
        bottom: 0;
        left: 0;
    }
}

#index .p-mv .btn-new-property {
    display: block;
    width: 120px;
    position: absolute;
    right: 50px;
    bottom: -40px;
}

@media screen and (max-width: 767px) {
    #index .p-mv .btn-new-property {
        right: 15px;
        width: 100px;
    }
}

#index .p-lead {
    padding: 50px 0 35px;
    overflow: hidden;
    position: relative;
    text-align: center;
}

@media only screen and (min-width: 992px) {
    #index .p-lead {
        padding: 100px 0;
    }
}

#index .p-lead>* {
    position: relative;
    z-index: 2;
}

#index .p-lead .l-column__blocks {
    margin-bottom: 45px;
}

@media only screen and (min-width: 576px) {
    #index .p-lead .l-column__blocks {
        width: 100vw;
        margin: 0 calc(50% - 50vw) 45px;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media only screen and (min-width: 992px) {
    #index .p-lead .l-column__blocks {
        margin-bottom: 95px;
    }
}

#index .p-lead .p-lead__imgWrap {
    margin-bottom: 20px;
}

@media only screen and (min-width: 576px) {
    #index .p-lead .p-lead__imgWrap {
        width: 49.2307692308%;
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 576px) {
    #index .p-lead .p-lead__txtWrap {
        width: 39.0769230769%;
        margin-right: 8%;
        width: 100%;
        max-width: 724px;
        margin: 0 auto;
    }
}

#index .p-lead .p-lead__ttl {
    margin-bottom: 15px;
    font-size: 22px;
    letter-spacing: 0.15em;
    line-height: 1.0909090909;
}

@media only screen and (min-width: 992px) {
    #index .p-lead .p-lead__ttl {
        margin-bottom: 35px;
        font-size: 30px;
        line-height: 1.5;
    }
}

#index .p-lead .p-lead__txt {
    font-size: 14px;
    line-height: 1.7857142857;
    text-align: left;
}

@media only screen and (min-width: 992px) {
    #index .p-lead .p-lead__txt {
        font-size: 16px;
        text-align: center;
        line-height: 1.875;
    }
}

#index .p-lead .p-lead__label {
    margin-bottom: 45px;
    font-size: 20px;
    letter-spacing: 0.15em;
    line-height: 2;
}

@media only screen and (min-width: 992px) {
    #index .p-lead .p-lead__label {
        margin-bottom: 50px;
        font-size: 24px;
        line-height: 1.6666666667;
    }
}

#index .p-lead .p-lead__label span {
    border-bottom: 2px solid #f6b36d;
    display: inline;
}

@media only screen and (min-width: 576px) {
    #index .p-lead .p-lead__list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }
}

#index .p-lead .p-lead__list li {
    background-color: #fff;
    -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.16);
}

#index .p-lead .p-lead__list li:not(:last-child) {
    margin-bottom: 30px;
}

@media only screen and (min-width: 576px) {
    #index .p-lead .p-lead__list li:not(:last-child) {
        margin-bottom: 0;
    }
}

#index .p-lead .p-lead__list li dl {
    padding: 10px 15px 15px;
}

@media only screen and (min-width: 992px) {
    #index .p-lead .p-lead__list li dl {
        padding: 15px 30px 20px;
    }
}

#index .p-lead .p-lead__list li dl dt {
    margin-bottom: 5px;
    letter-spacing: normal;
    color: #00b185;
}

@media only screen and (min-width: 576px) {
    #index .p-lead .p-lead__list li dl dt {
        text-align: center;
    }
}

@media only screen and (min-width: 992px) {
    #index .p-lead .p-lead__list li dl dt {
        margin-bottom: 10px;
        font-size: 20px;
        letter-spacing: 0.15em;
        line-height: 1.5;
    }
}

#index .p-lead .p-lead__list li dl dd {
    font-size: 14px;
    line-height: 1.7857142857;
}

@media only screen and (min-width: 992px) {
    #index .p-lead .p-lead__list li dl dd {
        font-size: 16px;
    }
}

#index .p-lead .p-lead__bg {
    width: 100%;
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
}

#index .p-contents {
    padding: 50px 0;
}

@media only screen and (min-width: 992px) {
    #index .p-contents {
        padding: 100px 0;
    }
}

@media only screen and (min-width: 576px) {
    #index .p-contents .p-contents__list li {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

#index .p-contents .p-contents__list li:not(:last-child) {
    margin-bottom: 50px;
}

@media only screen and (min-width: 992px) {
    #index .p-contents .p-contents__list li:not(:last-child) {
        margin-bottom: 100px;
    }
}

@media only screen and (min-width: 576px) {
    #index .p-contents .p-contents__list li:nth-child(odd) {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
}

#index .p-contents .p-contents__img {
    margin-bottom: 10px;
}

@media only screen and (min-width: 576px) {
    #index .p-contents .p-contents__img {
        width: 57.4817518248%;
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 576px) {
    #index .p-contents .p-contents__txtWrap {
        width: 37.8649635036%;
    }
}

#index .p-contents .p-contents__ttl {
    margin-bottom: 10px;
    font-size: 20px;
    letter-spacing: 0.15em;
    line-height: 1.45;
}

@media only screen and (min-width: 992px) {
    #index .p-contents .p-contents__ttl {
        margin-bottom: 35px;
        font-size: 24px;
        line-height: 1.4583333333;
    }
}

#index .p-contents .p-contents__ttl span {
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.4444444444;
    display: inline-block;
}

@media only screen and (min-width: 992px) {
    #index .p-contents .p-contents__ttl span {
        font-size: 20px;
        line-height: 1.45;
    }
}

#index .p-contents .p-contents__txt {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.7857142857;
}

@media only screen and (min-width: 992px) {
    #index .p-contents .p-contents__txt {
        margin-bottom: 40px;
        font-size: 16px;
        line-height: 1.875;
    }
}

#index .p-new-properties {
    background: rgb(242, 253, 249);
    background: -webkit-gradient(linear, left top, right top, from(rgb(242, 253, 249)), to(rgb(222, 242, 247)));
    background: -webkit-linear-gradient(left, rgb(242, 253, 249) 0%, rgb(222, 242, 247) 100%);
    background: linear-gradient(90deg, rgb(242, 253, 249) 0%, rgb(222, 242, 247) 100%);
    padding: 100px 0;
    overflow: hidden;
}

@media screen and (max-width: 575px) {
    #index .p-new-properties {
        margin-top: 50px;
        padding-top: 26px;
        padding-bottom: 50px;
    }
}

#index .p-new-properties .list-properties {
    display: block;
    margin-top: 50px;
}

@media screen and (max-width: 575px) {
    #index .p-new-properties .list-properties {
        margin-top: 20px;
    }
}

#index .p-new-properties .list-properties::after {
    display: none;
}

#index .p-new-properties .list-properties .card {
    padding: 20px;
    -webkit-box-shadow: 0 10px 20px rgba(97, 168, 150, 0.16);
    box-shadow: 0 10px 20px rgba(97, 168, 150, 0.16);
}

@media screen and (max-width: 575px) {
    #index .p-new-properties .list-properties .card {
        padding: 20px 15px;
    }
}

#index .p-new-properties .list-properties .thumbnail {
    position: relative;
}

#index .p-new-properties .list-properties .thumbnail::after {
    position: absolute;
    content: "NEW";
    text-decoration: underline;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    text-underline-offset: 4px;
    font-family: "Poppins", sans-serif;
    width: 60px;
    height: 60px;
    background-color: #f6b36d;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    left: 10px;
    letter-spacing: 0.15em;
    top: 10px;
}

@media screen and (max-width: 575px) {
    #index .p-new-properties .list-properties .thumbnail::after {
        width: 40px;
        height: 40px;
        left: 6px;
        top: 6px;
        font-size: 10px;
    }
}

#index .p-new-properties .list-properties .card {
    height: auto;
    margin: 0 20px;
    max-width: 440px;
}

@media screen and (max-width: 991px) {
    #index .p-new-properties .list-properties .card {
        margin: 0 20px;
    }
}

@media screen and (max-width: 575px) {
    #index .p-new-properties .list-properties .card {
        max-width: 286px;
        margin: 0 45px;
    }
}

#index .p-new-properties .list-properties .slick-list {
    overflow: visible;
}

#index .p-new-properties .list-properties .slick-slide {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0.5;
}

@media screen and (max-width: 575px) {
    #index .p-new-properties .list-properties .slick-slide {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

#index .p-new-properties .list-properties .slick-center {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

#index .p-new-properties .list-properties .slick-prev,
#index .p-new-properties .list-properties .slick-next {
    position: absolute;
    /*絶対配置にする*/
    top: 42%;
    cursor: pointer;
    /*マウスカーソルを指マークに*/
    outline: none;
    /*クリックをしたら出てくる枠線を消す*/
    background: url(../img/common/slider_arrow.png) no-repeat center/cover;
    height: 40px;
    width: 40px;
    z-index: 999;
}

@media screen and (max-width: 575px) {

    #index .p-new-properties .list-properties .slick-prev,
    #index .p-new-properties .list-properties .slick-next {
        width: 17px;
        height: 17px;
    }
}

#index .p-new-properties .list-properties .slick-prev {
    left: 50%;
    -webkit-transform: translateX(-270px) scaleX(-1);
    transform: translateX(-270px) scaleX(-1);
}

@media screen and (max-width: 991px) {
    #index .p-new-properties .list-properties .slick-prev {
        -webkit-transform: translateX(-270px) scaleX(-1);
        transform: translateX(-270px) scaleX(-1);
    }
}

@media screen and (max-width: 575px) {
    #index .p-new-properties .list-properties .slick-prev {
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
        left: 18px;
    }
}

#index .p-new-properties .list-properties .slick-next {
    left: 50%;
    -webkit-transform: translateX(230px);
    transform: translateX(230px);
}

@media screen and (max-width: 991px) {
    #index .p-new-properties .list-properties .slick-next {
        -webkit-transform: translateX(230px);
        transform: translateX(230px);
    }
}

@media screen and (max-width: 575px) {
    #index .p-new-properties .list-properties .slick-next {
        -webkit-transform: none;
        transform: none;
        right: 18px;
        left: auto;
    }
}

#index .p-new-properties .list-properties .slick-dots {
    text-align: center;
    margin: 30px 0 0 0;
}

#index .p-new-properties .list-properties .slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

#index .p-new-properties .list-properties .slick-dots button {
    color: transparent;
    outline: none;
    padding: 0;
    border: 1px solid #00b185;
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 50%;
    background-color: #fff;
}

#index .p-new-properties .list-properties .slick-dots .slick-active button {
    background: #00b185;
}

#index .p-new-properties .c-btn {
    margin: 30px auto 0;
}

@media screen and (max-width: 575px) {
    #index .p-new-properties .c-btn {
        margin-top: 20px;
    }
}

#index .p-closed-properties {
    background: rgb(242, 253, 249);
    background: -webkit-gradient(linear, left top, right top, from(rgb(242, 253, 249)), to(rgb(222, 242, 247)));
    background: -webkit-linear-gradient(left, rgb(242, 253, 249) 0%, rgb(222, 242, 247) 100%);
    background: linear-gradient(90deg, rgb(242, 253, 249) 0%, rgb(222, 242, 247) 100%);
    padding: 100px 0;
}

@media screen and (max-width: 575px) {
    #index .p-closed-properties {
        padding: 50px 0;
    }
}

#index .p-closed-properties .c-ttl {
    margin-bottom: 50px;
}

@media screen and (max-width: 575px) {
    #index .p-closed-properties .c-ttl {
        margin-bottom: 20px;
    }
}

#index .p-closed-properties .list-properties::after {
    content: "";
    width: 30%;
}

@media screen and (max-width: 991px) {
    #index .p-closed-properties .list-properties::after {
        display: none;
    }
}

#index .p-closed-properties .list-properties .card {
    padding: 0;
    background: transparent;
    width: 30%;
}

@media screen and (max-width: 991px) {
    #index .p-closed-properties .list-properties .card {
        width: 47.5%;
    }
}

#index .p-closed-properties .list-properties .card .closed {
    margin-top: 8px;
    background-color: #f52121;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding: 6px 0;
    text-align: center;
}

@media screen and (max-width: 575px) {
    #index .p-closed-properties .list-properties .card .closed {
        font-size: 14px;
        padding: 4px 0;
    }
}

#index .p-closed-properties .c-btn {
    margin: 0px auto 0;
    margin-top: 50px;
}

@media screen and (max-width: 575px) {
    #index .p-closed-properties .c-btn {
        margin-top: 20px;
    }
}

#company .p-company {
    padding: 50px 0;
}

@media only screen and (min-width: 992px) {
    #company .p-company {
        padding: 95px 0;
    }
}

#company .p-company .p-company__lead {
    margin-bottom: 20px;
    font-size: 30px;
    letter-spacing: 0.15em;
}

@media only screen and (min-width: 576px) {
    #company .p-company .p-company__lead {
        max-width: 724px;
        margin: 0 auto 20px;
    }
}

@media only screen and (min-width: 992px) {
    #company .p-company .p-company__lead {
        margin-bottom: 40px;
    }
}

#company .p-company .p-company__txt {
    margin-bottom: 20px;
}

@media only screen and (min-width: 576px) {
    #company .p-company .p-company__txt {
        max-width: 724px;
        margin: 0 auto 20px;
    }
}

@media only screen and (min-width: 992px) {
    #company .p-company .p-company__txt {
        margin-bottom: 45px;
    }
}

#company .p-company .p-company__img {
    margin-bottom: 50px;
}

@media only screen and (min-width: 576px) {
    #company .p-company .p-company__img {
        max-width: 724px;
        margin: 0 auto 50px;
    }
}

@media only screen and (min-width: 992px) {
    #company .p-company .p-company__img {
        margin-bottom: 105px;
    }
}

#company .p-company .p-company__ttl {
    margin-bottom: 25px;
    font-size: 18px;
    letter-spacing: 0.13em;
}

@media only screen and (min-width: 992px) {
    #company .p-company .p-company__ttl {
        font-size: 20px;
    }
}

@media only screen and (max-width: 575px) {
    #company .p-company .p-company__table {
        margin-bottom: 25px;
    }
}

@media only screen and (min-width: 576px) {
    #company .p-company .p-company__table {
        width: 66.0583941606%;
    }
}

#company .p-company .p-company__table th,
#company .p-company .p-company__table td {
    padding: 15px 10px;
    border: 1px solid #c1c1c1;
}

@media only screen and (min-width: 992px) {

    #company .p-company .p-company__table th,
    #company .p-company .p-company__table td {
        padding: 10px 25px;
    }
}

#company .p-company .p-company__table th {
    width: 33%;
}

#company .p-company .p-company__table th img {
    width: 88px;
    margin-top: 10px;
}

@media only screen and (min-width: 576px) {
    #company .p-company .p-company__imgWrap {
        width: 32.1167883212%;
    }
}

#company .p-company .p-company__imgWrap img:not(:last-child) {
    margin-bottom: 20px;
}

#consultation .p-souzoku {
    padding: 50px 0 40px;
}

@media only screen and (min-width: 992px) {
    #consultation .p-souzoku {
        padding: 100px 0 40px;
    }
}

#consultation .p-souzoku .l-column__blocks {
    margin-bottom: 15px;
}

@media only screen and (min-width: 576px) {
    #consultation .p-souzoku .l-column__blocks {
        width: 100vw;
        margin: 0 calc(50% - 50vw) 25px;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media only screen and (min-width: 992px) {
    #consultation .p-souzoku .l-column__blocks {
        margin-bottom: 50px;
    }
}

#consultation .p-souzoku .p-souzoku__img {
    aspect-ratio: 1.7/1;
    overflow: hidden;
}

@media only screen and (max-width: 575px) {
    #consultation .p-souzoku .p-souzoku__img {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 576px) {
    #consultation .p-souzoku .p-souzoku__img {
        width: 49.2307692308%;
    }
}

#consultation .p-souzoku .p-souzoku__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (min-width: 576px) {
    #consultation .p-souzoku .p-souzoku__txt {
        width: 39.0769230769%;
        margin-right: 8%;
        padding-top: 10px;
    }
}

#consultation .p-souzoku .p-souzoku__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

@media only screen and (min-width: 992px) {
    #consultation .p-souzoku .p-souzoku__list {
        gap: 70px;
        max-width: 910px;
        margin-left: auto;
        margin-right: auto;
    }
}

#consultation .p-souzoku .p-souzoku__list li {
    padding: 25px 0 15px;
    background-color: #7fcce3;
    position: relative;
}

@media only screen and (min-width: 992px) {
    #consultation .p-souzoku .p-souzoku__list li {
        padding: 45px 0 40px;
        padding: 32px 0;
    }
}

#consultation .p-souzoku .p-souzoku__list li::before {
    content: "";
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 1px solid #fff;
    z-index: 1;
}

#consultation .p-souzoku .p-souzoku__list li>* {
    position: relative;
    z-index: 2;
}

#consultation .p-souzoku .p-souzoku__list li img {
    width: 57px;
    margin: 0 auto 5px;
}

@media only screen and (min-width: 992px) {
    #consultation .p-souzoku .p-souzoku__list li img {
        width: 60px;
        margin-bottom: 25px;
    }
}

#consultation .p-souzoku .p-souzoku__list li p {
    font-size: 14px;
    color: #fff;
}

@media only screen and (min-width: 992px) {
    #consultation .p-souzoku .p-souzoku__list li p {
        font-size: 14px;
        line-height: 1.45;
    }
}

#consultation .p-souzoku .p-souzoku__list li p span {
    font-size: 18px;
    letter-spacing: 0.15em;
    line-height: 1.7777777778;
}

@media only screen and (min-width: 992px) {
    #consultation .p-souzoku .p-souzoku__list li p span {
        font-size: 22px;
        line-height: 1.5;
    }
}

#consultation .p-flow {
    padding-bottom: 40px;
}

@media only screen and (min-width: 992px) {
    #consultation .p-flow {
        padding: 40px 0 110px;
    }
}

#consultation .p-flow .c-ttl {
    margin-bottom: 20px;
}

@media only screen and (min-width: 992px) {
    #consultation .p-flow .c-ttl {
        margin-bottom: 55px;
    }
}

@media only screen and (min-width: 576px) {
    #consultation .p-flow .p-flow__img {
        width: 77.8284671533%;
        margin: 0 auto;
    }
}

#consultation .p-sheet {
    padding-bottom: 45px;
}

@media only screen and (min-width: 992px) {
    #consultation .p-sheet {
        padding: 110px 0 100px;
    }
}

#consultation .p-sheet .c-ttl {
    margin-bottom: 15px;
}

#consultation .p-sheet .p-sheet__txt {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.7857142857;
}

@media only screen and (min-width: 992px) {
    #consultation .p-sheet .p-sheet__txt {
        margin-bottom: 50px;
        font-size: 16px;
        line-height: 1.875;
        text-align: center;
    }
}

#consultation .p-sheet .p-sheet__img {
    width: 43.4782608696%;
    margin: 0 auto;
}

@media only screen and (min-width: 992px) {
    #consultation .p-sheet .p-sheet__img {
        width: 40.8759124088%;
    }
}

#arima .p-arima {
    padding: 50px 0;
}

@media only screen and (min-width: 992px) {
    #arima .p-arima {
        padding: 100px 0;
    }
}

#arima .p-arima .p-arima__img {
    margin-bottom: 20px;
}

@media only screen and (min-width: 992px) {
    #arima .p-arima .p-arima__img {
        width: 66%;
        margin: 0 auto 45px;
    }
}

#arima .p-arima .p-arima__ttl {
    margin-bottom: 15px;
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 1.6;
}

@media only screen and (min-width: 992px) {
    #arima .p-arima .p-arima__ttl {
        margin-bottom: 35px;
        font-size: 30px;
        line-height: 1.6666666667;
    }
}

#arima .p-arima .p-arima__txt {
    font-size: 14px;
    line-height: 1.7857142857;
}

@media only screen and (min-width: 576px) {
    #arima .p-arima .p-arima__txt {
        text-align: center;
    }
}

@media only screen and (min-width: 992px) {
    #arima .p-arima .p-arima__txt {
        font-size: 16px;
        line-height: 1.875;
    }
}

#arima .p-map {
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

@media only screen and (min-width: 992px) {
    #arima .p-map {
        padding: 90px 0 95px;
    }
}

#arima .p-map>* {
    position: relative;
    z-index: 2;
}

#arima .p-map .p-map__txt {
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 0.08em;
    line-height: 1.5555555556;
    color: #fff;
}

@media only screen and (min-width: 992px) {
    #arima .p-map .p-map__txt {
        margin-bottom: 45px;
        font-size: 24px;
        letter-spacing: 0.15em;
        line-height: 2.0833333333;
        text-align: center;
    }
}

@media only screen and (min-width: 992px) {
    #arima .p-map .p-map__img {
        width: 66%;
        margin: 0 auto;
    }
}

#arima .p-map .p-map__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

#arima .p-map .p-map__bg img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (min-width: 576px) {
    #arima .p-map .p-map__bg img {
        width: 100%;
    }
}

#arima .p-service {
    padding: 50px 0 40px;
}

@media only screen and (min-width: 992px) {
    #arima .p-service {
        padding: 100px 0 30px;
    }
}

#arima .p-service .p-service__list {
    margin-bottom: 35px;
}

@media only screen and (min-width: 992px) {
    #arima .p-service .p-service__list {
        margin-bottom: 100px;
    }
}

@media only screen and (min-width: 576px) {
    #arima .p-service .p-service__list li {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
}

@media only screen and (min-width: 576px) {
    #arima .p-service .p-service__list li .p-service__img {
        width: 66.0583941606%;
    }
}

#arima .p-service .p-service__list li:not(:last-child) {
    margin-bottom: 30px;
}

@media only screen and (min-width: 992px) {
    #arima .p-service .p-service__list li:not(:last-child) {
        margin-bottom: 100px;
    }
}

#arima .p-service .p-service__list li:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

#arima .p-service .p-service__list li dl {
    padding: 10px 15px 15px;
    background-color: #f2fdf9;
}

@media only screen and (min-width: 576px) {
    #arima .p-service .p-service__list li dl {
        width: 33.9416058394%;
        padding: 10px 30px 15px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

#arima .p-service .p-service__list li dl dt {
    width: 100%;
    margin-bottom: 10px;
    padding: 5px 0;
    font-size: 18px;
    letter-spacing: 0.15em;
    border-bottom: 1px solid #b8d1d6;
}

@media only screen and (min-width: 992px) {
    #arima .p-service .p-service__list li dl dt {
        margin-bottom: 20px;
        padding: 15px 0;
        font-size: 24px;
        line-height: 1.4583333333;
    }
}

#arima .p-service .p-service__list li dl dd {
    font-size: 14px;
    line-height: 1.7857142857;
}

@media only screen and (min-width: 992px) {
    #arima .p-service .p-service__list li dl dd {
        font-size: 16px;
        line-height: 1.875;
    }
}

#arima .p-service .p-service__list--sec {
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

@media only screen and (min-width: 992px) {
    #arima .p-service .p-service__list--sec {
        margin-bottom: 100px;
        gap: 67px;
        max-width: 910px;
        margin-left: auto;
        margin-right: auto;
    }
}

#arima .p-service .p-service__list--sec li {
    padding: 20px 0 25px;
    background-color: #82d3bf;
    border-radius: 20px;
    position: relative;
}

@media only screen and (min-width: 992px) {
    #arima .p-service .p-service__list--sec li {
        padding: 36px 0;
    }
}

#arima .p-service .p-service__list--sec li::before {
    content: "";
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 1px dashed #fff;
    border-radius: 18px;
    z-index: 1;
}

@media only screen and (min-width: 992px) {
    #arima .p-service .p-service__list--sec li::before {
        width: calc(100% - 12px);
        height: calc(100% - 12px);
    }
}

#arima .p-service .p-service__list--sec li>* {
    position: relative;
    z-index: 2;
}

#arima .p-service .p-service__list--sec li img {
    width: 57px;
    margin: 0 auto 5px;
}

@media only screen and (min-width: 992px) {
    #arima .p-service .p-service__list--sec li img {
        width: 60px;
        margin-bottom: 10px;
    }
}

#arima .p-service .p-service__list--sec li p {
    line-height: 1.4375;
    color: #fff;
}

@media only screen and (min-width: 992px) {
    #arima .p-service .p-service__list--sec li p {
        font-size: 17px;
        letter-spacing: 0.15em;
        line-height: 1.4583333333;
    }
}

#arima .p-service .p-service__list--sec li p span {
    font-size: 18px;
    letter-spacing: 0.15em;
    line-height: 1.7777777778;
}

@media only screen and (min-width: 992px) {
    #arima .p-service .p-service__list--sec li p span {
        font-size: 30px;
        line-height: 1.5;
    }
}

#arima .p-service .p-service__txt {
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 1.6;
}

@media only screen and (min-width: 576px) {
    #arima .p-service .p-service__txt {
        text-align: center;
    }
}

@media only screen and (min-width: 992px) {
    #arima .p-service .p-service__txt {
        font-size: 30px;
        letter-spacing: 0.15em;
        line-height: 1.6666666667;
    }
}

#arima .p-service .swiper {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 40px;
}

@media only screen and (min-width: 992px) {
    #arima .p-service .swiper {
        margin-bottom: 95px;
    }
}

#arima .p-service .swiper-wrapper {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

#arima .p-service .swiper-slide img {
    height: auto;
    width: 100%;
}

#arima .p-price .c-ttl {
    margin-bottom: 10px;
}

@media only screen and (min-width: 992px) {
    #arima .p-price .c-ttl {
        margin-bottom: 50px;
    }
}

#arima .p-price .c-ttl--third {
    margin-bottom: 10px;
}

@media only screen and (min-width: 992px) {
    #arima .p-price .c-ttl--third {
        margin-bottom: 20px;
    }
}

#arima .p-price .p-price__wrap {
    margin-bottom: 20px;
    padding: 20px 15px;
    background-color: #f2fdf9;
}

@media only screen and (min-width: 992px) {
    #arima .p-price .p-price__wrap {
        margin-bottom: 50px;
        padding: 50px 50px 45px;
    }
}

#arima .p-price .p-price__table {
    margin-bottom: 15px;
    position: relative;
}

@media only screen and (min-width: 576px) {
    #arima .p-price .p-price__table {
        width: 100%;
    }
}

#arima .p-price .p-price__table::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -10px;
    left: 0;
    background-color: #d1ddd9;
}

@media only screen and (min-width: 992px) {
    #arima .p-price .p-price__table::after {
        bottom: -20px;
    }
}

#arima .p-price .p-price__table th,
#arima .p-price .p-price__table td {
    font-size: 18px;
    letter-spacing: 0.15em;
    line-height: 1.4444444444;
}

@media only screen and (min-width: 992px) {

    #arima .p-price .p-price__table th,
    #arima .p-price .p-price__table td {
        font-size: 24px;
        line-height: 1.4583333333;
    }
}

#arima .p-price .p-price__table th {
    text-align: left;
}

#arima .p-price .p-price__table td {
    padding-left: 10px;
}

@media only screen and (min-width: 576px) {
    #arima .p-price .p-price__table td {
        text-align: right;
    }
}

#arima .p-price .p-price__txt {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.8571428571;
}

@media only screen and (min-width: 992px) {
    #arima .p-price .p-price__txt {
        margin-top: 40px;
        font-size: 16px;
        line-height: 1.875;
    }
}

@media only screen and (max-width: 575px) {
    #arima .p-price .p-price__scroll {
        padding-bottom: 15px;
        overflow-x: scroll;
    }
}

@media only screen and (max-width: 575px) {
    #arima .p-price .p-price__scroll::-webkit-scrollbar {
        height: 5px;
    }
}

@media only screen and (max-width: 575px) {
    #arima .p-price .p-price__scroll::-webkit-scrollbar-track {
        background-color: #e5e5e5;
    }
}

@media only screen and (max-width: 575px) {
    #arima .p-price .p-price__scroll::-webkit-scrollbar-thumb {
        background-color: #a7a7a7;
    }
}

@media only screen and (min-width: 992px) {
    #arima .p-price .p-price__scroll+.p-price__txt {
        margin-top: 25px;
    }
}

#arima .p-price .p-price__table--sec {
    width: 600px;
}

@media only screen and (min-width: 576px) {
    #arima .p-price .p-price__table--sec {
        width: 100%;
    }
}

#arima .p-price .p-price__table--sec tr th:first-child {
    width: 188px;
    font-size: 13px;
    background-color: #f2fdf9;
}

@media only screen and (min-width: 576px) {
    #arima .p-price .p-price__table--sec tr th:first-child {
        width: 25%;
    }
}

@media only screen and (min-width: 992px) {
    #arima .p-price .p-price__table--sec tr th:first-child {
        font-size: 16px;
    }
}

#arima .p-price .p-price__table--sec tr:not(:first-child) td {
    width: 137.3333333333px;
}

@media only screen and (min-width: 576px) {
    #arima .p-price .p-price__table--sec tr:not(:first-child) td {
        width: 274px;
    }
}

#arima .p-price .p-price__table--sec th,
#arima .p-price .p-price__table--sec td {
    padding: 6px 5px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    border: 1px solid #d1ddd9;
}

@media only screen and (min-width: 992px) {

    #arima .p-price .p-price__table--sec th,
    #arima .p-price .p-price__table--sec td {
        padding: 7px 5px;
        font-size: 16px;
    }
}

#arima .p-price .p-price__table--sec th:nth-child(3),
#arima .p-price .p-price__table--sec td:nth-child(3) {
    background-color: #f4f4f4;
}

/*モーダルを開くボタン*/
.modal-open {
    cursor: pointer;
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 20px;
    z-index: 999999;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/*モーダル本体の擬似要素の指定*/
.modal-container:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
    opacity: 1;
    visibility: visible;
}

/*モーダル枠の指定*/
.modal-body {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 15px;
    max-width: 1000px;
    width: 100%;
}

/*モーダルを閉じるボタンの指定*/
.modal-close {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: -30px;
    right: 15px;
    width: 30px;
    height: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/*モーダル内のコンテンツの指定*/
.modal-content {
    background: #fff;
    text-align: left;
}

#contact .p-contact {
    padding: 50px 0;
}

@media only screen and (min-width: 992px) {
    #contact .p-contact {
        padding: 100px 0;
    }
}

#contact .p-contact .p-contact__wrap {
    padding: 30px 15px;
    background-color: #f7f7f7;
}

@media only screen and (min-width: 992px) {
    #contact .p-contact .p-contact__wrap {
        padding: 50px 30px 100px;
    }
}

@media only screen and (min-width: 576px) {
    #contact .p-contact .p-contact__inner {
        max-width: 724px;
        margin: 0 auto;
    }
}

#contact .p-contact .p-contact__labelWrap {
    margin-bottom: 10px;
}

@media only screen and (min-width: 992px) {
    #contact .p-contact .p-contact__labelWrap {
        margin-bottom: 30px;
    }
}

#contact .p-contact .p-contact__required {
    margin-left: 5px;
    padding: 4px 6px;
    font-size: 10px;
    color: #fff;
    background-color: #f6b36d;
    border-radius: 12px;
    display: inline-block;
}

@media only screen and (min-width: 992px) {
    #contact .p-contact .p-contact__required {
        margin-left: 10px;
        padding: 5px 10px;
    }
}

#contact .p-contact .p-contact__label {
    font-size: 14px;
    line-height: 1.0769230769;
}

@media only screen and (min-width: 992px) {
    #contact .p-contact .p-contact__label {
        font-size: 16px;
        line-height: 1.875;
    }
}

#contact .p-contact .p-contact__input {
    width: 100%;
    margin-top: 5px;
    padding: 5px 10px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

@media only screen and (min-width: 992px) {
    #contact .p-contact .p-contact__input {
        padding: 10px 15px;
    }
}

#contact .p-contact .p-contact__input+.p-contact__input {
    margin-top: 5px;
}

@media only screen and (min-width: 992px) {
    #contact .p-contact .p-contact__input+.p-contact__input {
        margin-top: 10px;
    }
}

#contact .p-contact .p-contact__textarea {
    width: 100%;
    height: 100px;
    margin-top: 5px;
    padding: 5px 10px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

#contact .p-contact .p-contact__privacy {
    margin-bottom: 5px;
    font-size: 14px;
    letter-spacing: 0.13em;
    line-height: 1.7857142857;
}

@media only screen and (min-width: 576px) {
    #contact .p-contact .p-contact__privacy {
        margin-top: 25px;
        margin-bottom: 25px;
        text-align: center;
    }
}

@media only screen and (min-width: 992px) {
    #contact .p-contact .p-contact__privacy {
        margin-top: 45px;
        margin-bottom: 45px;
        font-size: 13px;
        line-height: 2;
    }
}

#contact .p-contact .p-contact__privacy a {
    color: #00b185;
    border-bottom: 1px solid #00b185;
}

#contact .p-contact .p-contact__txt {
    margin-bottom: 30px;
}

@media only screen and (min-width: 992px) {
    #contact .p-contact .p-contact__txt {
        margin-bottom: 60px;
    }
}

@media only screen and (min-width: 576px) {
    #contact .p-contact .c-btn {
        margin: 0 auto;
    }
}

#contact .p-contact .c-btn--back {
    margin-top: 15px;
}

@media only screen and (min-width: 576px) {
    #contact .p-contact .c-btn--back {
        margin: 15px auto 0;
    }
}

#contact .p-contact .mwform-tel-field {
    display: block;
}

#contact .p-contact .mwform-tel-field .p-contact__input {
    width: 29%;
}

@media only screen and (min-width: 576px) {
    #contact .p-contact .mwform-tel-field .p-contact__input {
        width: 120px;
    }
}

#contact .p-contact .mw_wp_form .error {
    margin-top: 5px;
    font-size: 12px;
}

#contact .p-contact .mw_wp_form_confirm .p-contact__labelWrap {
    margin-bottom: 30px;
}

#contact .p-contact .mw_wp_form_confirm .p-contact__label {
    margin-bottom: 10px;
    display: block;
}

#contact .p-contact .mw_wp_form_confirm .p-contact__required,
#contact .p-contact .mw_wp_form_confirm .p-contact__privacy,
#contact .p-contact .mw_wp_form_confirm .un-confirm {
    display: none;
}

#thanks .p-thanks {
    padding: 50px 0;
}

@media only screen and (min-width: 992px) {
    #thanks .p-thanks {
        padding: 100px 0;
    }
}

#thanks .p-thanks .p-thanks__wrap {
    padding: 30px 15px;
    background-color: #f7f7f7;
}

@media only screen and (min-width: 992px) {
    #thanks .p-thanks .p-thanks__wrap {
        padding: 60px 30px 50px;
    }
}

@media only screen and (min-width: 576px) {
    #thanks .p-thanks .p-thanks__inner {
        max-width: 724px;
        margin: 0 auto;
    }
}

#thanks .p-thanks .p-thanks__txt {
    margin-bottom: 30px;
}

@media only screen and (min-width: 992px) {
    #thanks .p-thanks .p-thanks__txt {
        margin-bottom: 60px;
    }
}

#thanks .p-thanks .c-btn {
    margin: 0 auto;
}

#privacy .p-privacy {
    padding: 50px 0;
}

@media only screen and (min-width: 992px) {
    #privacy .p-privacy {
        padding: 100px 0;
    }
}

#privacy .p-privacy .p-privacy__lead {
    font-size: 18px;
    letter-spacing: 0.15em;
}

@media only screen and (min-width: 576px) {
    #privacy .p-privacy .p-privacy__lead {
        max-width: 910px;
        margin: 0 auto;
    }
}

@media only screen and (min-width: 992px) {
    #privacy .p-privacy .p-privacy__lead {
        margin-bottom: 50px;
        font-size: 20px;
        line-height: 1.4;
    }
}

#privacy .p-privacy .p-privacy__list {
    margin-bottom: 20px;
}

@media only screen and (min-width: 576px) {
    #privacy .p-privacy .p-privacy__list {
        max-width: 910px;
        margin: 0 auto 20px;
    }
}

@media only screen and (min-width: 992px) {
    #privacy .p-privacy .p-privacy__list {
        margin-bottom: 40px;
    }
}

#privacy .p-privacy .p-privacy__term {
    margin-bottom: 5px;
    padding-left: 17px;
    position: relative;
}

#privacy .p-privacy .p-privacy__term::before {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 9px;
    left: 0;
    background-color: #333;
    border-radius: 50%;
}

#privacy .p-privacy .p-privacy__desc+.p-privacy__term {
    margin-top: 40px;
}

#privacy .p-privacy .p-privacy__contact {
    padding: 30px 15px 25px;
    background-color: #f7f7f7;
}

@media only screen and (min-width: 992px) {
    #privacy .p-privacy .p-privacy__contact {
        padding: 55px 20px 45px;
    }
}

#privacy .p-privacy .p-privacy__label {
    margin-bottom: 5px;
    font-size: 18px;
}

@media only screen and (min-width: 576px) {
    #privacy .p-privacy .p-privacy__label {
        max-width: 910px;
        margin: 0 auto 5px;
    }
}

@media only screen and (min-width: 992px) {
    #privacy .p-privacy .p-privacy__label {
        font-size: 20px;
        letter-spacing: 0.15em;
        line-height: 1.3;
    }
}

@media only screen and (min-width: 576px) {
    #privacy .p-privacy .p-privacy__txt {
        max-width: 910px;
        margin: 0 auto;
    }
}

.p-404 {
    padding: 100px 0;
}

@media only screen and (min-width: 992px) {
    .p-404 {
        padding: 150px 0;
    }
}

.p-404 .p-404__txt {
    margin-bottom: 50px;
    font-size: 14px;
    text-align: center;
}

@media only screen and (min-width: 992px) {
    .p-404 .p-404__txt {
        font-size: 16px;
    }
}

.p-404 .c-btn {
    margin: 0 auto;
}

/*# sourceMappingURL=style.css.map */

#contact .p-contact p {
    background-color: #fff;
    padding: 10px 15px;
    margin-top: 5px;
}

.footer-banner-wrap {
    /* width: 100%; */
    width: 600px;
    margin: 30px auto 0;
    /* margin-left: auto; */
}

@media screen and (max-width: 767px) {
    .footer-banner-wrap {
        width: 94%;
    }
}

.footer-banner {}

.footer-banner a {
    display: block;
    height: auto;
    width: 300px;
}

@media screen and (max-width: 767px) {
    .footer-banner a {
        width: 200px;
    }
}

.footer-banner .slick-slide {
    transform: scale(0.8);
    /*左右の画像のサイズを80%に*/
    transition: all 0.5s;
    /*拡大や透過のアニメーションを0.5秒で行う*/
    opacity: 0.5;
    /*透過50%*/
}

@media screen and (max-width: 767px) {
    .footer-banner .slick-slide {
        transform: scale(0.85);
        /*左右の画像のサイズを80%に*/
    }
}

.footer-banner .slick-slide.slick-center {
    transform: scale(1);
    /*中央の画像のサイズだけ等倍に*/
    opacity: 1;
    /*透過なし*/
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.footer-banner .slick-prev,
.footer-banner .slick-next {
    position: absolute;
    /*絶対配置にする*/
    top: 37%;
    cursor: pointer;
    /*マウスカーソルを指マークに*/
    outline: none;
    /*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #fff;
    /*矢印の色*/
    border-right: 2px solid #fff;
    /*矢印の色*/
    height: 15px;
    width: 15px;
}

@media screen and (max-width: 767px) {

    .footer-banner .slick-prev,
    .footer-banner .slick-next {
        width: 10px;
        top: 33%;
        height: 10px;
    }
}

.footer-banner .slick-prev {
    /*戻る矢印の位置と形状*/
    left: -4.5%;
    transform: rotate(-135deg);
}

.footer-banner .slick-next {
    /*次へ矢印の位置と形状*/
    right: -4.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.footer-banner .slick-dots {
    text-align: center;
    margin: 20px 0 0 0;
}

.footer-banner .slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.footer-banner .slick-dots button {
    color: transparent;
    outline: none;
    width: 8px;
    /*ドットボタンのサイズ*/
    height: 8px;
    /*ドットボタンのサイズ*/
    display: block;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #ccc;
    /*ドットボタンの色*/
}

.footer-banner .slick-dots .slick-active button {
    background: #333;
    /*ドットボタンの現在地表示の色*/
}

.p-search .form-wrap .selectbox .list-categories {
    position: absolute;
    width: 100%;
    z-index: 999;
    background-color: #fff;
    border: 1px solid #acacac;
}

.p-search .form-wrap .box {
    height: auto;
    padding: 20px 20px 50px 20px;
}

.p-search .form-wrap .box .price-box {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.p-search .form-wrap .box .price-box .selectbox {
    z-index: 999;
}

.p-search .form-wrap .box .price-box .accordion {
    flex-wrap: wrap;
    display: flex;
    align-items: flex-start;
    width: 100%;
    justify-content: space-between;
}

.p-search .form-wrap .box .price-box .accordion:before {
    content: "";
    display: block;
    width: 23.5%;
    order: 1;
}

.p-search .form-wrap .box .price-box .accordion:after {
    content: "";
    display: block;
    width: 23.5%;
}

.p-search .form-wrap .box .price-box .accordion .ttl {
    width: 100%;
}

.p-search .form-wrap .box .price-box .accordion .selectbox {
    width: 23.5%;
}

@media screen and (max-width: 767px) {
    .p-search .form-wrap .box .price-box .accordion .selectbox {
        width: 48%;
    }

    .p-search .form-wrap .selectbox .list-categories {
        position: static;
        border: none;
        border-top: 1px solid #acacac;
    }
}

.table-wrap {
    overflow: visible;
    width: 50%;
    /* transform: scale(0.5);
    transform-origin: top; */
    /* margin-top: 80px; */
}