﻿@charset "UTF-8";


.header *,
.footer * {
    letter-spacing: 0.1em;
}

.header img,
.footer img {
    width: 100%;
    height: auto;
    vertical-align: top;
}


/*--------------------------------------
 ヘッダー
--------------------------------------*/
#Header .header{
    width: 100%;
    /*position: fixed;*/
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 999;
    top: 0;
}

#Header .head_logo {
    width: 25rem;
    height: 4.7rem;
}

#Header .head__outer{
    position: relative;
    z-index: 999;
    background-color: #FFFFFF;
}

#Header .head_inner {
    width: 152rem;
    max-width: 95%;
    margin: 0 auto;
    padding: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    height: 10rem;
    justify-content: space-between;
    z-index: 1;
}

/*帯バナー */

#Header .head_news{
    position: relative;
    overflow: hidden;
}

#Header .head_news ul{
    position: relative;
}

#Header .head_news li {
    width: 100%;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    text-align: center;
    background-color: #333;
    color: #fff;
}

#Header .head_news.ticker li{
    display: none;
}

#Header .head_news li a {
    display: block;
    width: 100%;
    height: 4rem;
    line-height: 4rem;
    color: #fff;
}


/*カテゴリ*/

#Header .head_linkWrap {
    margin: 0 auto;
}

#Header ul.head_link {
    width: 76rem;
    display: flex;
    justify-content: space-between;
}

#Header ul.head_link > li {
    height: 10rem;
    line-height: 10rem;
    position: relative;
}
#Header ul.head_link > li > .menu_title {
    font-size: 1.8rem;
    font-family: garamond-premier-pro, serif;
    letter-spacing: 0.2em;
    cursor: pointer;
}
@media screen and (min-width: 768px) {
    #Header ul.head_link > li.head_links_dropdown:hover::after {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid rgba(51, 51, 51,0.6);
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
    }
}
#Header .head_links_dropdown .sub-menu{
    display: none;
    position: fixed;
    top: 14rem;
    left: 0;
    width: 100vw;
    padding: 5rem 0 8rem;
    background: rgba(51, 51, 51, 0.6);
    color: #fff;
    z-index: 100;
}
/*#Header .head_links_dropdown .sub-menu{
    display: none;
    position: absolute;
    margin-bottom: 0;
    background-image: none;
    width: 100%;
}

#Header .head_links_dropdown.is-drop-open .sub-menu{
    display: block;
    position: fixed;
    top: 14rem;
    left: 0;
    width: 100vw;
    padding: 5rem 0 8rem;
    background: rgba(51, 51, 51, 0.6);
    color: #fff;
    z-index: 100;
}*/

#Header .head_links_dropdown .sub-menu .menu-inner{
    width: 96rem;
    margin: auto;
}

#Header .head_links_dropdown .sub-menu .menu-inner ul {
    display: flex;
    justify-content: space-between;
}

#Header .head_links_dropdown .sub-menu .menu-inner ul li:nth-child(1){
    width: 50rem;
}

#Header .head_links_dropdown .sub-menu .menu-inner ul li:nth-child(2){
    width: 40rem;
}

#Header .head_links_dropdown .sub-menu .menu-inner ul li .head_category_ttl {
    font-size: 1.8rem;
    line-height: 1;
    padding-bottom: 2rem;
    border-bottom: 1px solid;
    margin-bottom: 2rem;
    position: relative;
    cursor: pointer;
}

#Header .head_links_dropdown .sub-menu .menu-inner ul li .head_category_ttl .arrow{
    background-image: url(../Contents/ImagesPkg/common//arrow_white.svg);
    background-size: contain;
    position: absolute;
    right: 2rem;
    top: 0.5rem;
    width: 0.8rem;
    height: 1.2rem;
    background-repeat: no-repeat;
}

#Header .head_links_dropdown .sub-menu .menu-inner ul li .head_category_ttl.dropdown .arrow{
    transform: rotate(90deg);
}

#Header .head_links_dropdown .sub-menu .menu-inner ul li .head_category_ttl.dropdown.open .arrow{
    transform: rotate(-90deg);
}

#Header .head_links_dropdown .sub-menu .menu-inner ul li .mega_category_list {
    flex-direction: column;
    flex-wrap: wrap;
    height: 18rem;
    transition: all .4s;
    display: none;
}

#Header .head_links_dropdown .sub-menu .menu-inner ul li .head_category_ttl.dropdown.open + .mega_category_list {
    display: block;
}
@media screen and (min-width: 768px) {
    #Header .head_links_dropdown .sub-menu .menu-inner ul li .mega_category_list dl {
        display: flex;
        flex-wrap: wrap;
    }

    #Header .head_links_dropdown .sub-menu .menu-inner ul li .mega_category_list dd {
        width: 33.3%;
    }
}

#Header .head_links_dropdown .sub-menu .menu-inner ul li .mega_category_list a{
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    line-height: 3.5rem;
}

#Header .head_brand_inner ul li p span {
    font-size: 1rem;
    display: block;
    line-height: 1.5;
    margin-top: 0.2rem;
}



