@charset "utf-8";
/* リセットCSS */
* { box-sizing: border-box; font-size:100%; }
h1, h2, h3, h4, h5, h6, img, p, body { margin: 0; padding: 0; font-weight: normal;}
ul {margin: 0; padding: 0;}
li { list-style: none; }
a { text-decoration: none;}
img { max-width: 100%; }
dl dt dd {margin: 0; padding:0;}

body {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
    color: #000;
    min-width: 1280px;
}


main {
	position:relative;
	z-index:1;
}

.container {
    width: 1280px;
    margin: 0 auto;
}

.asset, .comments, .comments-content, .trackbacks, .archive, .search-form {
	/* margin-bottom: 1.5em; */margin: 0;
}



/*========= ヘッダー ===============*/
#header {
    position: fixed;
    top: 0;
    left: 0;
	z-index:100;
    padding-top: 24px;
    width: 100%;
    height: 80px;
    transition: all .4s;
}

#header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 24px;
    width: 100%;
    background-color: rgba(255,255,255,.8);
    z-index: 100;

}

#header_logo {
    position: relative;
    height: 75px;
}

#header_logo a:hover {
    opacity: .8;
}

.bg_logo::after {
    position: absolute;
    top: -20px;
    left: 50%;
    margin-left: -37px;
    z-index: -1;
    transition:all 0.4s;
    width: 81px;
    height: 75px;
    content: "";
    background-image: url(../img/bg_hlogo1.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

#breadlist {
    padding:5px 0 0  50px;
}

#breadlist a {
	color:#1f1f1f;
}

#breadlist a:hover {
	border-bottom:1px solid #1f1f1f;
}

#breadlist ul{
    display: flex;
}

.header_l {
    display: flex;
    padding: 0 0 0 30px;
    gap: 470px;
}

.hd_nav {
    display: flex;
    gap: 65px;
}

.hd_nav a {
    color: #000;
}

.hd_nav a:hover {
    opacity: .8;
}

/*========= ハンバーガーメニュー ===============*/

.menu--btn {
position: absolute;
top: 0;
right: 0;
display: flex;
height: 82px;
width: 82px;
justify-content: center;
align-items: center;
z-index: 90;
 /* background-color: #9F1822; */
}
.menu--btn:hover {
    cursor: pointer;
}


.menu--btn span,
.menu--btn span:before,
.menu--btn span:after {
content: '';
display: block;
height: 2px;
width: 44px;
border-radius: 2px;
background-color: #000;
position: absolute;
}
.menu--btn span {
transform: translateY(0);
}

.menu--btn span:before {
bottom: 12px;
transition: 0.2s ease-in;
}
.menu--btn span:after {
top: 12px;
transition: 0.2s ease-in;
}

.menu--btn em {
display:  none;
font-size: 12px;
color: #fff;
font-style: normal;
transform: translateY(25px);
letter-spacing: 0.2em;
}

#menu-btn-check {
display: none;
outline:none;
}


#menu-btn-check:checked ~ .menu--btn span {
background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu--btn span::before {
bottom: 0;
transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu--btn span::after {
top: 0;
transform: rotate(-45deg);
}



#menu_window {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 100%;/*leftの値を変更してメニューを画面外へ*/
z-index: 80;
 /* background-color: #fff; */
background: rgba(255,255,255,0.95);
transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);/*アニメーション設定*/
}

#menu-btn-check:checked ~ #menu_window {
    left: 0;
}

#menu_window .mw_cont_wrap  {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mw_cont_inner .h-menu {
    text-align: center;
}

#menu_window .mw_cont_wrap .h-menu li {
    list-style: none;
    line-height: 2;
}
#menu_window .mw_cont_wrap .h-menu li a {
    color: #000;
    display: block;
    padding: 10px 0;
    padding-left: 18px;
    position: relative;
    font-size: 18px;
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
}
#menu_window .mw_cont_wrap .h-menu li a:hover {
    opacity: 0.7;
}
.mw_cont_inner {
    margin-bottom: 0;
    margin-right: 100px;
}
.mw_cont_inner:first-child {
    transform: translateY(20px);
}
.mw_cont_inner:last-child, .mw_cont_inner:nth-last-child(1){
    margin-right: 0;
}
.mw_cont_title {
    text-align: center;
    color: #fff;
    border-bottom: 1px solid #C99F3F;
    padding-bottom: 14px;
    padding-right: 18px;
    font-size: 2rem;
    margin: 0 auto;
}

/*========= メインビジュアル ===============*/

.main_copy {
    /* padding: 18.75vw 0 0 23.96vw; */
    padding-top: 515px;
    width: 100%;
    /* height: 817px; */
    height: 794px;
    background-color: #EDEDE5;
    background-image: url(../img/mainpic.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 1920px auto;
}


@media screen and (max-width:1570px) {
    .main_copy {
        height: 700px;
        background-size: cover;
        padding-top: 485px;
    }
}

.main_copy .container {
    padding-left: 20px;
}

.main_p01 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    padding-bottom: 30px;
    font-weight: bold;
    text-shadow:0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
}

