/* =========================
   Link Reset & Base
========================= */
a {
    text-decoration: none;
    color: inherit;
    outline: none;
    /* 念のため */
}

/* =========================
   Hover（マウス用）
========================= */
a:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

/* =========================
   Focus（キーボード操作用）
========================= */
a:focus {
    outline: none;
}

/* ここが重要：キーボード操作時だけ表示 */
a:focus-visible {
    outline: 2px solid #333;
    /* 好きな色に変更OK */
    outline-offset: 4px;
    border-radius: 4px;
    /* デザイン的に自然に */
}

/* =========================
   Active（クリック時）
========================= */
a:active {
    outline: none;
}

/* =========================
   画像リンク対策
========================= */
a img {
    border: none;
    display: block;
    /* 余白バグ防止 */
}

/* 画像リンクにもフォーカス枠を適用 */
a:focus-visible img {
    outline: 2px solid #333;
    outline-offset: 4px;
    border-radius: 4px;
}

.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after, .twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
    content: " ";
    display: block;
    background: white;
    position: absolute;
    z-index: 30;
    -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after {
    width: 2px;
    height: 9999px;
    left: 50%;
    margin-left: -1px;
}

.twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
    width: 9999px;
    height: 2px;
    top: 50%;
    margin-top: -1px;
}

.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.twentytwenty-before-label, .twentytwenty-after-label {
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    transition-property: opacity;
}

.twentytwenty-before-label:before, .twentytwenty-after-label:before {
    color: white;
    font-size: 20px;
}

@media (max-width: 700px) {
    .twentytwenty-before-label:before, .twentytwenty-after-label:before {
        color: white;
        font-size: 12px;
    }
}

.twentytwenty-before-label:before, .twentytwenty-after-label:before {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    line-height: 38px;
    padding: 0 20px;
    /*-webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;*/
}

.twentytwenty-horizontal .twentytwenty-before-label:before, .twentytwenty-horizontal .twentytwenty-after-label:before {
    top: 50%;
    margin-top: -19px;
}

.twentytwenty-vertical .twentytwenty-before-label:before, .twentytwenty-vertical .twentytwenty-after-label:before {
    left: 50%;
    margin-left: -45px;
    text-align: center;
    width: 90px;
}

.twentytwenty-left-arrow, .twentytwenty-right-arrow, .twentytwenty-up-arrow, .twentytwenty-down-arrow {
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
}

.twentytwenty-left-arrow, .twentytwenty-right-arrow {
    top: 50%;
    margin-top: -6px;
}

.twentytwenty-up-arrow, .twentytwenty-down-arrow {
    left: 50%;
    margin-left: -6px;
}

