@charset "UTF-8";
@import url("https://image.raku-uru.jp/cms/fontcss/font.css");

/* ▼reset */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}:where([hidden]:not([hidden='until-found'])){display:none!important}:where(html){-webkit-text-size-adjust:none;color-scheme:dark light}@supports not (min-block-size:100dvb){:where(html){block-size:100%}}@media (prefers-reduced-motion:no-preference){:where(html:focus-within){scroll-behavior:smooth}}:where(body){block-size:100%;block-size:100dvb;line-height:1.5;font-family:system-ui,sans-serif;-webkit-font-smoothing:antialiased}:where(input,button,textarea,select){font:inherit;color:inherit}:where(textarea){resize:vertical;resize:block}:where(button,label,select,summary,[role='button'],[role='option']){cursor:pointer}:where(:disabled){cursor:not-allowed}:where(label:has(>input:disabled),label:has(+input:disabled)){cursor:not-allowed}:where(button){border-style:solid}:where(a){text-underline-offset:.2ex}:where(ul,ol){list-style:none}:where(img,svg,video,canvas,audio,iframe,embed,object){display:block}:where(img,picture,svg){max-inline-size:100%;block-size:auto}:where(p,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word}:where(h1,h2,h3){line-height:calc(1em+0.5rem)}:where(hr){border:none;border-block-start:1px solid;color:inherit;block-size:0;overflow:visible}:where(:focus-visible){outline:2px solid var(--focus-color,Highlight);outline-offset:2px}:where(.visually-hidden:not(:focus,:active,:focus-within,.not-visually-hidden)){clip-path:inset(50%)!important;height:1px!important;width:1px!important;overflow:hidden!important;position:absolute!important;white-space:nowrap!important;border:0!important}

/* ===============================================
# 全体
=============================================== */

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: .1em;
  color: #333333;
  background-color: #ffffff;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #333333;
}

a:visited {
  color: #333333;
}

.only-pc {
  display: block!important;
}

.only-sp {
  display: none!important;
}

p {
  color: #333333;
  line-height: normal;
}

span {
  font-size: 12px;
}

.section__inner {
  padding: 60px 4%;
  max-width: calc(1300px + 8%);
  margin: 0 auto;
  text-align: center;
}

.text-align-c {
  text-align: center;
}
.text-align-l {
  text-align: left;
}
.text-align-r {
  text-align: right;
}

@media screen and (max-width:1260px) {
  html {
    font-size: .8vw;
  }
}

@media only screen and (min-width:751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

@media only screen and (max-width:750px) {
  html {
    font-size: 1.65vw;
  }
  .only-pc {
    display: none!important;
  }
  .only-sp {
    display: block!important;
  }
  /* レスポンシブ時の画像トリミング */
  li .flex-img__container {
    position: relative;
  }
  li .flex-img__container::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  li .flex-img__container img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
  }
}

@media only screen and (max-width:400px) {
  .only-401 {
    display: none !important;
  }
}
/* ===============================================
# 共通
=============================================== */
#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#main > .inner {
  max-width: calc(1300px + 8%);
  padding: 4%;
  margin: 0 auto;
}
/* 商品詳細にはpadding-topを0に */
#main > .item__detail {
  padding-top: 0;
}

.main > .main-article {
  max-width: calc(1300px + 8%);
  padding: 4%;
  margin: 0 auto;
}

.main-article .ttl {
  text-align: center;
  margin-bottom: 50px;
}

.main-article .ttl h2 {
  font-size: 24px;
}

@media screen and (max-width:750px) {
  .main-article .ttl h2 {
    font-size: max(20px, 2.4rem);
  }
}
/* パンくず */

.breadcrumbs {
  padding: 1.5rem 0 1.5rem 4%;
  text-align: left;
  max-width: calc(1300px + 8%);
  margin: auto;
}

.breadcrumbs strong {
  font-weight: normal;
}

.breadcrumbs li {
  max-width: 100%;
  display: inline-block;
  font-size: max(10px, 1rem);
  line-height: 1.78;
}

.breadcrumbs li a {
  text-decoration: underline;
}

.breadcrumbs li::after {
  content: " > ";
}

.breadcrumbs li:last-child::after {
  content: "";
}

@media screen and (min-width: 750px) {
  .breadcrumbs li {
    font-size: max(12px, 1rem);
  }
}
/* ヘッダー内検索フォーム */

.search-container form {
  display: flex;
  min-width: 260px;
  justify-content: end;
}

.search-container .search-textbox {
  border-radius: 9999px 0 0 9999px;
  border: none;
  padding: 2% 7%;
  background-color: #f2f2f2;
  font-size: 14px;
  width: 100%;
}

.search-container .search-textbox:focus {
  outline: none;
}

.search-container .search-textbox::placeholder {
  color: #bebebe;
}

.search-container .search-btn {
  border-radius: 0 9999px 9999px 0;
  background-color: #64534b;
  color: #ffffff;
  border: none;
  padding: 4%;
}

.search-container .search-btn img {
  min-width: 14px;
}

@media screen and (min-width:1201px) {
  .search-container .search-textbox {
    min-width: 300px;
  }
}
/* ヘッダー直下検索フォーム(SP) */

.search-container--sp {
  display: none;
}

@media screen and (max-width:900px) {
  .search-container--sp {
    display: block;
    padding: 10px 4%;
    background-color: #f6f6f6;
  }
  .search-container--sp form {
    justify-content: center;
    box-sizing: border-box;
    padding: 0;
  }
  .header__ham--menu .search-container--sp {
    padding: 20px 0 0;
    background-color: #f7f4ef;
  }
  .search-container .search-textbox {
    width: 100%;
    background-color: #ffffff;
    padding: 9px 3%;
  }
  .search-container .search-btn {
    padding: 2% 3%;
  }
}
/* 商品テキスト */

.item-name, .item-price {
  font-size: 18px;
}

.item-price--tax {
  color: #807f7f;
  font-size: 12px;
}

.free-shipping {
  font-size: 12px;
  color: #ffffff;
  background-color: #dc2b41;
  padding: 1px 3px 2px;
  border-radius: 3px;
}

@media screen and (max-width:750px) {
  .item-price--tax, .free-shipping {
    font-size: clamp(1rem, 0.814rem + 0.93vw, 1.25rem);
  }
  .item-name, .item-price {
    font-size: max(14px, 1.8rem);
  }
}
/* SP時の画像 */

.flex-img__container {
  position: relative;
}

@media only screen and (max-width:750px) {
  li .flex-img__container {
    position: relative;
  }
  li .flex-img__container::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  li .flex-img__container img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
  }
}