.main_p02 {
    text-shadow:0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
    font-size: 3rem;
    font-weight: bold;
    padding-bottom: 50px;
    line-height: 3rem;;
}

.main_p03 {
    font-size: 1.25rem;
}

.main_mc01 {
    /* text-shadow:0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;*/
    font-size: 40px;
    color: #3A2C1E;
    font-weight: bold;
    line-height: 1.2;
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}
.main_mc02 {
    /* text-shadow:0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff; */
    font-size: 18px;
    color: #3A2C1E;
    line-height: 2;
    letter-spacing: 0.05em;
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
}

/*========= ご挨拶 ===============*/


/*タイトル*/
.title {
    font-size: 26px;
    font-weight: bold;
    color: #592E24;
}

.subtitle {
    font-size: 1rem;
}

.gr_text {
    font-size: 18px;
    line-height: 50.4px;
    padding-top: 70px;
}

.greeting {
    text-align: center;
    padding: 70px 0 100px 0;
    background-image: url(../img/bg_greeting.png);
    background-repeat: no-repeat;
    background-position: center;
}

/*========= 新着情報 ===============*/
.new {
    display: flex;
    gap: 80px;
    padding-left: 120px;
    margin: 0 auto;
    width: 1280px;
}

.new_bg {
    background-image: url(../img/section2_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.new_l {
    padding: 45px 0;
}


/* 変更 */
.new_r {
    font-family: "Hiragino Kaku Gothic ProN",sans-serif;
    padding: 15px 80px 50px 0;
    width: 100%;
}

.new_title a{
	color:#000;
}

.new_title a:hover {
	opacity:.8;
}

.newinfo {
    margin: 0;
}

.new_date {
    font-size: 13px;
    font-weight: bold;
    padding-top: 30px;
}

.new_title {
    padding: 5px 0 15px;
    border-bottom: 1px dotted #000;
    margin: 0;
}

.btn_morenew {
    margin-top: 150px;
}

/*========= おすすめ商品 ===============*/
.recomend {
    padding: 60px 0 100px;
}

.aligncenter {
    text-align: center;
}


.wrapper {
    width: 1100px;
    margin: 0 auto;
}

.btn_morereco {
    text-align: center;
}

/*========= EC-CUBE ===============*/

/* おすすめ商品 */
.ec-shelfRole_wrap {
    background: url(../img/top/ri_bg_i2.png) no-repeat center top/auto 100%;
    padding-bottom: 100px;
  }
  
  .ec-shelfGrid .ec-shelfGrid__item a:hover img {
      opacity: 0.7;
  }
  
  .ec-shelfGrid .ec-shelfGrid__item img {
      border: #999 1px solid;
      margin-bottom: 10px;
  }
  .ec-shelfGrid .ec-shelfGrid__item p {
      font-size: 14px;
      font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
  }
  .ec-shelfGrid .ec-shelfGrid__item .item_name {
      margin: 0 0 0.5em;
      font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
  }

  /*グリッドレイアウト*/
  .ec-shelfGrid {
    display: flex;
    margin-left: 0;
    margin-right: 0;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

.item_price {
    margin: 0;
}

/*９個目以降は非表示*/
.ec-shelfGrid__item:nth-child(n+9) {
    display: none;
  }


  .ec-shelfRole .a_wrap a {
      display: block;
      width: 570px;
      font-size: 16px;
      color: #fff;
      font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
      background: #624F40;
      padding: 20px 0;
      margin: 0 auto;
      text-align: center;
  }
  .ec-shelfRole .a_wrap a:hover {
      text-decoration: none;
      opacity: 0.7;
  }

.ec-shelfRole {
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.4;
    color: #525263;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    max-width: 1130px;
}
@media only screen and (min-width: 768px){
.ec-shelfGrid .ec-shelfGrid__item:nth-child(odd) {
    padding: 0 16px;
}}


@media only screen and (min-width: 768px){
.ec-shelfGrid .ec-shelfGrid__item {
    padding: 0 16px;
    width: 25%;
}}
.ec-shelfGrid .ec-shelfGrid__item {
    margin-bottom: 36px;
}

.ec-shelfGrid a:hover {
    text-decoration: none;
}
.ec-shelfGrid a {
    color: inherit;
    text-decoration: none;
}
a:active, a:hover {
    outline-width: 0;
}

@media only screen and (min-width: 767px){
.ec-shelfGrid .ec-shelfGrid__item a:hover img {
    opacity: 0.7;
}}

@media only screen and (min-width: 767px){
.ec-shelfGrid .ec-shelfGrid__item img {
    border: #999 1px solid;
    margin-bottom: 10px;
}}

.ec-shelfGrid .ec-shelfGrid__item img {
    width: auto;
    max-height: 100%;
}

@media only screen and (min-width: 767px){
.ec-shelfGrid .ec-shelfGrid__item p {
    font-size: 14px;
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
}}
/*========= メディア掲載 ===============*/
.media {
    background-image: url(../img/section4_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    padding: 55px 0;
}



.media_img {
    display: flex;
    justify-content: center;
    margin: 55px 0;
    gap: 30px;
}


.media_item:nth-child(n+5) {
    display: none;
  }

.media_link a {
    color: #000;
}

.media_link a:hover {
    border-bottom: 1px solid #000;
}

.media_link	{
    padding-top: 30px;
    font-size: 14px;
    text-align: center;
}

.media_photo {
	width:250px;
	height:333px;
	display:flex;
	align-items:center;
}


.media_photo a {
	transition:all .4s;
}


.media_photo a:hover {
	filter:brightness(50%);
}

.btn_moremedia {
    text-align: center;
}

/*========= ご来店について ===============*/
.visit {
    display: flex;
    gap: 45px;
    padding: 135px 0;
    position: relative;
}

.visit_img {
    position: absolute;
    z-index: -1;
    top: 140px;
    left: 50%;
    margin-left: -128px;
}

.title_v h2{
    font-size: 26px;
    font-weight: bold;
    color: #592E24;
    writing-mode: vertical-rl;
    padding-left: 120px;
}
.subtitle_v {
    font-size: 1rem;
    padding-bottom: 70px;
}

.visit_p {
    font-size: 1rem;
    line-height: 35.2px;
    background-color: rgba(255,255,255,0.5);
}


.btn_moremap {
    margin-top: 50px;
}

/*========= 地図 ===============*/
.map {
    display: flex;
    gap: 40px;
    padding: 0 0 105px;
}

.map_title {
    font-size: 18px;
    font-weight: bold;
}

.gmap {
    padding-left: 175px;
}

/* 変更 */
.map .access {
    width: 370px;
}

.access_p {
    
    padding-top: 20px;
    font-size: 14px;
}

/*========= バナーリンク ===============*/

.link {
    background-image: url(../img/section4_bg.jpg);
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 90px 0;
}

.link a:hover {
	opacity:.8;
}

/* 変更 */
.link_banner {
    width: 500px;
    height: 170px;
    border: 1px solid #000;
}
.link_banner a {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 24px 0 0;
    position: relative;
}

.btn_link_title_jp, .btn_link_title_en {
    text-shadow:0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
    font-weight: 100;
    color: #000;
}
.btn_link_title_jp {
    font-size: 22px;
    margin-bottom: 10px;
}
.btn_link_title_en {
    font-size: 16px;
}
.btn_link_btn {
    position: absolute;
    bottom: 24px;
    left: 50%;
    margin-left: -123px;
}


.btn_link_blog {
    background: url(../img/btn_blog_bg.png) no-repeat center/cover;
}
.btn_link_store {
    background: url(../img/btn_store_bg.png) no-repeat center/cover;
}


/*========= Instagram ===============*/

.insta {
    padding: 45px 0 70px;
}

.insta_img {
    padding: 45px 0;
}

.fa-instagram {
	font-size:18px;
	padding-right:5px;
}

.btn_moreinsta {
    text-align: center;
}


/*========= 404　===============*/

.notfound {
	padding:100px;
	/* height:80vh; */
}

.notfound h2 {
	font-size:26px;
	color: #592E24;
	margin-bottom:50px;
	font-weight:bold;
}

.notfound_02 {
	line-height:1.7rem;
}

.notfound_02 li {
	list-style-type:square;
	list-style-position:inside;
}


/*========= トップに戻るボタン　===============*/

#btn_top {
	position:fixed;
	bottom:30px;
	right:30px;
	z-index:3;
    display: none;
}

#btn_top a:hover {
	opacity: .8;
}

.btn_morenew a:hover,
.btn_moremedia a:hover,
.btn_morereco a:hover,
.btn_moremap a:hover,
.btn_moreinsta a:hover{
    opacity: .8;
}

/* 変更 */
/* リンクボタンスタイル */
.btn_more {
    background: #624F40;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5px;
}
.btn_more_b {
    width: 495px;
    height: 52px;
    margin: 0 auto;
}
.btn_more span {
    font-size: 15px;
    color: #fff;
    font-weight: 100;
    margin-left: 20px;
}
.btn_more_s span {
    margin-left: 10px;
}

.btn_morenew .btn_more {
    width: 290px;
    height: 45px;
}

.btn_moremap .btn_more {
    width: 100%;
    height: 52px;
}







/*========= フッター　===============*/
footer {
    background-color: #2B1B0B;
}

.footer_content {
    display: flex;
    gap: 300px;
    padding: 60px 0 0 140px;
}

.footer_p {
    color: #fff;
    font-size: 14px;
    
    padding-top: 15px;
}

.footer_sns {
    display: flex;
    padding-top: 25px;
    gap:20px;
}

.footer_r {
    display: flex;
    gap: 135px;
    padding-top: 20px;
}

.footer_nav li {
    padding-top: 15px;
}
.footer_nav a {
    color: #fff;
    font-size: 15px;
    
}

.footer_nav a:hover {
	border-bottom:1px solid #fff;
}


.copy a {
    color: #fff;
    font-family: 'YuGothic',sans-serif;
    font-size: 13px;
}

.copy a:hover {
	opacity:.8;
}

.copy {
    font-family: 'YuGothic',sans-serif;
    text-align: center;
    padding: 20px 0;
    color: #fff;
    font-size: 13px;
}
