﻿@charset "UTF-8";

/* base */
:root {
    --text-color: #000000;
    --color-red: #C90012;
    --color-gray: #6E6E6E;
    --color-pink: #FFEBEC;
    --color-blue: #0085C9;
    --color-lightblue: #D8EBF5;
    --font-default: "Zen Kaku Gothic New", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    --scrollbar: 15px;
    --minContentsSize: calc(1200px + var(--scrollbar)); /* コンテンツ最少幅 */
    --fullWindowSize: calc(100vw - var(--scrollbar)); /* ウインドウ幅 */
    --contentsWidth: calc(var(--fullWindowSize) - 120px); /* コンテンツブロック幅（1080px～1320px） */
    --sideOverSpace: calc((100% - max(var(--minContentsSize),var(--fullWindowSize))) / 2); /* コンテンツブロック幅を超えてウインドウ端までの距離 */

    --contentsWidth_S: calc(var(--contentsWidth) * 0.84); /* コンテンツブロック幅（1080px～1320px） */

}
@media screen and (max-width: 1200px) {
  :root {
      --contentsWidth: 1080px;
  }
}
@media screen and (min-width: 1440px) {
  :root {
      --contentsWidth: 1320px;
  }
}
html {
  font-size: clamp(calc(10px * (1200 / 1320)), calc(10 / 1320 * 100vw ), 10px); /* 1320px時に10px */
}
body {
  font-size: 15px;
  line-height: 1.5;
  font-family: var(--font-default);
  color: var(--text-color);
}
html {
  scroll-padding-top: 83px;
}
.wrapper {
  margin: 0 auto;
  /*max-width: 1440px;*/
  min-width: 1200px;

  display: flex;
  flex-flow: column;
  min-height: 100dvh;
}
.wrapper .pane-contents,
.wrapper .pane-order-contents {
  flex: 1;
}


.container {
  width: var(--contentsWidth);
}
html * {
  scrollbar-width: thin;
}

img {
  height: auto;
}
a,
a:focus {
  color: unset;
}
a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}
input[type="text"], input[type="tel"], input[type="email"], input[type="search"], input[type="password"], input[type="url"], input[type="number"],select,textarea {
  padding: 12px 15px;
  background: #ffffff;
  border: solid 1px #8E867B;
  border-radius: 5px;
}
button,
input[type="submit"],
input[type="button"] {
  cursor: pointer;
  transition: opacity 0.3s;
}
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  opacity: 0.7;
}
input[name="pwd_display"] {
  margin-top: -5px;
}
.page-estimate input[name="pwd_display"] {
  margin-top: 0;
}

input[type="checkbox"],
input[type="radio"] {
    position: relative;
    top: -0.1em;
    width: 26px;
    height: 26px;
    vertical-align: middle;
    margin-right: 10px;
    appearance: none;
    outline: none;
    overflow: hidden;
    border-radius: 0;
}
input[type="checkbox"] {
    background: url(../../img/usr/common/icon_checkbox_off.png) center top / contain no-repeat;
}
input[type="checkbox"]:checked {
    background: url(../../img/usr/common/icon_checkbox_on.png) center top / contain no-repeat;
}
input[type="radio"] {
    background: url(../../img/usr/common/icon_radio_off.png) center top / contain no-repeat;
}
input[type="radio"]:checked {
    background: url(../../img/usr/common/icon_radio_on.png) center top / contain no-repeat;
}

h1,
.h1 {
  margin: 0 0 58px;
  padding: 0;
  border: none;
  background: none;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: var(--text-color);
}

h2,
.h2 {
  margin: 0 0 30px;
  padding: 20px;
  border: none;
  background: #F5F5F5;
  font-size: 26px;
  font-weight: 500;
  color: var(--text-color);
}

h3,
.h3 {
  margin: 0 0 20px;
  padding: 0;
  border: none;
  background: none;
  font-size: 22px;
  font-weight: 500;
  color: var(--text-color);
}
h3 a,
h3 span,
.h3 a,
.h3 span {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: solid 1px #111111;
}

h4,
.h4 {
  position: relative;
  margin: 0 0 12px;
  padding: 0 0 0 18px;
  border: none;
  background: none;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-color);
}
h4::before,
.h4::before {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: 0.3em;
  bottom: 0.1em;
  background: var(--color-red);
  width: 5px;
  border-radius: 3px;
}
h5,
.h5 {
  font-size: 16px;
  font-weight: bold;
}

h6,
.h6 {
  font-size: 14px;
  font-weight: 500;
}

