@charset "uft-8";

.main_content * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.main_content {
  width: 100%;
  background-color: #e5e5e5;
}

.main_content h2 {
  margin: 2em 0 1.5em;
  text-align: center;
}

.recommend_title,
.newitem_title {
  display: flex;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  gap: 0 7px;
  color: #333333;
  flex-wrap: wrap;
}

.recommend_title::before {
  width: 1.25em;
  height: 1.25em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2.00488 19H22.0049V21H2.00488V19ZM2.00488 5L7.00488 8L12.0049 2L17.0049 8L22.0049 5V17H2.00488V5Z' fill='%23ffb500'%3E%3C/path%3E%3C/svg%3E");
  content: "";
}
.newitem_title::before {
  width: 1.25em;
  height: 1.25em;
  background-image: url("/PC/ja/asset/img/nw/feature/osusume/kira.svg");
  content: "";
}
.main_content h2 span {
  display: inline-block;
}

.content_inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

.main_content img {
  max-width: 100%;
  height: auto;
}

.main_content p {
  font-size: 14px;
}

.main_content .info p {
  text-align: center;
}

.items {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  align-items: stretch;
  margin: 0 0 40px;
}

.item {
  width: calc(50% - 10px);
  border-radius: 8px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #fff;
  padding: 20px;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  align-items: flex-start;
}

.item h3 {
  font-size: 18px;
  text-align: center;
  background-color: #333;
  color: #fff;
  padding: 1em;
  display: block;
  border-radius: 100vh;
  width: 100%;
  line-height: 1.2;
}

.swiper-slide_inner h3 span {
  font-size: 14px;
  display: inline-block;
}

.item h3 span {
  font-size: 16px;
  display: inline-block;
}

.item_img {
  width: calc(54% - 20px);
  margin: 20px 20px 20px 0;
}
.item_img img {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  display: block;
}

.item_info {
  width: 46%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin: 20px 0;
  padding-top: 4px;
}

.item_info p {
  display: block;
  width: 100%;
  text-align: justify;
  line-height: 1.5;
  font-size: 13px;
}
.item_info span {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 12px;
  margin-top: 0.5em;
  border-bottom: #333 dashed 1px;
  padding-bottom: 0.25em;
}
.item_info ul {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  align-items: flex-start;
  list-style: none;
  margin-top: 5px;
  width: 100%;
}

.item_info ul li {
  display: block;
  width: calc(100% / 3 - 2px);
  margin: 0 1px 2px;
  line-height: 0;
}

.item_info ul li img {
  width: 100%;
  max-width: 72px;
}

.size_price_wrapper {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  align-items: flex-end;
  width: 100%;
}

.inch {
  font-size: 14px;
  font-feature-settings: "palt";
}

.size_price {
  width: 54%;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  padding-right: 0.5em;
}
.size_price p {
  color: crimson;
  font-size: 26px;
  font-feature-settings: "palt";
  font-weight: bold;
}

.size_price p span {
  font-size: 20px;
}

.size_price p:after {
  content: "（税込）";
  color: #373737;
  font-size: 12px;
  display: inline-block;
}

p.special_price:after {
  content: "キャンペーン中";
  color: crimson;
  font-size: 26px;
  font-feature-settings: "palt";
  font-weight: bold;
}

.btn--osusume,
a.btn--osusume {
  width: calc(46%);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: block;
  padding: 0.75rem 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #bc0000;
  border-radius: 0.5rem;
}

.btn--osusume:hover,
a.btn--osusume:hover {
  color: #fff;
  background: #d61a1a;
}

@media screen and (max-width: 900px) {
  .size_price {
    width: 100%;
  }
  .btn--osusume,
  a.btn--osusume {
    width: 100%;
  }
  .inch {
    display: block;
    width: 36%;
  }
  .inch span {
    display: inline-block;
  }
  .size_price {
    width: 100%;
    -webkit-box-align: end;
    align-items: flex-end;
    flex-direction: row;
    -webkit-box-pack: center;
    justify-content: center;
    padding-right: 0;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }

  .size_price p {
    display: block;
    width: calc(64% - 10px);
    padding-right: 10px;
  }
}
@media screen and (max-width: 830px) {
  .inch {
    width: 100%;
  }
  .size_price p {
    width: 100%;
  }
}

