/*====================================
	
	----------------------------------
		Color
	----------------------------------
	
	Main   / #111111
    Accent / #581010
 
	----------------------------------
  		font
	----------------------------------
 
	En / Bodoni
  	Jp / Noto Sans JP
 
	----------------------------------
  		Structure
  	----------------------------------
 
  	0. General
  	1. Header
  	2. Footer
  	3. Contents
  		3.1 Hero
  		3.2 Event Info
  		3.3 Products
  		3.4 Novelty
  		3.5 Hand to hand
  		3.6 Event Schedule
  		3.7 Online Store 
  	4. Media Query
		4.1 1280px
  		4.2 1080px
  		4.3 768px
  		4.4 480px 
 
====================================*/

/*====================================
 
	0. General
 
====================================*/

* {
    -webkit-overflow-scrolling: touch;
}

html {
    margin: 0;
    padding: 0;
    line-height: 1.8;
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    /* 16px */
    font-family: bodoni-urw, 'Noto Serif JP', serif;
    margin: 0;
    padding: 0;
    color: #fff !important;
    background-color: #111 !important;
}

/* reset */

h1,
h2,
h3,
p {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
    vertical-align: top;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

a:hover img {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

a {
    text-decoration: none;
    cursor: pointer;
    tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    color: #fff;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-font-smoothing: antialiased
}

a:hover {
    color: #fff;
    opacity: 0.8 !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* adobe font */

.wf-loading {
    visibility: hidden;
}

.wf-active {
    visibility: visible;
}

.wf-inactive {
    visibility: visible;
}

/* all contents */

#all_wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#contents {
    letter-spacing: 0.1em;
}

/* flex box */
.row {
    display: flex;
    justify-content: center;
}

.col__2 {
    width: 50%;
    box-sizing: border-box;
    margin: 0 40px 0 0;
}

.col__3 {
    width: 33.3%;
    box-sizing: border-box;
    margin: 0 40px 0 0;
}

.col__4 {
    width: 17.5%;
    box-sizing: border-box;
    margin: 0 40px 0 0;
}

.col__5 {
    width: 20%;
    box-sizing: border-box;
    margin: 0 40px 0 0;
}

.col__2:nth-of-type(2n),
.col__3:nth-of-type(3n),
.col__4:nth-of-type(4n),
.col__5:nth-of-type(5n) {
    margin: 0;
}


/* common */

.w__1280 {
    width: 1280px;
}

.c__section {
    text-align: center;
    box-sizing: border-box;
    margin: 80px auto;
}

.c__section:last-of-type {
    margin: 80px auto 0;
}

.section__headline {
    text-align: center;
    margin-bottom: 40px;
}

.section__headline p.number {
    font-size: 1.2rem;
    color: #6d6d6d;
    letter-spacing: 0.2em;
    margin-left: 6px;
    margin-bottom: 15px;
    line-height: 1;
}

.section__headline h2 {
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    line-height: 1;
    display: inline-block;
    margin-bottom: 15px;
}

.stripe {
    position: relative;
}

.stripe:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 7px;
    background: repeating-linear-gradient(-45deg, #6d6d6d, #6d6d6d 1px, transparent 2px, transparent 4px);
}

.section__description {
    margin-bottom: 40px;
}

.section__description p {
    text-align: center;
    font-size: 1.2rem;
}

.section__detail p.cat_name {
    font-size: 2rem;
    margin-bottom: 40px;
}

.txt__align__left {
    text-align: left;
}

a.ec__link {
    width: 250px;
    display: block;
    margin: 20px auto;
    background: #581010;
    color: #fff;
    padding: 10px 0;
    font-size: 1.8rem;
    border-radius: 50px;
}

/*====================================
 
	1. Header
 
====================================*/

header {
    width: 100%;
    height: 85px !important;
    background: transparent !important;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 0 !important;
    /* mix-blend-mode: difference; */
}

div.h_inner {
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
    width: 100%;
    display: block;
}

div.h_inner .logo img {
    width: 118px;
    height: auto;
    position: relative;
    transition: all 0.7s ease;
}

/* hamburger icon customize */
button:hover {
    cursor: pointer;
}

button.hamburger {
    cursor: pointer;
    outline: none;
    position: fixed;
    top: 12px;
    right: 14px;
    height: 30px;
    width: 30px;
    padding: 0 20px;
    display: block;
    z-index: 9999;
    border: 0;
    border-radius: 0;
    background-color: transparent !important;
    pointer-events: all;
    transition: -webkit-transform .6s cubic-bezier(.165, .84, .44, 1);
    transition: transform .6s cubic-bezier(.165, .84, .44, 1);
    transition: transform .6s cubic-bezier(.165, .84, .44, 1), -webkit-transform .6s cubic-bezier(.165, .84, .44, 1);
    /* mix-blend-mode: difference; */
}

button.hamburger .btn_bar {
    position: absolute;
    top: 50%;
    right: 6px;
    left: 6px;
    height: 2px;
    width: auto;
    margin-top: -1px;
    transition: opacity .3s cubic-bezier(.165, .84, .44, 1), background-color .6s cubic-bezier(.165, .84, .44, 1), -webkit-transform .6s cubic-bezier(.165, .84, .44, 1);
    transition: transform .6s cubic-bezier(.165, .84, .44, 1), opacity .3s cubic-bezier(.165, .84, .44, 1), background-color .6s cubic-bezier(.165, .84, .44, 1);
    transition: transform .6s cubic-bezier(.165, .84, .44, 1), opacity .3s cubic-bezier(.165, .84, .44, 1), background-color .6s cubic-bezier(.165, .84, .44, 1), -webkit-transform .6s cubic-bezier(.165, .84, .44, 1);
    background-color: #fff;
}

button.hamburger.c_change .btn_bar {
    background-color: #fff;
}

button.hamburger .btn_bar__01 {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
}

button.hamburger .btn_bar__02 {
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

button.hamburger .btn_bar__03 {
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-transform: translateY(6px) scaleX(1);
    transform: translateY(6px) scaleX(1);
}


/* hover */

button.hamburger.hover .btn_bar__02 {
    -webkit-transform: translateY(6px) scaleX(1);
    transform: translateY(6px) scaleX(1);
}

/* active */

button.hamburger.is_active .btn_bar {
    transition: opacity .3s cubic-bezier(.165, .84, .44, 1), background-color .6s cubic-bezier(.165, .84, .44, 1), -webkit-transform .6s cubic-bezier(.165, .84, .44, 1);
    transition: transform .6s cubic-bezier(.165, .84, .44, 1), opacity .3s cubic-bezier(.165, .84, .44, 1), background-color .6s cubic-bezier(.165, .84, .44, 1);
    transition: transform .6s cubic-bezier(.165, .84, .44, 1), opacity .3s cubic-bezier(.165, .84, .44, 1), background-color .6s cubic-bezier(.165, .84, .44, 1), -webkit-transform .6s cubic-bezier(.165, .84, .44, 1);
    background-color: #fff;
}

button.hamburger.is_active {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

button.hamburger.is_active .btn_bar__01 {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

button.hamburger.is_active .btn_bar__02 {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: center;
    transform-origin: center;
}

button.hamburger.is_active .btn_bar__03 {
    opacity: 0;
}


/* drawer menu */

#drawer_menu {
    width: 100%;
    height: 100%;
    /* ios tool bar */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 995;
    background: #581010;
    transition: all 1.4s cubic-bezier(1.000, 0.000, 0.000, 1.000);
    /* easeInOutExpo */
    transform: translateY(-100%);
}

#drawer_menu.is_active {
    transition: all 1s cubic-bezier(1.000, 0.000, 0.000, 1.000);
    /* easeInOutExpo */
    transform: translateY(0);
}

#drawer_menu .drawer_inner {
    width: 100%;
    height: 100%;
    /* ios tool bar */
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111;
    transition: all 1s cubic-bezier(1.000, 0.000, 0.000, 1.000);
    /* easeInOutExpo */
    transform: translateY(-100%);
}

#drawer_menu.is_active .drawer_inner {
    transition: all 1.4s cubic-bezier(1.000, 0.000, 0.000, 1.000);
    /* easeInOutExpo */
    transform: translateY(0);
}

#drawer_menu .drawer_inner ul.menu_nav li {
    text-align: center;
    width: 100%;
    margin: 25px 0 0;
    transition: all 0.8s ease;
    overflow: hidden;
}