/*キーワード検索*/
#HeadSearch{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
    text-align: center;
}
#HeadSearch .HeadSearch_overlay{
    background: rgba(51, 51, 51, 0.8);
    width: 100vw;
    height: 100vh;

}

#HeadSearch .HeadSearch_close{
    width: 2rem;
    height: 2rem;
    position: absolute;
    right: 3rem;
    top: 3rem;
}

#HeadSearch .wrapSearch .head_searchBox_ttl{
    font-size: 4rem;
    font-family: garamond-premier-pro, serif;
    letter-spacing: 0.2em;
    line-height: 1;
    text-align: center;
    margin-bottom: 4rem;
}

#HeadSearch .wrapSearch{
    width: 80rem;
    height: 38.8rem;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    padding: 7rem 5rem 9rem;
}

.head_searchBox_textBox{
    position: relative;
}

.head_searchBox_textBox .btnSearch{
    position: absolute;
    width: 3rem;
    height: 3rem;
    top: 2rem;
    left: 3rem;
}
#HeadSearch .wrapSearch input[type="text"] {
    border: none;
    border-radius: 0;
    outline: none;
    background: #F4F4F4;
    width: 100%;
    height: 7rem;
    padding: 0 2.5rem 0 8.6rem;
    font-size: 1.6rem;
}

#HeadSearch .wrapSearch input[type="text"]::placeholder {
    font-size: 1.6rem;
    color: #707070 !important;
}

#HeadSearch .head_searchBox_keyword{
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

#HeadSearch .head_searchBox_keyword li{
    border: 1px solid #707070;
    border-radius: 50px;
    line-height: 3.8rem;
    font-size: 1.4rem;
    padding: 0 1.2rem;
    margin: 0 1rem;
}

/*ナビ*/
#Header ul.head_user {
    display: flex;
    width: auto;
    width: 20rem;
    justify-content: space-between;
    white-space: nowrap;
}

#Header ul.head_user li{
    cursor: pointer;
}

#Header ul.head_user li.head_mypage,
#Header ul.head_user li.head_searchBox{
    width: 2.4rem;
    height: 2.4rem;
}

#Header ul.head_user li.head_favorite{
    width: 2.7rem;
    height: 2.4rem;
}

#Header ul.head_user li.head_cart{
    width: 2.5rem;
    height: 2.4rem;
}

#Header ul.head_user li a {
    display: flex;
    align-items: center;
    position: relative;
    overflow: unset;
}

#Header ul.head_user li .cart_img {
    position: relative;
}

#Header ul.head_user li .cart_num {
    position: absolute;
    background: #C1888B;
    color: #fff;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    right: -1.5rem;
    bottom: -1rem;
    font-size: 1.6rem;
    font-family: "futura-pt", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic", "メイリオ", sans-serif !important;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.05em;
}



/*--------------------------------------
 追従ヘッダー
--------------------------------------*/

#Header #headerFixed {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-transform: translate(0, -100%);
    transform: translate(0, -100%);
    width: 100%;
    min-width: 100%;
    top: 0;
    left: 0;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    z-index: 20;
}

#Header #headerFixed .head_inner{
    height: 7rem;
}

#Header #headerFixed.show {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}
#Header #headerFixed .head_logo {
    width: 18rem;
    height: 3.4rem;
}

#Header #headerFixed ul.head_link > li{
    height: 7rem;
    line-height: 7rem;
}

#Header #headerFixed .head_links_dropdown .sub-menu{
    top: auto;
}

/* Language */
#Header .translator-wrap {
    display: flex;
    justify-content: flex-start;
    position: relative;
	align-items: center;
    color: inherit;
	height: 100%;
	margin-right: 3rem;
}

#Header .translator-wrap::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid rgba(51, 51, 51,0.6);
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
    transition: ease 1s;
    opacity: 0;
}

#Header .translator-wrap:hover::after {
    opacity: 1;
}

#Header .translator-wrap .ico-lang {
    display: inline-block;
    /* width: 1.8rem;
    height: auto; */
    margin-right: 1em;
	max-width: 2.8rem;
}

#headerFixed .translator-wrap {
    color: initial;
}

/* .translator-wrap .wovn-languages {
    display: block !important;
} */

#Header .text {
    font-size: 1.8rem;
	font-family: garamond-premier-pro, serif;
    letter-spacing: 0.08em;
}

#Header #language-select,
#Header #language-select .wovn-languages .wovn-switch {
    font-family: inherit;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.71;
    letter-spacing: 0.08em;
}

#Header #language-select {
    position: absolute;
    top: 100%;
    left: 0;
	width: 15rem;
    height: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    background-color: rgba(51, 51, 51,0.6);
	opacity: 0;
	visibility: hidden;
    transition: ease 1s;
    z-index: 2;
}

#Header .translator-wrap:hover #language-select,
#Header #language-select.show {
    opacity: 1;
    visibility: visible;
    height: auto;
    padding: 2rem;
}

#Header .translator-wrap:hover,
#Header #language-select .wovn-languages .wovn-switch:hover {
    cursor: pointer;
}

#Header #language-select .wovn-languages .wovn-switch {
    position: relative;
    text-align: left;
    transition: ease 0.5s;
}

