@charset "UTF-8";
/* --------------------------------------------------
Base
-------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;700;900&display=swap');

body, ol, ul, dl, li, dt, dd, table, th, td, input, textarea, select, h1, h2, h3, h4, h5, h6 {
  color: #1d1d1f;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  line-height: 1.5;
  font-size: 90%;
  word-break: break-all;
  position: relative;
  overflow-x: hidden;
  animation: pageLoad 2s;
}

body::before {
  position: fixed;
  top: 0;
  left: 0;
  content: '';
  width: 100vw;
  height: 100vh;
  background-image: url('../img/common/bg.jpg');
  background-position: top center;
  background-repeat: no-repeat;
  z-index: -1;
}

@keyframes pageLoad {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 1200px) {
  body {
    font-size: 80%;
  }
}

@media screen and (max-width: 1000px) {
  body {
    font-size: 75%;
  }
}

@media screen and (max-width: 767px) {
  body {
    line-height: 1.8;
  }
}

img {
  max-width: 100%;
  vertical-align: middle;
}

input {
  padding: 5px 8px;
}

textarea {
  padding: 3px;
}

ul {
  list-style: none;
}

ol {
  margin: 0px 0px 0px 21px;
}

ol>li {
  list-style: decimal outside;
  margin: 0px 0px 3%;
}

a {
  color: initial;
  text-decoration: underline;
  outline: 0;
}

a:hover, a:active {
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  a[href^="tel"] {
    text-decoration: none;
    pointer-events: none;
  }
}

em {
  font-style: normal;
  font-weight: bold;
}

strong {
  font-style: normal;
  font-weight: bold;
}

/* --------------------------------------------------
Wrapper
-------------------------------------------------- */

#wrapper {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

/* --------------------------------------------------
drw-nav-btn
-------------------------------------------------- */

#drw-nav-trigger {
  display: none;
}

.drw-nav-btn {
  position: fixed;
  top: 14px;
  right: 6px;
  display: none;
  width: 40px;
  height: 40px;
  text-align: center;
  cursor: pointer;
  z-index: 9999;
}

.drw-nav-btn-bar {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 30px;
  height: 2px;
  background: #5c8404;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.4s;
  transform-origin: left top;
}

#drw-nav-trigger:checked~.drw-nav-ntn .drw-nav-btn-bar {
  box-shadow: none;
}

.drw-nav-btn-bar.top {
  top: 11px;
  left: 5px;
}

.drw-nav-btn-bar.middle {
  top: 20px;
  left: 5px;
  opacity: 1;
}

.drw-nav-btn-bar.bottom {
  top: 29px;
  left: 5px;
  transform-origin: left bottom;
}

#drw-nav-trigger:checked~.drw-nav-btn .drw-nav-btn-bar.top {
  width: 26px;
  left: 11px;
  transform: rotate(45deg);
}

#drw-nav-trigger:checked~.drw-nav-btn .drw-nav-btn-bar.middle {
  opacity: 0;
}

#drw-nav-trigger:checked~.drw-nav-btn .drw-nav-btn-bar.bottom {
  width: 26px;
  left: 11px;
  top: 29px;
  transform: rotate(-45deg);
}

.drw-nav-btn-text {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.3s;
  display: block;
  visibility: visible;
  opacity: 1;
  letter-spacing: 0;
  color: #5c8404;
  font-size: 10px;
  text-shadow: 0px 0px 2px rgba(255, 255, 255, 1);
}

#drw-nav-trigger:checked~.drw-nav-btn .drw-nav-btn-text {
  visibility: hidden;
  opacity: 0;
}

.drw-nav-close {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  transition: all 0.4s;
  visibility: hidden;
  opacity: 0;
}

#drw-nav-trigger:checked~.drw-nav-close {
  transition: all 0.4s 0.3s;
  background: rgba(0, 0, 0, 0.6);
  visibility: visible;
  opacity: 1;
  z-index: 993;
  box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.35);
}

#drw-nav {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: all 0.4s;
  opacity: 0;
  overflow: hidden;
  transform-origin: left center;
  transform: translateX(100%);
  z-index: 993;
}

#drw-nav-trigger:checked~#drw-nav {
  transition-delay: 0.3s;
  transform: none;
  opacity: 1;
  z-index: 999;
}