.price {
  color: inherit;
  font-size: 24px;
  font-weight: bold;
}
.default-price {
  font-size: 14px;
  font-weight: bold;
}
.price::first-letter {
  font-size: 16px;
}

.price::after,
.default-price::after {
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  content: "（税込）";
}

.price.pickup-parent-price::after {
  content: "（税込）～";
}
.net-price {
  display: none!important;
}
.net::after,
.net-price::after,
.default-net::after {
  content: "（税抜）";
}

.pager {
  margin: 0;
  padding: 0;
  border-top: 0;
  text-align: left;
}
.pager:has(.pager-total) {
  margin: 0 0 40px;
}
.pager:has(.pagination) {
  margin: 30px 0 30px;
}

.block-goods-list--pager.pager {
}


.pager-total {
  font-size: 30px;
  font-weight: 500;
  border-bottom: solid 1px #111;
}

.pager-current {
  color: #000;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.pagination > * {
  margin: 0;
  padding: 0;
  border: 0!important;
  background: none;
}

.pagination li a,
.pagination li span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #ffffff;
  border: solid 1px #D9D4D0;
  font-size: 15px;
  font-weight: 400;
  color: unset;
  padding: 0;
}
.pagination li span {
  background: var(--color-red);
  border-color: var(--color-red);
  color: #ffffff;
}

.pagination li.pager-first a,
.pagination li.pager-previous a,
.pagination li.pager-next a,
.pagination li.pager-last a {
  font-size: 0;
}
.pagination li.pager-first a::before,
.pagination li.pager-first a::after,
.pagination li.pager-previous a::before,
.pagination li.pager-next a::before,
.pagination li.pager-last a::before,
.pagination li.pager-last a::after {
  content:"";
  width: 7px;
  height: 7px;
  border-top: solid 1px #333333;
  border-right: solid 1px #333333;
  transform: rotate(45deg);
  position: absolute;
  right: calc(50% - 3px);
  top: calc(50% - 3px);
}
.pagination li.pager-last a::before {
  right: calc(50% - 5px);
}
.pagination li.pager-last a::after {
  right: calc(50% - 0px);
}
.pagination li.pager-first a::before,
.pagination li.pager-first a::after,
.pagination li.pager-previous a::before {
  transform: rotate(-135deg);
}
.pagination li.pager-first a::before {
  right: calc(50% - 8px);
}
.pagination li.pager-first a::after {
  right: calc(50% - 3px);
}
.pagination li.pager-previous a::before {
  right: calc(50% - 5px);
}



.action .btn {
  padding: 16px 8px;
  min-width: 240px;
  border-bottom-width: 1px;
}

.btn-default,
.btn-primary,
.btn-secondary,
.btn-danger {
  margin: 0;
  padding: 16px 8px;
  min-width: min(100%,240px);
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: bold;
  color: #4D4D4D;
  background: #ffffff;
  border: solid 1px #8E867B;
  border-radius: 5px;
  transition: all 0.3s;
}

.btn-default {
  color: #4D4D4D;
  background: #ffffff;
  border-color: #8E867B;
}
.btn-default:hover {
  color: #FFFFFF;
  background: #8E867B;
}

.btn-primary {
  color: #ffffff;
  background: var(--color-red);
  border-color: var(--color-red);
}
.btn-primary:hover {
  color: #ffffff;
  background: #D92132;
  border-color: #D92132;
}

.btn-secondary {
  color: #ffffff;
  background: #B3B3B3;
  border-color: #B3B3B3;
}
.btn-secondary:hover {
  opacity: 0.7;
  color: #ffffff;
}

.btn-black {
  color: #ffffff;
  background: #4d4d4d;
  border-color: #4d4d4d;
}
.btn-black:hover {
  opacity: 0.7;
  color: #4d4d4d;
  background: #ffffff;
  border-color: #4d4d4d;
}

.btn-danger {
  min-width: 0;
  padding: 10px 20px;
  color: #4D4D4D;
  background: #ffffff;
  border-color: #D9D4D0;
}
.btn-danger:hover {
  color: var(--color-red);
  border-color: var(--color-red);
}
.btn__small {
min-width: 0;
}
.btn__arrow::after {
  position: absolute;
  right: 2.0rem;
  top: calc(50% - 4px);
  filter: invert(100%);
  display: block;
  content: '';
  background: url(../../img/usr/common/arrow_right_black.png) center / 100% auto no-repeat;
  width: 12px;
  height: 8px;
}


