@charset "UTF-8";

/* ========================================
  レスポンシブ対応改行
======================================== */
br.smpBR {
  display: block;
}
@media screen and (min-width:601px) {
  br.smpBR {
    display: none;
  }
}

br.pcBR {
  display: none;
}
@media screen and (min-width:601px) {
  br.pcBR {
    display: block;
  }
}

/* ========================================
  商品一覧
======================================== */
ul.itemList {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
ul.itemList li {
  width: 49%;
  margin-right: 2%;
}
ul.itemList li:nth-child(2n) {
  margin-right: 0;
}
ul.itemList li a img {
  width: 100%;
}
ul.itemList.itemList3 li {
  width: 32%;
  margin-right: 2%;
}
ul.itemList.itemList3 li:nth-child(3n) {
  margin-right: 0;
}
ul.itemList.itemList4 li {
  width: 32%;
  margin-right: 2%;
}
ul.itemList.itemList4 li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (min-width:961px) {
  ul.itemList.itemList4 li {
    width: 23.5%;
  }
  ul.itemList.itemList4 li:nth-child(2n) {
    margin-right: 2%;
  }
  ul.itemList.itemList4 li:nth-child(4n) {
    margin-right: 0;
  }
}
ul.itemList.itemList5 li {
  width: 32%;
  margin-right: 2%;
}
ul.itemList.itemList5 li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (min-width:961px) {
  ul.itemList.itemList5 li {
    width: 18.4%;
  }
  ul.itemList.itemList5 li:nth-child(3n) {
    margin-right: 2%;
  }
  ul.itemList.itemList5 li:nth-child(5n) {
    margin-right: 0;
  }
}
ul.itemList.itemList6 li {
  width: 32%;
  margin-right: 2%;
}
ul.itemList.itemList6 li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (min-width:961px) {
  ul.itemList.itemList6 li {
    width: 15%;
  }
  ul.itemList.itemList6 li:nth-child(3n) {
    margin-right: 2%;
  }
  ul.itemList.itemList6 li:nth-child(6n) {
    margin-right: 0;
  }
}

@keyframes arrow {
  0% {
    transform: rotate(-90deg) translateY(0);
  }
  60% {
    transform: rotate(-90deg) translateY(30px);
  }
  0%, 60%, 100% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
}

/* ========================================
  モーダル
======================================== */
.modalWrap {
  text-align: center;
}
.modalWrap #modalBg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
}
.modalWrap #modalMain {
  min-width: 320px;
  max-width: 600px;
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 16px -4px rgba(0, 0, 0, 0.25);
}
.modalWrap #modalMain p {
  width: 100%;
}
.modalWrap #modalMain .modalNotice {
  text-align: center;
  color: #ffffff;
}
.modalWrap #modalMain .modalNotice strong {
  font-size: 1.25em;
  margin-top: 12px;
}
.modalWrap #modalMain .modalNotice > span {
  display: block;
  font-size: 14px;
  margin-top: 12px;
}
.modalWrap #modalMain .modalNotice b {
  color: #ffff00;
  text-align: center;
  display: block;
  margin-top: 8px;
  font-size: 1.5em;
}
.modalWrap #modalMain .modalNotice a {
  display: block;
  margin: 12px 0 0;
}
.modalWrap #modalMain .modalNotice a > span {
  display: inline-block;
  background-color: #ffffff;
  padding: 4px 8px;
  border-radius: 8px;
  color: #413f45;
}
.modalWrap #modalMain .modalNotice a:nth-child(2) span {
  background-color: #FFAA00;
  color: #000000;
}
.modalWrap #modalMain .modalNotice .cordList {
  margin: 12px 0 16px;
}
.modalWrap #modalMain .modalNotice .cordList ul li {
  line-height: 1.5;
}
.modalWrap #modalMain .modalNotice .cordList ul li p {
  font-style: 0.85em;
}
.modalWrap #modalMain .modalNotice .cordList ul li p span {
  font-size: 1.25em;
}
.modalWrap #modalMain .modalNotice .cordList > p {
  font-size: 0.85em;
  font-weight: 300;
}
.modalWrap #modalMain .modalNotice #copyBtn {
  background-color: #ffffff;
  padding: 8px;
  color: #413f45;
  display: inline-block;
  width: 160px;
  margin: 12px 0;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 0 16px -4px rgba(0, 0, 0, 0.25);
  font-weight: bold;
}
.modalWrap #modalMain p.modalCheck {
  color: #ffffff;
  padding-top: 4px;
  width: 50%;
}
.modalWrap #modalMain p.modalCheck input {
  margin-right: 8px;
  margin-top: 0px;
  color: #ffffff;
}
.modalWrap #modalMain > div {
  width: 100%;
}
.modalWrap #modalMain > div #modalClose {
  width: 150px !important;
  margin-top: 12px;
  padding: 5px;
  cursor: pointer;
  display: inline-block;
  color: #ffffff;
  border-radius: 3px;
}

/* ========================================
  アナウンス・カウントダウン表示
======================================== */
.anaunWrap {
  position: fixed;
  right: 0;
  bottom: 24px;
  padding: 12px 4px 16px;
  width: 145px;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  z-index: 100;
  box-shadow: 0 0 16px -4px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width:961px) {
  .anaunWrap {
    width: 160px;
  }
}
.anaunWrap .anaunInner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.anaunWrap .anaunInner h3 {
  width: 100%;
  font-weight: 700;
  text-align: center;
  color: #ffff00;
}
.anaunWrap .anaunInner p.anaunPeriod {
  width: 100%;
  font-size: 0.75em;
  margin-top: 2px;
  color: #ffff00;
}
.anaunWrap .anaunInner p.anaunPeriod > span {
  display: block;
  letter-spacing: -0.5px;
  font-size: 0.9em;
}
.anaunWrap .anaunInner p.anaunDetail {
  display: inline-block;
  text-align: center;
  font-size: 1em;
}
@media screen and (min-width:961px) {
  .anaunWrap .anaunInner p {
    font-size: 1em;
  }
}
.anaunWrap .anaunInner a {
  width: 150px;
  height: 35px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.5s;
  background-color: #000000;
  color: #ffffff;
  font-size: 12px;
  border-radius: 10px;
  width: 100px;
  height: 20px;
  background-color: #ffffff;
  color: #413f45;
  font-size: 12px;
  margin-top: 12px;
}
@media screen and (min-width:961px) {
  .anaunWrap .anaunInner a {
    width: 220px;
    height: 55px;
    font-size: 14px;
  }
}
@media screen and (min-width:961px) {
  .anaunWrap .anaunInner a {
    font-size: 12px;
    width: 120px;
    height: 20px;
  }
}
.anaunWrap .anaunClose {
  position: absolute;
  top: 0px;
  right: 6px;
}
.anaunWrap .anaunClose button {
  border: none;
  background-color: transparent;
  width: 10px;
}
.anaunWrap .anaunClose button span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
}
.anaunWrap .anaunClose button span:nth-child(1) {
  transform: rotate(45deg);
}
.anaunWrap .anaunClose button span:nth-child(2) {
  margin-top: -2px;
  transform: rotate(-45deg);
}

@keyframes bgMove {
  0% {
    background-position: 23% center;
  }
  100% {
    background-position: 90% center;
  }
}

