@charset "utf-8";
/* Common CSS */

/* RESET
----------------------------------------------------------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, cite, img, strong, i, dl, dt, dd, ol, ul, li,
form, label, table, tbody, thead, tr, th, td, article, embed, figure, figcaption, footer, header, hgroup, nav, section, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}
article, details, figcaption, figure, footer, header, hgroup, nav, section {
    display: block;
}

body {
    line-height: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

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

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

object {
    pointer-events: none;
}

img {
    pointer-events: none;
}

a {
    text-decoration: none;
    color: #000;
}

/* CONTENTS
----------------------------------------------------------------------------------------------------*/
*, *:before, *:after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 10px;
}

body {
    font-family: "Arial", "Hiragino Kaku Gothic Pro", "Yu Gothic", "YuGothic", "Hiragino Sans", "-apple-system", "BlinkMacSystemFont", "Helvetica Neue", "Meiryo", "sans-serif";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    background-color: #fff;
    color: #000;
}

body.fixed {
    width: 100%;
    height: 100%;
    position: fixed;
    overflow: hidden;
}

.bg_animation {
    position: fixed;
    top: 0;
    width: 100%;
    height: 400px;
	background-image: url("../images/common/deco.png");
    background-size: 367px 319px;
    background-repeat: no-repeat;
    animation: loop 20s linear infinite;
    -webkit-animation: loop 20s linear infinite;
    z-index: -10;
}
@keyframes loop {
	0% { 
        background-image: url("../images/common/deco_last.jpg");
        background-position: 100% 80px;
    }
    5%{
        background-image: url("../images/common/deco.png");
    }
    100% { 
        background-image: url("../images/common/deco.png");
        background-position: 0% -319px;
    }
}

_:-ms-input-placeholder, :root body {
    font-family: "Segoe UI", "-apple-system", "BlinkMacSystemFont", "Helvetica Neue", "Arial", "Meiryo", "sans-serif";
}

.mfp-close {
    cursor: pointer !important;
    cursor: hand;
}

/* HEADER
----------------------------------------------------------------------------------------------------*/
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 130;
    transition: .3s;
}

.header_contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    max-width: 1000px;
    height: 75px;
    margin: 0 auto;
}

/* LOGO
*************************************** */
.logo {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 215px;
}

.logo a {
    display: block;
}

.logo img {
    width: 100%;
    max-width: 215px;
}

/* MENU
*************************************** */
.menu {
    display: flex;
    justify-content: flex-end;
    width: 65%;
}

.nav_list {
    display: flex;
    align-items: center;
}

.nav_list_a {
    display: block;
    margin-left: 15px;
    transition: all .2s ease-in-out;
}

.nav_list_a:hover {
    opacity: .5;
}

.nav_list img {
    width: 100%;
}

.search_btn {
    display: none;
}

.scroll_list a {
    width: 120px;
    padding-bottom: 10px;
    border-bottom: solid 1px #000;
}

.pc_search {
    display: block;
}

.sp_search {
    display: none;
}

.input_search {
    position: relative;
    margin: 0 auto;
    width: 250px;
    max-width: 100%;
}

.input_search_box {
    padding: 15px 20px;
    width: 100%;
    font-size: 1.5rem;
    background: #eee;
    border-radius: 25px;
    border: none;
}

.input_search_btn {
    position: absolute; 
    right: 15px;
    top: 30%;
    border: none;
    background: none;
    cursor: pointer;
    cursor: hand;
}

.input_search_btn:hover {
    color: #ffbb21;
}


/* SEARCH MENU
*************************************** */
nav {
    margin-left: 15px;
    width: 40px;
    z-index: 140;
    transition: .3s;
}

.search_menu {
    display: none;
    position: fixed;
    top: 75px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    padding-top: 65px;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 140;
}

.search_list {
    display: block;
    position: fixed;
    top: 0;
    right: calc(50% - 512px);
    margin: 0 auto;
    padding-top: 65px;
    width: 350px;
    height: 100%;
    background: #eee;
}

.search_list .search_li {
    width: 100%;
    text-align: center;
    border-top: solid 1px #a2a2a2;
}