/* ===============================================
# pager
=============================================== */
/* ページ送り */

.pager {
  position: relative;
  margin: 0 auto;
  text-align: center;
  width: 94%;
}

.pager .prev, .pager .next {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  height: 20px;
}

.pager .prev a, .pager .next a {
  position: relative;
  line-height: 20px;
}

.pager .prev span, .pager .next span {
  display: none;
}

.pager .prev a::after, .pager .next a::after {
  position: absolute;
  width: 14px;
}

.pager .prev {
  left: 0;
}

.pager .prev a {
  padding-left: 24px;
}

.pager .prev a::after {
  left: 0;
  content: "\e905";
  font-family: "icomoon";
  font-size: 16px;
}

.pager .next {
  right: 0;
}

.pager .next a {
  padding-right: 24px;
}

.pager .next a::after {
  right: 0;
  content: "\e90b";
  font-family: "icomoon";
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .pager {
    width: 60%;
  }
  .pager .prev span, .pager .next span {
    display: inline;
  }
}
/* □ */

.page-num3 {
  display: inline-block;
}

.page-num3 ul {
  font-size: 0;
}

.page-num3 ul li {
  font-size: 14px;
  display: inline-block;
  margin: 0 5px;
}

.page-num3 ul li a {
  display: block;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 32px;
  border: 1px solid #b30202;
  color: #b30202;
}

.page-num3 ul li a:hover {
  background-color: #b30202;
  color: #fff;
  text-decoration: none;
}

.page-num3 ul li span a {
  font-weight: bold;
  background-color: #b30202;
  color: #fff;
}
/* ===============================================
# バッジ
=============================================== */

  .icon-badge72991 {
    position: absolute;
    top: 5px;
    z-index: 1;
  }
  .icon-badge72991::before {
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    font-size: 10px;
    line-height: 14px;
    text-align: center;
    z-index: 1;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
  }
/* NEWバッジ*/
.icon-badge72991::before {
  width: 50px;
  height: 60px;
  background-image: url("https://image.raku-uru.jp/01/24876/74/new_1684312980455.png");
  background-repeat: no-repeat;
  position: absolute;
  top: -10px;
  left: 10px;
  background-size: contain;
  border-radius: 0;
  }
  .item-detail-photo.icon-badge72991 {
    z-index: initial;
  }
  .item-detail-photo.icon-badge72991::before {
    position: absolute;
    left: 0;
  }
  .icon-badge72992 {
    position: absolute;
    top: 5px;
    z-index: 1;
  }
  .icon-badge72992::before {
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    font-size: 10px;
    line-height: 14px;
    text-align: center;
    z-index: 1;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
  }
/*  おすすめバッジ*/
  .icon-badge72992::before {
    content: "おすすめ";
    background: #009700;
    color: #fff;
  }
  .item-detail-photo.icon-badge72992 {
    z-index: initial;
  }
  .item-detail-photo.icon-badge72992::before {
    position: absolute;
    left: 0;
  }
  .icon-badge72993 {
    position: absolute;
    top: 5px;
    z-index: 1;
  }
  .icon-badge72993::before {
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    font-size: 10px;
    line-height: 14px;
    text-align: center;
    z-index: 1;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
  }
/* 人気バッジ */
  .icon-badge72993::before {
    content: "人気";
    background: #27add8;
    color: #fff;
  }
  .item-detail-photo.icon-badge72993 {
    z-index: initial;
  }
  .item-detail-photo.icon-badge72993::before {
    position: absolute;
    left: 0;
  }

/* ===============================================
# 商品管理クラス
=============================================== */

.item-info .item-nonstock {
  display: block;
  font-size: 11px;
  line-height: 18px;
  padding: 0 3px;
  text-align: center;
  color: #ec0000;
}
/* ===============================================
# ロゴ
=============================================== */

.logo img {
  min-width: 120px;
}

img.logo-sp {
  min-width: 40px;
  max-width: 50px;
  width: 100%;
}

/* ===============================================
# アニメーション関連
=============================================== */
.fadeIn {
  transition: 1s;
  opacity: 0;
  transform: translateY(25px);
}

.fadeIn.animated {
  opacity: 1;
  transform: translateY(0);
}

.fade-right {
  transition: 1s;
  opacity: 0;
  transform: translateX(30px);
}
.fade-right.animated {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  transition: 1s;
  opacity: 0;
  transform: translateX(-30px);
}
.fade-left.animated {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (min-width:751px) {
@keyframes shake-anim {
  0% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-3px); }
  100% { transform: translateX(0); }
}
.shake-anim:hover img {
  animation: shake-anim 0.5s ease-out 1;
}
@keyframes up-anim {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  75% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}
.up-anim:hover img {
  animation: up-anim 0.5s 1;
}
}
@media screen and (max-width:750px) {
  @keyframes shake-anim {
    0% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    75% { transform: translateX(-3px); }
    100% { transform: translateX(0); }
  }
  .shake-anim:active img {
    animation: shake 0.5s ease-out 1;
  }
  @keyframes up-anim {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    75% { transform: translateY(-3px); }
    100% { transform: translateY(0); }
  }
  .up-anim:active img {
    animation: up-anim 0.5s 1;
  }
  }
/* ===============================================
# ヘッダー
=============================================== */
/* 最上部 */

header .header__top {
  width: 100%;
  background-color: #b30202;
  text-align: center;
  padding: 15px 4%;
  font-size: 14px;
  font-weight: lighter;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s;
}

header .header__top p {
  color: #ffffff;
}

.header__top--br {
  display: none !important;
}

@media screen and (max-width:1000px) and (min-width:520px) {
  .header__top--br {
    display: block !important;
  }
}
@media screen and (max-width:750px) {
  header .header__top {
    font-size: 12px;
    padding: 10px 4%;
  }
}

/* ヘッダー固定 */
header{
  z-index: 10;
}
header #header__wrapper {
    transition: all 0.5s;
}
header #header__wrapper.header-fixed {
  position: fixed;
  z-index: 5;
  background-color: #f6f6f6;
  width: 100%;
  top: 0;
  transition: all 0.5s;
}
header #header__wrapper.header-fixed .header__top {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
  transform: translateY(-150%);
  left: 0;
}
header #header__wrapper.header-fixed .header__menu--container {
  padding: 8px 6% 15px 1.5%;
  border-bottom: 1px solid #fff;
  transition: all 0.5s;
}
header #header__wrapper.header-fixed .header__logo img  {
  width: 90%;
  transition: all 0.5s;
}

