@charset "UTF-8";
/* CSS Document */
/*--------------------
01.共通
02.ヘッダー
03.フッター
04.アニメーション
--------------------*/

/*----------
01.共通
----------*/

* {
  box-sizing: border-box;
}

body {
  color: #231815;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  transition: all 0.3s;
}

a:hover {
  text-decoration: none;
  opacity: initial;
}

main {
  display: block;
  background: #f1f0e6;
  padding-top: 80px;
}

.contents_in {
  max-width: 1720px;
  width: 100%;
  margin: 0 auto;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

/* .jost {
  font-family: 'Jost', sans-serif;
} */

.sawarabi_m {
  font-family: "Sawarabi Mincho", serif;
}

/*animate.css動作*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-delay: 0.5s;
}

/*範囲に入ってから動作開始までの遅延時間（秒）*/
.animate_delay {
  animation-delay: 0.5s;
}

.animate_duration {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}

/*inview.js要素の初期表示*/
.iv,
.ivo {
  visibility: hidden;
}

/*hoverアニメーション（拡大）*/
.hover_ptn01 {
  overflow: hidden;
}

.hover_ptn01 img {
  transition: 0.5s all;
}

.hover_ptn01:hover img,
a:hover .hover_ptn01 img {
  transform: scale(1.2, 1.2);
  opacity: 0.7;
}

/*タイトルパターン*/

.title_ptn01 {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.24em;
  text-align: center;
}

.title_ptn01 span.jost {
  position: relative;
}

.title_ptn01 span.jost::before,
.title_ptn01 span.jost::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 33px;
  background-color: #000;
  position: absolute;
  top: 0;
}

.title_ptn01 span.jost::before {
  left: -20px;
  transform: rotate(-25deg);
}

.title_ptn01 span.jost::after {
  right: -20px;
  transform: rotate(25deg);
}

.title_ptn01 span.img {
  display: block;
  max-width: 55.23px;
  margin: 18px auto 0;
}

/*カテゴリーページ*/

.title_ptn02 {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.24em;
  text-align: center;
  text-transform: uppercase;
  margin: 179px auto 105px;
}

/*Aboutページ　コンテンツタイトル*/

.title_ptn03 {
  color: #d18675;
  font-size: 19px;
  line-height: 28px;
  letter-spacing: 0.2em;
  margin-bottom: 50px;
}

.title_ptn03 .title {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.24em;
  padding-bottom: 25px;
  margin-bottom: 60px;
}

.title_ptn03 .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 23px;
  height: 1px;
  background-color: #d18675;
}

/*ボタンパターン*/
.btn_ptn01 {
  max-width: 270px;
  width: 100%;
  margin: 0 auto;
}

.btn_ptn01 a {
  display: block;
  width: 100%;
  background-color: #d18675;
  border: 1px solid #d18675;
  border-radius: 22px;
  color: #fff;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.16em;
  padding: 7px 10px;
  text-align: center;
}

.btn_ptn01 a:hover {
  background-color: #fff;
  color: #d18675;
}

.btn_ptn02 {
  max-width: 270px;
  width: 100%;
  margin: 0 auto;
}

.btn_ptn02 a {
  display: block;
  width: 100%;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 22px;
  color: #231815;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.16em;
  padding: 7px 10px;
  text-align: center;
}

.btn_ptn02 a:hover {
  background-color: #d18675;
  border: 1px solid #d18675;
  color: #fff;
}

/*ページャー*/

.pagenation_g {
  max-width: 419px;
  margin: 0 auto 130px;
}

.pagenation_g .count {
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.16em;
  text-align: center;
  margin: 0 auto;
}

.pagenation_g .count span {
  display: inline-block;
  padding: 0 0.5em;
}

ul.pager {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 26px;
}

ul.pager li {
  max-width: 190px;
  width: 45.34%;
  margin: 0;
}

.pager li a,
.pager li span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pager li span {
  display: block;
  width: 100%;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 22px;
  color: #231815;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.16em;
  padding: 7px 10px;
  text-align: center;
  transition: all 0.3s;
}

