@charset "UTF-8";
/*-----common-----*/
* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
/*これ　↓　IEとSafari未対応*/
html{
  scroll-behavior: smooth;
}

body {
  animation: fadeIn 1s ease 0s 1 normal;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", メイリオ, Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.wrap {
  width: 1050px;
  margin: 0 auto;
  background-color: #fff;
  padding: 50px;
}
@media screen and (max-width:1049px) {
  .wrap {
    width: 100%;
    padding: 15px;
  }
}

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

a img {
  transition: 0.5s;
  backface-visibility: hidden;
}
a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

/*-----------------------------------*/
.offer_block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .offer_block {
    padding: 0 15px;
  }
}
.offer_block .leftcolumn {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .offer_block .leftcolumn {
    width: 100%;
  }
}
.offer_block .rightcolumn {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .offer_block .rightcolumn {
    width: 100%;
  }
}
.offer_block .ttl {
  font-size: 30px;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .offer_block .ttl {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .offer_block .thumbnail {
    margin-bottom: 15px;
  }
}
.offer_block .thumbnail img {
  width: 100%;
  height: auto;
}
.offer_block .price {
  font-size: 50px;
  line-height: 1.4;
  font-weight: bold;
  color: #BF0000;
}
@media screen and (max-width: 767px) {
  .offer_block .price {
    font-size: 24px;
  }
}
.offer_block .price span {
  font-size: 16px;
  color: #666;
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
  .offer_block .price span {
    font-size: 12px;
  }
}

.cart_block {
  margin-top: 40px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .cart_block {
    margin-top: 20px;
    padding: 0 15px;
    display: block;
  }
}
.cart_block .leftcolumn {
  width: 45%;
  order: 1;
}
@media screen and (max-width: 767px) {
  .cart_block .leftcolumn {
    width: 100%;
    margin-top: 30px;
  }
}
.cart_block .rightcolumn {
  width: 50%;
  order: 2;
}
@media screen and (max-width: 767px) {
  .cart_block .rightcolumn {
    margin-top: 20px;
    width: 100%;
  }
}
.cart_block .ttl {
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #BF0000;
}
.cart_block .ttl b {
  font-size: 18px;
  color: #000;
  margin: 0 5px;
}
.cart_block .ttl_rakuten {
  background: #BF0000;
}
.cart_block .ttl_amazon {
  background: #231F20;
}
.cart_block .ttl_yahoo {
  background: #EEEEEE;
}
.cart_block .ttl_rakuten,
.cart_block .ttl_amazon,
.cart_block .ttl_yahoo {
  padding: 10px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cart_block .ttl_rakuten img,
  .cart_block .ttl_amazon img,
  .cart_block .ttl_yahoo img {
    width: auto;
    height: 30px;
  }
}
.cart_block .cart_box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  .cart_block .cart_box {
    padding: 10px 0;
  }
}
.cart_block .cart_box + .cart_box {
  border-top: dotted 1px #666;
}
.cart_block .cart_box .thumb {
  width: 25%;
}
.cart_block .cart_box .thumb img {
  border: solid 1px #DDD;
}
.cart_block .cart_box .text {
  width: 40%;
  font-size: 16px;
  line-height: 1.8;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .cart_block .cart_box .text {
    font-size: 13px;
    padding-left: 10px;
  }
}
.cart_block .cart_box .text .num {
  font-weight: bold;
  line-height: 1.4;
}
.cart_block .cart_box .text .price {
  font-size: 30px;
  line-height: 1.4;
  font-weight: bold;
  color: #BF0000;
}
@media screen and (max-width: 767px) {
  .cart_block .cart_box .text .price {
    font-size: 18px;
  }
}
.cart_block .cart_box .text .price span {
  font-size: 14px;
  color: #666;
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
  .cart_block .cart_box .text .price span {
    font-size: 12px;
  }
}
.cart_block .cart_box .order {
  width: 35%;
  padding-left: 20px;
}
.cart_block .cart_box .order .btn {
  animation: hurueru 3s infinite;
}
.cart_block .cart_box .order .baloon {
  position: relative;
  margin-bottom: 20px;
  padding: 8px;
  width: 100%;
  background: #F5D9D9;
  color: #333;
  font-size: 14px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .cart_block .cart_box .order .baloon {
    padding: 5px;
    font-size: 12px;
  }
}
.cart_block .cart_box .order .baloon::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #F5D9D9;
}
.cart_block .cart_box .order .baloon b {
  color: #BF0000;
}

