@charset "EUC-JP";
/* CSS Document */
/* -----------------------------------
 2022.07.26 update
 T.Uchida

----------------------------------- */

/*****************************************************

	システム

*****************************************************/
html {
  font-size: 62.5%;
}
body {
  font-family: 'Noto Sans JP', '游ゴシック体', 'YuGothic', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'メイリオ', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
}

@media all and (min-width: 769px) { body { font-size: 1.4rem; line-height: 1.8; /*letter-spacing: 0.12rem;*/ } }/*pc表示時*/
@media all and (max-width: 768px) { body { font-size: 1.4rem; line-height: 1.6; /*letter-spacing: 0.12rem;*/ } }/*sp表示時*/

.hide { display: none !important; }
@media all and (min-width: 769px) { .sp { display: none !important; } }/*sp時に表示時*/
@media all and (max-width: 768px) { .pc { display: none !important; } }/*pc時に表示時*/

.gothic_txt {
  font-family: '游ゴシック体', 'YuGothic', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'メイリオ', sans-serif;
  font-weight: 300;
}

@font-face {
  /*フォントの名前*/
  font-family: 'ten-mincho';
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url('../font/ten_mincho.otf') format("opentype");
}
.ten_mincho_txt {
  font-family: 'ten-mincho', serif;
  font-weight: 300;
}

.futura_txt {
  font-family: Futura, 'Century Gothic', 'Lato', sans-serif;
  font-weight: 400;
}
.oswald_txt {
  font-family: 'Oswald', Futura, 'Century Gothic', 'Lato', sans-serif;
  font-weight: 400;
}
.lato_txt {
  font-family: 'Lato', 'メイリオ', sans-serif;
  font-weight: 400;
}

/*テキストカーニング*/
.txt_kerning {
  font-feature-settings: "palt";
}

/*文章の両橋揃え*/
.txt_justify_on {
  word-break: break-all;
  text-align: justify;
  text-justify: inter-ideograph;
}

/*スマホ以外では電話番号リンク無効
--------------------------------------------------------- */
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* サイト設定ここから */

/* PC 表示
--------------------------------------------------------- */
body {
  background: #fff; /*プレビュー用*/
  color: #271B20;
}
a {
  color: #271B20;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.6;
  opacity: 0.8;
}
a:hover img {
  opacity: 0.6;
  opacity: 0.8;
  transition: 0.5s;
}

#base {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.base img {
  width: 100%;
  height: auto;
}

