@charset "UTF-8";

/* 202501追記 */
.bg--gold {
    background-color: #be9461;
}
.chr--nobreak {
    display: inline-block;
}

/* container */
.container--view {
    max-width: 1380px;
    margin: auto;
    padding: 0 50px;
}

.container--btn {
    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-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* menu */
.pageHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 122px;
    background-color: #fff;
    /* background-color: red; */
    /* border-bottom: 1px solid #be9360; */
    padding: 22px 0 10px;
    z-index: 1000;
    /* z-index: 2; */

    /* 202501追記 */
    font-family: YakuHanJP,'Noto Sans JP',sans-serif;
    font-weight: 300;
    transition: .4s ease-out;
}

/* 202501追記 */
.pageHeader.is-hide {
    transform: translateY(-100%);
}

/* .pageHeader--wrap:after {
    content: "";
    display: block;
    height: 122px
} */

.pageHeader__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    /* -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; */
    height: 100%;
}

.pageHeader__col {
    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; */
    align-items: center;
    margin-bottom: 22px;
}

.pageHeader__logo {
    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;
    /* max-width: 384px; */
    /* width: 37%; */
    width: 28%;
    max-height: 45px;
    margin: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    text-align: left;
}

.pageHeader__logo img {
    /* max-height: 45px; */
}

.pageHeader__logo:hover {
    opacity: .8;
}

.pageHeader__logo .logo__title {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    margin-left: 1em;
    display: block;
    -webkit-font-feature-settings: "pkna";
    font-feature-settings: "pkna";
}