section.footerQa {
  display: none;
  margin-top: 24px;
}
section.footerQa .secTitle {
  background-color: #413f45;
  height: 64px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
section.footerQa .secTitle h2 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
}
section.footerQa .footerQaDetail dl {
  margin-top: 24px;
}
section.footerQa .footerQaDetail dl dt {
  padding-left: 40px;
  position: relative;
}
section.footerQa .footerQaDetail dl dt::before {
  content: "Q";
  background-color: #f2f2f2;
  width: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 8px;
}
section.footerQa .footerQaDetail dl dt h3 {
  margin-left: 8px;
  font-size: 16px;
  font-weight: 700;
  padding-top: 8px;
}
section.footerQa .footerQaDetail dl dd {
  margin: 16px 0 24px;
  padding-left: 48px;
  position: relative;
}
section.footerQa .footerQaDetail dl dd::before {
  content: "A.";
  font-size: 16px;
  font-weight: 700;
  position: absolute;
  top: -2px;
  left: 24px;
}
section.footerQa .secBtn a:nth-child(2) {
  display: none;
  background-color: #413f45;
  color: #ffffff;
}

.incColumn section {
  margin-top: 0px;
  margin-bottom: 64px;
}
@media screen and (min-width:961px) {
  .incColumn section {
    margin-bottom: 160px;
  }
}

.reviewRate {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.reviewRate .reviewRateStar {
  text-indent: -9999px;
  width: 18px;
  height: 18px;
  margin: 0 2px;
  background-size: 100%;
  background-image: url("https://isseiki.net/ifs/img/common/icon-star_line.svg");
  cursor: pointer;
}
.reviewRate .reviewRateStar.starOn {
  background-image: url("https://isseiki.net/ifs/img/common/icon-star.svg");
}

#item .headerBar,#category .headerBar {
  margin-top: 120px;
  margin-bottom: -80px;
}

.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.pager li {
  margin: 0 12px;
  display: block;
  font-size: 1.5em;
}
.pager li a {
  font-weight: 700;
  color: #cccccc;
}
.pager li a.current {
  color: #413f45;
}

.content-item {
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 80px;
}
.content-item h3 {
  font-weight: 700;
  font-size: 1.2em;
}
.content-item .content-text, .content-item p {
  margin-top: 24px;
  line-height: 2;
}
.content-item ol {
  list-style-type: decimal;
}
.content-item ol li {
  margin-bottom: 12px;
  margin-left: 16px;
}
@media screen and (min-width:961px) {
  .content-item ol li {
    margin-left: 32px;
  }
}


/* ========================================
  FREE PAGE フリーページ（共通）
======================================== */
.freePage .contents {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

@media screen and (min-width:961px) {
  .freePage .contents {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}

.freePage .contents section {
  margin-top: 2rem;
}

.freePage .secInr .secBtn{
  margin-top: 40px;
  text-align: center;
}

.freePage .secInr .secBtn a{
  width: 200px;
  height: 36px;
  border-radius: 36px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border: 1px solid #413f45;
}

.freePage .contents section.pageTitle {
  padding-top: 40px;
}

.freePage .contents section.pageTitle .secTitle {
  margin-bottom: 0;
}

.freePage .contents section.pageTitle .secTitle h2 {
  font-size: 1.1em;
  text-align: center;
  font-weight: 300;
}

.freePage .contents section.pageTitle .secTitle h2 span {
  font-size: 1.5em;
  display: block;
  font-weight: 500;
}

/* ========================================
  FREE PAGE フリーページ（シリーズ一覧）
======================================== */
#series_page .freePage .contents section.pageTitle {
  padding-top: 0;
}

.freePage .contents section.seriesList .secInr {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.freePage .contents section.seriesList .secInr .seriesBox {
  width: 30.6%;
  margin-right: 4%;
  margin-bottom: 40px;
}

.freePage .contents section.seriesList .secInr .seriesBox:nth-child(3n) {
  margin-right: 0;
}

@media screen and (min-width:961px) {
  .freePage .contents section.seriesList .secInr .seriesBox {
    width: 22%;
    margin-right: 4%;
  }
  .freePage .contents section.seriesList .secInr .seriesBox:nth-child(3n) {
    margin-right: 4%;
  }
  .freePage .contents section.seriesList .secInr .seriesBox:nth-child(4n) {
    margin-right: 0;
  }
}

.freePage .contents section.seriesList .secInr .seriesBox > p {
  margin-bottom: 2px;
  text-align: center;
  background-color: #F7F5F2;
  padding: 2px;
}

.freePage .contents section.seriesList .secInr .seriesBox ul li {
  line-height: 2;
  border-bottom: 1px solid #888888;
  padding-left: 4px;
}

.freePage .contents section.seriesList .secInr .seriesBox ul li:hover {
  background-color: #F7F5F2;
}

.freePage .contents section.seriesList .secInr .seriesBox ul li a h3 {
  font-weight: 500;
  letter-spacing: 1px;
}

/* ========================================
  FREE PAGE フリーページ（心地よい暮らし）
======================================== */
#free_page .contents section.fpCoodinate .ecbn-selection-page-wrapper .ecbn-selection-title img {
  margin: -4px auto 12px;
}

#free_page .contents section.fpCoodinate .cIfsBaseWrap {
  background-color: #ffffff;
  padding-bottom: 10px;
  width: 100%;
  max-width: 1280px;
  min-width: 320px;
  margin: 0 auto;
  padding: 0;
  text-align: left;
}

#free_page .contents section.fpCoodinate .cIfsBaseWrap p {
  letter-spacing: 1px;
  font-feature-settings: "palt" 1;
  font-kerning: auto;
  line-height: 1.4;
  font-weight: 500;
  font-size: 16px;
}

#free_page .contents section.fpCoodinate .cContentsContainer {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

#free_page .contents section.fpCoodinate .cIntroduction {
  margin: 0 auto 36px;
  text-align: center;
}

#free_page .contents section.fpCoodinate .cIntroduction > h1 {
  width: 80%;
  margin: 0 auto 16px;
  font-size: 28px;
  letter-spacing: 3px;
  line-height: 1.3;
  font-weight: 500;
}

#free_page .contents section.fpCoodinate .cIntroduction > h1 > span {
  font-size: 0.8em;
  color: #8BBDFF;
}

#free_page .contents section.fpCoodinate .cIntroduction > p {
  line-height: 2em;
}

#free_page .contents section.fpCoodinate img.ctest {
  max-width: 500px;
  width: 90%;
  margin: 20px auto;
}

#free_page .contents section.fpCoodinate .cSeriesEntry {
  width: 60%;
  margin: 50px auto;
  padding: 10px 3%;
  background: #fff;
  border-radius: 10px;
}

#free_page .contents section.fpCoodinate .cSeriesEntry > h2 {
  text-align: center;
  margin: 10px auto;
  color: #415769;
  font-size: 1.5em;
  font-weight: 700;
}

#free_page .contents section.fpCoodinate .cSeriesLeadImg {
  width: 100%;
}

#free_page .contents section.fpCoodinate .cSeriesFollowImages {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 20px 0;
  align-items: flex-start;
}

#free_page .contents section.fpCoodinate .cSeriesFollowImages > img {
  width: 30%;
}

#free_page .contents section.fpCoodinate .cSeriesSummary {
  letter-spacing: -1px;
  font-size: 15px;
  line-height: 2em;
}

#free_page .contents section.fpCoodinate .cItemList {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}

#free_page .contents section.fpCoodinate .cItemEntry {
  width: 23%;
  margin: 10px 1% 0;
  background-color: #e4cf08;
  padding-bottom: 5px;
  list-style: none;
}

#free_page .contents section.fpCoodinate .cItemEntry img {
  width: 100%;
  margin-bottom: 5px;
  background: #fff;
}

#free_page .contents section.fpCoodinate .cItemEntry a {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #ffffff;
  letter-spacing: 0px;
  line-height: 1.2em;
}

#free_page .contents section.fpCoodinate .cFinalContainer {
  text-align: center;
}

#free_page .contents section.fpCoodinate .cAllItems {
  display: inline-block;
  border: solid 2px #70b3ff;
  border-radius: 5px;
  background-color: #ffffff;
  padding: 5px 10px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #70b3ff;
}

#free_page .contents section.fpCoodinate .cGiftBannar {
  text-align: center;
}