.drw-nav-inner {
  background-color: #5c8404;
  box-sizing: border-box;
  width: 100%;
  min-width: 300px;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.drw-nav-inner > .top-bar {
  position: relative;
  display: flex;
  padding: 20px 25px 20px 15px;
  justify-content: space-between;
}

.drw-nav-inner > .top-bar .logo {
  max-width: 240px;
  text-align: left;
  position: relative;
  box-sizing: border-box;
}

.drw-nav-inner > .top-bar .i-btn {
  display: flex;
  align-items: center;
}

.drw-nav-inner > .top-bar .i-btn .pure-button {
  display: inline-block;
  zoom: 1;
  line-height: normal;
  white-space: nowrap;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 100%;
  padding: 0.5em 1em;
  color: #444;
  color: rgba(0,0,0,.8);
  border: 1px solid #999;
  border: none transparent;
  background-color: #e6e6e6;
  text-decoration: none;
  border-radius: 2px;
}

.drw-nav-inner > .top-bar i.fa-times {
  width: 14px;
}

@media screen and (min-width: 767px) {
  #search-form input[type="text"] {
    width: 20em;
  }
}

#drw-nav .intro {
  text-align: center;
  margin: 30px auto 0;
  padding: 0 20px;
}

#drw-nav .g-nav {
  /* padding-top: 4px; */
  margin: 0 auto;
  position: relative;
}

#drw-nav .g-nav::before {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
}

#drw-nav .g-nav li {
  line-height: 1.8;
  border-bottom: 1px solid #eee;
}

#drw-nav .g-nav li a,
#drw-nav .g-nav li .accord-ttl {
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  padding: 7px 20px 8px;
  text-decoration: none;
  display: block;
  position: relative;
}

#drw-nav .g-nav li a::before,
#drw-nav .g-nav li .accord-ttl::before {
  font-family: "Font Awesome 5 Free";
  content: '\f105';
  font-weight: 900;
  font-size: 14px;
  margin: auto 0;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
}

#drw-nav .g-nav li a:hover {
  opacity: 0.8;
}

#drw-nav .g-nav li .accord-ttl.onclick {
  border-bottom: 1px solid #eee;
}

#drw-nav .g-nav li .accord-ttl::before {
  transition: 300ms all ease-in-out;
  transform: rotate(90deg);
}

#drw-nav .g-nav li .accord-ttl.onclick::before {
  transform: rotate(-90deg);
}

#drw-nav .g-nav li.accordion .accord-content {
  margin: 0;
  padding: 15px 0;
  list-style: none;
}

#drw-nav .g-nav li.accordion .accord-content li {
  border-bottom: none;
}

#drw-nav .g-nav li.accordion .accord-content li a {
  padding: 10px 30px;
}

#drw-nav .g-nav li.active a, 
#drw-nav .g-nav li.accordion .accord-content li.active a {
  /*background-image: url(../img/common/arrow_right_black.png);*/
}

#drw-nav .g-nav li.accordion .accord-content li .txt01 {
  color: #fff;
  border-bottom: 1px solid #c7cbd3;
  padding: 10px 7% 10px 10%;
  display: block;
  position: relative;
}

#drw-nav .g-nav li.accordion .accord-content li .sub li a {
  border-bottom: none;
}

#drw-nav-trigger:checked~#wrapper {
  transition-delay: 0s;
  transform: translateX(-300px);
}

#drw-nav .contact {
  width: 300px;
}

#drw-nav .contact .contact-intro {
  text-align: center;
  font-size: 100%;
}

#drw-nav .contact .contact-tel {
  text-align: center;
  line-height: 1;
  font-size: 250%;
}

#drw-nav .contact .contact-btn {
  margin-top: 10px;
}

#drw-nav > .drw-nav-inner > #sns {
  padding: 20px 25px;
  background-color: #333;
  color: #fff;
}

#drw-nav > .drw-nav-inner > #sns > .ttl {
  color: #fff;
  font-size: 140%;
  font-weight: 100;
  margin: 1em 0;
}

#drw-nav > .drw-nav-inner > #sns .sns-icon {
  color: #fff;
  font-size: 180%;
  font-weight: 100;
}

@media screen and (min-width: 768px) {
  #drw-nav {
    display: none;
    opacity: 1;
    transform: translateX(0px);
  }
  .drw-nav-close {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  #drw-nav {
    display: flex;
  }
  .drw-nav-btn {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .drw-nav-btn {
    top: 10px;
  }
}