.search_list .search_li:last-child {
    border-bottom: solid 1px #a2a2a2;
}

.search_list h3 {
    padding: 10px;
    font-size: 2.5rem;
    font-weight: bold;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

@media all and (-ms-high-contrast:none) {
    .search_list h3 {
        padding-top: 12px;
    }
}

.search_list h3:hover {
    background-color: #000;
    color: #fff;
}

.search_list h3 p {
    margin-right: 20px;
}

.search_list h3 span {
    display: inline-block;
    padding-left: 5px;
    font-size: 1.6rem;
}

.search_list .arrow::before {
    top: 15px;
    right: 17px;
    border-top: 2px solid #a2a2a2;
    border-right: 2px solid #a2a2a2;
    transform: rotate(45deg);
}

.search_list .acd_toggle::before {
    top: 13px;
    right: 15px;
    transform: rotate(135deg);
}

.search_list .open h3 {
    background-color: #000;
    color: #fff;
}

.search_list .open .arrow::before {
    top: 17px;
    transform: rotate(-45deg);
}

/* SEARCH SUB MENU
*************************************** */
.search_list .sub_menu {
    display: none;
    position: static;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background-color: #666666;
    z-index: 140;
}

.search_select {
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
}

.search_select::-webkit-scrollbar {
    width:10px;
    background:#f1f1f1;
}

.search_select::-webkit-scrollbar-thumb {
    background:#c1c1c1;
    border-radius: 50px;
    height: 50px;
}

.search_select li {
    padding: 8px;
    border-bottom: solid 1px #a2a2a2;
    color: #000;
    font-size: 1.8rem;
}

.search_select li:last-child {
    border-bottom: none;
}

.search_select li:hover {
    background-color: #eee;
}

.search_select li a {
    display: block;
}

@media all and (-ms-high-contrast:none) {
    .search_select li a {
        padding-top: 10px;
    }
}

/* NAV TOGGLE
 *************************************** */
.nav_toggle {
    position: absolute;
    top: 28px;
    width: 22px;
    height: 17px;
    padding: 12px 7px 7px;
    cursor: pointer;
    z-index: 150;
}

.nav_toggle span {
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    background-color: #000;
}

.nav_toggle, .nav_toggle span {
    display: inline-block;
    box-sizing: border-box;
    transition: all .5s;
}

.nav_toggle span:nth-child(1) {
    top: 0;
}

.nav_toggle span:nth-child(2) {
    top: 8px;
}

.nav_toggle span:nth-child(3) {
    bottom: 0;
}

.nav_toggle.active span:nth-of-type(1) {
    transform: translateY(8px) rotate(-315deg);
}

.nav_toggle.active span:nth-of-type(2) {
    opacity: 0;
}

.nav_toggle.active span:nth-of-type(3) {
    transform: translateY(-8px) rotate(315deg);
}

/* ARROW
*************************************** */
.view_all_flex {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.arrow_flex_box {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    color: #E60028;
    font-size: 1.6rem;
    font-weight: normal;
}

.arrow_flex_box:hover {
    color: #000;
}

.view_all {
    font-weight: bold;
}


.categories .arrow_flex_box, .products .arrow_flex_box {
    font-optical-sizing: auto;
    justify-content: flex-end;
    margin-top: 10px;
}

.arrow {
    position: relative;
}

.arrow_flex_box .arrow {
    position: relative;
    width: 15px;
    min-width: 15px;
    height: 15px;
    margin-left: 5px;
    border: solid 1px #E60028;
    border-radius: 10px;
}

.arrow_flex_box:hover .arrow {
    border: solid 1px #000;
}

.arrow::before {
    content: "";
    position: absolute;
    top: 0;
    right: 5px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(135deg);
}

.arrow_flex_box .arrow::before {
    top: 3.4px;
    right: 4.8px;
    width: 6.5px;
    height: 6.5px;
    border-top: 2px solid #E60028;
    border-right: 2px solid #E60028;
    transform: rotate(45deg);
}

.arrow_flex_box:hover .arrow::before {
    border-top: 2px solid #000;
    border-right: 2px solid #000;
}

.arrow h3 {
    margin-left: 15px;
}

/* MAIN
--------------------------------------------------------------------------------------*/
/* Bread Crumbs
*************************************** */
.bread_crumbs ul {
    display: flex;
    flex-wrap: wrap;
}

.bread_crumbs li {
    position: relative;
    margin: 0 15px 10px 0;
    padding-right: 10px;
    font-size: 1.6rem;
    line-height: 1.2;
}

.bread_crumbs li:after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    margin-top: 4px;
    margin-left: 7px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(45deg);
}

.bread_crumbs li:last-child:after {
    display: none;
}

.bread_crumbs li a {
    color: #000;
    transition: all .2s ease-in-out;
}

.bread_crumbs li a:hover {
    color: #ff9900;
    text-decoration: underline;
}

/* SECTION
*************************************** */
section {
    padding-top: 15px;
    width: 100%;
    font-size: 1.6rem;
    z-index: 90;
}

.first_section {
    margin-top: 85px;
}

.frame_box {
    width: 95%;
    max-width: 1024px;
    margin: 0 auto;
    text-align: left;
}

h2 {
    font-optical-sizing: auto;
    margin-bottom: 20px;
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
}

.sub_box {
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom: dotted 1px #000;
}

.sub_box:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.sub_title {
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: left;
    line-height: 1.4;
}

.lead_text {
    padding-bottom: 15px;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.8;
}

.text_box {
    padding-top: 15px;
    border-bottom: solid 1px #a9a7a7;
}

.text {
    padding-bottom: 15px;
    line-height: 1.6;
}

.fas {
    transform: rotate(90deg);
}

.artist_name {
    margin-top: 5px;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.4;
}

.sale_title {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.4;
}

.price span {
    margin-left: 5px;
}

.detail_box {
    width: 50%;
    margin-left: 15px;
}

.detail {
    font-weight: bold;
    word-break: break-all;
    line-height: 1.4;
}

.detail p {
    margin-bottom: 5px;
}

.detail p:last-child {
    margin-bottom: 0;
}

.detail p, .circle {
    position: relative;
    font-weight: bold;
    word-break: break-all;
    line-height: 1.4;
}

.detail p::before, .circle::before {
    content: "●";
    position: absolute;
    top: 0;
    left: 0;
    color: #E60028;
    font-size: 1.6rem;
    vertical-align: middle;
}

.detail span, .circle span {
    display: block;
    margin-left: 20px;
}

.attention {
    position: relative;
    margin: 15px 0;
    font-size: 1.4rem;
}

.attention::before {
    content: "*";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2rem;
    vertical-align: middle;
}

.attention span {
    display: block;
    margin-left: 10px;
}

/* Button
*************************************** */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    cursor: pointer;
    width: 95%;
    max-width: 400px;
    margin: 20px auto 0;
    padding: 5px;
    border-radius: 30px;
    border: solid 2px #E60028;
    background-color: #E60028;
    color: #fff;
    font-size: 2.3rem;
    font-weight: bold;
    text-align: center;
    transition: all .2s ease-in-out;
}