#free_page .contents section.fpCoodinate .cGiftBannar p {
  line-height: 1.25em;
}

@media screen and (max-width: 640px) {
  #free_page .contents section.fpCoodinate .cContentsContainer {
    width: 94%;
  }

  #free_page .contents section.fpCoodinate .cIntroduction > h1 {
    font-size: 22px;
    width: 90%;
  }

  #free_page .contents section.fpCoodinate .cIntroduction > p {
    font-size: 14px;
  }

  #free_page .contents section.fpCoodinate .cSeriesEntry {
    width: 80%;
  }

  #free_page .contents section.fpCoodinate .cSeriesEntry > h2 {
    font-size: 20px;
  }

  #free_page .contents section.fpCoodinate .cSeriesSummary {
    font-size: 14px;
    line-height: 2em;
    padding-top: 20px;
  }

  #free_page .contents section.fpCoodinate .cItemEntry {
    width: 31.33%;
  }

  #free_page .contents section.fpCoodinate .cGiftBannar {
    font-size: 14px;
    margin-top: 32px;
  }
}

@media screen and (max-width: 320px) {
  #free_page .contents section.fpCoodinate .cIntroduction {
    padding-top: 90px;
  }

  #free_page .contents section.fpCoodinate .cIntroduction > h1 {
    font-size: 18px;
  }

  #free_page .contents section.fpCoodinate .cIntroduction > p {
    font-size: 12px;
  }

  #free_page .contents section.fpCoodinate .cSeriesEntry {
    width: 90%;
  }

  #free_page .contents section.fpCoodinate .cSeriesEntry > h2 {
    font-size: 17px;
  }

  #free_page .contents section.fpCoodinate .cItemEntry {
    width: 48%;
  }
}

/* ========================================
  FREE PAGE フリーページ（セールページ）
======================================== */
.freePage .secInr .ichioshi {
  background-color: #E66B58;
  margin-bottom: 40px;
  padding: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.freePage .secInr .ichioshi span {
  font-size: 2em;
  color: #FFF;
  border: 1px solid #FFF;
  padding: 20px;
  width: 100%;
}

.freePage .contents section.fpHeader {
  margin-top: 6rem;
}

.freePage .contents section.fpHeader .bannerArea img {
  width: 100%;
}

.freePage .contents section.fpHeader .bannerArea img.imgPc {
  display: none;
}

@media screen and (min-width:961px) {
  .freePage .contents section.fpHeader .bannerArea img.imgPc {
    display: block;
  }
}

@media screen and (min-width:961px) {
  .freePage .contents section.fpHeader .bannerArea img.imgSp {
    display: none;
  }
}

.freePage .contents section.fpHeader .fpOv {
  margin-top: 24px;
}

.freePage .contents section.fpHeader .fpOv h2 {
  font-size: 1.5em;
  text-align: center;
  font-weight: 700;
}

@media screen and (min-width:961px) {
  .freePage .contents section.fpHeader .fpOv h2 {
    font-size: 2em;
  }
}

.freePage .contents section.fpHeader .fpOv p.fpPeriod {
  margin-top: 16px;
  white-space: nowrap;
  text-align: center;
  font-weight: 700;
}

@media screen and (min-width:961px) {
  .freePage .contents section.fpHeader .fpOv p.fpPeriod {
    font-size: 1.25em;
  }
}

.freePage .contents section.fpHeader .fpOv p.fpDesc {
  margin-top: 12px;
  line-height: 2;
  text-align: justify;
}

@media screen and (min-width:961px) {
  .freePage .contents section.fpHeader .fpOv p.fpDesc {
    font-size: 1.1em;
    text-align: center;
  }
}

.freePage .contents section.fpHeader .fpOv.lp {
  background-color: #cccccc;
  padding: 40px;
  text-align: center;
}

.freePage .contents section.saleDetail {
  margin-top: 2rem;
}

.freePage .contents section.saleDetail .secInr {
  max-width: 960px;
  margin:0 auto;
}

.freePage .contents section.saleDetail .secInr .saleDetailBox {
  background-color: #F7F5F2;
  padding: 16px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.saleDetail .secInr .saleDetailBox {
    padding: 32px;
  }
}

.freePage .contents section.saleDetail .secInr .saleDetailBox p.saleDetailTitle {
  font-weight: 700;
  text-align: center;
}

.freePage .contents section.saleDetail .secInr .saleDetailBox p.noticeCoupon {
  text-align: right;
  font-size: 11px;
  text-align: center;
}

.freePage .contents section.saleDetail .secInr .saleDetailBox ul li {
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 12px;
  margin: 16px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 600px;
}

.freePage .contents section.saleDetail .secInr .saleDetailBox ul li p {
  width: calc(100% - 72px);
}

@media screen and (min-width:961px) {
  .freePage .contents section.saleDetail .secInr .saleDetailBox ul li p {
    width: calc(100% - 120px);
  }
}

.freePage .contents section.saleDetail .secInr .saleDetailBox ul li p strong {
  color: #FFAA00;
}

.freePage .contents section.saleDetail .secInr .saleDetailBox ul li button {
  width: 150px;
  height: 35px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.5s;
  background-color: #000000;
  color: #ffffff;
  font-size: 12px;
  border-radius: 10px;
  width: 60px;
  height: 60px;
  font-size: 10px;
  margin-left: 12px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.saleDetail .secInr .saleDetailBox ul li button {
    width: 220px;
    height: 55px;
    font-size: 14px;
  }
}

@media screen and (min-width:961px) {
  .freePage .contents section.saleDetail .secInr .saleDetailBox ul li button {
    font-size: 12px;
    width: 100px;
    margin-left: 20px;
  }
}

.freePage .contents section.saleDetail .secInr .saleDetailBox ul li.couponEnd {
  background-color: #cccccc;
}

.freePage .contents section.saleDetail .secInr .saleDetailBox ul li.couponEnd p span {
  color: #9a2323;
  font-weight: 700;
}

.freePage .contents section.saleDetail .secInr .noticeCampaign {
  margin-top: 16px;
}

.freePage .contents section.saleDetail .secInr .noticeCampaign p {
  font-size: 12px;
  line-height: 2;
  text-align: left;
}

.freePage .contents section.saleDetail .secInr .noticeCampaign p span {
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.freePage .contents section.saleReco .secInr ul.itemList li {
  margin-bottom: 24px;
  position: relative;
}

.freePage .contents section.saleReco .secInr ul.itemList li a p.itemName {
  height: 40px;
}

.freePage .contents section.saleReco .secInr ul.itemList li a p.normalPrice {
  text-decoration: line-through;
  text-align: right;
}

.freePage .contents section.saleReco .secInr ul.itemList li a p.salePrice {
  text-align: right;
  color: #E66B58;
  font-weight: 700;
  font-size: 1.25em;
}

.freePage .contents section.saleReco .secInr ul.itemList li a p.saleRecoRate {
  position: absolute;
  bottom: 4px;
  right: 80px;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background-color: rgba(255, 0, 0, 0.5);
  color: #ffffff;
  text-align: center;
  line-height: 1;
  padding-top: 8px;
  font-size: 12px;
}

/* ========================================
  FREE PAGE フリーページ（大口ご注文）
======================================== */
.freePage .contents section.alotDetail {
  margin-top: 0;
  text-align: justify;
}

.freePage .contents section.alotDetail .secInr {
  max-width: 960px;
  margin: 0 auto;
}

.freePage .contents section.alotDetail .secInr dl {
  margin-bottom: 40px;
}

.freePage .contents section.alotDetail .secInr dl dt {
  text-align: center;
  height: 40px;
  margin-top: 40px;
  background-color: #B4A18F;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width:961px) {
  .freePage .contents section.alotDetail .secInr dl dt {
    margin-top: 80px;
  }
}

.freePage .contents section.alotDetail .secInr dl dd {
  margin-top: 16px;
}

.freePage .contents section.alotDetail .secInr dl dd ul {
  margin-top: 16px;
  padding-left: 24px;
}

.freePage .contents section.alotDetail .secInr dl dd ul li {
  list-style: disc;
  line-height: 2;
}

.freePage .contents section.alotDetail .secInr dl dd p {
  line-height: 1.75;
}

.freePage .contents section.alotDetail .secInr dl dd p b {
  font-size: 1.1em;
  margin-top: 16px;
  display: inline-block;
}

.freePage .contents section.alotDetail .secInr dl dd p b span {
  color: #9A2323;
}

.freePage .contents section.alotDetail .secInr dl dd p span {
  font-size: 12px;
}

.freePage .contents section.alotDetail .secInr dl dd .btn {
  margin-top: 16px;
  text-align: center;
}

@media screen and (min-width:961px) {
  .freePage .contents section.alotDetail .secInr dl dd .btn {
    margin-top: 40px;
  }
}

.freePage .contents section.alotDetail .secInr dl dd .btn a {
  width: 150px;
  height: 35px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.5s;
  background-color: #000000;
  color: #ffffff;
  font-size: 12px;
  border-radius: 10px;
  width: 200px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.alotDetail .secInr dl dd .btn a {
    width: 220px;
    height: 55px;
    font-size: 14px;
  }
}

/* ========================================
  FREE PAGE フリーページ（メンテナンスについて）
======================================== */
.freePage .contents section.mainteDetail {
  margin-top: 0;
}

.freePage .contents section.mainteDetail .secInr {
  max-width: 960px;
  margin: 0 auto;
}

.freePage .contents section.mainteDetail .secInr dl {
  margin-bottom: 40px;
}

.freePage .contents section.mainteDetail .secInr dl dt {
  text-align: center;
  height: 40px;
  margin-top: 40px;
  background-color: #B4A18F;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width:961px) {
  .freePage .contents section.mainteDetail .secInr dl dt {
    margin-top: 80px;
  }
}

.freePage .contents section.mainteDetail .secInr dl dd {
  margin-top: 16px;
}

.freePage .contents section.mainteDetail .secInr dl dd p {
  line-height: 2;
}

.freePage .contents section.mainteDetail .secInr dl dd p span {
  font-weight: 700;
  display: block;
}

.freePage .contents section.mainteDetail .secInr dl dd p.mainteAbout {
  padding: 12px;
}

.freePage .contents section.mainteDetail .secInr dl dd p.mainteNote {
  margin-top: 16px;
  border-radius: 8px;
  padding: 12px;
  background-color: #F7F5F2;
}

.freePage .contents section.mainteDetail .secInr dl dd .mainteImg {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 16px 0;
}

.freePage .contents section.mainteDetail .secInr dl dd .mainteImg figure {
  width: 30%;
  margin-right: 5%;
}

@media screen and (min-width:961px) {
  .freePage .contents section.mainteDetail .secInr dl dd .mainteImg figure {
    padding: 0px;
  }
}

.freePage .contents section.mainteDetail .secInr dl dd .mainteImg figure:nth-child(3n) {
  margin-right: 0;
}

.freePage .contents section.mainteDetail .secInr dl dd .mainteImg figure img {
  width: 100%;
}

.freePage .contents section.mainteDetail .secInr dl dd .mainteImg figure figcaption {
  font-size: 12px;
  text-align: justify;
  margin-top: 4px;
  color: #707070;
}

.freePage .contents section.mainteDetail .secInr dl dd .maintenOilFlow {
  margin: 16px 0;
}

.freePage .contents section.mainteDetail .secInr dl dd .maintenOilFlow > p {
  font-weight: 700;
}

.freePage .contents section.mainteDetail .secInr dl dd .maintenOilFlow ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 12px;
}

.freePage .contents section.mainteDetail .secInr dl dd .maintenOilFlow ul li {
  width: 32%;
  margin-right: 2%;
}

.freePage .contents section.mainteDetail .secInr dl dd .maintenOilFlow ul li:nth-child(3n) {
  margin-right: 0;
}

@media screen and (min-width:961px) {
  .freePage .contents section.mainteDetail .secInr dl dd .maintenOilFlow ul li {
    width: 30.6%;
    margin-right: 4%;
  }

  .freePage .contents section.mainteDetail .secInr dl dd .maintenOilFlow ul li:nth-child(3n) {
    margin-right: 0;
  }
}

.freePage .contents section.mainteDetail .secInr dl dd .maintenOilFlow ul li a img {
  width: 100%;
}

.freePage .contents section.mainteDetail .secInr dl dd .maintenOilFlow ul li p {
  font-size: 12px;
  letter-spacing: -1px;
  line-height: 1.5;
  height: 48px;
  margin-top: 4px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.mainteDetail .secInr dl dd .maintenOilFlow ul li p {
    font-size: 1em;
    letter-spacing: 0;
  }
}

.freePage .contents section.mainteDetail .secInr dl dd .itemList {
  margin-top: 24px;
}

.freePage .contents section.mainteDetail .secInr dl dd .itemList > p {
  font-weight: 700;
}

.freePage .contents section.mainteDetail .secInr dl dd .itemList ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 12px;
}