.pageHeader__cvBtn {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.navi--page+.pageFooter {
    margin-top: 50px;
}

.pageFooter__cv {
    padding: 70px 0;
}

.pageFooter__cvBtn {
    /* width: 100%; */
    width: calc((100% - 70px) / 2);
    max-width: 500px;
}

.pageFooter__contact {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: .075em;
    color: #333;
    text-align: center;
    margin: 60px auto 45px;
}

.pageFooter__contact:first-child {
    margin-top: 0;
}

.pageFooter__contact .contact__tel {
    font-size: 70px;
    line-height: 1;
    letter-spacing: .05em;
    margin: .1em auto .15em;
}

/* 202502追記 */
.pageFooter__contact .global__tel {
    font-size: 16px;
    margin-block: 2em;
}
.pageFooter__contact .global__tel .text {
    display: block;
    font-size: 18px;
    margin-top: 1em;
}

.pageFooter__contact .contact__tel .icon {
    width: auto;
    vertical-align: baseline;
    margin-right: .15em;

    /* 202501追記 */
    width: 72px;
}

.pageFooter__note {
    padding: 30px 0;
}

.pageFooter__note .note {
    /* color: #666; */
    font-size: 10px;
    font-family: YakuHanJP,'Noto Sans JP',sans-serif;
    /* letter-spacing: .05em; */
    line-height: 1.9;
}
.pageFooter__note .note__item {
    padding-left: 1em;
    text-indent: -1em;
    word-break: break-all;
}

/* .pageFooter__note .note+.note {
    margin-top: 1.5em
} */

/* banner */
.pageFooter__group {
    padding: 60px 0;

    /* 202501追記 */
    font-family: YakuHanJP, 'Noto Sans JP', sans-serif;
}

/* 202501追記 */
.container--col3 {
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
}
.container--col3 .col {
    width: calc((100% - 80px) / 3);
    margin: 0 40px 0 0;
}
.container--col3 .col:nth-child(3n) {
    margin-right: 0;
}
@media screen and (max-width: 1000px) {
    .container--col3 {
        margin: 0 auto;
    }
    .container--col3 .col {
        width: calc((100% - 40px) / 3);
        margin: 0 20px 30px 0;
    }
}
@media screen and (max-width: 768px) {
    .container--col3 .col {
        display: block;
        width: 100%;
        margin: auto;
    }
    .container--col3 .col:not(:first-of-type) {
        margin-top: 10px;
    }
}

.bnr__item a {
    display: block;
    line-height: 1;
    font-size: 0;
    background-color: #fff;
    transition: all .5s;
}

.bnr__item a:hover {
    opacity: 0.7;
}

.bnr__item img {
    width: 100%;
    -webkit-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
}

.bnr__txt {
    color: #fff;
    text-align: center;
    display: block;
    font-size: 14px;
    letter-spacing: .05em;
    /* margin-top: 1em; */
    margin-top: 10px;

    /* 202501追記 */
    line-height: 1.6;
}

.pageFooter__related {
    padding: 80px 0 25px;
}
.relatedList {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px calc(25 / 1000 * 100%);
    max-width: 1000px;
    margin-inline: auto;
}
.relatedList__item {
    width: calc(310 / 1000 * 100%);
}
.relatedList__name {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 1em;
    text-align: center;
}

.pageFooter__seller {
    margin: 30px auto;
}

.pageFooter__seller .seller {
    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-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 20px;
    margin: 0 auto;
}

.pageFooter__seller .seller .seller__item {
    margin: 0 calc(40 / 1280 * 100%) 0 0;
}

.pageFooter__seller .seller .seller__item:last-of-type {
    margin-right: 0;
}

.pageFooter__seller .seller .seller__item img {
    -webkit-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
}

.pageFooter__seller .seller .seller__item a {
    display: block;
    line-height: 1;
    background-color: #fff;
}

.pageFooter__seller .seller .seller__item a:hover img {
    opacity: .8;
}

.pageFooter__seller .seller .seller__item span.com_txt {
    display: block;
    font-size: 12px;
}

.pageFooter__copyright {
    background-color: #000;
    color: #fff;
    font-size: 11px;
    line-height: 1;
    letter-spacing: .05em;
    text-align: center;
    padding: 20px;
    /* margin-top: 30px; */
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* padding-top: 56px; */
    padding-top: 112px;
    overflow: auto;
    background: #fff;
    background: -webkit-linear-gradient(top, #fff 0, #fff 50%, rgba(255, 255, 255, .9) 100%);
    background: linear-gradient(180deg, #fff 0, #fff 50%, rgba(255, 255, 255, .9) 100%);
    z-index: 1000;
    opacity: 0;
    display: none;
}

.menu--open .menu {
    display: none;
}

.menu__inner:after {
    content: "";
    display: block;
    height: 40px;
}

.menu__btn {
    /* width: 85px;
    height: 56px; */
    /* width: 16%; */
    width: 16vw;
    height: 112px;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2000;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.menu__btn span {
    display: block;
    width: 56px;
    height: 1px;
    background-color: #be9360;
    position: absolute;
    left: 50%;
    margin-left: -28px;
}

.menu__btn span:nth-child(1) {
    /* top: 19px */
    top: 38px;
}

.menu__btn span:nth-child(2) {
    /* top: 28px */
    top: 56px;
}

.menu__btn span:nth-child(3) {
    /* bottom: 18px */
    bottom: 36px;
}

.menu--open .menu__btn span:nth-child(1) {
    /* top: 27px; */
    top: 54px;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.menu--open .menu__btn span:nth-child(2) {
    opacity: 0;
}

.menu--open .menu__btn span:nth-child(3) {
    /* bottom: 28px; */
    bottom: 56px;
    -webkit-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg);
}

.menu__cvBtn {
    margin: 25px auto 0;
    padding: 0 20px;
}

.menu__cvBtn .btn {
    width: 100%;
    max-width: 500px;
    /* min-height: 90px; */
    /* min-height: 55px */
}

.btn {
    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-transition: background-color 250ms ease, border 250ms ease, color 250ms ease;
    transition: background-color 250ms ease, border 250ms ease, color 250ms ease;
}

.btn--cv {
    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-transition: background-color 250ms ease, border 250ms ease, color 250ms ease;
    transition: background-color 250ms ease, border 250ms ease, color 250ms ease;
}

.btn .icon,
.btn--cv .icon {
    display: inline-block;
    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;
    width: 1.15em;
    height: 1.15em;
    margin-left: .25em;
}

.btn .icon svg,
.btn--cv .icon svg {
    width: 100%;
}

.btn .icon .svg-fill,
.btn--cv .icon .svg-fill {
    fill: #fff;
    -webkit-transition: fill 250ms ease;
    transition: fill 250ms ease;
}

.btn {
    background-color: #be9360;
    border: 1px solid #be9360;
    color: #fff;
    min-height: 50px;
    font-size: 13px;
    font-weight: 300;
    /* font-size: 17px; */
    line-height: 1.3;
    padding: 13px 15px 13px 15px;
    /* padding: .25em 1em .2em 1em; */
    letter-spacing: .1em;
}

.btn:not(:last-of-type) {
    margin-right: 12px;
}

.btn:hover {
    background-color: #fff;
    color: #be9360;
}

.btn:hover .svg-fill {
    fill: #be9360;
}

.btn.ghost {
    background-color: #fff;
    border: 1px solid #be9360;
    color: #be9360;
    text-align: center;
}

.btn.ghost .svg-fill {
    fill: #be9360;
}

.btn.ghost:hover {
    background-color: #be9360;
    color: #fff;
}

.btn.ghost:hover .svg-fill {
    fill: #fff;
}

.btn.blk {
    background-color: #231815;
    border: 1px solid #231815;
    color: #fff;
}

.btn.blk:hover {
    background-color: #fff;
    color: #231815;
}

.btn.blk:hover .svg-fill {
    fill: #231815;
}

.btn.blk.ghost {
    background-color: #fff;
    border: 1px solid #231815;
    color: #231815;
}

.btn.blk.ghost .svg-fill {
    fill: #231815;
}

.btn.blk.ghost:hover {
    background-color: #231815;
    color: #fff;
}

.btn.blk.ghost:hover .svg-fill {
    fill: #fff;
}

.btn.gray {
    background-color: #a3a3a3;
    border: 1px solid #a3a3a3;
    color: #fff;
}

.btn.gray:hover {
    background-color: #fff;
    color: #a3a3a3;
}

.btn.gray:hover .svg-fill {
    fill: #a3a3a3;
}

.btn.gray.ghost {
    background-color: #fff;
    border: 1px solid #a3a3a3;
    color: #a3a3a3;
}

.btn.gray.ghost .svg-fill {
    fill: #a3a3a3;
}

.btn.gray.ghost:hover {
    background-color: #a3a3a3;
    color: #fff;
}

.btn.gray.ghost:hover .svg-fill {
    fill: #fff;
}

.btn.navy {
    background-color: #154577;
    border: 1px solid #154577;
    color: #fff;
}

.btn.navy:hover {
    background-color: #fff;
    color: #154577;
}

.btn.navy:hover .svg-fill {
    fill: #154577;
}

.btn.navy.ghost {
    background-color: #fff;
    border: 1px solid #154577;
    color: #154577;
}

.btn.navy.ghost .svg-fill {
    fill: #154577;
}

.btn.navy.ghost:hover {
    background-color: #154577;
    color: #fff;
}

.btn.navy.ghost:hover .svg-fill {
    fill: #fff;
}

.btn.red {
    background-color: #7c0d22;
    border: 1px solid #7c0d22;
    color: #fff;
}

.btn.red:hover {
    background-color: #fff;
    color: #7c0d22;
}

.btn.red:hover .svg-fill {
    fill: #7c0d22;
}

.btn.red.ghost {
    background-color: #fff;
    border: 1px solid #7c0d22;
    color: #7c0d22;
}

.btn.red.ghost .svg-fill {
    fill: #7c0d22;
}

.btn.red.ghost:hover {
    background-color: #7c0d22;
    color: #fff;
}

.btn.red.ghost:hover .svg-fill {
    fill: #fff;
}

.btn--cv {
    /* background-color: #154577;
    border: 1px solid #154577; */
    color: #fff;
    min-height: 80px;
    font-size: 22px;
    line-height: 1.3;
    padding: .25em 2em;
    letter-spacing: .1em;
    /* margin: 0 20px 30px; */
    margin: 0 auto 20px;
}

.btn--cv small {
    font-size: 16px;
    margin-top: .3em;
}

.btn--cv .svg-fill {
    fill: #fff;
}

/* .btn--cv:hover {
    background-color: #fff;
    color: #154577;
}

.btn--cv:hover .svg-fill {
    fill: #154577;
} */

.btn--cv.ghost {
    background-color: #fff;
    border: 1px solid #154577;
    color: #154577;
}

.btn--cv.ghost .svg-fill {
    fill: #154577;
}

.btn--cv.ghost:hover {
    background-color: #154577;
    color: #fff;
}

.btn--cv.ghost:hover .svg-fill {
    fill: #fff;
}

.btn--cv.red {
    background-color: #7c0d22;
    border: 1px solid #7c0d22;
}

.btn--cv.red:hover {
    background-color: #fff;
    color: #7c0d22;
}

.btn--cv.red:hover .svg-fill {
    fill: #7c0d22;
}

.btn--cv.red.ghost {
    background-color: #fff;
    border: 1px solid #7c0d22;
    color: #7c0d22;
}

.btn--cv.red.ghost .svg-fill {
    fill: #7c0d22;
}

.btn--cv.red.ghost:hover {
    background-color: #7c0d22;
    color: #fff;
}

.btn--cv.red.ghost:hover .svg-fill {
    fill: #fff;
}


.navi--header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    /* height: 30px; */
    font-size: 13px;
    line-height: 1.25;
    color: #333;
}

.navi--header .navi__item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    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;
    position: relative;
}

.navi--header .navi__item:before {
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    background-color: #a3a3a3;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -8px;
}

.navi--header .navi__item:last-child:after {
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    background-color: #a3a3a3;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -8px;
}

.navi--header .navi__item a {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -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;
    text-align: center;
    line-height: 1.15;
    padding: 0 .5em;
    position: relative;
    -webkit-transition: color 250ms ease;
    transition: color 250ms ease;
}

.navi--header .navi__item a:hover {
    color: #be9360;
}

/* .navi--header .navi__item:nth-of-type(1) a:before,
.navi--header .navi__item:nth-of-type(5) a:before,
.navi--header .navi__item:nth-of-type(6) a:before,
.navi--header .navi__item:nth-of-type(7) a:before,
.navi--header .navi__item:nth-of-type(10) a:before */
.navi--header .navi__item.new a:before {
    content: "NEW";
    display: inline-block;
    font-size: 11px;
    line-height: 1;
    background-color: #be9360;
    padding: .2em .75em .15em .75em;
    color: #fff;
    margin: -1.5em auto .25em;
}

/* ナビゲーション非表示 */
/* 202501編集 */
.navi__item--coming a {
    pointer-events: none;
    opacity: 0.4;
}


.navi--section {
    color: #be9360;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: .1em;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 120px;
    padding-top: 80px;
    padding-bottom: 120px;
}

.navi--page {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.navi--page .navi__item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.navi--page .navi__item a {
    display: block;
    background-color: #fff;
    font-size: 0;
    line-height: 1;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
}

.navi--page .navi__item a:hover {
    opacity: .8;
}

.navi--menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 17px;
    line-height: 1.4;
}

.navi--menu .navi__item {
    width: 50%;
    border-top: 1px solid #be9360;
}

.navi--menu .navi__item:nth-child(odd) {
    border-right: 1px solid #be9360;
}

/* .navi--menu .navi__item:last-of-type {
    width: 100%;
    border-right: none;
} */

.navi--menu .navi__item.lg {
    width: 100%;
}

.navi--menu .navi__item 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;
    text-align: center;
    width: 100%;
    height: 75px;
    padding: .5em; */
    display: block;
    text-align: center;
    padding: 34px 0;
    position: relative;
}

/* .navi--menu .navi__item:nth-of-type(1) a:before,
.navi--menu .navi__item:nth-of-type(5) a:before,
.navi--menu .navi__item:nth-of-type(6) a:before,
.navi--menu .navi__item:nth-of-type(7) a:before,
.navi--menu .navi__item:nth-of-type(10) a:before */
.navi--menu .navi__item.new a:before {
    content: "NEW";
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    background-color: #be9360;
    padding: .15em .5em;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
}

.navi--cv {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .05em;
    color: #fff;
    background-color: #be9360;
}

.cv--top {
    /* 20220123追記 */
    margin-top: 112px;
    position: relative;
    z-index: 910;
    /* 202501追記 */
    display: none;
}

.cv--top .navi--cv {
    border-bottom: 1px solid rgba(255, 255, 255, .6);
}

.navi--cv .navi__item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 80px;
    border-right: 1px solid rgba(255, 255, 255, .6);
}

