@charset "UTF-8";
/* ========================================
変数・関数
======================================== */
:root {
  --color-text-base: #333;
  --color-text-emp: #151515;
  --color-text-red: #C70000;
  --color-red-dark: #AA0000;
  --color-extended-natural: #387C95;
  --color-extended-damage: #B4446F;
  --color-bg01: #9D9D9D;
  --color-bg02: #C1C1C1;
  --color-bg03: #EAEAEA;
  --color-bg04: #F7F7F7;
  --color-boder01: #333;
  --color-boder02: #C1C1C1;
  --color-boder03: #EAEAEA;
  --font-base: "Noto Sans JP", sans-serif;
  --font-anton: "Anton","Noto Sans JP", sans-serif;
  --z-index-header: 10;
  --z-index-nav: 12;
  --z-index-narrowing: 14;
  --z-index-narrowingOverray: 13;
  --z-index-revieModal: 14;
  --mg-pc: calc(50 / 1440 * 100vw);
  --mg-sp: calc(30 / 750 * 100vw);
  --mg-breadcrumb-pc: 49px;
  --header-height-sp: 104px;
}

/* ========================================
mixin
======================================== */
/* ========================================
ベースCSS
======================================== */
@media screen and (max-width: 767px) {
  :root {
    scroll-padding-top: var(--header-height-sp);
  }
}

body {
  background: #fff;
  color: var(--color-text-base);
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

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

input,
select,
button {
  outline-color: #7f7ffb;
}

/* CLEAR-FIX */
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/* ========================================
モジュール・パーツ m-
======================================== */
.m-reset-ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.m-inner {
  width: calc(100% - var(--mg-pc) * 2);
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .m-inner {
    width: calc(100% - var(--mg-sp) * 2);
  }
}

.m-secTtl {
  display: flex;
  align-items: center;
  gap: 0 20px;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .m-secTtl {
    gap: 0 12px;
    font-size: 15px;
  }
}

.m-secTtl-fill {
  margin: 0 0 35px;
  padding: 11px 17px;
  background: var(--color-text-base);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .m-secTtl-fill {
    margin-bottom: 25px;
    padding: 9px 15px;
    font-size: 14px;
  }
}

.m-secTtl-bold {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .m-secTtl-bold {
    font-size: 18px;
  }
}

.m-secTtl-minBold {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .m-secTtl-minBold {
    font-size: 15px;
  }
}

.m-enTtl {
  margin: 0;
  font-family: var(--font-anton);
  font-size: 26px;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.m-mtSec {
  margin-top: 80px;
}
.m-mtSec-md {
  margin-top: 35px;
}

.m-mtCont {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .m-mtCont {
    margin-top: 12px;
  }
}

@media (hover: hover) {
  .m-telLink {
    pointer-events: none;
  }
}

.m-link-underLine {
  text-decoration: underline;
  text-underline-offset: 0.1em;
}
@media (hover: hover) {
  .m-link-underLine {
    transition: opacity 0.3s;
  }
  .m-link-underLine:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) {
  .m-link-underLine:hover {
    color: inherit;
  }
}

.m-favoriteBtn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 21px;
  height: 20px;
  background: url(../img/common/icon_favorite.svg) center/contain no-repeat;
}
.m-favoriteBtn.-done, .m-favoriteBtn[data-favorite-added="1"] {
  background-image: url(../img/common/icon_favorite-on.svg);
}

.m-btn-fill {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 243px;
  padding: 12px 20px;
  background: var(--color-red-dark);
  border-radius: 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media (hover: hover) {
  .m-btn-fill {
    transition: opacity 0.3s;
  }
  .m-btn-fill:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) {
  .m-btn-fill:hover {
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .m-btn-fill {
    width: 100%;
    min-width: 0;
    padding: 14px 15px 13px;
    border-radius: 3px;
  }
}

.m-btn-boder {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 182px;
  padding: 12px 20px;
  border: 1px solid var(--color-text-base);
  border-radius: 4px;
  color: var(--color-text-base);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media (hover: hover) {
  .m-btn-boder {
    transition: background 0.3s, color 0.3s;
  }
  .m-btn-boder:hover {
    background: var(--color-text-base);
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .m-btn-boder {
    width: 100%;
    min-width: 0;
    padding: 14px 15px 13px;
    border-radius: 3px;
  }
}

.m-list-num-cjk, .m-list-num, .m-list-notes, .m-list-dotted {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.m-list-num-cjk > li, .m-list-num > li, .m-list-notes > li, .m-list-dotted > li {
  padding-left: 30px;
  position: relative;
}
.m-list-num-cjk > li::before, .m-list-num > li::before, .m-list-notes > li::before, .m-list-dotted > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.m-list-dotted > li::before {
  content: "・";
}

.m-list-notes > li::before {
  content: "※";
}

.m-list-num {
  counter-reset: tradelawListNum 0;
}
.m-list-num > li::before {
  counter-increment: tradelawListNum 1;
  content: counter(tradelawListNum) " ";
}

.m-list-num-cjk {
  counter-reset: cjkNum 0;
}
.m-list-num-cjk > li::before {
  counter-increment: cjkNum 1;
  content: counter(cjkNum, cjk-ideographic) "";
}

.m-mainTtlImg {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .m-mainTtlImg {
    margin-top: 30px;
  }
}
.m-mainTtlImg img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .m-minText-sp08 {
    font-size: 0.9em;
  }
}

.m-linkBox a {
  text-decoration: underline;
}

.m-link-underLine {
  text-decoration: underline;
}

/* ========================================
補助的に使用 u-
======================================== */
@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .u-sp-lg {
    display: none !important;
  }
}

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

@media screen and (max-width: 1024px) {
  .u-pc-lg {
    display: none !important;
  }
}

.u-ib {
  display: inline-block !important;
}

.u-text-center {
  text-align: center !important;
}
.u-text-left {
  text-align: left !important;
}
.u-text-right {
  text-align: right !important;
}

.u-font-base {
  font-family: var(--font-base) !important;
}
.u-font-en {
  font-family: var(--font-anton) !important;
}

.u-color-red {
  color: var(--color-text-red) !important;
}

.u-weight-100 {
  font-weight: 100 !important;
}

.u-weight-200 {
  font-weight: 200 !important;
}

.u-weight-300 {
  font-weight: 300 !important;
}

.u-weight-400 {
  font-weight: 400 !important;
}

.u-weight-500 {
  font-weight: 500 !important;
}

.u-weight-600 {
  font-weight: 600 !important;
}

.u-weight-700 {
  font-weight: 700 !important;
}

.u-weight-800 {
  font-weight: 800 !important;
}

.u-weight-900 {
  font-weight: 900 !important;
}

.u-mt-5 {
  margin-top: 5px !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-mt-15 {
  margin-top: 15px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mt-25 {
  margin-top: 25px !important;
}

.u-mt-30 {
  margin-top: 30px !important;
}

.u-mt-35 {
  margin-top: 35px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mt-45 {
  margin-top: 45px !important;
}

.u-mt-50 {
  margin-top: 50px !important;
}

.u-mt-55 {
  margin-top: 55px !important;
}

.u-mt-60 {
  margin-top: 60px !important;
}

.u-mt-65 {
  margin-top: 65px !important;
}

.u-mt-70 {
  margin-top: 70px !important;
}

.u-mt-75 {
  margin-top: 75px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mt-85 {
  margin-top: 85px !important;
}

.u-mt-90 {
  margin-top: 90px !important;
}

.u-mt-95 {
  margin-top: 95px !important;
}

.u-mt-100 {
  margin-top: 100px !important;
}

.u-mb-5 {
  margin-top: 5px !important;
}

.u-mb-10 {
  margin-top: 10px !important;
}

.u-mb-15 {
  margin-top: 15px !important;
}

.u-mb-20 {
  margin-top: 20px !important;
}

.u-mb-25 {
  margin-top: 25px !important;
}

.u-mb-30 {
  margin-top: 30px !important;
}

.u-mb-35 {
  margin-top: 35px !important;
}

.u-mb-40 {
  margin-top: 40px !important;
}

.u-mb-45 {
  margin-top: 45px !important;
}

.u-mb-50 {
  margin-top: 50px !important;
}

.u-mb-55 {
  margin-top: 55px !important;
}

.u-mb-60 {
  margin-top: 60px !important;
}

.u-mb-65 {
  margin-top: 65px !important;
}

.u-mb-70 {
  margin-top: 70px !important;
}

.u-mb-75 {
  margin-top: 75px !important;
}

.u-mb-80 {
  margin-top: 80px !important;
}

.u-mb-85 {
  margin-top: 85px !important;
}

.u-mb-90 {
  margin-top: 90px !important;
}

.u-mb-95 {
  margin-top: 95px !important;
}

.u-mb-100 {
  margin-top: 100px !important;
}

.u-pt-5 {
  padding-top: 5px !important;
}

.u-pt-10 {
  padding-top: 10px !important;
}

.u-pt-15 {
  padding-top: 15px !important;
}

.u-pt-20 {
  padding-top: 20px !important;
}

.u-pt-25 {
  padding-top: 25px !important;
}

.u-pt-30 {
  padding-top: 30px !important;
}

.u-pt-35 {
  padding-top: 35px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pt-45 {
  padding-top: 45px !important;
}

.u-pt-50 {
  padding-top: 50px !important;
}

.u-pt-55 {
  padding-top: 55px !important;
}

.u-pt-60 {
  padding-top: 60px !important;
}

.u-pt-65 {
  padding-top: 65px !important;
}

.u-pt-70 {
  padding-top: 70px !important;
}

.u-pt-75 {
  padding-top: 75px !important;
}

.u-pt-80 {
  padding-top: 80px !important;
}

.u-pt-85 {
  padding-top: 85px !important;
}

.u-pt-90 {
  padding-top: 90px !important;
}

.u-pt-95 {
  padding-top: 95px !important;
}

.u-pt-100 {
  padding-top: 100px !important;
}

.u-pb-5 {
  padding-bottom: 5px !important;
}

.u-pb-10 {
  padding-bottom: 10px !important;
}

.u-pb-15 {
  padding-bottom: 15px !important;
}

.u-pb-20 {
  padding-bottom: 20px !important;
}

.u-pb-25 {
  padding-bottom: 25px !important;
}

.u-pb-30 {
  padding-bottom: 30px !important;
}

.u-pb-35 {
  padding-bottom: 35px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-pb-45 {
  padding-bottom: 45px !important;
}

.u-pb-50 {
  padding-bottom: 50px !important;
}

.u-pb-55 {
  padding-bottom: 55px !important;
}

.u-pb-60 {
  padding-bottom: 60px !important;
}

.u-pb-65 {
  padding-bottom: 65px !important;
}

.u-pb-70 {
  padding-bottom: 70px !important;
}

.u-pb-75 {
  padding-bottom: 75px !important;
}

.u-pb-80 {
  padding-bottom: 80px !important;
}

.u-pb-85 {
  padding-bottom: 85px !important;
}

.u-pb-90 {
  padding-bottom: 90px !important;
}

.u-pb-95 {
  padding-bottom: 95px !important;
}

.u-pb-100 {
  padding-bottom: 100px !important;
}

.u-fontSize-10 {
  font-size: 10px !important;
}

.u-fontSize-11 {
  font-size: 11px !important;
}

.u-fontSize-12 {
  font-size: 12px !important;
}

.u-fontSize-13 {
  font-size: 13px !important;
}

.u-fontSize-14 {
  font-size: 14px !important;
}

.u-fontSize-15 {
  font-size: 15px !important;
}

.u-fontSize-16 {
  font-size: 16px !important;
}

.u-fontSize-17 {
  font-size: 17px !important;
}

.u-fontSize-18 {
  font-size: 18px !important;
}

.u-fontSize-19 {
  font-size: 19px !important;
}

.u-fontSize-20 {
  font-size: 20px !important;
}

.u-fontSize-21 {
  font-size: 21px !important;
}

.u-fontSize-22 {
  font-size: 22px !important;
}

.u-fontSize-23 {
  font-size: 23px !important;
}

.u-fontSize-24 {
  font-size: 24px !important;
}

.u-fontSize-25 {
  font-size: 25px !important;
}

.u-fontSize-26 {
  font-size: 26px !important;
}

.u-fontSize-27 {
  font-size: 27px !important;
}

.u-fontSize-28 {
  font-size: 28px !important;
}

.u-fontSize-29 {
  font-size: 29px !important;
}

.u-fontSize-30 {
  font-size: 30px !important;
}

/* ========================================
header
======================================== */
.header {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 19px 0;
  padding: 21px calc(50 / 1440 * 100vw) 23px calc(53 / 1440 * 100vw);
  background: #fff;
}
@media screen and (max-width: 767px) {
  .header {
    height: var(--header-height-sp);
    padding: 16px var(--mg-sp) 0;
    position: sticky;
    top: 0;
    z-index: var(--z-index-header);
  }
}
@media (hover: hover) {
  .header a {
    transition: opacity 0.3s;
  }
  .header a:hover {
    opacity: 0.7;
  }
}
.header_logo {
  margin: 0 min(calc(7 / 1440 * 100vw), 7px) 0 0;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .header_logo {
    width: 123px;
  }
}
.header_subNav {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.header_subNav li {
  border-left: 1px solid #707070;
  border-right: 1px solid #707070;
  margin-right: -1px;
}
.header_subNav button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
@media (hover: hover) {
  .header_subNav button {
    transition: opacity 0.3s;
  }
  .header_subNav button:hover {
    opacity: 0.7;
  }
}
.header_subNav a,
.header_subNav button {
  display: block;
  padding: 0 min(calc(19 / 1000 * 100vw), 19px);
  color: inherit;
  font-size: clamp(11px , calc(13 / 1000 * 100vw), 13px);
  line-height: 1.2307692308;
}
.header_primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px min(calc(34 / 1440 * 100vw), 34px);
}
@media screen and (max-width: 1024px) {
  .header_primary {
    flex-wrap: wrap;
    gap: 11px 30px;
  }
}
.header_search {
  display: flex;
  gap: 0 min(calc(14 / 1440 * 100vw), 14px);
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .header_search {
    flex: 1;
    max-width: 1200px;
  }
}
@media screen and (max-width: 1024px) {
  .header_search {
    order: 2;
    gap: 0 15px;
    width: 100%;
  }
}
.header_search_narrowing {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: max(27.6797829037%, 140px);
  height: 45px;
  padding-left: min(calc(20 / 1440 * 100vw), 20px);
  padding-right: 45px;
  border: 0;
  background: var(--color-text-emp) url(../img/common/search_cat.svg) right 10px center/auto no-repeat;
  border-radius: 4px;
  box-shadow: none;
  color: #fff;
  font-size: clamp(15px , calc(17 / 1440 * 100vw), 17px);
  font-weight: 700;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .header_search_narrowing {
    width: 116px;
    height: 35px;
    padding-left: 8px;
    padding-right: 30px;
    border-radius: 3px;
    background-size: 21px;
    background-position: right 6px center;
    font-size: 14px;
  }
}
.header_search_keyword {
  flex: 1;
}
.header_appBox {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 0 min(calc(39 / 1440 * 100vw), 39px);
}
@media screen and (max-width: 767px) {
  .header_appBox {
    justify-content: space-between;
    gap: 0 0;
    flex: 1;
    max-width: 173px;
  }
}
@media screen and (min-width: 768px) {
  .header_appBox .ec-headerRole__cart {
    position: relative;
  }
}
.header_appBox .ec-cartNaviNull {
  right: 50%;
  transform: translateX(50%);
}
.header_appBox .ec-cartNaviNull::before {
  right: 50%;
  transform: translateX(50%);
}
.header_appBox a,
.header_appBox button {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 23px 1fr;
  color: inherit;
  text-align: center;
  position: relative;
}
.header_appBox a.ec-cartNavi,
.header_appBox button.ec-cartNavi {
  min-width: 0;
  height: auto;
}
.header_appBox button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
.header_appBox ._cartNum {
  display: block;
  width: 20px;
  font-family: var(--font-anton);
  font-size: 10px;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 7px;
}
@media screen and (max-width: 767px) {
  .header_appBox ._cartNum {
    left: 2px;
  }
}
.header_appBox ._text {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .header_appBox ._text {
    display: none;
  }
}

/* ========================================
footer
======================================== */
@media screen and (min-width: 768px) {
  .footer {
    margin-top: 164px;
  }
}
@media screen and (max-width: 767px) {
  .footer_spTtl {
    display: flex;
    align-items: center;
    gap: 0 15px;
    height: 64px;
    padding: 0 var(--mg-sp);
    background: var(--color-text-emp);
    color: #fff;
    font-size: 15px;
  }
  .footer_spTtl_en {
    font-family: var(--font-anton);
    font-size: 22px;
    letter-spacing: 0.03em;
  }
}
.footer_infoArea {
  background: var(--color-bg03);
}
@media screen and (max-width: 767px) {
  .footer_infoArea {
    background: none;
  }
}
.footer_infoArea_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0 min(calc(100 / 1440 * 100vw), 100px);
  padding: 80px 0 74px;
}
@media screen and (max-width: 767px) {
  .footer_infoArea_inner {
    padding: 0;
    width: 100%;
  }
}
.footer_infoArea a {
  color: inherit;
}
@media (hover: hover) {
  .footer_infoArea a {
    transition: opacity 0.3s;
  }
  .footer_infoArea a:hover {
    opacity: 0.7;
  }
}
.footer_nav {
  flex: 1;
}
@media screen and (min-width: 1025px) {
  .footer_nav {
    display: flex;
    justify-content: space-between;
    gap: 0 40px;
    max-width: 828px;
  }
}
@media screen and (max-width: 1024px) {
  .footer_nav {
    max-width: 380px;
  }
}
@media screen and (max-width: 767px) {
  .footer_nav {
    max-width: 100%;
    padding: 40px 0 40px var(--mg-sp);
    background: var(--color-bg04);
  }
}
.footer_nav dl {
  margin: 0;
}
@media screen and (min-width: 1025px) {
  .footer_nav dl {
    flex: 1;
    max-width: 338px;
  }
}
@media screen and (max-width: 1024px) {
  .footer_nav dl {
    width: 100%;
  }
  .footer_nav dl + dl {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .footer_nav dl + dl {
    margin-top: 45px;
  }
}
.footer_nav dt {
  padding-bottom: 14px;
  border-bottom: 2px solid var(--color-text-emp);
  font-size: 14px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .footer_nav dt {
    padding-right: var(--mg-sp);
    padding-bottom: 0;
    border-bottom: 0;
    font-size: 16px;
  }
  .footer_nav dt a {
    display: block;
    background: url(../img/common/link_arrow-black.svg) right center/11px auto no-repeat;
  }
}
.footer_nav dd {
  margin: 20px 0 0;
}
.footer_nav_list {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .footer_nav_list li {
    border-bottom: 1px solid var(--color-boder03);
  }
}
@media screen and (min-width: 768px) {
  .footer_nav_list li + li {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .footer_nav_list a {
    display: flex;
    align-items: center;
    height: 54px;
    padding: 0 var(--mg-sp);
    background: #fff url(../img/common/link_arrow-glay.svg) right var(--mg-sp) center/11px auto no-repeat;
    font-size: 16px;
  }
}
.footer_nav_bnr {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .footer_nav_bnr {
    margin-top: 40px;
    padding-right: var(--mg-sp);
  }
}
.footer_company {
  width: 357px;
  padding-top: 16px;
  font-size: 15px;
  line-height: 1.4666666667;
}
@media screen and (max-width: 767px) {
  .footer_company {
    width: calc(100% - var(--mg-sp) * 2);
    margin: 0 auto;
    padding: 39px 0 47px;
    font-size: 17px;
    line-height: 1.4705882353;
  }
}
.footer_company dl {
  margin: 0;
}
.footer_company dl + dl {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .footer_company dl + dl {
    margin-top: 39px;
  }
}
.footer_company dt {
  display: flex;
  align-items: center;
  gap: 0 7px;
  font-weight: 400;
}
.footer_company dt::before {
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background: url(../img/common/footer_company_icon.svg) center/contain no-repeat;
}
.footer_company dd {
  margin: 8px 0 0;
}
.footer_company dd p + p {
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .footer_company dd p + p {
    margin-top: 5px;
  }
}
.footer_facebook iframe {
  width: 100%;
}
.footer_mapLink a {
  display: flex;
  align-items: center;
  gap: 0 10px;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: underline;
}
.footer_mapLink a::after {
  content: "";
  display: block;
  width: 16px;
  height: 22px;
  background: url(../img/common/footer_map_icon.svg) center/contain no-repeat;
}
.footer_topto {
  margin-top: 25px;
}
.footer_topto a {
  display: block;
  width: 45px;
  margin-left: auto;
}
.footer_subArea {
  padding: 104px 0 106px;
  background: var(--color-text-emp);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer_subArea {
    padding: 73px 0;
  }
}
.footer_subArea a {
  color: #fff;
}
@media (hover: hover) {
  .footer_subArea a {
    transition: opacity 0.3s;
  }
  .footer_subArea a:hover {
    opacity: 0.7;
  }
}
.footer_logo {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer_logo img {
    width: 231px;
  }
}
.footer_subNav {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .footer_subNav {
    margin-top: 38px;
  }
}
.footer_subNav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 0;
}
@media screen and (max-width: 767px) {
  .footer_subNav ul {
    max-width: 360px;
    margin: 0 auto;
    padding: 0 var(--mg-sp);
  }
}
.footer_subNav li {
  border-left: 1px solid var(--color-boder03);
  border-right: 1px solid var(--color-boder03);
  margin-right: -1px;
}
.footer_subNav a {
  display: block;
  padding: 0 14px;
  color: inherit;
  font-size: 12px;
  line-height: 1.3333333333;
}
@media screen and (max-width: 767px) {
  .footer_subNav a {
    padding: 0 11px;
    font-size: 11px;
    line-height: 1.3636363636;
  }
}
.footer_copyright {
  display: block;
  padding: 22px 0;
  font-family: var(--font-anton);
  font-size: 10px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
}

/* ========================================
グローバルメニュー
======================================== */
.nav {
  visibility: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: var(--z-index-nav);
  transition: 0s 0.3s;
}
.is-navActive .nav {
  visibility: visible;
  transition: 0s 0s;
}
.nav_container {
  width: 500px;
  height: 100%;
  background: #fff;
  padding: 0 50px 110px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transform: translateX(100%);
  transition: transform 0.3s 0.1s;
}
.is-navActive .nav_container {
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .nav_container {
    width: min(calc(313 / 375 * 100vw), 313px);
    padding: 0 min(calc(15 / 375 * 100vw), 15px) 60px;
  }
}
.nav_container::-webkit-scrollbar {
  display: none;
}
.nav_container a {
  color: inherit;
}
.nav_ttl {
  display: flex;
  align-items: center;
  width: calc(100% + 100px);
  height: 40px;
  margin-left: -50px;
  padding: 0 50px;
  background: #333;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .nav_ttl {
    width: calc(100% + min(calc(15 / 375 * 100vw), 15px) * 2);
    margin-left: calc(min(calc(15 / 375 * 100vw), 15px) * -2);
    transform: translateX(min(calc(15 / 375 * 100vw), 15px));
    padding: 0 min(calc(15 / 375 * 100vw), 15px);
    font-size: 15px;
  }
}
.nav_ttl a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  background: #333 url(../img/common/link_arrow-white.svg) right 6px center/11px auto no-repeat;
  color: #fff;
}
@media (hover: hover) {
  .nav_ttl a {
    transition: opacity 0.3s;
  }
  .nav_ttl a:hover {
    opacity: 0.7;
  }
}
.nav_list {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  margin-top: 3px;
}
.nav_list button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
.nav_list > li > a,
.nav_list > li > button {
  display: flex;
  align-items: center;
  width: 100%;
  height: 64px;
  padding-left: 15px;
  background: #fff url(../img/common/link_arrow-glay.svg) right 6px center/11px auto no-repeat;
  border-bottom: 2px solid var(--color-boder03);
  color: inherit;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .nav_list > li > a,
  .nav_list > li > button {
    height: 54px;
    padding-left: 10px;
    font-size: 14px;
  }
}
@media (hover: hover) {
  .nav_list > li > a,
  .nav_list > li > button {
    transition: 0.3s;
  }
  .nav_list > li > a:hover,
  .nav_list > li > button:hover {
    background-color: var(--color-bg03);
  }
}
.nav_list > li._inSubMenu > a,
.nav_list > li._inSubMenu > button {
  border-bottom: 0;
}
.nav_list ._icon,
.nav_list ._iconText {
  display: flex;
  align-items: center;
  width: 62px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .nav_list ._icon,
  .nav_list ._iconText {
    width: 50px;
  }
}
.nav_list ._iconText {
  font-family: var(--font-anton);
  font-size: 16px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .nav_list.-spLarge > a,
  .nav_list.-spLarge > button {
    height: 55px;
    font-size: 16px;
  }
}
.nav_list ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  padding-bottom: 16px;
  padding-left: 78px;
  border-bottom: 2px solid var(--color-boder03);
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .nav_list ul {
    padding-left: 60px;
  }
}
.nav_list ul li + li {
  margin-top: 1px;
}
.nav_list ul a {
  display: block;
  font-weight: 500;
  padding: 2px 0 2px 14px;
  position: relative;
}
.nav_list ul a:hover {
  color: #296292;
}
.nav_list ul a::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: url(../img/aside/aside_arrow.svg) center/auto no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.nav_appBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 20px;
  width: 100%;
  padding: 20px 0 25px;
}
@media screen and (max-width: 767px) {
  .nav_appBox {
    padding: 15px 0;
  }
}
.nav_appBox li {
  width: calc((100% - 20px) / 2);
}
.nav_appBox a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background: var(--color-text-emp);
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
@media (hover: hover) {
  .nav_appBox a {
    transition: opacity 0.3s;
  }
  .nav_appBox a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .nav_appBox a {
    height: 45px;
    border-radius: 3px;
  }
}
.nav_keyword {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .nav_keyword {
    margin-top: 16px;
  }
}
.nav_keyword input {
  font-size: 16px;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .nav_keyword input {
    height: 45px;
    font-size: 14px;
    padding-left: 10px;
  }
}
.nav_links {
  margin: 30px 0 31px;
}
@media screen and (max-width: 767px) {
  .nav_links {
    margin: 20px 0;
  }
}
@media screen and (min-width: 768px) {
  .nav_links .l-links {
    justify-content: space-between;
    gap: 20px 0;
  }
  .nav_links .l-links > li {
    width: calc((100% - 17px) / 2);
  }
  .nav_links .l-links ._column {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .nav_links .l-links {
    gap: 15px 0;
  }
}
.nav_bnr {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .nav_bnr {
    margin-top: 20px;
  }
}
.nav_bnr img {
  width: 100%;
}
@media (hover: hover) {
  .nav_bnr a {
    transition: opacity 0.3s;
  }
  .nav_bnr a:hover {
    opacity: 0.7;
  }
}
.nav_sns {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  margin-top: 30px;
}
@media (hover: hover) {
  .nav_sns a {
    transition: opacity 0.3s;
  }
  .nav_sns a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .nav_sns img {
    width: 36px;
  }
}
.nav_subList {
  display: flex;
  flex-wrap: wrap;
  gap: 23px 0;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .nav_subList {
    gap: 16px 0;
  }
}
.nav_subList li {
  border-left: 2px solid var(--color-boder03);
  border-right: 2px solid var(--color-boder03);
  margin-right: -2px;
}
.nav_subList a {
  display: block;
  padding: 0 18px;
  color: inherit;
  font-size: 15px;
  line-height: 1.4666666667;
}
@media (hover: hover) {
  .nav_subList a {
    transition: opacity 0.3s;
  }
  .nav_subList a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .nav_subList a {
    padding: 0 11px;
    font-size: 11px;
    line-height: 1.3636363636;
  }
}
.nav_overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s 0.3s;
}
.is-navActive .nav_overlay {
  opacity: 1;
  transition: opacity 0.3s 0s;
}
.nav_overlay_closedBtn {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 518px;
  top: 10px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .nav_overlay_closedBtn {
    width: 30px;
    height: 30px;
    top: 16px;
    right: calc(min(calc(313 / 375 * 100vw), 313px) + min(calc(15 / 375 * 100vw), 15px));
  }
}
.nav_overlay_closedBtn::before, .nav_overlay_closedBtn::after {
  content: "";
  display: block;
  width: 23px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}
@media screen and (max-width: 767px) {
  .nav_overlay_closedBtn::before, .nav_overlay_closedBtn::after {
    width: 28px;
  }
}
.nav_overlay_closedBtn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav_overlay_closedBtn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ========================================
商品のタグ narrowing
======================================== */
.narrowing {
  width: 100%;
  height: 100%;
  padding: 30px 0 63px;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-narrowing);
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  .narrowing {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
}
@media screen and (max-width: 767px) {
  .narrowing {
    width: 100vw;
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.3s;
    overflow: clip;
  }
}
@media screen and (min-width: 768px) {
  .is-narrowingActive .narrowing {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 767px) {
  .is-narrowingActive .narrowing {
    transform: translateX(0);
  }
}
.narrowing_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-index-narrowingOverray);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (max-width: 767px) {
  .narrowing_overlay {
    display: none;
  }
}
.is-narrowingActive .narrowing_overlay {
  opacity: 1;
  visibility: visible;
}
.narrowing_container {
  padding: 40px min(calc(100 / 1300 * 100vw), 100px);
  background: #fff;
  border-radius: 4px;
  max-width: 1200px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .narrowing_container {
    width: 100%;
    height: 100%;
    padding: 0 0 70px;
    border-radius: 0;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .narrowing_container::-webkit-scrollbar {
    display: none;
  }
}
.narrowing_closedBtn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 15px;
  right: min(calc(28 / 1300 * 100vw), 28px);
}
.narrowing_closedBtn::before, .narrowing_closedBtn::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-bg01);
  position: absolute;
  top: 50%;
  left: 50%;
}
.narrowing_closedBtn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.narrowing_closedBtn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .narrowing_keyword {
    padding: 21px var(--mg-sp) 20px;
    border-bottom: 1px solid var(--color-boder03);
  }
  .narrowing_keyword .l-search_input {
    height: 45px;
  }
}
.narrowing_form {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .narrowing_form {
    margin-top: 0;
  }
}
.narrowing_spTtlBox {
  background: var(--color-text-base);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  color: #fff;
  text-align: center;
  font-size: 15px;
  position: relative;
}
.narrowing_spTtlBox button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0 14px;
  height: 100%;
  color: #fff;
  position: absolute;
  top: 0;
  left: var(--mg-sp);
}
.narrowing_spTtlBox button::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background: url(../img/common/link_arrow-glay.svg) center/contain no-repeat;
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .narrowing_selectArea {
    overflow: clip;
  }
}
.narrowing_catApp {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 59px;
  padding: 8px var(--mg-sp);
  border-bottom: 1px solid var(--color-boder03);
  color: var(--color-text-base);
  font-size: 15px;
  font-weight: 700;
}
.narrowing_catApp > * {
  width: 46%;
}
.narrowing_catApp ._cat {
  flex: 1;
  display: block;
  padding: 0 30px 0 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-align: right;
  position: relative;
}
.narrowing_catApp ._cat::after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background: url(../img/common/link_arrow-glay.svg) center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.narrowing_catTab {
  display: flex;
  flex-wrap: wrap;
}
.narrowing_catTab button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 33.3333333333%;
  height: 54px;
  border-bottom: 1px solid var(--color-boder03);
  border-width: 4px;
  color: var(--color-boder02);
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .narrowing_catTab button {
    height: 66px;
    padding-top: 16px;
    font-size: 17px;
  }
}
.narrowing_catTab button.is-active {
  border-color: var(--color-boder01);
  color: var(--color-text-base);
}
.narrowing_catContainer {
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .narrowing_catContainer {
    margin-top: 0;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .narrowing_catBox {
    width: 100%;
    height: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    transform: translateX(100%);
    transition: transform 0.3s;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .narrowing_catBox::-webkit-scrollbar {
    display: none;
  }
  .narrowing_catBox.is-active {
    transform: translateX(0);
  }
}
.narrowing_catList {
  display: none;
}
.narrowing_catList:first-of-type {
  display: block;
}
.narrowing_catList_inner {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 5%;
}
.narrowing_catList input[type=checkbox] {
  display: none;
}
.narrowing_catList label {
  display: flex;
  align-items: center;
  gap: 0 22px;
  width: 30%;
  height: 52px;
  border-bottom: 2px solid var(--color-boder03);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .narrowing_catList label {
    width: 47.5%;
    height: 55px;
  }
}
@media screen and (max-width: 767px) {
  .narrowing_catList label {
    width: 100%;
    padding: 0 var(--mg-sp);
    border-width: 1px;
  }
}
.narrowing_catList ._icon {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
}
.narrowing_catList ._icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.narrowing_catList ._text {
  flex: 1;
  position: relative;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .narrowing_catList ._text {
    font-size: 16px;
  }
}
.narrowing_catList ._text::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(../img/common/narrowing_check.svg) center/21px auto no-repeat;
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  opacity: 0;
}
.narrowing_catList input:checked + ._text::before {
  opacity: 1;
}
.narrowing_otherTtl {
  display: flex;
  align-items: center;
  margin: 39px 0 29px;
}
@media screen and (max-width: 767px) {
  .narrowing_otherTtl {
    gap: 0 17px;
    height: 60px;
    background: var(--color-bg03);
    margin: 0;
    padding: 0 var(--mg-sp);
  }
}
.narrowing_otherTtl::before, .narrowing_otherTtl::after {
  content: "";
  display: block;
  flex: 1;
  height: 2px;
  background: #333;
}
@media screen and (max-width: 767px) {
  .narrowing_otherTtl::before, .narrowing_otherTtl::after {
    display: none;
  }
}
.narrowing_otherTtl ._mainText {
  display: block;
  width: 190px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .narrowing_otherTtl ._mainText {
    width: auto;
    font-size: 14px;
  }
}
.narrowing_otherTtl ._minText {
  flex: 1;
  color: var(--color-bg01);
  font-size: 11px;
}
.narrowing_other {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 5%;
}
@media screen and (max-width: 767px) {
  .narrowing_other {
    display: block;
  }
}
.narrowing_other dl {
  width: 30%;
  margin-bottom: 0;
}
.narrowing_other dl[data-enabled="0"] {
  pointer-events: none;
}
.narrowing_other dl[data-enabled="0"] select,
.narrowing_other dl[data-enabled="0"] input {
  background-color: #E0E0E0;
}
@media screen and (max-width: 1024px) {
  .narrowing_other dl {
    width: 47.5%;
  }
}
@media screen and (max-width: 767px) {
  .narrowing_other dl {
    width: 100%;
    padding: 9px var(--mg-sp);
    border-bottom: 1px solid var(--color-boder03);
  }
}
@media screen and (max-width: 767px) {
  .narrowing_other dl._spHorizontal {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .narrowing_other dl._spHorizontal > * {
    width: 46%;
  }
  .narrowing_other dl._spHorizontal dd {
    margin-top: 0;
  }
}
.narrowing_other dt {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .narrowing_other dt {
    font-size: 15px;
  }
}
.narrowing_other dd {
  margin: 14px 0 0;
}
.narrowing_other select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 45px;
  padding: 0 30px 0 10px;
  border: 1px solid var(--color-boder02);
  border-radius: 4px;
  background: url(../img/common/selsect_arrow.svg) right 9px center/auto no-repeat;
  color: var(--color-text-base);
  font-size: 16px;
  background-color: #fff;
  color: #7a7a7a;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .narrowing_other select {
    height: 42px;
    font-size: 15px;
    border-radius: 2px;
  }
}
@media screen and (min-width: 768px) {
  .narrowing_other select {
    height: 39px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .narrowing_other select {
    height: 42px;
  }
}
.narrowing_other ._col2 {
  display: flex;
  align-items: center;
  gap: 0 5px;
}
.narrowing_other ._col2 select {
  flex: 1;
}
.narrowing_appArea {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  width: 100%;
  height: 63px;
  padding: 10px 0;
  background: rgba(157, 157, 157, 0.9);
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .narrowing_appArea {
    height: 60px;
    gap: 0 2.1739130435%;
    padding: 9px var(--mg-sp);
  }
}
.narrowing_appArea input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  box-shadow: none;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}
@media (hover: hover) {
  .narrowing_appArea input {
    transition: opacity 0.3s;
  }
  .narrowing_appArea input:hover {
    opacity: 0.7;
  }
}
.narrowing_reset {
  width: 102px;
  height: 100%;
  background: #fff;
  border-radius: 4px;
  color: var(--color-text-base);
}
@media screen and (max-width: 767px) {
  .narrowing_reset {
    width: 28.6956521739%;
    border-radius: 2px;
  }
}
.narrowing_submitBox {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 524px;
  height: 100%;
  padding-right: 10px;
  background: var(--color-text-red);
  border-radius: 4px;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  text-align: right;
  position: relative;
}
@media screen and (max-width: 767px) {
  .narrowing_submitBox {
    flex: 1;
    border-radius: 2px;
  }
}
.narrowing_submitBox input {
  width: 100%;
  height: 100%;
  background: transparent;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.narrowing_resultNum {
  font-size: 15px;
  margin-right: 3px;
}

/* ========================================
ec-cubeデフォルトの上書き
プラグインの上書き
+α .l-ec
======================================== */
.ec-role {
  padding-left: 0;
  padding-right: 0;
}

@media screen and (max-width: 767px) {
  .ec-pageHeader {
    padding: 44px 0 42px;
  }
}
.ec-pageHeader h1 {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  min-height: 92px;
  color: var(--color-text-base);
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .ec-pageHeader h1 {
    border: none;
    font-size: 20px;
    min-height: 0;
    margin-bottom: 0;
  }
}

.ec-blockBtn--action,
.ec-inlineBtn--action {
  background-color: #AA0000;
  border-color: #AA0000;
}

.ec-blockBtn--cancel {
  background-color: var(--color-text-base);
  border: 0;
}

.ec-modal .ec-role {
  display: flex;
  justify-content: center;
  gap: 10px 10px;
}

.ec-modal .ec-role:after {
  display: none;
}

.ec-modal .ec-inlineBtn--action.no_link {
  background-color: var(--color-bg02);
  border-color: var(--color-bg02);
  pointer-events: none;
}

.l-ecFormIntro {
  margin-top: -4px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .l-ecFormIntro {
    padding: 0 20px;
  }
}

.l-ecForm .ec-borderedDefs {
  border-top: none;
}
.l-ecForm .ec-borderedDefs dl {
  padding: 0;
  border-bottom: 1px solid var(--color-boder02);
}
.l-ecForm .ec-borderedDefs dl:first-of-type {
  border-top: 1px solid var(--color-boder02);
}
.l-ecForm .ec-borderedDefs dt {
  background: var(--color-bg03);
  width: max(27%, 180px);
  padding: 19px 16px;
  border-left: 1px solid var(--color-boder02);
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-ecForm .ec-borderedDefs dt {
    width: 100%;
    border-right: 1px solid var(--color-boder02);
    font-size: 14px;
    padding: 12px 10px;
  }
}
.l-ecForm .ec-borderedDefs dt * {
  margin-bottom: 0;
}
.l-ecForm .ec-borderedDefs dt label {
  display: inline;
}
.l-ecForm .ec-borderedDefs dd {
  width: 73%;
  margin: 0;
  padding: 17px 20px 17px 40px;
  border-left: 1px solid var(--color-boder02);
  border-right: 1px solid var(--color-boder02);
  line-height: inherit;
}
@media screen and (max-width: 767px) {
  .l-ecForm .ec-borderedDefs dd {
    width: 100%;
    padding: 15px 10px;
  }
}
.l-ecForm .ec-zipInputHelp {
  margin-bottom: 0;
}
.l-ecForm .ec-input input,
.l-ecForm .ec-birth input,
.l-ecForm .ec-select input,
.l-ecForm .ec-halfInput input,
.l-ecForm .ec-numberInput input,
.l-ecForm .ec-zipInput input,
.l-ecForm .ec-telInput input {
  margin-bottom: 0;
  height: 26px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .l-ecForm .ec-input input,
  .l-ecForm .ec-birth input,
  .l-ecForm .ec-select input,
  .l-ecForm .ec-halfInput input,
  .l-ecForm .ec-numberInput input,
  .l-ecForm .ec-zipInput input,
  .l-ecForm .ec-telInput input {
    height: 31px;
    border-radius: 2px;
  }
}
.l-ecForm .ec-select {
  margin-bottom: 15px;
}
.l-ecForm .ec-select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 45px;
  padding: 0 30px 0 10px;
  border: 1px solid var(--color-boder02);
  border-radius: 4px;
  background: url(../img/common/selsect_arrow.svg) right 9px center/auto no-repeat;
  color: var(--color-text-base);
  font-size: 16px;
  width: auto;
  height: 26px;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .l-ecForm .ec-select select {
    height: 42px;
    font-size: 15px;
    border-radius: 2px;
  }
}
@media screen and (max-width: 767px) {
  .l-ecForm .ec-select select {
    height: 31px;
  }
}
.l-ecForm .ec-required {
  color: var(--color-red-dark);
  font-size: 12px;
}
.l-ecForm .ec-errorMessage {
  display: block;
  width: 100%;
  margin-top: 4px;
  margin-left: 0;
  margin-bottom: 0;
}
.l-ecForm_notes {
  margin-top: 11px;
}
.l-ecForm_notes + .ec-input {
  margin-top: 11px;
}
.l-ecForm_addBox {
  display: flex;
  flex-wrap: wrap;
  gap: 33px 28px;
  margin-top: 30px;
}
.l-ecForm_addBox a,
.l-ecForm_addBox button {
  width: 182px;
  min-width: 0;
  border-radius: 4px;
  font-size: 14px;
}
.l-ecForm_addBox .ec-blockBtn--cancel {
  border: 1px solid var(--color-text-base);
  background: transparent;
  color: var(--color-text-base);
}
@media (hover: hover) {
  .l-ecForm_addBox .ec-blockBtn--cancel {
    transition: 0.3s;
  }
  .l-ecForm_addBox .ec-blockBtn--cancel:hover {
    background: var(--color-text-base);
    color: #fff;
  }
}
.l-ecForm .l-ecForm_mt {
  margin-top: 10px;
}
.l-ecForm .l-ecForm_forgetCont {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0;
}
.l-ecForm .l-ecForm_forgetCont + .l-ecForm_forgetCont {
  margin-top: 10px;
}
.l-ecForm .l-ecForm_forgetCont input {
  flex: 1;
}