.pager li span:hover {
  background-color: #d18675;
  border: 1px solid #d18675;
  color: #fff;
}

.pager li .current {
  background-color: #d18675;
  border: 1px solid #d18675;
  color: #fff;
}

/*makeshopシステムのページャー*/
div.pager {
  margin: 0 auto 26px;
}

.pager .pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.pager .pagination li {
  background: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin: 0 4px 5px;
}

.pager .pagination li a {
  border-radius: 50%;
}

.pager .pagination li a.active span {
  color: #fff;
  background: #d18675;
}

/*ぱんくずリスト*/

#breadcrumb_wrap {
  margin: 72px 0 45px;
}

#breadcrumb_wrap .contents_in {
  max-width: 1180px;
}

#breadcrumb_wrap .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

#breadcrumb_wrap .breadcrumb li {
  position: relative;
}

#breadcrumb_wrap .breadcrumb li::after {
  content: ">";
  margin: 0 8px;
}

#breadcrumb_wrap .breadcrumb li:last-child:after {
  display: none;
}

#breadcrumb_wrap .breadcrumb li a,
#breadcrumb_wrap .breadcrumb li {
  color: #000000;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.08em;
}

/*----------
02.ヘッダー
----------*/

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  transition: 0.3s;
  z-index: 999;
}

header .contents_in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: none;
  height: 100%;
}

header .logo {
  max-width: 380px;
  width: 22.09%;
  height: 100%;
  background-color: #d18675;
}

header .logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 10px;
}

header .logo a:hover {
  opacity: 0.7;
}

header .logo img {
  max-width: 153.99px;
}

header .menu_g {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 950px;
  width: 55.25%;
}

header .menu_g .menu_list {
  display: flex;
  align-items: center;
  justify-content: center;
}

header .menu_g .menu_list>li {
  margin: 0 13px;
}

header .menu_g .menu_list li a,
header .menu_g .menu_list>li>span {
  position: relative;
  display: inline-block;
  color: #d18675;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.16em;
  transition: all 0.3s;
  cursor: pointer;
}