.freePage .contents section.mainteDetail .secInr dl dd .itemList ul li {
  width: 48%;
  margin-right: 4%;
}

.freePage .contents section.mainteDetail .secInr dl dd .itemList ul li:nth-child(2n) {
  margin-right: 0;
}

@media screen and (min-width:961px) {
  .freePage .contents section.mainteDetail .secInr dl dd .itemList ul li {
    width: 22%;
  }

  .freePage .contents section.mainteDetail .secInr dl dd .itemList ul li:nth-child(2n) {
    margin-right: 4%;
  }

  .freePage .contents section.mainteDetail .secInr dl dd .itemList ul li:nth-child(4n) {
    margin-right: 0;
  }
}

.freePage .contents section.mainteDetail .secInr dl dd .itemList ul li a img {
  width: 100%;
  padding: 10%;
}

.freePage .contents section.mainteDetail .secInr dl dd .itemList ul li a p {
  text-align: center;
}

.freePage .contents section.mainteDetail .secInr dl dd > ul {
  margin-top: 16px;
  padding-left: 24px;
}

.freePage .contents section.mainteDetail .secInr dl dd > ul > li {
  list-style: disc;
  line-height: 2;
}

.freePage .contents section.mainteDetail .secInr dl dd > ul > li a {
  text-decoration: underline;
}

.freePage .contents section.mainteDetail .secInr dl dd .btn {
  margin-top: 16px;
  text-align: center;
}

@media screen and (min-width:961px) {
  .freePage .contents section.mainteDetail .secInr dl dd .btn {
    margin-top: 40px;
  }
}

.freePage .contents section.mainteDetail .secInr dl dd .btn a {
  width: 150px;
  height: 35px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.5s;
  background-color: #000000;
  color: #ffffff;
  font-size: 12px;
  border-radius: 10px;
  width: 200px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.mainteDetail .secInr dl dd .btn a {
    width: 220px;
    height: 55px;
    font-size: 14px;
  }
}

/* ========================================
  FREE PAGE フリーページ（偽サイトにご注意ください）
======================================== */
.freePage .contents section.fakeSite .secInr {
  max-width: 960px;
  margin: 0 auto;
}

.freePage .contents section.fakeSite .secInr .fpOv {
  text-align: center;
}

.freePage .contents section.fakeSite .secInr .fpOv .corpAdress {
  display: inline-block;
  padding: 16px;
  background-color: #F7F5F2;
  margin-top: 24px;
}

.freePage .contents section.fakeSite .secInr .fpOv .corpAdress a {
  text-decoration: underline;
  margin-top: 8px;
  display: inline-block;
}

.freePage .contents section.fakeSiteDetail {
  margin-top: 40px;
}