#page_entry .l-ecForm .ec-zipInput .ec-errorMessage,
#page_mypage_delivery_new .l-ecForm .ec-zipInput .ec-errorMessage {
  margin-top: 1px;
}
#page_entry .l-ecForm .ec-select .ec-errorMessage,
#page_entry .l-ecForm .ec-checkbox .ec-errorMessage,
#page_mypage_delivery_new .l-ecForm .ec-select .ec-errorMessage,
#page_mypage_delivery_new .l-ecForm .ec-checkbox .ec-errorMessage {
  margin-top: -1px;
}

.l-errorCol {
  display: flex;
  justify-content: space-between;
}
.l-errorCol > div {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .l-errorCol > div {
    width: 47%;
  }
}
.l-errorCol > div:nth-child(2) {
  width: 55%;
  margin-left: auto;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .l-errorCol > div:nth-child(2) {
    width: 53%;
    padding-left: 3%;
  }
}

.ec-inlineBtn {
  width: 116px;
  padding: 8px 10px;
  background: transparent;
  border-color: var(--color-text-base);
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .l-breadcrumbWrap {
    background-color: var(--color-bg03);
    padding-right: var(--mg-sp);
    overflow: scroll;
    white-space: nowrap;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .l-breadcrumbWrap::-webkit-scrollbar {
    display: none;
  }
}

ol.breadcrumb {
  flex-wrap: nowrap;
  padding: 0 calc(50 / 1440 * 100vw) 0 calc(53 / 1440 * 100vw);
  margin-bottom: 0;
  background-color: var(--color-bg03);
  font-size: 11px;
}
@media screen and (max-width: 767px) {
  ol.breadcrumb {
    padding-left: var(--mg-sp);
    padding-right: 0;
    font-size: 10px;
  }
}
ol.breadcrumb:first-of-type {
  padding-top: 6px;
}
ol.breadcrumb:last-of-type {
  padding-bottom: 6px;
  margin-bottom: var(--mg-breadcrumb-pc);
}
@media screen and (max-width: 767px) {
  ol.breadcrumb:last-of-type {
    margin-bottom: 0;
  }
}
ol.breadcrumb + .breadcrumb {
  padding-top: 4px;
}

#page_product_detail .breadcrumb li:last-child {
  display: none;
}

.ec-navlistRole .ec-navlistRole__navlist {
  border-color: var(--color-boder02);
}
.ec-navlistRole .ec-navlistRole__item {
  border-color: var(--color-boder02);
  font-weight: 400;
}
@media (hover: hover) {
  .ec-navlistRole .ec-navlistRole__item:not(.active) a:hover {
    background-color: var(--color-bg03);
  }
}
@media screen and (min-width: 1025px) {
  .ec-navlistRole {
    margin-top: -15px;
  }
  .ec-navlistRole .ec-navlistRole__navlist {
    border: none;
  }
  .ec-navlistRole .ec-navlistRole__item {
    border: none;
    width: 20%;
    position: relative;
  }
  .ec-navlistRole .ec-navlistRole__item::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: var(--color-boder02);
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .ec-navlistRole .ec-navlistRole__item a {
    padding-left: 2px;
    padding-right: 2px;
    font-size: clamp(12px , calc(15 / 1440 * 100vw), 15px);
  }
  .ec-navlistRole .ec-navlistRole__item.active::after {
    height: 3px;
    background: var(--color-red-dark);
  }
  .ec-navlistRole .ec-navlistRole__item.active a {
    color: inherit;
  }
}
@media screen and (max-width: 1024px) {
  .ec-navlistRole .ec-navlistRole__navlist {
    flex-wrap: wrap;
  }
  .ec-navlistRole .ec-navlistRole__item {
    width: 33.3333333333%;
  }
  .ec-navlistRole .ec-navlistRole__item a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .ec-navlistRole .ec-navlistRole__item.active {
    background-color: var(--color-red-dark);
  }
  .ec-navlistRole .ec-navlistRole__item.active a {
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .ec-navlistRole .ec-navlistRole__item {
    width: 50%;
  }
}

.ec-favoriteRole .ec-favoriteRole__itemList {
  display: block;
  margin-top: -1px;
}
@media screen and (max-width: 767px) {
  .ec-favoriteRole .ec-favoriteRole__itemList {
    margin-top: 22px;
  }
}
.ec-favoriteRole .ec-favoriteRole__item {
  display: flex;
  align-items: center;
  gap: 0 min(calc(40 / 1440 * 100vw), 40px);
  width: 100%;
  border-bottom: 1px solid var(--color-boder02);
  padding: 20px min(calc(140 / 1440 * 100vw), 140px) 20px min(calc(40 / 1440 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .ec-favoriteRole .ec-favoriteRole__item {
    align-items: stretch;
    gap: 0 19px;
    width: calc(100% + var(--mg-sp) * 2);
    margin-left: calc(-1 * var(--mg-sp));
    padding: 25px var(--mg-sp);
  }
}
.ec-favoriteRole .ec-favoriteRole__item:first-of-type {
  border-top: 1px solid var(--color-boder02);
}
@media (hover: hover) {
  .ec-favoriteRole .ec-favoriteRole__item a {
    transition: opacity 0.3s;
  }
  .ec-favoriteRole .ec-favoriteRole__item a:hover {
    opacity: 0.7;
  }
}
.ec-favoriteRole .ec-favoriteRole__item .ec-closeBtn--circle {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  right: １８px;
  transform: translateY(-50%);
  line-height: 0;
  background: none;
}
@media screen and (max-width: 767px) {
  .ec-favoriteRole .ec-favoriteRole__item .ec-closeBtn--circle {
    top: auto;
    bottom: 0;
    right: 0;
  }
}
.ec-favoriteRole .ec-favoriteRole__item .ec-favoriteRole__itemThumb {
  width: 140px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .ec-favoriteRole .ec-favoriteRole__item .ec-favoriteRole__itemThumb {
    width: 116px;
  }
}
.ec-favoriteRole .ec-favoriteRole__item .l-ecFavorite_contBox {
  width: calc(100% - 140px - min(calc(40 / 1440 * 100vw), 40px));
}
@media screen and (min-width: 1025px) {
  .ec-favoriteRole .ec-favoriteRole__item .l-ecFavorite_contBox {
    display: flex;
    align-items: center;
    gap: 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .ec-favoriteRole .ec-favoriteRole__item .l-ecFavorite_contBox {
    display: flex;
    flex-direction: column;
    width: calc(100% - 116px - 19px);
  }
}
.ec-favoriteRole .ec-favoriteRole__item .ec-favoriteRole__item-image {
  margin: 0;
  padding-top: 100%;
  background: var(--color-bg03);
  position: relative;
}
.ec-favoriteRole .ec-favoriteRole__item .ec-favoriteRole__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.ec-favoriteRole .ec-favoriteRole__item .ec-favoriteRole__itemTitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3888888889;
}
@media screen and (min-width: 1025px) {
  .ec-favoriteRole .ec-favoriteRole__item .ec-favoriteRole__itemTitle {
    width: calc(100% - 157px);
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .ec-favoriteRole .ec-favoriteRole__item .ec-favoriteRole__itemTitle {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .ec-favoriteRole .ec-favoriteRole__item .ec-favoriteRole__itemTitle {
    font-size: 14px;
  }
}
.ec-favoriteRole .ec-favoriteRole__item .ec-favoriteRole__itemPrice {
  font-weight: 700;
  font-size: 25px;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .ec-favoriteRole .ec-favoriteRole__item .ec-favoriteRole__itemPrice {
    width: 157px;
  }
}
@media screen and (max-width: 1024px) {
  .ec-favoriteRole .ec-favoriteRole__item .ec-favoriteRole__itemPrice {
    padding-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .ec-favoriteRole .ec-favoriteRole__item .ec-favoriteRole__itemPrice {
    margin-top: auto;
    font-size: 19px;
  }
}
.ec-favoriteRole .ec-favoriteRole__item .l-ecFavorite_priceUnit {
  margin-left: 6px;
  font-size: 20px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .ec-favoriteRole .ec-favoriteRole__item .l-ecFavorite_priceUnit {
    font-size: 14px;
    padding-right: 40px;
  }
}

.l-favoriteRole__head {
  display: flex;
  align-items: center;
  width: 100%;
  height: 42px;
  background: var(--color-bg03);
  padding: 0 0 0 min(calc(40 / 1440 * 100vw), 40px);
  text-align: center;
  margin-top: 22px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .l-favoriteRole__head {
    display: none;
  }
}
.l-favoriteRole__head p:nth-child(1) {
  width: 140px;
}
.l-favoriteRole__head p:nth-child(2) {
  width: calc(100% - 140px - min(calc(40 / 1440 * 100vw), 40px));
}
.l-favoriteRole__head p:nth-child(3) {
  width: 160px;
  margin-right: min(calc(90 / 1440 * 100vw), 90px);
}
.l-favoriteRole__head p:nth-child(4) {
  width: 97px;
}

.ec-addressList {
  margin-bottom: 10px;
  counter-reset: addressList 0;
}
.ec-addressList .ec-addressList__item {
  display: grid;
  grid-template-columns: min(calc(106 / 1440 * 100vw), 106px) calc(100% - 296px - min(calc(106 / 1440 * 100vw), 106px)) 296px;
  margin-top: -1px;
  border: 1px solid var(--color-text-base);
  line-height: 1.25;
}
@media screen and (max-width: 1024px) {
  .ec-addressList .ec-addressList__item {
    grid-template-columns: 59px 1fr;
  }
}
@media screen and (max-width: 767px) {
  .ec-addressList .ec-addressList__item {
    line-height: 1.5;
  }
}
.ec-addressList .ec-addressList__item::before {
  counter-increment: addressList;
  content: counter(addressList);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  border-right: 1px solid var(--color-text-base);
}
@media screen and (max-width: 1024px) {
  .ec-addressList .ec-addressList__item::before {
    grid-column: 1/2;
    grid-row: 1/3;
  }
}
.ec-addressList .ec-addressList__item .ec-addressList__address {
  display: block;
  width: auto;
  margin-right: 0;
  padding: 25px 0 25px 36px;
}
@media screen and (max-width: 1024px) {
  .ec-addressList .ec-addressList__item .ec-addressList__address {
    padding: 20px 15px 25px;
  }
}
.ec-addressList .ec-addressList__item .ec-addressList__action {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
  padding: 0;
  position: static;
}
@media screen and (max-width: 1024px) {
  .ec-addressList .ec-addressList__item .ec-addressList__action {
    justify-content: flex-start;
    padding: 0 15px 20px;
  }
  .ec-addressList .ec-addressList__item .ec-addressList__action > * {
    width: calc(50% - 13px);
    max-width: 120px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.l-ecCartNotation {
  width: 100%;
  border: 1px solid var(--color-boder02);
  margin: 14px 0 15px;
  padding: 17px 0;
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-ecCartNotation {
    display: block;
    margin: -15px 0 0;
    padding: 0;
    border: none;
  }
}
.l-ecCartNotation dl {
  margin: 0;
  width: 50%;
  font-size: 15px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-ecCartNotation dl {
    display: flex;
    align-items: center;
    gap: 0 10px;
    width: 100%;
    height: 66px;
    border-bottom: 1px solid var(--color-boder02);
    font-size: 14px;
    line-height: 1.4642857143;
  }
}
.l-ecCartNotation dl + dl {
  position: relative;
}
.l-ecCartNotation dl + dl::before {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: var(--color-boder02);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-ecCartNotation dl + dl::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-ecCartNotation dt {
    width: 130px;
    text-align: left;
  }
}
.l-ecCartNotation dd {
  margin: 8px 0 0;
}
@media screen and (max-width: 767px) {
  .l-ecCartNotation dd {
    margin: 0;
    flex: 1;
  }
}
.l-ecCartNotation dd > div {
  display: flex;
  justify-content: center;
  gap: 0 30px;
}
@media screen and (max-width: 767px) {
  .l-ecCartNotation dd > div {
    justify-content: space-between;
    gap: 0 min(calc(5 / 375 * 100vw), 5px);
    max-width: 205px;
    margin-left: auto;
  }
}
.l-ecCartNotation .form-check-input {
  width: 20px;
  height: 20px;
}
.l-ecCartNotation .form-check {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  font-weight: 500;
}
.l-ecCartNotation .form-check .form-check-input {
  float: none;
  margin-right: 0;
}
.l-ecCartNotation .form-check-input:checked {
  width: 20px;
  height: 20px;
  background-color: var(--color-text-red);
  border-color: var(--color-text-red);
}
@media screen and (max-width: 767px) {
  .l-ecCartNotation .form-check-input:checked {
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 767px) {
  .l-ecCartNotation .form-check-label {
    flex: 1;
  }
}

@media screen and (max-width: 767px) {
  .cart_page .l-aside {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .cart_page .ec-cartRole__total {
    padding-top: 25px;
  }
}
.cart_page .ec-cartRole .ec-cartRole__totalAmount {
  color: var(--color-text-red);
}
@media screen and (max-width: 767px) {
  .cart_page .ec-cartRole .ec-cartRole__totalAmount {
    font-size: 24px;
  }
}

.ec-cartRole {
  padding: 0;
  color: var(--color-text-base);
}
.ec-cartRole .ec-cartRole__cart {
  margin: 0;
  border-top: 1px solid var(--color-boder02);
}
.ec-cartRole .ec-cartRole__actions {
  margin-right: 0;
}
.ec-cartRole .ec-cartRole__totalAmount {
  color: var(--color-red-dark);
}
.ec-cartRole .ec-cartTable {
  border: 0;
}
.ec-cartRole .ec-cartRow {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-bg02);
}
@media screen and (max-width: 767px) {
  .ec-cartRole .ec-cartRow {
    display: block;
    position: relative;
    z-index: 1;
    padding: 15px 0;
  }
}
.ec-cartRole .ec-cartRow > li {
  border: 0;
}
.ec-cartRole .ec-cartRow__contentColumn {
  flex: 1;
  display: flex;
  position: relative;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .ec-cartRole .ec-cartRow__contentColumn {
    display: block;
  }
}
.ec-cartRole .ec-cartRow__img {
  display: block;
  width: 100px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .ec-cartRole .ec-cartRow__img {
    width: 80px;
  }
}
.ec-cartRole .ec-cartRow__summary {
  flex: 1;
  display: block;
}
@media screen and (max-width: 767px) {
  .ec-cartRole .ec-cartRow__summary {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .ec-cartRole .ec-cartRow__summary .ec-cartRow__unitPrice {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .ec-cartRole .ec-cartRow__summary .ec-cartRow__sutbtotalSP {
    margin-top: 5px;
  }
}
.ec-cartRole .ec-cartRow__amountColumn {
  width: auto;
  padding: 0 10px 0 20px;
}
@media screen and (max-width: 767px) {
  .ec-cartRole .ec-cartRow__amountColumn {
    display: flex;
    align-items: center;
    gap: 0 10px;
    width: 100%;
    margin-top: 20px;
    padding: 0 90px 0 0;
  }
  .ec-cartRole .ec-cartRow__amountColumn .ec-cartRow__amountSP {
    margin-bottom: 0;
  }
}
.ec-cartRole .ec-cartRow__subtotalColumn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 10px 0;
  width: 120px;
}
@media screen and (max-width: 767px) {
  .ec-cartRole .ec-cartRow__subtotalColumn {
    display: block;
    width: auto;
    position: absolute;
    right: 0;
    bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .ec-cartRole .ec-cartRow__sutbtotal {
    display: none;
  }
}
.ec-cartRole .l-ecRemoveBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 62px;
  height: 40px;
  border: 1px solid var(--color-boder02);
  border-radius: 2px;
  background: var(--color-bg03);
}

.ec-orderRole {
  color: var(--color-text-base);
}

.ec-totalBox .ec-totalBox__paymentTotal .ec-totalBox__price,
.ec-totalBox .ec-totalBox__paymentTotal .ec-totalBox__taxLabel {
  color: var(--color-red-dark);
}

.ec-progress {
  position: relative;
  z-index: 1;
}

.ec-progress .ec-progress__number {
  background-color: #EAEAEA;
  color: var(--color-text-base);
}

.ec-progress .ec-progress__item:after {
  background-color: #EAEAEA;
}

.ec-progress .is-complete .ec-progress__number {
  background-color: var(--color-red-dark);
  color: #fff;
}

.ec-progress .is-complete .ec-progress__label {
  color: var(--color-red-dark);
}

@media screen and (max-width: 767px) {
  .ec-progress .ec-progress__item:after {
    top: 13px;
  }
}

#page_shopping_login .ec-grid3 {
  display: block;
}
#page_shopping_login .ec-grid3__cell2,
#page_shopping_login .ec-grid3__cell {
  width: 100%;
}
#page_shopping_login .ec-login,
#page_shopping_login .ec-guest {
  width: 100%;
  margin: 0;
}
#page_shopping_login .ec-guest {
  margin-top: 20px;
  padding: 5% 13% 8%;
}

.l-ecCart_login {
  display: block;
}
.l-ecCart_login .ec-grid2__cell {
  width: 100%;
}
.l-ecCart_login .ec-grid2__cell + .ec-grid2__cell {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .l-ecCart_login .ec-grid2__cell + .ec-grid2__cell {
    margin-top: 10px;
  }
}
.l-ecCart_login .ec-login__link {
  margin-left: 0;
}

.ec-orderRole {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 1024px) {
  .ec-orderRole {
    flex-direction: column;
  }
  .ec-orderRole .ec-orderRole__detail {
    width: 100%;
  }
  .ec-orderRole .ec-orderRole__summary {
    width: 100%;
    margin-top: 60px !important;
  }
}

.ec-orderRole .ec-orderRole__detail {
  padding: 0 12px;
}

.ec-orderRole__detail .ec-rectHeading {
  width: calc(100% + 24px);
  margin-left: -12px;
}
.ec-orderRole__detail .ec-orderDelivery .ec-rectHeading h2 {
  margin-bottom: 0;
}
.ec-orderRole__detail .ec-orderDelivery .ec-orderDelivery__change {
  top: 10px;
}
@media screen and (max-width: 767px) {
  .ec-orderRole__detail .ec-orderDelivery__actions .ec-select select {
    width: 100%;
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .ec-orderRole__detail .ec-select__delivery {
    margin-right: 0;
  }
}
.ec-orderRole__detail .ec-imageGrid {
  padding: 5px 0;
}
.ec-orderRole__detail .ec-inlineBtn {
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .ec-orderRole__detail .l-mypage_secTtl {
    font-size: 16px;
  }
}

.l-orderPrivacy_contBox {
  max-height: 200px;
  margin-top: 15px;
  padding: 20px;
  border: 1px solid var(--color-boder02);
  overflow: auto;
}
.l-orderPrivacy .p-privacyIntro p {
  padding-top: 0;
  margin-bottom: 34px;
}

.ec-blockBtn--action.is-disabled {
  background-color: var(--color-boder02);
  border-color: var(--color-boder02);
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .l-ecCart_total {
    display: block;
  }
}

.ec-totalBox__total,
.ec-totalBox__paymentTotal {
  word-break: break-all;
}

@media screen and (min-width: 768px) {
  .ec-totalBox .ec-totalBox__taxRate {
    flex-wrap: wrap;
    gap: 2px 10px;
  }
  .ec-totalBox .ec-totalBox__taxRate dt {
    margin-right: auto;
  }
}

.ec-orderPayment table {
  width: 100%;
}
.ec-orderPayment table + table {
  margin-top: 10px;
}
.ec-orderPayment th, .ec-orderPayment td {
  padding: 4px 20px 4px 10px;
  border: 1px solid var(--color-text-base);
}
.ec-orderPayment th {
  width: 40%;
  background: var(--color-bg03);
  font-weight: 400;
}
.ec-orderPayment td {
  width: 60%;
}
.ec-orderPayment .card_string,
.ec-orderPayment .shoppingcredit_string {
  width: calc(100% - 27px);
  margin-left: auto;
  padding-bottom: 4px;
  padding-left: 1em;
  color: var(--color-text-red);
  font-size: 14px;
  text-indent: -1em;
}
.ec-orderPayment .vt4g_payment_credit {
  font-size: 14px;
}
.ec-orderPayment .vt4g_payment_credit .text-danger {
  margin-top: 1em;
  color: var(--color-red);
  font-size: 1em;
}

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

.ec-forgetCompleteRole h2 {
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .ec-forgetCompleteRole h2 {
    font-size: 20px;
  }
}
.ec-forgetCompleteRole .ec-off3Grid__cell {
  margin-left: 0;
}
.ec-forgetCompleteRole .ec-reportDescription {
  max-width: 750px;
  margin: 0 auto;
  text-align: left;
}
.ec-forgetCompleteRole .ec-off3Grid .ec-off3Grid__cell {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .ec-forgetCompleteRole .ec-reportHeading {
    border-top: 0;
    margin: 0;
  }
}

.l-ecForgot__notes {
  color: var(--color-text-red);
  margin-bottom: 2.8em;
}

.ec-contactRole,
.ec-contactConfirmRole,
#page_forgot {
  color: var(--color-text-base);
}
.ec-contactRole .ec-borderedDefs,
.ec-contactConfirmRole .ec-borderedDefs,
#page_forgot .ec-borderedDefs {
  margin-top: 20px;
}
.ec-contactRole .ec-off1Grid .ec-off1Grid__cell,
.ec-contactConfirmRole .ec-off1Grid .ec-off1Grid__cell,
#page_forgot .ec-off1Grid .ec-off1Grid__cell {
  width: 100%;
  margin-left: 0;
}

.ec-AddAddress .ec-inlineBtn {
  width: -moz-fit-content;
  width: fit-content;
}

.ec-registerRole .ec-off1Grid__cell {
  width: 100%;
  margin-left: 0;
}
.ec-registerRole .ec-inlineBtn {
  width: -moz-fit-content;
  width: fit-content;
}
.ec-registerRole .ec-addressList__item {
  grid-template-columns: min(calc(106 / 1440 * 100vw), 106px) 100px 1fr;
}
@media screen and (max-width: 767px) {
  .ec-registerRole .ec-addressList__item {
    grid-template-columns: 59px 60px 1fr;
  }
}
.ec-registerRole .ec-addressList__item .ec-addressList__address {
  padding-left: 0;
  padding-right: 40px;
}
@media screen and (max-width: 1024px) {
  .ec-registerRole .ec-addressList__item .ec-addressList__address {
    padding-right: 15px;
  }
}
.ec-registerRole .ec-addressList__item .ec-addressList__remove {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.ec-registerRole .ec-addressList__item .ec-addressList__remove input {
  width: 28px;
  height: 28px;
}

.ec-cartCompleteRole {
  color: var(--color-text-base);
  padding-left: 0;
  padding-right: 0;
}
.ec-cartCompleteRole .ec-off3Grid__cell {
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.ec-cartCompleteRole .ec-reportDescription {
  padding-top: 34px;
  text-align: left;
  font-size: 14px;
}

#page_contact .ec-contactRole {
  padding-left: 0;
  padding-right: 0;
}

.ec-newsRole__newsDescription {
  margin: 0 !important;
  padding: 0 10px 18px 110px;
}
@media screen and (max-width: 767px) {
  .ec-newsRole__newsDescription {
    margin-top: -10px;
    padding: 0 0 15px 0;
    font-size: 14px;
  }
}
.ec-newsRole__newsDescription a {
  text-decoration: underline;
  text-underline-offset: 0.1em;
  text-decoration: underline;
  text-underline-offset: 0.1em;
}
@media (hover: hover) {
  .ec-newsRole__newsDescription a {
    transition: opacity 0.3s;
  }
  .ec-newsRole__newsDescription a:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) {
  .ec-newsRole__newsDescription a:hover {
    color: inherit;
  }
}
@media (hover: hover) {
  .ec-newsRole__newsDescription a:hover {
    color: inherit;
  }
}

@media screen and (min-width: 768px) {
  .ec-orderRole {
    align-items: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .ec-orderRole__summary {
    margin-top: 0 !important;
    position: static;
    top: 0;
  }
}

@media screen and (max-width: 767px) {
  .l-ecCalendarWrap {
    width: calc(100% - var(--mg-sp) * 2);
  }
  .l-ecCalendarWrap > .l-ecCalendarWrap {
    width: 100%;
  }
}

.l-ecCalendarTtl {
  margin-top: 50px;
  padding-bottom: 10px;
  color: var(--color-text-base);
  font-size: 18px;
  font-weight: 700;
  border-bottom: 4px solid var(--color-text-base);
}
@media screen and (max-width: 767px) {
  .l-ecCalendarTtl {
    margin-top: 52px;
    padding-bottom: 16px;
    font-size: 16px;
  }
}

.l-ecCalendarContainer {
  margin-top: 16px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-ecCalendarContainer {
    margin-top: 16px;
  }
}

.l-ecCalendarBtn {
  display: flex;
  gap: 0 7px;
  position: absolute;
  top: 4px;
  right: 0;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .l-ecCalendarBtn {
    gap: 0 10px;
    top: 9px;
  }
}
.l-ecCalendarBtn button {
  width: 39px;
  height: 30px;
  background-color: var(--color-text-base);
  border-radius: 4px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-ecCalendarBtn button {
    width: 45px;
    height: 30px;
  }
}
.l-ecCalendarBtn button::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 3px solid #C1C1C1;
  position: absolute;
  top: 50%;
  left: 50%;
}
.l-ecCalendarBtn_prev::before {
  border-left: 3px solid #C1C1C1;
  transform: translate(-50%, -52%) rotate(-45deg);
}
.l-ecCalendarBtn_next::before {
  border-right: 3px solid #C1C1C1;
  transform: translate(-50%, -52%) rotate(45deg);
}

.ec-calendar {
  margin: 0;
  color: var(--color-text-base);
  box-sizing: border-box;
}
.ec-calendar .ec-calendar__title {
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .ec-calendar .ec-calendar__title {
    font-size: 16px;
  }
}
.ec-calendar * {
  box-sizing: border-box;
}
.ec-calendar .ec-calendar__month {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .ec-calendar .ec-calendar__month {
    margin-top: 0;
  }
}
.ec-calendar .ec-calendar__month + .ec-calendar__month {
  margin-top: 12px;
  position: relative;
}
.ec-calendar .ec-calendar__month + .ec-calendar__month::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-bg03);
  position: absolute;
  top: -5px;
  left: 0;
}
.ec-calendar th, .ec-calendar td {
  width: 40px;
  height: 42px;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.04em;
  border-top: 5px solid #fff;
  border-bottom: 5px solid #fff;
  border-left: 3px solid #fff;
  border-right: 3px solid #fff;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .ec-calendar th, .ec-calendar td {
    width: 40px;
    height: 52px;
  }
}
.ec-calendar th:first-child, .ec-calendar td:first-child {
  width: 37px;
  border-left: 0;
}
.ec-calendar th:last-child, .ec-calendar td:last-child {
  width: 37px;
  border-right: 0;
}
.ec-calendar th.ec-calendar__today::before, .ec-calendar th::before, .ec-calendar td.ec-calendar__today::before, .ec-calendar td::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .ec-calendar th.ec-calendar__today::before, .ec-calendar th::before, .ec-calendar td.ec-calendar__today::before, .ec-calendar td::before {
    border-width: 2px;
  }
}
.ec-calendar tr._dayTtl {
  font-size: 13px;
  letter-spacing: 0;
  border-color: transparent;
}
.ec-calendar tr._dayTtl th {
  background-color: var(--color-bg03);
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-right-color: var(--color-bg03);
  border-left-color: var(--color-bg03);
}
.ec-calendar tr._dayTtl .ec-calendar__sat {
  color: inherit;
}
.ec-calendar .ec-calendar__day:last-child {
  color: #6871B2;
}
.ec-calendar .ec-calendar__day:last-child::before {
  background: #E0F0FD;
}
.ec-calendar .ec-calendar__today {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
.ec-calendar .ec-calendar__today::before {
  transform: none;
  background: inherit;
}
.ec-calendar .ec-calendar__holiday {
  color: var(--color-text-red);
}
.ec-calendar .ec-calendar__holiday::before {
  background-color: #FCE8E9 !important;
}
.ec-calendar .l-ecCalendar_textNone::before {
  display: none !important;
}

.l-ecCalendarStyle {
  width: 100%;
  margin-top: 8px;
  padding-top: 13px;
  border-top: 2px solid var(--color-bg03);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 767px) {
  .l-ecCalendarStyle {
    font-size: 15px;
  }
}
.l-ecCalendarStyle p {
  display: flex;
  align-items: flex-start;
  gap: 0 8px;
}
@media screen and (max-width: 767px) {
  .l-ecCalendarStyle p {
    gap: 0 14px;
  }
}
.l-ecCalendarStyle p + p {
  margin-top: 4px;
}
.l-ecCalendarStyle ._style {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 31px;
  line-height: 1;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .l-ecCalendarStyle ._style {
    width: 55px;
    height: 40px;
    border-radius: 2px;
  }
}
.l-ecCalendarStyle ._style.-red {
  color: var(--color-text-red);
  background-color: #FCE8E9;
}
.l-ecCalendarStyle ._style.-blue {
  color: #6871B2;
  background: #E0F0FD;
}
.l-ecCalendarStyle ._desc {
  padding-top: 6px;
  width: calc(100% - 44px - 8px);
}

/* ========================================
利用規約 l-agreement
======================================== */
.l-agreement_ttl {
  margin: 42px 0 20px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-agreement_ttl {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
.l-agreement p {
  margin-bottom: 1.5em;
}

/* ========================================
サイドナビ・コンテンツ l-aside
======================================== */
@media screen and (min-width: 768px) {
  .l-aside {
    width: clamp(170px , calc(272 / 1440 * 100vw), 272px);
    padding-top: 7px;
  }
}
.l-aside_catTab {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + var(--mg-sp) * 2);
  margin-left: calc(-1 * var(--mg-sp));
}
.l-aside_catTab button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 25%;
  height: 54px;
  padding-bottom: 12px;
  color: var(--color-boder02);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3333333333;
  position: relative;
}
.l-aside_catTab button::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-boder03);
  position: absolute;
  left: 0;
  bottom: 0;
}
.l-aside_catTab button.is-active {
  color: var(--color-text-base);
}
.l-aside_catTab button.is-active::after {
  height: 4px;
  background: var(--color-boder01);
}
@media screen and (min-width: 768px) {
  .l-aside_cont + .l-aside_cont {
    margin-top: 48px;
  }
}
@media screen and (max-width: 767px) {
  .l-aside_cont {
    display: none;
  }
  .l-aside_cont:first-of-type {
    display: block;
  }
}
.l-aside_ttl {
  margin: 0 0 13px;
}
@media screen and (max-width: 767px) {
  .l-aside_ttl {
    display: flex;
    align-items: center;
    gap: 0 15px;
    width: calc(100% + var(--mg-sp) * 2);
    margin-left: calc(-1 * var(--mg-sp));
    height: 64px;
    padding: 0 var(--mg-sp);
    background: var(--color-text-emp);
    color: #fff;
    font-size: 22px;
  }
  .l-aside_ttl ._jp {
    font-size: 15px;
  }
}
.l-aside_contTtl {
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 4px solid var(--color-boder01);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-aside_contTtl {
    display: none;
  }
}
.l-aside_contList > li > a {
  display: flex;
  align-items: center;
  gap: 0 20px;
  line-height: 1.2;
  height: 52px;
  border-bottom: 1px solid var(--color-boder03);
  color: inherit;
  font-size: 14px;
  font-weight: 500;
}
@media (hover: hover) {
  .l-aside_contList > li > a {
    transition: background 0.3s;
  }
  .l-aside_contList > li > a:hover {
    background: var(--color-bg03);
  }
}
.l-aside_contList > li._inSubMenu > a {
  border-bottom: 0;
}
.l-aside_contList ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  margin-top: -6px;
  padding-bottom: 16px;
  padding-left: 61px;
  border-bottom: 1px solid var(--color-boder03);
  font-size: 14px;
}
.l-aside_contList ul li + li {
  margin-top: 1px;
}
.l-aside_contList ul a {
  display: block;
  font-weight: 500;
  padding: 2px 0 2px 14px;
  position: relative;
}
.l-aside_contList ul a::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: url(../img/aside/aside_arrow.svg) center/auto no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.l-aside_contList ._icon {
  display: block;
  width: 40px;
}
.l-aside_facebook {
  overflow: hidden;
  margin-top: 50px;
}