header .menu_g .menu_list li a::after,
header .menu_g .menu_list>li>span::after {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  background-color: #d18675;
  bottom: -10px;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

header .menu_g .menu_list li:hover a::after,
header .menu_g .menu_list li:hover span::after {
  visibility: visible;
  bottom: -8px;
  opacity: 1;
}

header .menu_g .menu_list li a.instagram::after {
  display: none;
}

header .menu_g .menu_list li a.instagram:hover {
  opacity: 0.7;
}

header .cart_g {
  max-width: 390px;
  width: 22.67%;
  padding: 0 30px 0 0;
}

header .cart_g .menu_list02 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .cart_g .menu_list02 .search {
  max-width: 155px;
  width: 43%;
  float: none;
}

header .cart_g .menu_list02 .search .search_box {
  display: flex;
  align-items: center;
}

header .cart_g .menu_list02 .search a {
  display: block;
  width: 23.71px;
  margin-right: 9px;
}

header .cart_g .menu_list02 .search .btn_go {
  width: 23.71px;
  height: 21.86px;
  background: url(../img/common/icon_glass_pink.svg) no-repeat;
  background-size: contain;
}

header .cart_g .menu_list02 .search input[type="text"] {
  max-width: 123px;
  width: 100%;
  padding: 0.1em;
  border: none;
  border-bottom: 1px solid #d18675;
  outline: none;
  margin: 0;
}

header .cart_g .menu_list02 .cart_link {
  width: 80px;
}

header .cart_g .menu_list02 .cart_link a {
  display: flex;
  align-items: center;
  justify-content: end;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.16em;
}

header .cart_g .menu_list02 .cart_link .menu_text {
  position: relative;
  color: #d18675;
}

header .cart_g .menu_list02 .cart_link .menu_text::after {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  background-color: #d18675;
  bottom: -10px;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

header .cart_g .menu_list02 .cart_link .menu_text:hover::after {
  visibility: visible;
  bottom: -8px;
  opacity: 1;
}

header .cart_g .menu_list02 .cart_link .cart_badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26.54px;
  height: 26.54px;
  background: #d18675;
  border-radius: 50%;
  color: #fff;
  margin-left: 2.3%;
}

/*makeshopシステムボタンの調整*/
li.login-link,
li.account-link,
li.mypage-link,
li.logout {
  width: 26.11px;
  display: inline-block;
}

li.login-link a:hover,
li.account-link a:hover,
li.mypage-link a:hover,
li.logout a:hover {
  opacity: 0.7;
}

header .cart_g .menu_list02 .cart_link {
  display: inline-block;
}

/* サブナビゲーション */
@media screen and (min-width: 768px) {
  header .menu_g {
    position: relative;
  }

  header .nav_item:hover .sub_item_block {
    opacity: 1;
    visibility: visible;
  }

  header .sub_item_block {
    position: absolute;
    top: 52px;
    left: 50%;
    max-width: 960px;
    width: 100%;
    max-height: 812px;
    background: #fff;
    opacity: 0;
    transform: translateX(-50%);
    transition: all 0.2s ease;
    visibility: hidden;
  }

  header .sub_item_block .sub_item_list {
    display: flex;
    padding: 20px 30px;
  }

  header .menu_g .menu_list .sub_item_block li a:hover {
    opacity: 0.6;
  }

  header .menu_g .menu_list .sub_item_block li a::after {
    display: none;
  }
}

header .sub_item_block .sub_item_g.category_item_g {
  width: 20%;
  height: 498px;
  overflow-y: scroll;
}

header .sub_item_block .sub_item_g .sub_item_title {
  position: relative;
  color: #d18675;
  font-size: 12px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.14em;
}

header .sub_item_block .sub_item_g.category_item_g .sub_item_menu>li a {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.06em;
}

header .sub_item_block .sub_item_g.category_item_g .sub_item_menu .sub_small_menu>li a {
  font-weight: 300;
  line-height: 25px;
}

header .sub_item_block .sub_item_g.category_item_g .sub_item_menu li {
  position: relative;
}

header .sub_item_block .sub_item_g.category_item_g .sub_item_menu>li>a {
  text-transform: uppercase;
}

header .sub_item_block .sub_item_g.category_item_g .sub_item_menu .sub_small_menu {
  padding-left: 0.5em;
}

header .sub_item_block .sub_item_g.category_item_g .sub_item_menu .sub_small_menu li::before {
  content: "-";
  display: inline-block;
  font-size: 12px;
  padding-right: 0.5em;
}

/*スクロールバー*/
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  /* height: 150px; */
}

::-webkit-scrollbar-track {
  border-right: 1px solid #e4b6ac;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  /* border-radius: 100px; */
}

::-webkit-scrollbar-thumb {
  background: #e4b6ac;
  border-radius: 0;
  width: 7px;
  /* width: 130px; */
}

::-webkit-scrollbar-corner {
  background: #e4b6ac;
  border-radius: 0;
  /* border-radius: 100px; */
}

header .sub_item_block .sub_item_g {
  scrollbar-width: thin;
  scrollbar-color: #e4b6ac #fff5f3;
}

/*end*/

header .sub_item_block .sub_item_g.bland_item_g {
  width: 73.68%;
  margin-left: 3.5%;
}

header .sub_item_block .sub_item_g.bland_item_g .sub_menu_wrap .sub_item_menu {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 480px;
}

header .sub_item_block .sub_item_g.bland_item_g .sub_item_menu>li a {
  color: #000000;
  font-size: 12px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.06em;
}

header .sub_item_block .sub_item_g.bland_item_g .sub_menu_wrap .sub_item_menu ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 480px;
}

header .sub_item_block .sub_item_g.category_item_g .sub_item_menu>li:nth-child(2) {
  display: none;
}

header .sub_item_block .sub_item_g.bland_item_g .sub_menu_wrap .sub_item_menu>li:not(:nth-child(2)) {
  display: none;
}