.btn-type_01 {
  margin: 0;
  padding: 18px;
  min-width: 240px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  color: #4D4D4D;
  background: #ffffff;
  border: solid 1px #8E867B;
  border-radius: 5px;
  transition: all 0.3s;
min-width: 14.5rem;
min-width: 0;
height: 4.2rem;
border-radius: 3rem;
}
.btn-type_01::before {
    display: block;
    content: '';
    background: url(../../img/usr/common/arrow_right_black.png) center / 100% auto no-repeat;
    width: 13px;
    height: 10px;
    margin-right: 10px;
    transition: all 0.3s;
}
.btn-type_01:hover {
  color: #FFFFFF;
  background: #8E867B;
  opacity: 1;
}
.btn-type_01:hover::before {
    filter: invert(100%);
}

.color-red {
	color: var(--color-red);
}

.text-underline {
	text-decoration: underline;
}
.text-underline:hover {
	text-decoration: none;
}

.star-base {
  width: 110px;
  height: 22px;
  background-position: 0 0;
  background-size: 110px 44px;
}

.star-select {
  width: 110px;
  height: 22px;
  background-position: -110px -22px;
  background-size: 110px 44px;
}

.fieldset .form-control {
  padding-left: 12px;
}

/* header */
header .header-contents {
  background: #ffffff;
}
#header-wrap {
  position: relative;
  z-index: 10000;
  height: 120px;
  background: #ffffff;
}
header .header-contents {
  margin: 0;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  /*padding: 20px 0;*/
  z-index: 800;
  transition: padding 0.5s;
}
header .header-contents::after {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 5;
  background: #fefefe;
}
.header-inner {
  margin: 0 auto;
  width: clamp(1200px, calc(100vw - var(--scrollbar)), 1920px);
  height: 120px;
  padding: 0 3rem;
  position: relative;
  z-index: 10;
  /*left: calc((100% - clamp(1200px, calc(100vw - var(--scrollbar)), 1920px)) / 2);*/
  display: flex;
  align-items: center;
}

.header-inner .header-logo,
.toppage-header-logo .header-logo {
  width: 19.4rem;
  min-width: 19.4rem;
  margin: 0 6.0rem 0 ;
  font-size: 15px;
  line-height: 1;
  transition: all 0.2s;
}
@media screen and (max-width: 1460px) {
.header-inner .header-logo,
.toppage-header-logo .header-logo {
  width: 17.4rem;
  min-width: 17.4rem;
}
}

/* トップページロゴ */

.toppage-header-logo {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 805;
}
.toppage-header-logo > div {
  position: relative;
  margin: 0 auto;
  width: clamp(1200px, calc(100vw - var(--scrollbar)), 1920px);
}
@media screen and (max-width: 1460px) {
.toppage-header-logo {
}
}
.toppage-header-logo .header-logo {
  position: absolute;
  left: 30px;
  top: 38px;
  margin: 0!important;
  padding: 0!important;
}
.toppage-header-logo + #header-wrap header .header-logo {
  opacity: 0;
}


.headernav-gnav {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
}
.headernav-gnav > .headernav-nav {
  display: flex;
  gap: 3.0rem;
}
.headernav-gnav > .headernav-nav li a {
  position: relative;
  padding: 0 2.0rem 0 0;
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s;
}
@media screen and (max-width: 1460px) {
.headernav-gnav > .headernav-nav li a {
  font-size: 15px;
}
.headernav-gnav > .headernav-nav li a span {
  display: none;
}
}
.headernav-gnav > .headernav-nav li a::after {
  content:"";
  width: 0.4em;
  height: 0.4em;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  transform: rotate(135deg);
  position: absolute;
  right: 0;
  top: calc(50% - 5px);
  transition: border 0.3s;
}
.headernav-gnav > .headernav-nav li a.active {
  color: var(--color-red);
  opacity: 1!important;
}
.headernav-gnav > .headernav-nav li a.active::after {
  border-color: var(--color-red);
  transform: rotate(-45deg);
  top: calc(50% - 0px);
}

.headernav-gnav .headernav-gnav--overcover {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  background: #ffffff;
}


.headernav-gnav > .headernav-search {
  position: relative;
  z-index: 11;
  flex: 1;
  margin: 0 0 0 3rem;
}
.headernav-gnav > .headernav-search form {
  border: solid 1px #D9D4D0;
  background: #ffffff;
  border-radius: 50px;
  width: 100%;
  max-width: 300px;
  height: 50px;
  display: flex;
  align-items: stretch;
}
.headernav-gnav > .headernav-search form input[type="text"] {
  appearance: none;
  width: 5em;
  min-width: calc(100% - 50px);
  flex: 1;
  border: none;
  outline: none;
  background: none;
  padding-left: 1em;
  padding-right: 0;
}
.headernav-gnav > .headernav-search form button {
  cursor: pointer;
  appearance: none;
  width: 3.5rem;
  height: 50px;
  border: none;
  outline: none;
  background: url(../../img/usr/common/icon_header_search.png) 0% 40% / 2.0rem auto no-repeat;
}