header .header__menu--container {
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  display: flex;
  justify-content: space-between;
  padding: 15px 6% 15px 1.5%;
  align-items: center;
  gap: 1.5vw;
  transition: all 0.5s;
  position: relative;
}

header .header__menu--right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__menu--icon {
  text-align: center;
  width: 68px;
}

.header__menu--icon a {
  width: 68px;
  display: block;
}

.header__menu--icon img {
  margin: 0 auto;
  max-width: 45px;
}

.header__menu--icon span {
  display: block;
  margin: 0 auto;
  color: #b30202;
  font-weight: bold;
  white-space: nowrap;
}

.header__menu--contact {
  margin-left: -10px;
}

.header__menu--cart {
  margin-left: -10px;
}
.header__menu--cart a{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.header__menu--cart.--signup {
  background-color: #b30202;
}
@media screen and (min-width:751px) {
  .header__menu--cart.--signup {
    padding: 20px 0 10px;
    margin: -20px 0 -10px;
    border-radius: 0 0 10px 10px;
  }
}
.header__menu--cart.--signup span{
  color: #fff;
}

.header__menu--entry a {
  font-size: 12px;
  color: #ffffff;
  background-color: #b30202;
  border-radius: 20px;
  padding: 15px 25px;
  white-space: nowrap;
  border-radius: 100px;
  font-weight: bold;
  border: 2px solid #b30202;
  width: 100%;
  max-width: 100%;
  text-align: center;
}
.header__menu--entry a.--white {
  padding: 5px 20px;
    color: #b30202;
    background-color: #fff;
    font-size: 12px;
}
.header__ham--menu .header__menu--entry {
  padding: 10px 0 30px;
}
.header__ham--menu .header__menu--entry p {
  text-align: center;
  margin: 0 0 15px;
}
.header__ham--menu .header__menu--entry p span{
  font-weight: bold;
  text-align: center;
  color: #b30202;
  border-bottom: 2px solid;
  display: inline;
  font-size: 18px!important;
}
.header__ham--menu .header__menu--entry p span span{
  display: inline-block;
}
.header__menu--entry__btn {
    border-radius: 100px;
    padding: 20px!important;
    font-size: 16px!important;
    border-radius: 100px!important;
    font-weight: bold;
    display: block;
    border: 1px solid #b30202;
}
.header__menu--entry__btn.--white{
  background-color: #fff;
  color: #b30202;
  padding: 8px!important;
  margin: 15px 0 0;
}

.header__menu--entry.only-sp a {
  display: block;
  text-align: center;
  width: 100%;
  font-size: 14px;
}

.header_mid {
  display: none !important;
}

.header__grobal-nav--container {
  background-color: #f6f6f6;
}

.header__grobal-nav--wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.header__grobal-nav--wrapper li {
  position: relative;
  width: calc(1300px / 7);
  text-align: center;
}

.header__grobal-nav--wrapper a {
  color: #333333;
  font-size: 16px;
  font-weight: bold;
}

.header__grobal-nav--wrapper li::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #d8d8d8;
  position: absolute;
  left: 0;
  top: 0;
}

.header__grobal-nav--wrapper img {
  max-width: 50px;
  margin: 0 auto;
}

.header__grobal-nav--wrapper span {
  display: block;
  padding: 10px 0;
  color: #64534b;
}

@media screen and (min-width:751px) {
  .header__grobal-nav--wrapper a:hover:after {
    position: absolute;
    content: "";
    height: 5px;
    width: 100%;
    background-color: #b30202;
    bottom: -10px;
    left: 0;
  }
}

@media screen and (max-width:900px) and (min-width:560px) {
  .header_mid {
    display: flex !important;
  }
  .header__grobal-nav--wrapper:not(.header_mid) {
    display: none !important;
  }
}

@media screen and (max-width:900px) {
  .header_pc {
    display: none;
  }
  .header_sp {
    display: flex !important;
  }
  .header__grobal-nav--container {
    padding: 0 4%;
  }
  .header__grobal-nav--wrapper {
    justify-content: center;
    flex-wrap: wrap;
  }
  .header__grobal-nav--wrapper {
    gap: 5px;
  }
  .header__grobal-nav--wrapper01 li {
    width: calc(92% /4);
    min-width: 120px;
  }
  .header__grobal-nav--wrapper02 {
    padding-top: 0;
  }
  .header__grobal-nav--wrapper02 li {
    width: calc(92% /3);
    min-width: 120px;
  }
  .header__grobal-nav--wrapper li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    font-size: max(14px, 0.8rem);
    white-space: nowrap;
  }
  .header__grobal-nav--wrapper li a img {
    margin: 0 .5rem 0 0;
  }
}

@media screen and (min-width:560px) {
  .header__grobal-nav--wrapper li:first-of-type::before {
    display: none;
  }
}

@media screen and (max-width:750px) {
  .header__grobal-nav--wrapper li a img {
    width: 30px;
  }
  .header__menu--icon img {
    max-width: 40px;
  }
  .header__menu--icon span {
    display: none;
  }
}

@media screen and (max-width:560px) {
  .header__grobal-nav--wrapper {
    gap: 5px;
  }
  .header__grobal-nav--wrapper li {
    padding: 0;
    width: 21vw;
    min-width: 80px;
  }
  .header__grobal-nav--wrapper li a {
    font-size: max(10px, 1rem);
    flex-direction: column;
  }
  .header__grobal-nav--wrapper li a img {
    display: block;
    margin: 0;
  }
  .header__grobal-nav--wrapper li:first-of-type:before, .header__grobal-nav--wrapper li:nth-of-type(5):before {
    display: none;
  }
  /* .header__grobal-nav--wrapper li img {
        display: none;
    } */
  /* .header__grobal-nav--wrapper li span {
        display: none;
    } */
  /* .header__grobal-nav--wrapper li::after {
        content: "";
        width: 1px;
        height: 100%;
        background-color: #d8d8d8;
        position: absolute;
        right: 0;
        top: 0;
    } */
}

@media screen and (max-width:385px) {
  .header__grobal-nav--wrapper li {
    padding: 0;
  }
  .header__grobal-nav--wrapper li:before {
    display: none;
  }
  .header__grobal-nav--wrapper li:last-of-type {
    display: none;
  }
}
/* ===============================================
# ハンバーガーメニュー
=============================================== */
#body {
  overflow: auto;
}

#body.overflow-hidden {
  overflow: hidden;
}

.header__ham {
  margin: 0 auto;
  position: absolute;
  display: block;
}
@media screen and (min-width:751px) {
  .header__ham {
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
  }
}