.contents_area {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.sec_style {
  width: 100%;
  margin: 0 auto;
}

.sec_inner01 {
  width: 100%;
  margin: 0 auto;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {


}/*スマホ 表示 end*/
/* サイト設定ここまで */

.blinking {
  -webkit-animation: blink 1.7s ease-in-out infinite alternate;
  -moz-animation: blink 1.7s ease-in-out infinite alternate;
  animation: blink 1.7s ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}


/*メニューのアニメーション*/
@keyframes fade_down_origin {
	0% { opacity:0; transform: translate(0, -100%); }
	100% { opacity:1; transform: translate(0, 0) ; }
}

/*flexboxの中を縦横中央揃え*/
.flex_in_vertical_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*テスト用*/
.test_bg:nth-child(3n) {
  background: #FFC5C6;
}
.test_bg:nth-child(3n+1) {
  background: #C5FAFF;
}
.test_bg:nth-child(3n+2) {
  background: #FBFFC5;
}
/*****************************************************

	各JSパーツ

*****************************************************/
/*ーーーーーーーーーーーーーーーーーーーーーーーーー

	ページトップボタン（to_top.js）

ーーーーーーーーーーーーーーーーーーーーーーーーー*/
.page-top {
  display: none;
  margin: 0;
  padding: 0;
}
.page-top p {
  margin: 0;
  padding: 0;
  position: fixed;
  right: 10px;
  bottom: 20px;
  z-index: 9999;
}
.move-page-top {
  display: block;
  background: none;
  border: 1px solid #fe370d;
  border-radius: 30px;
  width: 44px;
  height: 44px;
  color: #fe370d;
  font-size: 14px;
  line-height: 40px;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  cursor: hand;
}
.move-page-top:hover {
  opacity: 0.7;
  color: #fe370d;
  text-decoration: none;
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　共通パーツ
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* =========================================================

　検索窓　装飾

========================================================= */

/* PC 表示
--------------------------------------------------------- */
/*検索窓 見出し*/
.search_head {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 28px;
  font-feature-settings: "palt";
}
/*検索窓　form部分*/
.search_wrap {
  max-width: 1120px;
  width: 100%;
  font-size: 1.6rem;
  margin: 0 auto 2rem;
    max-width: 900px;
    margin: 0 auto 100px;
}
.search_wrap form {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.search_wrap form .search_window {
  width: calc(100% - 230px);
  height: 75px;
  line-height: 66px;
  position: relative;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #271B20;
}
.search_wrap form .search_btn {
  width: 205px;
  height: 75px;
  line-height: 66px;
  background: #271B20;
  border-radius: 5px;
  font-size: 2.0rem;
  color: #fff;
  text-align: center;
  transition: 0.5s;
}
.search_wrap form .search_btn:hover {
  opacity: 0.7;
}
.icon_search02 {
  letter-spacing: 1em;
  padding: 0 0 0 1em;
}
.search_wrap form input.search_txt {
  width: 100%;
  padding: 0 1em;
  font-size: 1.6rem;
}
.search_wrap form input.icon_search {
  background: url("../images/2x_cmn/icon_search01_2x.png") no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 1em;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*------　検索ボタンなしVer　------*/

.search_wrap.no_btn form .search_window {
  width: 100%;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .search_head {
    font-size: 1.6rem;
    margin-bottom: 17px;
  }
  .search_wrap {
    max-width: 100%;
    width: 100%;
    font-size: 1.5rem;
    margin: 0 auto 20px;
  }
  .search_wrap form {
    width: 100%;
    display: block;
  }
  .search_wrap form .search_window {
    width: 100%;
    height: 47px;
    line-height: 40px;
    border: 1.5px solid #271B20;
    margin-bottom: 17px;
        margin-bottom: 80px;
  }
  .search_wrap form .search_btn {
    width: 205px;
    height: 35px;
    line-height: 30px;
    font-size: 1.6rem;
    margin: 0 auto;
  }
  .icon_search02 {
  }
  .search_wrap form input.search_txt {
    font-size: 1.6rem;
  }
  .search_wrap form input.icon_search {
    width: 22px;
    height: 22px;
  }
  /*------　検索ボタンなしVer　------*/
  .search_wrap.no_btn {
    padding: 0 5.335%;
  }

}/*スマホ 表示 end*/


/* =========================================================

　セクションタイトル　共通

========================================================= */
/* PC 表示
--------------------------------------------------------- */
.sec_title {
  position: relative;
  font-size: 3.4rem;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 30px;
  padding-bottom: 15px;
}
.sec_title::after {
  content: '';
  width: 42px;
  height: 2px;
  background: #ff5d51;
  border-radius: 3px;
  position: absolute;
  bottom: 0;
  left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.title_under_txt {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.556;
  text-align: center;
  margin: 0 auto 60px;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .sec_title {
    font-size: 3.0rem;
    margin: 0 auto 25px;
    padding: 0 5.335% 20px;
  }
  .sec_title::after {
    content: '';
    width: 42px;
    height: 2px;
    background: #ff5d51;
    border-radius: 3px;
    position: absolute;
    bottom: 0;
    left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .title_under_txt {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    line-height: 1.667;
    margin: 0 auto 40px;
    padding: 0 5.335%;
  }
}/*スマホ 表示 end*/


/*ーーーーーーーーーーーーーーーーーーーーーーーーー

	btn01　

ーーーーーーーーーーーーーーーーーーーーーーーーー*/

/* PC 表示
--------------------------------------------------------- */
.btn01 {
  margin: 10px auto;
  width: 478px;
  height: 72px;
}
.btn01 a {
  position: relative;
  width: 478px;/*上の.btn01の数値と合わす*/
  height: 72px;/*上の.btn01の数値と合わす*/
  background: #271b20;
  border-radius: 50px;
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.6s;
}
.btn01 a:hover {
  text-decoration: none;  
  opacity: 0.6;
}
.btn01 span {
  width: 100%;
  text-align: center;
}
.btn01 i {
  position: absolute;
  top: 48%;
  right: 3rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn01 .arrow::before {
  width: 12px;
  height: 12px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
.btn01 {
  margin: 10px auto;
  max-width: 300px;
  width: 100%;
  height: 15.06%;
}
.btn01 a {
  width: 100%;
  height: 0;
  padding-top: 15.06%;
  font-size: 1.3rem;
}
.btn01 span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.btn01 i {
  right: 2rem;
}

.btn01 .arrow::before {
  width: 8px;
  height: 8px;
}

}/*スマホ 表示 end*/



/* =============================

　矢印　▲

============================= */
.left_triangle {
  width: 0;
  height: 0;
  border-top: solid 7px transparent;
  border-right: solid 7px transparent;
  border-bottom: solid 7px transparent;
  border-left: solid 7px #fff;
}
/* =============================

 矢印　くの字
 カラーや大きさは使用するクラスを足して上書きする。
 使う時は２つのクラスを設定
 arrow arrow-left

============================= */
/* PC 表示
--------------------------------------------------------- */
.arrow {
}
.arrow::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #877F7D;
  border-right: solid 2px #877F7D;
}
.arrow.arrow-top::before {
  transform: rotate(-45deg);
}
.arrow.arrow-bottom::before {
  transform: rotate(135deg);
}
.arrow.arrow-left::before {
  transform: rotate(-135deg);
}
.arrow.arrow-right::before {
  transform: rotate(45deg);
}
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {

}/*スマホ 表示 end*/



/*ーーーーーーーーーーーーーーーーーーーーーーーーー

	共通 ビデオ埋め込み

ーーーーーーーーーーーーーーーーーーーーーーーーー*/
.video_wrap {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.video {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
.video iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーー

	共通 クローンパーツ設定

ーーーーーーーーーーーーーーーーーーーーーーーーー*/
.pc_view_navi.sec_search_by_category_clone {
  padding: 100px 0 150px;
}

.sp_view_navi.sec_search_by_category_clone {
  padding: 100px 5.335% 50px;
}

/*ローディング*/
.pc_view_navi .loading_txt {
  width: 100%;
  margin: 5rem auto;
}



/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　ヘッダー
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */


/* ----- トグルボタンの設定　toggle_btn ----- */

/* スマホ表示時
--------------------------------------------------------- */
#nav_toggle,
#close_toggle {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
#nav_toggle {
  display: block;
}
.is_fixed #nav_toggle {
  display: none;
}
#close_toggle {
  display: none;
}
.is_fixed #close_toggle {
  display: block;
}
/* PC表示時
--------------------------------------------------------- */
  .pc_view_navi #nav_toggle,
  .pc_view_navi #close_toggle {
    width: 90px;
    height: 90px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    transition: 0.5s;
  }
  .pc_view_navi #nav_toggle:hover,
  .pc_view_navi #close_toggle:hover {
    opacity: 0.9;
  }

/* ----- メニュー mask 部分 ----- */
#mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  animation: show 1s linear 0s;
  animation-direction: reverse;
}
.open_navi #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 99;
  animation: show 0.5s linear 0s forwards;
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.8;
  }
}