.twentytwenty-container {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    border: #FFF solid 2px;
    z-index: 0;
    overflow: hidden;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.twentytwenty-container img {
    max-width: 100%;
    position: absolute;
    top: 0;
    display: block;
}

.twentytwenty-container.active .twentytwenty-overlay, .twentytwenty-container.active :hover.twentytwenty-overlay {
    background: rgba(0, 0, 0, 0);
}

.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label, .twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label, .twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-before-label, .twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-after-label {
    opacity: 0;
}

.twentytwenty-container * {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.twentytwenty-before-label {
    opacity: 0;
}

.twentytwenty-before-label:before {
    content: "New";
}

.twentytwenty-after-label {
    opacity: 0;
}

.twentytwenty-after-label:before {
    content: "6 months later";
}

.twentytwenty-horizontal .twentytwenty-before-label:before {
    left: 10px;
    font-family: "TridentSSK 45510";
}

.twentytwenty-horizontal .twentytwenty-after-label:before {
    right: 10px;
    font-family: "TridentSSK 45510";
}

.twentytwenty-vertical .twentytwenty-before-label:before {
    top: 10px;
}

.twentytwenty-vertical .twentytwenty-after-label:before {
    bottom: 10px;
}

.twentytwenty-overlay {
    -webkit-transition-property: background;
    -moz-transition-property: background;
    transition-property: background;
    /*background: rgba(0, 0, 0, 0);*/
    -moz-box-shadow: inset 0px 0px 10px rgba(51, 51, 51, 0.3);
    -webkit-box-shadow: inset 0px 0px 10px rgba(51, 51, 51, 0.3);
    box-shadow: inset 0px 0px 10px rgba(51, 51, 51, 0.3);
    z-index: 25;
}

.twentytwenty-overlay:hover {
    background: rgba(144, 132, 110, 0.7);
}

.twentytwenty-overlay:hover .twentytwenty-after-label {
    opacity: 1;
}

.twentytwenty-overlay:hover .twentytwenty-before-label {
    opacity: 1;
}

.twentytwenty-before {
    z-index: 20;
}

.twentytwenty-after {
    z-index: 10;
}

.twentytwenty-handle {
    height: 38px;
    width: 38px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -22px;
    margin-top: -22px;
    border: 2px solid white;
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    border-radius: 1000px;
    -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    z-index: 40;
    cursor: pointer;
}

.twentytwenty-horizontal .twentytwenty-handle:before {
    bottom: 50%;
    margin-bottom: 22px;
    -webkit-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-horizontal .twentytwenty-handle:after {
    top: 50%;
    margin-top: 22px;
    -webkit-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-vertical .twentytwenty-handle:before {
    left: 50%;
    margin-left: 22px;
    -webkit-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-vertical .twentytwenty-handle:after {
    right: 50%;
    margin-right: 22px;
    -webkit-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-left-arrow {
    border-right: 6px solid white;
    left: 50%;
    margin-left: -17px;
}

.twentytwenty-right-arrow {
    border-left: 6px solid white;
    right: 50%;
    margin-right: -17px;
}

.twentytwenty-up-arrow {
    border-bottom: 6px solid white;
    top: 50%;
    margin-top: -17px;
}

.twentytwenty-down-arrow {
    border-top: 6px solid white;
    bottom: 50%;
    margin-bottom: -17px;
}














.aging-top {
    position: relative;
    padding: 60px 0 60px 0;
    min-height: 800px;
    background: url('https://uetashinji.com/troisclefs/images/aging-top.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
}

.aging-top a {
    border: 2px solid #333;
    padding: 10px;
    color: #333;
}

section.about-header p span {
    color: #61C7FB;
}




.aging-bg {
    padding-top: 100px;
    padding-bottom: 100px;
    background: url('https://uetashinji.com/troisclefs/images/aging/aging-belt.jpg') no-repeat center center;
}

.parallax_img_1 {
    background: url('https://uetashinji.com/troisclefs/images/aging-top.jpg') no-repeat center center;
}

.parallax_img_2 {
    background: url('https://uetashinji.com/troisclefs/images/_85A7688.jpg') no-repeat center center;
}

.parallax_img_3 {
    background: url('https://uetashinji.com/troisclefs/images/about-top.jpg') no-repeat center center;
}

.parallax_img_4 {
    background: url('https://uetashinji.com/troisclefs/images/troisclefs209.jpg') no-repeat center center;
}

.parallax_img_5 {
    background: url('https://uetashinji.com/troisclefs/images/lookbook/troisclefs025.jpg') no-repeat center center;
}

.parallax_img_6 {
    background: url('https://uetashinji.com/troisclefs/images/shop/troisclefs096.jpg') no-repeat center center;
}

.parallax_img_7 {
    background: url('https://uetashinji.com/troisclefs/images/shop/troisclefs061.jpg') no-repeat center center;
}

.parallax_img_8 {
    background: url("../images/404.jpg") no-repeat center center;
}

@media (max-width: 991px) {
    div.parallax.parallax_img_1 {
        background: url('https://uetashinji.com/troisclefs/images/aging-top.jpg') no-repeat center center scroll;
        -webkit-background-size: auto;
        -moz-background-size: auto;
        -o-background-size: auto;
        background-size: cover;
        display: table;
        width: 100%;
        height: 50vh;
        margin-top: 46px;
    }

    div.parallax.parallax_img_3 {
        background: url('https://uetashinji.com/troisclefs/images/about-top.jpg') no-repeat center center scroll;
        -webkit-background-size: auto;
        -moz-background-size: auto;
        -o-background-size: auto;
        background-size: cover;
        display: table;
        width: 100%;
        height: 50vh;
        margin-top: 46px;
    }

    div.parallax.parallax_img_5 {
        background: url('https://uetashinji.com/troisclefs/images/lookbook/troisclefs025.jpg') no-repeat center center scroll;
        -webkit-background-size: auto;
        -moz-background-size: auto;
        -o-background-size: auto;
        background-size: cover;
        display: table;
        width: 100%;
        height: 50vh;
        margin-top: 0;
    }

    div.parallax.parallax_img_6 {
        background: url('https://uetashinji.com/troisclefs/images/shop/troisclefs096.jpg') no-repeat center center scroll;
        -webkit-background-size: auto;
        -moz-background-size: auto;
        -o-background-size: auto;
        background-size: cover;
        display: table;
        width: 100%;
        height: 50vh;
        margin-top: 46px;
    }
}

.box {
    max-width: 960px;
    margin: 0 auto;
    vertical-align: middle;
    display: table-cell;
}

.box h2 {
    font-family: "TridentSSK 45510";
    font-size: 60px;
    color: #fff;
    text-align: center;
    /*font-weight: bold;*/
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
    .box h2 {
        font-size: 40px;
    }
}

.box p {
    font-size: 16px;
    color: #fff;
    text-align: center;
}

.button-aging {
    position: relative;
    display: block;
    padding: .5em 4em;
    color: #B7A98E;
    text-align: center;
    text-decoration: none;
    outline: none;
    overflow: hidden;
    transition: all .5s;
}

.button-aging::before,
.button-aging::after {
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    transition: all .5s;
}

.button-aging::before {
    top: 0;
    left: 0;
    border-top: 2px solid #B7A98E;
    border-left: 2px solid #B7A98E;
}

.button-aging::after {
    right: 0;
    bottom: 0;
    border-right: 2px solid #B7A98E;
    border-bottom: 2px solid #B7A98E;
}

.button-aging:hover {
    background-color: #B7A98E;
    color: #FFF;
    transition: all .7s;
}

.button-aging:hover::before,
.button-aging:hover::after {
    width: 0;
    height: 0;
    opacity: 0;
    transition: all .7s;
}

.use-images {
    margin-top: 50px;
}

.use-images img {
    width: 100%;
}

.use-images .img-wrapper p {
    margin-top: 10px;
    font-size: 12px;
    text-align: left;
}

.use-images-cell {
    margin-bottom: 30px;
}

@media (min-width: 992px) {

    div.parallax {
        display: table;
        width: 100%;
        height: 90vh;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
        background-attachment: scroll;
    }

    div.parallax-2 {
        display: table;
        width: 100%;
        height: 50vh;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
    }

    div.parallax-3 {
        display: table;
        width: 100%;
        height: 30vh;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
    }

    .aging-ex {
        padding: 50px 0;
    }

    .aging-ex.ex-1 {
        height: 751px;
    }

    .aging-ex.ex-2 {
        height: 590px;
    }

    .aging-ex.ex-3 {
        height: 734px;
    }

    .aging-ex.ex-4 {
        height: 566px;
    }

    .aging-ex.ex-5 {
        height: 820px;
    }

    .aging-ex p.ex {
        margin: 0;
        font-family: "TridentSSK 45510";
        font-size: 50px;
        font-size: 5.0rem;
        display: inline-block;
        color: #B7A98E;
        text-shadow: 2px 2px 0px #fff;
    }

    .aging-ex-title a {

        padding: 10px 20px;


        margin-top: 10px;
        position: absolute;
    }

    .aging-ex-title a i {
        margin-left: 5px;
    }

    .aging-ex img.ex-left {
        height: auto;
        width: 800px;
        position: absolute;
        left: 50px;
    }

    .aging-ex-title-left {
        position: absolute;
        top: 30%;
        right: 10%;
    }

    .aging-ex-title-left a {
        right: 0;
    }

    .aging-ex p.ex-left-dis {
        display: inline-block;
        position: absolute;
        bottom: 0;
        left: 10%;
        padding: 10px;
        border: 1px solid #333;
        font-size: 10px;
    }

    .aging-ex img.ex-right {
        height: auto;
        width: 800px;
        position: absolute;
        right: 50px;
    }

    .aging-ex-title-right {
        position: absolute;
        top: 30%;
        left: 10%;
    }

    .aging-ex-title-right a {
        left: 0;
    }

    .aging-ex p.ex-right-dis {
        display: inline-block;
        position: absolute;
        bottom: 0;
        right: 10%;
        padding: 10px;
        border: 1px solid #333;
        font-size: 10px;
    }
}


@media (max-width: 768px) {
    .aging-bg {
        padding-top: 50px;
        padding-bottom: 50px;
        background: none;
    }

    div.parallax {
        display: table;
        width: 100%;
        min-height: 400px;

        background-repeat: no-repeat;
        background-size: cover;
    }

    div.parallax-2 {
        display: table;
        width: 100%;
        min-height: 400px;

        background-repeat: no-repeat;
        background-size: cover;
    }

    div.parallax-2 img {
        width: 80px;
    }

    section.aging-header h3 {
        margin: 0;
        font-family: "TridentSSK 45510";
        font-size: 18px;
        font-size: 1.8rem;
    }

    img.brush-img {
        display: none;
    }

    div.margin-bottom-30 {
        margin-bottom: 30px;
    }

    .use-images {
        margin-top: 50px;
    }

    .use-images-cell {
        margin-bottom: 15px;
    }

}

@media (max-width: 480px) {
    p.aging-text-left {
        text-align: left;
    }
}

@media (max-width: 992px) {
    .aging-ex p.ex {
        margin: 0 0 10px 0;
        font-family: "TridentSSK 45510";
        font-size: 20px;
        font-size: 2.0rem;
        display: inline-block;
        color: #B7A98E;
    }

    .button-aging::before,
    .button-aging::after {
        display: none;
    }

    p.ex-left-dis, p.ex-right-dis {
        display: none;
    }

    div.aging-ex-title {
        margin-bottom: 50px;
    }
}

.brush-img {
    width: 300px;
    position: absolute;
    top: -50px;
    right: 0;
}

#lookbook {
    padding-top: 5px;
}

.instagram-img-col-cell {
    padding-left: 0;
    padding-right: 0;
}

.instagram-img img {
    width: 100%;
    height: 100%;
}

.img-liquid-instagram {
    width: 100%;
    height: 200px;
}

.shop-single {
    margin-bottom: 50px;
}

.shop-single-title {
    padding-top: 10px;
    font-size: 16px;
    font-weight: bold;
}

hr.shop-single-hr {
    margin-top: 10px;
    margin-bottom: 10px;
    border: 0;
    border-top: 2px solid #90846E;
}

a.shop-single-url {
    color: #90846E;
    text-decoration: underline;
}

a.shop-single-url:hover {
    color: #c59a6d;
    text-decoration: none;
}

.shop-bg {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media (min-width: 1200px) {

    /*.shop-text-map {
	position: relative;
    height: 393px;
    width: 48%;
    margin-left: 2%;
    padding: 0;
	}*/
    .map_canvas {
        position: absolute;
        bottom: 0;
    }

    .map_canvas_100 {
        display: none;
    }
}

div.section-header h3.shop-h3 {
    margin: 0;
    font-family: "TridentSSK 45510";
    font-size: 20px;
    font-size: 2.0rem;
}

a.shop-single-url {
    color: #90846E;
    text-decoration: underline;
}

a.shop-single-map {
    color: #90846E;
}

a.shop-single-url:hover, a.shop-single-map:hover {
    color: #c59a6d;
    text-decoration: none;
}

.shop-single img {
    width: 100% !important;
    height: 100% !important;
}

.shop-single-title {
    padding-top: 20px;
    font-size: 15px;
    font-weight: bold;
    margin-top: 0;
    text-align: justify;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .phone-clear-left {
        clear: left;
    }
}

/*------------20201216追記---------*/
.video-box-bottom p.video-contents {
    position: relative;
    width: 99.6%;
    margin: 0 auto;
    padding-top: 56.25%;
    margin-bottom: 20px;
}

.video-box-bottom p iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

/*------------------ヒーローイメージ_トップページ------------------*/
.hero-wrap {
    position: relative;
    width: 100%;
    top: 0;
    padding-top: 0;
    margin-top: 0;
    z-index: 1;
    overflow: hidden;
}

@media screen and (max-width: 991px) {
    .hero-wrap {
        margin-top: 0;
    }
}

#owl-example .item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    /* height: 100vh; */
    min-height: 100vh;
    display: table;
    text-align: center;
}

#owl-example .item img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    #owl-example .item img {
        width: 90%;
    }
}

@media screen and (max-width: 767px) {
    #owl-example .item img {
        width: 100%;
    }

    #owl-example .item img {
        width: 100%;
        height: auto;
    }
}

@media screen and (min-width: 992px) {
    #owl-example .item {
        height: 100vh;
        min-height: 100vh;
    }
}

@media screen and (max-width: 991px) {
    #owl-example .item {
        height: 60vh;
        min-height: 60vh;
    }
}