.header__ham--btn {
  width: 25px;
  height: 35px;
  position: relative;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer;
}

.header__ham--btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: #b30202;
  transition: all .4s;
  left: 0;
}

.header__ham--btn span:nth-of-type(1) {
  top: 25%;
}

.header__ham--btn span:nth-of-type(2) {
  top: 50%;
}

.header__ham--btn span:nth-of-type(3) {
  top: 75%;
}

.header__ham--btn.active span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 90%;
}

.header__ham--btn.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}

.header__ham--btn.active span:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 90%;
}
.header__ham--btn-top {
  display: block;
  margin: 0 0 0 1.5rem;
}
.header__ham--menu {
  position: relative;
  display: none;
  transition: transform 0.3s ease-out;
  font-size: 16px;
  padding: 40px;
  background-color: #f7f4ef;
  border: 1px solid #b30202;
  border-radius: 20px;
  z-index: 5;
  animation: popdown 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
  max-width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
  max-width: max-content;
  position: fixed;
  right: 2%;
  top: 80px;
}
@media screen and (min-width:751px) {
  .header__ham--menu{
    width: 450px;
  }
  .header__ham--menu .header__menu--entry {
      padding: 20px 0 10px;
  }
}

.header__ham--menu::-webkit-scrollbar {
  display: none; /* Chrome, Safari 対応 */
}

.header__ham--menu.active {
  display: block;
  position: absolute;
}

.header__ham--menu--icons {
  display: flex;
  align-items: center;
}

.header__ham--menu--global {
  display: flex;
  font-size: 14px;
  margin: 40px auto 20px;
  font-weight: bold;
  flex-wrap: wrap;
  gap: 1em 2em;
}

.header__ham--menu--global li {
  margin-right: 3rem;
}

.header__ham--menu--global a {
  position: relative;
  color: #333333;
}
/* .header__ham--menu--global a::before {
    content: "";
    position: absolute;
    left: -2rem;
    height: 70%;
    width: 1px;
    background-color: #333333;
    top: 50%;
    transform: translateY(-50%);
} */

.header__ham--menu--global li:first-of-type a:first-of-type::before {
  display: none;
}

.header__ham--menu--global a::after {
  position: absolute;
  width: 8px;
  height: 16px;
  background-image: url("https://image.raku-uru.jp/01/24876/73/r-arrow-bl_1684312858343.png");
  content: "";
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.header__ham--menu--banner {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
}

.header__ham--menu--banner img {
  display: block;
  border-radius: 20px;
}

.header__ham--menu--function {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  gap: 2rem;
}

.header__ham--menu--function::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  border-radius: 5px;
  background-color: #b30202;
  bottom: 0;
}

.header__ham--bottom {
  display: flex;
  justify-content: end;
  color: #b30202;
  align-items: center;
}

.header__ham--bottom .header__ham--btn-text {
  width: fit-content;
  height: auto;

}
.header__menu--cat {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
  align-items: center;
  gap: 10px;
  max-width: 100%;
}

.header__menu--cat li {
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #b30202;
  transition: .2s;
}

.header__menu--cat li img {
  margin: 0 auto;
  filter: invert(15%) sepia(95%) saturate(8000%) hue-rotate(358deg) brightness(68%) contrast(112%);
}

.header__menu--cat li span {
  white-space: nowrap;
  display: block;
  padding: 5px;
  color: #b30202;
}

.header__ham--menu--category__wrapper{
  display: flex;
  gap: 20px;
  margin: 20px 0 0;
}
.header__ham__ttl{
  margin: 0 0 5px;
  display: block;
}
.header__ham--menu--category{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.header__ham--menu--category li{
  padding: 0 0 0 2em;
  position: relative;
}
.header__ham--menu--category li::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 1em;
  transform: translateY(-50%);
  width: .5em;
  height: 1px;
  background-color: #000;
}

@keyframes popdown {
  0% {
    transform: translateY(-100px) translateX(80px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) translateX(0) scale(1.0);
  }
  80%, 100% {
    opacity: 1;
  }
}

@media screen and (min-width:751px) {
  .header__ham--menu--banner img {
    max-height: 120px;
  }
  .header__menu--cat li:hover {
    background-color: #b30202;
    border: 1px solid #fff;
  }
  .header__menu--cat li:hover img  {
    filter: brightness(0) invert(1);
  }
  .header__menu--cat li:hover span {
    color: #fff;
  }
}

@media screen and (max-width:750px) {
  .header__ham {
    margin-left: 10px;
  }
  .header__ham--menu--function::after {
    display: none;
  }
  .header__menu--cat li:active {
    background-color: #b30202;
    border: 1px solid #fff;
  }
  .header__menu--cat li:active img  {
    filter: brightness(0) invert(1);
  }
  .header__menu--cat li:active span {
    color: #fff;
}
}
@media screen and (max-width:750px) {
  .header__ham--menu.active {
    position: fixed;
    overflow: auto;
    height: calc(100vh - 6%);
  }
  .header__ham--menu {
    padding: 20px 20px 80px;
    width: 96%;
  }
  .header__menu--cat {
    grid-template-columns: 1fr 1fr 1fr;
    font-size: 14px;
  }
  .header__ham--menu--global a::after {
    right: -2.5rem;
  }
  .header__menu--cart.--signup {
    padding: 10px;
  }
  header .header__menu--container {
      padding: 0;
      gap: 0;
  }
  .header__ham {
    top: 10px;
    right: 4%;
    transform: none;
  }
  .header__ham--menu--icons {
      gap: 20px;
  }
  .header__menu--icon,
  .header__menu--icon a {
      width: auto;
  }
  .header__menu--icon img {
    margin: 0!important;
  }
  .header__menu--icon span {
      display: block;
  }
  header #header__wrapper.header-fixed .header__menu--container {
      padding: 0;
  }
  header .header__menu--container {
    flex-wrap: wrap;
  }
  header .header__menu--right {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    background-color: #eee;
    gap: 30px;
  }
  .header__logo__wrapper{
    padding: 10px 4%;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header__logo{
    min-width: auto;
    max-width: 200px;
    width: 40%;
  }
  .header__ham {
    margin: 0!important;
  }
  .header__ham--menu--category__wrapper{
    flex-direction: column;
  }
  .header__ham--menu--global {
      flex-direction: column;
  }
}

@media screen and (max-width:480px) {
  .header__menu--cat {
    grid-template-columns: 48% 48%;
    gap: 10px;
  }
}
/* ===============================================
# footer
=============================================== */

footer {
  background-color: #fcf6ee;
  margin-top: auto;
}