#drawer_menu .drawer_inner ul.menu_nav li:first-child {
    margin: 0;
}

#drawer_menu ul li a {
    color: #fff;
    padding: 0 10px;
    text-align: center;
    display: inline-block;
    position: relative;
    top: 70px;
    font-size: 2vw;
    letter-spacing: 0.2em !important;
    transition: all 1.6s cubic-bezier(1.000, 0.000, 0.000, 1.000);
    transition-delay: 0.6s;
}

#drawer_menu.is_active ul li a {
    top: 0;
}

#drawer_menu ul li a:hover {
    opacity: 1 !important;
}

.hover_anim {
    text-transform: uppercase;
    overflow: hidden;
}

.hover_anim:hover::after {
    transform: scale(1, 1);
    transform-origin: top left;
}

.hover_anim::after {
    content: '';
    display: inline-block;
    position: absolute;
    height: 4px;
    width: 100%;
    top: 50%;
    margin-top: -4px;
    left: -6px;
    background: #581010;
    transform: scale(0, 1);
    transform-origin: top right;
    transition: transform 0.4s;
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    mix-blend-mode: lighten;
}

/*====================================
 
	2. Footer
 
====================================*/

footer {
    width: 100%;
    padding: 0 20px !important;
    margin-bottom: 10px !important;
    color: #fff;
    box-sizing: border-box;
    transition: all 0.7s ease;
    letter-spacing: 0;
}

