@charset "UTF-8";

body {
  text-size-adjust: 100%;
}

main>.l-wrap {
  margin: 0 -20px;
}

@media screen and (max-width: 767px) {
  main>.l-wrap {
    margin: 0 -12px;
  }
}

.wrap,
.wrap-full {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.wrap h1,
.wrap h2,
.wrap h3,
.wrap h4,
.wrap h5,
.wrap h6,
.wrap-full h1,
.wrap-full h2,
.wrap-full h3,
.wrap-full h4,
.wrap-full h5,
.wrap-full h6 {
  line-height: 1.1;
  letter-spacing: -1px;
}

.wrap section,
.wrap-full section {
  clear: both;
  width: 100%;
}

.wrap dl,
.wrap dt,
.wrap dd,
.wrap-full dl,
.wrap-full dt,
.wrap-full dd {
  margin: 0;
  padding: 0;
}

.wrap a:link, .wrap a:visited,
.wrap-full a:link,
.wrap-full a:visited {
  text-decoration: none;
}

.wrap a:hover, .wrap a:active,
.wrap-full a:hover,
.wrap-full a:active {
  text-decoration: underline;
}


@media only screen and (min-width: 1400px) {
  .wrap {
    position: relative;
    text-align: left;
  }
}

.cf {
  zoom: 1;
}

.cf:before, .cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

/* パンくず */
#pageHeading{
  margin: 5px auto 0 auto;
  text-align: left;
  width: 100% !important;
  max-width: 1216px;
}
#pageHeading h1 {
  float: left;
  margin: 0px 10px 0px 5px;
}

#pageHeading h1, #pageHeading p {
  font-size: 10px;
  font-weight: normal;
  line-height: 120%;
  color: #333333;
  padding: 0;
}
#pageHeading p {
  margin: 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #pageHeading{
    display:none;
  }
}


#contentsArea {
  width: 100% !important;
  margin-bottom: 20px;
}

.wrap {
  width: 100% !important;
}

.crumbs {
  background-color: #f4f4f4;
  font-size: 12px;
  line-height: 1.4;
  margin: 0 0 5px;
  color: #666;
}

.crumbs > ul {
  max-width: 1400px;
  min-width: 960px;
  margin: 0 auto;
  padding: 5px 0;
}

.crumbs > ul > li {
  display: inline;
  position: relative;
}
.crumbs > ul > li ~ li {
  padding-left: 17px;
}

.crumbs > ul > li ~ li::before {
  position: absolute;
  top: calc(1em - 3px);
  left: 0;
  display: block;
  width: 6px;
  height: 6px;
  margin-top: -4px;
  content: "";
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
}

.crumbs a:hover {
  text-decoration: none;
}


.wrap h1 {
  font-size: 26px;
  font-weight: bold;
}
.wrap h2 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
.wrap h3 {
  font-size: 22px;
  font-weight: bold;
}

.wrap p {
  font-size: 14px;
  line-height: 1.5;
}

.main-contents {
  max-width: 1400px;
  min-width: 960px;
  margin: 0 auto;
}

/* main-header */
.main-header {
  margin: 0 auto 30px;
}
.main-header_image {
  margin-bottom: 30px;
}
.main-header_image img {
  width: 100%;
}

.mhi-pc { display: block; }
.mhi-sp { display: none; }

/* main-header_textarea */
.main-header_textarea {
  width: 960px;
  text-align: center;
  margin: 60px auto;
  padding: 10px 5px;
  overflow: hidden;
}

.main-header_text {
  position: relative;
  width: calc(100% - 25px);
  padding: 10px;
  z-index: 0;
}
.main-header_text::before,
.main-header_text::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
}
.main-header_text::before {
  border: 1px solid #aaa;
  bottom: -4px;
  right: -4px;
  z-index: 1;
}
.main-header_text::after {
  border: 1px solid #aaa;
  bottom: -10px;
  right: -10px;
  z-index: 2;
}
.main-header_text p {
  margin: 30px 20px;
  line-height: 2;
}

/* main-area */
.main-area {
  margin-bottom: 30px;
}

/* main-area_topic */
.main-area_topic {
  display:flex;
  justify-content: center;
  margin-bottom: 30px;
}

.main-area_topic li {
  display: flex;
  flex-direction: column;
  margin: 20px;
}

.main-area_topic li img {
  width: 100%;
  border: 1px solid #eaf3f5;
  margin: 10px 0;
}

/* 2つの場合 */
.main-area_topic li:first-child:nth-last-child(2),
.main-area_topic li:first-child:nth-last-child(2) ~ li {
  width: 30%;
}

/* main-area_list */
.main-area_list {
  margin: 60px auto;
  width: 80%;
}

.main-area_listtitle {
  text-align: center;
  padding: 10px 0 20px;

}
.main-area_listtitle h3 {
  position: relative;
  display: inline-block;
}

.main-area_listtitle h3:before,
.main-area_listtitle h3:after {
  content: "";
  display: block;
  width: 200px;
  height: 4px;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  position: absolute;
  top: 50%;
  margin-top: -2px;
}

.main-area_listtitle h3:before {
  left: -224px;
}
.main-area_listtitle h3:after {
  right: -224px;
}

.main-area_listli {
  display: flex;
  flex-wrap: wrap;
}
.main-area_listli li {
  width: calc(100% / 4 - 30px);
  margin: 10px 15px 20px;
}

.main-area_listli li a {
  text-decoration: none;
  display: block;
}
.main-area_listli img {
  border: 1px solid #eaf3f5;
  width: 100%;
}

.main-area_listli .shohin_title {
  font-size: 14px;
  line-height: 1.5;
}

.main-area_listli a:hover,
.main-area_listli a:active {
  opacity: .85;
}