.navi--cv .navi__item:last-child {
    border-right: none;
}

.navi--cv .navi__item a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    padding: 0.3em;
    /* padding: 1.45em; */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -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;
    line-height: 1.2;
    /* 202501追加 */
    font-family: YakuHanJP,'Noto Sans JP',sans-serif;
    font-weight: 300;
    row-gap: 5px;
    text-align: center;
}

.navi--cv .navi__item a span {
    display: block;
    line-height: 1;
}

.navi--cv .icon {
    display: block;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 40px;
    max-height: 40px;
    font-size: 0;
    line-height: 0;
}


.navi--cv .icon img {
    vertical-align: bottom;
}

.cv--bottom--wrap {
    position: relative;
    z-index: 500;
}

.cv--bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    -webkit-transition: opacity .2s ease, -webkit-transform .5s ease;
    transition: opacity .2s ease, -webkit-transform .5s ease;
    transition: transform .5s ease, opacity .2s ease;
    transition: transform .5s ease, opacity .2s ease, -webkit-transform .5s ease;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.cvBtm .cv--bottom {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.menu--open .cv--bottom {
    opacity: 0;
    pointer-events: none;
}

.cv--bottom--wrap:after {
    content: "";
    display: block;
    height: 80px;
}

/* NEWフッターナビ */
.navi--footer {
    /* width: 90%;
    margin: 20px auto 0; */
    max-width: 1380px;
    /* margin: 20px auto 0; */
    margin: 100px auto 0;
    padding: 0 50px;
}

.navi--footer ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
}