/*----------
03.フッター
----------*/

footer {
  position: relative;
  background: #d18675;
  padding: 63px 0 0;
  z-index: 1;
}

footer .deco_panda {
  position: absolute;
  top: -48px;
  left: 50%;
  display: block;
  background: url(../img/common/img_panda.svg) no-repeat;
  background-size: contain;
  width: 110.53px;
  height: 73.55px;
  transform: translateX(-50%);
}

footer .footer_nav {
  display: flex;
  justify-content: center;
  max-width: 825px;
  margin: 0 auto 66px;
}

footer .footer_nav li a {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  font-feature-settings: "palt";
  line-height: 25px;
  letter-spacing: 0.16em;
  padding: 0 16px;
  transition: all 0.3s;
}

footer .footer_nav li a:hover {
  opacity: 0.7;
}

footer .footer_nav li:first-child a {
  border-left: none;
}

footer .footer_logo {
  max-width: 281.41px;
  margin: 0 auto 73px;
}

footer .copyright {
  display: block;
  width: 100%;
  background: #d18675;
  color: #fff;
  padding: 20px;
  text-align: center;
}

footer .copyright small {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.1em;
}

footer .page_top {
  position: absolute;
  right: 129.6px;
  top: -25px;
  width: 50px;
  height: 50px;
  background-color: #ddbc94;
  border: 1px solid #ddbc94;
  border-radius: 50%;
  transition: all 0.3s;
}

footer .page_top:hover {
  background: #f1cb9e;
  border: 1px solid #f1cb9e;
}

footer .page_top a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

footer .page_top a::before {
  content: "";
  display: block;
  color: #fff;
  width: 16px;
  height: 16px;
  border: 1.5px solid #fff;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
  transition: all 0.3s;
}

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

  /*----------
01.共通
----------*/
  .contents_in {
    width: 94%;
  }

  /*----------
02.ヘッダー
----------*/

  header .contents_in {
    width: 100%;
  }

  header .logo {
    width: 16%;
  }

  header .menu_g {
    width: 64%;
  }

  header .cart_g {
    width: 20%;
    padding: 0 15px 0 0;
  }
}

@media only screen and (max-width: 1280px) {
  /*----------
  01.共通
  ----------*/

  .title_ptn02 {
    margin: 110px auto 80px;
  }

  .title_ptn03 {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .title_ptn03 .title {
    padding-bottom: 20px;
    margin-bottom: 35px;
  }

  /*----------
  02.ヘッダー
  ----------*/

  header .menu_g {
    width: 62%;
  }

  header .menu_g .menu_list>li {
    margin: 0px 8px;
  }

  header .menu_g .menu_list li a,
  header .menu_g .menu_list li span {
    font-size: 14px;
  }

  header .menu_g .menu_list li a.instagram {
    min-width: 22px;
  }

  header .cart_g {
    width: 22%;
  }

  header .cart_g .menu_list02 .cart_link a {
    font-size: 14px;
  }

  /*サブメニュー*/
  header .sub_item_block .sub_item_list {
    padding: 20px;
  }

  header .sub_item_block .sub_item_g.category_item_g {
    width: 23%;
  }

  header .sub_item_block .sub_item_g.category_item_g .sub_item_menu>li a {
    font-size: 13px;
    line-height: 28px;
  }

  header .sub_item_block .sub_item_g.category_item_g .sub_item_menu .sub_small_menu>li a {
    font-size: 11px;
    line-height: 21px;
  }

  header .sub_item_block .sub_item_g.bland_item_g {
    width: 76%;
    margin-left: 1%;
  }

  header .sub_item_block .sub_item_g.bland_item_g .sub_item_menu>li a {
    font-size: 11px;
    line-height: 21px;
  }

  /*----------
03.フッター
----------*/
}

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

  /*----------
  02.ヘッダー
  ----------*/
  nav {
    width: auto;
    height: auto;
    padding-top: 0;
    background: transparent;
    position: static;
    top: 0;
    left: 0;
    z-index: 10;
    transform: inherit;
    transition: all 0.5s;
  }

  nav li {
    color: #6e6e6e;
    text-align: initial;
    font-family: inherit;
    padding: 0;
  }
}