/* ----- メニュー開いている時、コンテンツのスクロール禁止 ----- */
body.is_fixed {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* ----- ページ読み込み時のメニューがCSS適用前に表示されるのを防ぐ ----- */
#header_wrap_origin,
#nav_toggle {
  opacity: 0;
  transition: 1s;
}
#header_wrap_origin.sp_view_navi,
#header_wrap_origin.pc_view_navi,
.sp_view_navi #nav_toggle,
.pc_view_navi #nav_toggle {
  opacity: 1;
}

/* =========================================================

　メインメニュー部分

========================================================= */
#header_wrap_origin {
  width: 100%;
  margin: 0;
  padding: 0;
  position: fixed;
  z-index: 999;
}

/* スマホ表示時
--------------------------------------------------------- */
.header_top {
  width: 100%;
  height: 50px;/*トグルボタンと合わす*/
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 9999;
  background: rgba(255,255,255,0.9);
}
.shop_logo {
  max-width: 194px;
  width: 100%;
  margin-left: 4%;
/*  transition: 1s;*/
}
/* PC表示時
--------------------------------------------------------- */
  .pc_view_navi .header_top {
    width: 100%;
    height: 90px;/*トグルボタンと合わす*/
    justify-content: center;
  }
  .pc_view_navi .shop_logo {
    max-width: 374px;
    margin-left: 0;
  }


/* =============================

　開閉メニュー 枠設定

============================= */
/* スマホ表示時
--------------------------------------------------------- */
#main_menu {
  background: rgba(240,237,225,0.95);
  width: calc(100%);
  height: 100%;
  padding: 40px 5.335% 100px;
  display: block;
  position: fixed;
  top: 50px;/*トグルボタンと合わす*/
  right: -100%;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 999;
  -webkit-overflow-scrolling: touch;
  transition: 220ms ease-in-out;
}
#header_wrap_origin .open_navi #main_menu {
  right: 0;
  /*animation: fade_down_origin 1.7s ease-in-out;*/
}
/* PC表示時
--------------------------------------------------------- */
.pc_view_navi #main_menu {
  padding: 100px 5.335% 280px;
  top: 90px;/*トグルボタンと合わす*/
  transition: 220ms ease-in-out;
}

/* =============================

　キーワード部分

============================= */
/* スマホ表示時
--------------------------------------------------------- */
.keyword_wrap {
  width: 100%;
  margin: 0 auto 35px;
}
.keyword_group {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-left: -7.5px;
}
.keyword_group li {
  background: #ff5e52;
  border-radius: 30px;
  display: inline-block;
  font-size: 1.2rem;
  color: #fff;
  margin: 0 0 10px 7.5px;
  padding: 0.2em 1.5em;
}
.keyword_group li a {
  color: inherit;
  display: block;
}
.keyword_group li p {
  /*white-space: nowrap;*/
}

/* PC表示時
--------------------------------------------------------- */
  .pc_view_navi .keyword_wrap {
    max-width: 1120px;
    margin: 0 auto 96px;
  }
  .pc_view_navi .keyword_group li {

    font-size: 1.6rem;
    transition: 0.5s;
  }
  .pc_view_navi .keyword_group li:hover {
    opacity: 0.5;
  }

/* =============================

　スマホだけ表示 アイコンメニュー部分

============================= */
/* スマホ表示時
--------------------------------------------------------- */
.icon_menu_sp_only {
  width: 100%;
  margin-bottom: 60px;
}
.icon_menu_sp_only ul {
  width: 100%;
  display: flex;
}
.icon_menu_sp_only ul li {
  width: calc(25% - 30px * 3 / 4);
  display: flex;
  margin: 0 15px;
}

/* PC表示時
--------------------------------------------------------- */


/* =============================

　バナー部分

============================= */
/* スマホ表示時
--------------------------------------------------------- */
.search_by_bnr_wrap {
  width: 100%;
  margin: 0 auto 55px; 
}
/*コーナー見出し*/
.search_by_bnr_head {
  width: 100%;
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin: 0 auto 14px;
}
.search_by_bnr_head:after {
  content: "";
  height: 0.75px;
  flex-grow: 1;
  background-color: #877F7D;
  margin-left: 0.5em;
}

/*バナーグループ*/
.search_by_bnr_group {
  margin-bottom: 33px;
}
.bnr_unit {
  width: 100%;
  margin-bottom: 10px;
}
.bnr_unit a {
  width: 100%;
/*  background: #fff;*/
  display: flex;
  align-items: center;
/*
  border: 2px solid #271B20;
  border-radius: 5px;
*/
  overflow: hidden;
}


/* PC表示時
--------------------------------------------------------- */
  .pc_view_navi .search_by_bnr_wrap {
    max-width: 1120px;
    margin: 0 auto 110px; 
  }
	/*コーナー見出し*/
  .pc_view_navi .search_by_bnr_head {
    font-size: 2.8rem;
    margin: 0 auto 30px;
  }
  .pc_view_navi .search_by_bnr_head:after {
    height: 1px;
    background-color: #271B20;
    margin-left: 0.8em;
  }

	/*バナーグループ*/
  .pc_view_navi .search_by_bnr_group {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 90px;
  }
  .pc_view_navi .search_by_bnr_group li {
    width: calc(50% - 23px * 1 / 2);
    margin-right: 23px;
  }
  .pc_view_navi .search_by_bnr_group li:nth-child(2n) {
    margin-right: 0;
  }
  .pc_view_navi .bnr_unit {
    margin-bottom: 23px;
  }



/* =============================

　金額から探す部分

============================= */
/* スマホ表示時
--------------------------------------------------------- */
.search_by_price_wrap {
  width: 100%;
  margin: 0 auto 60px;
}
/*コーナー見出し*/
.search_by_price_head {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: -5px;
}