@media screen and (max-width: 767px) {
    #owl-example .item {
        height: 60vh;
        min-height: 60vh;
    }
}

#owl-example .item-box {
    display: table-cell;
    vertical-align: middle;
    padding: 0 8%;
    padding-bottom: 120px;
    /*background-color: rgba(0, 0, 0, 0.2);*/
    background-color: rgb(25 38 55 / 15%);
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    #owl-example .item-box {
        padding-bottom: 40px;
    }
}

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

    /*#owl-example .item-box {
    display: table-cell;
    position: relative;
    padding-bottom: 30px;
  }*/
    #owl-example .item-box {
        position: absolute;
        text-align: left;
        bottom: 0;
        left: 0;
        padding: 15px;
    }
}

#owl-example .item-box p {
    color: #fff;
    text-align: left;
    /*width: calc(100% - 300px);*/
    display: inline-block;
}

@media screen and (max-width: 991px) {
    #owl-example .item-box p {}
}

@media screen and (max-width: 767px) {
    #owl-example .item-box p {}
}

/*#owl-example .item-box img {
  margin: 0 auto;
  margin-left: 0;
  height: auto;
  width: 50%;
  opacity: 1;
  mix-blend-mode: hard-light;
  position: absolute;
  bottom: 150px;
}
@media screen and (max-width: 991px) {
  #owl-example .item-box img {
    margin: 10px auto;
    height: 200px;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  #owl-example .item-box img {
    height: auto;
    width: 100%;
    padding: 0 15px;
  }
}
@media screen and (max-width: 374px) {
  #owl-example .item-box img {
    height: auto;
    width: 85%;
  }
}*/
.top-image-01 {
    background-image: url("../images/slideshow/2023/001.jpg");
}