@media only screen and (max-width: 1024px) {
  /*----------
02.ヘッダー
----------*/

  header .menu_g {
    width: 64%;
  }

  header .menu_g .menu_list li {
    margin: 0px 5px;
  }

  header .menu_g .menu_list li a,
  header .menu_g .menu_list li span {
    font-size: 13px;
  }

  header .cart_g {
    width: 20%;
    padding: 0 10px;
  }

  header .cart_g .menu_list02 {
    flex-wrap: wrap;
  }

  header .cart_g .menu_list02 .search {
    max-width: none;
    width: 100%;
    margin-bottom: 5px;
  }

  header .cart_g .menu_list02 .search a {
    width: 20px;
    margin-right: 3px;
  }

  header .cart_g .menu_list02 .search input[type="text"] {
    max-width: none;
  }

  header .cart_g .menu_list02 .search .btn_go {
    width: 20px;
    height: 18.86px;
  }

  header .cart_g .menu_list02 .cart_link a {
    font-size: 13px;
  }

  /*サブメニュー*/

  header .sub_item_block {
    width: 140%;
  }

  header .sub_item_block .sub_item_list {
    padding: 20px 13px;
  }

  .sub_item_block .sub_item_g.category_item_g {
    width: 22%;
  }

  .sub_item_block .sub_item_g.bland_item_g {
    width: 75%;
  }

  /*----------
  03.フッター
  ----------*/

  footer .footer_nav li a {
    font-size: 12px;
    padding: 0 10px;
  }
}

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

  /*----------
01.共通
----------*/
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .contents_in {
    width: calc(100% - 60px);
  }

  main {
    background: #f1f0e6;
    padding-top: 60px;
  }

  .title_ptn02 {
    margin: 91px auto 52px;
  }

  .title_ptn03 {
    font-size: 17px;
    line-height: 35px;
    text-align: center;
    margin-bottom: 50px;
  }

  .title_ptn03 .title {
    padding-bottom: 26px;
    margin-bottom: 45px;
  }

  .title_ptn03 .title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  /*ページャー*/
  ul.pager li {
    max-width: 150px;
    width: 44.24%;
  }

  .pagenation_g {
    margin: 0 auto 95px;
  }

  /*ぱんくずリスト*/

  #breadcrumb_wrap {
    margin: 42px 0 45px;
  }

  #breadcrumb_wrap .contents_in {
    width: calc(100% - 30px);
  }

  #breadcrumb_wrap .breadcrumb li a,
  #breadcrumb_wrap .breadcrumb li {
    font-size: 13px;
  }

  /*----------
02.ヘッダー
----------*/

  nav {
    width: auto;
    height: auto;
    padding-top: 0;
    background: transparent;
    position: initial;
    top: 0;
    left: 0;
    z-index: 10;
    transform: initial;
    transition: initial;
  }

  nav li {
    color: inherit;
    text-align: inherit;
    font-family: inherit;
    padding: 0;
  }

  /*ハンバーガーボタン*/
  .openbtn {
    position: fixed;
    z-index: 9999;
    top: 21px;
    left: 19px;
    width: 24px;
    height: 18px;
    cursor: pointer;
  }

  .openbtn span {
    display: inline-block;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.4s;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
  }

  .openbtn.active span {
    background-color: #000000;
  }

  .openbtn span:nth-of-type(1) {
    top: 0;
  }

  .openbtn span:nth-of-type(2) {
    top: 9px;
  }

  .openbtn span:nth-of-type(3) {
    top: 18px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 8px;
    left: 0;
    width: 90%;
    transform: translateY(6px) rotate(-45deg);
  }

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

  .openbtn.active span:nth-of-type(3) {
    top: 20px;
    left: 0;
    width: 90%;
    transform: translateY(-6px) rotate(45deg);
  }

  /*END　ハンバーガーボタン*/

  header {
    background-color: #d18675;
    height: 60px;
  }

  header .contents_in {
    justify-content: end;
  }

  header .menu_g {
    position: fixed;
    top: 0;
    left: -100%;
    display: none;
    display: block;
    height: 100vh;
    width: 255px;
    background-color: #fff;
    padding: 60px 0px;
    z-index: 999;
    transition: all 0.5s;
  }

  header .menu_g.active {
    left: 0;
  }

  header .menu_g .menu_list {
    display: block;
  }

  header .menu_g .menu_list>li {
    margin: 0;
  }

  header .menu_g .menu_list>li>a,
  header .menu_g .menu_list>li>span {
    display: block;
    width: 100%;
    border-bottom: 1px solid #e8c1b9;
    color: #000;
    font-size: 15px;
    line-height: 40px;
    letter-spacing: 0.06em;
    padding: 1px 24px;
  }

  header .menu_g .menu_list li a::after,
  header .menu_g .menu_list li span::after {
    display: none;
  }

  header .menu_g .menu_list li a.instagram {
    border-bottom: none;
    padding: 9.5px 24px;
  }

  header .menu_g .menu_list li.nav_item span::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    display: block;
    width: 10.5px;
    height: 12.12px;
    background: url(../img/common/arrow_right.svg) no-repeat;
    background-size: contain;
    transform: translateY(-50%);
  }

  header .menu_g .menu_list>li a img {
    width: 22.19px;
  }

  header .cart_g .menu_list02 {
    display: flex;
  }

  header .cart_g {
    max-width: none;
    width: calc(100% - 60px);
    padding: 0 20px 0 0;
    margin: 0 0 0 auto;
  }

  header .cart_g .menu_list02 .search {
    width: calc(100% - 158px);
    margin-bottom: 0;
  }

  header .cart_g .menu_list02 .search a {
    margin-right: 9px;
  }

  header .cart_g .menu_list02 .search .btn_go {
    background: url(../img/common/icon_glass_white.svg) no-repeat;
    background-size: contain;
    width: 23.71px;
    height: 21.86px;
  }

  header .cart_g .menu_list02 .search input[type="text"] {
    display: none;
    max-width: 123px;
    border-bottom: transparent;
    border-bottom: 1px solid #fff;
  }

  header .cart_g .menu_list02 .cart_link .menu_text {
    color: #fff;
    font-size: 15px;
  }

  header .cart_g .menu_list02 .cart_link .cart_badge {
    flex: 1 0 auto;
    background: #fff;
    color: #d18675;
    margin-left: 9px;
  }

  /*サブメニュー*/

  header .menu_g .menu_list li.nav_item .btn_back {
    content: "";
    position: absolute;
    top: 30px;
    right: 15px;
    display: block;
    width: 10.5px;
    height: 12.12px;
    background: url(../img/common/arrow_left.svg) no-repeat;
    background-size: contain;
    transform: translateY(-50%);
    cursor: pointer;
  }

  header .menu_g .menu_list li.nav_item .sub_item_menu a::before {
    display: none;
  }

  header .menu_g .menu_list {
    position: relative;
  }

  header .menu_g .menu_list .sub_item_block {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    width: 255px;
    height: 100vh;
    background: #fff;
    padding-top: 60px;
    z-index: 1;
    transition: all 0.5s;
  }

  header .menu_g .menu_list .sub_item_block.active {
    left: 0;
  }

  header .sub_item_block .sub_item_list {
    padding: 0;
  }

  header .menu_g .menu_list li {
    margin: 0;
  }

  header .menu_g .menu_list li .sub_item_title {
    display: block;
    width: 100%;
    border-bottom: 1px solid #e8c1b9;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 0.06em;
    padding: 1px 24px;
    cursor: pointer;
  }

  header .sub_item_block .sub_item_g.category_item_g,
  header .sub_item_block .sub_item_g.bland_item_g {
    width: 100%;
  }

  header .sub_item_block .sub_item_g.category_item_g {
    height: auto;
    overflow-y: hidden;
  }

  header .sub_item_block .sub_item_g .inner {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    width: 255px;
    height: 100vh;
    background: #fff;
    padding: 60px 17px 0 25px;
    z-index: 2;
    transition: all 0.5s;
  }

  header .sub_item_block .sub_item_g .inner.active {
    left: 0;
  }

  header .sub_item_block .sub_item_g .sub_menu_wrap {
    height: calc(100% - 30px);
    padding-bottom: 50px;
    overflow-y: scroll;
  }

  header .sub_item_block .sub_item_g.bland_item_g {
    margin-left: 0;
  }

  header .sub_item_block .sub_item_g.bland_item_g .sub_menu_wrap .sub_item_menu {
    display: block;
    height: auto;
  }

  header .sub_item_block .sub_item_g.category_item_g .sub_item_menu>li a {
    font-size: 14px;
    line-height: 34px;
  }

  header .sub_item_block .sub_item_g.category_item_g .sub_item_menu .sub_small_menu>li a {
    font-size: 14px;
    line-height: 34px;
  }

  header .sub_item_block .sub_item_g.bland_item_g .sub_item_menu>li a {
    font-size: 14px;
    line-height: 26px;
  }

  header .sub_item_block .sub_item_g.bland_item_g .sub_menu_wrap .sub_item_menu ul {
    display: block;
    height: auto;
  }

  /*----------
03.フッター
----------*/

  footer {
    padding: 35px 0 0;
  }

  footer .deco_panda {
    top: -47px;
    width: 88.42px;
    height: 58.84px;
  }

  footer .footer_nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: 295px;
    margin: 0 auto 50px;
  }

  footer .footer_nav li a {
    line-height: 25px;
  }

  footer .footer_logo {
    max-width: 180px;
    margin: 0 auto 48px;
  }

  footer .page_top {
    right: 23.8px;
    top: -17.5px;
    width: 35px;
    height: 35px;
  }

  footer .page_top a::before {
    width: 12px;
    height: 12px;
  }

  footer .copyright {
    padding: 12px 0 14px;
  }

  footer .copyright small {
    display: block;
    font-size: 10px;
    transform: scale(0.8);
    transform-origin: center bottom;
  }
}