/**/
.search_by_price_group {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.search_by_price_group li {
  width: calc(50% - 10px * 1 / 2);
  margin-right: 10px;
}
.search_by_price_group li:nth-child(2n) {
  margin-right: 0;
}
.price_unit {
  width: 100%;
  height: 60px;
  border-bottom: 0.5px solid #271B20;
}
.price_unit a {
  position: relative;
  width: 100%;/*上の.price_unitの数値と合わす*/
  height: 60px;/*上の.price_unitの数値と合わす*/
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: 0.6s;
}
.price_unit a:hover {
  text-decoration: none;  
  opacity: 0.6;
}
.price_unit span {
  width: 100%;
  text-align: left;
}
.price_unit i {
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* PC表示時
--------------------------------------------------------- */
  .pc_view_navi .search_by_price_wrap {
    max-width: 1120px;
    margin: 0 auto 130px;
  }
  /*コーナー見出し*/
  .pc_view_navi .search_by_price_head {
    font-size: 2.8rem;
    margin-bottom: -5px;
  }

  /**/
  .pc_view_navi .search_by_price_group li {
    width: calc(33.3333% - 15px * 2 / 3);
    margin-right: 15px;
  }
  .pc_view_navi .search_by_price_group li:nth-child(3n) {
    margin-right: 0;
  }
  .pc_view_navi .price_unit a {
    font-size: 1.8rem;
  }

/* =============================

　カテゴリーメニュー部分

============================= */
/* スマホ表示時
--------------------------------------------------------- */
.search_by_category_wrap {
  width: 100%;
  margin: 0 auto 40px; 
}
/*コーナー見出し*/
.search_by_category_head {
  width: 100%;
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin: 0 auto 14px;
}
.search_by_category_head:after {
  content: "";
  height: 0.75px;
  flex-grow: 1;
  background-color: #877F7D;
  margin-left: 0.5em;
}

/*カテゴリーグループ*/
.search_by_category_group {
  margin-bottom: 33px;
}
.category_unit {
  width: 100%;
  margin-bottom: 10px;
}
.category_unit a {
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  border: 2px solid #271B20;
  border-radius: 5px;
  overflow: hidden;
}
.category_thumb {
  max-width: 131px;
  width: 100%;
  margin-right: 5.335%;
}
.category_name {
  font-size : 1.6rem;
  font-weight: bold;
  /*font-feature-settings: "palt";*/
/*  letter-spacing : 0.2em;*/
  flex: 1;
}

/* PC表示時
--------------------------------------------------------- */
  .pc_view_navi .search_by_category_wrap {
    max-width: 1120px;
    margin: 0 auto 110px; 
  }
  /*コーナー見出し*/
  .pc_view_navi .search_by_category_head {
    font-size: 2.8rem;
    margin: 0 auto 30px;
  }
  .pc_view_navi .search_by_category_head:after {
    height: 1px;
    background-color: #271B20;
    margin-left: 0.8em;
  }

  /*カテゴリーグループ*/
  .pc_view_navi .search_by_category_group {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 90px;
  }
  .pc_view_navi .search_by_category_group li {
    width: calc(33.3333% - 23px * 2 / 3);
    margin-right: 23px;
  }
  .pc_view_navi .search_by_category_group li:nth-child(3n) {
    margin-right: 0;
  }
  .pc_view_navi .category_unit {
    margin-bottom: 23px;
  }
  .pc_view_navi .category_thumb {
    max-width: 168px;
  }
  .pc_view_navi .category_name {
    font-size : 2.0rem;
  }
  
/* =============================

　インフォメーションメニュー部分

============================= */
/* スマホ表示時
--------------------------------------------------------- */
.info_menu_wrap {
  width: 100%;
  margin: 0 auto;
}
.info_menu_group {
  width: 100%;
}
.info_menu_group li {
  width: 100%;
  margin-right: 10px;
}
.info_menu_unit {
  width: 100%;
  height: 47px;
  border-bottom: 1px solid #877F7D;
}
.info_menu_unit a {
  position: relative;
  width: 100%;/*上の.info_menu_unitの数値と合わす*/
  height: 47px;/*上の.info_menu_unitの数値と合わす*/
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: 0.6s;
}
.info_menu_unit a:hover {
  text-decoration: none;  
  opacity: 0.6;
}
.info_menu_unit span {
  width: 100%;
  text-align: left;
}
.info_menu_unit i {
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*矢印設定　上書きカスタム*/
.info_menu_unit .arrow::before {
  width: 8px;
  height: 8px;
}

/* PC表示時
--------------------------------------------------------- */
  .pc_view_navi .info_menu_wrap {
    max-width: 1120px;
  }
  .pc_view_navi .info_menu_group {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .pc_view_navi .info_menu_group li {
    width: calc(50% - 40px * 1 / 2);
    margin-right: 40px;
  }
  .pc_view_navi .info_menu_group li:nth-child(2n) {
    margin-right: 0;
  }
  .pc_view_navi .info_menu_unit {
    width: 100%;
    height: 80px;
  }
  .pc_view_navi .info_menu_unit a {
    width: 100%;/*上の.info_menu_unitの数値と合わす*/
    height: 80px;/*上の.info_menu_unitの数値と合わす*/
    font-size: 2.0rem;
  }
  /*矢印設定　上書きカスタム*/
  .pc_view_navi .info_menu_unit .arrow::before {
    width: 10px;
    height: 10px;
  }

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　フッター上 バナーエリア
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* スマホ表示時
--------------------------------------------------------- */


.sec_footer_bnr {
	padding: 50px 0 110px;
	width: 90%;
	margin: 0 auto;
}

/*バナーグループ*/
.footer_bnr_group {
	margin-bottom: 33px;
}
.footer_bnr_group li {
	width: 100%;
	margin-bottom: 10px;
}


/* PC表示時
--------------------------------------------------------- */
@media all and (min-width: 769px) {
.sec_footer_bnr {
	padding: 0 0 200px;
	width: 100%;
	margin: 0 auto;
}

	/*バナーグループ*/
  .footer_bnr_group {
    width: 100%;
    max-width: 1120px;
    display: flex;
    flex-wrap: wrap;
	align-items: center;
	overflow: hidden;
    margin: 0 auto 23px;
  }
  .footer_bnr_group li {
    width: calc(50% - 23px * 1 / 2);
    margin-right: 23px;
  }
  .footer_bnr_group li:nth-child(2n) {
    margin-right: 0;
  }
}
  
/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　フッター
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
footer {
  width: 100%;
  background: #f1f1f1;
}
.footer_inner {
  max-width: 1330px;
  max-width: 1160px;
  min-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 60px;
}
footer .unit_wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 4rem auto 4rem;
}
footer .unit_wrap a {
  color: inherit;
}
footer .unit_wrap .footer_unit {
  max-width: 282px;
  width: 100%;
  padding: 0;
  font-size: 1.6rem;
  color: #555555;
}
.ac-parent {
  font-size: 2.5rem;
  font-weight: bold;
  color: #271B20;
  margin: 0 0 40px;
}
.ac-child ul {
  margin: -13px 0 0;
}
.ac-child ul li {
	position: relative;
	height: 50px;
	text-align: left;
  padding-left: 20px;
	line-height: 50px;
}
/* 擬似要素で下三角形を作成 */
.ac-child ul li:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 8px;
	height: 8px;
	border-right: 2px solid #555555;
	border-bottom: 2px solid #555555;
	transform: translateY(-50%) rotate(-45deg);
	transition: .3s;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  /*スマホだけ表示部分*/
  .below_footer_wrap {
    width: 100%;
    margin: 0 auto;
    padding: 35px 5.335% 30px;
  }
  .below_footer_wrap .footer_shop_logo {
    max-width: 291px;
    width: 100%;
    margin: 0 auto 30px;
  }
  .below_footer_wrap ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .below_footer_wrap ul li {
    max-width: 75px;
    width: 100%;
  }
  /*スマホだけ表示部分 end*/
  
  .footer_inner {
    max-width: 100%;
    min-width: 100%;
    padding: 0;
  }
  footer .unit_wrap {
    display: block;
    margin: 0 auto 5rem;
    padding: 0 5.335%;
  }
  footer .unit_wrap .footer_unit {
    max-width: 100%;
    width: 100%;
    padding: 10px 0;
  }
  .unit_wrap dl {
    border-bottom: 1px solid #877f7d;
  }
  .unit_wrap dl:first-of-type {
    border-top: 1px solid #877f7d;
  }
  .ac-parent {
    font-size: 1.6rem;
    margin: 0;
    padding: 1rem 0;
    cursor: pointer;
    position: relative;
  }
  .ac-child ul {
    margin: -13px 0 0;
  }
  .ac-child ul li {
    position: relative;
    width: 100%;
    height: 40px;
    text-align: left;
    padding-left: 20px;
    line-height: 40px;
    font-size: 1.4rem;
  }
  /* 擬似要素で下三角形を作成 */
  .ac-child ul li:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border-right: 2px solid #877f7d;
    border-bottom: 2px solid #877f7d;
    transform: translateY(-50%) rotate(-45deg);
    transition: .3s;
  }
  /* 擬似要素で下三角形を作成 */
  .ac-parent:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 45%;
    right: 15px;
    width: 9px;
    height: 9px;
    border-right: 2px solid #877f7d;
    border-bottom: 2px solid #877f7d;
    transform: translateY(-50%) rotate(45deg);
    transition: .3s;
  }
  /* オープン時にopenクラスを付与 */
  .ac-parent.open:after {
    transform: rotate(225deg);
  }
  /* クリックしたら表示される領域 */
  .ac-child {
    display: none;
    padding: 1.5em 1em 1em;
    text-align: center;
  }

}/*スマホ 表示 end*/