.footer__inner {
  max-width: calc(1300px + 8%);
  margin: 0 auto;
  padding: 50px 4%;
  color: #333333;
}

.footer__nav--container {
  display: flex;
  justify-content: start;
  gap: 6.9%;
}

.footer__nav h4 {
  font-size: 16px;
  font-weight: bold;
}

.footer__nav li a {
  position: relative;
  padding-left: 1em;
  font-size: 14px;
  white-space: nowrap;
}

.footer__nav li a::before {
  position: absolute;
  content: "―";
  left: 0;
}

.footer__nav ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__nav--box {
  display: flex;
  gap: 20px;
}

.footer__sns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer__bottom-nav {
  background-color: #696556;
  text-align: center;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer__bottom-nav a {
  color: #ffffff;
  font-size: 14px;
}

.footer__copyright {
  background-color: #ffffff;
  text-align: center;
  padding: 2rem 0 1rem;
}

.footer__copyright a {
  color: #333333;
  font-size: 14px;
}

.footer__nav--sp {
  display: none;
}

.footer__bottom-nav-br {
  display: none;
}
@media screen and (min-width:751px) {
  .footer__nav li a::after {
    position: absolute;
    left: 1em;
    content: '';
    width: calc(100% - 1em);
    height: 1px;
    background: #696556;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
  }

  .footer__nav li a:hover::after {
    transform: scale(1, 1);
    }
}
@media screen and (max-width:750px) {
  .footer__bottom-nav a {
    font-size: max(12px, 1rem);
    line-height: 2.5rem;
  }
  .footer__bottom-nav {
    flex-direction: column;
}
}

@media screen and (max-width:960px) and (min-width:481px) {
  .footer__nav.footer_pc {
    display: none;
  }
  .footer__nav--box {
    display: flex;
  }
  .footer__nav--sp {
    margin-left: 3vw;
    display: flex;
    flex-direction: column;
    gap: 4vh;
  }
}

@media screen and (max-width:850px) {
  .footer__nav--container {
    flex-direction: column;
    gap: 4vh;
  }
}

@media screen and (max-width:500px) {
  .footer__bottom-nav-br {
    display: block;
  }
}
/* ===============================================
# wysiwyg
=============================================== */

.wysiwyg-data html, .wysiwyg-data address, .wysiwyg-data blockquote, .wysiwyg-data body, .wysiwyg-data dd, .wysiwyg-data div, .wysiwyg-data dl, .wysiwyg-data dt, .wysiwyg-data fieldset, .wysiwyg-data form, .wysiwyg-data frame, .wysiwyg-data frameset, .wysiwyg-data h1, .wysiwyg-data h2, .wysiwyg-data h3, .wysiwyg-data h4, .wysiwyg-data h5, .wysiwyg-data h6, .wysiwyg-data noframes, .wysiwyg-data ol, .wysiwyg-data p, .wysiwyg-data ul, .wysiwyg-data center, .wysiwyg-data dir, .wysiwyg-data hr, .wysiwyg-data menu, .wysiwyg-data pre {
  display: block;
  unicode-bidi: embed;
}

.wysiwyg-data {
  padding: 0;
  line-height: normal;
  text-align: left;
  font-size: 14px;
}

.wysiwyg-data li {
  display: list-item;
}

.wysiwyg-data head {
  display: none;
}

.wysiwyg-data table {
  display: table;
}

.wysiwyg-data tr {
  display: table-row;
}

.wysiwyg-data thead {
  display: table-header-group;
}

.wysiwyg-data tbody {
  display: table-row-group;
}

.wysiwyg-data tfoot {
  display: table-footer-group;
}

.wysiwyg-data col {
  display: table-column;
}

.wysiwyg-data colgroup {
  display: table-column-group;
}

.wysiwyg-data td, .wysiwyg-data th {
  display: table-cell;
}

.wysiwyg-data caption {
  display: table-caption;
}

.wysiwyg-data th {
  font-weight: bolder;
  text-align: center;
}

.wysiwyg-data caption {
  text-align: center;
}

.wysiwyg-data body {
  margin: 8px;
}

.wysiwyg-data h1 {
  font-size: 20px;
  margin: .67em 0;
}

.wysiwyg-data h2 {
  font-size: 18px;
  margin: 4rem 0 .75em;
}

.wysiwyg-data h3 {
  font-size: 16px;
  margin: .83em 0;
}

.wysiwyg-data h4, .wysiwyg-data p, .wysiwyg-data blockquote, .wysiwyg-data ul, .wysiwyg-data fieldset, .wysiwyg-data form, .wysiwyg-data ol, .wysiwyg-data dl, .wysiwyg-data dir, .wysiwyg-data menu {
  font-size: 14px;
  margin: 1.12em 0;
  color: #333;
}

.wysiwyg-data h5 {
  font-size: 14px;
  margin: 1.5em 0;
}

.wysiwyg-data h6 {
  font-size: 14px;
  margin: 1.67em 0;
}

.wysiwyg-data h1, .wysiwyg-data h2, .wysiwyg-data h3, .wysiwyg-data h4, .wysiwyg-data h5, .wysiwyg-data h6, .wysiwyg-data b, .wysiwyg-data strong {
  font-weight: normal;
}

.wysiwyg-data blockquote {
  margin-left: 40px;
  margin-right: 40px;
}

.wysiwyg-data i, .wysiwyg-data cite, .wysiwyg-data em, .wysiwyg-data var, .wysiwyg-data address {
  font-style: italic;
}

.wysiwyg-data pre, .wysiwyg-data tt, .wysiwyg-data code, .wysiwyg-data kbd, .wysiwyg-data samp {
  font-family: monospace;
}

.wysiwyg-data pre {
  white-space: pre;
}

.wysiwyg-data button, .wysiwyg-data textarea, .wysiwyg-data input, .wysiwyg-data select {
  display: inline-block;
}

.wysiwyg-data big {
  font-size: 120%;
}

.wysiwyg-data small, .wysiwyg-data sub, .wysiwyg-data sup {
  font-size: 86%;
}

.wysiwyg-data sub {
  vertical-align: sub;
}

.wysiwyg-data sup {
  vertical-align: super;
}

.wysiwyg-data table {
  border-spacing: 2px;
}

.wysiwyg-data thead, .wysiwyg-data tbody, .wysiwyg-data tfoot {
  vertical-align: middle;
}

.wysiwyg-data td, .wysiwyg-data th, .wysiwyg-data tr {
  vertical-align: inherit;
}

.wysiwyg-data s, .wysiwyg-data strike, .wysiwyg-data del {
  text-decoration: line-through;
}

.wysiwyg-data hr {
  border: 1px inset;
}

.wysiwyg-data ol, .wysiwyg-data ul, .wysiwyg-data dir, .wysiwyg-data menu, .wysiwyg-data dd {
  margin-left: 40px;
}

.wysiwyg-data ol ul {
  margin-top: 0;
  margin-bottom: 0;
}

.wysiwyg-data ul ol, .wysiwyg-data ul ul {
  margin-top: 0;
  margin-bottom: 0;
}

.wysiwyg-data ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

.wysiwyg-data u, .wysiwyg-data ins {
  text-decoration: underline;
}

.wysiwyg-data br:before {
  content: "\A";
  white-space: pre-line;
}

.wysiwyg-data center {
  text-align: center;
}

/* .wysiwyg-data :link, .wysiwyg-data :visited {
  text-decoration: underline;
} */

.wysiwyg-data :focus {
  outline: thin dotted invert;
}

.wysiwyg-data table {
  border: solid 1px;
  border-collapse: separate;
  border-color: #c0c0c0 #c0c0c0 #808080 #808080;
  border-spacing: 2px;
  width: auto;
}

.wysiwyg-data table tr td {
  border: solid 1px;
  border-color: #808080 #808080 #c0c0c0 #c0c0c0;
  padding: 0;
}

.item-comment .wysiwyg-data table tr td {
  background: #fff;
}

.wysiwyg-data BDO[DIR="ltr"] {
  direction: ltr;
  unicode-bidi: bidi-override;
}

.wysiwyg-data BDO[DIR="rtl"] {
  direction: rtl;
  unicode-bidi: bidi-override;
}

.wysiwyg-data *[DIR="ltr"] {
  direction: ltr;
  unicode-bidi: embed;
}

.wysiwyg-data *[DIR="rtl"] {
  direction: rtl;
  unicode-bidi: embed;
}
/* Begin bidirectionality settings (do not change) */

@media print {
  .wysiwyg-data h1 {
    page-break-before: always;
    page-break-after: avoid;
  }
  .wysiwyg-data h2, .wysiwyg-data h3, .wysiwyg-data h4, .wysiwyg-data h5, .wysiwyg-data h6 {
    page-break-after: avoid;
  }
  .wysiwyg-data ul, .wysiwyg-data ol, .wysiwyg-data dl {
    page-break-before: avoid;
  }
}

ata *[DIR="rtl"] {
  direction: rtl;
  unicode-bidi: embed;
}
/* ===============================================
# 商品詳細下部おススメ商品
=============================================== */

.list-product {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: start;
  gap: 3.846%;
}

.list-product li {
  width: calc((100% - (3.846% * 3)) /4);
  max-width: 350px;
}

.list-product .item-photo {
  position: relative;
  display: block;
}

.list-product .item-photo::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.item-photo a img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  object-fit: cover;
  border-radius: 20px;
}