.top-image-02 {
    background-image: url("../images/slideshow/2023/002.jpg");
}

.top-image-03 {
    background-image: url("../images/slideshow/2023/003.jpg");
}

.hero-wrap .catch-copy {
    font-size: 65px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1;
    padding-bottom: 15px;
    border-bottom: 1px solid #fff;
}

.hero-wrap .text {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1;
}

.shop-image {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 1;
}

.shop-image img {
    width: 300px;
}

.deco {
    position: absolute;
    z-index: 1;
    mix-blend-mode: color-burn;

}

.deco-left {
    bottom: -90%;
    left: -35%;
}

.deco-left img {
    width: 80%;
}

.deco-right {
    top: -100%;
    right: -40%;
}

#owl-example .item {
    position: relative;
}

#owl-example .item-box {
    position: relative;
    text-align: left;
}

#owl-example .item-box .deco img {
    width: 100%;
}

/*------------------ヒーローイメージ_トップページ------------------*/
section .h2-title {
    width: auto;
    display: inline-block;
    border-bottom: 2px solid #90846E;
    font-family: "TridentSSK 45510";
    font-size: 30px;
    font-size: 3.0rem;
    color: #90846E;
    padding-bottom: 1rem;
    margin-bottom: 30px;
}

.collection-col .img-link {
    width: auto;
    height: auto;
    display: block;
    overflow: hidden;
    position: relative;
}