#Header #language-select .wovn-languages .wovn-switch:hover {
    color: #c1888b;
}

#Header #language-select .wovn-languages .wovn-switch.selected {
    display: block;
    font-weight: bold;
    pointer-events: none;
}


/*--------------------------------------
 フッター
--------------------------------------*/
#Foot {
    margin-top: 0 !important;
    overflow: hidden;
    background: #fff;
    padding-top: 15rem;
}
/*footer_banner*/
.footer_banner{
    border-top: 0.2rem solid #EFEFEF;
    padding: 4rem 0;
}
.footer_banner ul{
    display: flex;
    justify-content: space-between;
    width: 140rem;
    margin: auto;
    
}
.footer_banner ul li{
    width: 45rem;
}
/*footer_links*/
.footer_links{
    background: #EAEAEA;
}
.footer_links .footer_links_wrap{
    display: flex;
    justify-content: space-between;
    width: 140rem;
    margin: auto;
    padding: 5rem 0;
}
.footer_links .footer_links_wrap .category{
    width: 74rem;
}
.footer_links .footer_links_wrap .brand{
    width: 47rem;
}
.foot_category_ttl {
    color: #fff;
    font-size: 8rem;
    font-family: garamond-premier-pro, serif;
    letter-spacing: 0.08em;
    line-height: 1;
    margin-bottom: 2rem;
}
.footer_links .footer_links_wrap .category ul {
    display: flex;
    justify-content: space-between;
}
.footer_links .foot_category_sub {
    font-family: garamond-premier-pro, serif;
    letter-spacing: 0.08em;
    font-size: 2.5rem;
    line-height: 5.5rem;
    display: flex;
    align-items: center;
}
.footer_links .brand .foot_category_sub {
    margin-bottom: 0;
}

.footer_links .foot_category_sub::before {
    content: "";
    display: inline-block;
    width: 2rem;
    height: 1px;
    background: #333;
    margin-right: 1rem;
}
.footer_links .category ul ul.foot_category_list {
    display: flex;
    flex-direction: column;
	justify-content: flex-start;
    flex-wrap: wrap;
    font-size: 1.6rem;
    line-height: 3.5rem;
    height: 19rem;
}
.footer_links .category ul ul.foot_category_list a {
    display: inline-block;
    margin-left: 3rem;
    letter-spacing: 0.08em;
}

/*footer_bottom*/
.footer_bottom{
    display: flex;
    justify-content: center;
    color: #fff;
    background: #333;
}
.footer_bottom_ttl {
    font-size: 3rem;
    font-family: garamond-premier-pro, serif;
    margin-bottom: 2rem;
}

/*footer_guide_wrap*/
.footer_guide_wrap_inner{
    width: 84rem;
    margin-right: 0;
    margin-left: auto;
    margin-top: 9rem;
}
.footer_guide_links {
    display: flex;
    margin-bottom: 10rem;
}
.footer_guide_links > div {
    margin-right: 8rem;
}
.foot_guide_sub {
    font-size: 1.4rem;
    line-height: 3.5rem;
}
.foot_guide_sub a{
    display: inline-block;
}

/*footer_sns*/
.footer_sns{
    display: flex;
    margin-bottom: 4rem;
    align-items: center;
}
.footer_sns li{
    margin-right: 2rem;
}
.footer_sns li.sns_insta{
    width: 3.2rem;
    height: 3.2rem;
}
.footer_sns li.sns_twitter{
    width: 3.3rem;
    height: 3.3rem;
}
.footer_sns li.sns_facebook{
    width: 3.2rem;
    height: 3.2rem;
}
.footer_sns li.sns_line{
    width: 3.3rem;
    height: 3.2rem;
}
.footer_sns li.sns_youtube{
    width: 3.6rem;
    height: 2.8rem;
}
/*copyright*/
.footer_bottom .copyright{
    font-family: "futura-pt", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic", "メイリオ", sans-serif !important;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/*footer_calender_wrap*/
.footer_calender_wrap {
    background: #5D5D5D;
    position: relative;
}
.footer_calender_wrap_inner {
    width: 46rem;
    margin-top: 9rem;
    margin-left: 10rem;
}
.footer_calender_wrap_inner .footer_bottom_ttl{
    margin-bottom: 3rem;
}
.footer_calender_wrap::after {
    content: "";
    width: 100vh;
    height: 100%;
    background: #5D5D5D;
    display: block;
    position: absolute;
    left: 55rem;
    top: 0;
}

/* Language */
.footer .translator-wrap.flex {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
	margin-bottom: 5rem;
}

.footer .translator-wrap .ico-lang {
    display: inline-block;
    width: 1.8rem;
    height: auto;
    margin-right: 1em;
    vertical-align: middle;
}

.footer .text {
    font-size: 1.4rem;
    line-height: 1.71;
    letter-spacing: 0.08em;
    margin-right: 1em;
}

.footer .wovn-languages .wovn-switch {
    font-size: 1.4rem;
    line-height: 1.71;
    letter-spacing: 0.08em;
}

.footer .wovn-languages .wovn-switch {
    position: relative;
    transition: ease 0.5s;
}

.footer .wovn-languages .wovn-switch::after {
    content: "";
    opacity: 0;
    height: 1px;
    width: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #fff;
    transition: all ease 1s;
}

.footer .wovn-languages .wovn-switch.selected::after {
    opacity: 1;
    width: 100%;
}

.footer #language-select:hover,
.footer .wovn-languages .wovn-switch:hover {
    cursor: pointer;
    color: #c1888b;
}

.footer #language-select #currentLang {
    position: relative;
	display: inline-block;
}

