@charset "UTF-8";

#slides {
    overflow: hidden;
    max-width: 100%;
}

#slides>div {
    max-width: 1140px;
    margin: 0 auto;
}

#slides .swiper-container {
    display: flex;
    align-items: flex-start;
    perspective-origin: 50% 0;
}

#slides .swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, .2), rgba(0, 0, 0, 0));
}

#slides .swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, .2), rgba(0, 0, 0, 0));
}

#slides .swiper-slide-next,
#slides .swiper-slide-prev {
    filter: blur(3px);
}

#slides .swiper-pagination-bullet {
    width: 25px;
    height: 5px;
    border-radius: 0;
}

#slides .swiper-pagination-bullet-active {
    background: #000;
    opacity: 0.7;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 25px;
}



main h2 {
    color: #b3a36b;
    margin: 4.8% 0 2% 0;
    font-size: 1.75rem;
    font-family: "Playfair Display", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-weight: normal;
    text-align: center;
}

@media screen and (max-width:900px) {

    main h2 {
        font-size: 4vw;
    }

}

@media screen and (max-width:500px) {

    main h2 {
        font-size: 5.5vw;
    }

}

/* NEWS */

#news {
    max-width: 1140px;
    margin: 0 auto;
}

#news>div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#news>div>div:nth-child(1),
#news>div>div:nth-child(2) {
    width: 47%;
}

#news article {
    border-bottom: 1px solid #E8E8E8;
    width: 100%;
    margin: 0;
    padding: 0;
}

#news article a {
    position: relative;
    display: block;
    padding: 1.01em 2em 1.01em 0;
}

#news.new article a {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 1.01em 0 1.01em 0;
}

#news.new article a .text {
    width: 77%;
    padding: 3% 3% 0 0;
}

#news.new article a .thumb {
    width: 18.665%;
}

#news.new article a .thumb img {
    width: 100%;
    height: auto;
}

#news.new article a::before,
#news.new article a::after {
    display: none !important;
}

#news article a:link,
#news article a:visited {
    text-decoration: none;
}

#news article a::before,
#news article a::after {
    position: absolute;
    content: "";
    display: block;
    list-style: 1;
    font-size: 1rem;
}

#news article a::before {
    top: 50%;
    right: 0;
    background-color: #C89439;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    transition: background-color 0.2s ease-in-out;
}

#news article a::after {
    top: calc(50% + 6px);
    right: 6px;
    border-width: 1px 1px 0 0;
    border-color: #FFF;
    border-style: solid;
    width: 3px;
    height: 3px;
    transform: rotate(45deg);
}

#news article a:hover::before {
    background-color: darkslategray;
}

#news article a:link h3,
#news article a:visited h3 {
    text-decoration: underline;
    text-decoration-color: rgba(47, 79, 79, 0);
    transition: all 0.2s ease-in-out;
}

#news article a:hover h3 {
    text-decoration-color: rgba(47, 79, 79, 1);
}

#news article p {
    margin-bottom: 0.5em;
    font-size: 0.8125rem;
}

#news article p span {
    display: inline-block;
    margin-left: 0.4em;
    padding: 0.2em 0.6em 0.1em 0.6em;
}

#news article p .cat {
    background-color: #EEE;
}

#news article p .new {
    background-color: #dbc092;
    color: #FFF;
}

#news article h3 {
    font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-size: 1.0625rem;
}

#news .more {
    width: 100%;
    margin-top: 3%;
    text-align: center;
}

#news .more a {
    position: relative;
    display: inline-block;
    padding: 0.6em 3.1em;
    font-family: "Playfair Display", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease-in-out;
}

#news .more a::before,
#news .more a::after {
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
}

#news .more a::before {
    top: 2px;
    left: 2px;
    border: 1px solid #DDD;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    transition: all 0.2s ease-in-out;
}

#news .more a::after {
    top: calc(50% - 3px);
    right: 10px;
    border-width: 1px 1px 0 0;
    border-color: #C89439;
    border-style: solid;
    width: 5px;
    height: 5px;
    transform: rotate(45deg);
    transition: all 0.2s ease-in-out;
}

#news .more a:link,
#news .more a:visited {
    color: #333;
    border: 1px solid #CCC;
}