@media screen and (max-width:750px) {
  .list-product {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .list-product li {
    width: calc((100% - 3.846%) / 2);
    margin-bottom: 2.5rem;
  }
}
/* 検索・カテゴリーページ
----------------------------------*/

.cat-head {
  background-color: #f6f6f6;
}

.frame-block {
  border: 5px solid #e5e5e5;
  padding: 2.0em;
}
/* カテゴリ名 */

.cat-name {
  border-bottom: 1px solid #959595;
  display: block;
  padding: 0 5px 10px;
  font-size: 14px;
  margin-bottom: 10px;
}

.item-list-itemcount {
  border-top: 1px solid #e5e5e5;
  text-align: right;
  margin: 1.5em 0;
  padding: 10px 3%;
  font-size: 12px;
}
/* 検索結果0,キャンペーン商品0 */

.product-list, .item-list-noitem {
  font-size: 18px;
  line-height: 1.6;
}

.item-list-noitem {
  text-align: center;
  margin: 30px;
}
/* .detailed-search */

.detailed-search {
  background-color: #f1f1f1;
  margin: 20px 0 0;
  padding: 5px 10px;
}

.detailed-search-head {
  font-size: 18px;
  line-height: 36px;
  padding: 0 5px;
  cursor: pointer;
}

.detailed-search-head::before {
  content: "\ea43";
  font-family: "icomoon";
  margin-right: 15px;
}

.detailed-search-show .detailed-search-head::before {
  content: "\ea41";
  font-family: "icomoon";
}

.detailed-search-content {
  display: block;
  width: calc(100% - 15px);
  max-width: 650px;
  margin: 10px 0;
  margin-right: auto;
  margin-left: auto;
}

.detailed-search-keyword, .detailed-search-category, .detailed-search-price {
  margin-bottom: 10px;
}

.detailed-search input[type="text"], .detailed-search-category label {
  border: 1px solid #959595;
}

.detailed-search-name {
  display: inline-block;
  width: 35%;
  margin-right: 5px;
}

.detailed-search-keyword input[type="text"] {
  width: calc(65% - 5px);
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  padding: 0 5px;
}

.detailed-search-category label {
  position: relative;
  display: inline-block;
  width: calc(65% - 5px);
  overflow: hidden;
  vertical-align: middle;
  background-color: #fff;
  padding-left: 5px;
  height: 30px;
}

.detailed-search-category label::after {
  z-index: 3;
  position: absolute;
  right: 7px;
  top: 10px;
  content: "\e900";
  font-family: "icomoon";
  font-size: 8px;
}

.detailed-search-category select {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  border: 0;
  outline: none;
  font-size: 16px;
  line-height: 30px;
  appearance: none;
  padding-right: 32px;
}

.detailed-search-price input[type="text"] {
  width: calc( (65% - 65px) / 2);
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  padding: 0 5px;
  text-align: right;
  ime-mode: disabled;
}

.detailed-search-price-unit1 {
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  width: 35px;
  margin: 0 5px;
}

.detailed-search-price-unit2 {
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  width: 15px;
  margin-left: 5px;
}

.detailed-search-btn {
  text-align: right;
}

.detailed-search-btn button {
  line-height: 36px;
  padding: 0 30px;
  background-color: #b30202;
  font-size: 16px;
  color: #fff;
  -webkit-appearance: none;
  border-radius: 0;
  border: 0;
}

/* ===============================================
# その他テキストページ共通
=============================================== */

.main>.main-article {
  font-size: max(14px, 1rem);
}
/* ===============================================
# 送料について
=============================================== */

.carriage-content a {
  text-decoration: underline;
  color: #b30202;
}

/* ===============================================
# ブログ個別ページ用
=============================================== */
.blog-individ--ttl-wrapper {
  text-align: center;
}
#blog-individ .blog-individ--ttl {
  position: relative;
  margin: 0 auto 2.5%;
  font-weight: bold;
}