.footer #language-select #currentLang::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-left: 1rem solid transparent;
	border-right: 1rem solid transparent;
	border-bottom: 1rem solid #ffffff;
	bottom: -1rem;
	right: 0;
	left: 0;
	margin: auto;
	/* transition: ease 250ms; */
	opacity: 0;
}

.footer #language-select:hover #language-list,
.footer #language-select.show #language-list {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.footer #language-select #currentLang .wovn-languages .wovn-switch {
    display: none;
}

.footer #language-select #currentLang .wovn-languages .wovn-switch.selected {
    display: block;
}

.footer #language-select #language-list {
	position: absolute;
	top: -1rem;
	width: auto;
    /* max-width: 30rem;
	height: 10rem; */
	margin: auto;
	padding: 1em;
	background: white;
	color: #333333;
	transition: ease 1s;
    opacity: 0;
    pointer-events: none;
}

/* .footer #language-select:hover #language-list {
    display: block;
} */

.footer #language-select #language-list ul.wovn-lang-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
	justify-content: space-between;
    align-items: flex-start;
	height: 100%;
}

.footer #language-select #language-list .wovn-switch.selected {
    color: #c1888b;
    font-weight: bold;
    pointer-events: none;
}

.footer #language-select #language-list .wovn-switch.selected::after {
    background-color: #c1888b;
}

.footer #language-select{
  transition: color .5s;
}
.footer #language-select:hover .langSelector{
  opacity: 1;
  pointer-events: all;
}
.footer #currentLang .lang-list li{
  display: none;
}
.footer #currentLang .lang-list li[data-stt-active]{
  display: block;
  font-size: 1.4rem;
  line-height: 1.71;
  letter-spacing: 0.08em;
  position: relative;
}
.footer #currentLang .lang-list li[data-stt-active]::after{
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
  transition: all ease 1s;
}
.footer .langSelector{
  position: absolute;
  top: -1rem;
  width: auto;
  margin: auto;
  padding: 1em;
  background: #fff;
  color: #333;
  transition: opacity ease 1s;
  opacity: 0;
  pointer-events: none;
}
.footer .langSelector .lang-list{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}
.footer .langSelector .lang-list li{
  display: block;
  font-size: 1.4rem;
  line-height: 1.71;
  letter-spacing: 0.08em;
  position: relative;
  transition: color .5s;
}
.footer .langSelector .lang-list li:not(:last-of-type){
  margin-bottom: 0.5rem;
}
.footer .langSelector .lang-list li:hover{
  cursor: pointer;
  color: #c1888b;
}
.footer .langSelector .lang-list li[data-stt-active]{
  color: #c1888b;
  font-weight: bold;
  position: relative;
}
.footer .langSelector .lang-list li[data-stt-active]::after{
  background-color: #c1888b;
  content: "";
  opacity: 1;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all ease 1s;
}

@media screen and (min-width: 768px) {
    .footer #language-select #language-list ul.wovn-lang-list > *:not(:last-of-type) {
        margin-bottom: 0.5rem;
    }
}



/*==============================================================================================
 SP
==============================================================================================*/
@media screen and (max-width: 767px) {

    /*--------------------------------------
 ヘッダー
--------------------------------------*/

.pc_only {
    display: none !important;
}

.sp_only {
    display: block;
}

/*ヘッダー*/
#Header .head_logo {
    width: calc(300 * (100vw / 750));
    height: calc(56 * (100vw / 750));
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
}

#Header .head_inner {
    width: 100%;
    max-width: 100%;
    padding: 0 calc(35 * (100vw / 750));
    height: calc(100 * (100vw / 750));
}

/*帯バナー */
#Header .head_news li {
    font-size: calc(22 * (100vw / 750));
}

#Header .head_news li a {
    height: calc(70 * (100vw / 750));
    line-height: calc(70 * (100vw / 750));
}


/*ナビ*/
#Header ul.head_user {
    width: initial;
}
#Header ul.head_user li.head_searchBox {
    width: calc(40 * (100vw / 750));
    height: calc(40 * (100vw / 750));
    position: absolute;
    left: calc(110 * (100vw / 750));
}
#Header ul.head_user li.head_favorite {
    width: calc(40 * (100vw / 750));
    height: calc(36 * (100vw / 750));
    position: absolute;
    right: calc(110 * (100vw / 750));
}
#Header ul.head_user li.head_cart {
    width: calc(38 * (100vw / 750));
    height: calc(37 * (100vw / 750));
}
#Header ul.head_user li .cart_num {
    width: calc(40 * (100vw / 750));
    height: calc(40 * (100vw / 750));
    top: calc(-15 * (100vw / 750));
    right: calc(-20 * (100vw / 750));
    font-size: calc(24 * (100vw / 750));
}