.img-link img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
}

.img-link:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.new-item-sec .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.new-item-sec figure figcaption {
    padding: 10px;
    margin-top: 0;
    color: #666;
    text-align: center;
}


.new-item-sec figure figcaption .name-en {
    font-size: 12px;
    margin-bottom: 5px;
    color: #DAB4B6;
    font-family: "TridentSSK 45510";
}

.new-item-sec figure figcaption h4 a {
    line-height: 1.2;
}

.new-item-sec figure figcaption h4 {
    margin: 0;
    font-size: 14px;
}

.new-item-sec figure figcaption p {
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 5px;
}

header {
    position: fixed;
    padding: 15px;
    z-index: 1111;
    width: 100%;
    background-color: transparent;
}

header .header-container {
    width: 100%;
    left: 0;
    top: 0;
    z-index: 11;
    transition: .5s;
    /*background-color: #90846e;*/
    height: 70px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

header .main-logo {
    width: 70px;
    height: 70px;
    background-color: #90846e;
    position: relative;
    z-index: 1000;
}

header .main-logo a {
    display: block;
    width: 70px;
    height: 70px;
    padding: 12px;
}

header .main-logo img {
    width: 100%;
    height: auto;
}

header nav {
    width: calc(100% - 70px);
}

@media screen and (min-width: 768px) {
    /*header nav {
    display: none;
}*/
}

header nav ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 0;
}