footer .f_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .f_inner .sns ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .f_inner .sns ul li:first-child,
footer .f_inner .sns ul li:nth-child(2) {
    margin-right: 5px;
}

footer .f_inner .sns ul li a {
    font-size: 1rem;
    color: #fff;
    font-weight: 400;
}

footer .f_inner .copyright p {
    font-size: 1rem;
}


/*====================================
 
	3. Contents
 
====================================*/


/*
 	3.1 Hero
====================================*/

#hero {
    width: 100%;
    height: 100vh;
    position: relative;
    text-align: center;
    background: url("../images/bg/hero_bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero_blk_overlay:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: rgba(0, 0, 0, .65);
    z-index: 2;
}

.hero_blk_overlay_win:before {
    background: rgba(0, 0, 0, .45);
}

.hero_inner {
    width: 100%;
    height: 100vh;
}

.hero_title {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero_title .hero_txt img.brand_logo {
    width: 160px;
    height: auto;
    margin-bottom: 40px;
}

.hero_title .hero_txt .project_name {
    margin-bottom: 40px;
}

.hero_title .hero_txt .project_name p {
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    display: inline-block;
    border-bottom: 2px solid #fff;
    line-height: 1.4;
    margin-bottom: 10px;
}

.hero_title .hero_txt .project_date p.cat_name {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
}

.hero_title .hero_txt .project_date p.date {
    font-size: 2.8rem;
    letter-spacing: 0.2em;
}

.hero_title .hero_txt .project_date p.date span.wday {
    font-size: 1.4rem;
    letter-spacing: 0.2em;
}

.scroll_down {
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll_down a {
    position: absolute;
    bottom: 80px;
    left: 50%;
    z-index: 2;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    text-decoration: none;
    color: #fff;
    font-size: 1.4rem;
}

.scroll_down a p {
    margin-left: -42.26px;
}

.chevron {
    position: absolute;
    bottom: 0;
    z-index: 2;
    width: 2.4rem;
    height: 0.12rem;
    margin-left: -1.2rem;
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
    -webkit-animation: move-chevron 3s ease-out infinite;
    animation: move-chevron 3s ease-out infinite;
}

.chevron:first-child {
    -webkit-animation: move-chevron 3s ease-out 1s infinite;
    animation: move-chevron 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
    -webkit-animation: move-chevron 3s ease-out 2s infinite;
    animation: move-chevron 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: #fff;
}

.chevron:before {
    left: 0;
    -webkit-transform: skewY(30deg);
    transform: skewY(30deg);
}

.chevron:after {
    right: 0;
    width: 50%;
    -webkit-transform: skewY(-30deg);
    transform: skewY(-30deg);
}

@-webkit-keyframes move-chevron {
    25% {
        opacity: 1;
    }

    33.3% {
        opacity: 1;
        -webkit-transform: translateY(2.28rem);
        transform: translateY(2.28rem);
    }

    66.6% {
        opacity: 1;
        -webkit-transform: translateY(3.12rem);
        transform: translateY(3.12rem);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(4.8rem) scale(0.5);
        transform: translateY(4.8rem) scale(0.5);
    }
}

@keyframes move-chevron {
    25% {
        opacity: 1;
    }

    33.3% {
        opacity: 1;
        -webkit-transform: translateY(2.28rem);
        transform: translateY(2.28rem);
    }

    66.6% {
        opacity: 1;
        -webkit-transform: translateY(3.12rem);
        transform: translateY(3.12rem);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(4.8rem) scale(0.5);
        transform: translateY(4.8rem) scale(0.5);
    }
}

/*
 	3.2 Event Info
====================================*/

/*
 	3.3 Products
====================================*/

#products .anniversary_item,
#products .products_list_01,
#products .leather_item_01,
#products .leather_item_02 {
    margin-bottom: 40px;
}

#products img.products_image {
    margin-bottom: 20px;
}