@media screen and (max-width: 660px) {
  .item {
    width: 100%;
  }
  .inch {
    width: 100%;
	text-align: center;
  }
  .size_price p {
    width: 100%;
	text-align: center;
  }

  .item_img {
    width: calc(46% - 20px);
  }
  .item_info {
    width: 54%;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin: 20px 0;
    padding-top: 4px;
  }
	
  .item_info ul {justify-content: center;}

  .item_info ul li {
    display: block;
    width: 72px;
    margin: 0 1px 2px;
    line-height: 0;
  }

  .size_price {
    width: 100%;
  }

  .btn--osusume,
  a.btn--osusume {
    width: 100%;
    margin: 0;
  }

  .size_price_wrapper {
    width: 54%;
    margin-left: auto;
    margin-top: -40px;
  }

  .item_img {
    width: 100%;
    margin: 0;
  }
  .item_img img {
    max-width: 240px;
    margin: 20px auto;
  }
  .item_info {
    width: 100%;
  }

  .item_info p {
    font-size: 14px;
  }
  .size_price_wrapper {
    width: 100%;
    margin: 0;
  }
  .size_price {
    -webkit-box-pack: center;
    justify-content: center;
  }

  .item_info ul li {
    width: calc(25% - 2px);
    max-width: 72px;
  }
  .item_info ul li img {
    width: 100%;
  }

  .item h3 {
    font-size: 18px;
  }
}

.goods-item__picture {
  height: auto;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}

.new_item_slid {
  width: 100%;
  max-width: 960px;
  position: relative;
  padding: 0;
}

.goods-item__picture img {
  width: 100%;
}

.swiper .swiper-slide {
  height: auto;
}

.swiper-slide_inner {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px 10px;
  box-sizing: border-box;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  height: 100%;
}

.swiper-slide_inner > a {
  text-decoration: none;
  color: #333;
}

.swiper-pagination {
  bottom: -40px !important;
}

.new_item_info {
  width: 100%;
  max-width: 220px;
  margin: 10px auto;
}

.new_item_info h3 {
  font-size: 16px;
  border-bottom: #333 solid 1px;
  padding-bottom: 5px;
}

.new_item_info dl {
  display: -webkit-box;
  display: flex;
  font-size: 13px;
  margin-top: 5px;
}

.date {
  display: inline-block;
  font-size: 12px;
  margin-top: 5px;
  padding: 0.25em 1em;
  background-color: #333;
  color: #fff;
}

.new_item_slid .swiper-button-prev {
  left: 0;
}
.new_item_slid .swiper-button-next {
  right: 0;
}
.new_item_slid .swiper-pagination {
  bottom: -30px !important;
}

/*タブ切り替え全体のスタイル*/
.tab-container {
  margin-top: 50px;
  padding-bottom: 40px;
  margin: 0 auto;
}

/*タブのスタイル*/
.tab_item {
  width: calc(100% / 2);
  height: 80px;
  border-bottom: 3px solid #5ab4bd;
  background-color: #d9d9d9;
  line-height: 80px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  text-align: center;
  font-weight: bold;
  float: left;
  transition: all 0.3s;
  cursor: pointer;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  overflow: hidden;
  clear: both;
  padding-top: 40px;
}

/*選択されているタブのコンテンツのみを表示*/
#japanese:checked ~ #new_item_japanese,
#import:checked ~ #new_item_import {
  display: block;
}

.tab-container input:checked + .tab_item {
  background-color: #5ab4bd;
  color: #fff;
  font-size: 24px;
}

:-moz-user-disabled .tab-container input:checked + .tab_item {
  background-color: #5ab4bd;
  color: #fff;
  font-size: 24px;
}

@media screen and (max-width: 660px) {
  .tab-container input:checked + .tab_item {
    font-size: 18px;
  }

  :-moz-user-disabled .tab-container input:checked + .tab_item {
    font-size: 18px;
  }
}

.swiper-button-next:after, .swiper-button-prev:after {
    color: #5ab4bd;
}