/* ヘッダーの検索窓 */
#search-icon:hover {
  cursor: pointer;
  opacity: 0.75;
}

#search-form {
  display: block;
  border-bottom: 1px solid #eee;
  padding: 21px 25px 21px 20px;
  text-align: left;
  background-color: #eee;
}

#search-form form {
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
}

#search-form input[type="text"] {
  border: 1px solid #ccc;
  border-radius: 0;
  -webkit-appearance: none;
  height: 2.6em;
  width: 80%;
}

#search-form .pure-button {
  padding: 0.5em 1.2em;
}

#search-form .pure-button-black {
  background-color: #333;
}

#search-form .pure-button-black i {
  color: #fff;
}

#search-form .pure-button-gray {
  background-color: #eee;
}

#search-form form .i-btn {
  display: flex;
  align-items: center;
}

/* --------------------------------------------------
Header
-------------------------------------------------- */

#header {
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

#header.fixed #top-bar {
  position: fixed;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  margin-top: 0;
  z-index: 998;
  animation-name: example;
  animation-duration: .5s;
}
@keyframes example {
  from { transform: translateY(-100%); }
  to { transform: translateY(0px); }
}  

#header > #top-bar {
  background-color: #5c8404;
  transform: translateY(0px);
  transition: transform 0.5s ease 0s;
  /* background-image: url('../img/common/header_bg.jpg');
  background-position: center top -5vw;
  background-repeat: no-repeat;
  background-size: cover; */
}

#header > #top-bar > .inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 2%;
  margin: 0 auto;
  box-sizing: border-box;
}

#header > #top-bar > .inner #logo-area {
  display: inline-block;
  margin-right: 15px;
}

#header > #top-bar > .inner #logo-area #logo {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: wrap;
  text-decoration: none;
}

#header > #top-bar > .inner #control-area {
  display: inline-block;
}

#header > #top-bar > .inner #control-area > .list {
  display: flex;
}

#header > #top-bar > .inner #control-area > .list > li {
  margin-left: 15px;
}

#header > #top-bar > .inner #control-area > .list > li:nth-child(1) {
  margin-left: 0;
}

#header > #top-bar > .inner #control-area > .list > li.sp-menu {
  display: none;
}

#header > #top-bar > .inner #control-area > .list > li > .i-btn {
  text-decoration: none;
  transition: all 300ms ease-in-out;
}

#header > #top-bar > .inner #control-area > .list > li > .i-btn:hover {
  opacity: .7;
}

#header > #top-bar > .inner #control-area > .list > li > .i-btn > .icn {
  text-align: center;
  line-height: 1.8;
}

#header > #top-bar > .inner #control-area > .list > li.sp-menu > .i-btn > .icn {
  font-size: 184%;
  color: #fff;
  line-height: 1;
}

#header > #top-bar > .inner #control-area > .list > li > .i-btn > .txt {
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "Times New Roman", serif;
  font-size: 75%;
  color: #fff;
  letter-spacing: .8px;
  line-height: 1;
  margin-top: 5px;
}

#header > #g-nav {
  position: relative;
  background-color: #5c8404;
  z-index: 99;
  transition: 300ms all ease-in-out;
}

#header > #g-nav > .inner {
  max-width: 1200px;
  width: 100%;
  padding: 0 2%;
  margin: 0 auto;
  box-sizing: border-box;
}

#header > #g-nav > .inner > .list {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#header > #g-nav > .inner > .list > li {
  position: relative;
  display: flex;
}

#header > #g-nav > .inner > .list > li::after,
#header > #g-nav > .inner > .list > li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  content: '';
  display: block;
  width: 1px;
  height: 16px;
  background-color: #fff;
  margin: auto 0;
}

#header > #g-nav > .inner > .list > li::before {
  display: none;
  left: 0;
}

#header > #g-nav > .inner > .list > li:nth-child(1):before {
  display: block;
}

#header > #g-nav > .inner > .list > li::after {
  right: 0;
}

#header > #g-nav > .inner > .list > li.toggle > .txt,
#header > #g-nav > .inner > .list > li a {
  position: relative;
  text-decoration: none;
  line-height: 1.8;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "Times New Roman", serif;
  color: #fff;
  padding: 10px 30px;
  transition: 300ms all ease-in-out;
  cursor: pointer;
}

#header > #g-nav > .inner > .list > li a:hover {
  opacity: .7;
}

