@import url(https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,700&display=swap);
/*------------------------------------------
  Base Setting
------------------------------------------*/
body {
    font-family: "Noto Serif JP", serif;
    background: #fff;
    color: #333;
    -webkit-font-smoothing: antialiased;
}

.en {
    font-family: "Times New Roman", serif;
}

a {
    color: #333;
}
a img {
    transition: opacity .3s;
}
a:hover img {
    opacity: .7;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

/*------------------------------------------
  layout
------------------------------------------*/
/* ========== wrapper ========== */
@media only screen and (max-width: 767px) {
    .l-wrapper {
        padding-top: 64px;
    }
}

/* ========== main ========== */
/* ========== inner ========== */
.l-inner {
    margin: auto;
    padding: 0 30px;
    max-width: 1330px;
}

@media only screen and (max-width: 767px) {
    .l-inner {
        padding: 0 20px;
    }
}

/*------------------------------------------
  header
------------------------------------------*/
.l-header {
    background: #fff;
    border-top: 8px solid #333;
    text-align: center;
    position: relative;
    font-family: "Times New Roman", serif;
    width: 100%;
    z-index: 100;
}
.l-header__inner {
    position: relative;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.l-header .header-ttl {
    font-size: 15px;
}
.l-header .header-ttl img {
    vertical-align: middle;
}
.l-header .header-sns {
    position: absolute;
    right: 123px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
}
.l-header .header-sns a {
    display: block;
}
.l-header .header-lang {
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
}
.l-header .header-lang ul {
    display: flex;
    font-size: 15px;
}
.l-header .header-lang li:first-child a:before {
    content: none;
}
.l-header .header-lang a, .l-header .header-lang span {
    display: block;
}
.l-header .header-lang a {
    color: #999898;
}
.l-header .header-lang a:before {
    content: "/";
    color: #080808;
}
.l-header .header-lang a.current {
    color: #080808;
}

@media only screen and (max-width: 767px) {
    .l-header {
        border-top: 4px solid #333;
        position: fixed;
        top: 0 !important;
        left: 0;
    }
    .l-header__inner {
        padding-left: 22px;
        height: 60px;
        justify-content: flex-start;
    }
    .l-header .header-ttl img {
        width: 213px;
    }
    .l-header .header-sns {
        right: 69px;
        width: 24px;
    }
    .l-header .header-sns img {
        vertical-align: middle;
    }
    .l-header .header-lang {
        position: fixed;
        right: 0;
        top: 72px;
        transform: translateY(0);
        width: 100px;
        background: #fff;
    }
    .l-header .header-lang ul {
        font-size: 20px;
        height: 40px;
        padding-left: 20px;
        align-items: center;
    }
    .l-header .header-trigger {
        z-index: 10;
        cursor: pointer;
        position: absolute;
        right: 0;
        top: 0;
        width: 60px;
        height: 60px;
        background: #fff;
    }
    .l-header .header-trigger .trigger__icon {
        width: 32px;
        height: 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .l-header .header-trigger span {
        position: absolute;
        width: 100%;
        height: 2px;
        background: #333;
        left: 0;
        transition: .3s;
    }
    .l-header .header-trigger span:nth-child(1) {
        top: 0;
    }
    .l-header .header-trigger span:nth-child(2) {
        top: 50%;
        margin-top: -1px;
    }
    .l-header .header-trigger span:nth-child(3) {
        bottom: 0;
    }
    .l-header .header-trigger.is--active span:nth-child(1) {
        transform: translateY(9px) rotate(-25deg);
    }
    .l-header .header-trigger.is--active span:nth-child(2) {
        opacity: 0;
    }
    .l-header .header-trigger.is--active span:nth-child(3) {
        transform: translateY(-9px) rotate(25deg);
    }
}

.l-gnav {
    background: #fff;
    border-top: 1px solid #efefef;
}
.l-gnav__list {
    height: 80px;
    align-items: center;
    justify-content: center;
    gap: 0 1.75695vw;
}
.l-gnav__list > li {
    position: relative;
}
.l-gnav__list > li > a {
    display: block;
    text-align: center;
    line-height: 1.1;
    color: #686868;
    letter-spacing: .04em;
    font-size: .87848vw;
}
.l-gnav__list > li > a span {
    display: block;
    color: #080808;
    font-family: "Times New Roman", serif;
    font-size: 1.31772vw;
    margin-bottom: .2em;
}
.l-gnav__child {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    background: #ccc;
}

@media only screen and (min-width: 1367px) {
    .l-gnav__list {
        gap: 0 24px;
    }
    .l-gnav__list > li > a {
        font-size: 12px;
    }
    .l-gnav__list > li > a span {
        font-size: 18px;
    }
}

@media only screen and (max-width: 1024px) {
    .l-gnav__list {
        gap: 0 1.0981vw;
    }
    .l-gnav__list > li > a {
        font-size: 1.02489vw;
    }
    .l-gnav__list > li > a span {
        font-size: 1.46413vw;
    }
}

@media only screen and (min-width: 768px) {
    .js-headerCont {
        display: block !important;
        opacity: 1 !important;
    }
}

@media only screen and (max-width: 767px) {
    .l-gnav {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        overflow-y: auto;
        width: 100%;
        height: calc(100vh - 64px);
        height: calc(100dvh - 64px);
        z-index: 101;
        padding-bottom: 65px;
    }
    .l-gnav__list {
        display: block !important;
        height: auto;
        padding: 25px 30px 50px;
    }
    .l-gnav__list > li {
        margin-bottom: 2em;
    }
    .l-gnav__list > li:last-child {
        margin-bottom: 0;
    }
    .l-gnav__list > li > a {
        text-align: left;
        font-size: 12px;
    }
    .l-gnav__list > li > a span {
        font-size: 18px;
    }
    .l-gnav__sns {
        padding-left: 30px;
    }
    .l-gnav__sns a {
        display: block;
        width: 40px;
    }
    .l-gnav__child {
        position: static;
        width: 100%;
        transform: translateX(0);
    }
}

/*------------------------------------------
  footer
------------------------------------------*/
.l-footer {
    text-align: center;
    border-bottom: 8px solid #333;
}
.l-footer .footer-copy {
    font-family: "Times New Roman", serif;
    font-size: 15px;
    padding: 1.8em 0;
}
.l-footer .footer-logo {
    display: inline-block;
    padding: 24px 0;
}
.l-footer .footer-logo img {
    vertical-align: middle;
}

.fix-btn {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 99;
}
.fix-btn a {
    display: block;
}

@media only screen and (max-width: 767px) {
    .l-footer {
        border-bottom: 4px solid #333;
        padding-bottom: 64px;
    }
    .l-footer .footer-copy {
        font-size: 14px;
        padding: 1.5em 0;
    }
    .l-footer .footer-logo {
        padding: 16px 0;
    }
    .l-footer .footer-logo img {
        width: 136px;
    }
    .fix-btn {
        width: 100%;
        display: flex;
    }
    .fix-btn li {
        height: 100%;
        height: 64px;
    }
    .fix-btn a {
        width: 100%;
        height: 100%;
    }
    .fix-btn img {
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
           object-fit: contain;
    }
    .fix-btn__mail {
        width: 81%;
        background: #333;
    }
    .fix-btn__pagetop {
        width: 19%;
        background: #fff;
    }
}

/*------------------------------------------
  component
------------------------------------------*/
/* ========== elementor ========== */
.elementor-column-gap-default > .elementor-row > .elementor-column > .elementor-element-populated {
    padding: 0 !important;
}

.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    padding: 0 !important;
}

.elementor-column-gap-default > .elementor-row > .elementor-column > .elementor-element-populated > .elementor-widget-wrap {
    padding: 0 !important;
}

.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1140px !important;
}

.elementor-row {
    justify-content: space-between;
    flex-wrap: wrap;
}

.elementor-section.elementor-section-boxed > .elementor-container {
    padding: 0 30px;
}

.elementor-section {
    margin-bottom: 60px;
}

.elementor-text-editor p {
    line-height: 2;
    margin-bottom: 2em;
    letter-spacing: .128em;
}
.elementor-text-editor p:last-child {
    margin-bottom: 0;
}

.en .elementor-text-editor p {
    letter-spacing: .064em;
}

@media only screen and (max-width: 767px) {
    .elementor-section {
        margin-bottom: 40px;
    }
    .elementor-text-editor p {
        letter-spacing: .04em;
    }
    .en .elementor-text-editor p {
        letter-spacing: .04em;
    }
}

/* ========== flexbox ========== */
.flex {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
}

.c-point__lead {
    text-align: center;
    position: relative;
    color: #686868;
    letter-spacing: .128em;
    margin-bottom: 40px;
    padding-bottom: 50px;
    background: url(../img/arrow-down02.svg) no-repeat center bottom;
    background-size: auto 12px;
}

.c-point__list p {
    margin: 0;
}

.c-point__list .list-item {
    background: #f8f8f8;
    border-top: 4px solid #333;
    padding: 48px 20px 60px;
}

.c-point__list .item-ttl {
    text-align: center;
    font-size: 20px;
    margin-bottom: .5em;
}

.c-point__list.col2 {
    gap: 40px 2.8%;
}
.c-point__list.col2 .list-item {
    width: 48.6%;
}

.c-point__list.col3 {
    gap: 40px 2%;
    justify-content: center;
}
.c-point__list.col3 .list-item {
    width: 32%;
}

.c-point__foot {
    color: #686868;
    font-size: 14px;
    margin-top: 40px;
}
.c-point__foot a {
    color: #686868;
}
.c-point__foot.center {
    text-align: center;
    font-size: 16px;
}

.c-point.type02 .c-point__lead {
    color: #333;
    background: url(../img/arrow-down03.svg) no-repeat center bottom;
}

.c-point.type02 .c-point__list .list-item {
    background: #fff;
}

.en .c-point__lead {
    letter-spacing: .064em;
}

@media only screen and (max-width: 767px) {
    .c-point__lead {
        text-align: left;
        letter-spacing: .04em;
        margin-bottom: 24px;
        padding-bottom: 40px;
    }
    .c-point__list .list-item {
        padding: 40px 20px;
    }
    .c-point__list.col2 {
        gap: 20px 0;
    }
    .c-point__list.col2 .list-item {
        width: 100%;
    }
    .c-point__list.col3 {
        gap: 20px 0;
    }
    .c-point__list.col3 .list-item {
        width: 100%;
    }
    .c-point__foot {
        letter-spacing: .04em;
        line-height: 1.5;
        margin-top: 24px;
    }
    .c-point__foot.center {
        line-height: 2;
        text-align: left;
    }
    .en .c-point__lead {
        letter-spacing: .04em;
    }
}

.c-sns {
    margin: 70px 0 0;
    gap: 0 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}
.c-sns__img {
    width: 195px;
    -ms-order: 2;
        order: 2;
}
.c-sns__txt {
    max-width: 336px;
    -ms-word-break: break-all;
        word-break: break-all;
    -ms-order: 1;
        order: 1;
    color: #7f6e59;
    font-size: 14px;
}
.c-sns__txt p {
    margin-bottom: .5em;
    line-height: 1.5;
}
.c-sns__txt p:last-child {
    margin-bottom: 0;
}
.c-sns__txt a {
    text-decoration: underline !important;
    color: #7f6e59;
}

@media only screen and (max-width: 767px) {
    .c-sns {
        margin: 40px 0 0;
        gap: 24px 0;
    }
    .c-sns__img {
        width: 100%;
        text-align: center;
        -ms-order: 1;
            order: 1;
    }
    .c-sns__img img {
        width: 198px;
    }
    .c-sns__txt {
        width: 100%;
        -ms-order: 2;
            order: 2;
    }
}

/*------------------------------------------
  project
------------------------------------------*/
.p-sec {
    padding: 64px 0;
    margin-bottom: 0;
    position: relative;
}
.p-sec__ttl {
    text-align: center;
    margin-bottom: 50px !important;
}
.p-sec__ttl span {
    display: block;
}
.p-sec__ttl .ttl-txt {
    letter-spacing: .16em;
    line-height: 1.5;
    margin-bottom: 1em;
    font-size: 20px;
}
.p-sec__ttl .ttl-txt--en {
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: .128em;
    font-family: "Times New Roman", serif;
}
.p-sec__ttl .ttl-txt--en .en-s {
    font-size: 24px;
    letter-spacing: .064em;
    margin-bottom: .5em;
}
.p-sec__ttl .ttl-txt--en .en-l {
    color: #7f6e59;
    font-size: 40px;
    letter-spacing: .064em;
}

@media only screen and (max-width: 767px) {
    .p-sec__ttl {
        margin-bottom: 32px !important;
    }
    .p-sec__ttl .ttl-txt {
        font-size: 16px;
    }
    .p-sec__ttl .ttl-txt--en {
        letter-spacing: .064em;
    }
    .p-sec__ttl .ttl-txt--en .en-s {
        font-size: 18px;
        letter-spacing: .04em;
        margin-bottom: .5em;
    }
    .p-sec__ttl .ttl-txt--en .en-l {
        font-size: 32px;
    }
}

.p-visual {
    position: relative;
    margin-bottom: 0;
}
.p-visual.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100% !important;
    padding: 0 !important;
}
.p-visual .elementor-widget:not(:last-child) {
    margin-bottom: 0 !important;
}
.p-visual img {
    width: 100%;
}