@media all and (-ms-high-contrast:none) {
    .btn {
        padding-top: 8px;
    }
}

.btn:hover {
    color: #E60028;
    background-color: #fff;
}

.yellow_btn {
    border: solid 2px #ffbb21;
    background-color: #ffbb21;
    color: #000;
}

.yellow_btn:hover {
    color: #000;
}

.black_btn {
    border: solid 2px #000;
    background-color: #000;
}

.black_btn:hover {
    color: #000;
}

.glay_btn {
    border: solid 2px #666666;
    background-color: #666666;
}

.glay_btn:hover {
    color: #666666;
}

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

.btn_flex_cont a {
    margin: 10px 8px;
}

.btn_flex_cont a:hover {
    opacity: .7;
}

.btn_flex_cont .btn {
    width: 100%;
    max-width: 205px;
    height: 55px;
    border: solid 2px #E60028;
    background-color: #fff;
    color: #E60028;
    font-size: 1.6rem;
    line-height: 1.2;
}

.btn_flex_cont .btn:hover {
    background-color: #E60028;
    color: #fff;
    opacity: unset;
}

.btn_flex_cont img {
    width: 100%;
    max-width: 205px;
}

.more_btn {
    width: 100%;
    max-width: 150px;
    margin: 15px auto;
    border: solid 2px #666666;
    background-color: #666666;
    font-size: 1.6rem;
    line-height: 1.2;
}