.navi--footer .navi__item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    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;
}

.navi--footer .navi__item a {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #333;
    line-height: 1.25;
    padding: 0 0.5em;
}

.navi--footer .navi__item a::after {
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    background-color: #333;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.navi--footer .navi__item:last-of-type a::before {
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    background-color: #333;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

/* ナビゲーション非表示 */
/*
.navi--footer .navi__item:nth-of-type(5) a {
    pointer-events: none;
    opacity: 0.4;
}
*/

/* footer_recomend */
#footer_recomend {
    background: #f2eade;
    padding: 60px 0 40px;
    position: relative;
}

#footer_recomend .reco_box {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

#footer_recomend .reco_titile {
    font-family: 'YakuHanJP_Noto', 'Noto Sans JP', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    color: #920d1d;
    margin-bottom: 55px;
}

#footer_recomend li a span {
    font-size: 17px;
    font-family: 'YakuHanJP_Noto', 'Noto Serif JP', serif;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    color: #000;
    display: block;
    margin-top: 10px;
}

#footer_recomend .sec {
    /* max-width: 1000px; */
    margin: 0 auto;
}

#footer_recomend .bnr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#footer_recomend .bnr li {
    /* width: calc((100% - 40px) / 3); */
		/* width: calc((100% - 60px) / 4); */
    margin-right: 20px;
    box-sizing: border-box;
}