.p-sec__HighJewelry .p-sec__ttl .ttl-img img {
    width: 462px;
}

.p-sec__HighJewelry .HighJewelry-txt {
    margin-bottom: 40px !important;
}
.p-sec__HighJewelry .HighJewelry-txt--conclusion {
    margin: 56px 0 0 !important;
    text-align: center;
}

.p-sec__HighJewelry .HighJewelry-img {
    margin-bottom: 40px !important;
}

.en .p-sec__HighJewelry {
    padding-top: 104px;
}

@media only screen and (max-width: 767px) {
    .p-sec__HighJewelry .p-sec__ttl .ttl-img img {
        width: 256px;
    }
    .p-sec__HighJewelry .p-sec__ttl .ttl-img img.en {
        margin: auto;
        width: 188px;
    }
    .p-sec__HighJewelry .HighJewelry-txt {
        margin-bottom: 24px !important;
    }
    .p-sec__HighJewelry .HighJewelry-txt--conclusion {
        margin: 16px 0 0 !important;
        text-align: left;
    }
    .p-sec__HighJewelry .HighJewelry-img {
        margin-bottom: 24px !important;
    }
    .en .p-sec__HighJewelry {
        padding-top: 64px;
    }
}

.p-sec__MyServices {
    padding-bottom: 105px;
}
.p-sec__MyServices .p-sec__ttl .ttl-img img {
    width: 505px;
}
.p-sec__MyServices .p-sec__ttl .ttl-img img.en {
    width: 545px;
}
.p-sec__MyServices .MyServices-list {
    justify-content: space-between;
    gap: 80px 0;
}
.p-sec__MyServices .MyServices-list p {
    margin-bottom: 0;
}
.p-sec__MyServices .MyServices-list__item {
    width: 49%;
    text-align: center;
}
.p-sec__MyServices .MyServices-list__item .item-img {
    position: relative;
}
.p-sec__MyServices .MyServices-list__item .item-img img {
    width: 100%;
}
.p-sec__MyServices .MyServices-list__item .item-num {
    color: #686868;
    margin-bottom: 10px;
}
.p-sec__MyServices .MyServices-list__item .item-txt {
    max-width: 340px;
    margin: 0 auto 40px;
}
.p-sec__MyServices .MyServices-list__item .item-txt .sub {
    color: #686868;
    font-size: 13px;
    margin-top: 1em;
    letter-spacing: 0;
    line-height: 1.46;
}
.p-sec__MyServices .MyServices-list__item .item-txt .num-sp {
    display: none;
}
.p-sec__MyServices .MyServices-list__item.noimg {
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-sec__MyServices .MyServices-list__item.noimg .item-txt {
    margin-top: 0;
}
.p-sec__MyServices .MyServices-txt--conclusion {
    margin-top: 50px;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .p-sec__MyServices {
        padding-bottom: 70px;
    }
    .p-sec__MyServices .p-sec__ttl .ttl-txt {
        letter-spacing: .08em;
    }
    .p-sec__MyServices .p-sec__ttl .ttl-img img {
        width: 298px;
        margin: auto;
    }
    .p-sec__MyServices .p-sec__ttl .ttl-img img.en {
        width: 194px;
    }
    .p-sec__MyServices .MyServices-list {
        gap: 20px 0;
    }
    .p-sec__MyServices .MyServices-list__item {
        width: 100%;
        margin-top: 20px;
    }
    .p-sec__MyServices .MyServices-list__item:first-child, .p-sec__MyServices .MyServices-list__item:last-child {
        margin-top: 0;
    }
    .p-sec__MyServices .MyServices-list__item .item-txt {
        margin-bottom: 15px;
    }
    .p-sec__MyServices .MyServices-list__item .item-txt .sub {
        font-size: 12px;
    }
    .p-sec__MyServices .MyServices-list__item.noimg {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .p-sec__MyServices .MyServices-list__item.noimg .item-txt {
        margin-top: 0;
    }
}

.p-sec__JewelryAdvisory {
    padding-bottom: 120px;
}
.p-sec__JewelryAdvisory.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100% !important;
    padding: 0 !important;
}
.p-sec__JewelryAdvisory .p-sec__ttl {
    padding: 0 30px;
}
.p-sec__JewelryAdvisory .p-sec__ttl .ttl-img img {
    width: 818px;
}
.p-sec__JewelryAdvisory .p-sec__ttl .ttl-img img.en {
    width: 776px;
}
.p-sec__JewelryAdvisory .JewelryAdvisory-txt {
    padding: 0 30px;
    max-width: 1140px;
    margin: auto;
}
.p-sec__JewelryAdvisory .JewelryAdvisory-txt--lead {
    margin-bottom: 48px !important;
}
.p-sec__JewelryAdvisory .JewelryAdvisory-txt--conclusion {
    margin-top: 170px;
    position: relative;
}
.p-sec__JewelryAdvisory .JewelryAdvisory-txt--conclusion:before {
    content: "";
    width: 100%;
    height: 20px;
    position: absolute;
    left: 0;
    top: -60px;
    background: url(../img/arrow-down01.svg) no-repeat center;
    background-size: auto 100%;
}
.p-sec__JewelryAdvisory .JewelryAdvisory-list p {
    margin-bottom: 0;
}
.p-sec__JewelryAdvisory .JewelryAdvisory-list__item {
    margin-bottom: 40px;
}
.p-sec__JewelryAdvisory .JewelryAdvisory-list__item:last-child {
    margin-bottom: 0;
}
.p-sec__JewelryAdvisory .JewelryAdvisory-list__item .item-img img {
    width: 100%;
}
.p-sec__JewelryAdvisory .JewelryAdvisory-list__item .item-txt {
    padding: 0 30px;
    max-width: 1140px;
    margin: 0 auto 40px;
    text-align: center;
}
.p-sec__JewelryAdvisory .JewelryAdvisory-list__item .item-txt__num {
    color: #999898;
    font-size: 20px;
    margin-bottom: .3em;
}
.p-sec__JewelryAdvisory .JewelryAdvisory-list__item .item-txt__ttl {
    font-size: 20px;
    letter-spacing: .128em;
    margin-bottom: 1em;
}
.p-sec__JewelryAdvisory .JewelryAdvisory-list__item .item-txt__txt {
    text-align: left;
    letter-spacing: .088em;
}

@media only screen and (max-width: 767px) {
    .p-sec__JewelryAdvisory {
        padding-bottom: 64px;
    }
    .p-sec__JewelryAdvisory .p-sec__ttl .ttl-txt {
        letter-spacing: .02em;
    }
    .p-sec__JewelryAdvisory .p-sec__ttl .ttl-img img {
        width: 254px;
        margin: auto;
    }
    .p-sec__JewelryAdvisory .p-sec__ttl .ttl-img img.en {
        width: 290px;
    }
    .p-sec__JewelryAdvisory .JewelryAdvisory-txt--lead {
        margin-bottom: 24px !important;
    }
    .p-sec__JewelryAdvisory .JewelryAdvisory-txt--conclusion {
        margin-top: 80px;
    }
    .p-sec__JewelryAdvisory .JewelryAdvisory-list__item {
        margin-bottom: 40px;
    }
    .p-sec__JewelryAdvisory .JewelryAdvisory-list__item .item-txt {
        margin-bottom: 24px;
    }
    .p-sec__JewelryAdvisory .JewelryAdvisory-list__item .item-txt__num {
        font-size: 16px;
    }
}

.p-sec__KeyPoints {
    padding: 96px 0 0;
    background: #faf7f8;
}
.p-sec__KeyPoints.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100% !important;
    padding: 0 !important;
}
.p-sec__KeyPoints .p-sec__ttl .ttl-txt--en {
    margin-bottom: 1em;
}
.p-sec__KeyPoints .p-sec__ttl .ttl-img img {
    width: 375px;
}
.p-sec__KeyPoints .p-sec__ttl .ttl-img img.en {
    width: 762px;
}
.p-sec__KeyPoints .KeyPoints-txt {
    max-width: 1140px;
    padding: 0 30px;
    margin: auto;
}
.p-sec__KeyPoints .KeyPoints-txt--lead {
    text-align: center;
    margin-bottom: 50px !important;
}
.p-sec__KeyPoints .KeyPoints-list__item p {
    margin: 0;
}
.p-sec__KeyPoints .KeyPoints-list__item .item-img {
    width: 50%;
    min-height: 480px;
}
.p-sec__KeyPoints .KeyPoints-list__item .item-img img {
    width: 100%;
    /* height: 100%; */
    -o-object-fit: cover;
       object-fit: cover;
}
.p-sec__KeyPoints .KeyPoints-list__item .item-txt {
    width: 50%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.p-sec__KeyPoints .KeyPoints-list__item .item-txt__inner {
    max-width: 398px;
    margin: auto;
}
.p-sec__KeyPoints .KeyPoints-list__item .item-txt__num {
    color: #999898;
    font-size: 16px;
}
.p-sec__KeyPoints .KeyPoints-list__item .item-txt__ttl {
    font-size: 20px;
    letter-spacing: .128em;
    margin-bottom: 1em;
}
.p-sec__KeyPoints .KeyPoints-list__item .item-txt__txt {
    text-align: left;
    letter-spacing: .088em;
}
.p-sec__KeyPoints .KeyPoints-list__item:nth-child(even) .item-img {
    -ms-order: 2;
        order: 2;
}
.p-sec__KeyPoints .KeyPoints-list__item:nth-child(even) .item-txt {
    -ms-order: 1;
        order: 1;
}

@media only screen and (max-width: 767px) {
    .p-sec__KeyPoints {
        padding: 64px 0;
    }
    .p-sec__KeyPoints .p-sec__ttl .ttl-img img {
        width: 163px;
    }
    .p-sec__KeyPoints .p-sec__ttl .ttl-img img.en {
        width: 326px;
        margin: auto;
    }
    .p-sec__KeyPoints .KeyPoints-txt--lead {
        margin-bottom: 40px !important;
    }
    .p-sec__KeyPoints .KeyPoints-list {
        padding: 0 30px;
    }
    .p-sec__KeyPoints .KeyPoints-list__item {
        margin-bottom: 40px;
    }
    .p-sec__KeyPoints .KeyPoints-list__item:last-child {
        margin-bottom: 0;
    }
    .p-sec__KeyPoints .KeyPoints-list__item .item-img {
        width: 100%;
        min-height: auto;
    }
    .p-sec__KeyPoints .KeyPoints-list__item .item-txt {
        width: 100%;
        padding: 24px 0 0;
    }
    .p-sec__KeyPoints .KeyPoints-list__item .item-txt__inner {
        max-width: 100%;
    }
    .p-sec__KeyPoints .KeyPoints-list__item .item-txt__ttl {
        margin-bottom: .5em;
    }
    .p-sec__KeyPoints .KeyPoints-list__item:nth-child(even) .item-img {
        -ms-order: 1;
            order: 1;
    }
    .p-sec__KeyPoints .KeyPoints-list__item:nth-child(even) .item-txt {
        -ms-order: 2;
            order: 2;
    }
}

.p-sec__AuctionAgency {
    padding-top: 96px;
}
.p-sec__AuctionAgency .p-sec__ttl .ttl-img img {
    width: 682px;
}
.p-sec__AuctionAgency .p-sec__ttl .ttl-img img.en {
    width: 766px;
}

@media only screen and (max-width: 767px) {
    .p-sec__AuctionAgency {
        padding: 64px 0 40px;
    }
    .p-sec__AuctionAgency .p-sec__ttl .ttl-txt--en {
        font-size: 18px;
        font-weight: normal;
        margin-bottom: .5em;
    }
    .p-sec__AuctionAgency .p-sec__ttl .ttl-img img {
        width: 288px;
        margin: auto;
    }
    .p-sec__AuctionAgency .p-sec__ttl .ttl-img img.en {
        width: 327px;
    }
}

.p-sec__InternationalAuctions {
    padding-top: 96px;
}
.p-sec__InternationalAuctions .p-sec__ttl .ttl-img img {
    width: 868px;
}
.p-sec__InternationalAuctions .p-sec__ttl .ttl-img img.en {
    width: 716px;
}
.p-sec__InternationalAuctions .c-point__lead {
    text-align: left;
}
.p-sec__InternationalAuctions .InternationalAuctions-brand {
    margin: 88px 0 0;
    padding: 64px 64px 150px;
    background: #faf7f8;
}
.p-sec__InternationalAuctions .InternationalAuctions-brand__ttl {
    font-size: 18px;
    color: #7f6e59;
    text-align: center;
    margin-bottom: 24px;
}
.p-sec__InternationalAuctions .InternationalAuctions-brand__item {
    border-top: 1px solid #7f6e59;
    padding: 64px 0 0;
    margin-bottom: 88px;
}
.p-sec__InternationalAuctions .InternationalAuctions-brand__item:last-child {
    margin-bottom: 0;
}
.p-sec__InternationalAuctions .InternationalAuctions-brand .item-img {
    display: flex;
    gap: 0 2%;
    margin-bottom: 40px;
    justify-content: center;
}
.p-sec__InternationalAuctions .InternationalAuctions-brand .item-img > div {
    flex: 1;
}
.p-sec__InternationalAuctions .InternationalAuctions-brand .item-ttl {
    font-size: 24px;
    letter-spacing: .128em;
    text-align: center;
    margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .p-sec__InternationalAuctions {
        padding: 64px 0 0;
        overflow: hidden;
    }
    .p-sec__InternationalAuctions .p-sec__ttl .ttl-txt {
        font-size: 28px;
        margin: .5em 0 0;
    }
    .p-sec__InternationalAuctions .p-sec__ttl .ttl-txt span {
        font-size: 20px;
    }
    .p-sec__InternationalAuctions .p-sec__ttl .ttl-txt--en {
        font-size: 18px;
        font-weight: normal;
        margin-bottom: .5em;
    }
    .p-sec__InternationalAuctions .p-sec__ttl .ttl-img img {
        width: 304px;
        margin: auto;
    }
    .p-sec__InternationalAuctions .p-sec__ttl .ttl-img img.en {
        width: 240px;
    }
    .p-sec__InternationalAuctions .InternationalAuctions-brand {
        margin: 64px 0 0;
        padding: 32px 0 64px;
        position: relative;
    }
    .p-sec__InternationalAuctions .InternationalAuctions-brand:before, .p-sec__InternationalAuctions .InternationalAuctions-brand:after {
        content: "";
        width: 30px;
        height: 100%;
        background: #faf7f8;
        position: absolute;
        top: 0;
    }
    .p-sec__InternationalAuctions .InternationalAuctions-brand:before {
        left: 100%;
    }
    .p-sec__InternationalAuctions .InternationalAuctions-brand:after {
        right: 100%;
    }
    .p-sec__InternationalAuctions .InternationalAuctions-brand__inner {
        position: relative;
        z-index: 1;
    }
    .p-sec__InternationalAuctions .InternationalAuctions-brand__ttl img.en {
        margin: auto;
        width: 338px;
    }
    .p-sec__InternationalAuctions .InternationalAuctions-brand__item {
        padding: 24px 0 0;
        margin-bottom: 64px;
    }
    .p-sec__InternationalAuctions .InternationalAuctions-brand .item-img {
        display: block;
    }
    .p-sec__InternationalAuctions .InternationalAuctions-brand .item-img .slick-list {
        overflow: visible;
    }
    .p-sec__InternationalAuctions .InternationalAuctions-brand .item-img .slick-slide {
        padding: 0 8px;
    }
    .p-sec__InternationalAuctions .InternationalAuctions-brand .item-ttl {
        font-size: 20px;
        letter-spacing: .04em;
        margin-bottom: 1em;
    }
}

.p-sec__BespokeRings {
    padding-bottom: 128px;
}
.p-sec__BespokeRings .p-sec__ttl {
    position: relative;
}
.p-sec__BespokeRings .p-sec__ttl span {
    position: relative;
    z-index: 1;
}
.p-sec__BespokeRings .p-sec__ttl:before, .p-sec__BespokeRings .p-sec__ttl:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 187px;
    height: 179px;
    background-repeat: no-repeat;
    background-size: 100%;
}
.p-sec__BespokeRings .p-sec__ttl:before {
    left: 0;
    background-image: url(../img/BespokeRings-head-bg01.png);
}
.p-sec__BespokeRings .p-sec__ttl:after {
    right: 0;
    background-image: url(../img/BespokeRings-head-bg02.png);
}
.p-sec__BespokeRings .p-sec__ttl .ttl-img img {
    width: 534px;
}
.p-sec__BespokeRings .p-sec__ttl .ttl-img img.en {
    width: 650px;
}
.p-sec__BespokeRings .c-point__lead {
    text-align: left;
}