/* コピーライト部分 */
/* PC 表示
--------------------------------------------------------- */
footer .copyright_wrap {
  background: #271b20;
  padding: 6rem 0;
}
footer .copyright_wrap .copyright_txt {
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: #fff;
  text-align: center;
}
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  footer .copyright_wrap {
    padding: 4rem 0;
  }
  footer .copyright_wrap .copyright_txt {
    font-size: 1.2rem;
  }
}/*スマホ 表示 end*/


/* 営業日カレンダー設定 */
/* PC 表示
--------------------------------------------------------- */
.calendar_wrap {
  overflow-x: hidden;
  overflow-y: auto;
}
.calendar_wrap iframe {
  max-width: 282px;
  width: 100%;
/*  height: 370px;*/
  height: 320px;
}
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .calendar_wrap {
    overflow-x: hidden;
    overflow-y: auto;
  }
  .calendar_wrap iframe {
    max-width: 282px;
    width: 100%;
    height: 370px;
  }
}/*スマホ 表示 end*/

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　ファーストビュー
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.sec_first_view {
  width: 100%;
  margin: 90px auto 100px;
}
.first_view_wrap {
  /*background-image: url("../images/2x_cmn/key_bg_pc_230927.jpg");にっこり*/
  /*background-image: url("../images/2x_cmn/key_bg_pc_221101.jpg");いちご*/
  /*background-image: url("../images/2x_cmn/key_bg_pc_240501.jpg");母の日*/
  background-image: url("../images/2x_cmn/key_bg_pc_230515.jpg");/*父の日*/
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 0;
  padding-top: 650px;
  margin: 0 auto;
  position: relative;
}
.first_view_img {
  max-width: 509px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*追記*/
.first_view_img_l {
  max-width: 1120px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.first_view_img_l img {
  max-width: 420px;
  width: 100%;
	background: rgba(255,255,255,0.9)  
}





/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .sec_first_view {
    width: 100%;
    margin: 50px auto 34px;
  }
  .first_view_wrap {
    padding-top: 230px;
  }
  .first_view_img {
    max-width: 180px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

/*追記*/
  .first_view_wrap {
    padding-top: 400px;
  }
.first_view_img_l {
  max-width: 280px;
  width: 100%;
}

}/*スマホ 表示 end*/
/* =========================================================

　ファーストビュー下ナビ PC表示のみ

========================================================= */

/* PC 表示
--------------------------------------------------------- */
.fv_under_navi {
  max-width: 1160px;
  min-width: 980px;
  width: 100%;
  margin: 27px auto 0;
}
.fv_under_navi ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fv_under_navi ul li {
  height: 35px;
  font-size : 2.0rem;
  font-weight: bold;
  font-feature-settings: "palt";
}
.fv_under_navi ul li.menu_border {
  width: 1px;
  height: 35px;
  border-right: 1px dashed #666666;
}
#fv_under_btn {
  cursor: pointer;
}
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {


}/*スマホ 表示 end*/


/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　トップスライダー
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.sec_top_slider {
  position: relative;
  margin-bottom: 155px;
      margin-bottom: 65px;
  padding-top: 0;
  padding-bottom: 20px;
}
.sec_top_slider .slider_wrap {
  width: 100%;
  position: relative;
  margin: 4rem auto 30px;
}
.slider01 .slide_inner {
  width: 560px;
  height: auto;
  margin-right: 7px;
  margin-left: 7px;
}
/* ----- slick dots 設定 ----- */
.slick-dots {
  bottom: -50px!important;
}
.slick-dots li button::before {
  font-size: 12px!important;
  color: #221914;
  opacity: 0.2;
}
.slick-dots li.slick-active button::before {
  color: #221914!important;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .sec_top_slider {
    position: relative;
    margin-bottom: 34px;
        margin-bottom: 5px;
    padding-top: 0;
    padding-bottom: 20px;
  }
  .sec_top_slider .slider_wrap {
    width: 100%;
    position: relative;
    margin: 4rem auto 30px;
  }
  .slider01 .slide_inner {
    width: 85vw;
    height: auto;
    margin-right: 8px;
    margin-left: 8px;
  }
  /* ----- slick arrow 設定 ----- */
  .slick-arrow {
    position: absolute;
    width: 30px!important;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
  }
  .prev-arrow {
    left: 2%;
    z-index: 10;
  }
  .next-arrow {
    right: 2%;
  }
}/*スマホ 表示 end*/

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　スライダー下バナー
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* スマホ表示
--------------------------------------------------------- */
.sec_upperside_bnr {
	padding: 25px 0 80px;
	width: 90%;
	margin: 0 auto;
}