.headernav-gnav > .headernav-right {
  position: relative;
  z-index: 10;
  background: #fff;
  margin: 0 0 0 3.0rem;
  padding: 20px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
}
.headernav-gnav > .headernav-right > p a {
  position: relative;
  display: inline-block;
  padding: 0 0 5px;
  font-size: 17px;
  font-weight: 500;
  color: var(--color-red);
  white-space: nowrap;
}
@media screen and (max-width: 1460px) {
.headernav-gnav > .headernav-right > p a {
  font-size: 15px;
}

}
.headernav-gnav > .headernav-right > p a::after {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: solid 2px var(--color-red);
}
.headernav-gnav > .headernav-right > ul {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  margin: 0 0 0 2rem;
}
.headernav-gnav > .headernav-right > ul li a {
  position: relative;
  width: 9rem;
  height: 78px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  background: #F5F2EB;
  border-radius: 5px;
  transition: all 0.3s;
}
@media screen and (max-width: 1460px) {
  .headernav-gnav > .headernav-right > ul {
  gap: 1.0rem;
  }
  .headernav-gnav > .headernav-right > ul li a {
    font-size: 13px;
  }
}

.headernav-gnav > .headernav-right > ul li a::before {
  display: block;
  content: '';
  margin-bottom: 3px;
  width: 22px;
  height: 21px;
}
.headernav-gnav > .headernav-right > ul li.headernav-snav__guide a::before {
  background: url(../../img/usr/common/icon_header_guide.png) center / auto 20px no-repeat;
}
.headernav-gnav > .headernav-right > ul li.headernav-snav__bookmark a::before {
  background: url(../../img/usr/common/icon_header_bookmark.png) center / 21px auto no-repeat;
}
.headernav-gnav > .headernav-right > ul li.headernav-snav__cart a {
  color: #ffffff;
  background: var(--color-red);
}
.headernav-gnav > .headernav-right > ul li.headernav-snav__cart a::before {
  background: url(../../img/usr/common/icon_header_cart.png) center / 22px auto no-repeat;
}
.headernav-gnav > .headernav-right > ul li.headernav-snav__cart .js-cart-count:empty {
  display: none;
}
.headernav-gnav > .headernav-right > ul li.headernav-snav__cart .js-cart-count {
  color: var(--color-red);
  background: #ffffff;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: calc(50% + 5px);
  top: calc(50% - 34px);
}
#fixedHeader {
  position: fixed;
  left: 0;
  z-index: 798;
  transform: translateY(-100%);
  transition: transform 0.3s;
  background: rgba(255,0,0,0.2);
}
header.st__slideUp #fixedHeader {
  transform: translateY(0);
}

#fixedHeader .header-inner {
  height: 80px;
}
#fixedHeader .headernav-gnav > .headernav-right > ul li a {
  height: 70px;
}
#fixedHeader .headernav-gnav > .headernav-right {
  padding-top: 5px;
  padding-bottom: 5px;
}

#header-wrap.header-wrap__order header {
  position: absolute!important;
  border-bottom: solid 1px #F5F2EB;
}
#header-wrap.header-wrap__order header .header-inner {
  height: 120px;
}
/* グローバルナビ */
#globalnav {
  display: none;
}
header #globalnav {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
}

header:not(.st__fixed) #globalnav {
  top: 100%;
}
header.st__fixed #globalnav {
  position: fixed;
  top: 80px;
}
#globalnav .globalnav-bg {
  position: fixed;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s;
}
#globalnav .globalnav-bg.active {
  visibility: visible;
  opacity: 1;
}
header.st__fixed:not(.st__slideUp) .globalnav-bg.active {
  visibility: hidden;
  opacity: 0;
} 
#globalnav .globalnav-container {
  margin: 0 auto;
  width: clamp(1200px, calc(100vw - var(--scrollbar)), 1920px);
  padding: 0 3rem;
  height: 0;
  position: relative;
  z-index: 10;
}
#globalnav .globalnav-inner {
  display: block;
  background: #FCF7F2;
  width: calc(100% - 21.8rem);
  max-width: 1080px;
  border-radius: 0 0 10px 10px;
  margin-left: 21.8rem;
}
#globalnav[data-open-code="brand"] .globalnav-inner,
#globalnav[data-open-code="feature"] .globalnav-inner {
  max-width: 1315px;
}
@media screen and (max-width: 1460px) {
#globalnav .globalnav-inner {
  margin-left: 19.8rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 90vw;
}
}