/*キーワード検索*/
#HeadSearch .HeadSearch_close {
    width: calc(28 * (100vw / 750));
    height: calc(28 * (100vw / 750));
    right: calc(30 * (100vw / 750));
    top: calc(40 * (100vw / 750));
}
#HeadSearch .wrapSearch .head_searchBox_ttl {
    font-size: calc(50 * (100vw / 750));
    letter-spacing: 0.08em;
    margin-bottom: calc(40 * (100vw / 750));
}
#HeadSearch .wrapSearch {
    width: calc(680 * (100vw / 750));
    height: calc(537 * (100vw / 750));
    padding: calc(75 * (100vw / 750)) calc(30 * (100vw / 750)) calc(100 * (100vw / 750));
}
.head_searchBox_textBox .btnSearch {
    width: calc(38 * (100vw / 750));
    height: calc(38 * (100vw / 750));
    top: calc(30 * (100vw / 750));
    left: calc(25 * (100vw / 750));
}
#HeadSearch .wrapSearch input[type="text"] {
    height: calc(100 * (100vw / 750));
    padding: 0 calc(30 * (100vw / 750)) 0 calc(90 * (100vw / 750));
    font-size: calc(28 * (100vw / 750));
}

#HeadSearch .wrapSearch input[type="text"]::placeholder {
    font-size: calc(28 * (100vw / 750));
}

#HeadSearch .head_searchBox_keyword{
    margin-top: calc(40 * (100vw / 750));
    flex-wrap: wrap;
}
#HeadSearch .head_searchBox_keyword li {
    line-height: calc(64 * (100vw / 750));
    font-size: calc(24 * (100vw / 750));
    padding: 0 calc(24 * (100vw / 750));
    margin: 0 calc(8 * (100vw / 750)) calc(16 * (100vw / 750));
}
#HeadSearch .head_searchBox_keyword li a{
    letter-spacing: 0.08em;
}


/*--------------------------------------
 追従ヘッダー
--------------------------------------*/

#Header #headerFixed .head_inner{
    height: calc(100 * (100vw / 750));
}
#Header #headerFixed .head_logo {
    width: calc(280 * (100vw / 750));
    height: calc(52 * (100vw / 750));
}


/*--------------------------------------
 ハンバーガーメニュー
--------------------------------------*/
#Header .hamburger {
    position: relative;
    width: calc(32 * (100vw / 750));
    height: calc(34 * (100vw / 750));
    cursor: pointer;
}

#Header .hamburger span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 100%;
    background-color: #333;
    transition: transform .5s;
}

#Header .hamburger .line1 {
    top: 0;
    transition: all .5s;
}

#Header .hamburger .line2 {
    top: 50%;
    transform: translateX(-50%);
}

#Header .hamburger .line3 {
    top: 100%;
}

#Header .hamburger_wrap .hamburger_inner {
    width: 100%;
    position: fixed;
    padding: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    transition: all .4s;
    opacity: 0;
    left: -100%;
    pointer-events: none;
    z-index: 100;
}
#Header .hamburger_wrap .hamburger_inner_wrap {
    background: #fff;
    width: calc(650 * (100vw / 750));
    position: absolute;
}


#glnavBg {
    content: '';
    display: block;
    width: 100vw;
    height: 100vh;
    background: rgba(51, 51, 51, .63);
    box-shadow: inset 0 .1rem .2rem 0 rgb(0 0 0 / 10%);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 888;
    opacity: 0;
    webkit-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
    -webkit-transform: translate(-200vw, 0);
    -moz-transform: translate(-200vw, 0);
    -o-transform: translate(-200vw, 0);
    transform: translate(-200vw, 0);
}

#glnavBg.active {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}

/*ハンバーガーメニュー中身*/
#Header .ham_inner_wrap {
    width: 100%;
    max-width: 100%;
    margin: calc(60 * (100vw / 750)) 0 calc(280 * (100vw / 750));
    padding: 0 calc(30 * (100vw / 750));
    display: block;
}
#Header .hamburger_wrap.open .hamburger{
    width: calc(35 * (100vw / 750));
    height: calc(35 * (100vw / 750));
    top: calc(40 * (100vw / 750));
    right: calc(30 * (100vw / 750));
    position: absolute;
    z-index: 101;
}
#Header .hamburger_wrap.open .line1 {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    background: #fff;
    width: 120%;
}
#Header .hamburger_wrap.open .line2 {
    width: 0;
}
#Header .hamburger_wrap.open .line3 {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    background: #fff;
    width: 120%;
}
#Header .hamburger_wrap.open .hamburger_inner {
    pointer-events: initial;
    opacity: 1;
    left: 0;
    height: 100vh;
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

/*ハンバーガーバナー*/
.hamburger_banner{
    background: #C1888B;
    color: #FFF;
    font-size: calc(28 * (100vw / 750));
}
.hamburger_banner a{
    display: flex;
    align-items: center;
    height: calc(100 * (100vw / 750));
    padding: 0 calc(35* (100vw / 750));
    justify-content: space-between;
}