/*バナーグループ*/
.upperside_bnr_group {
	margin-bottom: 33px;
}
.upperside_bnr_group li {
	width: 100%;
	margin-bottom: 19px;
}

/* PC表示
--------------------------------------------------------- */
@media all and (min-width: 769px) {
.sec_upperside_bnr {
	padding: 0 0 100px;
	width: 100%;
	margin: 0 auto;
}

	/*バナーグループ*/
  .upperside_bnr_group {
    width: 100%;
    max-width: 1120px;
    display: flex;
    flex-wrap: wrap;
	align-items: center;
	overflow: hidden;
    margin: 0 auto;
  }
  .upperside_bnr_group li {
    width: calc(50% - 23px * 1 / 2);
    margin-right: 23px;
  	margin-bottom: 25px;
  }
  .upperside_bnr_group li:nth-child(2n) {
    margin-right: 0;
  }
}

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　ニュース　PCのみ
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.news_wrap {
  max-width: 900px;
  width: 100%;
  margin: 0 auto 30px;
}
.news_txt_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #271b20;
  padding: 20px 0;
}
.news_date {
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 0.2em;
	  margin-right: 0.5em;
}
.news_title {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {

	.news_wrap {
	  width: 90%;
	}
	.news_date {
	  font-size: 1.3rem;
	}
	.news_title {
	  font-size: 1.5rem;
	  letter-spacing: 0.1em;
	}

}/*スマホ 表示 end*/


/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　栃木の今が旬
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
.sec_season {
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;
}
/*上部分*/
.season_category_wrap {
  width: 1120px;
  border-bottom: 1px dotted #000;
  margin: 0 auto 55px;
}

.season_category_col3 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 20px;
}
.season_category_col3 li {
  width: calc(33.333% - 26px * 2 / 3);
  margin-right: 26px;
  margin-bottom: 35px;
}
.season_category_col3 li:nth-child(3n) {
  margin-right: 0;
}
.season_category_col3 li img {
	border-radius: 10px;
}
/*下部分*/
.season_slider_box {
  width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.season_slider_title {
  width: 200px;
}

/*スライダー設定*/
.sec_season {
  position: relative;
}
.sec_season .slider_wrap {
  width: 864px;
  position: relative;
  margin: 0 0 0 26px;
}
.slider_season .slide_inner {
  width: 152px;
  height: auto;
  margin-right: 26px;
}
/* ----- slick arrow 設定 ----- */
.slider_season .slick-arrow {
  position: absolute;
  width: 48px!important;
  top: 0;
  bottom: 0;
  margin: 52px auto;
  cursor: pointer;
}
.slider_season .prev-arrow {
  left: -2.5%;
  z-index: 10;
}
.slider_season .next-arrow {
  right: -2.5%;
}

/*スライダーの中身設定*/
.season_unit {
  width: 152px;
}
.season_unit .season_img_wrap {
  width: 152px;
  margin-bottom: 10px;
}
.season_unit .season_detail {
  font-size : 1.4rem;
  line-height : 1.429;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .sec_season {
    width: 100%;
    margin: 0 auto;
    padding: 70px 0 20px;
  }
  /*上部分*/
  .season_category_wrap {
    width: 100%;
    border-bottom: none;
    margin: 0 auto 1px;
    padding: 0 5.335%;
  }

  .season_category_col3 {
    width: 100%;
    display: block;
    padding: 0 0 20px;
  }
  .season_category_col3 li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 19px;
  }
  .season_category_col3 li:nth-child(n + 13) {/*10番目から非表示*/
    display: none;
  }
  /*下部分*/
  .season_slider_box {
    width: 100%;
    margin: 0 auto;
    display: block;
  }
  .season_slider_title {
    width: 200px;
    margin: 0 auto 30px;
  }

  /*スライダー設定*/
  .sec_season {
    position: relative;
  }
  .sec_season .slider_wrap {
    width: 100%;
    position: relative;
    margin: 0;
  }
  .slider_season .slide_inner {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin: 0 13px;
  }
  /* ----- slick arrow 設定 ----- */
  .slider_season .slick-arrow {
    position: absolute;
    width: 30px!important;
    top: 0;
    bottom: 0;
    margin: 85px auto;
    cursor: pointer;
  }
  .slider_season .prev-arrow {
    left: 5.335%;
    z-index: 10;
  }
  .slider_season .next-arrow {
    right: 5.335%;
  }

  /*スライダーの中身設定*/
  .season_unit {
    width: 100%;
  }
  .season_unit .season_img_wrap {
    width: 100%;
    margin-bottom: 13px;
  }
  .season_unit .season_detail {
    font-size : 1.2rem;
    line-height : 1.333;
  }
}/*スマホ 表示 end*/

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　もんみや週刊ランキング
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* PC 表示
--------------------------------------------------------- */
/**/
.sec_ranking {
  position: relative;
  padding: 100px 0;
}
.sec_ranking .slider_wrap {
  width: 1120px;
  position: relative;
  margin: 4rem auto 30px;
}
.slider_ranking .slide_inner {
  width: 1120px;
    width: 343px;
    margin: 0 15px;
  height: auto;
}