header nav li.first-li {
    height: 70px;
    line-height: 70px;
    width: 100%;
    text-align: center;
    font-size: 18px;
}

header nav li.first-li>a {
    display: block;
    background-color: #f8f6f2;
    color: #90846e;
    transition: .3s;
    font-family: 'Bebas Neue', cursive;
}

header nav li.first-li>a:hover {
    display: block;
    background-color: #000;
    color: #fff;
}

header nav li.first-li>a span {
    display: inline-block;
}

header nav li.first-li>a:hover span {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
    transition: .6s;
}

header nav li.first-li>a:hover span:nth-of-type(1) {
    -webkit-transition-delay: .02s;
    transition-delay: .02s;
}

header nav li.first-li>a:hover span:nth-of-type(2) {
    -webkit-transition-delay: .04s;
    transition-delay: .04s;
}

header nav li.first-li>a:hover span:nth-of-type(3) {
    -webkit-transition-delay: .06s;
    transition-delay: .06s;
}

header nav li.first-li>a:hover span:nth-of-type(4) {
    -webkit-transition-delay: .08s;
    transition-delay: .08s;
}

header nav li.first-li>a:hover span:nth-of-type(5) {
    -webkit-transition-delay: .10s;
    transition-delay: .10s;
}

header nav li.first-li>a:hover span:nth-of-type(6) {
    -webkit-transition-delay: .12s;
    transition-delay: .12s;
}

header nav li.first-li>a:hover span:nth-of-type(7) {
    -webkit-transition-delay: .14s;
    transition-delay: .14s;
}

header nav li.first-li>a:hover span:nth-of-type(8) {
    -webkit-transition-delay: .16s;
    transition-delay: .16s;
}

header nav li.first-li>a:hover span:nth-of-type(9) {
    -webkit-transition-delay: .18s;
    transition-delay: .18s;
}

header nav li.first-li>a:hover span:nth-of-type(10) {
    -webkit-transition-delay: .20s;
    transition-delay: .20s;
}

.mega-menu:hover>a {
    /*background: #000;*/
}

.child_menu>li>a {
    /*font-size: 0.8em;*/
}

.child_menu>li>a:hover {
    /*background: #ffb6c1;*/
}

.child_menu {
    width: calc(100% - 30px);
    position: absolute;
    top: 85px;
    left: 15px;
    padding: 30px;
    color: #333;
    background: #e9e3d9;
    visibility: hidden;
    align-items: flex-start;
}

.mega-menu:hover .child_menu {
    visibility: visible;
}

.child_menu a {
    font-size: 11px;
    color: #7a6d55;
}

.child_menu a:hover {
    color: #b5ada0;
}

header nav .col-ul {
    flex-flow: column;
    align-items: flex-start;
}

header nav .child_menu li {
    line-height: 1.8;
}

header nav .child_menu>li {
    width: 25%;
    padding: 0 15px;
}

header nav .col-ul li {
    line-height: 1;
    margin-bottom: 10px;
}

header nav .col-ul a {
    /*transition: .3s;*/
}

header nav .inner-menu-title {
    font-size: 13px;
    line-height: 1;
    color: #90846e;
    font-weight: 600;
    text-align: left;
}

