@charset "UTF-8";
/*
Theme Name :
Theme URI :
Author: SCARAMANGA INC.
Author URI: https://scaramanga.jp
Description:
Version: 1.0
*/
/*---base------------------------------------------------------------------*/
/* reset
========================================================================== */
body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td,
figure,
figcaption {
  margin: 0;
  padding: 0;
  font: inherit;
  vertical-align: baseline;
}

input,
textarea {
  margin: 0;
  font-size: 100%;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

fieldset,
img {
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

q:after,
q:before {
  content: '';
}

a,
input {
  outline: none;
}

input,
textarea {
  border-radius: 0;
}

input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
}

abbr,
acronym {
  border: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

@media all and (-ms-high-contrast: none) {
  html {
    font-family: Verdana, Meiryo, sans-serif;
  }
}

@media all and (-ms-high-contrast: active) {
  html {
    font-family: Verdana, Meiryo, sans-serif;
  }
}

body {
  color: #171717;
  background: #FFFFFF;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: 0.025em;
  line-height: 2;
  position: relative;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  color: #171717;
  text-decoration: none;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

a img {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

a:hover {
  text-decoration: none;
  opacity: .6;
  color: #171717;
}

a:active {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

/* all
---------------------------------------------------------------------------------------*/
.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.text_left {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}

/* animate
---------------------------------------------------------------------------------------*/
.fadein,
.fadein_up,
.fadein_up_slow,
.faden_filter {
  opacity: 0;
}

.fadein_filter {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.animated {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated_first {
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*!------------------------------------*
fadeIn
\*!------------------------------------*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/*!------------------------------------*
fadeInUp
\*!------------------------------------*/
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*!------------------------------------*
fadeInUp_slow
\*!------------------------------------*/
@-webkit-keyframes fadeInUp_slow {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 15px, 0);
    transform: translate3d(0, 15px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp_slow {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 15px, 0);
    transform: translate3d(0, 15px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp_slow {
  -webkit-animation-name: fadeInUp_slow;
  animation-name: fadeInUp_slow;
}

/*!------------------------------------*
fadeIn_filter
\*!------------------------------------*/
@-webkit-keyframes fadeIn_filter {
  from {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
  }
  to {
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: grayscale(0);
  }
}

@keyframes fadeIn_filter {
  from {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
  }
  to {
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: grayscale(0);
  }
}

.fadeIn_filter {
  -webkit-animation-name: fadeIn_filter;
  animation-name: fadeIn_filter;
}

/*!------------------------------------*
effect
\*!------------------------------------*/
.effect_bg {
  opacity: 0;
}

.show2 .effect_bg {
  opacity: 1;
}

.effect {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
}

.effect::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(to right, #171717 0%, #171717 100%);
  z-index: 2;
  -webkit-transform: translate3d(-101%, 0, 0);
  transform: translate3d(-101%, 0, 0);
  -webkit-transition: 0.3s all 0.1s cubic-bezier(0, 1.07, 1, 1);
  transition: 0.3s all 0.1s cubic-bezier(0, 1.07, 1, 1);
}

.show.effect::before {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.show2.effect::before {
  -webkit-transform: translate3d(105%, 0, 0);
  transform: translate3d(105%, 0, 0);
}

/* _header
---------------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .header {
    width: 230px;
    height: 100vh;
    background: #FAFAFA;
    padding: 30px;
    position: sticky;
    top: 0;
  }
}

@media screen and (max-width: 767px) {
  .header {
    padding: 0;
    z-index: 1;
    background: none;
    width: 75px;
    margin: auto;
  }
}

.header .header_logo {
  margin: 0 5px 30px;
}

@media screen and (max-width: 767px) {
  .header .header_logo {
    margin: 10px 0;
  }
}

.g_nav.active {
  left: 0 !important;
}

.g_nav {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .g_nav {
    margin-top: 0;
    position: fixed;
    width: 90%;
    max-width: 320px;
    height: 100vh;
    top: 0;
    left: -100%;
    background: #FFFFFF;
    color: #171717;
    z-index: 998;
    overflow: scroll;
    padding: 80px 20px 20px;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
  }
}

.g_nav .g_nav_inr .nav_main h2 {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 1.8rem;
  margin-bottom: 6px;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

.g_nav .g_nav_inr .nav_main h2:after, .g_nav .g_nav_inr .nav_main h2:before {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #171717;
}

.g_nav .g_nav_inr .nav_main h2:before {
  margin-right: 1rem;
}

.g_nav .g_nav_inr .nav_main h2:after {
  margin-left: 1rem;
}

.g_nav .g_nav_inr .nav_main .nav li {
  margin-bottom: 10px;
}

.g_nav .g_nav_inr .nav_main .nav li a {
  display: block;
  padding-right: 16px;
  font-size: 1.5rem;
  position: relative;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}

.g_nav .g_nav_inr .nav_main .nav li a:after {
  content: '';
  width: 3px;
  height: 3px;
  border: 0;
  border-top: solid 1px #171717;
  border-right: solid 1px #171717;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -2px;
  z-index: 2;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.g_nav .g_nav_inr .nav_main .nav li a:hover:after {
  right: 0;
}

.g_nav .nav_guide {
  margin: 25px 0 20px;
  padding: 15px 0;
  border-top: 1px solid #171717;
  border-bottom: 1px solid #171717;
}

.g_nav .nav_guide li a {
  font-size: 1.4rem;
  padding-left: 30px;
}

.g_nav .nav_guide li .ico_delivery {
  background: url("https://img21.shop-pro.jp/PA01481/986/etc/ico_delivery.png") left center no-repeat;
  background-size: 20px;
}

.g_nav .nav_guide li .ico_price {
  background: url("https://img21.shop-pro.jp/PA01481/986/etc/ico_price.png") left center no-repeat;
  background-size: 16px;
}

.g_nav .nav_guide li .ico_noshi {
  background: url("https://img21.shop-pro.jp/PA01481/986/etc/ico_noshi.png") left center no-repeat;
  background-size: 16px;
}

.g_nav .sns_area {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

.g_nav .sns_area li a {
  display: block;
  width: 22px;
  margin: 0 15px 0 0;
}

.g_nav .sns_area li a img {
  vertical-align: middle;
}

/*----------ハンバーガーアイコン----------*/
.hamburger_area {
  position: fixed;
  top: 10px;
  left: 10px;
  background: #171717;
  width: 60px;
  height: 60px;
  z-index: 99998;
  border-radius: 50%;
}

.hamburger_area:hover {
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .hamburger_area {
    display: none;
  }
}

.hamburger {
  display: block;
  position: absolute;
  top: 25px;
  left: 15px;
  width: 30px;
  height: 10px;
  z-index: 99999;
}

.hamburger .hamburger_line {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  border-radius: 10px;
}

.hamburger .hamburger_line:nth-of-type(1) {
  top: 0;
}

.hamburger .hamburger_line:nth-of-type(2) {
  bottom: 0;
}

.hamburger p {
  margin-top: 20px;
  font-size: 1.2rem;
  letter-spacing: 0.4em;
}

.active .hamburger_line:nth-of-type(1) {
  top: -4px;
}

.active .hamburger_line:nth-of-type(2) {
  bottom: -5px !important;
}

.hamburger .hamburger_line:nth-of-type(1) {
  -webkit-animation: menu-ber01 0.75s forwards;
  animation: menu-ber01 0.75s forwards;
}

.hamburger .hamburger_line:nth-of-type(2) {
  -webkit-animation: menu-ber02 0.75s forwards;
  animation: menu-ber02 0.75s forwards;
}

.active .hamburger_line:nth-of-type(1) {
  -webkit-animation: active-menu-ber01 0.75s forwards;
  animation: active-menu-ber01 0.75s forwards;
}

.active .hamburger_line:nth-of-type(2) {
  -webkit-animation: active-menu-ber03 0.75s forwards;
  animation: active-menu-ber03 0.75s forwards;
}

@-webkit-keyframes menu-ber01 {
  0% {
    -webkit-transform: translateY(8px) rotate(30deg);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-ber01 {
  0% {
    transform: translateY(8px) rotate(30deg);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@-webkit-keyframes menu-ber02 {
  0% {
    -webkit-transform: translateY(-8px) rotate(-30deg);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-ber02 {
  0% {
    transform: translateY(-8px) rotate(-30deg);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@-webkit-keyframes active-menu-ber01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(10px) rotate(30deg);
  }
}

@keyframes active-menu-ber01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(10px) rotate(30deg);
  }
}

@-webkit-keyframes active-menu-ber03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(-30deg);
  }
}

@keyframes active-menu-ber03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(-8px) rotate(-30deg);
  }
}

/* _page
---------------------------------------------------------------------------------------*/
.wrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  position: relative;
}

.wrapper .main_area {
  width: -webkit-calc(100% - 230px);
  width: calc(100% - 230px);
  background: url("https://img21.shop-pro.jp/PA01481/986/etc/bg_top.png") top right no-repeat;
  background-size: 350px;
}

@media screen and (max-width: 767px) {
  .wrapper .main_area {
    width: 100%;
    background: none;
  }
}

.container {
  max-width: 1280px;
  margin: auto;
  padding: 0 40px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .container {
    padding: 0 5%;
  }
}

.price_free {
  position: fixed;
  z-index: 999;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .price_free {
    width: 320px;
    padding: 8px 20px 7px;
    background: #B60005;
    border-radius: 0 0 10px 10px;
    color: #FFFFFF;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
}

@media screen and (max-width: 767px) {
  .price_free {
    width: 250px;
    padding: 8px 20px 7px;
    background: #B60005;
    border-radius: 10px 10px 0 0;
    color: #FFFFFF;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
}

.btn_cart {
  position: fixed;
  z-index: 999;
}

@media screen and (min-width: 768px) {
  .btn_cart {
    bottom: 20px;
    right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .btn_cart {
    top: 10px;
    right: 10px;
  }
}

.btn_cart a {
  display: block;
  width: 100px;
  height: 100px;
  background: #B60005;
  border-radius: 50%;
  color: #FFFFFF;
  text-align: center;
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .btn_cart a {
    width: 60px;
    height: 60px;
  }
  .btn_cart a span {
    display: none;
  }
}

.btn_cart a img {
  padding: 15px 30px 3px;
}

@media screen and (max-width: 767px) {
  .btn_cart a img {
    padding: 18px;
  }
}

.btn_cart a:hover {
  background: #171717;
}

.main_nav {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  padding: 50px 0;
}

@media screen and (max-width: 767px) {
  .main_nav {
    padding: 10px 0;
  }
}

.main_nav .body_copy {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}

.main_nav .body_copy p {
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .main_nav .body_copy p {
    font-size: 1.1rem;
  }
}

.main_nav .body_copy h3 {
  font-size: 4rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .main_nav .body_copy h3 {
    font-size: 3rem;
  }
}

.main_nav .body_copy h3 span {
  font-size: 1.2rem;
  border-bottom: 1px solid #B60005;
  padding-bottom: 5px;
  margin-left: 16px;
}

@media screen and (max-width: 767px) {
  .main_nav .body_copy h3 span {
    font-size: 1rem;
  }
}

.main_nav .login_area {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  line-height: 1.78;
}

@media screen and (max-width: 767px) {
  .main_nav .login_area {
    position: absolute;
    top: -35px;
    right: 0;
  }
}

.main_nav .login_area a {
  writing-mode: vertical-rl;
  display: block;
}

.main_nav .login_area ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.main_nav .login_area ul li {
  margin: 0 10px;
  writing-mode: vertical-rl;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}

.main_nav .login_area ul li a {
  display: block;
  border-left: 1px solid #B60005;
  letter-spacing: 0.3em;
  background: #FFFFFF;
}

@media screen and (max-width: 767px) {
  .main_nav .login_area ul li a {
    font-size: 1.2rem;
  }
}

.main_nav .login_area ul li a:hover {
  opacity: 0.6;
}

.section_title {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .section_title {
    margin-bottom: 25px;
  }
}

.section_title h2 {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 3.2rem;
}

@media screen and (max-width: 767px) {
  .section_title h2 {
    font-size: 2.2rem;
  }
}

.section_title p {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}

@media screen and (max-width: 767px) {
  .section_title p {
    font-size: 1.2rem;
  }
}

.page_title {
  border-top: 1px solid #171717;
  border-bottom: 1px solid #171717;
  padding: 30px 0;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .page_title {
    margin-bottom: 25px;
    margin-top: 15px;
    padding: 15px 0;
    text-align: center;
  }
}

.page_title h1 {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 3.2rem;
}

@media screen and (max-width: 767px) {
  .page_title h1 {
    font-size: 2.6rem;
  }
}

.cat_reed {
  margin-bottom: 90px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}

@media screen and (max-width: 767px) {
  .cat_reed {
    margin-bottom: 60px;
  }
}

.item_list {
  margin: 0 -25px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1023px) {
  .item_list {
    margin: 0 -8px;
  }
}

.item_list .item_card {
  width: 33%;
  padding: 0 25px;
  margin-bottom: 60px;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .item_list .item_card {
    width: 50%;
    padding: 0 8px;
    margin-bottom: 45px;
  }
}

.item_list .item_card a {
  display: block;
}

.item_list .item_card a:hover .img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.item_list .item_card a .img {
  overflow: hidden;
}

.item_list .item_card a h3 {
  margin-top: 15px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .item_list .item_card a h3 {
    font-size: 1.5rem;
  }
}

.item_list .item_card a p {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .item_list .item_card a p {
    font-size: 1.3rem;
  }
}

.viewd_item_section {
  margin: 120px 0 0;
  background: #f3f0eb;
  padding: 90px 0;
}

@media screen and (max-width: 767px) {
  .viewd_item_section {
    padding: 45px 0;
  }
}

.viewd_item_section .viewd_item_section_list .item_card {
  margin: 0 25px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .viewd_item_section .viewd_item_section_list .item_card {
    margin: 0 5px;
  }
}

.viewd_item_section .viewd_item_section_list .item_card a {
  display: block;
}

.viewd_item_section .viewd_item_section_list .item_card a:hover .img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.viewd_item_section .viewd_item_section_list .item_card a .img {
  overflow: hidden;
}

.viewd_item_section .viewd_item_section_list .item_card a h3 {
  margin-top: 15px;
  font-size: 1.6rem;
}

.viewd_item_section .viewd_item_section_list .item_card a p {
  font-size: 1.4rem;
}

.c-btn-cart {
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  padding: 25px;
  border: none;
  border-radius: 0;
  width: 100%;
  font-size: 14px;
  font-weight: bold;
  background: #B60005;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.c-btn-cart:hover {
  background: #B60005;
  color: #ffffff;
  text-decoration: none;
}

.c-btn-cart .is-disabled {
  background: #171717;
  cursor: default;
}

.c-btn-cart .is-disabled:hover {
  background: rgba(216, 216, 216, 0.8);
}

.c-btn-cart .is-soldout {
  background: #ccc;
  cursor: default;
}

.c-btn-cart .is-soldout:hover {
  background: #ccc;
}

.c-btn-cart .is-membersonly {
  background: #171717;
  cursor: default;
}

.c-btn-cart .is-membersonly:hover {
  background: #171717;
}

/* slick
---------------------------------------------------------------------------------------*/
.viewd_item_section_list .slick-prev,
.viewd_item_section_list .slick-next {
  top: 50%;
  width: 30px;
  height: 30px;
  transition: all 0.4s ease;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .viewd_item_section_list .slick-prev,
  .viewd_item_section_list .slick-next {
    width: 45px;
    height: 45px;
  }
}

.viewd_item_section_list .slick-prev:before,
.viewd_item_section_list .slick-next:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 10px;
  width: 15px;
  height: 15px;
  border-left: 1px solid #000000;
  border-top: 1px solid #000000;
  transition: all 0.4s ease;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .viewd_item_section_list .slick-prev:before,
  .viewd_item_section_list .slick-next:before {
    top: 15px;
  }
}

.viewd_item_section_list .slick-prev {
  left: 0;
}

@media screen and (max-width: 767px) {
  .viewd_item_section_list .slick-prev {
    left: 0px;
  }
}

.viewd_item_section_list .slick-prev:before {
  transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .viewd_item_section_list .slick-prev:before {
    left: 17px;
  }
}

.viewd_item_section_list .slick-next {
  right: 0;
}

@media screen and (max-width: 767px) {
  .viewd_item_section_list .slick-next {
    right: 0px;
  }
}

.viewd_item_section_list .slick-next:before {
  left: 4px;
  transform: rotate(135deg);
}

@media screen and (max-width: 767px) {
  .viewd_item_section_list .slick-next:before {
    left: 13px;
  }
}

/* _footer
---------------------------------------------------------------------------------------*/
footer {
  background: #FAFAFA;
  padding: 90px 20px;
  text-align: center;
}

footer .footer_inr {
  margin-bottom: 60px;
}

footer .footer_inr .footer_logo {
  width: 160px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  footer .footer_inr .footer_logo {
    width: 90px;
  }
}

footer .footer_inr .footer_nav_area {
  margin-top: 30px;
}

footer .footer_inr .footer_nav_area h3 {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 2rem;
  margin-bottom: 30px;
}

footer .footer_inr .footer_nav_area ul {
  text-align: center;
}

footer .footer_inr .footer_nav_area ul li {
  display: inline-block;
  margin: 0 10px;
}

@media screen and (max-width: 767px) {
  footer .footer_inr .footer_nav_area ul li {
    display: block;
    margin: 10px 0;
  }
}

footer .credit_area h4 {
  width: 200px;
  margin: 0 auto 20px;
}

@media screen and (max-width: 767px) {
  footer .credit_area h4 {
    width: 120px;
  }
}

footer .credit_area .copyright {
  font-size: 1.1rem;
}