.freePage .contents section.fakeSiteDetail h3 {
  height: 50px;
  margin-top: 40px;
  background-color: #B4A18F;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding-left: 16px;
}

.freePage .contents section.fakeSiteDetail ul {
  padding: 24px 32px;
}

.freePage .contents section.fakeSiteDetail ul li {
  list-style: disc;
  line-height: 2;
}

.freePage .contents section.fakeSiteDetail ul li a {
  display: inline-block;
  text-decoration: underline;
  margin-bottom: 16px;
}

/* ========================================
  FREE PAGE フリーページ（配送について）
======================================== */
.freePage .contents section.deliveryWrap .secInr {
  max-width: 800px;
  margin: 0 auto;
}

.freePage .contents section.deliveryWrap .secInr h3 {
  text-align: center;
  height: 40px;
  margin-top: 40px;
  background-color: #707070;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 1.25em;
}

@media screen and (min-width:961px) {
  .freePage .contents section.deliveryWrap .secInr h3 {
    margin-top: 24px;
  }
}

.freePage .contents section.deliveryWrap .secInr dl {
  margin-top: 24px;
}

.freePage .contents section.deliveryWrap .secInr dl .deliImg img {
  width: 100%;
  display: block;
  margin: 16px auto 0;
}

.freePage .contents section.deliveryWrap .secInr dl dt {
  margin-top: 16px;
  font-size: 1.15em;
  padding: 2px 12px 4px;
  display: inline-block;
}

.freePage .contents section.deliveryWrap .secInr dl dd {
  margin-top: 16px;
  margin-bottom: 40px;
}

.freePage .contents section.deliveryWrap .secInr dl dd > span {
  display: inline-block;
  border: 1px solid #413f45;
  padding: 4px 8px 5px;
  border-radius: 8px;
  font-weight: 500;
  margin: 8px 2px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.deliveryWrap .secInr dl dd > span {
    padding: 8px 16px 10px;
    margin: 8px 4px;
  }
}

.freePage .contents section.deliveryWrap .secInr dl dd > span.paid {
  border-color: #E66B58;
  color: #E66B58;
}

.freePage .contents section.deliveryWrap .secInr dl dd > span.imp {
  background-color: #413f45;
  color: #ffffff;
}

.freePage .contents section.deliveryWrap .secInr dl dd p {
  margin-top: 12px;
}

.freePage .contents section.deliveryWrap .secInr dl dd p.deliNotice {
  padding: 12px;
  border: 1px dashed #707070;
  line-height: 2;
  width: 100%;
  color: #707070;
  font-weight: 500;
}

.freePage .contents section.deliveryWrap .secInr dl dd p > span::before {
  content: "-";
  display: inline-block;
  margin-right: 8px;
}

.freePage .contents section.deliveryWrap .secInr dl dd p > span::after {
  content: "-";
  display: inline-block;
  margin-left: 8px;
}

.freePage .contents section.deliveryWrap .secInr dl dd ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 16px;
}

.freePage .contents section.deliveryWrap .secInr dl dd ul li {
  width: 23.5%;
  margin-right: 2%;
}

.freePage .contents section.deliveryWrap .secInr dl dd ul li:nth-child(4) {
  margin-right: 0;
}

@media screen and (min-width:961px) {
  .freePage .contents section.deliveryWrap .secInr dl dd ul li {
    width: 10.75%;
  }

  .freePage .contents section.deliveryWrap .secInr dl dd ul li:nth-child(4) {
    margin-right: 2%;
  }

  .freePage .contents section.deliveryWrap .secInr dl dd ul li:nth-child(8) {
    margin-right: 0;
  }
}

.freePage .contents section.deliveryWrap .secInr dl dd ul li img {
  width: 100%;
}

.freePage .contents section.deliveryWrap .secInr dl dd > br {
  display: none;
}

@media screen and (min-width:961px) {
  .freePage .contents section.deliveryWrap .secInr dl dd > br {
    display: block;
  }
}

.freePage .contents section.deliveryWrap .secInr .chargeList {
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.freePage .contents section.deliveryWrap .secInr .chargeList::-webkit-scrollbar {
  display: none;
}

.freePage .contents section.deliveryWrap .secInr .chargeList table {
  border: 1px solid #888888;
  text-align: center;
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
  min-width: 800px;
}

.freePage .contents section.deliveryWrap .secInr .chargeList table * {
  vertical-align: middle;
  text-align: center;
  font-size: 12px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.deliveryWrap .secInr .chargeList table * {
    font-size: 1em;
  }
}

.freePage .contents section.deliveryWrap .secInr .chargeList table th {
  border: 1px solid #888888;
  padding: 8px 0;
  background-color: #F7F5F2;
  font-size: 0.8em;
}

@media screen and (min-width:961px) {
  .freePage .contents section.deliveryWrap .secInr .chargeList table th {
    font-size: 1em;
  }
}

.freePage .contents section.deliveryWrap .secInr .chargeList table th span {
  font-size: 10px;
  letter-spacing: -1px;
}

.freePage .contents section.deliveryWrap .secInr .chargeList table td {
  border: 1px solid #888888;
  padding: 8px 0;
}

/* ========================================
  FREE PAGE フリーページ（よくある質問）
======================================== */
.freePage .contents section.qa .secInr {
  max-width: 960px;
  margin: 0 auto;
}

.freePage .contents section.qa .secInr nav > ul {
  margin-top: 8px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.qa .secInr nav > ul > li {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}

.freePage .contents section.qa .secInr nav > ul > li > a {
  padding: 2px 4px;
  width: 100%;
  display: block;
}

.freePage .contents section.qa .secInr nav > ul > li > a::after {
  content: "のご質問";
}

.freePage .contents section.qa .secInr nav > ul > li > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: 12px 0;
}

.freePage .contents section.qa .secInr nav > ul > li > ul > li {
  margin: 0 10px 12px 0;
  display: inline-block;
  padding: 2px 6px 4px;
  background-color: #F7F5F2;
  border: 1px solid #cccccc;
  border-radius: 8px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.qa .secInr nav > ul > li > ul > li a {
    display: inline-block;
    margin-top: -6px;
    margin-right: 8px;
  }
}

.freePage .contents section.qa .secInr nav > ul > li > ul > li a::after {
  content: "▼";
  margin-top: -4px;
  margin-left: 2px;
  font-size: 10px;
}

.freePage .contents section.qa .secInr > ul {
  margin-top: 16px;
}

.freePage .contents section.qa .secInr > ul > li > p {
  font-weight: 700;
  text-align: center;
  padding: 4px 8px;
  background-color: #F7F5F2;
}

.freePage .contents section.qa .secInr > ul > li#after {
  margin-top: 40px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.qa .secInr > ul > li#after {
    margin-top: 80px;
  }
}

.freePage .contents section.qa .secInr > ul > li > ul > li {
  margin-top: 24px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.qa .secInr > ul > li > ul > li {
    margin-top: 80px;
  }

  .freePage .contents section.qa .secInr > ul > li > ul > li:nth-child(1) {
    margin-top: 24px;
  }
}

.freePage .contents section.qa .secInr > ul > li > ul > li > p {
  padding-top: 160px;
  margin-top: -160px;
  font-weight: 700;
  text-decoration: underline;
  font-size: 1.5em;
}

.freePage .contents section.qa .secInr > ul > li > ul > li > dl > dt {
  margin-top: 24px;
}

.freePage .contents section.qa .secInr > ul > li > ul > li > dl > dt::before {
  content: "Q.";
  font-size: 1.5em;
}

.freePage .contents section.qa .secInr > ul > li > ul > li > dl > dd {
  display: block;
  margin-top: 16px;
  margin-left: 24px;
}

.freePage .contents section.qa .secInr .rakutenOnly,
.freePage .contents section.qa .secInr .yahooOnly {
  display: none;
}