#header > #g-nav > .inner > .list > li.toggle > .sub-nav {
  position: absolute;
  top: 100%;
  left: 0;
  content: '';
  background-color: #fff;
  border-bottom: 2px solid #5b8404;
  border-right: 2px solid #5b8404;
  border-left: 2px solid #5b8404;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  transition: 300ms all ease-in-out;  
  overflow: hidden;
}

#header > #g-nav > .inner > .list > li.toggle:hover .sub-nav {
  visibility: visible;
  opacity: 1;
}

#header > #g-nav > .inner > .list > li.toggle > .sub-nav > li a {
  position: relative;
  text-decoration: none;
  display: block;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "Times New Roman", serif;
  width: 100%;
  color: initial;
  padding: 10px 15px;
  box-sizing: border-box;
  transition: 300ms all ease-in-out;
}

#header > #g-nav > .inner > .list > li.toggle > .sub-nav > li a:after {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  content: '';
  display: block;
  width: calc(100% - 30px);
  background-color: #ededdd;
  height: 1px;
  margin: 0 auto;
  z-index: 10;
}

@media screen and (max-width: 1000px) {
  #header > #g-nav > .inner > .list > li.toggle > .txt,
  #header > #g-nav > .inner > .list > li a {
    padding: 10px 20px;
  }
}

@media screen and (max-width: 767px) {
  #header > #g-nav {
    display: none;
  }
  #header > #top-bar > .inner #logo-area #logo {
    max-width: 160px;
  }
  #header > #top-bar > .inner #control-area > .list > li {
    margin-left: 6px;
  }
  #header > #top-bar > .inner #control-area > .list > li.sp-menu {
    display: block;
  }
  #header > #top-bar > .inner #logo-area {
    max-width: 35%;
  } 
  #header > #top-bar > .inner #control-area > .list > li .icn > img {
    transform: scale(.9);
  } 
  #header > #top-bar > .inner #control-area > .list > li > .i-btn > .txt {
    font-size: 70%;
  }
}

@media screen and (max-width: 480px) {
  #header > #top-bar > .inner #control-area > .list > li {
    margin-left: 5px;
  }
  #header > #top-bar > .inner #control-area > .list > li.instagram {
    display: none;
  }
  #header > #top-bar > .inner #control-area > .list > li:nth-child(1) {
    margin-left: 0;
  }
  #header > #top-bar > .inner #control-area > .list > li > .i-btn > .icn {
    transform: scale(.7);
  }
  #header > #top-bar > .inner #control-area > .list > li > .i-btn > .txt {
    font-size: 60%;
  }
}

@media screen and (max-width: 340px) {
  #header > #top-bar > .inner #logo-area {
    max-width: 42%;
    margin-right: 6px;
  }
  #header > #top-bar > .inner #control-area > .list > li {
    margin-left: 3px;
  }
}

#key-visual {
  position: relative;
  display: block;
}

body#sub #key-visual > .bg {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body#sub #key-visual > .bg > .ttl {
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "Times New Roman", serif;
  font-size: 220%;
  color: #fff;
}

@media screen and (max-width: 1200px) {
  body#sub #key-visual > .bg {
    height: 42vw;
  }
  body#sub #key-visual > .bg > .ttl {
    font-size: 200%;;
  }
}

@media screen and (max-width: 767px) {
  body#sub #key-visual > .bg > .ttl {
    font-size: 180%;
  }
}

@media screen and (max-width: 480px) {
  body#sub #key-visual > .bg {
    height: 60vw;
  }
  body#sub #key-visual > .bg > .ttl {
    font-size: 160%;
  }
}

/* --------------------------------------------------
Contents
-------------------------------------------------- */

.ec-layoutRole .ec-layoutRole__contents {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  padding: 0 2%;
  margin: 40px auto;
  box-sizing: border-box;
}

.ec-layoutRole #side-bar {
  max-width: none;
  width: 19%;
}

.ec-layoutRole #side-bar .side-blc .side-list {
  display: block;
  width: 100%;
  background-color: #4e7304;
  border: 2px solid #5b8404;
  margin-bottom: 15px;
  box-sizing: border-box;
}

.ec-layoutRole #side-bar .side-blc .side-list #side-banner {
  text-align: center;
  margin-bottom: 15px;
}

.ec-layoutRole #side-bar .side-blc .side-list #side-banner a {
  transition: all 300ms ease-in-out;
}