.main-area_listli .shohin_title:hover,
.main-area_listli .shohin_title:active {
  text-decoration: underline;
  opacity: 1;
}

.main-area_listli .price_text {
  margin: 8px 0;
  font-size: 14px;
  display: inline-block;
}

.main-area_listli .price_text:hover,
.main-area_listli .price_text:active {
  text-decoration: none;
  opacity: 1;
}
.main-area_listli .main-area_rating:hover,
.main-area_listli .main-area_rating:active {
  text-decoration: none;
  opacity: 1;
}

.main-area_liststarnum {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px!important;
}

.main-area_listli .main-area_rating {
  color: #111;
  font-size: 12px;
  line-height: 1.5;
  display: block;
}
.main-area_listli .main-area_rating span {
  vertical-align: middle;
}
.main-area_listli .main-area_rating img {
  border: none;
  margin-bottom: 5px;
  width: auto;
  height: auto;
}

/* more_link */
.more_link {
  margin: 30px auto 50px;
}
.more_link a {
  display: block;
  width: calc(100% - 20px);
  max-width: 420px;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border-radius: 6em;
  background: #666;
  margin: 10px auto;
}
.more_link span {
  position: relative;
  display: inline-block;
  padding: 17px 20px 13px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 30px;
}
.more_link span:after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 9px;
  height: 9px;
  margin-top: -6px;
  content: "";
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.more_link a:hover,
.more_link a:active {
  opacity: .8;
}

/* main-footer */
.main-footer {
  overflow: hidden;
  position: relative;
  padding: 60px 0;
  width: 100%;
  min-width: 1028px;
  border-bottom: 1px solid #fff;
  background-color: #f5f5f5;
}
.main-footer_inc {
  box-sizing: border-box;
  padding: 0 50px;
  clear: both;
  margin: 0 auto;
  min-width: 1028px;
  max-width: 1400px;
}

.main-footer h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
}

.p-push__contents {
  display: flex;
}

.p-push__box {
  margin: 0 20px 20px 0;
  width: calc(100% / 4);
}

.p-push__box:nth-child(n + 5) {
  display: none;
}
.p-push__box:nth-child(n + 4) {
  margin-right: 0;
}

.p-push__box a {
  color: #111;
  text-decoration: none;
}
.p-push__box a:hover {
  text-decoration: underline;
}

.p-push__box img {
  width: 100%;
  display: block;
}

.p-push__box img:hover {
  opacity: .85;
}

.p-push__box p {
  text-decoration: none;
  color: #111;
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.5;
}


/* smartphone */
@media screen and (max-width: 720px) {
  div.contentsArea {
    min-width: auto;
  }
  .main-contents {
    min-width: auto;
    overflow-x: hidden;
  }
  .wrap h1 {
    font-size: 5.25vw;
  }
  .wrap h3 {
    font-size: 4.5vw;
    font-weight: bold;
  }
  .wrap h2 {
    font-size: 3.9vw;
    font-weight: bold;
  }
  .wrap p {
    font-size: 3.45vw;
  }

  .crumbs > ul {
    min-width: 100%;
  }
  .crumbs > ul > li:first-child {
    padding-left: 10px;
  }

  /* main-header */
  .main-header {
    padding: 0;
  }

  .main-header_textarea {
    width: calc(100% - 30px);
    margin: 5px auto;
  }
  .main-header_text {
    width: 92%;
  }
  .main-header_text p {
    margin: 10px;
    line-height: 2;
  }

  /* main-area */
  .main-area {
    padding: 0;
  }

  /* main-area_topic */
  .main-area_topic {
    justify-content: start;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 100vw;
    overflow: auto;
    padding: 0;
    margin-bottom: 0;
  }
  .main-area_topic li {
    scroll-snap-align: center;
    height: 100%;
    width: 100%;
    flex: none;
    margin: 0 -30px;
  }
  .main-area_topic li:first-child {
    margin-left: 0;
  }
  .main-area_topic li:last-child {
    margin-right: 0;
  }
  .topicbox {
    width: 80%;
    margin: 0 auto;
  }

  .mhi-pc { display: none; }
  .mhi-sp { display: block; }

  /* main-area_list */
  .main-area_list {
    width: 100%;
  }
  .main-area_listli li {
    width: calc(100% / 2 - 30px);
    list-style-type: none;
  }
  .main-area_listli .main-area_rating {
    font-size: 3.45vw;
  }
  .more_link a {
    max-width: 100%;
  }
  .more_link span {
    font-size: 4.5vw;
  }

  /* main-footer */
  .main-footer {
    padding: 0;
    background: #f2f2f2;
    min-width: 100%;
  }

  .main-footer_inc {
    width: 92.5%;
    min-width: 92.5%;
    margin: 0 auto;
    padding: 2em 0;
  }

  .main-footer h2 {
    margin: 0 0 1.2em 0;
    font-size: 4.5vw;
    font-weight: bold;
  }

  .p-push__contents {
    display: flex;
    justify-content: start;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .p-push__box {
    margin: 0 10px 20px 0;
    scroll-snap-align: start;
    width: calc((100% / 2) - 5%);
    flex: 0 0 auto;
  }

  .p-push__box p {
    font-size: 10px;
    font-size: 2.7vw;
  }
}

/* 220607 add recommend */
.inc-small-product-price_tax {
  margin-left: 0.5rem;
  font-weight: normal;
  font-size: 12px;
}

/* 231116ADD mark icon */
.mark_item1:before,
.mark_item2:before,
.mark_item3:before,
.mark_item4:before,
.mark_item5:before,
.mark_item6:before,
.mark_item7:before {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.375em 0.5em;
  background-color: rgba(218, 18, 60, 0.75);
  color: #fff;
  font-size: 12px;
}