/* ========================================
  FREE PAGE フリーページ（ISSEIKIについて）
======================================== */
.freePage .contents section.aboutDetail .aboutText {
  text-align: center;
  font-weight: 700;
  font-size: 1.15em;
  letter-spacing: -0.5px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.aboutDetail .aboutText {
    font-size: 1.25em;
    letter-spacing: 1px;
  }
}

.freePage .contents section.aboutDetail .aboutText h3 {
  text-align: center;
}

.freePage .contents section.aboutDetail .aboutText p {
  text-align: left;
  margin-top: 8px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.aboutDetail .aboutText p {
    text-align: center;
    line-height: 2;
  }
}

.freePage .contents section.aboutDetail .aboutRinen {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 40px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.aboutDetail .aboutRinen {
    margin-top: 56px;
  }
}

.freePage .contents section.aboutDetail .aboutRinen h3 {
  font-weight: 700;
  font-size: 1.25em;
  text-align: center;
  width: 100%;
}

.freePage .contents section.aboutDetail .aboutRinen .rinenBox {
  margin-top: 24px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.aboutDetail .aboutRinen .rinenBox {
    width: 30%;
    margin-right: 5%;
  }

  .freePage .contents section.aboutDetail .aboutRinen .rinenBox:nth-child(3) {
    margin-right: 0;
  }
}

.freePage .contents section.aboutDetail .aboutRinen .rinenBox h4 {
  text-align: center;
  border: 2px solid #413f45;
  width: 72px;
  height: 72px;
  border-radius: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  font-weight: 700;
}

.freePage .contents section.aboutDetail .aboutRinen .rinenBox p {
  font-size: 1.05em;
  text-align: justify;
  margin-top: 12px;
  line-height: 2;
}

.freePage .contents section.aboutDetail .aboutRinen .rinenBox p span {
  display: block;
  text-align: center;
  margin-bottom: 12px;
  font-weight: 700;
}

.freePage .contents section.aboutDetail .aboutConcept {
  margin-top: 40px;
  position: relative;
}

@media screen and (min-width:961px) {
  .freePage .contents section.aboutDetail .aboutConcept {
    margin-top: 80px;
  }
}

.freePage .contents section.aboutDetail .aboutConcept img {
  width: 100%;
}

.freePage .contents section.aboutDetail .aboutConcept img.imgPc {
  display: none;
}

@media screen and (min-width:961px) {
  .freePage .contents section.aboutDetail .aboutConcept img.imgPc {
    display: block;
  }
}

@media screen and (min-width:961px) {
  .freePage .contents section.aboutDetail .aboutConcept img.imgSp {
    display: none;
  }
}

.freePage .contents section.aboutDetail .aboutConcept h3 {
  font-weight: 700;
  font-size: 1.25em;
  color: #ffffff;
  position: absolute;
  top: 8px;
  left: 12px;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
}

@media screen and (min-width:961px) {
  .freePage .contents section.aboutDetail .aboutConcept h3 {
    top: 24px;
    left: 24px;
    font-size: 1.5em;
  }
}

.freePage .contents section.aboutDetail .aboutConcept p {
  position: absolute;
  top: 40px;
  left: 12px;
  color: #ffffff;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

@media screen and (min-width:961px) {
  .freePage .contents section.aboutDetail .aboutConcept p {
    top: 64px;
    left: 24px;
  }
}

.freePage .contents section.aboutDetail .aboutFactory {
  margin-top: 40px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.aboutDetail .aboutFactory {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 80px;
  }
}

.freePage .contents section.aboutDetail .aboutFactory img {
  width: 200px;
  margin-right: 12px;
  float: left;
}

@media screen and (min-width:961px) {
  .freePage .contents section.aboutDetail .aboutFactory img {
    width: 50%;
    float: auto;
    margin-right: 0;
  }
}

@media screen and (min-width:961px) {
  .freePage .contents section.aboutDetail .aboutFactory .factBox {
    width: 50%;
  }
}

.freePage .contents section.aboutDetail .aboutFactory .factBox p {
  transform: translateY(-4px);
}

@media screen and (min-width:961px) {
  .freePage .contents section.aboutDetail .aboutFactory .factBox p {
    padding-left: 24px;
    font-size: 1.2em;
    line-height: 2;
  }
}

.freePage .contents section.aboutDetail .aboutFactory .factBox p span {
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}

.freePage .contents section.aboutDetail .aboutFactory .factBox p:nth-child(2) {
  margin-top: 24px;
}

.freePage .contents section.aboutDetail .aboutQuality {
  margin-top: 40px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.aboutDetail .aboutQuality {
    margin-top: 80px;
  }
}

.freePage .contents section.aboutDetail .aboutQuality p {
  text-align: center;
  width: 100%;
  font-weight: 700;
  line-height: 2;
}

@media screen and (min-width:961px) {
  .freePage .contents section.aboutDetail .aboutQuality p {
    font-size: 1.5em;
  }

  .freePage .contents section.aboutDetail .aboutQuality p br {
    display: none;
  }
}

.freePage .contents section.aboutDetail .aboutQuality img {
  width: 100%;
  margin-top: 20px;
}

.freePage .contents section.aboutDetail .aboutCompany {
  margin-top: 40px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.aboutDetail .aboutCompany {
    margin: 80px auto 0;
    max-width: 600px;
  }
}

.freePage .contents section.aboutDetail .aboutCompany h4 {
  text-align: center;
  font-size: 1.25em;
  font-weight: 700;
}

.freePage .contents section.aboutDetail .aboutCompany dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 24px;
}

.freePage .contents section.aboutDetail .aboutCompany dl dt {
  width: 140px;
}

.freePage .contents section.aboutDetail .aboutCompany dl dd {
  width: calc(100% - 140px);
  margin-bottom: 24px;
}

/* ========================================
  FREE PAGE フリーページ（VISUMO コーディネート一覧）
======================================== */
.freePage .contents section.instaWrap {
  margin-top: 0;
}

.freePage .contents section.instaWrap .visumoWrap .vsm-gallery .ecbn-selection-widget {
  max-width: 1200px;
  margin: 0 auto;
}

.freePage .contents section.instaWrap .visumoWrap .vsm-gallery .ecbn-selection-widget .ecbn-selection-title {
  display: none;
}

.freePage .contents section.instaWrap .visumoWrap .vsm-gallery .ecbn-selection-widget .ecbn-selection-description {
  text-align: center;
  line-height: 2;
  margin-top: 12px;
}

.freePage .contents section.instaWrap .visumoWrap .vsm-gallery .ecbn-selection-widget .ecbn-selection-description b {
  display: block;
  font-size: 0.75em;
}

.freePage .contents section.instaWrap .visumoWrap .vsm-gallery .ecbn-selection-widget .ecbn-selection-content {
  max-width: 100%;
  margin-top: 24px;
}

.freePage .contents section.instaWrap .visumoWrap .vsm-gallery .ecbn-selection-widget .ecbn-selection-content ul li {
  width: 50%;
}

@media screen and (min-width:961px) {
  .freePage .contents section.instaWrap .visumoWrap .vsm-gallery .ecbn-selection-widget .ecbn-selection-content ul li {
    width: 25%;
  }
}

.freePage .contents section.instaWrap .visumoWrap .vsm-gallery .ecbn-selection-widget .ecbn-selection-content ul li a {
  padding-top: 0;
}

.freePage .contents section.instaWrap .visumoWrap .vsm-gallery .ecbn-selection-widget .ecbn-selection-content ul li a img {
  height: inherit;
  width: 100%;
  position: static;
  transform: none;
}

/* ========================================
  FREE PAGE フリーページ（特集ページ）
======================================== */
.freePage .contents section.lpHeader {
  margin-top: 0;
}