#news .more a:link::before,
#news .more a:visited::before {
    border-color: #EEE;
}

#news .more a:hover {
    border-color: darkslategray;
}

#news .more a:hover::before {
    border-color: #CCC;
}

#news .more a:hover::after {
    border-color: darkslategray;
}

@media screen and (max-width:900px) {

    #news article p {
        font-size: 1.6vw;
    }

    #news article h3 {
        font-size: 2vw;
    }

}

@media screen and (max-width:500px) {

    #news {
        margin-bottom: 8%;
    }

    #news>div {
        display: block;
    }

    #news>div>div:nth-child(1),
    #news>div>div:nth-child(2) {
        width: auto;
        padding: 0;
    }


    #news article p {
        font-size: 3.6vw;
    }

    #news article h3 {
        font-size: 4vw;
    }

    #news .more a {
        font-size: 3.6vw;
    }

}

/* PRODUCTS */

#products .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 0 4% 0;
}

#products .content>div {
    box-sizing: border-box;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #DDD;
    width: 32.106%;
    height: 224px;
    padding: 0.5%;
    transition: all 0.2s ease-in-out;
}

#products .content>div a {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

#products .content>div:nth-child(2) a {
    border-color: #EEE;
}

#products .content>div:hover {
    border-color: #666;
}

#products .content>div a:hover {
    border-color: rgba(255, 255, 255, 1);
}

#products .content>div:nth-child(2) a:hover {
    border-color: #F4F4F4;
}


#products .content>div:nth-of-type(1),
#products .content>div:nth-of-type(2) {
    width: 49.124%;
    margin-bottom: 2%;
}

#products .content>div:nth-of-type(1) {
    background-image: url(../_images/home/products-watch-04.webp);
}

#products .content>div:nth-of-type(2) {
    background-image: url(../_images/home/products-bridal-03.jpg);
}

#products .content>div:nth-of-type(3) {
    background-image: url(../_images/home/products-jewelry-03.webp);
    background-position: right -40px center;
}

#products .content>div:nth-of-type(4) {
    background-image: url(../_images/home/products-anniversary-02.webp);
    background-position: right -15px center;
}

#products .content>div:nth-of-type(5) {
    background-image: url(../_images/home/products-gold-platinum.jpg);
    background-position: right -55px center;
}

#products .content div a>div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    flex-direction: column;
    height: 100%;
    padding-left: 8%;
}

#products .content>div:nth-of-type(1) a>div,
#products .content>div:nth-of-type(2) a>div {
    padding-left: 6%;
}

#products .content h3 {
    width: 100%;
    padding: 10% 0 0 0;
    font-family: "Playfair Display", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-size: 1.875rem;
    font-weight: normal;
    text-align: left;
}

#products .content>div:nth-of-type(1) h3,
#products .content>div:nth-of-type(2) h3 {
    padding: 8% 0 0 0;
}

#products .content h3 span {
    font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

#products .content h3 span:last-child {
    display: block;
    font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-size: 0.875rem;
    text-align: left;
}

#products .content div a>div>p {
    width: 100%;
    font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-size: 0.6875rem;
    text-align: left;
}

#products .content a:link h3,
#products .content a:visited h3,
#products .content a:link p,
#products .content a:visited p {
    color: #6b696e;
}

#products .content>div:nth-of-type(1) a:link h3,
#products .content>div:nth-of-type(1) a:visited h3,
#products .content>div:nth-of-type(1) a:link p,
#products .content>div:nth-of-type(1) a:visited p {
    color: #FFF;
}

#products .content>div:nth-of-type(5) a:link h3,
#products .content>div:nth-of-type(5) a:visited h3,
#products .content>div:nth-of-type(5) a:link p,
#products .content>div:nth-of-type(5) a:visited p {
    color: #333;
    text-shadow: 2px 2px 1px rgba(255, 255, 255, 0.6);
}

/* SERVICE */


#service {
    background-color: #F7F2E8;
}

#service .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto;
    padding: 4% 0;
}


#service .content>div {
    box-sizing: border-box;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #DDD;
    width: 49.124%;
    height: 224px;
    padding: 0.5%;
    transition: all 0.2s ease-in-out;
}

#service .content>div a {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