#globalnav .globalnav-inner .globalnav-section {
  max-width: 1080px;
  padding: 50px;
}
#globalnav .globalnav-inner .globalnav-section[data-gnav-key="brand"],
#globalnav .globalnav-inner .globalnav-section[data-gnav-key="feature"],
#globalnav .globalnav-inner .globalnav-section[data-gnav-key="search"] {
  max-width: 1315px;
}

#globalnav .globalnav-inner .globalnav-section .globalnav-section-inner {
  max-height: 328px;
  max-height: 24.5rem;
  overflow: auto;
  padding: 0 30px 0 0;
}

#globalnav .block-dynamic-category--body,
#globalnav .block-dynamic-genre--body {
  display: flex;
  align-items: stretch;
  flex-flow: wrap;
  gap: 15px 25px;
}
#globalnav .block-dynamic-category--body > li,
#globalnav .block-dynamic-genre--body > li {
  width: calc((100% - 25px * 4) / 5);
  border-bottom: solid 1px #E6E3E1;
}
#globalnav .block-dynamic-category--body > li a,
#globalnav .block-dynamic-genre--body > li a {
  position: relative;
  display: block;
  height: 100%;
  padding: 0 0 12px 0;
}
#globalnav .block-dynamic-category--body > li a::after,
#globalnav .block-dynamic-genre--body > li a::after {
  content:"";
  width: 6px;
  height: 6px;
  border-top: solid 1px #8E867B;
  border-right: solid 1px #8E867B;
  transform: rotate(45deg);
  position: absolute;
  right: 3px;
  top: calc((100% - 14px) / 2 - 3px);
}
#globalnav .block-dynamic-category--body > li img,
#globalnav .block-dynamic-genre--body > li img {
  display: none;
}
/* dynamic banner */
#globalnav .js-dynamic-genre.js-dynamic-genre__img .block-dynamic-genre--body {
  gap: 15px 15px;
}
#globalnav .js-dynamic-genre.js-dynamic-genre__img .block-dynamic-genre--body > li {
  width: calc((100% - 15px * 6) / 7);
  border: none;
}
#globalnav .js-dynamic-genre.js-dynamic-genre__img .block-dynamic-genre--body > li img {
  border-bottom: none;
}
#globalnav .js-dynamic-genre.js-dynamic-genre__img .block-dynamic-genre--body > li a {
  padding: 0;
}
#globalnav .js-dynamic-genre.js-dynamic-genre__img .block-dynamic-genre--body > li a::before,
#globalnav .js-dynamic-genre.js-dynamic-genre__img .block-dynamic-genre--body > li a::after {
  display: none;
}
#globalnav .js-dynamic-genre.js-dynamic-genre__img .block-dynamic-genre--body > li img {
  display: block;
}
#globalnav .js-dynamic-genre.js-dynamic-genre__img .block-dynamic-genre--body > li img + span {
  display: none;
}
#globalnav .js-dynamic-genre.js-dynamic-genre__img .block-dynamic-genre--body > li a span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #efefef;
  min-height: 5em;
  height: 100%;
}

#header-gnav-feature ul {
  display: flex;
  flex-flow: wrap;
  gap: 30px;
}
#header-gnav-feature ul li {
  width: calc((100% - 30px * 3) / 4);
}
#header-gnav-keywords {
  display: flex;
}
#header-gnav-keywords dt {
  margin-right: 20px;
  font-size: 17px;
  font-weight: 500;
  padding-top: 8px;
}
#header-gnav-keywords dd {
  flex: 1;
}
ul.list-trendingkeywords {
  display: flex;
  flex-flow: wrap;
  gap: 10px 8px;
}
ul.list-trendingkeywords li a {
  display: inline-block;
  white-space: nowrap;
  color: var(--color-red);
  background: #ffffff;
  border: solid 2px var(--color-red);
  padding: 6px 15px 8px;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 500;
  border-radius: 2em;
}
ul.list-trendingkeywords li a::before {
  content: '#';
}
/* footer */
.pane-footer > .container {
  width: auto!important;
  margin: 0 min(calc((100% - var(--fullWindowSize)) / 2),0px);
}
.footer-container {
  width: var(--contentsWidth);
  margin: 0 auto;
}