/**/
.ranking_unit {
  width: 1120px;
    width: 343px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.ranking_unit .ranking_img_wrap {
/*  width: 690px;*/
}
.ranking_contents_wrap {
  width: 390px;
    width: 343px;
}
.rank_head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  /*align-items: flex-start;*/
    align-items: center;
  position: relative;
  margin-bottom: 22px;
}
.rank_mark {
  /*width: 96px;
  height: 96px;*/
    width: 80px;
    height: 80px;
  /*border: 3px solid #000;*/
    border: 2px solid #000;
    border-radius: 0.25em;
  /*font-size: 2.6rem;*/
    font-size: 2rem;
  font-feature-settings: "palt";
  letter-spacing: -0.01em;
  margin-right: 11px;
}
.rank_title {
  width: 283px;
/*  color: #000;*/
/*  font-size: 4.0rem;*/
/*  font-size: 3.4rem;*/
  font-size: 2.25rem;
  font-weight: bold;
  line-height : 1.4;
/*  letter-spacing : 0.1em;*/
  transform: translate(0, -8px);
  margin: 0.5em 0 0 0;
}
.rank_detail {
/*  border-top: 1px solid #000;*/
/*  border-bottom: 1px solid #000;*/
  font-size: 1.4rem;
/*  line-height: 2.286;*/
  line-height: 2.1;
  letter-spacing: 0em;
  padding: 18px 0 0 0;
  margin-bottom: 22px;
      margin-bottom: 0;
}
.rank_buy_area {
  position: relative;
  width: 100%;
  height: auto;
}
.rank_buy_area .img_wrap {
/*  width: 100%;
  height: 0;
  padding-top: 57.6923%; aspect-ratioがiOS効かなかった場合*/
  width: 100%;
  height: auto;
  /*aspect-ratio: 26 / 15;*/
    aspect-ratio: 1 / 1;
  overflow: hidden;
    border-radius: 0.5em;
}
.rank_buy_area .img_wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.buy_btn {
  display: block;
  width: 158px;
  position: absolute;
  top: 0;
  right: 0;
}
/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  /*ランキングスライダー設定*/
  .sec_ranking {
    padding: 70px 5.335% 20px;
      padding: 70px 4.335% 20px;
  }
  .sec_ranking .slider_wrap {
    width: 100%;
    margin: 4rem auto 30px;
  }
  .slider_ranking .slide_inner {
    width: 100%;
      margin: 0;
      padding: 0 5px;
  }

  /*ランキングスライダーの中身*/
  .ranking_unit {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
  .ranking_unit .ranking_img_wrap {
    width: 100%;
    margin-bottom: 30px;
  }
  .ranking_contents_wrap {
    width: 100%;
  }
  .rank_head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    /*align-items: flex-start;*/
    position: relative;
    margin-bottom: 20px;
  }
  .rank_mark {
    width: 81px;
    height: 81px;
      width: 70px;
      height: 70px;
    font-size: 1.9rem;
    letter-spacing: -0.01em;
    margin-right: 11px;
  }
  .rank_title {
    width: 100%;
/*    font-size: 3.5rem;*/
    font-size: 2.25rem;
/*    line-height : 1.243;*/
    line-height : 1.4;
    letter-spacing : 0.05em;
    transform: translate(0, -6px);
    flex: 1;
    margin: 0 0 0 0;
}
  .rank_detail {
    font-size: 1.3rem;
    line-height: 2;
    letter-spacing: 0em;
    padding: 18px 0 0 0;
    margin-bottom: 20px;
      margin-bottom: 0;
  }
  .buy_btn {
    width: 132.5px;
  }
}/*スマホ 表示 end*/

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　セクション　新商品コーナー
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */

/* PC 表示
--------------------------------------------------------- */
.sec_new_item {
  padding: 100px 0;
}
.new_item_wrap {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto 60px;
}

.new_item_box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.new_item_box li {
  width: calc(25% - 18px * 3 / 4);
  margin-right: 18px;
  margin-bottom: 50px;
}
.new_item_box li:nth-child(4n) {
  margin-right: 0;
}
.new_item_unit {
  width: 100%;
}
.new_item_unit .new_item_img_wrap {
  width: 100%;
  margin-bottom: 13px;
}
.season_unit .season_detail {
  font-size : 1.4rem;
  line-height : 1.429;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .sec_new_item {
    padding: 100px 5.335% 0;
  }
  .new_item_wrap {
    max-width: 100%;
    width: 100%;
    margin: 0 auto 26px;
  }

  .new_item_box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .new_item_box li {
    width: calc(50% - 13px * 1 / 2);
    margin-right: 13px;
    margin-bottom: 28px;
  }
  .new_item_box li:nth-child(2n) {
    margin-right: 0;
  }
  .new_item_box li:nth-child(4n) {
    margin-right: 0;
  }
  .new_item_box li:nth-child(n + 29) { /*新着アイテム表示数*/
    display: none;
  }
  .new_item_unit {
    width: 100%;
  }
  .new_item_unit .new_item_img_wrap {
    width: 100%;
    margin-bottom: 11px;
  }
  .season_unit .season_detail {
    font-size : 1.2rem;
    line-height : 1.333;
  }

}/*スマホ 表示 end*/


/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　セクション　HOT TOPICS
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
/* =========================================================

　全体設定

========================================================= */
/* PC 表示
--------------------------------------------------------- */
.sec_hot_topics {
  background: #fbf2de;
  position: relative;
  padding-top: 180px;
  padding-bottom: 180px;
}
.sec_hot_topics .slider_wrap {
  width: 100%;
  position: relative;
  margin: 4rem auto 60px;
}
.slider_topics .slide_inner {
  width: 360px;
  height: auto;
  margin-right: 9px;
  margin-left: 9px;
}
/* ----- slick arrow 設定 ----- */
.slider_topics .slick-arrow {
  position: absolute;
  width: 48px!important;
  top: -130px;
  bottom: 0;
  margin: auto;
  cursor: pointer;
}
.slider_topics .prev-arrow {
  left: 2%;
  z-index: 10;
}
.slider_topics .next-arrow {
  right: 2%;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .sec_hot_topics {
    background: #fbf2de;
    position: relative;
    padding-top: 76px;
    padding-bottom: 76px;
  }
  .sec_hot_topics .slider_wrap {
    width: 100%;
    position: relative;
    margin: 4rem auto 50px;
  }
  .slider_topics .slide_inner {
    width: 85vw;
    height: auto;
    margin-right: 8px;
    margin-left: 8px;
  }
  /* ----- slick arrow 設定 ----- */
  .slider_topics .slick-arrow {
    position: absolute;
    width: 30px!important;
    top: -130px;
    bottom: 0;
    margin: auto;
    cursor: pointer;
  }
  .slider_topics .prev-arrow {
    left: 2%;
    z-index: 10;
  }
  .slider_topics .next-arrow {
    right: 2%;
  }
}/*スマホ 表示 end*/
/* =========================================================

　スライダー内設定

========================================================= */

/* PC 表示
--------------------------------------------------------- */
.slider_topics .slide_inner {
}
.slider_topics img {
  margin-bottom: 12px;
}
.slider_topics .slider_topics_detail { 
}
.slider_topics .topics_mark {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.667;
  color: #553C2D;
  background: #fff;
  border: 1px solid #553C2D;
  border-radius: 5px;
  padding: 0.2em 2em;
  margin-bottom: 10px;
}
.slider_topics .topics_title {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.25;
  margin-bottom: 8px;
}
.slider_topics .topics_txt { 
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.429;
}

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {
  .slider_topics .slide_inner {
  }
  .slider_topics img {
    margin-bottom: 12px;
  }
  .slider_topics .slider_topics_detail { 
  }
  .slider_topics .topics_mark {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.667;
    color: #553C2D;
    background: #fff;
    border: 1px solid #553C2D;
    border-radius: 5px;
    padding: 0.2em 2em;
    margin-bottom: 10px;
  }
  .slider_topics .topics_title {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.25;
    margin-bottom: 8px;
  }
  .slider_topics .topics_txt { 
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    line-height: 1.333;
  }
}/*スマホ 表示 end*/





/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　トップコンテンツ部分
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */



/* =========================================================

　

========================================================= */

/* PC 表示
--------------------------------------------------------- */


/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {

}/*スマホ 表示 end*/









/* =========================================================

　

========================================================= */


/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　コンテンツページ部分
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　共通パーツ
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */

/* =========================================================

　

========================================================= */

/* PC 表示
--------------------------------------------------------- */

/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {

}/*スマホ 表示 end*/

/* =========================================================

　

========================================================= */
/* PC 表示
--------------------------------------------------------- */





/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {


}/*スマホ 表示 end*/


/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊
＊
＊　
＊
＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */

/* =========================================================

　

========================================================= */

/* PC 表示
--------------------------------------------------------- */


/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {


}/*スマホ 表示 end*/
/* =========================================================

　

========================================================= */

/* PC 表示
--------------------------------------------------------- */


/* スマホ 表示
--------------------------------------------------------- */
@media all and (max-width: 768px) {

}/*スマホ 表示 end*/