#products p.products_name {
    font-size: 1.8rem;
}

#products p.products_txt {
    font-size: 1.2rem;
}

#products p.products_price span.tax {
    font-size: 1.2rem;
}

#products p.comment {
    color: #6d6d6d;
    font-size: 1rem;
    margin-top: 10px;
}

#products p.products_name,
#products p.products_txt,
#products p.products_price {
    margin-bottom: 0;
}

div.leather_item_01 p.products_name,
div.leather_item_01 p.products_txt,
div.leather_item_01 p.products_price {
    margin-bottom: 15px !important;
}

div.special_item_list {
	margin-bottom: 40px;
}

div.special_item_list img.products_image {
	margin-bottom: 0 !important;
}


/*
 	3.4 Novelty
====================================*/

#novelty img.novelty_image {
    margin-bottom: 20px;
}

#novelty p.novelty_name {
    font-size: 1.8rem;
}

#novelty p.novelty_txt {
    font-size: 1.2rem;
}

#novelty p.novelty_price span.tax {
    font-size: 1.2rem;
}

#novelty p.comment {
    color: #6d6d6d;
    font-size: 1rem;
}

#novelty p.novelty_name,
#novelty p.novelty_txt {
    margin-bottom: 20px;
}

/*
 	3.5 Hand to hand
====================================*/

#hand_to_hand {
    max-width: 100%;
    background: url("../images/bg/hand_to_hand_bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hand_to_hand_inner {
    padding: 80px 0;
}


/*
 	3.6 Event Schedule
====================================*/

#event_schedule p.comment {
    color: #6d6d6d;
    font-size: 1rem;
	margin-top: 10px;
}

#event_schedule .shop {
    border-top: 2px solid #581010;
    border-bottom: 2px solid #581010;
}

#event_schedule .shop_list {
    margin-bottom: 40px;
}

#event_schedule .shop_list .shop {
    padding: 20px 0;
}