@media only screen and (max-width: 767px) {
    .p-sec__BespokeRings {
        padding-bottom: 64px;
    }
    .p-sec__BespokeRings .p-sec__ttl .ttl-txt {
        font-size: 12px;
        letter-spacing: .04em;
    }
    .p-sec__BespokeRings .p-sec__ttl .ttl-img img {
        width: 226px;
    }
    .p-sec__BespokeRings .p-sec__ttl .ttl-img img.en {
        width: 213px;
        margin: auto;
    }
    .p-sec__BespokeRings .p-sec__ttl:before, .p-sec__BespokeRings .p-sec__ttl:after {
        width: 70px;
        height: 68px;
    }
    .p-sec__BespokeRings .p-sec__ttl:before {
        left: -24px;
    }
    .p-sec__BespokeRings .p-sec__ttl:after {
        right: -24px;
    }
}

.p-sec__JuliensAuction {
    background: #e7e3de;
    padding: 96px 0 126px;
}
.p-sec__JuliensAuction .p-sec__ttl .ttl-img img {
    width: 504px;
}
.p-sec__JuliensAuction .p-sec__ttl .ttl-img img.en {
    width: 358px;
}
.p-sec__JuliensAuction .JuliensAuction-txt {
    color: #686868;
    margin-bottom: 48px !important;
}
.p-sec__JuliensAuction .JuliensAuction-txt a {
    color: #686868;
    text-decoration: underline;
}
.p-sec__JuliensAuction .JuliensAuction-txt--link {
    text-align: center;
    font-size: 14px;
}
.p-sec__JuliensAuction .JuliensAuction-img {
    margin-bottom: 48px !important;
}
.p-sec__JuliensAuction .JuliensAuction-img img {
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
}
.p-sec__JuliensAuction .JuliensAuction-answer {
    margin: 40px 0 0;
    padding: 64px 0 0;
    position: relative;
    background: url(../img/arrow-down04.svg) no-repeat center top;
    background-size: auto 20px;
    letter-spacing: .128em;
}
.p-sec__JuliensAuction .JuliensAuction-answer__lead {
    margin-bottom: 25px;
}
.p-sec__JuliensAuction .JuliensAuction-answer__lead p {
    margin-bottom: 0;
}
.p-sec__JuliensAuction .JuliensAuction-answer__lead span {
    color: #7f6e59;
}
.p-sec__JuliensAuction .JuliensAuction-answer__txt {
    background: #fff;
    padding: 40px;
}