.freePage .contents section.lpHeader .bannerArea {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.freePage .contents section.lpHeader .bannerArea img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: 50% 30%;
}

@media screen and (min-width:961px) {
  .freePage .contents section.lpHeader .bannerArea img {
    max-height: 400px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
}

.freePage .contents section.lpHeader .bannerArea p {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  width: 100%;
  text-align: center;
}

.freePage .contents section.lpHeader ul.itemList {
  margin: 24px auto 40px;
  max-width: 800px;
}

.freePage .contents section.lpHeader ul.itemList.itemList4 li {
  width: 32%;
  margin-right: 2%;
}

.freePage .contents section.lpHeader ul.itemList.itemList4 li:nth-child(3) {
  margin-right: 0%;
}

.freePage .contents section.lpHeader ul.itemList.itemList4 li a {
  position: relative;
  padding: 12px 8px;
  background-color: #B4A18F;
  color: #ffffff;
  display: block;
  border-radius: 8px;
}

.freePage .contents section.lpHeader ul.itemList.itemList4 li a img {
  display: block;
  width: 75%;
  margin: auto;
}

.freePage .contents section.lpHeader ul.itemList.itemList4 li a::after {
  content: "▼";
  color: #cccccc;
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
}

.freePage .contents section.lpHeader ul.itemList.itemList4 li a p {
  text-align: center;
}

@media screen and (min-width:961px) {
  .freePage .contents section.lpHeader ul.itemList.itemList4 li a p {
    font-size: 14px;
    font-weight: 500;
  }
}

.freePage .contents section.lpHeader .fpOv {
  padding: 40px 0;
  background-color: #f2f2f2;
  text-align: center;
  margin-top: 24px;
}

.freePage .contents section.lpHeader .fpOv h2 {
  font-weight: 700;
  line-height: 1.85;
}

@media screen and (min-width:961px) {
  .freePage .contents section.lpHeader .fpOv h2 {
    font-size: 14px;
    font-weight: 500;
  }
}

.freePage .contents section.lpSeries {
  padding-top: 120px;
  margin-top: -80px;
}

.freePage .contents section.lpSeries .secInr {
  max-width: 800px;
  margin: 0 auto;
}

.freePage .contents section.lpSeries .secInr > h2 {
  font-size: 24px;
  text-align: center;
  font-weight: 700;
}

.freePage .contents section.lpSeries .secInr .seriesBox {
  margin-bottom: 64px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.lpSeries .secInr .seriesBox {
    margin-bottom: 100px;
  }
}

.freePage .contents section.lpSeries .secInr .seriesBox .seriesHeader h3 {
  font-size: 24px;
  font-weight: 700;
  text-indent: 16px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.lpSeries .secInr .seriesBox .seriesHeader h3 {
    font-size: 36px;
  }
}

.freePage .contents section.lpSeries .secInr .seriesBox .seriesHeader h3 span {
  font-size: 0.75em;
}

.freePage .contents section.lpSeries .secInr .seriesBox .seriesHeader img {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: -7px auto 0;
  border-radius: 8px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.lpSeries .secInr .seriesBox .seriesHeader img {
    margin-top: -11px;
  }
}

.freePage .contents section.lpSeries .secInr .seriesBox .seriesHeader p {
  padding: 12px;
  line-height: 1.5;
}

@media screen and (min-width:961px) {
  .freePage .contents section.lpSeries .secInr .seriesBox .seriesHeader p {
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
  }
}

.freePage .contents section.lpSeries .secInr .seriesBox ul {
  margin-top: 24px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.lpSeries .secInr .seriesBox ul {
    margin-top: 64px;
  }
}

.freePage .contents section.lpSeries .secInr .seriesBox ul li {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.lpSeries .secInr .seriesBox ul li {
    margin-bottom: 80px;
  }
}

.freePage .contents section.lpSeries .secInr .seriesBox ul li img {
  width: 50%;
  border-radius: 8px;
  max-width: 400px;
}

.freePage .contents section.lpSeries .secInr .seriesBox ul li p {
  position: absolute;
  left: 45%;
  top: 5%;
  width: 50%;
  text-align: justify;
  padding: 16px 12px;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 16px -4px rgba(255, 255, 255, 0.75);
  border-radius: 8px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.lpSeries .secInr .seriesBox ul li p {
    width: 45%;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 500;
    line-height: 2.5;
    top: 20%;
    left: 440px;
  }
}

.freePage .contents section.lpSeries .secInr .seriesBox ul li:nth-child(2) img {
  margin-left: 50%;
}

.freePage .contents section.lpSeries .secInr .seriesBox ul li:nth-child(2) p {
  left: auto;
  right: 45%;
}

@media screen and (min-width:961px) {
  .freePage .contents section.lpSeries .secInr .seriesBox ul li:nth-child(2) p {
    right: 55%;
  }
}

.freePage .contents section.lpSeries .secInr .seriesBox ul li:nth-child(4) {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.freePage .contents section.lpSeries .secInr .seriesBox ul li:nth-child(4) img {
  width: 100px;
}

@media screen and (min-width:961px) {
  .freePage .contents section.lpSeries .secInr .seriesBox ul li:nth-child(4) img {
    width: 200px;
  }
}

.freePage .contents section.lpSeries .secInr .seriesBox ul li:nth-child(4) p {
  position: static;
  padding: 0;
  width: calc(100% - 120px);
  margin-left: 20px;
  line-height: 1.75;
}

@media screen and (min-width:961px) {
  .freePage .contents section.lpSeries .secInr .seriesBox ul li:nth-child(4) p {
    width: calc(100% - 220px);
  }
}

.freePage .contents section.lpSeries .secInr .seriesBox .seriesBtn {
  text-align: center;
  margin-top: 40px;
}

.freePage .contents section.lpSeries .secInr .seriesBox .seriesBtn a {
  width: 260px;
  height: 36px;
  color: #ffffff;
  font-size: 1.2rem;
  background-color: #413f45;
  border-radius: 14px;
  border: 1px solid #413f45;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.freePage .contents section.lpStyle {
  padding-top: 120px;
  margin-top: -100px;
}

.freePage .contents section.lpStyle .lpSeriesBgwrap {
  background-color: #B4A18F;
  padding: 40px 24px 24px;
}

.freePage .contents section.lpStyle .lpSeriesBgwrap .secInr {
  max-width: 800px;
  margin: 0 auto;
}

.freePage .contents section.lpStyle .lpSeriesBgwrap .secInr > h2 {
  font-size: 24px;
  text-align: center;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
}

.freePage .contents section.lpStyle .lpSeriesBgwrap .secInr .styleBox {
  margin-bottom: 80px;
}

.freePage .contents section.lpStyle .lpSeriesBgwrap .secInr .styleBox > img {
  width: 100%;
  border: 1px solid #ffffff;
  box-shadow: 2px 2px 16px -4px rgba(0, 0, 0, 0.35);
  border-radius: 8px;
}

.freePage .contents section.lpStyle .lpSeriesBgwrap .secInr .styleBox h3 {
  margin-top: 24px;
  font-weight: 700;
  color: #ffffff;
}

.freePage .contents section.lpStyle .lpSeriesBgwrap .secInr .styleBox p {
  margin-top: 8px;
  line-height: 1.5;
  color: #ffffff;
}

.freePage .contents section.lpStyle .lpSeriesBgwrap .secInr .styleBox ul {
  margin-top: 32px;
}

.freePage .contents section.lpStyle .lpSeriesBgwrap .secInr .styleBox ul li {
  width: 49%;
  margin-right: 2%;
  margin-bottom: 10%;
}

.freePage .contents section.lpStyle .lpSeriesBgwrap .secInr .styleBox ul li:nth-child(2n) {
  margin-right: 0;
}

@media screen and (min-width:961px) {
  .freePage .contents section.lpStyle .lpSeriesBgwrap .secInr .styleBox ul li {
    width: 18.2%;
  }

  .freePage .contents section.lpStyle .lpSeriesBgwrap .secInr .styleBox ul li:nth-child(2n) {
    margin-right: 2%;
  }

  .freePage .contents section.lpStyle .lpSeriesBgwrap .secInr .styleBox ul li:nth-child(5n) {
    margin-right: 0;
  }
}

.freePage .contents section.lpStyle .lpSeriesBgwrap .secInr .styleBox ul li img {
  display: block;
  width: 75%;
  margin: auto;
}

.freePage .contents section.lpStyle .lpSeriesBgwrap .secInr .styleBox ul li h3 {
  /*height: 40px;*/
}

.freePage .contents section.lpStyle .lpSeriesBgwrap .secInr .styleBox ul li p {
  color: #ffffff;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  max-height: 80px;
}

.freePage .contents section.lpCate {
  padding-top: 120px;
  margin-top: -80px;
}

.freePage .contents section.lpCate .secInr {
  max-width: 800px;
  margin: 0 auto;
}

.freePage .contents section.lpCate .secInr > h2 {
  font-size: 24px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 24px;
}

.freePage .contents section.lpCate .secInr .cateBox {
  margin-bottom: 80px;
}

.freePage .contents section.lpCate .secInr .cateBox .cateHeader {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: #f2f2f2;
  padding: 12px;
  margin-bottom: 16px;
}

.freePage .contents section.lpCate .secInr .cateBox .cateHeader img {
  width: 80px;
}

.freePage .contents section.lpCate .secInr .cateBox .cateHeader h3 {
  margin-left: 16px;
  font-size: 20px;
  font-weight: 700;
}

.freePage .contents section.lpCate .secInr .cateBox .cateItem {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.freePage .contents section.lpCate .secInr .cateBox .cateItem > img {
  width: 64%;
  border-radius: 8px;
  margin-right: 4%;
}

.freePage .contents section.lpCate .secInr .cateBox .cateItem a {
  width: 32%;
}

.freePage .contents section.lpCate .secInr .cateBox .cateItem a img {
  width: 100%;
}

.freePage .contents section.lpCate .secInr .cateBox .cateItem a h4 {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 40px;
}

.freePage .contents section.lpCate .secInr .cateBox .cateItemList ul {
  margin-top: 16px;
}

.freePage .contents section.lpCate .secInr .cateBox .cateItemList ul li:nth-child(11) {
  display: none;
}

@media screen and (min-width:961px) {
  .freePage .contents section.lpCate .secInr .cateBox .cateItemList ul li:nth-child(11) {
    display: block;
  }
}

.freePage .contents section.lpCate .secInr .cateBox .cateItemList ul li img {
  padding: 18px;
}

.freePage .contents section.lpCate .secInr .cateBox .cateItemList ul li h4 {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 45px;
}

.freePage .contents section.lpCate .secInr .cateBox .cateItemList ul li:nth-child(10) {
  display: none;
}

@media screen and (min-width:961px) {
  .freePage .contents section.lpCate .secInr .cateBox .cateItemList ul li:nth-child(10) {
    display: block;
  }
}

.freePage .contents section.lpCate .secInr .cateBox .cateBtn {
  text-align: center;
  margin-top: 40px;
}

.freePage .contents section.lpCate .secInr .cateBox .cateBtn a {
  width: 220px;
  height: 28px;
  border-radius: 14px;
  border: 1px solid #413f45;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}


section.itemList ul.listWrap li p.couponNote{display:block;}


/* ========================================
  商品ページ SKU表示対応
======================================== */
section.itempage__Info .secInr .itemCart .priceBox .sku-delivery-time {
  margin: 16px auto;
  display: inline-block;
  border: solid 1px #d1c7be;
}
section.itempage__Info .secInr .itemCart .priceBox .sku-delivery-time p {
  padding: 2px 8px;
  font-weight: 500;
  border-bottom: dotted 1px #d1c7be;
  padding-bottom: 8px;
}
section.itempage__Info .secInr .itemCart .priceBox .sku-delivery-time p:first-of-type {
  background: #F7F5F2;
  font-weight: 600;
  margin-top: 0;
  padding-bottom: 5px;
}
section.itempage__Info .secInr .itemCart .priceBox .sku-delivery-time p:last-of-type {
  border-bottom: none;
}
section.itempage__Info .secInr .itemCart .priceBox .sku-delivery-time p span {
  display: block;
  padding-left: 1em;
  font-size: 1.1em;
  font-weight: 600;
  margin-top: 2px;
}
section.itempage__Info .secInr .itemCart .priceBox .sku-delivery-time p span:before {
  content: '- ';
}
section.itempage__Info .secInr .itemCart .cartBox .details-options > .item-detail-addcart {
  margin: 16px 0;
  display: flex;
  align-items: center;
}
section.itempage__Info .secInr .itemCart .cartBox .details-options > .item-detail-addcart .makeshop-option-wrap {
  margin-bottom: 0;
}
section.itempage__Info .secInr .itemCart .cartBox .details-options > .item-detail-addcart .makeshop-option-wrap input {
  height: 40px;
}
section.itempage__Info .secInr .itemCart .cartBox .details-options > .item-detail-addcart p.orgPrice {
  font-size: 0.8em;
  margin-left: 16px;
}
section.itempage__Info .secInr .itemCart .cartBox .details-options > .item-detail-addcart p.orgPrice span {
  text-decoration: line-through;
}
section.itempage__Info .secInr .itemCart .cartBox .details-options > .item-detail-addcart p.saleRate {
    font-weight: 700;
    color: #ffffff;
    background-color: #E66B58;
    padding: 4px;
    display: inline-block;
    border-radius: 4px;
    margin-left: 8px;
}
section.itempage__Info .secInr .itemCart .cartBox .sku-option {
  margin: 8px 0 24px;
}
section.itempage__Info .secInr .itemCart .cartBox .sku-option th {
  text-align: center;
  padding: 2px 0;
  background: #F7F5F2;
}
section.itempage__Info .secInr .itemCart .cartBox .sku-option td {
  vertical-align: middle;
  padding-left: 16px;
  padding-top: 16px;
  font-weight: 500;
}
section.itempage__Info .secInr .itemCart .cartBox .sku-option td:first-of-type {
  padding-left: 0;
}
section.itempage__Info .secInr .itemCart .cartBox .sku-option td:last-of-type p {
  font-size: 1.2em;
  font-weight: 600;
  margin: 0 auto;
}
section.itempage__Info .secInr .itemCart .cartBox .sku-option td:last-of-type p span {
  font-size: 0.8em;
}
section.itempage__Info .secInr .itemCart .cartBox .sku-option .getPoint span {
  color: #666;
  font-size: 0.7em!important;
  margin-bottom: 5px!important;
}
section.itempage__Info .secInr .itemCart .cartBox .sku-option .btn-area {
  width: 150px;
  height: 32px;
  font-size: 0.9em;
}
section.itempage__Info .secInr .itemCart .cartBox .sku-option .makeshop-option-wrap {
  margin-bottom: 0;
}
section.itempage__Info .secInr .itemCart .cartBox .sku-option .makeshop-option-wrap input {
  height: 32px;
  font-size: 0.9em;
}
section.itempage__Info .secInr .itemCart .cartBox .sku-option .favEntry {
  margin: 3px 0 0 8px;
}

@media screen and (max-width:450px){
  section.itempage__Info .secInr .itemCart .cartBox .sku-option .favEntry {
    margin: 10px 0 0 0;
  }
}

@media screen and (max-width:376px){
  section.itempage__Info .secInr .itemCart .cartBox .sku-option .btn-area {
    width: 130px;
  }
}

@media screen and (max-width:321px){
  section.itempage__Info .secInr .itemCart .cartBox .sku-option .btn-area {
    width: 120px;
  }
}