.ec-layoutRole #side-bar .side-blc .side-list #side-banner a:hover {
  opacity: .7;
}

.ec-layoutRole #side-bar .side-blc .side-list .side-blc {
  position: relative;
  display: block;
  padding-bottom: 8px;
  margin-bottom: 15px;
  box-sizing: border-box;
}


.ec-layoutRole #side-bar .side-blc .side-list > .ttl {
  position: relative;
  letter-spacing: 1px;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "Times New Roman", serif;
  font-size: 110%;
  color: #fff;
  font-weight: 100;
  background: linear-gradient(180deg, #5c8504, #4c7104);
  box-shadow: inset 0 0 1px #fff;
  padding: 10px 15px;
}

.ec-layoutRole #side-bar .side-blc .side-list > .ttl::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: url('../img/common/pattern_bg.png');
  background-position: top left;
  background-repeat: no-repeat;
  opacity: .2;
  z-index: 0;
}

.ec-layoutRole #side-bar .side-blc .side-list > .txt {
  position: relative;
  border: none;
  padding: 10px 15px;
  margin-bottom: 1px;
}

.ec-layoutRole #side-bar .side-blc #cate-nav.side-list > .txt {
  padding: 0;
}

.ec-layoutRole #side-bar .side-blc #cate-nav.side-list > .txt::before,
.ec-layoutRole #side-bar .side-blc #cate-nav.side-list > .txt::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  content: '';
  display: block;
  height: 1px;
  margin: 0 auto;
  z-index: 1;
}

.ec-layoutRole #side-bar .side-blc #cate-nav.side-list > .txt::before {
  width: 100%;
  background-color: #fff;
}

.ec-layoutRole #side-bar .side-blc #cate-nav.side-list > .txt::after {
  width: calc(100% - 30px);
  background-color: #ededdd;
}

.ec-layoutRole #side-bar .side-blc #cate-nav.side-list > .txt:nth-last-child(1) {
  margin-bottom: 8px;
}

.ec-layoutRole #side-bar .side-blc #cate-nav.side-list > .txt:nth-last-child(1)::before {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: '';
  display: block;
  width: 100%;
  height: 8px;
  background-color: #fff;
}

.ec-layoutRole #side-bar .side-blc #cate-nav.side-list > .txt > a {
  text-decoration: none;
  display: block;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "Times New Roman", serif;
  width: 100%;
  background-color: #fff;
  padding: 10px 15px;
  box-sizing: border-box;
  transition: 300ms all ease-in-out;
}

.ec-layoutRole #side-bar .side-blc #cate-nav.side-list > .txt > a:hover {
  color:#fff;
  background-color: #5b8404;
}

.ec-layoutRole #side-bar .side-blc #banner.side-list {
  background-color: transparent;
  border: 0;
}

.ec-layoutRole #side-bar .side-blc .side-list > .list-banner {
  margin-bottom: 15px;
  box-sizing: border-box;
}

.ec-layoutRole #side-bar .side-blc .side-list > .list-banner > li {
  text-align: center;
  margin-bottom: 5px;
}

.ec-layoutRole #contents {
  width: 81%;
  padding: 0 0 0 4%;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .ec-layoutRole #side-bar {
    display: none;
  }
  .ec-layoutRole #contents {
    width: 100%;
    padding: 0 4%;
  }
}

#cart .information {
  padding: 10px;
}

#cart .postage {
  margin-top: 10px;
  padding: 10px 0 5px;
  border-bottom: #e0e0cb solid 1px;
}

#cart .postage .point_announce {
  padding: 2px 0 2px 20px;
  background: url(../img/icon/ico_price.gif) no-repeat left top 5px;
}

#cart .btn {
  display: block;
}

#ssl {
  text-align: center;
  background-color: transparent !important;
  border: none !important;
}

#search dd {
  margin-bottom: 5px;
}

#search .btn {
  display: block;
  text-align: center;
}

/* --------------------------------------------------
Button
-------------------------------------------------- */

.ec-btn {
  max-width: 140px;
  text-align: center;
  width: 100%;
  position: relative;
  text-decoration: none;
  font-size: 90%;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(100, 100, 100, .8);
  border: 0;
  border-radius: 3px;
  padding: 8px 20px !important;
  box-sizing: border-box;
  transition: 300ms all ease-in-out;
}

.ec-btn:hover {
  color: #fff;
  opacity: .7;
}