.instagram-section h2 {
    color: #90846E;
}

footer {
    background-color: #c5b9a2;
    margin-top: 50px;
}

footer nav {
    padding-top: 50px;
    padding-bottom: 50px;
}

footer nav ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 0;
}

footer nav li {
    display: block;
    font-family: 'Bebas Neue', cursive;
    font-size: 18px;
}

footer nav li a {
    color: #f8f6f2;
    transition: .3s;
}

.footer-logo-box {
    text-align: center;
    margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
    footer nav {
        padding-top: 0;
        padding-bottom: 0;
    }

    footer nav ul {
        display: flex;
        flex-wrap: wrap;
    }

    footer nav li {
        display: block;
        font-size: 16px;
        width: 50%;
        text-align: center;
        border-bottom: 1px solid #90846e;
    }

    footer nav li:nth-child(even) {
        border-right: 1px solid #90846e;
    }

    footer nav li:nth-of-type(1) {
        display: none;
    }

    footer nav li a {
        width: 100%;
        display: block;
        padding: 15px 0;
    }

    .footer-logo-box {
        padding-top: 30px;
    }
}

.copyright {
    background-color: #90846e;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid #baad96;
}

.copyright p {
    margin-bottom: 0;
}

.copyright p small {
    color: #f8f6f2;
}

.footer-logo-box img {
    height: 40px;
}

.img-link {
    /*background-color: #000;*/
}

.img-link img {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition: -webkit-transform 2500ms;
    transition: transform 1500ms;
}

.img-link:hover img {
    opacity: 0.6;
    transform: scale3d(1.2, 1.2, 1);
}

.collection-col figure {
    margin-bottom: 45px;
}

footer .menu-col {
    padding-left: 0;
    padding-right: 0;
}

/*@media screen and (min-width: 768px) {
header .modal-nav {
    display: none;
}
}*/
@media screen and (min-width: 768px) {
    .display-none.min-768 {
        display: none;
    }
}

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

    .modal-menu-box {
        height: 50px;
        z-index: 1500;
        background-color: #90846e;
        /* padding: 10px; */
        width: 100%;
        height: 70px;
        position: relative;
    }

    .modal-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 50px;
        background-color: #c5b9a2;
    }

    .modal-nav {
        top: 0;
    }

    .modal-open .modal-menu-box {
        background-color: #2a2a2a;
    }

    header {
        padding: 0;
    }

    header .header-container {
        height: 60px;
    }

    header .main-logo {
        /*width: 60px;
    height: 60px;*/
        display: none;
    }

    header .main-logo a {
        /*width: 60px;
    height: 60px;*/
    }

    .modal-menu-box {
        height: 60px;
    }

    .modal-btn {
        position: absolute;
        top: 5px;
        right: 5px;
        width: 50px;
    }

    .c-hamburger {
        width: 30px;
        height: 50px;
        margin-left: 10px;
    }

    .c-hamburger span {
        background: #eee7d9;
    }

    .c-hamburger span::before, .c-hamburger span::after {
        background-color: #eee7d9;
    }

    .c-hamburger--htx.is-active span::before, .c-hamburger--htx.is-active span::after {
        background-color: #eee7d9;
    }

    .modal-open .modal-btn {
        background-color: #c5b9a2;
    }

    .modal-open header:hover .modal-btn {
        background-color: #c5b9a2;
    }

    .modal-open .modal-menu-box {
        background-color: #90846e;
    }

    .hero-wrap {
        margin-top: 60px;
    }

    .modal-nav {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100% - 60px);
    }

    .modal-nav-inner .phone-modal-menu {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-flow: column;
        padding: 0;
        margin-top: 0;
    }

    .modal-nav .phone-modal-menu li.menu-list {
        height: auto;
        line-height: 1;
        margin-bottom: 0;
        /* border-bottom: 1px solid rgb(255 200 48 / 20%); */
        border-bottom: none;
        padding: 10px 0;
    }

    header nav li {
        /*font-weight: bold;*/
        font-size: 14px;
        transition: .3s;
    }

    .modal-nav .phone-modal-menu li.menu-list span {
        display: block;
        font-size: 28px;
        text-transform: uppercase;
        font-family: "TridentSSK 45510";
        color: #c5b9a2;
        margin-bottom: 5px;
    }
}