/* ========================================
最近チェックした商品　l-checked
======================================== */
@media screen and (max-width: 767px) {
  .l-checked {
    overflow: hidden;
    width: calc(100% + var(--mg-sp) * 2);
    margin-left: calc(var(--mg-sp) * -1);
    padding-left: var(--mg-sp);
  }
}

.l-checkedList {
  padding: 0 clamp(30px , calc(60 / 1440 * 100vw), 60px);
}
@media screen and (max-width: 767px) {
  .l-checkedList {
    width: calc(134 / 375 * 100vw);
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-checkedList .splide__track {
    overflow: visible;
  }
}
.l-checkedList .splide__arrow {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}
.l-checkedList .splide__arrow--prev {
  left: 0;
}
.l-checkedList .splide__arrow--next {
  right: 0;
}
.l-checkedList_contInnet {
  position: relative;
}
.l-checkedList a {
  display: block;
  color: inherit;
}
@media (hover: hover) {
  .l-checkedList a:hover .l-checkedList_img img {
    transform: scale(1.06);
  }
}
.l-checkedList_img {
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}
.l-checkedList_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s;
}
.l-checkedList_infoBox {
  margin-top: 8px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-checkedList_infoBox {
    margin-top: 4px;
  }
}
.l-checkedList_ttl {
  margin: 6px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .l-checkedList_ttl {
    margin-top: 5px;
    font-size: 14px;
    line-height: 1.4642857143;
  }
}
.l-checkedList_price {
  color: var(--color-text-red);
  font-size: 16px;
  padding-right: 24px;
}
@media screen and (max-width: 767px) {
  .l-checkedList_price {
    font-size: 14px;
  }
}
.l-checkedList_priceNum {
  font-weight: 700;
  font-size: 20px;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .l-checkedList_priceNum {
    font-size: 19px;
  }
}
.l-checkedList_point {
  margin-top: 7px;
  color: var(--color-text-red);
  font-size: 14px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .l-checkedList_point {
    margin-top: 3px;
    font-size: 12px;
  }
}
.l-checkedList .m-favoriteBtn {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .l-checkedList .m-favoriteBtn {
    bottom: -2px;
  }
}

/* ========================================
お買い物ガイドの各ページ共通で使う l-guide
======================================== */
.l-guideFaq dl {
  margin: 0;
}
.l-guideFaq dl + dl {
  margin-top: 52px;
}
@media screen and (max-width: 767px) {
  .l-guideFaq dl + dl {
    margin-top: 64px;
  }
}
.l-guideFaq dt,
.l-guideFaq dd {
  padding-top: 2px;
  padding-left: 84px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-guideFaq dt,
  .l-guideFaq dd {
    padding-left: 44px;
  }
}
.l-guideFaq dt::before,
.l-guideFaq dd::before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 5px;
  border: 2px solid #999;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: -4px;
  left: 10px;
}
@media screen and (max-width: 767px) {
  .l-guideFaq dt::before,
  .l-guideFaq dd::before {
    width: 27px;
    height: 27px;
    border-radius: 2px;
    font-size: 17px;
    top: 3px;
    left: 0px;
  }
}
.l-guideFaq dt {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-guideFaq dt {
    font-weight: 500;
  }
}
.l-guideFaq dt::before {
  content: "Q";
  padding-bottom: 4px;
  background: #999;
  color: #fff;
}
.l-guideFaq dd {
  margin: 26px 0 0;
}
@media screen and (max-width: 767px) {
  .l-guideFaq dd {
    margin-top: 29px;
  }
}
.l-guideFaq dd::before {
  content: "A";
  padding-bottom: 2px;
  color: #999;
}

/* ========================================
各ページのバナーリンク l-links
======================================== */
.l-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 2.4%;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .l-links {
    gap: 20px 3.5%;
  }
}
@media screen and (max-width: 767px) {
  .l-links {
    justify-content: space-between;
    gap: 18px 0;
  }
}
.l-links li {
  width: 23.2%;
}
@media screen and (max-width: 1024px) {
  .l-links li {
    width: 31%;
  }
}
@media screen and (max-width: 767px) {
  .l-links li {
    width: 47.8260869565%;
  }
}
.l-links a {
  display: block;
}
@media (hover: hover) {
  .l-links a {
    transition: opacity 0.3s;
  }
  .l-links a:hover {
    opacity: 0.7;
  }
}
.l-links img {
  width: 100%;
}
.l-links_form button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 100%;
}

/* ========================================
商品のタグ l-mypage
======================================== */
@media screen and (min-width: 768px) {
  .l-mypage .l-inpageTtl {
    min-height: 90px;
  }
}
.l-mypage_head {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5px 30px;
}
@media screen and (max-width: 767px) {
  .l-mypage_head {
    padding: 44px 0 42px;
  }
}
@media screen and (min-width: 768px) {
  .l-mypage_head {
    margin-bottom: 55px;
  }
}
.l-mypage_head .l-inpageTtl {
  min-height: 0;
}
@media screen and (max-width: 767px) {
  .l-mypage_head .l-inpageTtl {
    padding: 0;
  }
}
.l-mypage_headBox {
  display: flex;
  align-items: center;
  gap: 0 41px;
  margin-left: auto;
  padding-top: 9px;
}
@media screen and (min-width: 1025px) {
  .l-mypage_headBox {
    margin-right: -13px;
  }
}
.l-mypage_headPoint {
  padding-top: 2px;
  padding-left: 29px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-mypage_headPoint {
    padding-left: 22px;
    font-size: 11px;
  }
}
.l-mypage_headPoint::before {
  content: "";
  display: block;
  width: 23px;
  height: 23px;
  background: url(../img/mypage/point_icon.svg) center/auto no-repeat;
  position: absolute;
  top: 8px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .l-mypage_headPoint::before {
    width: 18px;
    height: 18px;
    background-size: contain;
  }
}
.l-mypage_headPoint ._num {
  margin-left: 6px;
  color: var(--color-text-red);
  font-size: 20px;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .l-mypage_headPoint ._num {
    font-size: 16px;
  }
}
.l-mypage_headPoint ._unit {
  margin-left: 7px;
  color: var(--color-text-red);
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .l-mypage_headPoint ._unit {
    margin-left: 5px;
  }
}
.l-mypage_headLogout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 6px;
  width: 108px;
  height: 31px;
  border: 1px solid var(--color-boder01);
  border-radius: 2px;
  font-size: 13px;
  line-height: 1;
}
@media (hover: hover) {
  .l-mypage_headLogout {
    transition: opacity 0.3s;
  }
  .l-mypage_headLogout:hover {
    opacity: 0.7;
  }
}
.l-mypage_headLogout:hover {
  color: var(--color-text-base);
}
@media screen and (max-width: 1024px) {
  .l-mypage_headLogout {
    display: none;
  }
}
.l-mypage_headLogout::after {
  content: "";
  display: block;
  width: 14px;
  height: 12px;
  background: url(../img/mypage/logout_icon.svg) center/auto no-repeat;
}
@media screen and (min-width: 768px) {
  .l-mypage_container {
    padding: 0 20px;
  }
}
.l-mypage_secTtl {
  margin: 0 0 11px;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-mypage_secTtl {
    font-size: 19px;
    margin-bottom: 14px;
  }
}
.l-mypage_btnMt {
  margin-top: 32px;
}

.l-mypageHistory .ec-para-normal {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .l-mypageHistory .ec-para-normal {
    margin-bottom: 15px;
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .l-mypageHistory .ec-mypageRole {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-mypageHistory .ec-historyRole {
    width: calc(100% + var(--mg-sp) * 2);
    margin-left: calc(var(--mg-sp) * -1);
  }
}
.l-mypageHistory .ec-historyRole .ec-historyRole__contents {
  padding: 30px 0;
}
@media screen and (max-width: 1024px) {
  .l-mypageHistory .ec-historyRole .ec-historyRole__contents {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .l-mypageHistory .ec-historyRole .ec-historyRole__contents {
    padding: 21px var(--mg-sp);
  }
}
.l-mypageHistory .ec-historyRole .ec-historyRole__header {
  width: 234px;
}
@media screen and (max-width: 1024px) {
  .l-mypageHistory .ec-historyRole .ec-historyRole__header {
    width: 100%;
    padding-right: 120px;
    position: relative;
  }
}
.l-mypageHistory .ec-historyRole .ec-historyRole__detail {
  width: calc(100% - 234px);
  padding-top: 2px;
}
@media screen and (max-width: 1024px) {
  .l-mypageHistory .ec-historyRole .ec-historyRole__detail {
    width: 100%;
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-mypageHistory .ec-historyRole .ec-historyRole__detail {
    border-top: none;
  }
}
@media screen and (max-width: 1024px) {
  .l-mypageHistory .ec-historyListHeader__action {
    margin: 0 !important;
    position: absolute;
    top: 0;
    right: 0;
  }
  .l-mypageHistory .ec-historyListHeader__action a {
    font-size: 14px;
  }
}
.l-mypageHistory .ec-historyRole .ec-historyRole__detail .ec-historyRole__detailTitle {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .l-mypageHistory .ec-historyRole .ec-historyRole__detail .ec-historyRole__detailTitle {
    margin: 4px 0 0;
    font-size: 15px;
    line-height: 1.6;
  }
}
.l-mypageHistory .ec-definitions, .l-mypageHistory .ec-definitions--soft {
  margin: 9px 0;
}
@media screen and (max-width: 767px) {
  .l-mypageHistory .ec-definitions, .l-mypageHistory .ec-definitions--soft {
    margin: 6px 0;
    font-size: 15px;
  }
}
.l-mypageHistory .ec-historyListHeader .ec-historyListHeader__action {
  margin: 10px 0;
}
.l-mypageHistory .ec-definitions dd {
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .l-mypageHistory .ec-definitions dd {
    margin-left: 7px;
  }
}
.l-mypageHistory .ec-historyRole .ec-historyRole__detail .ec-historyRole__detailPrice {
  margin-bottom: 0;
  color: var(--color-text-red);
  font-size: 16px;
  font-weight: 500;
}
.l-mypageHistory div.ec-historyRole__detailPrice {
  margin-top: 5px;
}
.l-mypageHistory .ec-imageGrid {
  display: flex;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .l-mypageHistory .ec-imageGrid {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-mypageHistory .ec-imageGrid {
    display: block;
    margin-top: 6px;
  }
}
.l-mypageHistory .ec-imageGrid + .ec-imageGrid {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px dashed var(--color-boder02);
}
@media screen and (max-width: 767px) {
  .l-mypageHistory .ec-imageGrid + .ec-imageGrid {
    margin-top: 21px;
    padding-top: 21px;
  }
}
.l-mypageHistory .ec-imageGrid .ec-imageGrid__img {
  display: block;
  width: 110px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .l-mypageHistory .ec-imageGrid .ec-imageGrid__img {
    width: 90px;
  }
}
.l-mypageHistory .ec-imageGrid__content {
  width: calc(100% - 130px);
  padding-left: min(calc(39 / 1440 * 100vw), 39px);
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .l-mypageHistory .ec-imageGrid__content {
    display: block;
    width: 100%;
    padding-left: 0;
    font-size: 14px;
    line-height: 1.5;
  }
}

.l-mypage-loginArea {
  margin: 30px 0;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-boder02);
}
@media screen and (max-width: 767px) {
  .l-mypage-loginArea {
    margin: 0 0 28px;
    padding-bottom: 30px;
  }
}
.l-mypage-loginArea dl {
  margin: 28px 0 0;
}
@media screen and (min-width: 768px) {
  .l-mypage-loginArea dl {
    display: flex;
    max-width: 630px;
  }
}
.l-mypage-loginArea dl + dl {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .l-mypage-loginArea dl + dl {
    margin-top: 20px;
  }
}
.l-mypage-loginArea dt {
  width: 146px;
  padding-right: 10px;
  font-weight: 400;
}
.l-mypage-loginArea dd {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .l-mypage-loginArea dd {
    width: calc(100% - 146px);
  }
}
@media screen and (max-width: 767px) {
  .l-mypage-loginArea dd {
    margin-top: 2px;
  }
}
.l-mypage-loginArea dd input {
  width: 100%;
  height: 34px;
  border-color: var(--color-boder02);
  border-radius: 0;
  padding: 0 10px;
  font-size: inherit;
}
@media screen and (max-width: 767px) {
  .l-mypage-loginArea dd input {
    border-radius: 3px;
    height: 45px;
  }
}
.l-mypage-loginArea .ec-checkbox {
  margin-top: 10px;
}
.l-mypage-loginArea .ec-checkbox label {
  font-weight: 400;
}
.l-mypage-loginArea button[type=submit] {
  margin: 20px 0 40px;
}
@media screen and (max-width: 767px) {
  .l-mypage-loginArea button[type=submit] {
    margin: 10px 0 45px;
  }
}

.l-mypageNew_appBtn {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .l-mypageNew_appBtn {
    margin-top: 30px;
  }
}

.l-mypage-entryBefore_agreement {
  height: 464px;
  margin: 30px 0;
  border: 1px solid var(--color-boder02);
  padding: 25px;
  border-radius: 4px;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .l-mypage-entryBefore_agreement {
    margin-top: 34px;
    padding: 10px;
    border-radius: 3px;
  }
}
.l-mypage-entryBefore_agreement .l-agreement_ttl {
  font-weight: 400;
}

.l-mypage-address {
  margin-top: 28px;
}

.l-mypage-withdrawAdd {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .l-mypage-withdrawAdd {
    margin-top: 35px;
    gap: 32px 0;
  }
}
.l-mypage-withdrawAdd ._cancel,
.l-mypage-withdrawAdd ._complete {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 116px;
  height: 42px;
  border: 1px solid var(--color-text-base);
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
}
@media (hover: hover) {
  .l-mypage-withdrawAdd ._cancel,
  .l-mypage-withdrawAdd ._complete {
    transition: opacity 0.3s;
  }
  .l-mypage-withdrawAdd ._cancel:hover,
  .l-mypage-withdrawAdd ._complete:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-mypage-withdrawAdd ._cancel,
  .l-mypage-withdrawAdd ._complete {
    width: 100%;
    height: 45px;
    border-radius: 3px;
  }
}
.l-mypage-withdrawAdd ._complete {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: var(--color-text-base);
  color: #fff;
}

/* ========================================
お知らせのリスト　l-newsList
======================================== */
.l-newsList_list {
  margin-top: 28px;
  border-top: 2px solid var(--color-boder03);
}
@media screen and (max-width: 767px) {
  .l-newsList_list {
    margin-top: 23px;
    border-width: 1px;
  }
}
.l-newsList_list > li {
  border-bottom: 2px solid var(--color-boder03);
}
@media screen and (max-width: 767px) {
  .l-newsList_list > li {
    border-width: 1px;
  }
}
.l-newsList_list > li > a {
  display: flex;
  padding: 19px 10px 18px;
}
@media screen and (max-width: 767px) {
  .l-newsList_list > li > a {
    display: block;
    padding: 14px 0 15px;
  }
}
.l-newsList_time {
  display: block;
  width: 100px;
  padding-top: 2px;
  font-family: var(--font-anton);
  font-size: 14px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-newsList_time {
    font-size: 12px;
  }
}
.l-newsList_contTtl {
  flex: 1;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-newsList_contTtl {
    margin-top: 2px;
    font-size: 14px;
    line-height: 1.5357142857;
  }
}

/* ========================================
商品のタグ l-post
======================================== */
.l-post {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .l-post {
    margin-right: -5px;
  }
}
.l-post > * {
  width: calc(100% - 5px);
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .l-post > * {
    width: 100%;
    margin-top: 45px;
  }
}
.l-post > *:first-child {
  margin-top: 0 !important;
}
.l-post > p {
  margin-top: 18px;
}
.l-post_productList {
  display: flex;
  flex-wrap: wrap;
}
.l-post_productList_cont {
  width: 50%;
  border-top: 1px solid var(--color-boder02);
  border-right: 1px solid var(--color-boder02);
  border-left: 1px solid var(--color-boder02);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-post_productList_cont {
    width: 100%;
    margin-top: -1px;
  }
}
@media screen and (min-width: 768px) {
  .l-post_productList_cont:nth-child(even) {
    margin-left: -1px;
  }
}
.l-post_productList_cont > * {
  padding: 10px 10px;
  border-bottom: 1px solid var(--color-boder02);
}
@media screen and (max-width: 767px) {
  .l-post_productList_cont > * {
    padding: 8px 10px;
  }
}
.l-post_productList_ttl {
  padding-top: 7px;
  padding-bottom: 7px;
  background: var(--color-bg03);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-post_productList_ttl {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.l-post_productList a {
  text-decoration: underline;
}
.l-post_productList_img {
  padding-top: 70%;
  padding-bottom: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-post_productList_img {
    padding-top: 66.0869565217%;
  }
}
.l-post_productList_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.l-post_product {
  border: 1px solid var(--color-boder02);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-post_product {
    width: 50%;
    margin-left: -1px;
    transform: translateX(1px);
  }
  .l-post_product + .l-post_product + .l-post_product {
    margin-top: -1px;
  }
}
@media screen and (max-width: 767px) {
  .l-post_product {
    width: 100%;
  }
  .l-post_product + .l-post_product {
    margin-top: -1px;
  }
}
.l-post_product > * {
  padding: 10px 10px;
  border-bottom: 1px solid var(--color-boder02);
}
@media screen and (max-width: 767px) {
  .l-post_product > * {
    padding: 8px 10px;
  }
}
.l-post_product_ttl {
  padding-top: 7px;
  padding-bottom: 7px;
  background: var(--color-bg03);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-post_product_ttl {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.l-post_product a {
  text-decoration: underline;
}
.l-post_product_img {
  padding-top: 70%;
  padding-bottom: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-post_product_img {
    padding-top: 66.0869565217%;
  }
}
.l-post_product_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.l-post_secTtl {
  font-size: 25px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-post_secTtl {
    font-size: 19px;
  }
}
.l-post_secTtl ._minText {
  font-weight: 400;
  font-size: 16px;
}
.l-post a {
  text-decoration: underline;
}
@media (hover: hover) {
  .l-post a {
    transition: opacity 0.3s;
  }
  .l-post a:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) {
  .l-post a:hover {
    color: inherit;
  }
}
.l-post_text {
  margin-top: 1.5em;
}
.l-post_list {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  margin-top: 1.5em;
}
.l-post_list > li {
  padding-left: 1em;
  text-indent: -1em;
}
.l-post_list > li + li {
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .l-post_list > li + li {
    margin-top: 0;
  }
}
.l-post_list > li::before {
  content: "・";
}
.l-post_img-large img {
  width: 100%;
}
.l-post_youtube {
  padding-top: 56.25%;
  position: relative;
}
.l-post_youtube iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.l-post_hr {
  margin: 30px 0 -30px;
}
@media screen and (max-width: 767px) {
  .l-post_hr {
    margin: 45px 0 0;
  }
}
.l-post_related {
  width: calc((100% - 10px - 5px) / 3);
  border: 1px solid #C1C1C1;
  margin-right: 5px;
}
@media screen and (min-width: 1025px) {
  .l-post_related + .l-post_related + .l-post_related + .l-post_related {
    margin-top: 5px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-post_related {
    width: calc((100% - 10px) / 2);
  }
  .l-post_related + .l-post_related + .l-post_related {
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .l-post_related {
    width: 100%;
    margin-right: 0;
  }
  .l-post_related + .l-post_related {
    margin-top: 16px;
  }
}
.l-post_related > * {
  display: flex;
  align-items: center;
  gap: 0 6.0702875399%;
  padding: 0 5px 0 10px;
}
@media screen and (max-width: 767px) {
  .l-post_related > * {
    display: block;
    padding: 5px 5px 10px;
  }
}
.l-post_related a {
  text-decoration: none;
}
.l-post_related a[href=""] {
  pointer-events: none;
}
.l-post_related_img {
  width: 47.9233226837%;
}
@media screen and (max-width: 767px) {
  .l-post_related_img {
    width: 76%;
    margin: 0 auto;
  }
}
.l-post_related_img div {
  padding-top: 100%;
  position: relative;
}
.l-post_related_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.l-post_related_cont {
  flex: 1;
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .l-post_related_cont {
    text-align: center;
    margin-top: 5px;
    padding: 0;
    font-size: 15px;
    line-height: 1.3333333333;
  }
}
.l-post_related_name {
  margin-bottom: 1.25em;
}
@media screen and (max-width: 767px) {
  .l-post_related_name {
    margin-bottom: 0;
  }
}
.l-post_related_soldOut {
  color: #C70000;
}
.l-post_col2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px 0;
}
@media screen and (max-width: 767px) {
  .l-post_col2 {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .l-post_col2.-reverse {
    flex-direction: row-reverse;
  }
}
.l-post_col2 + .l-post_col2 {
  margin-top: 18px;
}
.l-post_col2 > * {
  height: 100%;
  width: calc((100% - min(calc(40 / 1440 * 100vw), 40px)) / 2);
}
@media screen and (max-width: 767px) {
  .l-post_col2 > * {
    width: 100%;
  }
}
.l-post_col2 img {
  width: 100%;
}
.l-post .l-post_caption {
  margin-top: 10px;
  font-size: 14px;
}

/* ========================================
商品一覧の縦型 l-productList
======================================== */
.l-productList {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 61px 3.5%;
}
@media screen and (max-width: 1024px) {
  .l-productList {
    gap: 40px 5%;
  }
}
@media screen and (max-width: 767px) {
  .l-productList {
    justify-content: space-between;
    gap: 23px 0;
  }
}
.l-productList > li {
  width: 17.2%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .l-productList > li {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .l-productList > li {
    width: 47.8260869565%;
  }
}
.l-productList a {
  display: block;
  color: inherit;
}
@media (hover: hover) {
  .l-productList a {
    color: inherit;
  }
  .l-productList a:hover .l-productList_img img {
    transform: scale(1.06);
  }
}
.l-productList_img {
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}
.l-productList_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.l-productList_ttl {
  margin: 6px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-productList_ttl {
    margin-top: 5px;
    font-size: 14px;
    line-height: 1.4642857143;
  }
}
.l-productList_infoBox {
  margin-top: 8px;
  padding-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-productList_infoBox {
    margin-top: 4px;
  }
}
.l-productList_price {
  color: var(--color-text-red);
  font-size: 11px;
}
.l-productList_price.-default {
  color: var(--color-text-base);
}
.l-productList_price.-default .l-productList_priceNum {
  font-size: 13px;
  margin-left: 0.2em;
}
@media screen and (max-width: 767px) {
  .l-productList_price.-default .l-productList_priceNum {
    font-size: 11px;
  }
}
.l-productList_priceNum {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-productList_priceNum {
    font-size: 17px;
  }
}
.l-productList_point {
  margin-top: 7px;
  padding-right: 20px;
  color: var(--color-text-red);
  font-size: 14px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .l-productList_point {
    margin-top: 3px;
    font-size: 12px;
  }
}
.l-productList .m-favoriteBtn {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .l-productList .m-favoriteBtn {
    bottom: -2px;
  }
}

/* ========================================
キーワード検索 l-search
======================================== */
.l-search {
  width: 100%;
}
.l-search_inputBox {
  width: 100%;
  position: relative;
}
.l-search_input {
  width: 100%;
  height: 45px;
  padding: 0 40px 0 min(calc(20 / 1440 * 100vw), 20px);
  border: 2px solid var(--color-boder01);
  border-radius: 4px;
  font-size: clamp(15px , calc(17 / 1440 * 100vw), 17px);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-search_input {
    height: 35px;
    padding-right: 26px;
    border-radius: 3px;
    font-size: 14px;
  }
}
.l-search_input::-moz-placeholder {
  color: #C1C1C1;
}
.l-search_input::placeholder {
  color: #C1C1C1;
}
.l-search_btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 45px;
  height: 100%;
  padding-bottom: 4px;
  background: #333;
  border-radius: 0 4px 4px 0;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .l-search_btn {
    width: 38px;
  }
  .l-search_btn img {
    width: 16px;
  }
}
.l-search_btn::-moz-placeholder {
  color: #C1C1C1;
}
.l-search_btn::placeholder {
  color: #C1C1C1;
}

/* ========================================
商品のタグ l-tag
======================================== */
.l-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
}
@media screen and (max-width: 767px) {
  .l-tag {
    gap: 4px 5px;
  }
}
.l-tag > * {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 10px;
  background: #333;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-tag > * {
    padding: 3px 5px;
    border-radius: 2px;
    font-size: 10px;
  }
}
.l-tag_red {
  background-color: #C70000;
}
.l-tag_blue {
  background-color: #387C95;
}

/* ========================================
部類ページ l-type
======================================== */
@media screen and (min-width: 768px) {
  .l-type .l-inpageTtl {
    min-height: 90px;
  }
}
.l-type_cont + .l-type_cont {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 2px solid #EAEAEA;
}
@media screen and (max-width: 767px) {
  .l-type_cont + .l-type_cont {
    margin-top: 40px;
    padding-top: 40px;
  }
}
.l-type_col {
  display: flex;
  flex-wrap: wrap;
  gap: 51px 6.1224489796%;
  padding-right: 20px;
}
@media screen and (max-width: 1024px) {
  .l-type_col {
    gap: 51px 5%;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-type_col {
    justify-content: space-between;
    gap: 22px 0;
  }
}
.l-type_col > * {
  width: 20.4081632653%;
}
@media screen and (max-width: 1024px) {
  .l-type_col > * {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .l-type_col > * {
    width: 47.8260869565%;
  }
}

.l-typeIntro {
  margin: -30px 0 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid #EAEAEA;
  font-size: 14px;
  line-height: 1.5714285714;
}
@media screen and (max-width: 767px) {
  .l-typeIntro {
    margin: 0;
    padding-bottom: 34px;
    border-bottom: 0;
    font-size: 15px;
    line-height: 1.5;
  }
}

.l-typeCategory {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.l-typeCategory + .l-typeCategory {
  margin-top: 51px;
}
@media screen and (max-width: 767px) {
  .l-typeCategory + .l-typeCategory {
    margin-top: 22px;
  }
}
.l-typeCategory a {
  display: block;
}
@media (hover: hover) {
  .l-typeCategory a:hover .l-typeCategory_img img {
    transform: scale(1.06);
  }
}
.l-typeCategory_img {
  padding-top: 52.5%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-typeCategory_img {
    padding-top: 52.4242424242%;
  }
}
.l-typeCategory_img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #EAEAEA;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.l-typeCategory_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.l-typeCategory_name {
  margin-top: 11px;
  padding-left: 17px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2857142857;
  letter-spacing: -0.05em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-typeCategory_name {
    margin-top: 5px;
  }
}
.l-typeCategory_name::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: url(../img/common/link_arrow-black.svg) center/8px auto no-repeat;
  position: absolute;
  top: 6px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .l-typeCategory_name::before {
    width: 6px;
    height: 6px;
    top: 7px;
    left: 4px;
  }
}

.l-typeMaker {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
@media (hover: hover) {
  .l-typeMaker > * > a {
    transition: opacity 0.3s;
  }
  .l-typeMaker > * > a:hover {
    opacity: 0.7;
  }
}
.l-typeMaker_image {
  display: block;
  position: relative;
}
.l-typeMaker_image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #EAEAEA;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.l-typeMaker_name {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .l-typeMaker_name {
    font-size: 13px;
    line-height: 1.1923076923;
  }
}
.l-typeMaker_category {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .l-typeMaker_category {
    margin-top: 8px;
  }
}
.l-typeMaker_category li + li {
  margin-top: 2px;
}
@media screen and (max-width: 767px) {
  .l-typeMaker_category li + li {
    margin-top: 7px;
  }
}
.l-typeMaker_category a {
  display: inline-block;
  padding-left: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-typeMaker_category a {
    padding-left: 13px;
    font-size: 12px;
  }
}
.l-typeMaker_category a::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: url(../img/common/link_arrow-black.svg) center/5px auto no-repeat;
  position: absolute;
  top: 8px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .l-typeMaker_category a::before {
    width: 6px;
    height: 6px;
    background-size: 6px auto;
    top: 7px;
  }
}

.l-typeList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 0;
  padding-right: 20px;
}
@media screen and (max-width: 1024px) {
  .l-typeList {
    padding-right: 0;
  }
}
.l-typeList_cont {
  width: 46.9%;
}
@media screen and (max-width: 767px) {
  .l-typeList_cont {
    width: 100%;
  }
}
.l-typeList_contTtl {
  font-size: 16px;
  font-weight: 700;
}
.l-typeList_list {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  margin-top: 17px;
}
@media screen and (max-width: 767px) {
  .l-typeList_list {
    margin-top: 18px;
  }
}
.l-typeList_list li + li {
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .l-typeList_list li + li {
    margin-top: 7px;
  }
}
.l-typeList_list a {
  display: inline-block;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.05em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-typeList_list a {
    padding-left: 15px;
    letter-spacing: 0;
  }
}
.l-typeList_list a::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: url(../img/common/link_arrow-black.svg) center/8px auto no-repeat;
  position: absolute;
  top: 8px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .l-typeList_list a::before {
    width: 6px;
    height: 6px;
    top: 7px;
  }
}

/* ========================================
共通で使うレイアウト色々 l-
======================================== */
.l-wrap {
  overflow: clip;
}

@media screen and (min-width: 768px) {
  .l-container {
    display: flex;
    flex-direction: row-reverse;
    gap: 0 min(calc(68 / 1440 * 100vw), 68px);
  }
}

@media screen and (min-width: 768px) {
  .l-main {
    width: calc(100% - min(calc(68 / 1440 * 100vw), 68px) - clamp(170px , calc(272 / 1440 * 100vw), 272px));
  }
}

@media screen and (max-width: 767px) {
  .l-mainMb {
    padding-bottom: 100px;
  }
}

.l-secHead {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 20px;
}
.l-secHead_link {
  margin-left: auto;
}
.l-secHead_link a {
  display: flex;
  align-items: center;
  gap: 0 8px;
  width: -moz-fit-content;
  width: fit-content;
  color: inherit;
  font-size: 16px;
  font-weight: 500;
}
@media (hover: hover) {
  .l-secHead_link a {
    transition: opacity 0.3s;
  }
  .l-secHead_link a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-secHead_link a {
    font-size: 15px;
  }
}
.l-secHead_link a::after {
  content: "";
  display: block;
  width: 15px;
  height: 12px;
  background: url(../img/common/icon_all.svg) center/contain no-repeat;
  transform: translateY(1px);
}
@media screen and (max-width: 767px) {
  .l-secHead_link a::after {
    width: 12px;
    height: 10px;
    transform: none;
  }
}

.l-footArea {
  padding-top: 96px;
}
@media screen and (max-width: 767px) {
  .l-footArea {
    padding-top: 45px;
  }
}
.l-footArea .l-checkedList {
  margin-top: 43px;
}
@media screen and (max-width: 767px) {
  .l-footArea .l-links,
  .l-footArea .l-newsList {
    position: relative;
    z-index: 1;
  }
  .l-footArea .l-links::before,
  .l-footArea .l-newsList::before {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    background: var(--color-bg04);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }
}
.l-footArea .l-links {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .l-footArea .l-links {
    margin-top: 40px;
    padding: 40px 0;
  }
}
.l-footArea .l-newsList {
  padding-top: 94px;
}
@media screen and (max-width: 767px) {
  .l-footArea .l-newsList {
    padding: 4px 0 40px;
  }
}

.l-inpageTtl {
  margin: 0 0 0;
  padding-top: 6px;
  font-size: 23px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-inpageTtl {
    padding: 44px 0 42px;
    font-size: 20px;
  }
}

.l-inpegeLink {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 21px 0;
  margin: 42px 0 43px;
}
@media screen and (max-width: 767px) {
  .l-inpegeLink {
    display: block;
    margin: 0 0 40px;
  }
}
@media screen and (min-width: 768px) {
  .l-inpegeLink li {
    border-left: 2px solid var(--color-boder03);
    border-right: 2px solid var(--color-boder03);
    margin-right: -2px;
  }
}
@media screen and (max-width: 767px) {
  .l-inpegeLink li {
    width: 100%;
    border-bottom: 2px solid var(--color-boder03);
  }
  .l-inpegeLink li:first-child {
    border-top: 2px solid var(--color-boder03);
  }
}
.l-inpegeLink a {
  display: flex;
  align-items: center;
  gap: 0 11px;
  padding: 0 20px;
  color: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4666666667;
}
@media (hover: hover) {
  .l-inpegeLink a {
    transition: opacity 0.3s;
  }
  .l-inpegeLink a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-inpegeLink a {
    padding: 5px 40px 5px 0;
    min-height: 44px;
    font-size: 13px;
    line-height: 1.2;
    position: relative;
  }
}
.l-inpegeLink a::after {
  content: "";
  display: block;
  width: 13px;
  height: 8px;
  background: url(../img/common/inpagelink_arrow.svg) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .l-inpegeLink a::after {
    position: absolute;
    top: 50%;
    right: 17px;
    transform: translateY(-50%);
  }
}
.l-inpegeLink.-mtImg {
  margin-top: 34px;
}
@media screen and (max-width: 767px) {
  .l-inpegeLink.-mtImg {
    margin-top: 30px;
  }
}

.l-progress {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 0 20px;
  margin-bottom: 38px;
}
@media screen and (max-width: 767px) {
  .l-progress {
    margin-bottom: 20px;
  }
}
.l-progress::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-bg03);
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  z-index: -1;
}
.l-progress > li {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 43px;
  background: var(--color-bg03);
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-progress > li {
    height: 29px;
    font-size: 14px;
  }
}
.l-progress > li.l-progress_current {
  background-color: var(--color-red-dark);
  color: #fff;
}

.l-pagination {
  width: 182px;
  margin: 69px auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-pagination {
    margin-top: 30px;
  }
}
.l-pagination_num {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 12px;
  font-family: var(--font-anton);
  font-size: 15px;
  line-height: 2;
}
.l-pagination_prev, .l-pagination_next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (hover: hover) {
  .l-pagination_prev, .l-pagination_next {
    transition: opacity 0.3s;
  }
  .l-pagination_prev:hover, .l-pagination_next:hover {
    opacity: 0.7;
  }
}
.l-pagination_prev {
  left: 0;
}
.l-pagination_next {
  right: 0;
}

.l-paginationDetail {
  margin-top: 70px;
  font-size: 15px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-paginationDetail {
    font-size: 13px;
  }
}
.l-paginationDetail a {
  display: flex;
  gap: 0 5px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.l-paginationDetail_list {
  margin: 0 auto;
}
.l-paginationDetail_prev {
  position: absolute;
  top: 0;
  left: 0;
}
.l-paginationDetail_prev::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url(../img/common/pagination_prev.svg) center/auto no-repeat;
}
.l-paginationDetail_next {
  position: absolute;
  top: 0;
  right: 0;
}
.l-paginationDetail_next::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url(../img/common/pagination_next.svg) center/auto no-repeat;
}

@media screen and (min-width: 768px) {
  .l-headImg {
    margin-top: calc(var(--mg-breadcrumb-pc) * -1);
    margin-bottom: 50px;
  }
}
.l-headImg img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .l-contctSec_logo img {
    width: 225px;
  }
}
.l-contctSec_overview {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .l-contctSec_overview {
    margin-top: 29px;
  }
}
.l-contctSec_overview dl {
  display: flex;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .l-contctSec_overview dl {
    display: block;
  }
}
.l-contctSec_overview dl + dl {
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .l-contctSec_overview dl + dl {
    margin-top: 23px;
  }
}
.l-contctSec_overview dt {
  width: 180px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-contctSec_overview dt {
    width: 100%;
    font-weight: 700;
  }
}
.l-contctSec_overview dd {
  flex: 1;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .l-dlTable {
    border-bottom: 1px solid var(--color-boder02);
  }
}
.l-dlTable dl {
  display: flex;
  margin: 0;
  line-height: 1.375;
  border-top: 1px solid var(--color-boder02);
}
@media screen and (max-width: 767px) {
  .l-dlTable dl {
    display: block;
    line-height: 1.5;
  }
}
.l-dlTable dt,
.l-dlTable dd {
  padding: 21px 15px 21px min(calc(30 / 1440 * 100vw), 30px);
}
@media screen and (max-width: 767px) {
  .l-dlTable dt,
  .l-dlTable dd {
    padding: 10px;
  }
}
.l-dlTable dt {
  display: flex;
  align-items: center;
  width: 27%;
  background: var(--color-bg03);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-dlTable dt {
    width: 100%;
    border-bottom: 1px solid var(--color-boder02);
  }
}
.l-dlTable dd {
  width: 79%;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .l-dlTable dd {
    width: 100%;
  }
}

.l-overlay {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.l-modal {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-revieModal);
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-modal::-webkit-scrollbar {
  display: none;
}
.l-modal_overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
.l-modal_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - var(--mg-pc) * 2);
  min-height: 100%;
  margin: 0 auto;
  padding: 40px 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-modal_container {
    width: calc(100% - 50px);
    padding: 25px 0;
  }
}