#footer_recomend .bnr li a {
    transition: all .5s;
}

#footer_recomend .bnr li a:hover {
    opacity: 0.7;
}

/* #footer_recomend .bnr>li:nth-of-type(3) {
    display: none;
} */

/* #footer_recomend .bnr>li:nth-of-type(3) {
    margin-right: 0;
    margin-top: 0;
} */
/*
#footer_recomend .bnr>li:nth-of-type(3n) {
    margin-right: 0;
}
*/


/* 物件バナー：3つ */
/*
#footer_recomend .bnr {
	margin: 0 auto;
  max-width: 1000px;
}
#footer_recomend .bnr li {
		width: calc((100% - 40px) / 3);
}
#footer_recomend .bnr>li:nth-of-type(3n) {
    margin-right: 0;
}
*/

/* 物件バナー：4つ */
/*
#footer_recomend .bnr li {
		width: calc((100% - 60px) / 4);
}
#footer_recomend .bnr>li:nth-of-type(4n) {
    margin-right: 0;
}
*/

/*
#footer_recomend .bnr>li:nth-of-type(n+5) {
    margin-top: 40px;
}
*/

/* #footer_recomend .bnr>li:nth-of-type(n+4) {
    margin-top: 40px;
} */



/* 物件バナー：5つ */
/*
#footer_recomend .bnr {
	margin: 0 auto;
  max-width: 1000px;
}
#footer_recomend .bnr li {
		width: calc((100% - 40px) / 3);
}
#footer_recomend .bnr>li:nth-of-type(3n) {
    margin-right: 0;
}
#footer_recomend .bnr>li:nth-of-type(n+4) {
    margin-top: 40px;
}
#footer_recomend .bnr>li:nth-of-type(4n) {
    margin-left: 18%;
}
*/



/* 物件バナー：6つ */
#footer_recomend .bnr {
	margin: 0 auto;
  max-width: 1000px;
}
#footer_recomend .bnr li {
		width: calc((100% - 40px) / 3);
}
#footer_recomend .bnr>li:nth-of-type(3n) {
    margin-right: 0;
}
#footer_recomend .bnr>li:nth-of-type(n+4) {
    margin-top: 40px;
}
#footer_recomend .bnr>li:nth-of-type(4n) {
}


#footer_recomend .bnr a {
    text-decoration: none;
    display: block;
    transition: opacity 0.3s ease;
}


/* 769px以上 */
@media all and (min-width:769px) {

    /* メニュー */
    .menu__btn {
        display: none;
    }

    .cv--top {
        display: none;
    }

    .cv--bottom {
        display: none;
    }

    .cv--bottom--wrap:after {
        display: none;
    }

    /* フッター企業ロゴ */
    .pageFooter__seller .seller .seller__item:nth-of-type(2) a img {
        margin-top: -5px;
    }

    .pageFooter__seller .seller .seller__item:nth-of-type(4) a img {
        margin-top: 3px;
    }

    .pageFooter__seller .seller .seller__item:nth-of-type(1) span.com_txt {
        margin-bottom: 20px;
        padding-left: 55px;
    }

    .pageFooter__seller .seller .seller__item:nth-of-type(2) span.com_txt {
        margin-bottom: 20px;
        padding-left: 45px;
    }

    .pageFooter__seller .seller .seller__item:nth-of-type(3) span.com_txt {
        margin-bottom: 20px;
        padding-left: 35px;
    }

    .pageFooter__seller .seller .seller__item:nth-of-type(4) span.com_txt {
        margin-bottom: 20px;
        padding-left: 59px;
    }

}

/* 1280px以下 */
@media all and (max-width:1280px) {

    /* メニュー */
    .navi--header .navi__item a {
        font-size: 11px;
    }

    .navi--footer .navi__item a {
        font-size: 12px;
    }

    .pageFooter__contact {
        font-size: 16px;
    }

    .pageFooter__contact .contact__tel {
        font-size: 60px;
    }

    .btn {
        font-size: 12px;
    }

    .pageFooter__seller .container--view {
        padding-inline: 20px;
    }
}