@media only screen and (max-width: 767px) {
    .p-sec__JuliensAuction {
        padding: 64px 0;
    }
    .p-sec__JuliensAuction .p-sec__ttl .ttl-img img {
        width: 220px;
        margin: auto;
    }
    .p-sec__JuliensAuction .p-sec__ttl .ttl-img img.en {
        width: 231px;
    }
    .p-sec__JuliensAuction .JuliensAuction-txt {
        margin-bottom: 32px !important;
    }
    .p-sec__JuliensAuction .JuliensAuction-txt--link {
        margin-bottom: 40px !important;
    }
    .p-sec__JuliensAuction .JuliensAuction-img {
        margin-bottom: 24px !important;
    }
    .p-sec__JuliensAuction .JuliensAuction-answer {
        margin: 48px 0 0;
        padding: 60px 0 0;
        letter-spacing: .04em;
    }
    .p-sec__JuliensAuction .JuliensAuction-answer__lead {
        text-align: left;
    }
    .p-sec__JuliensAuction .JuliensAuction-answer__lead p:last-child {
        text-align: center;
        margin-top: 1.5em;
    }
    .p-sec__JuliensAuction .JuliensAuction-answer__txt {
        padding: 20px;
    }
}

.p-sec__AboutMe {
    padding: 96px 0 80px;
    overflow: hidden;
}
.p-sec__AboutMe .p-sec__ttl {
    text-align: left;
    margin-bottom: 40px !important;
}
.p-sec__AboutMe .p-sec__ttl .ttl-img img.en {
    width: 193px;
}
.p-sec__AboutMe .AboutMe-profile {
    position: relative;
    margin-bottom: 88px !important;
}
.p-sec__AboutMe .AboutMe-profile__txt {
    width: 50%;
}
.p-sec__AboutMe .AboutMe-profile__img {
    position: absolute;
    top: 0;
    left: 54%;
    width: calc(46% + ((100vw - 1080px) / 2));
    max-width: 700px;
}
.p-sec__AboutMe .AboutMe-profile .profile-txt {
    letter-spacing: .128em;
}
.p-sec__AboutMe .AboutMe-news {
    background: #faf7f8;
    padding: 64px;
    line-height: 1.5;
    letter-spacing: .128em;
}
.p-sec__AboutMe .AboutMe-news__ttl {
    font-size: 18px;
    margin-bottom: 40px;
}
.p-sec__AboutMe .AboutMe-news__ttl span {
    font-size: 13px;
    color: #686868;
}
.p-sec__AboutMe .AboutMe-news__list p {
    margin-bottom: 0;
}
.p-sec__AboutMe .AboutMe-news__list li {
    padding-bottom: 1.5em;
    margin-bottom: 1.5em;
    border-bottom: 1px solid #7f6e59;
}
.p-sec__AboutMe .AboutMe-news__list li:last-child {
    margin-bottom: 0;
}
.p-sec__AboutMe .AboutMe-news__list a {
    display: block;
}
.p-sec__AboutMe .AboutMe-news__list .url {
    color: #686868;
    text-decoration: underline;
    font-size: 13px;
}
.p-sec__AboutMe .AboutMe-sns {
    margin: 28px 0 0;
}
.p-sec__AboutMe .AboutMe-sns__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.p-sec__AboutMe .AboutMe-sns__item {
    width: 31%;
}
.p-sec__AboutMe .AboutMe-sns__item .item-ttl {
    text-align: center;
    font-size: 20px;
    color: #7f6e59;
    line-height: 1.5;
}
.p-sec__AboutMe .AboutMe-sns__item .item-img {
    background: #fff;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, .16);
    margin-bottom: 25px;
}
.p-sec__AboutMe .AboutMe-sns__item .item-img img {
    width: 100%;
}
.p-sec__AboutMe .AboutMe-sns__item .item-txt p {
    font-size: 14px;
    color: #7f6e59;
    line-height: 1.428;
    margin-bottom: 4px;
}
.p-sec__AboutMe .AboutMe-sns__item .item-txt a {
    text-decoration: underline;
    color: #7f6e59;
    -ms-word-break: break-all;
        word-break: break-all;
}