.ec-btn.btn-orange {
  background: linear-gradient(180deg, #fb9345, #de4603);
}

.ec-btn.btn-green {
  background: linear-gradient(180deg, #bdd00a, #93ac10);
}

/* --------------------------------------------------
Footer
-------------------------------------------------- */

#footer {
  width: 100%;
  margin: 30px 0 0;
  position: relative;
  border-top: 2px solid #d0e6d6;
  box-shadow: 5px 0 5px #dfe3e0;
  box-sizing: border-box;
  z-index: 989;
}

#footer > .inner {
  display: flex;
  justify-content: space-between;
  padding: 30px 4% 10px;
}

/* f-nav ----------------- */

@media screen and (min-width:1001px) {
  #footer .inner #f-nav>ul li a:hover {
    color: #5c8404;
  }
}

/* f-about ----------------- */

#footer .inner .f-about {
  width: 100%;
  max-width: 230px;
}

#footer .inner .f-about a {
  text-decoration: none;
}

#footer .inner .f-about .logo,
#footer .inner .f-about .txt {
  display: block;
  margin-bottom: 10px;
}

/* f-nav ----------------- */

#footer .inner #f-nav {
  display: flex;
  justify-content: flex-end;
  width: calc(100% - 230px);
  box-sizing: border-box;
}

#footer .inner #f-nav > ul {
  display: flex;
}

#footer .inner #f-nav > ul li {
  line-height: 1.8;
  margin-right: 2rem;
  margin-bottom: 10px;
}

#footer .inner #f-nav > ul li:nth-last-child(1) {
  margin-right: 0;
}

#footer .inner #f-nav > ul li a {
  text-decoration: none;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "Times New Roman", serif;
  display: inline-block;
  color: #1d1d1f;
  font-weight: 500;
}

/* copyright ----------------- */

#footer .copyright {
  margin-top: 20px;
  padding: 20px 0;
  border-top: 2px solid #d0e6d6;
  box-shadow: 5px 0 5px #dfe3e0;
}

#footer .copyright>.inner {
  text-align: left;
  display: block;
  font-size: 80%;
}

@media screen and (max-width: 1000px) {
  #footer {
    margin: 4% 0 0;
  }
  #footer .inner #f-nav > ul li {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  #footer .inner {
    align-items: center;
    flex-direction: column;
  }
  #footer .inner .f-about {
    margin-bottom: 20px;
  }
  #footer .inner #f-nav {
    width: 100%;
    justify-content: center;
    padding-right: 0;
  }
  #footer .inner #f-nav > ul {
    width: 100%;
    justify-content: space-between;
  }
}

@media screen and (max-width: 490px) {
  #footer .inner #f-nav > ul {
    flex-wrap: wrap;
  }
  #footer .inner #f-nav > ul li {
    width: calc(50% - 4px);
    margin: 0 8px 20px 0;
    box-sizing: border-box;
  }
  #footer .inner #f-nav > ul li:nth-child(2n+2) {
    margin: 0;
  }
}
/* --------------------------------------------------
Other
-------------------------------------------------- */

#up-top {
  position: fixed;
  bottom: 140px;
  right: 4vw;
  text-align: center;
  z-index: 990;
  visibility: hidden;
  transition: 500ms all ease-in-out;
}

#up-top a {
  text-align: center;
  text-decoration: none;
}

#up-top:hover {
  opacity: .7;
}

#up-top.ani {
  opacity: 0;
  transition: 300ms all ease-in-out;
}

#up-top.ani:not(.fixed) {
  transition: 100ms all ease-in-out;
}

#up-top.fixed {
  visibility: visible;
}

#up-top i {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 220%;
  color:#5c8404;
  font-weight: bold;
  box-sizing: border-box;
  transition: all 300ms ease-in-out;
}

#up-top:hover i {
  transform: translateY(-5px);
}

#up-top i::before {
  transform: translateX(.5px);
  transition: 300ms all ease-in-out;
}

#up-top:hover i::before {
  transform: translateY(-1px) translateX(.5px);
}

@media screen and (max-width: 1000px) {
  #up-top i {
    font-size: 180%;
  }
}

@media screen and (max-width: 480px) {
  #up-top {
      bottom: 20px !important;
  }
}


.hide {
  opacity: 0;
}

.btn:active {
  -webkit-box-shadow: none;
  box-shadow: none;
}