#blog-individ .blog-individ--ttl {
  font-size: max(24px,2.2rem);
  color: #b30202;
  display: inline-block;
}
#blog-individ a {
  color: #b30202;
}
#blog-individ .blog-individ__h3 {
  font-size: max(20px,1.4rem);
  margin: 4vh 0 3vh;
  position: relative;
  padding-left: 1.3em;
}
#blog-individ .blog-individ__h3::before {
  position: absolute;
  content: "■";
  color: #b30202;
  width: 1rem;
  height: 1rem;
  top: 0;
  left: 0;
}
#blog-individ .blog-individ__h3 .blog-individ__h3-line {
  position: relative;
  display: block;
  padding-bottom: 2vh;
  margin-left: -2em;
}
#blog-individ .blog-individ__h3-line::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: rgba(179,2,2,0.2);
  border-radius: 3px;
}
#blog-individ .blog-individ__h3-line::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  content: "";
  background: #b30202;
  border-radius: 3px;
}
#blog-individ h4 {
  font-size: max(18px, 1.2rem);
  margin: 2vh 0 1vh;
  position: relative;
  padding-bottom: .5rem;
  display: inline-block;
}
#blog-individ h4::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(179,2,2,0.6);
}
#blog-individ h5 {
  font-size: max(16px, 1rem);
  margin: 1vh 0 .5vh;
}

#blog-individ p,#blog-individ li,#blog-individ dt,#blog-individ dt,#blog-individ dd,#blog-individ a,#blog-individ q,#blog-individ blockquote,#blog-individ td,#blog-individ th,#blog-individ pre {
  font-size: max(14px, 1rem);
}
#blog-individ ol, #blog-individ ul, #blog-individ dir, #blog-individ menu, #blog-individ dd, .wysiwyg-data blockquote {
  margin-left: 0;
}

#blog-individ th {
  font-weight: normal;
}
#blog-individ .text-align-c {
  text-align: center;
}
#blog-individ .text-align-r {
  text-align: right;
}
#blog-individ .text-align-l {
  text-align: left;
}
#blog-individ .margin-center {
  margin:  auto;
}
#blog-individ img {
  width: 100%;
  max-width: fit-content;
  padding: 1rem;
}
#blog-individ .blog-individ__bottom-link {
  width: 80%;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-around;
  margin: 5vh auto;
}


#blog-individ .blog-individ--img-3column {
  display: flex;
  justify-content: space-between;
  gap: 4%;
  align-items: center;
}
#blog-individ .blog-individ--img-3column div {
  width: calc(92% /3);
}
#blog-individ .blog-individ--img-3column div img {
  width: 100%;
  max-width: 350px;
}
@media screen and (max-width:750px) {
  #blog-individ .blog-individ--ttl{
      font-size: max(24px,2.8rem);
  }
  #blog-individ .blog-individ__bottom-link {
    width: 100%;
  }
  #blog-individ .blog-individ--img-3column {
    flex-direction: column;
  }
  #blog-individ .blog-individ--img-3column div {
    width: 100%;
  }
  #blog-individ .blog-individ--img-3column div img {
    margin: 0 auto;
  }
}
/* 記事末尾のリンク */
.blog-individ__bottom-link-list,
.blog-individ__bottom-link-prev,
.blog-individ__bottom-link-next {
  position: relative;
}
.blog-individ__bottom-link-prev,
.blog-individ__bottom-link-list {
  padding-left: 3.5%;
}
.blog-individ__bottom-link-next {
  padding-right: 3.5%;
}
.blog-individ__bottom-link-prev::before,
.blog-individ__bottom-link-next::after {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background-image: url(https://image.raku-uru.jp/01/24876/108/blog-individ__bottom-link_1685076215342.png);
  background-size: contain;
  width: 1.5rem;
  height: 1.5rem;
  max-width: 20px;
  background-repeat: no-repeat;
}
.blog-individ__bottom-link-list::before {
  content: "";
  left: 0;
  background-image: url(https://image.raku-uru.jp/01/24876/109/blog-individ__bottom-link-list_1685076746375.png);
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background-size: contain;
  width: 1.5rem;
  height: 1.5rem;
  max-width: 20px;
  background-repeat: no-repeat;
}
.blog-individ__bottom-link-prev::before {
  content: "";
  left: 0;
  transform:translateY(-50%) scale(-1, 1);
}
.blog-individ__bottom-link-next::after {
  content: "";
  right: 0;
}




/* table */
#blog-individ table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
  border: none;
}
#blog-individ table tbody tr {
background-color: #f6f6f6;
}
#blog-individ table tr td {
  border: 2px solid #fff;
}
#blog-individ table th{
  padding: 2em;
  border-right: 2px solid #fff;
}
#blog-individ table td {
  padding: 2em .5em;
  border-right: 2px solid #eee;
  text-align: center;
}
#blog-individ table tbody th {
  border-right: 2px solid #807f7f;
}
#blog-individ table tr:last-child{
  border: none;
}
#blog-individ thead,#blog-individ table tbody th {
  background-color: #b30202;
  color: #ffffff;
  border:  none;
}
#blog-individ table tbody th
#blog-individ table tr:nth-child(even) {
  background-color: #eaeaea;
}
#blog-individ table tbody th {
  display: none;
}
#blog-individ table tbody th {
  display: none;
}
@media screen and (max-width:750px) {
  #blog-individ table tbody th,#blog-individ table tbody tr,#blog-individ table tbody td {
      display: block;
      width: 100%;
  }
  #blog-individ table thead {
    display: none;
  }
  #blog-individ table tbody tr:nth-child(even) {
    margin-top: 1.5rem;
  }
}

/* ===============================================
# ブログ一覧ページ
=============================================== */
#blog-all a {
  color: #b30202;
}
#blog-all .blog__all {
display: flex;
margin: 0 auto 50px;
gap: 3.846%;
flex-wrap: wrap;
}
#blog-all .blog__all.space-between {
justify-content: space-between;
}

#blog-all .blog__all.flex-start {
justify-content: flex-start;
}