.footer-top,
.footer-top_top {
  padding: 10rem 0;
  background: #FDF4F4;
}
.footer-top_top {
  position: relative;
  padding-bottom: 0;
}
.footer-top + .footer-top_top {
  padding-top: 0;
}
.footer-top_top .footer-top-guide {
  margin: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.15);
}
.footer-top-guide-item {
  flex: 1;
  background: #ffffff;
  display: flex;
  flex-flow: column;
}
.footer-top-guide-item + .footer-top-guide-item {
  border-left: solid 1px #D9D4D0;
}
.footer-top-guide-item > p {
  padding: 2.5rem 0 5.0rem;
  text-align: center;
}
.footer-top-guide-item .footer-top-guide-img2 {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 4rem;
  flex: 1;
}
.footer-top-guide-item .footer-top-guide-img2::before {
  display: block;
  content: '';
  width: 3.3rem;
  height: 4.0rem;
  margin-bottom: 3.0rem;
  background: url(../../img/usr/common/footer_img_guide.png) center / contain no-repeat;
}
.footer-top-guide-item .footer-top-guide-img {
  flex: 1;
  position: relative;
  padding: 0;
  text-align: center;
}
.footer-top-guide-item .footer-top-guide-img p,
.footer-top-guide-item .footer-top-guide-img2 p {
  display: inline-block;
  padding: 0 0 10px;
  font-size: 20px;
  font-weight: 500;
  border-bottom: solid 1px #D9D4D0;
  transition: all 0.3s;
}
.footer-top_top .footer-top-guide .footer-top-guide-item .footer-top-guide-img > div {
  position: relative;
  margin: 0 0 5.5rem;
}
.footer-top_top .footer-top-guide .footer-top-guide-item .footer-top-guide-img > div::before {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  background: var(--color-red);
  position: absolute;
  left: calc(50% - 2.5rem);
  top: calc(100% - 2.5rem);
  z-index: 5;
}
.footer-top_top .footer-top-guide .footer-top-guide-item:nth-child(1) .footer-top-guide-img > div::before { content: '01'; }
.footer-top_top .footer-top-guide .footer-top-guide-item:nth-child(2) .footer-top-guide-img > div::before { content: '02'; }
.footer-top_top .footer-top-guide .footer-top-guide-item:nth-child(3) .footer-top-guide-img > div::before { content: '03'; }

.footer-top_top .footer-top-guide .footer-top-guide-item .footer-top-guide-img figure {
  overflow: hidden;
}
.footer-top_top .footer-top-guide .footer-top-guide-item .footer-top-guide-img figure img {
  transition: all 0.3s;
}
a.footer-top-guide-item:hover .footer-top-guide-img figure img {
  transform: scale(1.15);
}
a.footer-top-guide-item:hover .footer-top-guide-img p,
a.footer-top-guide-item:hover .footer-top-guide-img2 p {
  color: var(--color-red);
}
a.footer-top-guide-item:hover {
  opacity: 1;
}
a.footer-top-guide-item .btn-type_01 {
  pointer-events: none;
}
a.footer-top-guide-item:hover .btn-type_01 {
  color: #FFFFFF;
  background: #8E867B;
}
a.footer-top-guide-item:hover .btn-type_01::before {
  filter: invert(100%);
}