.collection-wrap {
    display: flex;
    flex-wrap: wrap;
}

.shop-info-footer {
    margin-top: 0;
}

.top-banner-sec {
    margin-top: 50px;
}

.top-banner-sec img {
    width: 100%;
}

div.section-header h3 {
    text-transform: capitalize;
}

.child_menu .inner-menu-title a {
    font-size: 13px;
}

.modal-nav ul .menu-list-second {
    margin-left: 15px;
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.modal-nav ul .menu-list-second::before {
    content: '';
    color: #fff;
    margin-right: 10px;
    /* font-size: 50px; */
    border-top: 2px solid #eee7d9;
    width: 10px;
}

.modal-nav ul .menu-list-second:last-of-type {
    padding-bottom: 0;
}

.modal-nav .phone-modal-menu li.menu-list-second span {
    font-size: 18px;
}

.modal-nav .phone-modal-menu .menu-ul-second {
    flex-flow: column;
}

.phone-main-logo {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    padding: 10px 0;
}

.phone-main-logo a {
    display: inline-block;
}

.phone-main-logo img {
    height: 40px;
    width: auto;
}

div.section-header {
    margin-bottom: 20px;
    margin-bottom: 2rem;
}

.category-banner-sec {
    padding-bottom: 50px;
}

.category-banner-sec img {
    width: 100%;
    height: auto;
}

.category-banner-sec .category-col {
    margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
    .category-banner-sec .category-col {
        margin-bottom: 15px;
    }
}

.category-banner-sec .category-col a {
    position: relative;
    display: flex;
    transition: .3s;
}

.category-banner-sec .category-col a:hover img {
    /*opacity: 0.6;*/
}

.category-banner-sec .category-col .title-name {
    position: absolute;
    color: #fff;
    bottom: 0;
    left: 15px;
    text-align: left;
    font-size: 18px;
    z-index: 1;
}

.category-banner-sec .category-col .title-name span {
    font-family: "TridentSSK 45510";
    display: block;
    font-size: 36px;
}

.category-banner-sec .category-col .cover {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    background: linear-gradient(to right top, rgb(0 0 0 / 40%), transparent);
    transition: .3s;
}

.category-banner-sec .category-col a:hover .cover {
    background: linear-gradient(to top right, black, transparent);
}

/*20230401_追加*/
.footer-address-box {
    margin-bottom: 30px;
}

.footer-address-box p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #f8f6f2;
}

.footer-address-box p br {
    display: none;
}

@media screen and (max-width: 767px) {
    .footer-address-box p {
        font-size: 13px;
    }

    .footer-address-box p br {
        display: block;
    }
}

.footer-address-box p a {
    color: #f8f6f2;
    text-decoration: underline;
    transition: .3s;
}

.footer-address-box p a:hover {
    color: #ababab;
}

.list-404-wrap ul {
    margin-bottom: 30px;
}

.list-404-wrap li {
    font-size: 16px;
    line-height: 1.6;
}

.list-404-wrap a {
    background-color: #90846e;
    padding: 15px 30px;
    color: #fff;
    transition: .3s;
}

.list-404-wrap a:hover {
    background-color: #6e6b64;
    color: #b0b0b0;
}

section.not-found-header {
    margin-top: 50px;
    margin-bottom: 50px;
}

/*20250117*/
.collection-col {
    position: relative;
}

span.newMark {
    color: #ffffff;
    font-size: 12px;
    background: #f35b69;
    position: absolute;
    top: 0;
    left: 15px;
    margin: 0;
    padding: 5px 8px;
    z-index: 1;
    line-height: 1;
}

/*20250218*/
.shop-info-flexbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.shop-info-img img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.shop-single ul li {
    text-align: justify;
    word-break: break-all;
    text-justify: inter-ideograph;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
}

/*20260422_追加*/
.banner-wrap>div {
    margin-bottom: 30px;
}

.banner-wrap>div:last-child {
    margin-bottom: 0;
}

.banner-wrap a {
    transition: .3s;
}

.banner-wrap a:hover {
    opacity: .8;
}