.hamburger_banner a span{
    width: calc(45* (100vw / 750));
    height: calc(43* (100vw / 750));
}
.hamburger_banner a span.arrow{
    background: unset;
    width: calc(12* (100vw / 750));
    height: calc(23* (100vw / 750));
    background-image: url(../Contents/ImagesPkg/common//arrow_white.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

/*ハンバーガーナビ*/
.hamburger_nav{
    display: flex;
    margin: calc(20* (100vw / 750)) auto;
}
.hamburger_nav li{
    width: 33%;
    position: relative;
}
.hamburger_nav li:not(:last-child)::after {
    content: "";
    width: 1px;
    height: calc(80* (100vw / 750));
    background: #EFEFEF;
    display: block;
    position: absolute;
    right: 0;
    top: calc(15* (100vw / 750));
}
.hamburger_nav li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: calc(110* (100vw / 750));
    justify-content: center;
}
.hamburger_nav li a span{
    display: block;
}
.hamburger_nav li:nth-child(1) a span{
    width: calc(39* (100vw / 750));
    height: calc(40* (100vw / 750));
}
.hamburger_nav li:nth-child(2) a span{
    width: calc(45* (100vw / 750));
    height: calc(39* (100vw / 750));
}
.hamburger_nav li:nth-child(3) a span{
    width: calc(44* (100vw / 750));
    height: calc(44* (100vw / 750));
}
.hamburger_nav li a p{
    font-size: calc(26* (100vw / 750));
    margin-top: calc(15* (100vw / 750));
}

/*カテゴリー*/
.hamburger_linkWrap{
    border-bottom: 1px solid #EEE;
    margin-bottom: calc(50* (100vw / 750));
}
#Header ul.head_link > li {
    height: inherit !important;
    line-height: inherit !important;
}
#Header ul.head_link > li > .menu_title {
    display: block;
    background: #F7F7F7;
    height: calc(110* (100vw / 750));
    line-height: calc(110* (100vw / 750));
    padding: 0 calc(35* (100vw / 750));
}
#Header ul.head_link > li.newarrival > a{
    background: #fff;
    border-top: 1px solid #EEE;
    position: relative;
}
#Header ul.head_link > li.newarrival > a .arrow {
    background-image: url(../Contents/ImagesPkg/common//arrow_black.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: calc(42* (100vw / 750));
    top: calc(45* (100vw / 750));
    width: calc(11* (100vw / 750));
    height: calc(21* (100vw / 750));
}
#Header ul.head_link {
    width: 100%;
    display: block;
    font-size: calc(44* (100vw / 750));
    letter-spacing: 0.08em;
}
#Header .head_links_dropdown .sub-menu {
    display: block;
    position: relative;
    top: inherit;
    left: inherit;
    width: 100%;
    padding: calc(30* (100vw / 750)) calc(35* (100vw / 750));
    background: #fff;
    color: #333;
    z-index: 100;
}
#Header .head_links_dropdown .sub-menu .menu-inner {
    width: 100%;
}
#Header .head_links_dropdown .sub-menu .menu-inner ul {
    display: block;
}
#Header .head_links_dropdown .sub-menu .menu-inner ul li{
    width: 100%!important;
}
#Header .head_links_dropdown .sub-menu .menu-inner ul li .head_category_ttl {
    font-size: calc(30* (100vw / 750));
    line-height: calc(80* (100vw / 750));
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}
#Header .head_links_dropdown .sub-menu .menu-inner ul li .head_category_ttl .arrow {
    background-image: url(../Contents/ImagesPkg/common//arrow_black.svg);
    right: calc(7* (100vw / 750));
    top: calc(30* (100vw / 750));
    width: calc(11* (100vw / 750));
    height: calc(21* (100vw / 750));
}
#Header .head_links_dropdown.brand .sub-menu .menu-inner ul li .head_category_ttl .arrow,
#Header .head_links_dropdown.service .sub-menu .menu-inner ul li .head_category_ttl .arrow,
#Header .head_links_dropdown.support .sub-menu .menu-inner ul li .head_category_ttl .arrow{
    display: none;
}
#Header .head_links_dropdown .sub-menu .menu-inner ul li .head_category_ttl.dropdown .arrow {
    background-image: none;
    right: 0;
    top: calc(30* (100vw / 750));
    width: calc(20* (100vw / 750));
    height: calc(20* (100vw / 750));
    display: block;
}
#Header .head_links_dropdown .sub-menu .menu-inner ul li .head_category_ttl.dropdown .arrow::after,
#Header .head_links_dropdown .sub-menu .menu-inner ul li .head_category_ttl.dropdown .arrow::before{
    content: "";
    width: 100%;
    height: 1px;
    background: #333333;
    display: block;
    position: absolute;
    top: 50%;
    transition: all .4s;
}
#Header .head_links_dropdown .sub-menu .menu-inner ul li .head_category_ttl.dropdown .arrow::after{
    transform: rotate(90deg);
}
#Header .head_links_dropdown .sub-menu .menu-inner ul li .head_category_ttl.dropdown.open .arrow::before{
    transform: rotate(90deg);
}
#Header .head_links_dropdown .sub-menu .menu-inner ul li .mega_category_list {
    padding-left: calc(35* (100vw / 750));
}
#Header .head_links_dropdown .sub-menu .menu-inner ul li .head_category_ttl.dropdown.open + .mega_category_list {
    display: block;
    padding-left: calc(35* (100vw / 750));
    height: inherit;
}
#Header .head_links_dropdown .sub-menu .menu-inner ul li .mega_category_list a {
    font-size: calc(28* (100vw / 750));
    width: 100%;
    line-height: calc(70* (100vw / 750));
    display: inline-block;
}