@keyframes hurueru {
  0% {
    transform: translateX(0);
  }
  5% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-10px);
  }
  25% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
/*テーブル---------------------------------*/
.spec_tbl table {
  border-collapse: collapse;
  table-layout: fixed;
  border: solid 1px #CBCBCB;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .spec_tbl table {
    border-bottom: none;
  }
}
.spec_tbl table th, .spec_tbl table td {
  padding: 15px 15px;
  border: solid 1px #CBCBCB;
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .spec_tbl table th, .spec_tbl table td {
    width: 100%;
    font-size: 13px;
    padding: 8px;
    display: block;
    border: none;
    border-bottom: solid 1px #CBCBCB;
  }
}
.spec_tbl table th {
  width: 25%;
  background: #F0F0F0;
  color: #333;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .spec_tbl table th {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .spec_tbl table tr {
    width: 100%;
    display: block;
  }
}

/*footer---------------------------------*/
footer {
  margin-top: 0px;
  background: #DDD;
  color: #333;
  padding: 15px;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  footer {
    margin-top: 40px;
    font-size: 13px;
  }
}

/*pagetop---------------------------------*/
.pagetop {
  position: fixed;
  right: 40px;
  bottom: 40px;
  text-align: right;
  z-index: 40;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .pagetop {
    right: 20px;
    bottom: 20px;
  }
}
.pagetop a {
  display: inline-block;
  padding: 20px;
  background: #999999;
  color: #FFF;
  text-align: center;
  text-decoration: none;
  border-radius: 3px;
  font-size: 0px;
  transition: background-color .5s;
  position: relative;
}
.pagetop a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  width: 12px;
  height: 12px;
  margin-right: -6px;
  margin-top: -4px;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}
.pagetop a:hover {
  background: #666666;
}

/*align---------------------------------*/
.alL {
  text-align: left !important;
}

.alR {
  text-align: right !important;
}

.alC {
  text-align: center !important;
}

/*margin---------------------------------*/
.mb0 {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 767px) {
  .mb0 {
    margin-bottom: 0 !important;
  }
}

.mb10 {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 767px) {
  .mb10 {
    margin-bottom: 5px !important;
  }
}

.mb20 {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 767px) {
  .mb20 {
    margin-bottom: 10px !important;
  }
}

.mb30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 767px) {
  .mb30 {
    margin-bottom: 15px !important;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 767px) {
  .mb40 {
    margin-bottom: 20px !important;
  }
}

.mb40 {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 767px) {
  .mb40 {
    margin-bottom: 25px !important;
  }
}

.mb60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 767px) {
  .mb60 {
    margin-bottom: 30px !important;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .mb80 {
    margin-bottom: 40px !important;
  }
}

.mb100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 767px) {
  .mb100 {
    margin-bottom: 50px !important;
  }
}

.mt0 {
  margin-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .mt0 {
    margin-top: 0 !important;
  }
}

.mt10 {
  margin-top: 10px !important;
}
@media screen and (max-width: 767px) {
  .mt10 {
    margin-top: 5px !important;
  }
}

.mt20 {
  margin-top: 20px !important;
}
@media screen and (max-width: 767px) {
  .mt20 {
    margin-top: 10px !important;
  }
}

.mt30 {
  margin-top: 30px !important;
}
@media screen and (max-width: 767px) {
  .mt30 {
    margin-top: 15px !important;
  }
}

.mt40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 767px) {
  .mt40 {
    margin-top: 20px !important;
  }
}

.mt40 {
  margin-top: 50px !important;
}
@media screen and (max-width: 767px) {
  .mt40 {
    margin-top: 25px !important;
  }
}

.mt60 {
  margin-top: 60px !important;
}
@media screen and (max-width: 767px) {
  .mt60 {
    margin-top: 30px !important;
  }
}

.mt80 {
  margin-top: 80px !important;
}
@media screen and (max-width: 767px) {
  .mt80 {
    margin-top: 40px !important;
  }
}

.mt100 {
  margin-top: 100px !important;
}
@media screen and (max-width: 767px) {
  .mt100 {
    margin-top: 50px !important;
  }
}