.l-roanBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  gap: 0 0.1em;
  background: #151515;
  padding: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}
@media (hover: hover) {
  .l-roanBtn {
    transition: opacity 0.3s;
  }
  .l-roanBtn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-roanBtn {
    height: 38px;
    font-size: 14px;
  }
}
.l-roanBtn_num1 {
  font-family: var(--font-anton);
  font-size: 17px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .l-roanBtn_num1 {
    font-size: 15px;
  }
}
.l-roanBtn_num2 {
  margin: 0 0.1em;
  font-family: var(--font-anton);
  font-size: 19px;
}
@media screen and (max-width: 767px) {
  .l-roanBtn_num2 {
    margin-top: -1px;
    font-size: 17.5px;
  }
}
.l-roanBtn_minText {
  margin-left: 0.1em;
  font-size: 10px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-roanBtn_minText {
    margin-top: 2px;
  }
}

.l-roan_container {
  width: 100%;
  max-width: 792px;
  padding: 83px 40px 95px;
  background: #fff;
  border-radius: 5px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .l-roan_container {
    padding: 59px 10px 45px;
    border-radius: 4px;
  }
}
.l-roan_closedBtn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 13px;
  right: 13px;
}
@media screen and (max-width: 767px) {
  .l-roan_closedBtn {
    top: 3px;
    right: 3px;
  }
}
.l-roan_closedBtn::before, .l-roan_closedBtn::after {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--color-bg01);
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .l-roan_closedBtn::before, .l-roan_closedBtn::after {
    height: 1px;
  }
}
.l-roan_closedBtn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-roan_closedBtn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l-roan_ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 51px;
  line-height: 1.2;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-roan_ttl {
    font-size: min(calc(25.5 / 375 * 100vw), 25.5px);
  }
}
.l-roan_ttl::after {
  content: "";
  display: block;
  width: calc(100% - 20px);
  height: 5px;
  margin: 10px auto 0;
  background: #D0D0D0;
}
@media screen and (max-width: 767px) {
  .l-roan_ttl::after {
    width: calc(100% - 4px);
    height: 2px;
    margin-top: 11px;
  }
}
.l-roan_read {
  max-width: 500px;
  margin: 24px auto 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-roan_read {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.6;
  }
}
.l-roan_overview {
  max-width: 533px;
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .l-roan_overview {
    width: 88%;
    margin-top: 16px;
  }
}
.l-roan_overview dl {
  display: flex;
  margin: 0;
  border-top: 1px solid var(--color-boder02);
  border-right: 1px solid var(--color-boder02);
  border-left: 1px solid var(--color-boder02);
}
.l-roan_overview dl:last-child {
  border-bottom: 1px solid var(--color-boder02);
}
.l-roan_overview dt,
.l-roan_overview dd {
  padding: 13px 20px 10px 21px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-roan_overview dt,
  .l-roan_overview dd {
    padding: 9px 5px 8px 10px;
    font-size: 14px;
    line-height: 1.5357142857;
  }
}
.l-roan_overview dt {
  width: 181px;
  padding-left: 34px;
  background: var(--color-bg03);
}
@media screen and (max-width: 767px) {
  .l-roan_overview dt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    padding: 0;
    text-align: center;
    line-height: 1.1785714286;
  }
}
.l-roan_overview dd {
  flex: 1;
  margin: 0;
  border-left: 1px solid var(--color-boder02);
}
@media screen and (max-width: 767px) {
  .l-roan_overview dd {
    display: flex;
    align-items: center;
    min-height: 60px;
  }
}
.l-roan_text01 {
  margin: 15px auto 0;
  font-weight: 500;
  text-align: center;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .l-roan_text01 {
    width: 88%;
    max-width: 533px;
    font-size: 14px;
    line-height: 1.5357142857;
    text-align: left;
  }
}

/* ========================================
トップページ home
======================================== */
@media screen and (min-width: 768px) {
  .home .footer {
    margin-top: 94px;
  }
}
.home .l-newsList {
  padding-top: 7px;
}
@media screen and (max-width: 767px) {
  .home .l-newsList {
    padding-top: 30px;
  }
}
.home .l-newsList_list {
  max-height: 400px;
  border: 1px solid var(--color-boder01);
  padding: 20px;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .home .l-newsList_list {
    padding: 10px var(--mg-sp);
  }
}
.home .l-newsList .table_calender th, .home .l-newsList .table_calender td {
  border: 1px solid var(--color-text-base);
  padding: 5px;
}
@media screen and (max-width: 767px) {
  .home .l-newsList .table_calender th, .home .l-newsList .table_calender td {
    padding: 2px;
  }
}

.homeSlide_imgBox {
  padding-top: 23.2638888889%;
}
@media screen and (max-width: 767px) {
  .homeSlide_imgBox {
    padding-top: 66.231884058%;
  }
}
.homeSlide_imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.homeSlide .splide__arrow {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}
.homeSlide .splide__arrow--prev {
  left: 9px;
}
.homeSlide .splide__arrow--next {
  right: 9px;
}
.homeSlide .splide__pagination {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  justify-content: center;
  width: 300px;
  margin: 23px auto 20px;
}
@media screen and (max-width: 767px) {
  .homeSlide .splide__pagination {
    width: 80%;
    max-width: 285px;
    margin: 20px auto;
  }
}
.homeSlide .splide__pagination li {
  flex: 1;
}
.homeSlide .splide__pagination button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 4px;
  background: var(--color-boder03);
  cursor: pointer;
}
.homeSlide .splide__pagination button.is-active {
  background: var(--color-boder01);
}

@media screen and (max-width: 767px) {
  .homeBg01 {
    padding-bottom: 40px;
    position: relative;
  }
  .homeBg01::before {
    content: "";
    display: block;
    width: 100vw;
    height: calc(100% + 44px);
    background: var(--color-bg04);
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: -1;
    transform: translateX(-50%);
  }
}

.homeInfo {
  margin-bottom: 40px;
  padding: 8px 20px 8px 10px;
  border: 2px solid var(--color-boder02);
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .homeInfo {
    margin-bottom: 0;
    padding: 11px 8px;
    background: #fff;
    font-size: 14px;
  }
}
.homeInfo_cont {
  padding-left: 38px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .homeInfo_cont {
    padding-left: 34px;
  }
}
.homeInfo_cont + .homeInfo_cont {
  margin-top: 5px;
}
.homeInfo_cont::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background: url(../img/common/info_icon.svg) center/contain no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .homeInfo_cont::before {
    width: 23px;
    height: 23px;
    top: -2px;
  }
}
.homeInfo_cont a {
  display: block;
  color: inherit;
  font-weight: 500;
}
@media (hover: hover) {
  .homeInfo_cont a {
    transition: opacity 0.3s;
  }
  .homeInfo_cont a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .homeInfo + .l-newsList {
    padding-top: 45px;
  }
}

.homeSec {
  margin-top: 74px;
}
@media screen and (max-width: 767px) {
  .homeSec {
    margin-top: 44px;
  }
}
.homeSec + .homeSec {
  margin-top: 97px;
}
@media screen and (max-width: 767px) {
  .homeSec + .homeSec {
    margin-top: 85px;
  }
}
.homeSec .l-productList {
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  .homeSec .l-productList {
    margin-top: 24px;
  }
}

.homePick {
  margin-top: 43px;
}
@media screen and (max-width: 767px) {
  .homePick {
    margin-top: 45px;
  }
}
.homePick_list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 2.5333333333%;
  margin-top: 15px;
}
@media screen and (max-width: 1024px) {
  .homePick_list {
    gap: 25px 3.5%;
  }
}
@media screen and (max-width: 767px) {
  .homePick_list {
    justify-content: space-between;
    gap: 15px 0;
  }
}
.homePick_list li {
  width: 23.1%;
}
@media screen and (max-width: 1024px) {
  .homePick_list li {
    width: 31%;
  }
}
@media screen and (max-width: 767px) {
  .homePick_list li {
    width: 47.8260869565%;
  }
}
.homePick_list li img {
  width: 100%;
}
@media (hover: hover) {
  .homePick_list a {
    transition: opacity 0.3s;
  }
  .homePick_list a:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .home .l-footArea {
    margin-top: 40px;
  }
}

/* ========================================
商品一覧・検索結果一覧 p-products
======================================== */
@media screen and (max-width: 767px) {
  .p-productsResult {
    margin-top: 20px;
  }
}
.p-productsResult_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
}
@media screen and (max-width: 767px) {
  .p-productsResult_tag {
    gap: 5px 5px;
  }
}
.p-productsResult_tag span {
  display: block;
  padding: 7px 10px;
  background: var(--color-bg03);
  border: 1px solid var(--color-boder02);
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-productsResult_tag span {
    padding: 6px 10px;
    font-size: 13.5px;
  }
}
.p-productsResult_keywordBox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-productsResult_keywordBox {
    gap: 6px 5px;
    margin-top: 7px;
  }
}
.p-productsResult_keywordBox ._keyword {
  display: block;
  padding: 7px 10px;
  background: var(--color-bg03);
  border: 1px solid var(--color-boder02);
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-productsResult_keywordBox ._keyword {
    padding: 6px 10px;
    font-size: 13.5px;
  }
}
.p-productsResult_keywordBox ._conditionsBtn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 7px;
  width: 160px;
  padding: 7px 10px;
  background: var(--color-text-emp);
  border-radius: 18px;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-productsResult_keywordBox ._conditionsBtn {
    width: 141px;
    padding: 6px 10px;
    font-size: 13.5px;
    margin-right: calc(100% - 141px - 10px - 20px);
  }
}
.p-productsResult_keywordBox ._conditionsBtn::after {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  background: url(../img/product/icon_conditions.svg) center/auto no-repeat;
}
.p-productsResult_infoBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px 20px;
  margin: 20px 0 10px;
}
@media screen and (max-width: 767px) {
  .p-productsResult_infoBox {
    display: block;
    margin-top: 7px;
    position: relative;
  }
}
.p-productsResult_display {
  display: flex;
  gap: 0 24px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-productsResult_display {
    gap: 0 15px;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 10px;
  }
}
.p-productsResult_display select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
.p-productsResult_display ._number select {
  font-size: 17px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-productsResult_display ._number select {
    font-size: 13px;
  }
}
.p-productsResult_display ._sort {
  position: relative;
}
.p-productsResult_display ._sort select {
  width: 80px;
  height: 20px;
  opacity: 0;
}
.p-productsResult_display ._sortText {
  width: 100%;
  height: 100%;
  padding-left: 23px;
  background: url(../img/common/icon_sort.svg) left center/auto no-repeat;
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-productsResult_display ._sortText {
    padding-left: 22px;
    font-size: 13px;
    background-size: 16px auto;
  }
}

.p-productsList > li {
  padding: 21px 0 19px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-productsList > li {
    padding: 20px 0;
  }
}
.p-productsList > li::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-boder03);
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-productsList > li::after {
    width: calc(100% + var(--mg-sp) * 2);
    margin-left: calc(-1 * var(--mg-sp));
    height: 1px;
  }
}
.p-productsList > li:first-child::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-boder03);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-productsList > li:first-child::before {
    width: calc(100% + var(--mg-sp) * 2);
    margin-left: calc(-1 * var(--mg-sp));
    height: 1px;
  }
}
@media (hover: hover) {
  .p-productsList > li:hover .p-productsList_imgInner img {
    transform: scale(1.06);
  }
}
.p-productsList a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.p-productsList_container {
  display: flex;
  gap: 0 29px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .p-productsList_container {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .p-productsList_container {
    gap: 0 10px;
  }
}
.p-productsList_imgBox {
  width: 142px;
}
@media screen and (max-width: 767px) {
  .p-productsList_imgBox {
    width: min(calc(125 / 375 * 100vw), 125px);
  }
}
.p-productsList_imgInner {
  background: #efefef;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}
.p-productsList_imgInner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.p-productsList_contBox {
  flex: 1;
}
.p-productsList_infoBox {
  flex: 1;
}
.p-productsList_contTtl {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5294117647;
}
@media screen and (max-width: 767px) {
  .p-productsList_contTtl {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4642857143;
  }
}
.p-productsList_bottomCont {
  display: flex;
  gap: 0 20px;
  margin-top: 16px;
}
@media screen and (max-width: 1024px) {
  .p-productsList_bottomCont {
    display: block;
    margin-top: 4px;
  }
}
.p-productsList_desc {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-productsList_desc {
    margin-top: 5px;
  }
}
.p-productsList_keyword {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6153846154;
}
@media screen and (max-width: 1024px) {
  .p-productsList_keyword {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-productsList_keyword {
    font-size: 11px;
    line-height: 1.4090909091;
  }
}
.p-productsList_keyword > li {
  display: inline;
}
.p-productsList_keyword > li + li::before {
  content: "/";
  margin: 0 0.2em;
  color: #9D9D9D;
}
.p-productsList_keyword > li span:not(:last-child)::after {
  content: "、";
}
.p-productsList_priceBox {
  width: 290px;
  position: relative;
  text-align: right;
  margin-top: 1px;
  padding-right: 38px;
}
@media screen and (max-width: 1024px) {
  .p-productsList_priceBox {
    width: 100%;
    margin-top: 8px;
    padding-right: 25px;
    text-align: left;
  }
}
.p-productsList_price {
  margin-bottom: 5px;
  color: var(--color-text-red);
  font-size: 15px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-productsList_price {
    font-size: 12px;
  }
}
.p-productsList_priceText {
  display: block;
  color: var(--color-text-emp);
  font-size: 14px;
}
.p-productsList_priceText.-cRed {
  color: var(--color-text-red);
}
.p-productsList_priceDefault {
  color: var(--color-text-emp);
}
.p-productsList_priceNum {
  font-weight: 700;
  line-height: 1;
  word-break: break-all;
}
.p-productsList_priceNum ._num {
  font-size: 25px;
}
@media screen and (max-width: 767px) {
  .p-productsList_priceNum ._num {
    font-size: 19px;
  }
}
.p-productsList_status {
  font-size: 15px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-productsList_status {
    font-size: 12px;
  }
}
.p-productsList_status + .p-productsList_status {
  margin-top: 2px;
}
.p-productsList_status.-booking {
  color: #D57300;
}
.p-productsList_status.-waiting {
  color: #D57300;
}
.p-productsList_status.-stock {
  color: #3744AC;
}
.p-productsList_status.-soldOut {
  color: #8B8B8B;
}
.p-productsList_point {
  display: block;
  margin-top: 4px;
  line-height: 1.2;
}
.p-productsList .m-favoriteBtn {
  width: 24px;
  height: 23px;
  background-size: contain;
  position: absolute;
  top: 43px;
  right: 0;
  z-index: 4;
}
@media screen and (max-width: 1024px) {
  .p-productsList .m-favoriteBtn {
    top: auto;
    bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-productsList .m-favoriteBtn {
    bottom: 20px;
  }
}

/* ========================================
商品詳細 p-product
======================================== */
@media screen and (min-width: 768px) {
  .p-product {
    line-height: 1.375;
  }
}
@media screen and (max-width: 767px) {
  .p-product {
    position: relative;
    z-index: 1;
  }
  .p-product::before {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    background: #F7F7F7;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
  }
}

.p-productContainer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-productContainer {
    display: block;
  }
}

.p-productSlide {
  width: 32.8%;
  padding-top: 18px;
}
@media screen and (max-width: 767px) {
  .p-productSlide {
    width: calc(325 / 375 * 100vw);
    margin: 0 auto;
  }
}
.p-productSlide_imgBox {
  position: relative;
  padding-top: 100%;
}
.p-productSlide_imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-productSlide_main .splide__track {
    overflow: visible;
  }
}
@media screen and (max-width: 767px) {
  .p-productSlide_num {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 4px;
    margin: 10px auto 0;
    width: 65px;
    height: 30px;
    border: 1px solid var(--color-boder02);
    border-radius: 15px;
    color: var(--color-boder02);
    font-family: var(--font-anton);
    font-size: 11px;
    letter-spacing: 0.1em;
    line-height: 1;
  }
}
.p-productSlide_sub {
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .p-productSlide_sub {
    display: none;
  }
}
.p-productSlide_sub .splide__list {
  flex-wrap: wrap;
  gap: 18px 5.1829268293% !important;
}
.p-productSlide_sub .splide__list > li {
  width: 15.8536585366% !important;
  position: relative;
}
.p-productSlide_sub .splide__list > li::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-boder03);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.p-productCont {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-productCont {
    width: 62.2%;
  }
}
@media screen and (max-width: 767px) {
  .p-productCont {
    width: 100%;
    margin-top: 20px;
  }
}
.p-productCont_ttl {
  margin: 21px 0 0;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.4782608696;
}
@media screen and (max-width: 767px) {
  .p-productCont_ttl {
    font-size: 20px;
    line-height: 1.475;
  }
}
.p-productCont_tag {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-productCont_tag.l-tag {
    gap: 10px 10px;
  }
}
.p-productCont_tag.l-tag > * {
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .p-productCont_tag.l-tag > * {
    font-size: 14px;
    padding-top: 5px;
    padding-bottom: 6px;
  }
}
.p-productCont_tag.l-tag a {
  color: #fff;
}
@media (hover: hover) {
  .p-productCont_tag.l-tag a {
    transition: opacity 0.3s;
  }
  .p-productCont_tag.l-tag a:hover {
    opacity: 0.7;
  }
}
.p-productCont_overview {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-productCont_overview {
    margin-top: 23px;
  }
}
.p-productCont_overview dl {
  margin: 0;
  padding: 10px 0;
  display: flex;
  border-top: 1px solid var(--color-boder03);
}
@media screen and (max-width: 767px) {
  .p-productCont_overview dl.-spCol {
    display: block;
  }
  .p-productCont_overview dl.-spCol dd {
    margin-top: 4px;
  }
}
.p-productCont_overview dt {
  width: 139px;
  padding-right: 15px;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .p-productCont_overview dt {
    width: 120px;
  }
}
.p-productCont_overview dd {
  flex: 1;
  margin: 0;
}
.p-productCont_overview a {
  text-decoration: underline;
}
@media (hover: hover) {
  .p-productCont_overview a {
    transition: opacity 0.3s;
  }
  .p-productCont_overview a:hover {
    opacity: 0.7;
  }
}
.p-productCont_unit {
  margin-left: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-productCont_unit {
    margin-left: 0.15em;
  }
}
@media screen and (max-width: 767px) {
  .p-productCont_standard {
    font-size: 12px;
  }
}
.p-productCont_standard ._num {
  font-weight: 700;
}
.p-productCont_normalText {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-productCont_normalText {
    font-size: 15px;
  }
}
.p-productCont_normalText.-red {
  color: var(--color-text-red);
}
.p-productCont_price {
  color: var(--color-text-red);
  font-size: 19px;
}
@media screen and (max-width: 767px) {
  .p-productCont_price {
    font-size: 1１px;
    font-weight: 400;
  }
}
.p-productCont_price ._num {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-productCont_price ._num {
    font-size: 24px;
  }
}
.p-productCont_priceMin {
  display: block;
  margin-top: 0.2em;
  line-height: 1;
  word-break: break-all;
  color: var(--color-text-red);
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-productCont_priceMin {
    margin-top: 8px;
    font-size: 10px;
  }
}
.p-productCont_priceMin ._num {
  font-size: 19px;
}
@media screen and (max-width: 767px) {
  .p-productCont_priceMin ._num {
    font-size: 12px;
  }
}
.p-productCont_postage {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 31px;
  border-radius: 4px;
  background: #323232;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  transform: translateY(-15%);
}
@media screen and (max-width: 767px) {
  .p-productCont_postage {
    width: 48px;
    height: 19px;
    font-size: 10px;
  }
}
.p-productCont_postage.-free {
  background-color: var(--color-text-red);
}
.p-productCont_comment {
  margin-top: 6px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-productCont_comment {
    font-size: 12px;
  }
}
.p-productCont_notes {
  margin-top: 15px;
  color: var(--color-text-red);
  font-size: 14px;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .p-productCont_notes {
    font-size: 12px;
  }
}
.p-productCont_notes + .p-productCont_notes {
  margin-top: 0;
}
.p-productCont_point {
  margin: 8px 0 4px;
  color: var(--color-text-red);
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-productCont_point {
    font-size: 12px;
  }
}
.p-productCont_campaign {
  margin-top: 13px;
}
@media screen and (max-width: 767px) {
  .p-productCont_campaign {
    margin-top: 10px;
  }
}
.p-productCont_campaign ._link a {
  display: inline-block;
  color: var(--color-text-red);
  padding-left: 19px;
  background: url(../img/product/campaign_arrow.svg) left top 8px/auto no-repeat;
}
.p-productCont_campaign ._banner {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-productCont_campaign ._banner {
    margin-top: 8px;
  }
}
.p-productCont_campaign ._banner img {
  width: 100%;
}
.p-productCont_demo {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
}
.p-productCont_demo > *:not(:last-child)::after {
  content: "、";
}
.p-productCont_cart {
  padding-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-productCont_cart {
    padding-bottom: 80px;
  }
}
.p-productCont_cart::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-boder03);
  position: absolute;
  left: 0;
  bottom: 100px;
}
@media screen and (max-width: 767px) {
  .p-productCont_cart::after {
    bottom: 80px;
  }
}
.is-option .p-productCont_cart::after {
  display: none;
}
.p-productCont_cart_optionNotes {
  display: none;
  padding-top: 10px;
  border-top: 1px solid var(--color-boder03);
  font-size: 14px;
  text-align: right;
}
.is-option .p-productCont_cart_optionNotes {
  display: block;
}
.p-productCont_cart .mb-3 {
  margin-bottom: 0 !important;
  padding: 10px 0;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--color-boder03);
}
.p-productCont_cart .form-label {
  width: 139px;
  margin-bottom: 0;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-productCont_cart .form-label {
    width: 120px;
  }
}
.p-productCont_cart .form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 45px;
  padding: 0 30px 0 10px;
  border: 1px solid var(--color-boder02);
  border-radius: 4px;
  background: url(../img/common/selsect_arrow.svg) right 9px center/auto no-repeat;
  color: var(--color-text-base);
  font-size: 16px;
  flex: 1;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-productCont_cart .form-select {
    height: 42px;
    font-size: 15px;
    border-radius: 2px;
  }
}
.p-productCont_select > div {
  margin: 0 !important;
  padding: 10px 0;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--color-boder03);
}
.p-productCont_select label {
  width: 139px;
  margin: 0;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-productCont_select label {
    width: 120px;
  }
}
.p-productCont_select select {
  flex: 1;
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 45px;
  padding: 0 30px 0 10px;
  border: 1px solid var(--color-boder02);
  border-radius: 4px;
  background: url(../img/common/selsect_arrow.svg) right 9px center/auto no-repeat;
  color: var(--color-text-base);
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-productCont_select select {
    height: 42px;
    font-size: 15px;
    border-radius: 2px;
  }
}
@media screen and (max-width: 767px) {
  .p-productCont_select select {
    background-color: #fff;
  }
}
.p-productCont_numInput {
  margin: 0;
  padding: 10px 0;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--color-boder03);
}
.p-productCont_numInput dt {
  width: 139px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-productCont_numInput dt {
    width: 120px;
  }
}
.p-productCont_numInput dd {
  flex: 1;
  margin: 0;
}
.p-productCont_numInput input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 45px;
  padding: 0 30px 0 10px;
  border: 1px solid var(--color-boder02);
  border-radius: 4px;
  background: url(../img/common/selsect_arrow.svg) right 9px center/auto no-repeat;
  color: var(--color-text-base);
  font-size: 16px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-productCont_numInput input {
    height: 42px;
    font-size: 15px;
    border-radius: 2px;
  }
}
.p-productCont_numInput input[type=number] {
  padding-right: 10px;
}
.p-productCont_numInput input[type=number]::-webkit-inner-spin-button, .p-productCont_numInput input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: inner-spin-button;
  opacity: 1;
}
.p-productCont_cartAdd {
  width: calc(100% - 80px);
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-productCont_cartAdd {
    width: calc(100% - 72px);
  }
}
.p-productCont_cartAdd button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 100%;
  height: 60px;
  background: var(--color-text-red);
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-productCont_cartAdd button {
    height: 40px;
    font-size: 15px;
  }
}
.p-productCont_cartAdd button.-done {
  pointer-events: none;
}
.p-productCont_caution {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid var(--color-text-red);
  border-radius: 4px;
  background: #FFF8F8;
  color: var(--color-text-red);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
.p-productCont_caution a {
  text-decoration: underline;
  text-underline-offset: 0.1em;
}
@media (hover: hover) {
  .p-productCont_caution a {
    transition: opacity 0.3s;
  }
  .p-productCont_caution a:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) {
  .p-productCont_caution a:hover {
    color: inherit;
  }
}
.p-productCont_favorite {
  display: block;
  line-height: 1;
  position: absolute;
  left: 0;
  bottom: 0;
}
.p-productCont_favorite button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  height: 60px;
  padding-top: 32px;
  background: url(../img/product/favorite.svg) center top 4px/auto no-repeat;
  color: var(--color-text-red);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-productCont_favorite button {
    height: 40px;
    padding-top: 24px;
    background-size: 25px auto;
    background-position: center top 0;
    font-size: 10px;
    line-height: 1;
  }
}
.p-productCont_favorite button.-done, .p-productCont_favorite button[data-favorite-added="1"] {
  background-image: url(../img/product/favorite-done.svg);
}
.p-productCont_favorite button .added-text {
  display: none;
}
.p-productCont_favorite button[data-favorite-added="1"] .added-text {
  display: inline;
}
.p-productCont_favorite button[data-favorite-added="1"] .not-added-text {
  display: none;
}
.p-productCont_noneTable {
  display: block;
  width: 100%;
}
.p-productCont_noneTable tbody,
.p-productCont_noneTable tr,
.p-productCont_noneTable td {
  display: block;
}
.p-productDetail {
  margin-top: 80px;
  padding: 0 17px;
}
@media screen and (max-width: 767px) {
  .p-productDetail {
    width: calc(100% + var(--mg-sp) * 2);
    margin-top: 40px;
    margin-left: calc(var(--mg-sp) * -1);
    padding: 0 var(--mg-sp);
  }
}
.p-productDetail a {
  text-decoration: underline;
  text-underline-offset: 0.1em;
}
@media (hover: hover) {
  .p-productDetail a {
    transition: opacity 0.3s;
  }
  .p-productDetail a:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) {
  .p-productDetail a:hover {
    color: inherit;
  }
}
.p-productDetail .h2_band {
  width: calc(100% + 34px);
  margin: 0 0 35px -17px;
  padding: 11px 17px;
  background: var(--color-text-base);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1px;
  background-color: var(--color-bg03);
  color: var(--color-text-base);
}
@media screen and (max-width: 767px) {
  .p-productDetail .h2_band {
    width: calc(100% + var(--mg-sp) * 2);
    margin-bottom: 21px;
    margin-left: calc(var(--mg-sp) * -1);
    padding: 9px var(--mg-sp);
    font-size: 14px;
  }
}
.p-productDetail .h2_band + .h3_band,
.p-productDetail .h2_band + .h3_text {
  border-top: 0;
  padding-top: 0;
}
.p-productDetail ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.p-productDetail .h3_band,
.p-productDetail .h3_text {
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-productDetail .h3_band,
  .p-productDetail .h3_text {
    margin-bottom: 16px;
  }
}
.p-productDetail .h3_band::before,
.p-productDetail .h3_text::before {
  content: "";
  display: block;
  width: calc(100% + 34px);
  height: 2px;
  margin: 30px 0 30px -17px;
  background: var(--color-boder03);
}
@media screen and (max-width: 767px) {
  .p-productDetail .h3_band::before,
  .p-productDetail .h3_text::before {
    width: calc(100% + var(--mg-sp) * 2);
    margin-left: calc(var(--mg-sp) * -1);
    margin-top: 21px;
    margin-bottom: 21px;
  }
}
.p-productDetail .outer_option {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 3.5%;
}
@media screen and (max-width: 1024px) {
  .p-productDetail .outer_option {
    gap: 40px 5%;
  }
}
@media screen and (max-width: 767px) {
  .p-productDetail .outer_option {
    justify-content: space-between;
    gap: 23px 0;
  }
}
.p-productDetail .outer_option > li {
  width: 17.2%;
}
@media screen and (max-width: 1024px) {
  .p-productDetail .outer_option > li {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .p-productDetail .outer_option > li {
    width: 47.8260869565%;
  }
}
.p-productDetail .outer_option .option_link {
  display: block;
  text-decoration: none;
}
.p-productDetail .outer_option .option_link > span {
  display: block;
}
.p-productDetail .outer_option .option_image {
  padding-top: 100%;
  position: relative;
}
.p-productDetail .outer_option .option_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.p-productDetail .outer_option .option_description {
  background: none;
  box-shadow: none;
  border-radius: 0;
  min-width: 0;
  max-width: 100%;
  max-height: none;
  border: none;
  overflow: inherit;
}
.p-productDetail .outer_option .option_price {
  color: var(--color-text-red);
  font-size: 16px;
  font-weight: 700;
}
.p-productDetail .movie:has(iframe) {
  padding-top: 56.25%;
  position: relative;
}
.p-productDetail .movie:has(iframe) iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.p-productDetail .movie video {
  width: 100%;
}
.p-productDetail .movie a {
  display: block;
}
.p-productDetail_spec {
  border-top: 1px solid var(--color-boder03);
  border-left: 1px solid var(--color-boder03);
  border-right: 1px solid var(--color-boder03);
}
.p-productDetail_spec dl {
  display: flex;
  margin: 0;
  border-bottom: 1px solid var(--color-boder03);
}
.p-productDetail_spec dt,
.p-productDetail_spec dd {
  padding: 11px 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-productDetail_spec dt,
  .p-productDetail_spec dd {
    font-size: 14px;
    padding: 10px;
  }
}
.p-productDetail_spec dt {
  width: clamp(180px , calc(292 / 1440 * 100vw), 292px);
  background: var(--color-text-base);
  border-left: 1px solid var(--color-boder03);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-productDetail_spec dt {
    width: 130px;
  }
}
.p-productDetail_spec dd {
  width: calc(100% - clamp(180px , calc(292 / 1440 * 100vw), 292px));
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-productDetail_spec dd {
    width: calc(100% - 130px);
    background-color: #fff;
  }
}
.p-productDetail .title_text {
  margin: 31px 0 12px;
  font-size: 18px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .p-productDetail .title_text {
    margin-top: 21px;
    font-size: 19px;
  }
}
.p-productDetail .title_text span {
  font-size: 18px;
  font-weight: bold;
  margin-right: 0.2em;
}
.p-productDetail .description {
  margin-top: 12px;
  font-weight: 500;
  line-height: 1.5;
}
.p-productDetail #details_second h1 {
  margin: 30px 0 30px;
  padding-bottom: 30px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: normal;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-productDetail #details_second h1 {
    margin: 21px 0;
    padding-bottom: 21px;
    font-size: 19px;
  }
}
.p-productDetail #details_second h1::after {
  content: "";
  display: block;
  width: calc(100% + 34px);
  height: 2px;
  background: var(--color-boder03);
  position: absolute;
  left: -17px;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-productDetail #details_second h1::after {
    width: calc(100% + var(--mg-sp) * 2);
    left: calc(var(--mg-sp) * -1);
  }
}
.p-productDetail #details_second ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.p-productDetail #details_second ul > li {
  padding-left: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-productDetail #details_second ul > li {
    padding-left: 22px;
  }
}
.p-productDetail #details_second ul > li::before {
  content: "・";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.p-productDetail #details_second ul + ul {
  margin-top: 20px;
}
.p-productDetail #details_second a {
  text-decoration: underline;
  text-underline-offset: 0.1em;
}
@media (hover: hover) {
  .p-productDetail #details_second a {
    transition: opacity 0.3s;
  }
  .p-productDetail #details_second a:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) {
  .p-productDetail #details_second a:hover {
    color: inherit;
  }
}
.p-productDetail .block_product_guide {
  margin-top: 80px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--color-boder03);
  align-items: --color-boder03;
}
.p-productDetail .block_product_guide .h2_band {
  margin-bottom: 0;
}
.p-productDetail .block_product_guide .h3_text:first-of-type::before {
  margin-top: 0;
  height: 1px;
}
.p-productDetail .block_product_guide a {
  color: var(--color-text-red);
  text-decoration: underline;
}
@media (hover: hover) {
  .p-productDetail .block_product_guide a {
    transition: opacity 0.3s;
  }
  .p-productDetail .block_product_guide a:hover {
    opacity: 0.7;
  }
}