.en .p-sec__AboutMe .AboutMe-profile .profile-txt {
    letter-spacing: .064em;
}

.en .p-sec__AboutMe .AboutMe-news {
    letter-spacing: .064em;
}

@media only screen and (max-width: 1140px) {
    .p-sec__AboutMe .AboutMe-profile__img {
        position: static;
        width: 46%;
        margin-left: auto;
    }
}

@media only screen and (max-width: 767px) {
    .p-sec__AboutMe {
        padding: 48px 0 40px;
    }
    .p-sec__AboutMe .p-sec__ttl {
        text-align: center;
        margin-bottom: 32px !important;
    }
    .p-sec__AboutMe .p-sec__ttl .ttl-img img {
        width: 112px;
    }
    .p-sec__AboutMe .p-sec__ttl .ttl-img img.en {
        width: 179px;
    }
    .p-sec__AboutMe .AboutMe-profile {
        margin-bottom: 80px !important;
    }
    .p-sec__AboutMe .AboutMe-profile__txt {
        width: 100%;
        -ms-order: 2;
            order: 2;
    }
    .p-sec__AboutMe .AboutMe-profile__img {
        width: 100%;
        margin-bottom: 32px;
        -ms-order: 1;
            order: 1;
    }
    .p-sec__AboutMe .AboutMe-profile .profile-txt {
        letter-spacing: .04em;
    }
    .p-sec__AboutMe .AboutMe-news {
        padding: 40px 24px;
    }
    .p-sec__AboutMe .AboutMe-news__ttl {
        text-align: center;
        margin-bottom: 32px;
    }
    .p-sec__AboutMe .AboutMe-news__list .url {
        margin-top: .5em;
    }
    .p-sec__AboutMe .AboutMe-sns {
        margin: 20px 0 0;
    }
    .p-sec__AboutMe .AboutMe-sns__inner {
        gap: 60px 0;
        max-width: 480px;
        margin: auto;
    }
    .p-sec__AboutMe .AboutMe-sns__item {
        width: 100%;
    }
    .p-sec__AboutMe .AboutMe-sns__item .item-ttl {
        margin-bottom: 15px;
    }
    .p-sec__AboutMe .AboutMe-sns__item .item-img {
        margin-bottom: 15px;
    }
    .en .p-sec__AboutMe .AboutMe-profile .profile-txt {
        letter-spacing: .04em;
    }
    .en .p-sec__AboutMe .AboutMe-news {
        letter-spacing: .04em;
    }
}

/*------------------------------------------
  utility
------------------------------------------*/
.u-w100 {
    width: 100% !important;
}

/*------------------------------------------
  slick
------------------------------------------*/
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-slider .slick-track, .slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
}
.slick-slider .slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-slider .slick-track:before, .slick-slider .slick-track:after {
    content: "";
    display: table;
}
.slick-slider .slick-track:after {
    clear: both;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-loading .slick-track {
    overflow: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: block;
}
.slick-slide.dragging img {
    pointer-events: none;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* 20261107 SBBD Sasaki add */
.p-sec__MyServices .MyServices-list__item__wide {
	margin-bottom: 80px;
	width: 100%;
	text-align: center;
}

.p-sec__MyServices .MyServices-list__item__wide .item-txt {
	max-width: 680px;
}

@media only screen and (max-width: 767px) {
.p-sec__MyServices .MyServices-list__item__wide {
	margin-bottom: 40px;
}
}


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