.footer-top-channel {
  margin: 100px 0 0;
}
.footer-top-channel ul {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2.5rem;
}
.footer-top-channel ul li {
  width: 25rem;
}
.footer-top-channel ul li a {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  background: #ffffff;
  border: solid 1px #D9D4D0;
  border-radius: 2px;
  padding: 2.0rem 3.5rem 2.0rem 6.5rem;
  font-weight: 500;
}
.footer-top-channel ul li a figure {
  position: absolute;
  left: 2.0rem;
  top: calc(50% - 1.5rem);
  width: 3.0rem;
  height: 3.0rem;
  display: flex;
  align-items: center;
}
.footer-top-channel ul li a span {
  display: block;
  font-size: 1.3rem;
  font-weight: 400;
}
.footer-top-channel ul li a::after {
  content:"";
  width: 7px;
  height: 7px;
  border-top: solid 1px var(--color-red);
  border-right: solid 1px var(--color-red);
  transform: rotate(45deg);
  position: absolute;
  right: 2.0rem;
  top: calc(50% - 3px);
}
.footer-top .footer-top-contact {
  display: flex;
  flex-flow: wrap;
  align-items: stretch;
  gap: 0 4.8rem;
}
.footer-top .footer-top-contact .footer-top-contact-tit {
  width: 100%;
  margin: 0 0 4.0rem;
}
.footer-top .footer-top-contact .footer-top-contact-tit span {
  display: inline-block;
  font-size: 30px;
  font-weight: 500;
  padding: 0 0 10px;
  border-bottom: solid 1px #111111;
}
.footer-top .footer-top-contact .footer-top-contact-form dl {
  background: #ffffff;
  border: solid 1px #D9D4D0;
  border-radius: 5px;
  height: 100%;
  width: 41rem;
  padding: 3.2rem 1.5rem;
  text-align: center;
}
.footer-top .footer-top-contact .footer-top-contact-form dl dt {
  margin: 0 0 2.0rem;
  font-size: 1.7rem;
  font-weight: 500;
}
.footer-top .footer-top-contact .footer-top-contact-form dl dd a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 48px;
  border-radius: 5px;
  color: #ffffff;
  background: var(--color-red);
  font-size: 15px;
  font-weight: 500;
}
.footer-top .footer-top-contact .footer-top-contact-form dl dd a::after {
  position: absolute;
  right: 2.0rem;
  top: calc(50% - 4px);
  filter: invert(100%);
  display: block;
  content: '';
  background: url(../../img/usr/common/arrow_right_black.png) center / 100% auto no-repeat;
  width: 12px;
  height: 8px;
}
.footer-top .footer-top-contact .footer-top-contact-tel {
  flex: 1;
  border-radius: 5px;
  background: #ffffff;
  display: flex;
  align-items: stretch;
}
.footer-top .footer-top-contact .footer-top-contact-tel > dl {
  flex: 1;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.footer-top .footer-top-contact .footer-top-contact-tel > dl + dl {
  border-left: solid 1px #E8E7E4;
}
.footer-top .footer-top-contact .footer-top-contact-tel > dl dt {
  margin: 0 0 0.8rem;
  font-size: 1.7rem;
  font-weight: 500;
}
.footer-top .footer-top-contact .footer-top-contact-tel > dl dd p:last-child {
  font-size: 14px;
  font-weight: 400;
}
.footer-top .footer-top-contact .footer-top-contact-tel > dl dd p:first-child span {
  position: relative;
  display: inline-block;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 2px;
}
.footer-top .footer-top-contact .footer-top-contact-tel > dl dd p:first-child span::before {
  display: block;
  content: '';
  width: 22px;
  height: 30px;
  background: url(../../img/usr/common/footer_icon_tel.png) center / contain no-repeat;
  position: absolute;
  left: -37px;
  top: 7px;
}
.footer-top .footer-top-contact .footer-top-contact-tel > dl + dl dd p:first-child span::before {
  left: -47px;
  top: 6px;
  width: 30px;
  height: 31px;
  background: url(../../img/usr/common/footer_icon_fax.png) center / contain no-repeat;
}

.footer-bottom {
  padding: 6rem 0;
  background: #292929;
  color: #ffffff;
}
.footer-bottom .footer-logo {
  width: 16rem;
  margin: 0 0 50px;
}
.footer-bottom .footer-bottom-nav {
  display: flex;
  gap: 5rem;
}
.footer-bottom .footer-bottom-nav dt {
  margin: 0 0 30px;
  padding: 0 0 10px;
  border-bottom: solid 1px #535353;
  font-size: 17px;
  font-weight: 500;
}
.footer-bottom .footer-bottom-nav ul li {
  font-size: 17px;
  font-weight: 400;
}
.footer-bottom .footer-bottom-nav ul li + li {
  margin-top: 0.5em;
}
.footer-bottom .footer-bottom-nav ul + ul {
  margin-top: 1.7em;
}
.footer-bottom .footer-bottom-nav dd:has(> div)  {
  display: flex;
  gap: 3rem;
}
.footer-bottom .footer-bottom-nav dd:has(> div)  ul {
  min-width: 25rem;
}
.footer-bottom .footer-bottom-nav .footer-bottom-nav03 {
  flex: 1;
  display: flex;
  flex-flow: column;
  align-items: flex-end;
}
.footer-bottom .footer-bottom-nav .footer-bottom-nav03 > ul li {
  font-size: 15px;
  font-weight: 300;
}
.footer-bottom .footer-bottom-nav .footer-bottom-nav03 > ul li + li {
  margin-top: 1.0rem;
}
.footer-bottom .footer-bottom-copy {
  margin: 50px 0 0;
  text-align: center;
}
.footer-bottom .footer-bottom-copy > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footer-bottom .footer-bottom-copy > ul li a {
  display: block;
  width: 24px;
  height: 24px;
  background: url(../../img/usr/common/footer_icon_sns.png) center / auto 24px no-repeat;
}
.footer-bottom .footer-bottom-copy > ul li a span {
  font-size: 0;
}
.footer-bottom .footer-bottom-copy > ul li.footer-bottom-sns__insta a {
  background-position: 0 50%;
}
.footer-bottom .footer-bottom-copy > ul li.footer-bottom-sns__fb a {
  background-position: 33% 50%;
}
.footer-bottom .footer-bottom-copy > ul li.footer-bottom-sns__x a {
  background-position: 66% 50%;
}
.footer-bottom .footer-bottom-copy > ul li.footer-bottom-sns__yt a {
  background-position: 100% 50%;
  width: 26px;
}
.footer-bottom .footer-bottom-copy > p {
  margin-top: 50px;
  font-size: 14px;
  font-weight: 300;
}
.pane-order-contents ~ footer .footer-bottom {
  padding: 2rem;
}
/*.pane-order-contents ~ footer .footer-bottom * {
  margin: 0 auto;
}*/

.block-page-top {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 500;
}
.block-page-top > a {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 80px;
  border-radius: 40px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background: #A39D93;
  font-size: 13px;
  font-weight: 400;
  transition: background 0.3s;
}
.block-page-top > a:hover {
  background: #8E867B;
  opacity: 1;
}
.block-page-top > a::before {
  margin: 0 0 5px;
  display: block;
  content: '';
  width: 9px;
  height: 13px;
  background: url(../../img/usr/common/arrow_top01.png) center / contain no-repeat;
}
.block-page-top > a::after {
  display: block;
  content: 'TOP';
}
/* swiper */
.swiper-outer {
  position: relative;
}
.swiper-outer .swiper-buttons {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
}

.swiper-button-next, .swiper-button-prev,
.swiper-buttons .swiper-button-next, .swiper-buttons .swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.15);
  background: #ffffff;
  border: solid 1px #D9D4D0;
  margin: 0;
  top: -20px;
  visibility: visible;
  opacity: 1;
  transition: all 0.2s;
}
.swiper-outer .swiper-buttons .swiper-button-next {
left: auto;
right: -20px;
}
.swiper-outer .swiper-buttons .swiper-button-prev {
left: -20px;
right: auto;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.swiper-button-next:after, .swiper-button-prev:after,
.swiper-buttons .swiper-button-next:after, .swiper-buttons .swiper-button-prev:after {
  content:"";
  width: 8px;
  height: 8px;
  border-top: solid 1px var(--color-red);
  border-right: solid 1px var(--color-red);
  transform: rotate(45deg);
  position: absolute;
  right: calc(50% - 3px);
  top: calc(50% - 4px);
}
.swiper-button-prev:after,.swiper-buttons .swiper-button-prev:after {
  transform: rotate(-135deg);
  right: calc(50% - 6px);
}
/* info */
.infoblock {
  width: var(--contentsWidth_S);
  margin: 50px auto 50px;
  padding: 20px;
  border-radius: 5px;
  background: #ffffff;
  border: solid 1px #EBE5E1;
}
.infoblock + .infoblock {
  margin-top: -30px;
}
.infoblock--important {
  background-color: var(--color-pink);
  border-color: var(--color-pink);
}
.infoblock > dl {
  display: flex;
  align-items: center;
}
.infoblock > dl + dl {
  margin-top: 20px;
}
.infoblock > dl > dt {
  margin-right: 20px;
}
.infoblock > dl > dt span {
  display: inline-block;
  text-align: center;
  min-width: 156px;
  padding: 6px 8px;
  font-size: 14px;
  font-weight: 500;
  background: #E8E7E4;
  border-radius: 20px;
}
.infoblock--important > dl > dt span {
  color: #ffffff;
  background: var(--color-red);
}
.infoblock > dl > dd {
  flex: 1;
  font-size: 15px;
  font-weight: 400;
}
.infoblock > dl > dd a {
  position: relative;
  display: block;
  padding: 0 15px 0 0;
}
.infoblock > dl > dd a::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: solid 1px #8E867B;
  border-right: solid 1px #8E867B;
  transform: rotate(45deg);
  position: absolute;
  right: 3px;
  top: calc(50% - 3px);
}
.infoblock > dl > dd a:hover {
  opacity: 1;
  text-decoration: underline;
}
.infoblock > dl > dd a::after:hover {
  border-color: var(--color-red);
}

/* 最近見た商品 */
#block_of_itemhistory:empty {
  display: none!important;
}
#block_of_itemhistory {
  margin: 40px auto;
}

body .revireco-outer-head .revireco-logo {
  justify-content: flex-end;
  padding: 12px 0 0;
}
.block-common-lightningrecommend--header h3 {
  margin-top: 80px;
}