/* 1000px以下 */
@media all and (max-width:1000px) {

    /* container */
    .container--view {
        width: 90%;
        padding: 0;
    }

    /* メニュー */
    /* .pageHeader {
        padding: 10px 0 5px
    } */
    .pageHeader__col {
        width: 100%;
        margin: 0 auto 22px;
    }

    .pageHeader__cvBtn .btn {
        font-size: 13px;
    }

    .pageFooter__group {
        padding: 60px 0 30px 0;
    }

    .pageFooter__cv {
        padding: 70px 0 40px 0;
    }

    .navi--page+.pageFooter {
        margin-top: 30px;
        ;
    }

    .navi--header {
        font-size: 11px;
    }

    .navi--section {
        font-size: 16px;
        min-height: 100px;
        padding-top: 70px;
        padding-bottom: 100px;
    }

    .navi--footer {
        width: 90%;
        padding: 0;
    }

    #footer_recomend li a span {
        font-size: 16px;
    }

    .relatedList {
        flex-wrap: wrap;
        gap: 30px calc(40 / 1280 * 100%);
    }
    .relatedList__item {
        width: calc(460 / 1280 * 100%);
    }

}

/* 820px以下 */
@media all and (max-width:820px) {
    .navi--header .navi__item a {
        font-size: 10px;
    }

    .navi--footer .navi__item a {
        font-size: 10px;
    }

    #footer_recomend .reco_titile {
        font-size: 26px;
    }
}

/* 768px以下 */
@media all and (max-width:768px) {

    /* メニュー */
    .pageHeader {
        /* height: 56px; */
        /* position: static; */
        position: absolute;
        min-height: 112px;
        padding: 0;
        /* padding: 10px 0; */
        border-bottom: none;
        /* position: absolute; */

        /* 202501追記 */
        transform: translateY(0);
    }

    /* .pageHeader--wrap:after {
        height: 122px;
    } */

    /* 202501追記 */
    .pageHeader__inner {
        height: 112px;
    }

    .pageHeader__col {
        margin: 26px auto;
        /* 202501追記 */
        height: 100%;
        align-items: center;
    }

    .pageHeader__logo {
        margin-top: 0;
    }

    .pageHeader__logo {
        width: 75%;
        height: auto;
    }

    .pageHeader__logo img {
        max-height: 50px;
    }

    .pageHeader__logo .logo__title {
        font-size: 13px;
    }

    .pageHeader__cvBtn {
        display: none;
    }

    .menu__btn {
        width: 20vw;
    }

    .menu__btn span {
        width: 50px;
        margin-left: -25px;
    }

    .menu--open .menu {
        display: block;
    }

    .navi--page+.pageFooter {
        margin-top: 20px;
    }

    .pageFooter__note {
        padding: 50px 0;
    }

    .pageFooter__cv {
        /* padding: 60px 0; */
        padding: 70px 0 100px 0;
    }

    .pageFooter__contact {
        /* margin: 50px 0 35px; */
        margin: 78px 0 66px;
        /* font-size: 20px; */
        font-size: 2.5vw;
    }

    .pageFooter__contact .contact__tel {
        /* font-size: 70px; */
        font-size: 10vw;
    }

    /* 202502追記 */
    .pageFooter__contact .global__tel {
        font-size: 10px;
        margin-block: 2em;
    }
    .pageFooter__contact .global__tel .text {
        font-size: 120%;
    }

    .pageFooter__contact .contact__tel .icon {
        width: 1em;
    }

    .pageFooter__group {
        padding: 40px 0;
    }

    .pageFooter__related {
        padding: 70px 0;
    }

    .pageFooter__seller .seller {
        row-gap: 30px;
    }
    .pageFooter__seller .seller .seller__item {
        width: 90%;
        margin-right: 0;
    }

    .pageFooter__seller .seller .seller__item a {
        margin: 0 auto;
        text-align: center;
    }

    .pageFooter__seller .seller .seller__item span.com_txt {
        font-size: 12px;
        margin-bottom: 15px;
        text-align: center;
    }

    .btn {
        padding: 32px 0;
    }

    .btn--cv {
        font-size: 20px;
        min-height: 90px;
        /* min-height: 60px; */
        margin: 0 auto;
    }

    .btn--cv small {
        font-size: 14px;
    }

    .navi--header {
        display: none;
    }

		/* ナビゲーション非表示 */
		/*
    .navi--menu .navi__item:nth-of-type(5) a {
        pointer-events: none;
        opacity: 0.4;
    }
		*/



    .navi--footer {
        width: 100%;
        margin: 60px auto 0;
    }

    .navi--footer .navi__item {
        width: 50%;
        border-top: 1px solid #be9360;
        -webkit-flex: auto;
        -ms-flex: auto;
        flex: auto;
    }

    .navi--footer .navi__item:nth-of-type(odd) {
        border-right: 1px solid #be9360;
    }

    /* .navi--footer .navi__item:nth-of-type(9),
    .navi--footer .navi__item:nth-of-type(10) {
        border-bottom: 1px solid #be9360;
    } */

    .navi--footer .navi__item:last-of-type {
        border-bottom: 1px solid #be9360;
				border-right: none;
    }

    .navi--footer .navi__item a {
        /* height: 50px; */
        font-size: 17px;
        padding: 34px 0;
    }

    .navi--footer .navi__item a::after {
        content: none;
    }

    .navi--footer .navi__item:last-of-type a::before {
        content: none;
    }

    .navi--section {
        font-size: 14px;
        min-height: 80px;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-top: 60px;
        padding-bottom: 80px;
        margin-bottom: -30px;
    }

    #footer_recomend {
        padding: 40px 0 45px;
    }

    #footer_recomend .reco_titile {
        font-size: 20px;
        margin-bottom: 34px;
    }

    #footer_recomend .bnr li {
        width: 100%;
        margin-right: 0;
    }

    #footer_recomend .bnr li:nth-of-type(n+2) {
        margin-top: 30px;
    }

    #footer_recomend .bnr li img {
        width: 100%;
    }

    #footer_recomend li a span {
        font-size: 15px;
        margin-top: 10px;
    }

    .relatedList {
        max-width: 280px;
        margin-inline: auto;
    }
    .relatedList__item {
        width: 100%;
    }

}