#blog-all .blog__all li {
background-color: #ffffff;
width: 30.76%;
position: relative;
border-radius: 20px;
box-shadow: 0px 0px 30px 8px rgba(0,0,0,0.08);
}
#blog-all .blog__all li::after {
content: "";
width: 60px;
height: 64px;
background-image: url(../img/new.png);
position: absolute;
top: -10px;
left: 10px;
}
#blog-all .blog__all li img {
border-radius: 20px 20px 0 0;
}
#blog-all .blog__all--content {
padding: 6% 8%;
text-align: left;
}
#blog-all .blog__all--data {
display: flex;
justify-content: space-between;
}
#blog-all .blog__all--data .blog__all--day {
color: #ce5200;
font-size: 14px;
}
#blog-all .blog__all--data-icon {
display: flex;
gap: 5px;
}
#blog-all .blog__all--data-icon--favorite,
#blog-all .blog__all--data-icon--comment {
display: flex;
justify-content: center;
align-items: center;
gap: 5px;
}
#blog-all .blog__all--data-icon--favorite {
color: #b30202;
}
#blog-all .blog__all--data-icon--favorite img {
max-width: 12px;
}
#blog-all .blog__all--data-icon--comment img {
max-width: 14px;
}
#blog-all .blog__all--content-title {
font-size: 18px;
font-weight: bold;
margin: 15px 0;
line-height: 1.5em;
}
#blog-all .blog__all--content p {
font-size: max(14px,1rem);
line-height: 3vh;
display: inline;
}
#blog-all .blog__all--content-text-link {
color: #0072ff ;
font-size: max(14px,1rem);
}
#blog-all .blog__all--content-text-link:visited {
color: #0072ff;
}
#blog-all.blog__all--content-tag {
margin-top: 20px;
}
#blog-all .content__tag {
font-size: 12px;
padding: 2px 10px;
border-radius: 20px;
border: 1px solid #b30202;
color: #b30202;
margin-right: 10px;
}
#blog-all .content__tag2 {
border: 1px solid #ce5200;
color: #ce5200;
}
#blog-all .blog__all--btn a {
display: inline-block;
font-size: 12px;
font-weight: bold;
color: #ffffff;
background-color: #2b281e;
padding: 20px 100px;
border-radius: 30px;
position: relative;
}
#blog-all .blog__all--btn a::after {
position: absolute;
width: 8px;
height: 16px;
background-image: url(../img/r-arrow.png);
content: "";
top: 50%;
right: 1.8rem;
transform: translateY(-50%);
}
@media screen and (min-width:901px) {
#blog-all .blog__all li {
    margin-top: 3.846%;
}
}

@media screen and (max-width:900px) {
#blog-all .blog__all {
    flex-direction: column;
    align-items: center;
    gap: 4vh;
}
#blog-all .blog__all li {
    width: 100%;
    max-width: 400px;
}
#blog-all .blog__all--btn a {
    width: 100%;
    max-width: 400px;
    border-radius: 30px;
    padding: 25px 100px;
}
#blog-all .blog__all {
  margin-top: 2vh;
}
}
/* ===============================================
# フリーページ共通
=============================================== */
.freepage .free__inner {
  max-width: calc(1300px + 8%);
  padding: 4%;
  margin: 0 auto;
}
.freepage .section__inner {
  padding: 30px 4%;
}
.freepage .freepage--ttl-wrapper {
  text-align: center;
}
.freepage .freepage--ttl {
  position: relative;
  margin: 0 auto 2.5%;
  font-weight: bold;
  font-size: max(24px,2.2rem);
  color: #b30202;
  display: inline-block;
}
#blog-individ a {
  color: #b30202;
  text-decoration: underline;
}

/* ===============================================
#返品とキャンセル、お支払方法について
=============================================== */
.return-payment .section__inner {
  text-align: left;
}
.return-payment .notice-mark {
  position: relative;
  padding-left: 1em;
}
.return-payment .notice-mark::before {
  position: absolute;
  left: 0;
  content: "※";
}
.return-payment h3 {
  background-color: #64534b;
  border-radius: 5px;
  color: #fff;
  padding: .3rem 1rem 0.5rem;
  width: 100%;
}
.return-payment h4 {
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin: 1.5rem 0 0.5rem;
}
.return-payment h4::after {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #64534b;
  content: "";
  bottom: -0.2rem;
  left: 0;
}
.return-payment p {
  margin: .8rem 0;
}
.return-payment .paymentway {
  margin: .5rem 0 1rem;
}

/* ===============================================
# 特商法ページ
=============================================== */
table.about-tbl {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
  border: none;
}
table.about-tbl  th,table.about-tbl  td {
  padding: 2rem;
  vertical-align: middle;
  border:  1px solid #807f7f;
}
@media screen and (max-width:750px) {
  table.about-tbl th,table.about-tbl td {
    display: block;
    width: 100%;
  }
}

table.payment-content th,table.payment-content td {
  padding: 1rem;
  border: none;
}



/* ===============================================
# TOP追随バナー
=============================================== */

.app-banner{
  width: 100%;
  position: fixed;
  bottom: 0;
  display: block;
  z-index: 10;
  box-sizing: border-box;
  background-size: cover;
  background-repeat: no-repeat;
}
.app-banner.remove{
  display: none!important;
  opacity: 0;
}
.app-banner .app-banner__box{
  position: relative;
  text-align: right;
}
.app-banner a{
  transition: .3s;
  position: absolute;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,.15);
  border-radius: 15px;
  overflow: hidden;
}
.app-banner img{
  max-width: 350px;
  width: 100%;
}

.app-banner .app-banner__cancel{
  position: absolute;
  bottom: 141px;
  right: 10px;
  font-weight: bold;
  width: 30px;
  height: 30px;
  display: block;
  background-color: #fff;
  z-index: 100;
  box-shadow: 0 0 20px rgba(0,0,0,.1);
}
.app-banner .app-banner__cancel::after{
  content: "×";
  position: absolute;
  top: 0;
  left: 50%;
  line-height: 1.35em;
  transform: translateX(-50%);
  font-size: 24px;
  color: #c00;
  cursor: pointer;
  transition: .3s;
}
@media screen and (max-width: 750px) {
  .app-banner a {
    margin: 0 4%;
    right: 0;
    bottom: 10px;
  }
  .app-banner .app-banner__cancel{
    right: 4%;
    bottom: 111px;
  }
}
.fade_out {
  animation-name: fadeOut;
  animation-duration: .5s;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
}
.fade_in {
  animation-name: fadeIn;
  animation-duration: .5s;
  animation-fill-mode: forwards;
}

@keyframes fadeOut {
  0% {
      opacity: 1;
      transform: translateY(0);
  }
  100%{
      opacity: 0;
      /* transform: translateY(100px); */
  }
}
@keyframes fadeIn {
  0% {
      opacity: 0;
      /* transform: translateY(100px); */
  }
  100%{
      opacity: 1;
      transform: translateY(0);
  }
}