@media only screen and (max-width: 360px) {
  /*----------
    01.共通
    ----------*/

  .title_ptn03 {
    font-size: 15px;
  }

  /*----------
  02.ヘッダー
  ----------*/

  /*----------
03.フッター
----------*/
}

/*----------
04.アニメーション
----------*/

/* CSSアニメーションの設定 */

/*title下画像（回転）*/
.anime_ptn02 {
  animation: rotate-anime-y 3s linear infinite;
  /* animation: rotate-anime-y 3s linear; */
}

@keyframes rotate-anime-y {
  0% {
    transform: rotateY(0);
  }

  100% {
    transform: rotateY(360deg);
  }
}

/*Aboutの画像アニメーション*/
/* .deco_about img {
  animation: wobbling_x 0.8s ease-in-out infinite alternate,
    wobbling_y 1.1s ease-in-out infinite alternate;
} */

@keyframes wobbling_x {
  0% {
    margin-left: 8px;
  }

  100% {
    margin-left: 0px;
  }
}

@keyframes wobbling_y {
  0% {
    margin-top: 0px;
  }

  100% {
    margin-top: 8px;
  }
}

/*フッターのパンダ*/
footer .panda-path-svg-wrapper {
  position: absolute;
  left: 0;
  top: -45vw;
  width: 100%;
  height: 50vw;
  overflow: hidden;
}

#panda-path-svg {
  position: absolute;
  left: 3%;
  top: 15vw;
  width: 100%;
}

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

  footer .panda-path-svg-wrapper {
    position: absolute;
    left: 0;
    top: -45vw;
    width: 100%;
    height: 50vw;
    overflow: hidden;
  }

  footer #panda-path-svg {
    left: 9%;
    top: 9vw;
  }
}