/* 450px以下 */
@media all and (max-width:450px) {

    /* メニュー */
    .pageHeader {
        /* min-height: 56px; */
        min-height: 57px;
    }

    /* .pageHeader--wrap:after {
        height: 56px;
    } */

    /* 202501追記 */
    .pageHeader__inner {
        height: 57px;
    }

    .pageHeader__col {
        margin: 13px auto;
    }

    .pageHeader__logo {
        max-width: calc(100% - 70px);
    }

    .pageHeader__logo .logo__title {
        font-size: 12px;
        letter-spacing: 0;
    }

    .navi--page+.pageFooter {
        margin-top: 10px;
    }

    .pageFooter__group {
        padding: 40px 0;
    }

    .pageFooter__cv {
        padding: 50px 0;
        /* 202501追記 */
        padding-bottom: 0;
    }

    .pageFooter__contact {
        font-size: 13px;
        margin: 35px -10px 30px;
    }

    .pageFooter__contact .contact__tel {
        font-size: 11vw;
    }

    .pageFooter__note {
        padding: 25px 0;
    }

    /* .pageFooter__note .note {
        font-size: 10px;
    } */

    .pageFooter__group {
        padding: 40px 0;
    }

    .pageFooter__related {
        padding: 50px 0;
    }

    .pageFooter__copyright {
        font-size: 10px;
        padding: 10px 25px;
        margin-top: 25px
    }

    .pageFooter__seller .seller .seller__item span.com_txt {
        font-size: 12px;
    }

    .menu {
        padding-top: 56px;
    }

    .menu__btn {
        height: 55px;
        /* height: 56px; */
    }

    .menu__btn span {
        width: 34px;
        margin-left: -17px;
    }

    .menu__btn span:nth-child(1) {
        top: 19px;
    }

    .menu__btn span:nth-child(2) {
        top: 28px;
    }

    .menu__btn span:nth-child(3) {
        bottom: 18px;
    }

    .menu--open .menu__btn span:nth-child(1) {
        top: 27px;
    }

    .menu--open .menu__btn span:nth-child(3) {
        bottom: 28px;
    }

    .menu__cvBtn {
        margin: 15px auto 0;
    }

    .menu__cvBtn .btn {
        font-size: 13px;
        min-height: 45px;
    }

    .btn {
        padding: 17px 0;
    }

    .btn--cv {

        min-height: 45px;
        margin: 0 auto 10px;
    }

    .navi--menu {
        font-size: 15px;
    }

    .navi--menu .navi__item a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        font-size: 13px;
        padding: 17px 0;
    }

    .navi--menu .navi__item.new a:before {
        font-size: 10px;
    }

    .navi--footer .navi__item a {
        font-size: 13px;
        padding: 17px 0;
    }

    .navi--cv {
        font-size: 10px;
    }

    .navi--cv .navi__item {
        height: 60px;
    }

    .navi--cv .icon {
        width: 30px;
        max-height: 30px;
    }

    .cv--top {
        margin-top: 56px;
    }

    .cv--bottom--wrap:after {
        height: 60px;
    }

    #footer_recomend .reco_titile {
        font-size: 15px;
    }

    .pageFooter__cvBtn {
        width: 80%;
        padding: 15px 0;
        margin: 0 auto 10px;
    }

    /* 20230511＿現地案内図非表示 */
    .navi--cv .navi__item:nth-of-type(1) {
        /* display: none; */
    }

    .navi--cv .navi__item:nth-of-type(2) {
        /* order: 1; */
    }


    .navi--cv .navi__item:nth-of-type(3) {
        /* order: 4; */
    }

    .navi--cv .navi__item:nth-of-type(4) {
        /* order: 3; */
    }

    .navi--cv .navi__item:nth-of-type(5) {
        /* order: 5; */
    }

    /* ハンバーガーメニュー内の現地案内図は表示 */
    .menu .menu__inner .navi--cv .navi__item:nth-of-type(1) {
        /* order: 2;
        display: block; */
    }

    .menu .menu__inner .navi--cv .navi__item:nth-of-type(2) {
        /* order: 1; */
    }

    .menu .menu__inner .navi--cv .navi__item:nth-of-type(3) {
        /* order: 3; */
    }

    .menu .menu__inner .navi--cv .navi__item:nth-of-type(4) {
        /* order: 4; */
    }
}