.p-productOptionModal .plus {
  color: var(--color-text-red);
}
.p-productOptionModal_desc a {
  color: #2980b9;
  text-decoration: underline;
}

/*▼detail_6*/
.detail_6 {
  font-size: 13px;
  line-height: 1.75;
}

.detail_6 p,
.detail_6 ul,
.detail_6 table {
  margin-top: 12px;
}

.detail_6 a {
  color: #0000B0;
}

.detail_6 a:hover {
  color: #246BCA;
}

.detail_6 img {
  max-width: 100%;
  height: auto;
}

.detail_6 img.middle {
  vertical-align: middle;
}

.detail_6 span.note {
  font-size: 11px;
}

.detail_6 p.center {
  text-align: center;
}

/*▼削除予定*/
.detail_6 p.align_top img {
  vertical-align: top;
}

/*▲削除予定*/
.detail_6 *.top img {
  vertical-align: top;
}

.detail_6 p.caption {
  margin-top: 0px;
  font-size: 12px;
  text-align: center;
}

.detail_6 p.caption_long {
  margin-top: 0px;
}

.detail_6 p.caption_small {
  margin-top: 0px;
  font-size: 10.5px;
  line-height: 1.6;
  text-align: center;
}

.detail_6 span.mark,
.detail_6 p.mark,
.detail_6 th.mark,
.detail_6 td.mark,
.detail_6 li.mark {
  color: orangered;
}

.detail_6 span.mark_large,
.detail_6 p.mark_large {
  font-weight: bold;
  font-size: 24px;
  transform: rotate(-0.001deg);
}

.detail_6 span.mark_bold,
.detail_6 p.mark_bold {
  font-weight: bold;
  color: #444;
  font-size: 16px;
  transform: rotate(-0.001deg);
}

.detail_6 h1 img {
  vertical-align: top;
}

.detail_6 h1.text {
  font-size: 16px;
  font-weight: normal;
  padding: 12px;
  background-color: #f6f6f6;
  border-left: 6px solid #333;
}

.detail_6 h1.text span {
  font-size: 18px;
  font-weight: bold;
  margin-right: 0.2em;
}

.detail_6 p.h1_text {
  margin-top: 0;
  padding: 14px 12px 12px;
  background-color: #f6f6f6;
  border-left: 6px solid #333;
}

.detail_6 h1.text + p.h1_text {
  margin-top: -12px;
  padding: 0 12px 12px;
  background-color: #f6f6f6;
  border-left: 6px solid #333;
}

.detail_6 p.top_text {
  padding: 12px 17px 10px;
  border: 1px solid #eee;
}

.detail_6 h1 + ul.option_text {
  margin-top: 24px;
}

.detail_6 div.h1_block {
  margin-top: 48px;
}

.detail_6 div.h1_block:first-child {
  margin-top: 0;
}

.detail_6 div.h1_block:after {
  content: "";
  display: block;
  clear: both;
}

.detail_6 h2 {
  font-size: 14px;
  font-weight: normal;
  margin-top: 48px;
  background-color: #f6f6f6;
  padding: 5px 0 3px 9px;
  border-left: 6px solid #333;
  clear: both;
}

.detail_6 h2:before {
  background: none;
  content: none;
}

.detail_6 h2.caution {
  border-color: #ff8c00;
  color: #2F2F2F;
}

.detail_6 h2.warranty {
  border-color: #019bb9;
}

.detail_6 div.h2_block {
  margin-top: 36px;
  padding-left: 6px;
  padding-right: 6px;
}

.detail_6 div.h2_block > *:first-child {
  margin-top: 0;
}

.detail_6 h2 + div.h2_block {
  margin-top: 24px;
}

.detail_6 div.h2_block:after {
  content: "";
  display: block;
  clear: both;
}

.detail_6 hr.h2_block {
  border: none;
  border-top: 1px solid #ccc;
  margin-top: 48px;
}

.detail_6 h3 {
  font-size: 16px;
  font-weight: normal;
  color: #226;
  margin-top: 36px;
  border-bottom: 1px solid #ccc;
  background: -webkit-gradient(135deg, transparent 50%, #f6f6f6 50%);
  background: linear-gradient(135deg, transparent 50%, #f6f6f6 50%);
  background-size: 100% 12px;
  background-position: right bottom;
  background-repeat: no-repeat;
  clear: both;
}

.detail_6 div.h3_block {
  margin-top: 24px;
}

.detail_6 div.h3_block > *:first-child {
  margin-top: 0;
}

.detail_6 h3 + div.h3_block {
  margin-top: 18px;
}

.detail_6 div.h3_block:after {
  content: "";
  display: block;
  clear: both;
}

.detail_6 hr.h3_block {
  border: none;
  border-top: 2px solid #eee;
  margin-top: 24px;
}

.detail_6 h4 {
  font-weight: normal;
  font-size: 16px;
  margin-top: 24px;
  clear: both;
}

.detail_6 h4.bold {
  font-weight: bold;
}

.detail_6 div.h4_block {
  margin-top: 18px;
}

.detail_6 div.h4_block > *:first-child {
  margin-top: 0;
}

.detail_6 h4 + div.h4_block {
  margin-top: 12px;
}

.detail_6 div.h4_block:after {
  content: "";
  display: block;
  clear: both;
}

/*▼削除予定*/
.detail_6 p.subhead1 {
  font-size: 15px;
  margin-top: 24px;
}

.detail_6 p.subhead1 + p,
.detail_6 p.subhead1 + ul,
.detail_6 p.subhead1 + table {
  margin-top: 6px;
}

.detail_6 p.subhead2 {
  font-weight: bold;
  font-size: 16px;
  margin-top: 24px;
}

.detail_6 p.subhead2 + p,
.detail_6 p.subhead2 + ul,
.detail_6 p.subhead2 + table {
  margin-top: 6px;
}

/*▲削除予定*/
.detail_6 p.subhead {
  margin-top: 24px;
}

.detail_6 p.subhead + * {
  margin-top: 6px;
}

.detail_6 p.sh_1 {
  font-size: 15px;
}

.detail_6 p.sh_2 {
  font-weight: bold;
  font-size: 15px;
  transform: rotate(-0.001deg);
}

.detail_6 p.sh_3 {
  font-weight: bold;
  font-size: 13.5px;
  transform: rotate(-0.001deg);
  color: #444;
}

.detail_6 p.sh_4 {
  padding: 6px 12px 4px;
  background-color: #0089cf;
  color: #fff;
  display: inline-block;
}

.detail_6 p.sh_4 {
  padding: 6px 12px 4px;
  background-color: #0089cf;
  color: #fff;
}

.detail_6 p.sh_4 + p,
.detail_6 p.sh_4 + ul,
.detail_6 p.sh_4 + table {
  margin-top: 12px;
}

.detail_6 p.sh_5 {
  font-weight: bold;
  font-size: 24px;
  transform: rotate(-0.001deg);
}

.detail_6 p.sh_6 {
  padding: 5px 11px 3px;
  background-color: #dbe8ff;
  border: 1px solid #bbbcde;
  color: #000;
  border-radius: 3px;
}

.detail_6 p.sh_6 + * {
  margin-top: 12px;
}

.detail_6 p.sh_6_half {
  padding: 5px 11px 3px;
  background-color: #dbe8ff;
  border: 1px solid #bbbcde;
  color: #000;
  border-radius: 3px;
  width: 48%;
}

.detail_6 p.sh_6_half + * {
  margin-top: 18px;
}

.detail_6 div.col2 {
  float: left;
  width: 48%;
  margin-right: 4%;
}
@media screen and (max-width: 767px) {
  .detail_6 div.col2 {
    width: 100%;
  }
}

.detail_6 div.col3 {
  float: left;
  width: 30.6%;
  margin-right: 4%;
}

.detail_6 div.col4 {
  float: left;
  width: 22%;
  margin-right: 4%;
}
@media screen and (max-width: 767px) {
  .detail_6 div.col4 {
    width: 48%;
    margin-bottom: 10px;
  }
}

.detail_6 div.col5 {
  float: left;
  width: 16.8%;
  margin-right: 4%;
}
@media screen and (max-width: 767px) {
  .detail_6 div.col5 {
    width: 30.6%;
    margin-bottom: 10px;
  }
}

.detail_6 div.col6 {
  float: left;
  width: 13.3%;
  margin-right: 4%;
}
@media screen and (max-width: 767px) {
  .detail_6 div.col6 {
    width: 30.6%;
    margin-bottom: 10px;
  }
}

.detail_6 div.col2:nth-child(-n+2) *:first-child,
.detail_6 div.col3:nth-child(-n+3) *:first-child,
.detail_6 div.col4:nth-child(-n+4) *:first-child,
.detail_6 div.col5:nth-child(-n+5) *:first-child,
.detail_6 div.col6:nth-child(-n+6) *:first-child {
  margin-top: 0;
}

.detail_6 div > div.col2:nth-child(2n),
.detail_6 div > div.col3:nth-child(3n),
.detail_6 div > div.col4:nth-child(4n),
.detail_6 div > div.col5:nth-child(5n),
.detail_6 div > div.col6:nth-child(6n) {
  margin-right: 0;
}

.detail_6 div.col_image_left {
  float: left;
  margin-right: 4%;
}

.detail_6 div.col_image_right {
  float: right;
  margin-left: 4%;
}

.detail_6 div.col_image_left *:first-child,
.detail_6 div.col_image_right *:first-child {
  margin-top: 0;
}

.detail_6 div.col_image_left + p,
.detail_6 div.col_image_right + p {
  margin-top: 0;
}

.detail_6 div.col_left {
  float: left;
  margin-right: 4%;
}

.detail_6 div.col_right {
  float: right;
}

.detail_6 div.col_left *:first-child,
.detail_6 div.col_right *:first-child {
  margin-top: 0;
}

.detail_6 div.w26 {
  width: 26%;
}

.detail_6 div.w70 {
  width: 70%;
}

.detail_6 div.w30 {
  width: 30%;
}

.detail_6 div.w66 {
  width: 66%;
}

.detail_6 div.w34 {
  width: 34%;
}

.detail_6 div.w62 {
  width: 62%;
}

.detail_6 p.col_left,
.detail_6 ul.col_left {
  display: inline-block;
  vertical-align: middle;
  margin-right: 30px;
}

.detail_6 p.col_right,
.detail_6 ul.col_right {
  display: inline-block;
  vertical-align: middle;
}

.detail_6 ul li {
  list-style: none;
  margin-bottom: 0;
  padding-left: 18px;
  text-indent: -18px;
}

.detail_6 ul li:before {
  content: "・";
  margin-right: 5px;
}

.detail_6 ul ul {
  margin-top: 0;
}

.detail_6 ul.note li {
  padding-left: 18px;
  text-indent: -18px;
  font-size: 11px;
}

.detail_6 ul.note li:before {
  content: "";
  margin-right: 3px;
}

.detail_6 ul.ext li:before {
  display: inline-block;
  content: " ";
  height: 0;
  width: 0;
  border: 0.4em solid transparent;
  border-left-color: #999;
  margin-left: 0.4em;
  margin-right: 0.4em;
}

.detail_6 ul.ext li a:after {
  content: "";
  background: url("/html/user_data/img/icon/external-link-green03-Shapes4FREE.gif") no-repeat right center;
  padding-right: 18px;
}

.detail_6 ul li.pdf a:after {
  content: "";
  background: url("/html/user_data/img/icon/pdfico.gif") no-repeat right center;
  padding-right: 18px;
}

.detail_6 ul.option {
  font-size: 0;
}

.detail_6 ul.option li {
  display: inline-block;
  box-sizing: border-box;
  width: 254px;
  margin-right: 3px;
  margin-top: 3px;
  border: 1px solid #eee;
  vertical-align: top;
  padding: 6px;
  text-indent: 0;
}

.detail_6 ul.op_col4 li {
  width: 190px;
  margin-right: 2px;
}

.detail_6 ul.option li:nth-child(-n+3) {
  margin-top: 0;
}

.detail_6 ul.option li:nth-child(3n) {
  margin-right: 0;
}

.detail_6 ul.option li:before {
  content: none;
  margin-right: 0;
}

.detail_6 ul.option li a {
  display: inline-block;
  width: 100%;
  text-decoration: none;
}

.detail_6 ul.option li a:hover {
  text-decoration: underline;
}

.detail_6 ul.option li p.image {
  float: left;
  margin: 0 10px 0 0;
  line-height: 0;
}

.detail_6 ul.option li p.image img {
  width: 80px;
}

.detail_6 ul.option li p {
  font-size: 10.5px;
  line-height: 1.6;
  margin-top: 0;
}

.detail_6 ul.option li p.name1 {
  margin-top: 4px;
}

.detail_6 ul.option li p.price {
  margin-top: 8px;
}

.detail_6 ul.option li p.note {
  clear: both;
  font-size: 10.5px;
  margin-top: 6px;
  border-top: 1px solid #eee;
  padding-top: 8px;
}

.detail_6 ul.rab {
  font-size: 0;
}

.detail_6 ul.rab li:before {
  content: none;
  margin-right: 0;
}

.detail_6 ul.rab li {
  box-sizing: border-box;
  width: 256px;
  border: 1px solid #ddd;
  font-size: 11px;
  display: inline-block;
  margin-top: 12px;
  padding: 0;
  vertical-align: top;
  text-indent: 0;
}

.detail_6 ul.rab li:nth-child(-n+3) {
  margin-top: 0;
}

.detail_6 ul.rab p.image {
  border-bottom: 1px solid #ddd;
  margin: 0;
  padding: 7px;
  line-height: 0;
  text-align: center;
}

.detail_6 ul.rab p.image img {
  max-width: 240px;
}

.detail_6 ul.rab p.name {
  margin: 0;
  padding: 2px 7px 0;
  background-color: #eee;
}

.detail_6 ul.rab p.note {
  border-top: 1px solid #ddd;
  margin: 0;
  padding: 2px 7px 0;
}

.detail_6 ul.acc {
  border: 1px solid #eee;
  padding: 12px 10px 10px;
  font-size: 0;
}

.detail_6 ul.acc li {
  text-indent: 0;
  display: inline-block;
  font-size: 13px;
  padding-right: 7px;
  padding-left: 7px;
  border-right: 1px solid #ccc;
}

.detail_6 ul.acc li:last-child {
  border-right: none;
}

.detail_6 ul.acc li:before {
  content: "";
  margin-right: 0;
}

.detail_6 ul.large_list li {
  margin-top: 12px;
}

.detail_6 ul.large_list li:after {
  content: "";
  display: block;
  clear: both;
}

.detail_6 ul.large_list li span.title {
  color: #226;
}

.detail_6 ul.large_list li p {
  margin-top: 6px;
  text-indent: -18px;
  padding-left: 18px;
}

.detail_6 ul.large_list li p img {
  margin-top: 6px;
}

.detail_6 ul.large_list li p:before {
  content: "- ";
  margin-right: 7px;
}

.detail_6 div.center {
  text-align: center;
}

.detail_6 div.center ul {
  display: inline-block;
}

.detail_6 div.center ul li {
  text-align: left;
}

.detail_6 dl.dl_block dt {
  font-size: 16px;
}

.detail_6 dl.dl_block dd + dt {
  margin-top: 6px;
}

.detail_6 dl.dl_block dt + dd {
  margin-top: 6px;
}

.detail_6 table tr td *:first-child,
.detail_6 table tr td ul {
  margin-top: 0;
}

.detail_6 table tr td ul:not(.note) li:before {
  content: "・";
  margin-left: 2px;
}

.detail_6 table tr th img,
.detail_6 table tr td img {
  vertical-align: middle;
}

.detail_6 table.spec tr th {
  background-color: #f6f6f6;
}

.detail_6 table.spec tr th,
.detail_6 table.spec tr td {
  font-weight: normal;
  padding: 6px 8px 4px;
  border: 1px solid #ddd;
  font-size: 11px;
  line-height: 1.75;
}

.detail_6 table.table-layout td {
  font-weight: normal;
  padding: 6px 8px 4px;
  border: 1px solid #ddd;
  line-height: 1.75;
}

.detail_6 table.table-layout td.head {
  background-color: #eee;
}

.detail_6 table.large tr th,
.detail_6 table.large tr td {
  padding: 6px 8px 4px;
  font-size: 12px;
}

.detail_6 table.dataonly tr td {
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 1px solid #eee;
  padding: 10px 18px 2px;
  font-size: 12px;
  line-height: 1.75;
}

.detail_6 table.dataonly tr:first-child td {
  padding-top: 0;
}

.detail_6 table.w50 {
  width: 50%;
}

.detail_6 table.w70 {
  width: 70%;
}

.detail_6 table.w100 {
  width: 100%;
}

.detail_6 table.fix {
  table-layout: fixed;
}

.detail_6 table.center th,
.detail_6 table.center td {
  text-align: center;
}

.detail_6 table.noborder th,
.detail_6 table.noborder td {
  border: none;
  border: none;
}

.detail_6 table.top td {
  vertical-align: top;
}

.detail_6 table tr.select {
  color: royalblue;
}

.detail_6 table tr th.deep {
  background-color: #eee;
}

.detail_6 table tr td.border-double,
.detail_6 table tr th.border-double {
  border-left: 3px double #ddd;
}

.detail_6 table th.w10,
.detail_6 table td.w10 {
  width: 10%;
}

.detail_6 table th.w15,
.detail_6 table td.w15 {
  width: 15%;
}

.detail_6 table th.w20,
.detail_6 table td.w20 {
  width: 20%;
}

.detail_6 table th.w25,
.detail_6 table td.w25 {
  width: 25%;
}

.detail_6 table th.w30,
.detail_6 table td.w30 {
  width: 30%;
}

.detail_6 table th.w35,
.detail_6 table td.w35 {
  width: 35%;
}

.detail_6 table th.w40,
.detail_6 table td.w40 {
  width: 40%;
}

.detail_6 table th.w50,
.detail_6 table td.w50 {
  width: 50%;
}

.detail_6 table hr.blank {
  background: none;
  margin: 6px 0 0;
}

.detail_6 table.tripod {
  width: 100%;
}

.detail_6 table.tripod tr th[colspan] {
  background-color: #eee;
}

.detail_6 table.tripod tr th,
.detail_6 table.tripod tr td {
  font-size: 11px;
}

.detail_6 table.tripod tr th {
  background-color: #f6f6f6;
  width: 35%;
}

.detail_6 table.stripe tr:nth-child(even) td {
  background-color: #fcfcfc;
}

/*▼削除予定*/
.detail_6 div.box1 {
  margin-top: 12px;
  border: 3px solid #999;
  border-radius: 5px;
  padding: 12px 15px 10px;
  background-color: #f6f6f6;
}

.detail_6 div.box2 {
  margin-top: 12px;
  border: 3px double orange;
  border-radius: 5px;
  padding: 12px 15px 10px;
}

.detail_6 div.box3 {
  margin-top: 12px;
  border: 2px solid #999;
  border-radius: 5px;
  padding: 12px 16px 10px;
  background-color: #fcfcfc;
}

.detail_6 div.box1 *:first-child,
.detail_6 div.box2 *:first-child,
.detail_6 div.box3 *:first-child {
  margin-top: 0;
}

/*▲削除予定*/
.detail_6 div.bx_1 {
  margin-top: 12px;
  border: 3px solid #999;
  border-radius: 5px;
  padding: 12px 15px 10px;
  background-color: #f6f6f6;
}

.detail_6 div.bx_2 {
  margin-top: 12px;
  border: 3px double #ffee00;
  border-radius: 5px;
  padding: 12px 15px 10px;
  background-color: #ffffcc;
}

.detail_6 div.bx_3 {
  margin-top: 12px;
  border: 1px solid #bbb;
  border-radius: 5px;
  padding: 12px 17px 10px;
  background-color: #fcfcfc;
}

.detail_6 div.box > *:first-child {
  margin-top: 0;
}

.detail_6 div.box:after {
  content: "";
  display: block;
  clear: both;
}

.detail_6 div.spec_bmd dl dd {
  font-size: 11px;
  margin-top: 6px;
}

.detail_6 div.spec_bmd dl dt:not(:first-child) {
  border-top: 1px solid #ddd;
  padding-top: 12px;
  margin-top: 12px;
}

.detail_6 #modal-content {
  width: 80%;
  padding: 24px;
  border: 2px solid #aaa;
  background: #fff;
  z-index: 2;
  position: fixed;
  bottom: 0;
  right: 0;
}

.detail_6 #modal-content > h2:first-child {
  margin-top: 0;
}

.detail_6 #modal-overlay {
  z-index: 1;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.5);
}

.detail_6_large div.h2_block {
  margin-top: 36px;
  padding-left: 6px;
  padding-right: 6px;
}

.detail_6_large h2 + div.h2_block,
.detail_6_large h2 + div.h2_block > h3:first-child,
.detail_6_large h2 + div.h2_block > div.h3_block:first-child,
.detail_6_large h2 + div.h2_block > p.subhead:first-child {
  margin-top: 24px;
}

.detail_6_large div.h2_block:after {
  content: "";
  display: block;
  clear: both;
}

.detail_6_large h3 {
  font-size: 24px;
  font-weight: bold;
  transform: rotate(-0.001deg);
  margin-top: 36px;
  background: none;
  border: none;
  color: #000;
}

.detail_6_large div.h3_block {
  margin-top: 36px;
}

.detail_6_large h3 + div.h3_block,
.detail_6_large h3 + div.h3_block > h4:first-child,
.detail_6_large h3 + div.h3_block > div.h4_block:first-child,
.detail_6_large h3 + div.h3_block > p.subhead:first-child {
  margin-top: 6px;
}

.detail_6_large div.h3_block:after {
  content: "";
  display: block;
  clear: both;
}

.detail_6_large hr.h3_block {
  border: none;
  border-top: 2px solid #eee;
  margin-top: 36px;
}