/*bottomバナーエリア*/
.hamburger_bottom{
    padding: 0 calc(35* (100vw / 750));
}
.hamburger_bottom li:not(:last-child){
    margin-bottom: calc(20* (100vw / 750));
}
/*SNS*/
.hamburger_sns{
    margin: calc(100* (100vw / 750)) 0;
}
.hamburger_sns ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
.hamburger_sns ul li{
    margin: 0 calc(20* (100vw / 750));
}
.hamburger_sns ul li.sns_insta{
    width: calc(54* (100vw / 750));
    height: calc(54* (100vw / 750));
}
.hamburger_sns ul li.sns_insta{
    width: calc(54* (100vw / 750));
    height: calc(54* (100vw / 750));
}
.hamburger_sns ul li.sns_insta{
    width: calc(54* (100vw / 750));
    height: calc(54* (100vw / 750));
}
.hamburger_sns ul li.sns_insta{
    width: calc(54* (100vw / 750));
    height: calc(54* (100vw / 750));
}
.hamburger_sns ul li.sns_twitter{
    width: calc(55* (100vw / 750));
    height: calc(55* (100vw / 750));
}
.hamburger_sns ul li.sns_facebook{
    width: calc(54* (100vw / 750));
    height: calc(54* (100vw / 750));
}
.hamburger_sns ul li.sns_line{
    width: calc(55* (100vw / 750));
    height: calc(54* (100vw / 750));
}
.hamburger_sns ul li.sns_youtube{
    width: calc(60* (100vw / 750));
    height: calc(48* (100vw / 750));
}

/* Language */
#Header .translator-wrap {
	flex-wrap: wrap;
	margin-right: 0;
	padding: 0 calc(35* (100vw / 750)) calc(40* (100vw / 750));
	padding-top: calc(60* (100vw / 750));
}

#Header .translator-wrap::after {
	content: "";
	width: auto;
	height: 1px;
	top: 0;
	bottom: auto;
	background-color: #eeeeee;
	border: none;
	margin: 0 calc(35* (100vw / 750));
	opacity: 1;
}

#headerFixed .translator-wrap {
    color: initial;
}

#Header .text {
    font-size: calc(36* (100vw / 750));
	line-height: 2;
}

#Header #language-select,
#Header #language-select .wovn-languages .wovn-switch {
    color: inherit;
    font-size: calc(28* (100vw / 750));
	line-height: 2;
}

#Header #language-select {
    position: static;
    width: 100%;
    height: 100%;
    display: block;
    background-color: transparent;
    padding: 0;
	opacity: 1;
	visibility: visible;
}

#Header #language-select .wovn-languages .wovn-switch {
    display: inline-block;
    margin-right: 2em;
	margin-bottom: 0.5em;
}

#Header #language-select .wovn-languages .wovn-switch {
    text-align: left;
}

#Header #language-select .wovn-languages .wovn-switch::after {
    content: "";
    opacity: 0;
    height: 1px;
    width: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #c1888b;
    transition: all ease 1s;
}

#Header #language-select .wovn-languages .wovn-switch.selected {
    display: inline-block;
    color: #c1888b;
}

#Header #language-select .wovn-languages .wovn-switch.selected::after {
    opacity: 1;
    width: 100%;
}
#Header .hamburger_inner #language-select .lang-list{
  display: flex;
  flex-wrap: wrap;
}
#Header .hamburger_inner #language-select .lang-list li{
  display: inline-block;
  margin-right: 2em;
  margin-bottom: 0.5em;
}
#Header .hamburger_inner #language-select .lang-list li[data-stt-active]{
  color: #c1888b;
  font-weight: bold;
  pointer-events: none;
  position: relative;
}
#Header .hamburger_inner #language-select .lang-list li[data-stt-active]::after{
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #c1888b;
  transition: all ease 1s;
}

/*--------------------------------------
フッター
--------------------------------------*/

#Foot {
   padding-top: calc(130 * (100vw / 750));
}
/*footer_banner*/
.footer_banner {
    border-top: 2px solid #EFEFEF;
    padding: calc(80 * (100vw / 750)) 0;
}
.footer_banner ul{
    display: block;
    width: calc(680 * (100vw / 750));
}
.footer_banner ul li{
    width: 100%;
}
.footer_banner ul li:not(:last-child){
    margin-bottom: calc(20 * (100vw / 750));
}
/*footer_links*/
.footer_links .footer_links_wrap {
    display: block;
    width: 100%;
    padding: calc(80 * (100vw / 750)) calc(35 * (100vw / 750)) calc(100 * (100vw / 750));
}
.footer_links .footer_links_wrap .category {
    width: 100%;
    padding-bottom: calc(35 * (100vw / 750));
    margin-bottom: calc(60 * (100vw / 750));
    border-bottom: 1px solid #CCC;
}

