@charset "UTF-8";
/* CSS Document */
#sidebar{ display:none; }
#main{ width:  1000px;  margin-left: 0; }
@media screen and (max-width: 640px) {
  #main {
    width: 100%;
  }
}
.swiper-slide {
  text-align: center;
}
.swiper-slide img {
  margin: 0 auto;
}
.swiper-button {
  color: #fff !important;
}
.swiper-button:after {
  background: #656565;
  padding: 2px;
  border-radius: 3px;
}

.link-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  text-align: center;
  background-color: #e9ecef;
  border-radius: 3px;
  margin-bottom: 40px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.link-container a {
  width: calc(100% / 7 - 60px / 7);
  color: #000;
  font-size: 11.5px;
  text-decoration: none;
  background-color: #fff;
  padding-bottom: 5px;
  display: flex;
  flex-direction: column;
  border:1px solid rgba(0, 0, 0, 0.5);
}
.link-container a img {
  width: auto;
  height: 50px;
  padding: 5px 0 0;
  transition: 0.3s all;
  margin: 0 auto;
}
.link-container a:hover img {
  opacity: 0.5;
}
@media screen and (max-width: 640px) {
  .link-container {
    display: none;
  }
}

.slider {
  margin-bottom: 40px;
}

.main-container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .main-container {
    flex-direction: column;
  }
}
.main-container .sidebar {
  width: 220px;
  height: fit-content;
}
@media screen and (max-width: 640px) {
  .main-container .sidebar {
    width: 100%;
  }
}
.main-container .sidebar h3 {
  font-size: 16px;
  text-align: center;
  margin: 0;
  padding: 5px 0;
  font-weight:bold;
  color:#000;
}
.main-container .sidebar .menu-list {
  background: #e9ecef;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 30px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.main-container .sidebar .menu-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 640px) {
  .main-container .sidebar .menu-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  .main-container .sidebar .menu-list ul li {
    width: calc(50% - 5px);
  }
}
.main-container .sidebar .menu-list ul li {
  text-align: center;
}
.main-container .sidebar .menu-list ul li a {
  text-decoration: none;
  color: initial;
  transition: 0.3s all;
}
.main-container .sidebar .menu-list ul li a p {
  padding: 7px 0;
  margin: 7px 0 0;
  background: #fff;
  font-size: 14px;
  border: 1.5px solid #ddd;
}
.main-container .sidebar .menu-list ul li a:hover {
  opacity: 0.5;
}
.main-container .sidebar .menu-list img {
  width: 100%;
  margin-top: 5px;
}
.main-container .sidebar .menu-list + .menu-list {
  margin-top: 10px;
}
.main-container .contents {
  width: 760px;
  margin-left: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 640px) {
  .main-container .contents {
    width: 100%;
    margin-left: 0;
  }
}
.main-container .contents h2 {
  text-align: center;
  margin-bottom: 10px;
  color: #000;
  font-weight:bold;
  font-size:20px;
}
.main-container .contents .ranking {
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(139deg, transparent, transparent 3px, rgb(227, 255, 218) 3px, rgb(227, 255, 218) 7px);
  margin-bottom: 50px;
  box-shadow: 0 0 0 1px rgb(158, 235, 133);
  border-radius: 3px;
}
.main-container .contents .ranking-title span {
  background: linear-gradient(transparent 60%, rgb(158, 235, 133) 60%);
}
.main-container .contents .ranking ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 5px;
  list-style: none;
  padding: 10px;
}
@media screen and (max-width: 640px) {
  .main-container .contents .ranking ul {
    justify-content: center;
  }
}
.main-container .contents .ranking ul li {
  background: #fff;
  padding: 10px;
  margin: 0;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
  border: 1px solid rgb(158, 235, 133);
}
.main-container .contents .ranking ul li a {
  text-decoration: none;
  color: initial;
}
.main-container .contents .ranking ul li a img {
  width: 100%;
  object-fit: contain;
  aspect-ratio: 1/1;
}
.main-container .contents .ranking ul li a .price {
  margin-bottom: 0;
  color: #f00;
  font-size: 110%;
  font-weight: bold;
}
.main-container .contents .ranking ul li a small {
  font-size: 70%;
}
.main-container .contents .ranking ul li:nth-child(-n+3) {
  width: calc(33.3333333333% - 3.3333333333px);
}
@media screen and (max-width: 640px) {
  .main-container .contents .ranking ul li:nth-child(-n+3) {
    width: 100%;
  }
  .main-container .contents .ranking ul li:nth-child(-n+3) a {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  .main-container .contents .ranking ul li:nth-child(-n+3) a .rank {
    width: 100%;
  }
  .main-container .contents .ranking ul li:nth-child(-n+3) a img {
    width: 33%;
  }
  .main-container .contents .ranking ul li:nth-child(-n+3) a .txt {
    width: calc(67% - 5px);
  }
}
.main-container .contents .ranking ul li:nth-child(n+4) {
  width: calc(20% - 4px);
  font-size: 12px;
}
@media screen and (max-width: 640px) {
  .main-container .contents .ranking ul li:nth-child(n+4) {
    width: calc(33.3333333333% - 3.3333333333px);
  }
}
@media screen and (max-width: 640px) {
  .main-container .contents .ranking ul li:nth-last-child(-n+2) {
    display: none;
  }
}
.main-container .contents .series {
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(139deg, transparent, transparent 3px, rgb(255, 233, 227) 3px, rgb(255, 233, 227) 7px);
  margin-bottom: 50px;
  box-shadow: 0 0 0 1px rgb(255, 178, 157);
  border-radius: 3px;
}
.main-container .contents .series-title span {
  background: linear-gradient(transparent 60%, rgb(255, 178, 157) 60%);
}
.main-container .contents .series ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 5px;
  list-style: none;
  padding: 10px;
}
.main-container .contents .series ul li {
  margin: 0;
  border-radius: 6px;
  width: 100%;
  overflow: hidden;
  background:#fff;
}
.main-container .contents .series ul li a img {
  width: 100%;
}
.main-container .contents .brand {
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(139deg, transparent, transparent 3px, rgb(227, 254, 255) 3px, rgb(227, 254, 255) 7px);
  margin-bottom: 50px;
  box-shadow: 0 0 0 1px #b1fcff;
  border-radius: 3px;
}
.main-container .contents .brand-title span {
  background: linear-gradient(transparent 60%, #b1fcff 60%);
}
.main-container .contents .brand ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 5px;
  list-style: none;
  padding: 10px;
}
.main-container .contents .brand ul li {
  background: #fff;
  padding: 10px;
  margin: 0;
  border-radius: 3px;
  width: calc(16.6666666667% - 4.1666666667px);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid #b1fcff;
}
.main-container .contents .brand ul li a {
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s all;
}
.main-container .contents .brand ul li a img {
  width: 100%;
}
.main-container .contents .brand ul li a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 640px) {
  .main-container .contents .brand ul li {
    width: calc(33.3333333333% - 3.3333333333px);
  }
}
.main-container .contents .other {
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(139deg, transparent, transparent 3px, rgb(255, 243, 211) 3px, rgb(255, 243, 211) 7px);
  padding: 10px;
  margin-bottom: 50px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px #fff159;
  border-radius: 3px;
}
.main-container .contents .other-title span {
  background: linear-gradient(transparent 60%, #fff159 60%);
}
.main-container .contents .other-content {
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  border-radius: 6px;
}
.main-container .contents .other-content a {
  transition: 0.3s all;
  display: block;
}
.main-container .contents .other-content a img {
  width: 100%;
}
.main-container .contents .other-content a:hover {
  opacity: 0.5;
}
.main-container .contents .other-content a + a {
  margin-top: 10px;
}
.main-container .contents table{
border:1px solid #000;
}

/*add*/
.main-container .contents .strong {
  text-align: center;
}
.main-container .contents .strong-text {
  font-weight: bold;
  margin: 15px auto;
  font-size: 22px;
  color: #000;
}
.main-container .contents .strong-title {
  font-size: 20px;
  text-align: center;
  display: inline-block;
  margin: 15px auto 10px;
  position: relative;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 640px) {
  .main-container .contents .strong-title {
    font-size: 19px;
    letter-spacing: -1px;
  }
}
.main-container .contents .strong-title br {
  display: none;
}
@media screen and (max-width: 640px) {
  .main-container .contents .strong-title br {
    display: block;
  }
}
.main-container .contents .strong-title:before, .main-container .contents .strong-title:after {
  position: relative;
  display: inline-block;
  content: "";
  background: #000;
  width: 2px;
  height: 2em;
  margin: 0 1em;
  margin-top: -0.2em;
  vertical-align: middle;
}
@media screen and (max-width: 640px) {
  .main-container .contents .strong-title:before, .main-container .contents .strong-title:after {
    position: absolute;
    top: 5px;
    height: 100%;
  }
}
.main-container .contents .strong-title:before {
  transform: rotate(-35deg);
}
@media screen and (max-width: 640px) {
  .main-container .contents .strong-title:before {
    left: -40px;
    transform: rotate(-20deg);
  }
}
.main-container .contents .strong-title:after {
  transform: rotate(35deg);
}
@media screen and (max-width: 640px) {
  .main-container .contents .strong-title:after {
    right: -40px;
    transform: rotate(20deg);
  }
}
.main-container .contents .strong-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.main-container .contents .strong-list div {
  border: 2px solid #000;
  background: #fbf6c4;
  text-align: center;
  padding: 15px 30px 20px;
  color: #000;
}
.main-container .contents .strong-list div img {
  margin: 0 auto 10px;
}
.main-container .contents .strong-list div h4 {
  font-size: 18px;
  line-height: 1.7;
  display: inline-block;
  margin: auto;
  font-weight: bold;
}
.main-container .contents .strong-list div h4 span {
  border-bottom: 2px dashed;
  padding-bottom: 2px;
}
.main-container .contents .strong-list div:nth-child(n+1) {
  width: calc(50% - 10px);
}
@media screen and (max-width: 640px) {
  .main-container .contents .strong-list div:nth-child(n+1) {
    width: 100%;
  }
}
.main-container .contents .strong-list div:nth-child(n+1) h4 {
  margin-bottom: 20px;
}
.main-container .contents .strong-list div:nth-child(n+1) p {
  text-align: justify;
  line-height: 1.6;
}
.main-container .contents .strong-list div:nth-child(3) {
  width: 100%;
}
.main-container .contents .strong-list div:nth-child(3) ul {
  text-align: left;
  margin: auto;
  padding: 0;
  width: fit-content;
  list-style: disc;
}
.main-container .contents .strong-list div:nth-child(3) ul li {
  margin-bottom: 5px;
}
.main-container .contents .strong-list div:nth-child(3) ul li span {
  background: linear-gradient(transparent 60%, rgb(255, 178, 208) 60%);
}