#event_schedule .shop_list .shop .event_date span {
    font-size: 1.2rem;
}

#event_schedule .shop_list .shop .event_date p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

#event_schedule .shop_list .shop .event_shop p {
    font-size: 1.2rem;
}

/*
 	3.7 Online Store
====================================*/

#online_store {
    position: relative;
    background: url("../images/bg/online_store_bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.online_store_blk_overlay:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: rgba(0, 0, 0, .8);
    z-index: 1;
}

.online_store_blk_overlay_win:before {
    background: rgba(0, 0, 0, .6);
}

#online_store .online_store_inner {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

/*====================================
 
	4. Media Query
 
====================================*/

/* responsive */

.pc {
    display: block;
}

.sp {
    display: none;
}

/*
 	4.1 1280px
====================================*/

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

/*
 	4.2 1024px
====================================*/

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

    /* flex box */
    .col__2,
    .col__3,
    .col__4,
    .col__5 {
        margin: 0 20px 0 0;
    }

    /* common */

    .w__1280 {
        width: 100%;
    }

    .section__detail {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    /* hand to hand */

    #hand_to_hand {
        background: url("../images/bg/hand_to_hand_bg_tab_horizontal.jpg");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    
}

/*
 	4.3 768px
====================================*/

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

    .sp {
        display: block !important;
    }

    .pc {
        display: none !important;
    }

    /* flex box */
    .row {
        display: block;
        justify-content: center;
    }

    .col__2,
    .col__3,
    .col__4,
    .col__5 {
        width: 100%;
        box-sizing: border-box;
        margin: 0 40px 40px 0;
    }

    .col__2:nth-of-type(2n),
    .col__3:nth-of-type(3n),
    .col__4:nth-of-type(4n),
    .col__5:nth-of-type(5n) {
        margin: 0;
    }

    /* common */

    div.h_inner {
        padding: 20px 2%;
    }

    div.h_inner .logo img {
        width: 12%;
    }

    #drawer_menu ul li a {
        font-size: 5vw;
    }

    /* hero */

    #hero {
        background: url("../images/bg/hero_bg_sp.jpg");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .hero_blk_overlay:before {
        background: rgba(0, 0, 0, .4);
    }

    /* hand to hand */

    #hand_to_hand {
        background: url("../images/bg/hand_to_hand_bg_tab_vertical.jpg");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    
}


/*
 	4.4 480px
====================================*/

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


    /* common */

    .section__headline h2 {
        font-size: 6.5vw;
    }

    .section__description p {
        font-size: 1rem;
    }

    .section__detail p.cat_name {
        font-size: 5.4vw;
    }

    /* header */
    div.h_inner .logo img {
        margin-left: 2.5%;
    }

    /* footer */
    footer .f_inner .sns ul li a {
        font-size: 1rem;
    }

    footer .f_inner .copyright {
        font-size: 1rem;
    }

    /* hero */

    .hero_title .hero_txt img.brand_logo {
        width: 120px;
    }

    .hero_title .hero_txt .project_name p {
        font-size: 6.5vw;
    }


    .hero_title .hero_txt .project_date p.cat_name {
        font-size: 1rem;
    }

    .hero_title .hero_txt .project_date p.date {
        font-size: 5vw;
    }

    .hero_title .hero_txt .project_date p.date span.wday {
        font-size: 1rem;
    }

    /* products */

    #products p.products_name {
        font-size: 4vw;
    }

    #products p.comment {
        font-size: 1rem;
    }

    #products p.products_txt {
        font-size: 1rem;
    }

    /* novelty */

    #novelty p.novelty_name {
        font-size: 4vw;
    }

    #novelty p.novelty_txt {
        font-size: 1rem;
    }

    /* hand to hand */

    .hand_to_hand_inner {
        padding: 80px 20px;
    }

    #hand_to_hand {
        background: url("../images/bg/hand_to_hand_bg_sp.jpg");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }


}