.detail_6_large h4 {
  font-size: 16px;
  font-weight: normal;
  color: #226;
  margin-top: 36px;
  border-left: none;
  border-bottom: 1px solid #ccc;
  padding-left: 0;
  background: -webkit-gradient(135deg, transparent 50%, #f6f6f6 50%);
  background: linear-gradient(135deg, transparent 50%, #f6f6f6 50%);
  background-size: 100% 12px;
  background-position: right bottom;
  background-repeat: no-repeat;
  clear: both;
}

.detail_6_large div.h4_block {
  margin-top: 24px;
}

.detail_6_large h4 + div.h4_block,
.detail_6_large h4 + div.h4_block > h5:first-child,
.detail_6_large h4 + div.h4_block > div.h5_block:first-child,
.detail_6_large h4 + div.h4_block > p.subhead:first-child {
  margin-top: 12px;
}

.detail_6_large div.h4_block:after {
  content: "";
  display: block;
  clear: both;
}

.detail_6_large h5 {
  font-weight: normal;
  font-size: 16px;
  margin-top: 24px;
  clear: both;
}

.detail_6_large div.h5_block {
  margin-top: 24px;
}

.detail_6_large h5 + div.h5_block,
.detail_6_large h5 + div.h5_block > h6:first-child,
.detail_6_large h5 + div.h5_block > div.h6_block:first-child,
.detail_6_large h5 + div.h5_block > p.subhead:first-child {
  margin-top: 12px;
}

.detail_6_large div.h5_block:after {
  content: "";
  display: block;
  clear: both;
}

.detail_6_large h6 {
  font-weight: normal;
  font-size: 13px;
  margin-top: 24px;
  clear: both;
}

.detail_6_large div.h6_block {
  margin-top: 12px;
}

.detail_6_large h6 + div.h6_block,
.detail_6_large h6 + div.h6_block > p.subhead:first-child {
  margin-top: 12px;
}

.detail_6_large div.h6_block:after {
  content: "";
  display: block;
  clear: both;
}

/*▼detail_7 2016-12-03*/
.detail_7 {
  font-size: 13px;
  line-height: 1.75;
}

.detail_7 *,
.detail_7 *:before,
.detail_7 *:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.detail_7 a {
  color: #0000B0;
}

.detail_7 a:hover {
  color: #246BCA;
}

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

.detail_7 video {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.detail_7 p.image_baseline img {
  vertical-align: baseline;
}

.detail_7 p.caption {
  margin-top: 6px;
  font-size: 12px;
  text-align: center;
}

.detail_7 p.caption_left {
  margin-top: 6px;
  font-size: 12px;
}

.detail_7 span.note {
  font-size: 11px;
}

.detail_7 span.caution {
  color: orangered;
}

.detail_7 span.caution:before {
  background: none;
  content: none;
}

.detail_7 h1 img {
  vertical-align: top;
}

.detail_7 h1.text {
  font-size: 16px;
  font-weight: normal;
  padding: 12px;
  background-color: #f6f6f6;
  border-left: 6px solid #333;
}

.detail_7 h1.text span {
  font-size: 18px;
  font-weight: bold;
  margin-right: 0.2em;
}

.detail_7 h2 {
  font-size: 14px;
  font-weight: normal;
  margin-top: 48px;
  background-color: #f6f6f6;
  padding: 5px 0 3px 9px;
  border-left: 6px solid #333;
  clear: both;
}

.detail_7 h2:before {
  background: none;
  content: none;
}

.detail_7 h2.warranty {
  border-color: #019bb9;
}

.detail_7 h2.caution {
  border-color: #ff8c00;
  color: #2F2F2F;
}

.detail_7 h2.campaign {
  background-color: gold;
  border-color: #e6b422;
}

.detail_7 h2 + h3,
.detail_7 h2 + h4,
.detail_7 h2 + h5,
.detail_7 h2 + h6,
.detail_7 h2 + p,
.detail_7 h2 + ul,
.detail_7 h2 + dl,
.detail_7 h2 + figure,
.detail_7 h2 + table,
.detail_7 h2 + div,
.detail_7 h2 + .h3b,
.detail_7 h2 + .h4b,
.detail_7 h2 + .h5b,
.detail_7 h2 + .h6b,
.detail_7 h2 + .h7b,
.detail_7 h2 + .h8b {
  margin-top: 24px;
}

.detail_7 h3 {
  font-size: 24px;
  font-weight: bold;
  transform: rotate(-0.001deg);
  margin-top: 42px;
  background: none;
  border: none;
  color: #000;
  clear: both;
}

.detail_7 h4 {
  font-size: 16px;
  font-weight: normal;
  color: #226;
  margin-top: 36px;
  border-bottom: 1px solid #ccc;
  background: -webkit-gradient(135deg, transparent 50%, #f6f6f6 50%);
  background: linear-gradient(135deg, transparent 50%, #f6f6f6 50%);
  background-size: 100% 12px;
  background-position: right bottom;
  background-repeat: no-repeat;
  clear: both;
}

.detail_7 h4 + h5,
.detail_7 h4 + h6,
.detail_7 h4 + p,
.detail_7 h4 + ul,
.detail_7 h4 + dl,
.detail_7 h4 + figure,
.detail_7 h4 + table,
.detail_7 h4 + div,
.detail_7 h4 + .h5b,
.detail_7 h4 + .h6b,
.detail_7 h4 + .h7b,
.detail_7 h4 + .h8b {
  margin-top: 24px;
}

.detail_7 h5 {
  margin: 24px 6px 0;
  padding: 5px 11px 3px;
  background-color: #dbe8ff;
  border: 1px solid #bbbcde;
  color: #000;
  border-radius: 3px;
  font-weight: normal;
  clear: both;
}

.detail_7 h5.h5 {
  font-weight: bold;
  font-size: 16px;
  color: #2F2F2F;
  border: none;
  border-bottom: 1px solid #ccc;
  background: none;
  padding: 0;
  margin-top: 24px;
}

.detail_7 h5.half {
  display: inline-block;
  min-width: 46.5%;
}

.detail_7 h5.azden {
  background: #fff;
  background: linear-gradient(to left bottom, #fff 0%, #fff 88%, red 90%, red 100%);
  color: #000;
  border: none;
  padding: 6px 12px 4px;
  font-weight: bold;
}

.detail_7 h5.ex {
  background: transparent;
  background: linear-gradient(to bottom, transparent 0%, transparent 88%, #66cccc 90%, #66cccc 100%);
  color: #000;
  border: none;
  padding: 6px 9px 4px;
  position: relative;
}

.detail_7 h5.ex::after {
  background: linear-gradient(to right bottom, transparent 0%, transparent 78%, #ccffff 80%, #66cccc 100%);
  position: absolute;
  content: "　";
  right: 0;
  width: 50%;
  z-index: -1;
}

.detail_7 h5.idx {
  background-color: #2c2a83;
  color: #fff;
  border: none;
  padding: 6px 12px 4px;
  display: inline-block;
  min-width: 370px;
}

.detail_7 h5.manfrotto {
  background-color: #bd0237;
  color: #fff;
  border: none;
  padding: 6px 12px 4px;
}

.detail_7 h5.lpl {
  background-color: #01367c;
  color: #fff;
  border: none;
  padding: 6px 12px 4px;
}

.detail_7 h5.canon {
  background-color: #c00;
  color: #fff;
  border: none;
  padding: 6px 12px 4px;
}

.detail_7 h5.canare {
  background-color: #faf81e;
  color: #000;
  border: none;
  padding: 6px 12px 4px;
}

.detail_7 h5.sony {
  background-color: #434343;
  color: #fff;
  border: none;
  padding: 6px 12px 4px;
}

.detail_7 h5.panasonic {
  background-color: #006ab0;
  color: #fff;
  border: none;
  padding: 6px 12px 4px;
}

.detail_7 h5.kenko {
  background-color: #1e93d1;
  color: #fff;
  border: none;
  padding: 6px 12px 4px;
}

.detail_7 h5.leader {
  background: none;
  color: #0488d0;
  border: none;
  padding: 0;
}

.detail_7 h5.leader:before {
  content: "■ ";
}

.detail_7 h5.leader + p,
.detail_7 h5.leader + ul {
  margin-top: 6px;
}

.detail_7 h5.libec {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 6px 12px 4px;
  border-radius: 0;
}

.detail_7 h5.matrox {
  background-color: #0065a4;
  color: #fff;
  border: none;
  padding: 6px 12px 4px;
}

.detail_7 h5.roland {
  background-color: #fff;
  color: #111;
  border: none;
  padding: 6px 6px 1px;
  border-radius: 0;
  border-bottom: 3px solid #eb6100;
  font-weight: bold;
}

.detail_7 h5 + h6,
.detail_7 h5 + p,
.detail_7 h5 + ul,
.detail_7 h5 + dl,
.detail_7 h5 + figure,
.detail_7 h5 + table,
.detail_7 h5 + div,
.detail_7 h5 + .h6b,
.detail_7 h5 + .h7b {
  margin-top: 18px;
}

.detail_7 .h5 + p {
  margin-top: 12px;
}

.detail_7 h6 {
  margin: 12px 6px 0;
  font-size: 13.5px;
  font-weight: bold;
  color: #444;
  transform: rotate(-0.001deg);
}

.detail_7 h6 + p,
.detail_7 h6 + ul,
.detail_7 h6 + dl,
.detail_7 h6 + figure,
.detail_7 h6 + table,
.detail_7 h6 + div,
.detail_7 h6 + .h7b,
.detail_7 h6 + .h8b {
  margin-top: 0;
}

.detail_7 h6.red {
  font-size: 13px;
  color: #e60039;
}

.detail_7 h6.caution {
  color: #ff8c00;
}

.detail_7 h6.caution:before {
  top: 1px;
}

.detail_7 hr.h2l {
  margin-top: 48px;
  margin-bottom: 0;
  height: 12px;
  border: 0;
  background-color: #fff;
  box-shadow: 0 -10px 10px -10px #aaa inset;
}

.detail_7 hr.h2l + h2 {
  margin-top: 0;
}

.detail_7 hr.h6l {
  margin-top: 18px;
  margin-bottom: 18px;
}

.detail_7 p {
  margin: 12px 6px 0;
}

.detail_7 p.h1_text {
  margin: 0;
  padding: 14px 12px 12px;
  background-color: #f6f6f6;
  border-left: 6px solid #333;
}

.detail_7 h1.text + p.h1_text {
  margin-top: -12px;
  padding: 0 12px 12px;
  background-color: #f6f6f6;
  border-left: 6px solid #333;
}

.detail_7 p.top_text {
  margin: 12px 0 0;
  padding: 12px 17px 10px;
  border: 1px solid #eee;
}

.detail_7 p.mark_big-bold,
.detail_7 span.mark_big-bold {
  font-weight: bold;
  color: #444;
  font-size: 16px;
  transform: rotate(-0.001deg);
}

.detail_7 p.mark_bold,
.detail_7 span.mark_bold {
  font-weight: bold;
  color: #444;
  transform: rotate(-0.001deg);
}

.detail_7 p.mark_big,
.detail_7 span.mark_big {
  font-size: 16px;
}

.detail_7 p.mark_small-bold,
.detail_7 span.mark_small-bold {
  font-weight: bold;
  color: #444;
  font-size: 12px;
  transform: rotate(-0.001deg);
}

.detail_7 p.center {
  text-align: center;
}

.detail_7 figure {
  margin: 12px 6px 0;
  display: table;
  max-width: 100%;
}

.detail_7 figure figcaption {
  margin-top: 6px;
  font-size: 12px;
  text-align: center;
}

.detail_7 ul {
  margin: 12px 6px 0;
}

.detail_7 ul ul {
  margin: 0;
}

.detail_7 ul li {
  list-style: none;
  margin-bottom: 0;
  padding-left: 18px;
  text-indent: -18px;
}

.detail_7 ul li:before {
  content: "・";
  display: inline-block;
  padding-left: 18px;
}

.detail_7 ul.small li {
  font-size: 12px;
}

.detail_7 ul.nomark li:before {
  content: "";
  padding-left: 0;
}

.detail_7 ul.note li {
  font-size: 11px;
}

.detail_7 ul.note li:before {
  content: "";
  padding-left: 0;
}

.detail_7 ul li.caution {
  color: orangered;
}

.detail_7 ul li.caution:before {
  background: none;
  width: 0;
  height: 0;
}

.detail_7 ul.ext li:before {
  display: inline-block;
  content: " ";
  height: 0;
  width: 0;
  border: 0.4em solid transparent;
  border-left-color: #999;
  margin-left: 0.4em;
  margin-right: 0.4em;
  padding-left: 0;
}

.detail_7 ul.ext li a:after {
  content: "";
  background: url("/html/user_data/img/icon/external-link-green03-Shapes4FREE.gif") no-repeat right center;
  padding-right: 18px;
}

.detail_7 ul li.pdf a:after {
  content: "";
  background: url("/html/user_data/img/icon/pdfico.gif") no-repeat right center;
  padding-right: 18px;
}

.detail_7 ul.option {
  font-size: 0;
}

.detail_7 ul.option li {
  display: inline-block;
  box-sizing: border-box;
  width: 254px;
  margin-right: 3px;
  margin-top: 3px;
  border: 1px solid #eee;
  vertical-align: top;
  padding: 6px;
  text-indent: 0;
}

.detail_7 ul.op_col4 li {
  width: 190px;
  margin-right: 2px;
}

.detail_7 ul.option li:nth-child(-n+3) {
  margin-top: 0;
}

.detail_7 ul.option li:nth-child(3n) {
  margin-right: 0;
}

.detail_7 ul.option li:before {
  content: none;
  margin-right: 0;
}

.detail_7 ul.option li a {
  display: inline-block;
  width: 100%;
}

.detail_7 ul.option li > a {
  text-decoration: none;
}

.detail_7 ul.option li > a:hover {
  text-decoration: underline;
}

.detail_7 ul.option li p.image {
  float: left;
  margin: 0 10px 0 0;
  line-height: 0;
}

.detail_7 ul.option li p.image img {
  width: 80px;
}

.detail_7 ul.option li p {
  font-size: 10.5px;
  line-height: 1.6;
  margin-top: 0;
}

.detail_7 ul.option li p.name1 {
  margin-top: 4px;
}

.detail_7 ul.option li p.price {
  margin-top: 8px;
}

.detail_7 ul.option li p.note {
  clear: both;
  font-size: 10.5px;
  margin-top: 6px;
  border-top: 1px solid #eee;
  padding-top: 8px;
}

.detail_7 ul.rab {
  font-size: 0;
}

.detail_7 ul.rab li:before {
  content: none;
  margin-right: 0;
}

.detail_7 ul.rab li {
  box-sizing: border-box;
  width: 256px;
  border: 1px solid #ddd;
  font-size: 11px;
  display: inline-block;
  margin-top: 12px;
  padding: 0;
  vertical-align: top;
  text-indent: 0;
}

.detail_7 ul.rab li:nth-child(-n+3) {
  margin-top: 0;
}

.detail_7 ul.rab p.image {
  border-bottom: 1px solid #ddd;
  margin: 0;
  padding: 7px;
  line-height: 0;
  text-align: center;
}

.detail_7 ul.rab p.image img {
  max-width: 240px;
}

.detail_7 ul.rab p.name {
  margin: 0;
  padding: 2px 7px 0;
  background-color: #eee;
}

.detail_7 ul.rab p.note {
  border-top: 1px solid #ddd;
  margin: 0;
  padding: 2px 7px 0;
}

.detail_7 dl {
  margin: 12px 6px 0;
}

.detail_7 dl.spec-bmd dt:first-child {
  margin-top: 0;
}

.detail_7 dl.spec-bmd dt:not(:first-child) {
  border-top: 1px solid #ddd;
  padding-top: 12px;
  margin-top: 12px;
}

.detail_7 dl.spec-bmd dd {
  margin-top: 3px;
  font-size: 11px;
}

.detail_7 table {
  margin: 12px 0.8% 0;
  width: 98.4%;
}

.detail_7 table.w50 {
  width: 50%;
}

.detail_7 table.w60 {
  width: 60%;
}

.detail_7 table.w70 {
  width: 70%;
}

.detail_7 table th,
.detail_7 table td {
  font-weight: normal;
  border: none;
}

.detail_7 table th.w05,
.detail_7 table td.w05,
.detail_7 div.cel .w05 {
  width: 5%;
}

.detail_7 table th.w10,
.detail_7 table td.w10,
.detail_7 div.cel .w10 {
  width: 10%;
}

.detail_7 table th.w15,
.detail_7 table td.w15,
.detail_7 div.cel .w15 {
  width: 15%;
}

.detail_7 table th.w20,
.detail_7 table td.w20,
.detail_7 div.cel .w20 {
  width: 20%;
}

.detail_7 table th.w25,
.detail_7 table td.w25,
.detail_7 div.cel .w25 {
  width: 25%;
}

.detail_7 table th.w30,
.detail_7 table td.w30,
.detail_7 div.cel .w30 {
  width: 30%;
}

.detail_7 table th.w35,
.detail_7 table td.w35,
.detail_7 div.cel .w35 {
  width: 35%;
}

.detail_7 table th.w40,
.detail_7 table td.w40,
.detail_7 div.tbl .w40 {
  width: 40%;
}

.detail_7 table th.w45,
.detail_7 table td.w45,
.detail_7 div.tbl .w45 {
  width: 45%;
}

.detail_7 table th.w50,
.detail_7 table td.w50,
.detail_7 div.tbl .w50 {
  width: 50%;
}

.detail_7 table.spec hr {
  margin: 4px 0 6px;
  background: #eee;
}

.detail_7 table.spec th,
.detail_7 table.spec td {
  padding: 6px 8px 4px;
  border: 1px solid #e6e6e6;
  font-size: 11px;
  line-height: 1.75;
}

.detail_7 table.spec th {
  background-color: #f6f6f6;
}

.detail_7 table.spec ul {
  margin: 0;
}

.detail_7 table.center th,
.detail_7 table.center td {
  text-align: center;
}

.detail_7 table th.mark,
.detail_7 table td.mark {
  color: orangered;
}

.detail_7 table th.deep,
.detail_7 table td.deep {
  background-color: #eee;
}

.detail_7 table th.head1 {
  background-color: #999;
  color: #fff;
  border-color: #999;
}

.detail_7 table tr.row_now td {
  background-color: #e6f9ff;
}

.detail_7 table td.data_now {
  background-color: #e6f9ff;
}

.detail_7 *.h2b {
  margin-top: 48px;
}

.detail_7 *.h3b {
  margin-top: 42px;
}

.detail_7 *.h4b {
  margin-top: 36px;
}

.detail_7 *.h5b {
  margin-top: 24px;
}

.detail_7 *.h6b {
  margin-top: 18px;
}

.detail_7 *.h7b {
  margin-top: 12px;
}

.detail_7 *.h8b {
  margin-top: 6px;
}

.detail_7 div[class^=box] > *:first-child {
  margin-top: 0;
}

.detail_7 div.box {
  border: 1px solid #bbb;
  border-radius: 5px;
  background-color: #fcfcfc;
  padding: 12px 11px 10px;
}

.detail_7 p.box {
  border: 1px solid #bbb;
  border-radius: 5px;
  background-color: #fcfcfc;
  padding: 12px 17px 10px;
  margin-left: 0;
  margin-right: 0;
}

.detail_7 div.box_caution {
  border-radius: 5px;
  background-color: #ffffcc;
  padding: 10px 9px 8px;
  border: 3px double #ffee00;
}

.detail_7 p.box_caution {
  border-radius: 5px;
  background-color: #ffffcc;
  padding: 13px 18px 11px;
  margin-left: 0;
  margin-right: 0;
}

.detail_7 div.box_important {
  border-radius: 5px;
  background-color: #fee;
  padding: 10px 9px 8px;
  border: 3px double red;
}

.detail_7 div.box_important_flat {
  border-radius: 5px;
  background-color: #f55;
  color: #fff;
  padding: 13px 12px 11px;
}

.detail_7 div.box_border {
  border: 1px solid #bbb;
  border-radius: 5px;
  padding: 12px 11px 10px;
}

.detail_7 div.box_campaign {
  padding: 13px 12px 11px;
  border: 3px solid #b79d46;
}

.detail_7 div.box_zeiss {
  border-radius: 5px;
  background-color: #008bd2;
  color: #fff;
  padding: 13px 12px 11px;
}

.detail_7 p.box_ex {
  padding: 48px 0;
  line-height: 3em;
  text-align: center;
}

.detail_7 div.tbl {
  display: table;
  width: 100%;
}

.detail_7 div.cel {
  display: table-cell;
  vertical-align: middle;
}

.detail_7 div.tbl div.top {
  vertical-align: top;
}

.detail_7 div.cel > *:first-child {
  margin-top: 0;
}

.detail_7 div.col2 {
  float: left;
  width: 49%;
  margin-right: 2%;
}

.detail_7 div.col2 table {
  margin-left: 1.6%;
  margin-right: 1.6%;
  width: 96.8%;
}

.detail_7 div.col3 {
  float: left;
  width: 32%;
  margin-right: 2%;
}

.detail_7 div.col3 table {
  margin: 12px 2.4% 0;
  width: 95.2%;
}

.detail_7 div.col4 {
  float: left;
  width: 23.5%;
  margin-right: 2%;
}

.detail_7 div.col5 {
  float: left;
  width: 18.4%;
  margin-right: 2%;
}

.detail_7 div.col6 {
  float: left;
  width: 15%;
  margin-right: 2%;
}

.detail_7 div.col2:nth-child(-n+2) > *:first-child,
.detail_7 div.col3:nth-child(-n+3) > *:first-child,
.detail_7 div.col4:nth-child(-n+4) > *:first-child,
.detail_7 div.col5:nth-child(-n+5) > *:first-child,
.detail_7 div.col6:nth-child(-n+6) > *:first-child {
  margin-top: 0;
}

.detail_7 div > div.col2:nth-child(2n),
.detail_7 div > div.col3:nth-child(3n),
.detail_7 div > div.col4:nth-child(4n),
.detail_7 div > div.col5:nth-child(5n),
.detail_7 div > div.col6:nth-child(6n) {
  margin-right: 0;
}

.detail_7 div.w34 {
  width: 34%;
}

.detail_7 div.w64 {
  width: 64%;
}

.detail_7 div.w30 {
  width: 30%;
}

.detail_7 div.w68 {
  width: 68%;
}

.detail_7 div.block_table {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.detail_7 .block_col_cell {
  display: table-cell;
  vertical-align: middle;
}

.detail_7 div.block_table > .block_col_cell:first-child {
  padding-right: 12px;
}

.detail_7 div.block_table > .block_col_cell:last-child {
  padding-left: 12px;
}

.detail_7 .block_col_cell > *:first-child {
  margin-top: 0;
}

.detail_7 div.col_image_left {
  float: left;
  margin-right: 4%;
}

.detail_7 div.col_image_right {
  float: right;
  margin-left: 4%;
}

.detail_7 div.col_image_left *:first-child,
.detail_7 div.col_image_right *:first-child,
.detail_7 div.col_text *:first-child {
  margin-top: 0;
}

.detail_7 div.col_image_left + *,
.detail_7 div.col_image_right + * {
  margin-top: 0;
}

.detail_7 div.col_image_left + .mtop,
.detail_7 div.col_image_right + .mtop {
  margin-top: 18px;
}

.detail_7 div.col_text {
  overflow: auto;
}

.detail_7 div.col_image_left + div.col_text * {
  margin-left: 0;
}

.detail_7 div.col_image_right + div.col_text * {
  margin-right: 0;
}

.detail_7 div.bgimage {
  position: relative;
}

.detail_7 div.bgimage p.image {
  margin: 0;
}

.detail_7 div.bgimage div.content_black {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 12px 17px 10px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ddd;
}

.detail_7 div.bgimage div.content_white {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 12px 17px 10px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #222;
}

.detail_7 .table_outer {
  margin: 24px 6px;
}

.detail_7 .table_outer table {
  margin: 0;
  width: 100%;
}

.detail_7 .col2 .table_outer table {
  margin: 0;
  width: 100%;
}

.detail_7 #modal-content {
  width: 80%;
  max-height: 75%;
  overflow: scroll;
  padding: 24px;
  border: 2px solid #aaa;
  background: #fff;
  z-index: 2;
  position: fixed;
  right: 0;
  height: auto;
}

.detail_7 #modal-content > h2:first-child {
  margin-top: 0;
}

.detail_7 #modal-overlay {
  z-index: 1;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.5);
}

.detail_7 .outer_image {
  margin: 24px 6px;
  text-align: center;
}

/*▼detail_8 2018-06-04*/
.detail_8 * {
  box-sizing: border-box;
}

.detail_8 p,
.detail_8 ul,
.detail_8 dl {
  margin-bottom: 12px;
}

.detail_8 table {
  margin-bottom: 12px;
}

.detail_8 li {
  list-style: none;
  *list-style: circle;
}

.detail_8 img {
  max-width: 100%;
  height: auto;
}

.detail_8 .outer_image {
  margin: 24px 0;
}

.detail_8 .image {
  text-align: center;
  margin: 0 6px 12px;
  position: relative;
}

.detail_8 .image_left {
  margin: 0 6px 12px;
}

.detail_8 video {
  max-width: 100%;
  height: auto;
}

.detail_8 .outer_movie {
  margin: 24px 0;
}

.detail_8 .movie {
  text-align: center;
  margin: 0 6px 12px;
}

.detail_8 .caption {
  text-align: center;
  font-size: 11px;
  padding: 2px 6px 0px;
}

.detail_8 .caption_left {
  font-size: 11px;
  padding: 2px 6px 0px;
}

.detail_8 .caption_right {
  text-align: right;
  font-size: 11px;
  padding: 2px 6px 0px;
}

.detail_8 .image + .caption,
.detail_8 .image + .caption_left,
.detail_8 .image + .caption_right,
.detail_8 .image_left + .captiont,
.detail_8 .image_left + .captiont_left,
.detail_8 .image_left + .captiont_right {
  margin-top: -6px;
}

.detail_8 .caption_title {
  text-align: center;
  font-size: 11px;
  padding: 2px 6px 0px;
  background-color: #f6f6f6;
}

.detail_8 .image + .caption_title {
  margin-top: -6px;
}

.detail_8 .caption_note {
  font-size: 11px;
  padding: 6px 6px 4px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.detail_8 .caption_title + .caption_note {
  margin-top: -12px;
}

.detail_8 .note {
  font-size: 11px;
}

.detail_8 .image .cboxElement::after,
.detail_8 .image_left .cboxElement::after {
  content: url("../img/product/zoom.png");
  position: absolute;
  top: -7px;
  left: -7px;
}

.detail_8 .title_image {
  margin: 0 0 12px;
}

.detail_8 .title_image + .highlight {
  margin-top: -12px;
}

.detail_8 .description_image {
  margin: 0 0 12px;
}

.detail_8 .h3_text {
  margin-bottom: 24px;
}

.detail_8 .h3_band.caution {
  border-left: 6px solid orange;
}

.detail_8 .h3_border {
  font-size: 18px;
  margin: 48px 0 24px;
  text-decoration: underline;
}

.open_relate .detail_8:first-child .h3_band:first-child,
.open_relate .detail_8:first-child .h3_border:first-child {
  margin-top: 0;
}

.detail_8 .head_large {
  margin: 48px 0 24px;
}

.detail_8 .head_middle {
  margin: 36px 0 24px;
}

.detail_8 .head_small {
  margin: 24px 0 24px;
}

.detail_8 .h3_band + .head_large,
.detail_8 .h3_band + .head_middle,
.detail_8 .h3_band + .outer_large,
.detail_8 .h3_band + .outer_middle,
.detail_8 .head_large + .head_large,
.detail_8 .head_large + .head_middle,
.detail_8 .head_large + .outer_large,
.detail_8 .head_large + .outer_middle,
.detail_8 .head_middle + .head_middle,
.detail_8 .head_middle + .outer_middle {
  margin-top: 24px;
}

.detail_8 .text {
  padding-left: 6px;
  margin-bottom: 12px;
}

.detail_8 .text + .outer_image,
.detail_8 .text + .outer_movie,
.detail_8 .text + .outer_table,
.detail_8 .text + .outer_col {
  margin-top: 12px;
}

.detail_8 .head_large.text {
  font-weight: bold;
  font-size: 21px;
}

.detail_8 .head_middle.text {
  font-weight: bold;
  font-size: 16px;
}

.detail_8 .head_small.text {
  font-weight: bold;
  font-size: 14px;
}

.detail_8 .border {
  padding-bottom: 0.3em;
  color: #226;
  border: none !important;
  border-bottom: 1px solid #ccc !important;
}

.detail_8 .head_large.border {
  font-size: 18px;
  background-size: 100% 4px;
  line-height: 1.6;
}

.detail_8 .head_middle.border {
  font-size: 18px;
  font-weight: 500;
}

.detail_8 .head_small.border {
  font-size: 13px;
  max-width: 378px;
}

.detail_8 .band {
  font-weight: normal;
  background-color: #222;
  color: #fff;
  border-radius: 3px;
  margin-bottom: 18px;
}

.detail_8 .band + .outer_image,
.detail_8 .band + .outer_movie,
.detail_8 .band + .outer_table,
.detail_8 .band + .outer_col {
  margin-top: 18px;
}

.detail_8 .head_large.band {
  font-size: 14px;
  padding: 7px 12px 4px;
}

.detail_8 .head_middle.band {
  font-size: 13px;
  padding: 5px 12px 3px;
  max-width: 560px;
}

.detail_8 .head_small.band {
  font-size: 12px;
  padding: 5px 12px 3px;
  max-width: 378px;
}

.detail_8 .border.azden {
  background: #fff;
  background: linear-gradient(to left bottom, #fff 0%, #fff 90%, red 92%, red 100%);
  color: #000;
  border: none;
  font-weight: bold;
  padding: 5px 12px 4px 12px;
  margin-bottom: 18px;
}

.detail_8 .band.canon {
  font-weight: normal;
  background-color: #b00;
  color: #fff;
  border-radius: 3px;
}

.detail_8 .border.canon {
  color: #600;
  border-bottom: 1px solid #b00;
  /* background: linear-gradient(135deg, transparent 49%, #b00 50%);
  background-size: 100% 2px;
  background-position: right bottom;
  background-repeat: no-repeat; */
}

.detail_8 .border.ex {
  color: #000;
  border-bottom: 3px solid #6cc;
  font-weight: bold;
  line-height: 1.8;
}

.detail_8 .band.idx {
  font-weight: normal;
  background-color: #313b94;
  color: #fff;
  border-radius: 3px;
}

.detail_8 .band.kenko {
  font-weight: normal;
  background-color: #1e93d1;
  color: #fff;
  border-radius: 3px;
}

.detail_8 .band.lpl {
  font-weight: normal;
  background-color: #01367c;
  color: #fff;
  border-radius: 3px;
}

.detail_8 .band.manfrotto {
  font-weight: normal;
  background-color: #bd0237;
  color: #fff;
  border-radius: 3px;
}

.detail_8 .band.mediaedge {
  font-weight: normal;
  background-color: #005bbb;
  color: #fff;
  border-radius: 3px;
}

.detail_8 .border.panasonic {
  border-bottom: 1px solid #00b;
  background: linear-gradient(135deg, transparent 49%, #006ab0 50%);
  background-size: 100% 2px;
  background-position: right bottom;
  background-repeat: no-repeat;
}

.detail_8 .band.panasonic {
  font-weight: normal;
  background-color: #006ab0;
  color: #fff;
  border-radius: 3px;
}

.detail_8 .border.roland {
  font-weight: bold;
  color: #111;
  border-bottom: 3px solid #eb6100;
}

.detail_8 .border.sachtler {
  border-bottom: 1px solid #ea1827;
  background: linear-gradient(135deg, transparent 49%, #ea1827 50%);
  background-size: 100% 2px;
  background-position: right bottom;
  background-repeat: no-repeat;
}

.detail_8 .band.sachtler {
  font-weight: normal;
  background-color: #ea1827;
  color: #fff;
  border-radius: 3px;
}

.detail_8 .band.suntech {
  font-weight: normal;
  background-color: #1595c1;
  color: #fff;
  border-radius: 3px;
}

.detail_8 .border.vinten {
  border-bottom: 1px solid #10a3dd;
  background: linear-gradient(135deg, transparent 49%, #006ab0 50%);
  background-size: 100% 2px;
  background-position: right bottom;
  background-repeat: no-repeat;
}

.detail_8 .band.vinten {
  font-weight: normal;
  background-color: #10a3dd;
  color: #fff;
  border-radius: 3px;
}

.detail_8 .p_large {
  font-size: 18px;
}

.detail_8 .p_middle {
  font-size: 16px;
}

.detail_8 .hr_border {
  margin: 48px;
  border-top: 1px solid #eee;
}

.detail_8 .ul .ul {
  margin-bottom: 0;
}

.detail_8 .li,
.detail_8 .li_gap,
.detail_8 .li_ext,
.detail_8 .li_ext_gap,
.detail_8 .li_pdf {
  position: relative;
  padding-left: 18px;
  *padding-left: 0;
  *margin-left: 18px;
}

.detail_8 .li_any,
.detail_8 .li_any_gap {
  position: relative;
  padding-left: 18px;
  *padding-left: 0;
  *margin-left: 18px;
}

.detail_8 .li_note,
.detail_8 .li_note_gap {
  position: relative;
  padding-left: 22px;
  *padding-left: 0;
  *margin-left: 22px;
  font-size: 11px;
}

.detail_8 .li_gap,
.detail_8 .li_ext_gap,
.detail_8 .li_any_gap,
.detail_8 .li_note_gap {
  margin-bottom: 12px;
}

.detail_8 .li_gap .ul,
.detail_8 .li_ext_gap .ul,
.detail_8 .li_any_gap .ul,
.detail_8 .li_note_gap .ul {
  margin-top: 6px;
}

.detail_8 .li::before,
.detail_8 .li_gap::before {
  position: absolute;
  display: block;
  content: "・";
  left: -2px;
}

.detail_8 .li_ext::before,
.detail_8 .li_ext_gap::before,
.detail_8 .li_pdf::before {
  position: absolute;
  display: block;
  content: " ";
  border: 0.4em solid transparent;
  border-left-color: #999;
  left: 2px;
  top: 0.4em;
}

.detail_8 .li_ext a::after,
.detail_8 .li_ext_gap a::after {
  content: "";
  background: url("/html/user_data/img/icon/external-link-green03-Shapes4FREE.gif") no-repeat right center;
  padding-right: 18px;
}

.detail_8 .li_pdf a::after {
  content: "";
  background: url("/html/user_data/img/icon/pdfico.gif") no-repeat right center;
  padding-right: 18px;
}

.detail_8 .li_note::before,
.detail_8 .li_note_gap::before {
  position: absolute;
  display: block;
  content: attr(data-list);
  left: 0;
}

.detail_8 .li_any::before,
.detail_8 .li_any_gap::before {
  position: absolute;
  display: block;
  content: attr(data-list);
  left: -2px;
  top: 3px;
}

.detail_8 .li_border {
  padding: 0 18px 2px;
  border-bottom: 1px solid #eee;
  margin-bottom: 12px;
}

.detail_8 .outer_table {
  margin: 24px 0;
}
@media screen and (max-width: 767px) {
  .detail_8 .outer_table {
    width: calc(100% + var(--mg-sp));
    overflow-x: scroll;
  }
}

.detail_8 .table,
.detail_8 .table_center,
.detail_8 .table_top {
  width: calc(100% - 12px);
  border: 1px solid #e6e6e6;
}

.detail_8 .table_top {
  table-layout: fixed;
}

.detail_8 .table th,
.detail_8 .table td,
.detail_8 .table_center th,
.detail_8 .table_center td,
.detail_8 .table_top th,
.detail_8 .table_top td {
  font-size: 11px;
  padding: 6px 10px 4px;
}

.detail_8 .table.table_narrow th,
.detail_8 .table.table_narrow td,
.detail_8 .table_center.table_narrow th,
.detail_8 .table_center.table_narrow td {
  padding: 3px 10px 1px;
}

.detail_8 .table_center th,
.detail_8 .table_center td {
  text-align: center;
}

.detail_8 .table_top th,
.detail_8 .table_top td {
  vertical-align: top;
}

.detail_8 .table th,
.detail_8 .table_center th,
.detail_8 .table_top th {
  background: #f6f6f6;
  border: 1px solid #e6e6e6;
  font-weight: normal;
}

.detail_8 .table td,
.detail_8 .table_center td,
.detail_8 .table_top td {
  border: 1px solid #e6e6e6;
  background: #fff;
}

.detail_8 .table td > *,
.detail_8 .table_center td > *,
.detail_8 .table_top td > * {
  margin-left: 0;
  margin-right: 0;
}

.detail_8 .table tr.tr_now td,
.detail_8 .table td.data_now,
.detail_8 .table_center tr.tr_now td,
.detail_8 .table_top tr.tr_now td {
  background-color: #e6f9ff;
}

.detail_8 .table td.data_none {
  background-color: #eee;
}

.detail_8 .table hr,
.detail_8 .table_center hr,
.detail_8 .table_top hr {
  border-top: 1px solid #eee;
  margin: 4px 0 6px;
}

.detail_8 .table ul,
.detail_8 .table_center ul,
.detail_8 .table_top ul {
  margin: 0;
}

.detail_8 .table .deep,
.detail_8 .table_center .deep {
  background-color: #ececec;
  border-color: #dcdcdc;
  font-size: 12px;
}

.detail_8 .outer_col {
  letter-spacing: -0.4em;
  margin: 24px 0;
}

.detail_8 .outer_col .col2:nth-child(n+3),
.detail_8 .outer_col .col2_middle:nth-child(n+3),
.detail_8 .outer_col .col3:nth-child(n+4),
.detail_8 .outer_col .col4:nth-child(n+5),
.detail_8 .outer_col .col5:nth-child(n+6),
.detail_8 .outer_col .col6:nth-child(n+7) {
  margin-top: 24px;
}

.detail_8 .outer_col .col2:nth-child(n+3).outer_head_middle,
.detail_8 .outer_col .col2_middle:nth-child(n+3).outer_head_middle,
.detail_8 .outer_col .col3:nth-child(n+4).outer_head_middle,
.detail_8 .outer_col .col4:nth-child(n+5).outer_head_middle,
.detail_8 .outer_col .col5:nth-child(n+6).outer_head_middle,
.detail_8 .outer_col .col6:nth-child(n+7).outer_head_middle {
  margin-top: 36px;
}

.detail_8 .outer_col .col2:nth-child(n+3).outer_head_large,
.detail_8 .outer_col .col2_middle:nth-child(n+3).outer_head_large,
.detail_8 .outer_col .col3:nth-child(n+4).outer_head_large,
.detail_8 .outer_col .col4:nth-child(n+5).outer_head_large,
.detail_8 .outer_col .col5:nth-child(n+6).outer_head_large,
.detail_8 .outer_col .col6:nth-child(n+7).outer_head_large {
  margin-top: 48px;
}

.detail_8 .col2,
.detail_8 .col2_middle,
.detail_8 .col3,
.detail_8 .col4,
.detail_8 .col5,
.detail_8 .col6 {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: top;
  letter-spacing: normal;
}

.detail_8 .col2_middle {
  vertical-align: middle;
}

.detail_8 .col2,
.detail_8 .col2_middle {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .detail_8 .col2,
  .detail_8 .col2_middle {
    width: 100%;
    margin-bottom: 10px;
  }
}

.detail_8 .col3 {
  width: 33.3%;
  width: 33.3333333333%;
}

.detail_8 .col4 {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .detail_8 .col4 {
    width: 50%;
  }
}

.detail_8 .col5 {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .detail_8 .col5 {
    width: 50%;
  }
}

.detail_8 .col6 {
  width: 16.6%;
  width: 16.6666666667%;
}
@media screen and (max-width: 767px) {
  .detail_8 .col6 {
    width: 33.3333333333%;
  }
}

.detail_8 .col2 *:first-child,
.detail_8 .col2_middle *:first-child,
.detail_8 .col3 *:first-child,
.detail_8 .col4 *:first-child,
.detail_8 .col5 *:first-child,
.detail_8 .col6 *:first-child {
  margin-top: 0;
}

.detail_8 .col2 *:last-child,
.detail_8 .col2_middle *:last-child,
.detail_8 .col3 *:last-child,
.detail_8 .col4 *:last-child,
.detail_8 .col5 *:last-child,
.detail_8 .col6 *:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .detail_8 .outer_col .col2:nth-child(2n+1),
  .detail_8 .outer_col .col2_middle:nth-child(2n+1) {
    padding-right: 6px;
  }
}

@media screen and (min-width: 768px) {
  .detail_8 .outer_col .col2:nth-child(2n),
  .detail_8 .outer_col .col2_middle:nth-child(2n) {
    padding-left: 6px;
  }
}

.detail_8 .outer_col .col3:nth-child(3n+1) {
  padding-right: 6px;
}

.detail_8 .outer_col .col3:nth-child(3n+2) {
  padding-right: 3px;
  padding-left: 3px;
}

.detail_8 .outer_col .col3:nth-child(3n) {
  padding-left: 6px;
}

.detail_8 .outer_col .col4:nth-child(4n+1) {
  padding-right: 6px;
}

.detail_8 .outer_col .col4:nth-child(4n+2) {
  padding-right: 4px;
  padding-left: 2px;
}

.detail_8 .outer_col .col4:nth-child(4n+3) {
  padding-right: 2px;
  padding-left: 4px;
}

.detail_8 .outer_col .col4:nth-child(4n) {
  padding-left: 6px;
}

.detail_8 .outer_col .col5:nth-child(5n+1) {
  padding-right: 4px;
}

.detail_8 .outer_col .col5:nth-child(5n+2) {
  padding-right: 3px;
  padding-left: 1px;
}

.detail_8 .outer_col .col5:nth-child(5n+3) {
  padding-right: 2px;
  padding-left: 2px;
}

.detail_8 .outer_col .col5:nth-child(5n+4) {
  padding-right: 1px;
  padding-left: 3px;
}

.detail_8 .outer_col .col5:nth-child(5n) {
  padding-left: 4px;
}

.detail_8 .col_ul_center {
  text-align: center;
}

.detail_8 .col_ul_center .ul {
  text-align: left;
  display: inline-block;
}

.detail_8 .box_border {
  padding: 16px 12px 14px;
  border: 1px solid #bbb;
  border-radius: 5px;
  background-color: #fcfcfc;
  margin: 24px 0;
}

.detail_8 .box_boldborder {
  padding: 12px 6px;
  border: 6px solid #eee;
  margin: 24px 0;
}

.detail_8 .box_modal {
  background-color: #fff;
  padding: 24px;
  border: 2px solid #ccc;
}

.detail_8 .box_border *:first-child,
.detail_8 .box_boldborder *:first-child,
.detail_8 .box_modal *:first-child {
  margin-top: 0;
}

.detail_8 .box_border *:last-child,
.detail_8 .box_boldborder *:last-child,
.detail_8 .box_modal *:last-child {
  margin-bottom: 0;
}

.detail_8 .box_ex {
  padding: 48px 0;
  line-height: 3em;
  text-align: center;
}

.detail_8 .outer_large {
  margin: 48px 0;
}

.detail_8 .outer_middle {
  margin: 36px 0;
}

.detail_8 .outer_small {
  margin: 24px 0;
}

.detail_8 .margin_large {
  margin-top: 48px;
}

.detail_8 .margin_middle {
  margin-top: 36px;
}

.detail_8 .margin_small {
  margin-top: 24px;
}

.detail_8 .wd_fix {
  table-layout: fixed;
}

.detail_8 .wd_10 {
  width: 10%;
}

.detail_8 .wd_15 {
  width: 15%;
}

.detail_8 .wd_20 {
  width: 20%;
}

.detail_8 .wd_25 {
  width: 25%;
}

.detail_8 .wd_30 {
  width: 30%;
}

.detail_8 .wd_33 {
  width: 33.3%;
  width: 33.3333333333%;
}

.detail_8 .wd_35 {
  width: 35%;
}

.detail_8 .wd_40 {
  width: 40%;
}

.detail_8 .wd_45 {
  width: 45%;
}

.detail_8 .wd_50 {
  width: 50%;
}

.detail_8 .wd_60 {
  width: 60%;
}

.detail_8 .wd_66 {
  width: 66.6%;
  width: 66.6666666667%;
}

.detail_8 .wd_70 {
  width: 70%;
}

.detail_8 .wd_75 {
  width: 75%;
}

.detail_8 .wd_80 {
  width: 80%;
}

@media screen and (max-width: 767px) {
  .detail_8 .wd_10,
  .detail_8 .wd_15,
  .detail_8 .wd_20,
  .detail_8 .wd_25,
  .detail_8 .wd_30,
  .detail_8 .wd_35,
  .detail_8 .wd_40,
  .detail_8 .wd_45,
  .detail_8 .wd_50,
  .detail_8 .wd_60,
  .detail_8 .wd_70,
  .detail_8 .wd_75,
  .detail_8 .wd_80 {
    width: 100%;
    margin-bottom: 10px;
  }
  .detail_8 .table .wd_10 {
    width: 10%;
  }
  .detail_8 .table .wd_15 {
    width: 15%;
  }
  .detail_8 .table .wd_20 {
    width: 20%;
  }
  .detail_8 .table .wd_25 {
    width: 25%;
  }
  .detail_8 .table .wd_30 {
    width: 30%;
  }
  .detail_8 .table .wd_33 {
    width: 33.3%;
    width: 33.3333333333%;
  }
  .detail_8 .table .wd_35 {
    width: 35%;
  }
  .detail_8 .table .wd_40 {
    width: 40%;
  }
  .detail_8 .table .wd_45 {
    width: 45%;
  }
  .detail_8 .table .wd_50 {
    width: 50%;
  }
  .detail_8 .table .wd_60 {
    width: 60%;
  }
  .detail_8 .table .wd_66 {
    width: 66.6%;
    width: 66.6666666667%;
  }
  .detail_8 .table .wd_70 {
    width: 70%;
  }
  .detail_8 .table .wd_75 {
    width: 75%;
  }
  .detail_8 .table .wd_80 {
    width: 80%;
  }
}
.detail_8 .tc_caution {
  color: orangered;
}

@media screen and (max-width: 767px) {
  .outer_col.-spCol1 > * {
    width: 100% !important;
    margin-bottom: 10px !important;
  }
}

/* ========================================
お買い物ガイド p-guide
======================================== */
@media screen and (max-width: 767px) {
  .p-guide {
    padding-bottom: 50px;
  }
}

.p-guideList {
  border-top: 4px solid var(--color-text-emp);
  margin-top: 57px;
}
@media screen and (max-width: 767px) {
  .p-guideList {
    width: calc(100% + var(--mg-sp) * 2);
    margin-left: calc(-1 * var(--mg-sp));
    margin-top: 0;
    border-width: 2px;
    border-color: var(--color-boder03);
  }
}
.p-guideList > li {
  border-bottom: 2px solid var(--color-boder03);
}
@media screen and (max-width: 767px) {
  .p-guideList > li {
    border-width: 1px;
  }
}
.p-guideList a {
  display: flex;
  align-items: center;
  height: 81px;
  padding: 0 60px 0 10px;
  background: url(../img/common/link_arrow-black.svg) right 30px center/16px auto no-repeat;
  color: inherit;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
}
@media (hover: hover) {
  .p-guideList a {
    transition: opacity 0.3s;
  }
  .p-guideList a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .p-guideList a {
    height: 52px;
    padding: 0 var(--mg-sp);
    font-size: 15px;
    background-position: right var(--mg-sp) center;
    background-size: 11px auto;
  }
}

/* ========================================
ご注文の流れ・お支払いについて p-flow
======================================== */
/* ========================================
お支払い方法・送料についてページ p-pay
======================================== */
.p-pay table {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-pay table {
    table-layout: fixed;
  }
}
.p-pay table + table {
  margin-top: 15px;
}
.p-pay th, .p-pay td {
  padding: 4px 10px;
  border: 1px solid var(--color-text-base);
  word-break: break-all;
  font-size: clamp(13px , calc(16 / 1440 * 100vw), 16px);
}
.p-pay th {
  background: var(--color-bg03);
  font-weight: 400;
}
.p-pay .p-pay_bankTable {
  max-width: 600px;
}
.p-pay .p-pay_bankTable th {
  width: 250px;
}
.p-pay .p-pay_bankTable td {
  width: 350px;
}
.p-pay .p-pay_bankCashTable {
  max-width: 600px;
}
.p-pay .p-pay_bankCashTable th {
  width: 300px;
}
.p-pay .p-pay_bankCashTable td {
  width: 300px;
}
.p-pay .p-pay_roanTable th:first-child {
  width: min(calc(200 / 1440 * 100vw), 200px);
}
@media screen and (max-width: 767px) {
  .p-pay .p-pay_roanTable th:first-child {
    width: 120px;
  }
}
.p-pay .p-pay_bonusTable th:first-child {
  width: min(calc(200 / 1440 * 100vw), 200px);
}
@media screen and (max-width: 767px) {
  .p-pay .p-pay_bonusTable th:first-child {
    width: 120px;
  }
}
.p-pay .p-pay_postageTable th:first-child, .p-pay .p-pay_postageTable td:first-child {
  width: min(calc(300 / 1440 * 100vw), 300px);
}
@media screen and (max-width: 1024px) {
  .p-pay .p-pay_postageTable th:first-child, .p-pay .p-pay_postageTable td:first-child {
    width: min(calc(200 / 1440 * 100vw), 200px);
  }
}
@media screen and (max-width: 767px) {
  .p-pay .p-pay_postageTable th:first-child, .p-pay .p-pay_postageTable td:first-child {
    width: 90px;
  }
}
.p-pay .p-pay_taxTable {
  max-width: 600px;
}
.p-pay .p-pay_taxTable th {
  width: 300px;
}
.p-pay .p-pay_taxTable td {
  width: 300px;
}

.p-pay_simulation {
  margin-top: 10px;
}
.p-pay_simulation button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 5px 10px;
  background: var(--color-bg03);
  border: 1px solid var(--color-boder01);
}
@media (hover: hover) {
  .p-pay_simulation button {
    transition: opacity 0.3s;
  }
  .p-pay_simulation button:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .p-pay_tableSpWrap {
    width: calc(100% + var(--mg-sp));
    overflow-x: scroll;
  }
  .p-pay_tableSpWrap table {
    width: 600px;
  }
}

/* ========================================
在庫状況・納期について p-stock
======================================== */
/* ========================================
キャンセル・返品について p-cancel
======================================== */
/* ========================================
保証・修理についてページ p-warranty
======================================== */
.p-warranty_bannerLink {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-warranty_bannerLink {
    margin-bottom: 25px;
  }
}
@media (hover: hover) {
  .p-warranty_bannerLink a {
    transition: opacity 0.3s;
  }
  .p-warranty_bannerLink a:hover {
    opacity: 0.7;
  }
}

.p-warrantyTab {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 44px;
}
@media screen and (max-width: 767px) {
  .p-warrantyTab {
    margin-top: 0;
    margin-bottom: 30px;
  }
}
.p-warrantyTab > button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 48.4%;
  height: 90px;
  border: 2px solid var(--color-boder02);
  font-size: clamp(18px , calc(23 / 1440 * 100vw), 23px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-warrantyTab > button {
    height: 64px;
    font-size: 12.5px;
    line-height: 1.48;
  }
}
@media (hover: hover) {
  .p-warrantyTab > button {
    transition: background-color 0.3s;
  }
  .p-warrantyTab > button:hover {
    background-color: var(--color-bg02);
  }
}
.p-warrantyTab > button.is-current {
  background: #3491A4;
  border-color: #3491A4;
  color: #fff;
}

.p-warrantyTabCont {
  display: none;
}
.p-warrantyTabCont[data-tabcont=sec01] {
  display: block;
}

.p-warrantyCoverd_container {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 20px;
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .p-warrantyCoverd_container {
    display: block;
    margin-top: 44px;
  }
}
.p-warrantyCoverd_cont {
  width: min((100% - 40px) / 3, 263px);
}
@media screen and (max-width: 1024px) {
  .p-warrantyCoverd_cont {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .p-warrantyCoverd_cont {
    width: 100%;
  }
  .p-warrantyCoverd_cont + .p-warrantyCoverd_cont {
    margin-top: 50px;
  }
}
.p-warrantyCoverd_cont ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .p-warrantyCoverd_cont ul.-spCol2 {
    -moz-column-count: 2;
         column-count: 2;
  }
}
.p-warrantyCoverd_logoTtl {
  font-size: 0;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .p-warrantyCoverd_logoTtl {
    margin-bottom: 30px;
    width: 180px;
  }
}

.p-warrantyNotes_cont p + p {
  margin-top: 1.5em;
}

.p-warrantyContact .l-contctSec_logo {
  margin-top: 32px;
}

/* ========================================
延長保証 （自然故障）ページ p-enatural
======================================== */
.p-enatural .m-secTtl-fill {
  background-color: var(--color-extended-natural);
}
.p-enatural_ttl {
  color: var(--color-extended-natural);
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-enatural_ttl {
    font-size: 15px;
  }
}
.p-enatural_boderTtl {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 217px;
  padding: 7px 19px;
  border: 1px solid var(--color-extended-natural);
  border-radius: 18px;
  color: var(--color-extended-natural);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-enatural_boderTtl {
    min-width: 169px;
    padding: 4px 18px;
    font-size: 15px;
    border-radius: 35px;
  }
}
@media screen and (max-width: 767px) {
  .p-enatural_boderTtl.-spRow2 {
    padding: 13px 22px;
    line-height: 1.5;
    text-align: left;
  }
}

.p-enaturalIntro {
  margin-bottom: 10px;
}

.p-enaturalAbout_flow {
  margin-top: 44px;
}
@media screen and (max-width: 767px) {
  .p-enaturalAbout_flow {
    margin-top: 33px;
  }
  .p-enaturalAbout_flow img {
    width: 100%;
  }
}

.p-enaturalFeature_about {
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  .p-enaturalFeature_about {
    margin-top: 42px;
  }
}
.p-enaturalFeature_about + .p-enaturalFeature_about {
  margin-top: 63px;
}
@media screen and (max-width: 767px) {
  .p-enaturalFeature_about + .p-enaturalFeature_about {
    margin-top: 40px;
  }
}
.p-enaturalFeature_about ._img {
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .p-enaturalFeature_about ._img {
    padding-left: 0;
  }
}
.p-enaturalFeature_about ._ttl {
  margin: 0;
}
.p-enaturalFeature_about ._text01 {
  margin: 25px 0 18px;
}
@media screen and (max-width: 767px) {
  .p-enaturalFeature_about ._text01 {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-enaturalFeature_about.-year5 ._img img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-enaturalFeature_about.-year3 ._img img {
    width: 68.6956521739%;
  }
}
.p-enaturalFeature_text01 {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-enaturalFeature_text01 {
    margin-top: 32px;
  }
}
.p-enaturalFeature_overview {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
  margin-top: 13px;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .p-enaturalFeature_overview {
    gap: 15px 5.652173913%;
    margin-top: 28px;
    padding-left: 0;
  }
}
.p-enaturalFeature_overview > p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 111px;
  height: 111px;
  border: 3px solid var(--color-extended-natural);
  border-radius: 6px;
  color: var(--color-extended-natural);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-enaturalFeature_overview > p {
    width: 29.5652173913%;
    height: 102px;
    border-width: 2px;
    font-size: 20px;
  }
}
.p-enaturalFeature_overview > p > span {
  display: block;
  line-height: 1.2;
}
.p-enaturalFeature_overview > p ._or {
  margin: -3px 0;
  font-size: 15px;
}
.p-enaturalFeature_overview > p ._size13 {
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .p-enaturalFeature_overview > p ._size13 {
    font-size: 11.5px;
  }
}
.p-enaturalFeature_overview > p ._size20 {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .p-enaturalFeature_overview > p ._size20 {
    font-size: 17.5px;
  }
}
.p-enaturalFeature_overview > p ._size23 {
  font-size: 23px;
}
@media screen and (max-width: 767px) {
  .p-enaturalFeature_overview > p ._size23 {
    font-size: 20px;
  }
}
.p-enaturalFeature_overview > p ._size24 {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .p-enaturalFeature_overview > p ._size24 {
    font-size: 21.5px;
  }
}
.p-enaturalFeature_overview > p ._size28 {
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .p-enaturalFeature_overview > p ._size28 {
    font-size: 25.5px;
  }
}
.p-enaturalFeature_overview > p ._size32 {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .p-enaturalFeature_overview > p ._size32 {
    font-size: 30px;
  }
}
.p-enaturalFeature_overview > p ._size42 {
  font-size: 42px;
}
@media screen and (max-width: 767px) {
  .p-enaturalFeature_overview > p ._size42 {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-enaturalFeature_overview > p ._sizeSp25 {
    font-size: 25px;
  }
}

.p-enaturalLimit_cont {
  display: flex;
  align-items: flex-start;
  align-items: center;
  gap: 0 32px;
}
@media screen and (max-width: 1024px) {
  .p-enaturalLimit_cont {
    display: block;
  }
}
.p-enaturalLimit_cont ._ttl {
  width: 164px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-enaturalLimit_cont ._ttl {
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 767px) {
  .p-enaturalLimit_cont ._ttl {
    width: 100%;
    margin-bottom: 19px;
    font-size: 15px;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .p-enaturalLimit_cont ._ttl::before, .p-enaturalLimit_cont ._ttl::after {
    display: block;
    font-size: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
.p-enaturalLimit_cont ._ttl::before {
  content: "【";
  left: -30px;
}
.p-enaturalLimit_cont ._ttl::after {
  content: "】";
  right: -30px;
}
@media screen and (max-width: 767px) {
  .p-enaturalLimit_cont ._img img {
    width: 100%;
  }
}
.p-enaturalLimit_cont.-our {
  margin-top: 38px;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .p-enaturalLimit_cont.-our {
    margin-top: 34px;
    margin-bottom: 44px;
  }
}
.p-enaturalLimit_cont.-our ._ttl {
  color: var(--color-extended-natural);
  transform: translateY(24%);
}
@media screen and (max-width: 1024px) {
  .p-enaturalLimit_cont.-our ._ttl {
    transform: none;
  }
}
.p-enaturalLimit_text01 {
  margin-top: 66px;
}
@media screen and (max-width: 767px) {
  .p-enaturalLimit_text01 {
    margin-top: 40px;
  }
}

.p-enaturalMalfunction_contact {
  margin-top: 44px;
  color: var(--color-extended-natural);
}
@media screen and (max-width: 767px) {
  .p-enaturalMalfunction_contact {
    margin-top: 28px;
  }
}
.p-enaturalMalfunction_contact ._ttl {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-enaturalMalfunction_contact ._ttl {
    font-size: 17.5px;
  }
}
.p-enaturalMalfunction_contact ._cont {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .p-enaturalMalfunction_contact ._cont {
    margin-top: 30px;
  }
}
.p-enaturalMalfunction_contact ._cont dl {
  display: flex;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-enaturalMalfunction_contact ._cont dl {
    display: block;
  }
}
.p-enaturalMalfunction_contact ._cont dl + dl {
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .p-enaturalMalfunction_contact ._cont dl + dl {
    margin-top: 28px;
  }
}
.p-enaturalMalfunction_contact ._cont dl::before {
  content: "：";
  display: block;
  width: 48px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-enaturalMalfunction_contact ._cont dl::before {
    display: none;
  }
}
.p-enaturalMalfunction_contact ._cont dt {
  order: -1;
  font-weight: 700;
}
.p-enaturalMalfunction_contact ._cont dd {
  flex: 1;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-enaturalMalfunction_contact ._cont dd {
    margin-top: 4px;
  }
}
.p-enaturalMalfunction_contact ._cont dd a {
  font-weight: 700;
}
.p-enaturalMalfunction_text01 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-enaturalMalfunction_text01 {
    margin-top: 32px;
  }
}

.p-enaturalAbout_list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 25px;
  max-width: 788px;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .p-enaturalAbout_list {
    width: 90.1449275362%;
    gap: 16px 5.1446945338%;
    margin: 0 auto;
    padding-left: 0;
  }
}
.p-enaturalAbout_list > li {
  width: 89px;
}
@media screen and (max-width: 767px) {
  .p-enaturalAbout_list > li {
    width: 29.9035369775%;
  }
  .p-enaturalAbout_list > li img {
    width: 100%;
  }
}
.p-enaturalAbout_text01 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-enaturalAbout_text01 {
    margin-top: 26px;
  }
}

.p-enaturalFaq .l-guideFaq dt {
  color: var(--color-extended-natural);
}
.p-enaturalFaq .l-guideFaq dt::before {
  color: #fff;
  border-color: var(--color-extended-natural);
  background: var(--color-extended-natural);
}
.p-enaturalFaq .l-guideFaq dd::before {
  color: var(--color-extended-natural);
  border-color: var(--color-extended-natural);
}

.p-enaturalAbout_adobe {
  display: flex;
  align-items: center;
  gap: 0 29px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-enaturalAbout_adobe {
    display: block;
    margin-top: 40px;
  }
}
@media (hover: hover) {
  .p-enaturalAbout_adobe a {
    transition: opacity 0.3s;
  }
  .p-enaturalAbout_adobe a:hover {
    opacity: 0.7;
  }
}
.p-enaturalAbout_adobe ._img {
  display: block;
  width: 158px;
}
@media screen and (max-width: 767px) {
  .p-enaturalAbout_adobe ._img {
    width: 186px;
  }
}
.p-enaturalAbout_adobe ._text {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-enaturalAbout_adobe ._text {
    margin-top: 16px;
  }
}

@media screen and (max-width: 767px) {
  .p-enaturalContact_logo img {
    width: 225px;
  }
}
.p-enaturalContact_overview {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-enaturalContact_overview {
    margin-top: 29px;
  }
}
.p-enaturalContact_overview dl {
  display: flex;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-enaturalContact_overview dl {
    display: block;
  }
}
.p-enaturalContact_overview dl + dl {
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .p-enaturalContact_overview dl + dl {
    margin-top: 23px;
  }
}
.p-enaturalContact_overview dt {
  width: 180px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-enaturalContact_overview dt {
    width: 100%;
    font-weight: 700;
  }
}
.p-enaturalContact_overview dd {
  flex: 1;
  margin: 0;
}

/* ========================================
延長保証 フォーアクシデント （自然故障 + 物損保証）ページ p-edamage
======================================== */
.p-edamage .m-secTtl-fill {
  background-color: var(--color-extended-damage);
}
.p-edamage_ttl {
  color: var(--color-extended-damage);
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-edamage_ttl {
    font-size: 15px;
  }
}
.p-edamage_boderTtl {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 217px;
  padding: 7px 19px;
  border: 1px solid var(--color-extended-damage);
  border-radius: 18px;
  color: var(--color-extended-damage);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-edamage_boderTtl {
    min-width: 169px;
    padding: 4px 18px;
    font-size: 15px;
    border-radius: 35px;
  }
}
@media screen and (max-width: 767px) {
  .p-edamage_boderTtl.-spRow2 {
    padding: 13px 22px;
    line-height: 1.5;
    text-align: left;
  }
}

.p-edamageAbout_about {
  display: flex;
  align-items: center;
  gap: 0 15px;
  margin-bottom: 40px;
  color: var(--color-extended-damage);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-edamageAbout_about {
    justify-content: center;
    gap: 0 9px;
  }
}
.p-edamageAbout_about ._cont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 259px;
  height: 52px;
  border: 2px solid var(--color-extended-damage);
  font-size: 25px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-edamageAbout_about ._cont {
    max-width: 130px;
    width: 42%;
    height: 34px;
    font-size: 15px;
  }
}
.p-edamageAbout_about .connect {
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .p-edamageAbout_about .connect {
    font-size: 15px;
  }
}

.p-edamageAccident_cont {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-edamageAccident_cont {
    margin-top: 24px;
  }
}
.p-edamageAccident_cont + .p-edamageAccident_cont {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-edamageAccident_cont + .p-edamageAccident_cont {
    margin-top: 32px;
  }
}
.p-edamageAccident_cont ._ttl {
  margin: 0 0 14px;
  font-size: 16px;
  color: var(--color-extended-damage);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-edamageAccident_cont ._ttl {
    margin: 0;
  }
}
.p-edamageAccident_cont ._img {
  margin: 15px 0 20px;
}
@media screen and (max-width: 767px) {
  .p-edamageAccident_cont ._img {
    margin-bottom: 26px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-edamageAccident_cont.-cont01 ._img img {
    width: 157px;
  }
}
.p-edamageAccident_cont.-cont02 ._img {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}
@media screen and (max-width: 767px) {
  .p-edamageAccident_cont.-cont02 ._img {
    width: 90.1449275362%;
    gap: 16px 5.1446945338%;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .p-edamageAccident_cont.-cont02 ._img img {
    width: 29.9035369775%;
  }
}

.p-edamagePeriod_ttl01 {
  margin: 32px 0 0;
}
.p-edamagePeriod_cont {
  display: flex;
  align-items: flex-start;
  align-items: center;
  margin-top: 26px;
}
@media screen and (max-width: 1024px) {
  .p-edamagePeriod_cont {
    display: block;
  }
}
.p-edamagePeriod_cont + .p-edamagePeriod_cont {
  margin-top: 28px;
}
.p-edamagePeriod_cont ._ttl {
  width: 128px;
  color: var(--color-extended-damage);
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .p-edamagePeriod_cont ._ttl {
    margin-bottom: 10px;
    font-size: 15px;
  }
}
.p-edamagePeriod_cont ._img {
  width: calc(100% - 128px);
}
@media screen and (max-width: 1024px) {
  .p-edamagePeriod_cont ._img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-edamagePeriod_cont ._img img {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .p-edamagePeriod_cont.-cont01 ._ttl {
    transform: translateY(14px);
  }
}
@media screen and (max-width: 767px) {
  .p-edamagePeriod_cont.-cont02 ._img {
    width: 68.6956521739%;
  }
}
.p-edamagePeriod_text01 {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-edamagePeriod_text01 {
    margin-top: 40px;
  }
}

.p-edamageLimit_cont {
  display: flex;
  align-items: flex-start;
  align-items: center;
  margin: 26px 0 40px;
}
@media screen and (max-width: 1024px) {
  .p-edamageLimit_cont {
    display: block;
  }
}
.p-edamageLimit_cont ._ttl {
  width: 128px;
  color: var(--color-extended-damage);
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .p-edamageLimit_cont ._ttl {
    margin-bottom: 10px;
    font-size: 15px;
  }
}
.p-edamageLimit_cont ._img {
  width: calc(100% - 128px);
}
@media screen and (max-width: 1024px) {
  .p-edamageLimit_cont ._img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-edamageLimit_cont ._img img {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .p-edamageLimit_cont.-cont01 ._ttl {
    transform: translateY(14px);
  }
}
@media screen and (min-width: 768px) {
  .p-edamageLimit_cont.-cont02 {
    margin-top: 54px;
  }
}

.p-edamageMalfunction_contact {
  margin-top: 44px;
}
@media screen and (max-width: 767px) {
  .p-edamageMalfunction_contact {
    margin-top: 28px;
  }
}
.p-edamageMalfunction_contact ._ttl {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-edamageMalfunction_contact ._ttl {
    font-size: 17.5px;
  }
}
.p-edamageMalfunction_contact ._cont {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .p-edamageMalfunction_contact ._cont {
    margin-top: 30px;
  }
}
.p-edamageMalfunction_contact ._cont dl {
  display: flex;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-edamageMalfunction_contact ._cont dl {
    display: block;
  }
}
.p-edamageMalfunction_contact ._cont dl + dl {
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .p-edamageMalfunction_contact ._cont dl + dl {
    margin-top: 28px;
  }
}
.p-edamageMalfunction_contact ._cont dl::before {
  content: "：";
  display: block;
  width: 48px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-edamageMalfunction_contact ._cont dl::before {
    display: none;
  }
}
.p-edamageMalfunction_contact ._cont dt {
  order: -1;
  font-weight: 700;
}
.p-edamageMalfunction_contact ._cont dd {
  flex: 1;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-edamageMalfunction_contact ._cont dd {
    margin-top: 4px;
  }
}
.p-edamageMalfunction_contact ._cont dd a {
  font-weight: 700;
}
.p-edamageMalfunction_text01 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-edamageMalfunction_text01 {
    margin-top: 32px;
  }
}

.p-edamageAbout_list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 25px;
  max-width: 788px;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .p-edamageAbout_list {
    width: 90.1449275362%;
    gap: 16px 5.1446945338%;
    margin: 0 auto;
    padding-left: 0;
  }
}
.p-edamageAbout_list > li {
  width: 89px;
}
@media screen and (max-width: 767px) {
  .p-edamageAbout_list > li {
    width: 29.9035369775%;
  }
  .p-edamageAbout_list > li img {
    width: 100%;
  }
}
.p-edamageAbout_text01 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-edamageAbout_text01 {
    margin-top: 26px;
  }
}

.p-edamageFaq .l-guideFaq dt {
  color: var(--color-extended-damage);
}
.p-edamageFaq .l-guideFaq dt::before {
  color: #fff;
  border-color: var(--color-extended-damage);
  background: var(--color-extended-damage);
}
.p-edamageFaq .l-guideFaq dd::before {
  color: var(--color-extended-damage);
  border-color: var(--color-extended-damage);
}

.p-edamageAbout_adobe {
  display: flex;
  align-items: center;
  gap: 0 29px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-edamageAbout_adobe {
    display: block;
    margin-top: 40px;
  }
}
@media (hover: hover) {
  .p-edamageAbout_adobe a {
    transition: opacity 0.3s;
  }
  .p-edamageAbout_adobe a:hover {
    opacity: 0.7;
  }
}
.p-edamageAbout_adobe ._img {
  display: block;
  width: 158px;
}
@media screen and (max-width: 767px) {
  .p-edamageAbout_adobe ._img {
    width: 186px;
  }
}
.p-edamageAbout_adobe ._img img {
  width: 100%;
}
.p-edamageAbout_adobe ._text {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-edamageAbout_adobe ._text {
    margin-top: 16px;
  }
}

/* ========================================
買取についてページ p-buying
======================================== */
.p-buying_secTtl {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-buying_secTtl {
    font-size: 15px;
    margin-bottom: 4px;
  }
}

.p-buyingContact {
  display: flex;
  flex-wrap: wrap;
  gap: 54px 0;
}
@media screen and (max-width: 767px) {
  .p-buyingContact {
    gap: 24px 0;
  }
}
.p-buyingContact > * {
  width: 50%;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .p-buyingContact > * {
    width: 100%;
    padding-right: 0;
  }
}

.p-buyingAbout > li + li {
  margin-top: 37px;
}
.p-buyingAbout_cont {
  display: flex;
  align-items: center;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .p-buyingAbout_cont {
    flex-direction: column;
    gap: 26px 0;
    padding-left: 0;
  }
}
.p-buyingAbout_img {
  width: 110px;
}
@media screen and (max-width: 767px) {
  .p-buyingAbout_img {
    width: 128px;
  }
  .p-buyingAbout_img img {
    width: 100%;
  }
}
.p-buyingAbout_textBox {
  width: calc(100% - 110px);
  padding-left: 30px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-buyingAbout_textBox {
    width: 100%;
    padding-left: 0;
    font-size: 15px;
    line-height: 1.5;
  }
}
.p-buyingAbout_notes {
  font-size: 14px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-buyingAbout_notes {
    margin-top: 18px;
  }
}

.p-buyingExample {
  margin-top: 110px;
}
@media screen and (max-width: 767px) {
  .p-buyingExample {
    margin-top: 86px;
  }
}
.p-buyingExample + .p-buyingExample {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-buyingExample + .p-buyingExample {
    margin-top: 40px;
  }
}
.p-buyingExample_logoTtl {
  margin: 0;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .p-buyingExample_logoTtl.-sony {
    width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .p-buyingExample_logoTtl.-panasonic {
    width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .p-buyingExample_logoTtl.-jvc {
    width: 96px;
  }
}
@media screen and (max-width: 767px) {
  .p-buyingExample_logoTtl.-fujinon {
    width: 174px;
  }
}
@media screen and (max-width: 767px) {
  .p-buyingExample_logoTtl.-canon {
    width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .p-buyingExample_logoTtl.-sachtler {
    width: 205px;
  }
}
@media screen and (max-width: 767px) {
  .p-buyingExample_logoTtl.-vinten {
    width: 125px;
  }
}
@media screen and (max-width: 767px) {
  .p-buyingExample_logoTtl.-roland {
    width: 174px;
  }
}
@media screen and (max-width: 767px) {
  .p-buyingExample_logoTtl.-blackmagicdesign {
    width: 146px;
  }
}
.p-buyingExample_table {
  width: 100%;
  font-size: 15px;
  margin-top: 26px;
}
@media screen and (max-width: 767px) {
  .p-buyingExample_table {
    margin-top: 32px;
    border-right: 1px solid var(--color-boder02);
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-buyingExample_table tr {
    display: flex;
    flex-wrap: wrap;
  }
}
.p-buyingExample_table th, .p-buyingExample_table td {
  padding: 6px 10px 6px clamp(10px , calc(15 / 1200 * 100vw), 15px);
  border: 1px solid var(--color-boder02);
}
@media screen and (max-width: 767px) {
  .p-buyingExample_table th, .p-buyingExample_table td {
    display: block;
    padding: 4px 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-buyingExample_table thead {
    display: none;
  }
}
.p-buyingExample_table th {
  background: var(--color-bg03);
  font-weight: 400;
  text-align: center;
}
.p-buyingExample_table th:nth-child(1) {
  width: 226px;
}
.p-buyingExample_table th:nth-child(2) {
  width: 252px;
}
.p-buyingExample_table th:nth-child(3) {
  width: 252px;
}
.p-buyingExample_table th:nth-child(4) {
  width: 270px;
}
@media screen and (max-width: 767px) {
  .p-buyingExample_table td {
    width: 36.231884058%;
    padding: 6px 8px;
    border-top: none;
    border-right: none;
  }
  .p-buyingExample_table td:first-child {
    display: none;
  }
  .p-buyingExample_table td:last-child {
    width: 27.5362318841%;
    padding: 2px 13px;
    font-size: 10px;
  }
  .p-buyingExample_table td._spTtl {
    display: block;
    width: 100%;
    padding: 4px 10px;
    background: var(--color-bg03);
    border-top: 1px solid var(--color-boder02);
    text-align: center;
    margin-top: -1px;
  }
}
@media screen and (max-width: 767px) {
  .p-buyingExample_table.-spLastNone td:nth-of-type(2) {
    width: 43.4782608696%;
  }
  .p-buyingExample_table.-spLastNone td:nth-of-type(3) {
    width: 56.5217391304%;
  }
  .p-buyingExample_table.-spLastNone td:last-child {
    display: none;
  }
}

.p-buyingNotes {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-buyingNotes {
    margin-top: 40px;
  }
}

.p-buyingDocs_sec {
  margin-top: 68px;
}
@media screen and (max-width: 767px) {
  .p-buyingDocs_sec {
    margin-top: 45px;
  }
}
.p-buyingDocs_sec + .p-buyingDocs_sec {
  margin-top: 74px;
}
@media screen and (max-width: 767px) {
  .p-buyingDocs_sec + .p-buyingDocs_sec {
    margin-top: 40px;
  }
}
.p-buyingDocs_overview {
  margin-top: 17px;
}
@media screen and (max-width: 767px) {
  .p-buyingDocs_overview {
    margin-top: 22px;
  }
}
.p-buyingDocs_overview_cont {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.5333333333;
}
.p-buyingDocs_overview_cont dl {
  display: flex;
  margin: -1px 0 0;
  line-height: 1.7;
}
.p-buyingDocs_overview_cont dt,
.p-buyingDocs_overview_cont dd {
  border: 1px solid var(--color-boder02);
}
.p-buyingDocs_overview_cont dt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 97px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-buyingDocs_overview_cont dt {
    width: 83px;
  }
}
.p-buyingDocs_overview_cont dd {
  margin: 0;
  padding: 5px 20px 5px 25px;
  width: calc(100% - 97px);
  border-left: none;
}
@media screen and (max-width: 767px) {
  .p-buyingDocs_overview_cont dd {
    padding: 5px 12px 5px 13px;
    width: calc(100% - 83px);
  }
}
.p-buyingDocs_desc {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .p-buyingDocs_desc {
    margin-top: 40px;
  }
}

/* ========================================
下取り割引についてページ p-campaign
======================================== */
.p-campaign_intro {
  padding: 10px 20px 12px;
}
@media screen and (max-width: 767px) {
  .p-campaign_intro {
    padding: 0 0 6px;
  }
}
.p-campaign_appTable {
  font-size: 15px;
  line-height: 1.4666666667;
}
@media screen and (max-width: 767px) {
  .p-campaign_appTable {
    margin-top: -10px;
    font-size: 14px;
    line-height: 1.4642857143;
    border-top: 1px solid var(--color-boder02);
  }
}
@media screen and (max-width: 767px) {
  .p-campaign_appTable tr {
    display: flex;
    flex-wrap: wrap;
  }
}
.p-campaign_appTable th,
.p-campaign_appTable td {
  border: 1px solid var(--color-boder02);
}
@media screen and (max-width: 767px) {
  .p-campaign_appTable th,
  .p-campaign_appTable td {
    display: block;
    border-top: none;
  }
}
.p-campaign_appTable th {
  width: 90px;
  background: var(--color-bg03);
  font-weight: 400;
  text-align: center;
  padding: 25px 5px;
}
@media screen and (max-width: 767px) {
  .p-campaign_appTable th {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    padding-top: 9px;
    padding-bottom: 9px;
    background: transparent;
  }
}
.p-campaign_appTable th._spTtl {
  width: 167px;
}
@media screen and (max-width: 767px) {
  .p-campaign_appTable th._spTtl {
    width: 100%;
    background: var(--color-bg03);
  }
}
.p-campaign_appTable td {
  width: 743px;
  padding: 25px 15px 25px min(calc(63 / 1440 * 100vw), 63px);
}
@media screen and (max-width: 767px) {
  .p-campaign_appTable td {
    width: calc(100% - 80px);
    padding: 30px min(calc(24 / 375 * 100vw), 24px) 30px min(calc(28 / 375 * 100vw), 28px);
    border-left: none;
  }
}
.p-campaign_sec {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-campaign_sec {
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .p-campaign_sec + .p-campaign_sec {
    margin-top: 80px;
  }
}
.p-campaign_sec .p-campaign-ttl {
  font-size: 20px;
  font-weight: 700;
}
.p-campaign_logoTtl {
  margin: 0;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .p-campaign_logoTtl.-sony {
    width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .p-campaign_logoTtl.-panasonic {
    width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .p-campaign_logoTtl.-jvc {
    width: 96px;
  }
}
@media screen and (max-width: 767px) {
  .p-campaign_logoTtl.-canon {
    width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .p-campaign_logoTtl.-roland {
    width: 174px;
  }
}
@media screen and (max-width: 767px) {
  .p-campaign_logoTtl.-blackmagicdesign {
    width: 146px;
  }
}
.p-campaign_productList {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 34px 3.5%;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .p-campaign_productList {
    gap: 34px 2.6666666667%;
  }
}
@media screen and (max-width: 767px) {
  .p-campaign_productList {
    justify-content: space-between;
    gap: 29px 0;
    margin-top: 20px;
    font-size: 14px;
  }
}
.p-campaign_productList > li {
  width: 17.2%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .p-campaign_productList > li {
    width: 23%;
  }
}
@media screen and (max-width: 767px) {
  .p-campaign_productList > li {
    width: 47.8260869565%;
  }
}
.p-campaign_productList a {
  display: block;
  color: inherit;
}
@media (hover: hover) {
  .p-campaign_productList a:hover ._imgBox img {
    transform: scale(1.06);
  }
}
.p-campaign_productList ._imgBox {
  padding-top: 100%;
  position: relative;
  overflow: hi;
}
.p-campaign_productList ._imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-campaign_productList ._ttl {
    margin-top: 20px;
    width: 102%;
    transform: translateX(-1%);
  }
}
@media screen and (max-width: 767px) {
  .p-campaign_productList ._ttl {
    margin-top: 6px;
    text-align: left;
  }
}
.p-campaign_productList ._price {
  color: var(--color-text-red);
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-campaign_productList ._price {
    margin-top: -5px;
    text-align: left;
  }
}
.p-campaign_productList ._num {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-campaign_productList ._num {
    font-size: 19px;
  }
}
.p-campaign_productList ._notes {
  margin-top: 0.3em;
  font-size: 12px;
  line-height: 1.2;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-campaign_productList ._notes {
    font-size: 11px;
  }
}
.p-campaign_campaign {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-campaign_campaign {
    margin-top: 40px;
  }
}
.p-campaign_campaign ._desc {
  margin-top: 30px;
}

/* ========================================
よくあるご質問 p-faq
======================================== */
.p-faqList {
  margin-top: 54px;
}
@media screen and (max-width: 767px) {
  .p-faqList {
    margin-top: 0;
  }
}
.p-faqList dl {
  margin-bottom: 0;
  border: 2px solid var(--color-bg03);
}
.p-faqList dl + dl {
  margin-top: 19px;
}
@media screen and (max-width: 767px) {
  .p-faqList dl + dl {
    margin-top: 17px;
  }
}
.p-faqList dt {
  padding: 13px 100px 13px 40px;
  background: var(--color-bg03);
  font-size: 21px;
  font-weight: 500;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-faqList dt {
    padding: 8px 48px 8px 18px;
    font-size: 14px;
  }
}
.p-faqList dt::before, .p-faqList dt::after {
  content: "";
  display: block;
  width: 28px;
  height: 4px;
  background: var(--color-text-base);
  position: absolute;
  top: 50%;
  right: 42px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-faqList dt::before, .p-faqList dt::after {
    width: 14px;
    height: 2px;
    right: 20px;
  }
}
.p-faqList dt::after {
  transform: translateY(-50%) rotate(90deg);
  transition: 0.3s;
}
.p-faqList dt.is-active::after {
  transform: translateY(-50%) rotate(0);
}
@media (hover: hover) {
  .p-faqList dt {
    transition: 0.2s;
  }
  .p-faqList dt:hover {
    background-color: var(--color-bg02);
  }
}
.p-faqList dd {
  display: none;
  margin-bottom: 0;
  padding: 31px 40px 34px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-faqList dd {
    padding: 25px 14px 33px 18px;
  }
}

/* ========================================
同時購入キャンペーンページ p-combo
======================================== */
.p-comboIntro {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-comboIntro {
    font-weight: 500;
  }
}

.p-comboSec {
  margin-top: 77px;
  padding: 30px 20px 0;
  border-top: 1px solid var(--color-boder02);
}
@media screen and (max-width: 767px) {
  .p-comboSec {
    margin-top: 39px;
    padding: 20px 0 0;
  }
}
.p-comboSec + .p-comboSec {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-comboSec + .p-comboSec {
    margin-top: 24px;
  }
}
.p-comboSec_ttl {
  margin: 0 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-comboSec_ttl {
    font-size: 19px;
  }
}

.p-comboSummary {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-comboSummary {
    margin-top: 19px;
  }
}
.p-comboSummary + .p-comboSummary {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-comboSummary + .p-comboSummary {
    margin-top: 24px;
  }
}
.p-comboSummary_ttl {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-comboSummary_ttl {
    font-size: 15px;
  }
}
.p-comboSummary_list {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  margin-top: 10px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-comboSummary_list {
    margin-top: 8px;
  }
}
.p-comboSummary_list li::before {
  content: "・";
}
.p-comboSummary_list li + li {
  margin-top: 3px;
}
@media screen and (max-width: 767px) {
  .p-comboSummary_list li + li {
    margin-top: 0;
  }
}
.p-comboSummary_list a {
  text-decoration: underline;
  text-underline-offset: 0.1em;
}
@media (hover: hover) {
  .p-comboSummary_list a {
    transition: opacity 0.3s;
  }
  .p-comboSummary_list a:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) {
  .p-comboSummary_list a:hover {
    color: inherit;
  }
}

.p-comboPrice {
  padding-right: 0;
}
.p-comboPrice_read {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .p-comboPrice_read {
    margin-top: 9px;
  }
}

.p-comboPriceList {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px calc((100% - 840px) / 4);
  margin-top: 22px;
}
@media screen and (max-width: 1360px) {
  .p-comboPriceList {
    gap: 30px calc((100% - 672px) / 3);
  }
}
@media screen and (max-width: 1080px) {
  .p-comboPriceList {
    gap: 30px calc((100% - 504px) / 2);
  }
}
@media screen and (max-width: 880px) {
  .p-comboPriceList {
    justify-content: space-between;
    gap: 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-comboPriceList {
    gap: 28px 0;
    margin-top: 16px;
  }
}
.p-comboPriceList > li {
  width: 168px;
  position: relative;
}
@media screen and (max-width: 880px) {
  .p-comboPriceList > li {
    width: 47.8260869565%;
  }
}
.p-comboPriceList a {
  display: block;
  color: inherit;
}
@media (hover: hover) {
  .p-comboPriceList a {
    color: inherit;
  }
  .p-comboPriceList a:hover .p-comboPriceList_imgBox img {
    transform: scale(1.06);
  }
}
.p-comboPriceList_imgBox {
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}
.p-comboPriceList_imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.p-comboPriceList_ttl {
  margin: 9px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-comboPriceList_ttl {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.7142857143;
  }
}
.p-comboPriceList_ttl ._line {
  text-decoration: underline;
  text-underline-offset: 0.1em;
}
.p-comboPriceList_price {
  margin-top: 13px;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-comboPriceList_price {
    margin-top: 1px;
  }
}
.p-comboPriceList_price ._oldNum {
  font-size: 16px;
  letter-spacing: 0;
  -webkit-text-decoration: line-through var(--color-text-red);
          text-decoration: line-through var(--color-text-red);
}
@media screen and (max-width: 767px) {
  .p-comboPriceList_price ._oldNum {
    font-size: 15px;
  }
}
.p-comboPriceList_price ._oldNum::after {
  content: "";
  width: 0;
  height: 0;
  display: inline-block;
  margin-inline: 7px 4px;
  border-style: solid;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 8px solid var(--color-text-red);
  border-right: 0;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-comboPriceList_price ._oldNum::after {
    margin-inline: 9px 7px;
  }
}
.p-comboPriceList_price ._newNum {
  color: var(--color-text-red);
  font-size: 20px;
  font-weight: 700;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .p-comboPriceList_price ._newNum {
    font-size: 19px;
  }
}
.p-comboPriceList_price ._unit {
  font-size: 16px;
  margin-left: 2px;
}
@media screen and (max-width: 767px) {
  .p-comboPriceList_price ._unit {
    font-size: 14px;
    margin-left: 4px;
  }
}
.p-comboPriceList_notes {
  margin-top: 9px;
  color: var(--color-text-red);
  font-size: 13px;
  line-height: 1.5714285714;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .p-comboPriceList_notes {
    margin-top: 3px;
    font-size: 12px;
    letter-spacing: 0;
  }
}

/* ========================================
ショールームのご案内 p-shop
======================================== */
.p-shopHead + .p-shopStore {
  margin-top: 46px;
}
@media screen and (max-width: 767px) {
  .p-shopHead + .p-shopStore {
    margin-top: 39px;
  }
}

.p-shopMainTtl {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/shop/ttl_bg_pc.jpg) center/cover no-repeat;
  height: 187px;
  margin: 18px 0 0;
  padding: 0 20px;
  color: #fff;
  font-size: clamp(36px , calc(55 / 1440 * 100vw), 55px);
  font-weight: 700;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-shopMainTtl {
    height: 94px;
    background-image: url(../img/shop/ttl_bg_sp.jpg);
    font-size: min(calc(22.5 / 375 * 100vw), 22.5px);
  }
}

.p-shopRead {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-shopRead {
    font-size: 19px;
    line-height: 1.45;
  }
}

.p-shopStore {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .p-shopStore {
    font-size: 20px;
    line-height: 1.45;
  }
}
@media screen and (max-width: 767px) {
  .p-shopStore {
    margin-top: 49px;
  }
}
.p-shopStore_img {
  margin: 40px 0 50px;
}
@media screen and (max-width: 767px) {
  .p-shopStore_img {
    margin: 25px 0 26px;
  }
}
.p-shopStore_info {
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .p-shopStore_info {
    margin-top: 22px;
  }
}
.p-shopStore_info dl {
  display: flex;
  margin: 0;
}
.p-shopStore_info dt {
  width: 123px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-shopStore_info dt {
    width: 92px;
  }
}
.p-shopStore_info dd {
  margin: 0;
}
.p-shopStore_access {
  margin-top: 57px;
  padding: 19px;
  border: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .p-shopStore_access {
    margin-top: 31px;
    padding: 19px 12px;
  }
}
.p-shopStore_access p {
  padding-left: 1em;
  text-indent: -1em;
}
.p-shopStore_map {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .p-shopStore_map {
    margin-top: 25px;
  }
}
.p-shopStore_map iframe {
  width: 100%;
  height: 300px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-shopStore_map iframe {
    height: 150px;
  }
}

/* ========================================
ビデオ近畿について p-company
======================================== */
.p-companyMainTtl {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 28px;
  margin: 19px 0 -7px;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-companyMainTtl {
    flex-direction: column;
    gap: 3px 0;
    margin: 30px 0 59px;
    font-size: 20px;
  }
}
.p-companyMainTtl_en {
  display: inline-block;
  font-family: var(--font-anton);
  font-size: 78px;
}
@media screen and (max-width: 767px) {
  .p-companyMainTtl_en {
    font-size: 39px;
  }
}

.p-companySec {
  margin-top: 75px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-companySec {
    margin-top: 64px;
  }
}
.p-companySec + .p-companySec {
  margin-top: 130px;
}
@media screen and (max-width: 767px) {
  .p-companySec + .p-companySec {
    margin-top: 64px;
  }
}
.p-companySec_ttl {
  display: flex;
  align-items: center;
  margin: 0 0 32px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  .p-companySec_ttl {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px 0;
    margin-bottom: 22px;
    font-size: 18px;
  }
}
.p-companySec_ttl ._num {
  display: block;
  width: 63px;
  color: #A00;
  font-family: var(--font-anton);
  font-size: 40px;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  .p-companySec_ttl ._num {
    font-size: 30px;
  }
}
.p-companySec_read {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
  .p-companySec_read {
    line-height: 1.5;
    letter-spacing: 0;
  }
}
.p-companySec_more {
  position: absolute;
  top: 4px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-companySec_more {
    position: static;
  }
}
.p-companySec_more a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 182px;
  height: 42px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  background: #A00;
  border-radius: 4px;
}
@media (hover: hover) {
  .p-companySec_more a {
    transition: opacity 0.3s;
  }
  .p-companySec_more a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-companySec_more a {
    width: 211px;
    height: 45px;
    margin: 25px auto 0;
  }
}

.p-companyStock_img {
  margin-top: 38px;
}
@media screen and (max-width: 767px) {
  .p-companyStock_img {
    margin-top: 21px;
  }
}
.p-companyStock_img img {
  width: 100%;
}

.p-companyWarranty_img {
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  .p-companyWarranty_img {
    margin-top: 21px;
  }
}
.p-companyWarranty_img + .p-companyWarranty_img {
  margin-top: 20px;
}
.p-companyWarranty_img a {
  display: block;
}
@media (hover: hover) {
  .p-companyWarranty_img a {
    transition: opacity 0.3s;
  }
  .p-companyWarranty_img a:hover {
    opacity: 0.7;
  }
}
.p-companyWarranty_img img {
  width: 100%;
}

.p-companyShowroom_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 5.4%;
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  .p-companyShowroom_list {
    gap: 18px 0;
    margin-top: 23px;
  }
}
.p-companyShowroom_list > * {
  width: 47.3%;
}
@media screen and (max-width: 767px) {
  .p-companyShowroom_list > * {
    width: 100%;
  }
}
.p-companyShowroom_list img {
  width: 100%;
}
.p-companyShowroom_list ._place {
  margin-top: 14px;
  font-size: 19px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-companyShowroom_list ._place {
    margin-top: 10px;
    font-size: 14px;
    text-align: left;
  }
}

.p-companyMaker_list {
  display: flex;
  flex-wrap: wrap;
  gap: 33px 26px;
  padding: 20px 40px 35px;
  background: #FAFAFA;
  border: 1px solid #EBEBEB;
  border-radius: 10px;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .p-companyMaker_list {
    gap: 16px 4.4728434505%;
    margin-top: 21px;
    padding: 20px var(--mg-sp) 23px;
    border-radius: 5px;
  }
}
.p-companyMaker_list > li {
  width: 210px;
}
.p-companyMaker_list > li img.-multiply {
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .p-companyMaker_list > li {
    width: 30.3514376997%;
  }
  .p-companyMaker_list > li img {
    width: 100%;
  }
}

/* ========================================
在庫状況・納期について p-government
======================================== */
.p-government_cont {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-government_cont {
    margin-top: 40px;
  }
}

/* ========================================
お取り扱いメーカー一覧ページ p-makerlink
======================================== */
.p-makerlinkSelect {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 45px;
  max-width: 518px;
  margin: 47px 0 70px;
  padding: 0 35px 0 20px;
  background: url(../img/makerlink/select_arrow.svg) right 16px center/auto no-repeat;
  border: 2px solid var(--color-text-base);
  border-radius: 4px;
  color: #C1C1C1;
  font-size: 17px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-makerlinkSelect {
    max-width: 100%;
    height: 35px;
    margin: 0 0 43px;
    font-size: 13px;
    padding-left: 10px;
  }
}

.p-makerlinkSec {
  padding: 36px 0 39px;
  border-top: 1px solid var(--color-boder03);
}
@media screen and (max-width: 767px) {
  .p-makerlinkSec {
    padding: 13px 0 27px;
  }
}
.p-makerlinkSec_ttl {
  margin: 0 0 28px;
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-makerlinkSec_ttl {
    margin-bottom: 17px;
    font-size: 19px;
  }
}
.p-makerlinkSec_list {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 11px 14px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-makerlinkSec_list {
    gap: 2px 0;
    font-size: 15px;
  }
}
.p-makerlinkSec_list > li {
  width: calc((100% - 14px) / 2);
}
@media screen and (max-width: 767px) {
  .p-makerlinkSec_list > li {
    width: 50%;
    padding-right: 10px;
  }
}
.p-makerlinkSec_list a {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-makerlinkSec_list.-spCol1 > li {
    width: 100%;
  }
}

/* ========================================
お知らせ一覧 p-newsarchive
お知らせ詳細 p-news
======================================== */
@media screen and (max-width: 767px) {
  .p-news {
    padding-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-news_head {
    margin-bottom: 20px;
  }
}
.p-news_ttl {
  margin: 0;
  padding-bottom: 1em;
  border-bottom: 3px solid var(--color-text-base);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2666666667;
}
@media screen and (max-width: 767px) {
  .p-news_ttl {
    border-width: 2px;
    font-size: 20px;
    line-height: 1.475;
  }
}
.p-news_time {
  margin-top: 20px;
  display: block;
  font-style: normal;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-news_time {
    margin-top: 14px;
  }
}
.p-news_post {
  border-top: 1px solid var(--color-boder03);
  margin-top: 18px;
  padding-top: 26px;
}
@media screen and (max-width: 767px) {
  .p-news_post {
    margin-top: 8px;
    padding-top: 16px;
  }
}

/* ========================================
レポート・ビデキンちゃん p-columnarchive
レポート・ビデキンちゃん詳細 p-column
======================================== */
.p-columnarchive_searchBox {
  display: flex;
  gap: 0 30px;
}
@media screen and (max-width: 767px) {
  .p-columnarchive_searchBox {
    gap: 0 8px;
    margin-top: 32px;
  }
}
.p-columnarchive_searchBox_select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 45px;
  padding: 0 30px 0 10px;
  border: 1px solid var(--color-boder02);
  border-radius: 4px;
  background: url(../img/common/selsect_arrow.svg) right 9px center/auto no-repeat;
  color: var(--color-text-base);
  font-size: 16px;
  width: 185px;
  border: 2px solid var(--color-boder01);
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .p-columnarchive_searchBox_select {
    height: 42px;
    font-size: 15px;
    border-radius: 2px;
  }
}
@media screen and (max-width: 767px) {
  .p-columnarchive_searchBox_select {
    width: 120px;
    height: 45px;
  }
}
.p-columnarchive_searchBox .l-search {
  width: calc(100% - 30px - 185px);
}
@media screen and (max-width: 767px) {
  .p-columnarchive_searchBox .l-search {
    width: calc(100% - 8px - 120px);
  }
  .p-columnarchive_searchBox .l-search input {
    height: 45px;
  }
}
.p-columnarchive_list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 5%;
  margin-top: 42px;
}
@media screen and (max-width: 1024px) {
  .p-columnarchive_list {
    gap: 60px 8%;
  }
}
@media screen and (max-width: 767px) {
  .p-columnarchive_list {
    gap: 27px 0;
    margin-top: 30px;
  }
}
.p-columnarchive_list > li {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .p-columnarchive_list > li {
    width: 46%;
  }
}
@media screen and (max-width: 767px) {
  .p-columnarchive_list > li {
    width: 100%;
  }
}
.p-columnarchive_list a {
  display: block;
  color: inherit;
}
@media (hover: hover) {
  .p-columnarchive_list a:hover img {
    transform: scale(1.06);
  }
}
.p-columnarchive_list ._img {
  padding-top: 68%;
  position: relative;
  overflow: hidden;
}
.p-columnarchive_list ._img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.p-columnarchive_list ._info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 16px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-columnarchive_list ._info {
    margin-top: 18px;
  }
}
.p-columnarchive_list ._cat {
  padding: 7px 8px;
  background: var(--color-text-base);
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-columnarchive_list ._cat {
    padding: 6px 9px;
    border-radius: 2px;
    font-size: 15px;
  }
}
.p-columnarchive_list ._time {
  display: block;
  color: var(--color-boder02);
  font-family: var(--font-anton);
  font-size: 15px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-columnarchive_list ._time {
    font-size: 16px;
  }
}
.p-columnarchive_list ._contTtl {
  margin: 10px 0 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5294117647;
}
@media screen and (max-width: 767px) {
  .p-columnarchive_list ._contTtl {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 767px) {
  .p-column_headImg {
    width: calc(100% + var(--mg-sp) * 2);
    margin-left: calc(-1 * var(--mg-sp));
  }
}
.p-column_headImg img {
  width: 100%;
}
.p-column_head {
  display: flex;
  padding: 7px 20px;
  background: var(--color-bg03);
}
@media screen and (max-width: 767px) {
  .p-column_head {
    display: block;
    width: calc(100% + var(--mg-sp) * 2);
    margin-left: calc(-1 * var(--mg-sp));
    padding: 10px var(--mg-sp);
  }
}
.p-column_time {
  display: block;
  width: 110px;
  font-family: var(--font-anton);
  font-size: 15px;
}
.p-column_info {
  width: calc(100% - 86px);
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-column_info {
    width: 100%;
    margin-top: 5px;
  }
}
.p-column_info a {
  text-decoration: underline;
}
@media (hover: hover) {
  .p-column_info a {
    transition: opacity 0.3s;
  }
  .p-column_info a:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) {
  .p-column_info a:hover {
    color: inherit;
  }
}
.p-column_cat {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .p-column_cat {
    margin-top: 27px;
  }
}
.p-column_cat a {
  display: block;
  padding: 7px 8px;
  background: var(--color-text-base);
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-column_cat a {
    padding: 6px 14px;
    border-radius: 2px;
    font-size: 15px;
  }
}
.p-column_mainTtl {
  margin: 13px 0 0;
  padding-bottom: 1em;
  border-bottom: 3px solid var(--color-text-base);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2666666667;
}
@media screen and (max-width: 767px) {
  .p-column_mainTtl {
    margin-top: 17px;
    padding-bottom: 0.25em;
    border-width: 2px;
    font-size: 20px;
    line-height: 1.475;
  }
}
.p-column_post {
  padding-top: 49px;
}
@media screen and (max-width: 767px) {
  .p-column_post {
    padding-top: 15px;
  }
}
.p-column_foot {
  margin-top: 75px;
  padding-top: 138px;
  border-top: 1px solid var(--color-boder02);
}
@media screen and (max-width: 767px) {
  .p-column_foot {
    margin-top: 45px;
    padding-top: 45px;
  }
}

/* ========================================
特定商取引法に基づく表記 p-law
======================================== */
.p-lawOverView {
  border-top: 1px solid var(--color-boder02);
  border-right: 1px solid var(--color-boder02);
  border-left: 1px solid var(--color-boder02);
}
@media screen and (max-width: 767px) {
  .p-lawOverView {
    margin-top: 0;
  }
}
.p-lawOverView dl {
  display: flex;
  margin: 0;
  border-bottom: 1px solid var(--color-boder02);
  font-size: 15px;
  line-height: 1.4666666667;
}
@media screen and (max-width: 767px) {
  .p-lawOverView dl {
    line-height: 1.5;
  }
}
@media screen and (min-width: 768px) {
  .p-lawOverView dl.-minPd dt,
  .p-lawOverView dl.-minPd dd {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
.p-lawOverView dt,
.p-lawOverView dd {
  padding: 23px 10px;
}
@media screen and (max-width: 767px) {
  .p-lawOverView dt,
  .p-lawOverView dd {
    padding: 6px;
  }
}
.p-lawOverView dt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 197px;
  border-right: 1px solid var(--color-boder02);
  background: var(--color-bg03);
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-lawOverView dt {
    width: 98px;
    align-items: flex-start;
  }
}
.p-lawOverView dd {
  flex: 1;
  margin: 0;
  padding-left: min(calc(63 / 1440 * 100vw), 63px);
  padding-right: min(calc(62 / 1440 * 100vw), 62px);
}
@media screen and (max-width: 767px) {
  .p-lawOverView dd {
    padding-left: 15px;
    padding-right: 10px;
  }
}
.p-lawOverView_listDotted {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.p-lawOverView_listDotted > li {
  padding-left: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-lawOverView_listDotted > li {
    padding-left: 22px;
  }
}
.p-lawOverView_listDotted > li::before {
  content: "・";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.p-lawOverView_listNum {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  counter-reset: tradelawListNum 0;
}
.p-lawOverView_listNum > li {
  padding-left: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-lawOverView_listNum > li {
    padding-left: 22px;
  }
}
.p-lawOverView_listNum > li::before {
  counter-increment: tradelawListNum 1;
  content: counter(tradelawListNum) " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 768px) {
  .p-lawlicense_cont {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .p-lawlicense_cont dl {
    display: contents;
  }
}
@media screen and (max-width: 767px) {
  .p-lawlicense_cont dl {
    display: grid;
    grid-template-columns: 48% 52%;
    margin: 0;
  }
  .p-lawlicense_cont dl + dl {
    margin-top: -1px;
  }
}
.p-lawlicense_cont dt,
.p-lawlicense_cont dd {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-boder01);
  margin: 0 0 0 -1px;
  padding: 5px;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-lawlicense_cont dt,
  .p-lawlicense_cont dd {
    justify-content: flex-start;
    margin-left: 0;
    padding: 5px 10px;
    text-align: left;
  }
}
.p-lawlicense_cont dt {
  background: var(--color-bg03);
  grid-row: 1/2;
  font-weight: 400;
}
.p-lawlicense_cont dd {
  margin-top: -1px;
}
@media screen and (max-width: 767px) {
  .p-lawlicense_cont dd {
    margin-top: 0;
    border-left: 0;
  }
  .p-lawlicense_cont dd + dd {
    border-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-lawlicense_cont ._dt02 {
    grid-column: 2/3;
  }
  .p-lawlicense_cont ._dt03 {
    grid-column: 3/4;
  }
  .p-lawlicense_cont ._dd01 {
    grid-column: 1/2;
    grid-row: 2/4;
  }
  .p-lawlicense_cont ._dd03 {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}
@media screen and (max-width: 767px) {
  .p-lawlicense_cont ._dt02,
  .p-lawlicense_cont ._dt03 {
    grid-row: 1/3;
  }
}

/* ========================================
プライバシーポリシー p-privacy
======================================== */
.p-privacy .m-list-num > li + li {
  margin-top: 1.5em;
}

@media screen and (min-width: 768px) {
  .p-privacyIntro {
    margin-top: 14px;
  }
}
.p-privacyIntro p {
  padding: 34px 0;
  border-bottom: 1px solid var(--color-boder02);
}
@media screen and (max-width: 767px) {
  .p-privacyIntro p {
    padding: 24px 0;
  }
  .p-privacyIntro p:first-child {
    padding-top: 0;
  }
}

/* ========================================
404ページ p-page404
======================================== */
.p-page404 {
  padding-top: 45px;
}
@media screen and (max-width: 767px) {
  .p-page404 {
    padding-top: 113px;
  }
}

.p-page404MainTtl {
  margin: 0;
  font-size: 26px;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-page404MainTtl {
    font-size: 20px;
  }
}
.p-page404MainTtl ._num {
  display: block;
  margin-bottom: 17px;
  font-family: var(--font-anton);
  font-size: 145px;
  font-weight: 400;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-page404MainTtl ._num {
    margin-bottom: 10px;
    font-size: 82px;
  }
}

.p-page404Desc {
  margin-top: 52px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-page404Desc {
    margin-top: 45px;
    margin-bottom: 40px;
  }
}

/* ========================================
メンテナンスページ p-maintenance
======================================== */
.p-maintenanceBody {
  display: block;
  margin: 0;
}

.p-maintenance {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 60px 0;
  box-sizing: border-box;
}

.p-maintenanceMainTtl {
  margin: 35px 0 0;
  font-size: 23px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-maintenanceMainTtl {
    font-size: 20px;
  }
}

.p-maintenanceDesc {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-maintenanceDesc {
    margin-top: 42px;
    font-weight: 500;
    line-height: 1.8;
  }
}/*# sourceMappingURL=my-style.css.map */