.more_btn:hover {
    color: #666666;
}

.info_link {
    display: block;
    width: 95%;
    margin: 20px auto 0;
    color: #003fb3;
    line-height: 1.4;
    transition: all .2s ease-in-out;
}

.info_link:hover {
    text-decoration: underline;
}

/* Tab Menu
*************************************** */
.tab_menu {
    margin-bottom: 15px;
    overflow-x: hidden;
}

.tab_menu .owl-carousel ,.tab_cont .owl-carousel {
    width: 110%;
}

.tab_cont .owl-carousel .owl-item img {
    width: auto;
}

.tab_label {
    cursor:pointer;
    display: block;
    margin-right: 5px;
    padding: 7px 15px;
    border: solid 1.5px #F1F0F1;
    border-radius: 20px;
    background-color: #F1F0F1;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    order:-1;
    transition: all .2s ease-in-out;
}

.tab_label:hover {
    border: solid 1.5px #000;
}

.tab_click {
    cursor: default;
    background-color: #000;
    color: #fff;
}

.tab_switch:checked+.tab_label+.tab_cont {
    display: block;
}

.tab_switch {
    display: none;
}

.tab_cont {
    width: 100%;
    display: none;
    overflow-x: hidden;
}

/* FOOTER
----------------------------------------------------------------------------------------------------*/
footer {
    width: 100%;
    margin-top: 20px;
    padding: 30px 0;
    background-color: #494949;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
}

.link, .link_other {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
    max-width: 485px;
    margin: 10px auto 20px;
    transition: all .2s ease-in-out;
}

.link li {
    margin: 0 10px 15px;
    font-weight: bold;
}

.link li:last-child {
    margin-bottom: 0;
}

.link a {
    display: block;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: #373737;
    color: #fff;
    line-height: 1;
    transition: all .2s ease-in-out;
}

@media all and (-ms-high-contrast:none) {
    .link a {
        padding-top: 8px;
    }
}

.link a:hover {
    background-color: #000;
}

.link_other {
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
}

.link_other li {
    margin: 0 10px 10px;
}

.link_other li:last-child {
    margin-bottom: 0;
}

.link_other a {
    display: block;
}

.link_other a:hover {
    opacity: .7;
}

.link_other img {
    width: 100%;
    max-width: 245px;
}

/* SITE MAP
*************************************** */
.site_map {
    display: flex;
    flex-wrap: wrap;
    width: 95%;
    max-width: 1024px;
    margin: 15px auto;
    text-align: left;
}

.site_map ul {
    width: 30%;
    min-width: 115px;
    margin: 10px;
}

.site_map li {
    margin-bottom: 10px;
}

.site_map .title {
    font-size: 1.6rem;
    font-weight: bold;
}

.site_map a {
    color: #fff;
    cursor: pointer;
}

.site_map a:hover {
    text-decoration: underline;
}

/* CONNECT BOX
*************************************** */
.connect_box .link {
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
}

.connect_box .link a {
    background-color: #666666;
}

.connect_box .link a:hover {
    background-color: #000;
    color: #fff;
}

/* SITE MAP
*************************************** */
.site_map_li {
    border-bottom: solid 1px #666666;
}

.site_map_li .list {
    padding-top: 20px;
}

.site_map_li .list .arrow::before {
    top: 0;
    transform: rotate(135deg);
}

.site_map_li .search_select {
    padding: 10px 0;
}

.site_map_li .search_select li{
    font-size: 1.6rem;
    font-weight: normal;
}

.site_map_li a {
    padding: 20px 0;
    transition: all .2s ease-in-out;
}

.site_map_li a:hover {
    background-color: #ffbb21;
}

.site_map_li h3 {
    font-weight: bold;
}

/* COPY RIGHT
*************************************** */
.copy_right {
    font-size: 1.2rem;
}