/*padding---------------------------------*/
.pb0 {
  padding-bottom: 0 !important;
}
@media screen and (max-width: 767px) {
  .pb0 {
    padding-bottom: 0 !important;
  }
}

.pb10 {
  padding-bottom: 10px !important;
}
@media screen and (max-width: 767px) {
  .pb10 {
    padding-bottom: 5px !important;
  }
}

.pb20 {
  padding-bottom: 20px !important;
}
@media screen and (max-width: 767px) {
  .pb20 {
    padding-bottom: 10px !important;
  }
}

.pb30 {
  padding-bottom: 30px !important;
}
@media screen and (max-width: 767px) {
  .pb30 {
    padding-bottom: 15px !important;
  }
}

.pb40 {
  padding-bottom: 40px !important;
}
@media screen and (max-width: 767px) {
  .pb40 {
    padding-bottom: 20px !important;
  }
}

.pb50 {
  padding-bottom: 40px !important;
}
@media screen and (max-width: 767px) {
  .pb50 {
    padding-bottom: 25px !important;
  }
}

.pb60 {
  padding-bottom: 60px !important;
}
@media screen and (max-width: 767px) {
  .pb60 {
    padding-bottom: 30px !important;
  }
}

.pb80 {
  padding-bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .pb80 {
    padding-bottom: 40px !important;
  }
}

.pb100 {
  padding-bottom: 100px !important;
}
@media screen and (max-width: 767px) {
  .pb100 {
    padding-bottom: 50px !important;
  }
}

.pt0 {
  padding-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .pt0 {
    padding-top: 0 !important;
  }
}

.pt10 {
  padding-top: 10px !important;
}
@media screen and (max-width: 767px) {
  .pt10 {
    padding-top: 5px !important;
  }
}

.pt20 {
  padding-top: 20px !important;
}
@media screen and (max-width: 767px) {
  .pt20 {
    padding-top: 10px !important;
  }
}

.pt30 {
  padding-top: 30px !important;
}
@media screen and (max-width: 767px) {
  .pt30 {
    padding-top: 15px !important;
  }
}

.pt40 {
  padding-top: 40px !important;
}
@media screen and (max-width: 767px) {
  .pt40 {
    padding-top: 20px !important;
  }
}

.pt50 {
  padding-top: 50px !important;
}
@media screen and (max-width: 767px) {
  .pt50 {
    padding-top: 25px !important;
  }
}

.pt60 {
  padding-top: 60px !important;
}
@media screen and (max-width: 767px) {
  .pt60 {
    padding-top: 30px !important;
  }
}

.pt80 {
  padding-top: 80px !important;
}
@media screen and (max-width: 767px) {
  .pt80 {
    padding-top: 40px !important;
  }
}

.pt100 {
  padding-top: 100px !important;
}
@media screen and (max-width: 767px) {
  .pt100 {
    padding-top: 50px !important;
  }
}

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

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



.shop_kanban{
  background-color:#f2f2f2;
  text-align: center;
  margin:0 auto;
}

.kanban_img{
  width: 1050px;
  text-align: center;
  margin:0 auto;
}
@media screen and (max-width: 1049px) {
  .kanban_img{
    max-width:100%;
  }
}

.table_width{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}


.table_width  tr td img{
  max-width: 100%;
  height: auto;
}
.table_width tr td{
padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .table_width tr td{
  padding-bottom: 10px;
}
}

.table_width2{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border: 10px solid #c61a1a;
  padding: 30px;
}

@media screen and (max-width: 768px) {
  .table_width2{
  border: 5px solid #c61a1a;
  padding: 15px;
}
}


.table_width2  tr td img{
  max-width: 100%;
  height: auto;
}
.table_width2 tr td{
padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .table_width2 tr td{
  padding-bottom: 10px;
}
}



.contents_bg{
  background-color:#a73836;
}

.main_image{
  max-width: 100%;


.left_pd{
  padding-left: 10px;
}
@media screen and (max-width: 1049px) {
  .left_pd{
  padding-left: 5px;
}
}

.right_pd{
  padding-right: 10px;
}
@media screen and (max-width: 1049px) {
  .right_pd{
  padding-right: 5px;
}
}