@media all and (max-width:375px) {
    .pageFooter__contact dd.hours {
        font-size: 11px;
    }
}

/* 350px以下 */
@media all and (max-width:350px) {

    /* メニュー */
    .pageHeader__logo {
        height: 16px;
    }

    .pageHeader__logo .logo__title {
        font-size: 11px;
    }
}

/* 特殊メディアクエリ */
@media all and (max-width:450px) and (-ms-high-contrast:none) {

    /* メニュー */
    .navi--cv .icon {
        max-height: none;
        height: 30px;
    }
}


@media all and (-ms-high-contrast:none) {

    /* メニュー */
    .navi--cv .icon {
        max-height: none;
        height: 40px;
    }
}


/* 来場予約ボタン非表示 */
/* .pageHeader__cvBtn a:last-of-type {
    display: none;
}

.pageHeader__cvBtn a:nth-of-type(3) {
    margin-right: 0;
}

.navi--cv .navi__item:last-of-type {
    display: none;
} */

/* 20230511 */
.container--btn--cv {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
}


.container--btn--cv a:nth-of-type(1) {
    background: #E88F42;
    border: 1px solid #E88F42;
    /* margin: 0 70px 0 0; */

    /* 2025追記 */
    margin: 0;
}

.container--btn--cv a:nth-of-type(1):hover {
    background: #fff;
    color: #E88F42;
}

.container--btn--cv a:nth-of-type(1):hover .svg-fill {
    fill: #E88F42;
}

.container--btn--cv a:nth-of-type(2) {
    background: #E88F42;
    border: 1px solid #E88F42;
    margin: 0;
}

.container--btn--cv a:nth-of-type(2):hover {
    background: #fff;
    color: #E88F42;
}

.container--btn--cv a:nth-of-type(2):hover .svg-fill {
    fill: #E88F42;
}


.container--btn--cv .teiki_txt {
    width: 100%;
}

@media all and (max-width:768px) {
    /* 202501追記 */
    .container--btn--cv {
        row-gap: 10px;
        max-width: 250px;
        margin-inline: auto;
    }
    .container--btn--cv a {
        width: 100%;
        font-size: 14px;
    }

    .container--btn--cv a:nth-of-type(1) {
        /* margin: 0 0 20px 0; */
    }
}

/* 新井口プレイスバナー非表示 */
/*
#footer_recomend .bnr li:nth-of-type(5) {
    display: none;
}
*/

/* フッター下部バナー　3カラム */
/*
#footer_recomend .bnr li {
    width: calc((100% - 60px) / 3);
}

#footer_recomend .bnr li:nth-of-type(1),
#footer_recomend .bnr li:nth-of-type(2) {
    margin-right: 30px;
}

#footer_recomend .bnr li:nth-of-type(3),
#footer_recomend .bnr li:nth-of-type(6) {
    margin-right: 0;
}

#footer_recomend .bnr>li:nth-of-type(n+4) {
    margin-top: 40px;
}
*/


@media all and (max-width:768px) {
    #footer_recomend .bnr li {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

}

/* 現地案内図から現地・マンションギャラリー案内図へ変更 */
@media all and (max-width:1180px) {
    /* .pageHeader__logo {
        min-width: 346px
    } */

    .pageHeader__cvBtn .btn {
        font-size: 12px;
        padding: 6px 7px 3px 7px;
    }

}

@media all and (max-width:1024px) {
    .pageHeader__logo {
        min-width: 230px
    }

    .pageHeader__cvBtn .btn {
        font-size: 11px;
        margin-right: 6px;
        padding: 6px 4px 3px 4px;
    }
    .middle-hidden {
        display: none;
    }
}


@media all and (max-width:768px) {

    .navi--cv .navi__item:nth-of-type(1) {
        /* order: 1; */
    }

    .navi--cv .navi__item:nth-of-type(2) {
        /* letter-spacing: -0.2px; */
        /* order: 2; */
    }

    .navi--cv .navi__item:nth-of-type(3) {
        /* order: 4; */
    }

    .navi--cv .navi__item:nth-of-type(4) {
        /* order: 3; */
    }

    .navi--cv .navi__item:nth-of-type(5) {
        /* order: 5; */
    }

    .menu__inner .navi--cv .navi__item:nth-of-type(3) {
        /* order: 3; */
    }

    .menu__inner .navi--cv .navi__item:nth-of-type(4) {
        /* order: 4; */
    }

    .navi--cv .navi__item--reserve {
        background-color: rgb(124 13 34);
    }

}