/* PAGE TOP
----------------------------------------------------------------------------------------------------*/
.page-top {
    display: none;
    position: fixed;
    overflow: hidden;
    width: 40px;
    height: 40px;
    right: 19px;
    bottom: 0;
    margin-bottom: 70px;
    padding: 7px 13px;
    border-radius: 50%;
    border: solid 2px #666666;
    background-color: #666666;
    z-index: 120;
    transition: all .2s ease-in-out;
}

.page-top .top {
    transition:all 0.5s;
}

.top::before {
    top: 7px;
    left: -2px;
    width: 15px;
    height: 15px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(315deg);
}

.page-top:hover {
    background-color: #fff;
}

.page-top:hover .top::before {
    border-top: 3px solid #666666;
    border-right: 3px solid #666666;
}

/* -------------------- for SP (480px) ---480px以下
----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
    /* CONTENTS
    --------------------------------------------------------------------------------------*/
    .bg_animation {
        height: 254px;
        background-size: 200px 174px;
        animation: loop 10s linear infinite;
        -webkit-animation: loop 10s linear infinite;
    }
    @keyframes loop {
        0% { 
            background-image: url("../images/common/deco_last.jpg");
            background-position: 100% 80px;
        }
        20%{
            background-image: url("../images/common/deco.png");
        }
        100% { 
            background-image: url("../images/common/deco.png");
            background-position: 0% -174px;
        }
    }

    /* HEADER
    --------------------------------------------------------------------------------------*/

    /* LOGO
    *************************************** */
    .logo {
        width: 35vw;
    }

    /* MENU
    *************************************** */
    .pc_search {
        display: none;
    }

    .sp_search {
        display: block;
        margin-bottom: 25px;
    }

    .search_btn {
        display: block;
    }

    .input_search_box {
        background-color: #fff;
    }

    /* SEARCH MENU
    *************************************** */
    .search_list {
        right: 0;
        width: 100%;
    }

    /* NAV TOGGLE
    *************************************** */


    /* S NAV
    *************************************** */


    /* MAIN
    --------------------------------------------------------------------------------------*/
    /* SECTION
    *************************************** */
    section {
        padding-top: 4vw;
    }
    
    .first_section {
        margin-top: 75px;
    }

    .artist_name {
        font-size: 1.8rem;
    }

    .sale_title {
        font-size: 1.6rem;
    }

    /* Button
    *************************************** */
    .btn {
        font-size: 1.8rem;
    }

    .btn_flex_cont a {
        margin: 0 2vw 4vw;
    }

    .btn_flex_cont .btn {
        max-width: 100%;
        height: unset;
        font-size: 1.6rem;
    }

    /* FOOTER
    ----------------------------------------------------------------------------------------------------*/
    footer {
        margin-top: 5vw;
        padding: 20px 3vw 85px;
    }

    /* SITE MAP
    *************************************** */
    .site_map ul {
        width: 25%;
    }

}
/* (max-width: 480px) end */


/* -------------------- for Tablet (481px) and (1023px) ---481から1023px以内
----------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 481px) and (max-width: 1023px) {
    /* CONTENTS
    ----------------------------------------------------------------------------------------------------*/


    /* HEADER
    --------------------------------------------------------------------------------------*/

    /* LOGO
    *************************************** */
    .logo {
        width: 20vw;
    }

    /* MENU
    *************************************** */
    .pc_search {
        display: none;
    }

    .sp_search {
        display: block;
        margin-bottom: 25px;
    }

    .search_btn {
        display: block;
    }

    .input_search_box {
        background-color: #fff;
    }

    /* SEARCH MENU
    *************************************** */
    .search_list {
        right: 0;
    }

    /* NAV TOGGLE
    *************************************** */

    /* S NAV
    *************************************** */


    /* MAIN
    --------------------------------------------------------------------------------------*/
    /* SECTION
    *************************************** */
    .first_section {
    margin-top: 75px;
    }

    .artist_name {
        font-size: 1.8rem;
    }

    .sale_title {
        font-size: 1.6rem;
    }
    
    /* Button
    *************************************** */
    .btn {
        font-size: 1.8rem;
    }

    /* FOOTER
    ----------------------------------------------------------------------------------------------------*/
    footer {
        padding-bottom: 85px;
    }

}
/* (min-width: 481px) and (max-width: 1023px) end */