#service .content>div:hover {
    border-color: #666;
}

#service .content>div:nth-of-type(1) {
    background-image: url(../_images/home/products-jewelry-reform-01.webp);
    text-shadow: 2px 1px 0 #fff;
}

#service .content>div:nth-of-type(2) {
    background-image: url(../_images/home/products-other.webp);
}



#service .content div a>div {
    padding: 4% 0 0 6%;
}

#service .content h3 {
    width: 100%;
    margin-bottom: 0.3em;
    font-family: "Playfair Display", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-size: 1.875rem;
    font-weight: normal;
    text-align: left;
}


#service .content h3 span {
    font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

#service .content h3 span:last-child {
    display: block;
    font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-size: 0.875rem;
    text-align: left;
}

#service .content div a>div>p {
    font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-size: 0.875rem;
    text-align: left;
}

#service .content a:link h3,
#service .content a:visited h3,
#service .content a:link p,
#service .content a:visited p {
    color: #6b696e;
}

#service .content>div:last-child a:link h3,
#service .content>div:last-child a:visited h3,
#service .content>div:last-child a:link p,
#service .content>div:last-child a:visited p {
    color: #fff;
}

@media screen and (min-width:1189px) {
    #products .content>div {
        background-size: auto 100%;
    }
}

@media screen and (max-width:1188px) {

    #products .content>div,
    #service .content>div {
        height: 18.856vw;
    }

    #products .content h3,
    #service .content h3 {
        font-size: 2.6vw;
    }

    #products .content h3 span:last-child,
    #service .content h3 span:last-child {
        font-size: 1.3vw;
    }

    #products .content div a>div>p {
        font-size: 0.9vw;
    }

    #service .content div a>div>p {
        font-size: 1.2vw;
    }


}

@media screen and (max-width:500px) {

    #products .content,
    #service .content {
        display: block;
    }

    #products .content>div,
    #service .content>div,
    #products .content>div:nth-of-type(1),
    #products .content>div:nth-of-type(2) {
        width: 100%;
        height: 42vw;
        margin-bottom: 2%;
    }

    #products .content>div:nth-of-type(5),
    #service .content>div:nth-of-type(2) {
        margin-bottom: 0;
    }


    #products .content>div:nth-of-type(4),
    #products .content>div:nth-of-type(5) {
        background-position: right -4vw center;
    }

    #products .content>div:nth-of-type(2),
    #service .content>div:nth-of-type(1),
    #service .content>div:nth-of-type(2) {
        background-position: right -10vw center;
    }

    #products .content h3,
    #service .content h3 {
        font-size: 5.55vw;
    }

    #service .content h3 {}

    #products .content h3 span:last-child,
    #service .content h3 span:last-child {
        font-size: 3.3vw;
    }

    #service .content>div a {
        display: flex;
        align-items: center;
    }

    #products .content div a>div>p {
        font-size: 2.6vw;
    }

    #service .content div a>div {
        padding-top: 0;
    }

    #service .content div a>div>p {
        font-size: 2.6vw;
    }

}


/* STORES */

#stores {
    background: linear-gradient(#F6F6F6, #FFF);
    padding: 50px 0 67px 0;
}

#stores h2 {
    margin-top: 0;
}

#stores .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 952px;
    margin: 0 auto;
}

#stores .content>div {
    width: 49.36974%;
}

#stores .photo {
    background-color: #EEE;
    padding-top: 60.638%;
    margin-bottom: 1em;
}

#stores p {
    font-size: 1rem;
    text-align: center;
}

#brands {
    padding: 50px 0 67px 0;
}

#brands h2 {
    color: #78787A;
    margin-top: 0;
}

#brands>div {
    position: relative;
    overflow: hidden;
    max-width: 1140px;
    margin: 0 auto;
    padding-bottom: 40px;
}

#brands .swiper-slide {
    text-align: center;
}

#brands .swiper-pagination {
    bottom: 0;
}

#brands .swiper-pagination-bullet {
    width: 25px;
    height: 5px;
    border-radius: 0;
}

#brands .swiper-pagination-bullet-active {
    background: #000;
    opacity: 0.7;
}


@media screen and (max-width:1188px) {

    .swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        bottom: 1.5vw;
    }

}