.footer_links .footer_links_wrap .brand{
    width: 100%;
}
.foot_category_ttl {
    font-size: calc(86 * (100vw / 750));
    letter-spacing: 0.1em;
    margin-bottom: calc(10 * (100vw / 750));
}
.footer_links .footer_links_wrap .category ul{
    display: block;
}
.footer_links .foot_category_sub {
    font-size: calc(44 * (100vw / 750));
    line-height: calc(90 * (100vw / 750));
}
.footer_links .brand .foot_category_sub {
    margin-bottom: 0;
}

.footer_links .foot_category_sub::before {
    width: calc(30 * (100vw / 750));
    margin-right: calc(20 * (100vw / 750));
}
.footer_links .category ul ul.foot_category_list {
    font-size: calc(28 * (100vw / 750));
    line-height: calc(70 * (100vw / 750));
    height: calc(500 * (100vw / 750));
}
.footer_links .category ul ul.foot_category_list a {
    margin-left: calc(50 * (100vw / 750));
    letter-spacing: 0.1em;
}
.footer_links .footer_links_wrap .brand li{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: calc(180 * (100vw / 750));
}


/*footer_bottom*/
.footer_bottom{
    flex-direction: column-reverse;
}
.footer_bottom_ttl {
    font-size: calc(50 * (100vw / 750));
    margin-bottom: 0;
    position: relative;
}

/*footer_guide_wrap*/
.footer_guide_wrap_inner{
    width: calc(710 * (100vw / 750));
    margin: calc(45 * (100vw / 750)) auto 0;
}
.footer_guide_links {
    display: block;
    margin-bottom: calc(100 * (100vw / 750));
}
.footer_guide_links > div {
    margin-right: 0;
    line-height: calc(120 * (100vw / 750));
    border-bottom: 1px solid #fff;
}
.footer_guide_links > div ul {
    display: none;
    transition: all .4s;
}
.footer_guide_links .footer_bottom_ttl.open + ul {
    display: block;
    padding-bottom: calc(50 * (100vw / 750));
}
.foot_guide_sub {
    font-size: calc(26 * (100vw / 750));
    line-height: calc(55 * (100vw / 750));
}

.footer_guide_links .footer_bottom_ttl .arrow {
    background-image: none;
    right: calc(25* (100vw / 750));
    top: calc(45* (100vw / 750));
    width: calc(30* (100vw / 750));
    height: calc(30* (100vw / 750));
    display: block;
    position: absolute;
}
.footer_guide_links .footer_bottom_ttl .arrow::after,
.footer_guide_links .footer_bottom_ttl .arrow::before {
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    display: block;
    position: absolute;
    top: 50%;
    transition: all .4s;
}
.footer_guide_links .footer_bottom_ttl .arrow::after {
    transform: rotate(90deg);
}
.footer_guide_links .footer_bottom_ttl.open .arrow::after {
    transform: rotate(180deg);
}

/* Language */
.footer .translator-wrap.flex {
    justify-content: center;
	margin-bottom: calc(100* (100vw / 750));
}

.footer #language-select #language-list {
    max-width: calc(560* (100vw / 750));
	height: calc(200* (100vw / 750));
    top: 3.5rem;
    right: 0;
    left: 0;
	padding: 2em 3em;
}

.footer #language-select #currentLang::after {
	bottom: -1.5rem;
}

.footer #language-select:hover #currentLang::after,
.footer #language-select.show #currentLang::after {
    opacity: 1;
}

/*footer_sns*/
.footer_sns{
    justify-content: center;
    margin-bottom: calc(100* (100vw / 750));
}
.footer_sns li{
    margin: 0 calc(20* (100vw / 750));
}
.footer_sns li.sns_insta {
    width: calc(54* (100vw / 750));
    height: calc(54* (100vw / 750));
}
.footer_sns li.sns_twitter{
    width: calc(55* (100vw / 750));
    height: calc(55* (100vw / 750));
}
.footer_sns li.sns_facebook{
    width: calc(54* (100vw / 750));
    height: calc(54* (100vw / 750));
}
.footer_sns li.sns_line{
    width: calc(55* (100vw / 750));
    height: calc(54* (100vw / 750));
}
.footer_sns li.sns_youtube{
    width: calc(60* (100vw / 750));
    height: calc(47* (100vw / 750));
}
/*copyright*/
.footer_bottom .copyright{
    font-size: calc(22* (100vw / 750));
    margin-bottom: calc(100* (100vw / 750));
    text-align: center;
}

/*footer_calender_wrap*/
.footer_calender_wrap_inner {
    width: calc(710 * (100vw / 750));
    margin: calc(100 * (100vw / 750)) auto;
}
.footer_calender_wrap_inner .footer_bottom_ttl{
    margin-bottom: calc(45 * (100vw / 750));
    text-align: center;
}
.footer_calender_wrap::after {
    content: none;
}


}