/* nav */
.navmenu {
  position: relative;
  box-sizing: border-box;
  margin-bottom: 15px;
  padding: 0 10px;
  border-radius: 10px;
  background: #5c787c;
  font-size: 14px;
}

.navmenu input,
.navmenu label {
  display: none;
}

.navmenu-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #5c787c;
}

.navmenu-item {
  display: inline-block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  line-height: 59px;
  font-size: 14px;
  transition: color .2s;
}

.navmenu-item:hover {
  color: #fff;
  text-decoration: underline;
}

@media screen and (max-width: 998px) {
  .navmenu {
    border-radius: 0;
    margin-bottom: 10px;
  }

  .navmenu label {
    display: block;
    text-align: center;
    width: 100%;
    line-height: 49px;
    font-size: 18px;
    color: #fff;
  }

  .navmenu input {
    display: none;
  }

  .navmenu-list {
    z-index: 1;
    position: absolute;
    left: 0;
    top: 100%;
    flex-direction: column;
    width: 100%;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: all .2s;
  }

  .navmenu input:checked~.navmenu-list {
    opacity: 1;
    pointer-events: visible;
  }

  .navmenu-item {
    text-align: center;
    width: 100%;
    margin-top: 5px;
    background: #5c787c;
  }
}



 /* swp-320 */
 .swp-320 {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin-bottom: 15px;
  overflow: hidden;
}

.swp-320 input[type="radio"] {
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0;
  cursor: pointer;
  opacity: 0;
}

.radio-left,
.handle-left {
  left: 4%;
}

.radio-right,
.handle-right {
  right: 4%;
}

.swp-handle {
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 40px;
  height: 40px;
  pointer-events: none;
}

.handle-right {
  transform: translateY(-50%) scaleX(-1);
}

.radio-left:checked~.handle-left {
  display: none;
}

.radio-right:checked~.handle-right {
  display: none;
}

.radio-left:checked~.swp-content {
  transform: translateX(0);
}

.radio-right:checked~.swp-content {
  transform: translateX(-50%);
}

.swp-content {
  position: relative;
  display: flex;
  width: 200%;
  transition: all .4s ease;
}

.swp-slide {
  width: 50%;
}

.swp-slide img {
  display: block;
  width: 100%;
}

.white.swp-slide-content h3,
.white.swp-slide-content p {
  color: #fff;
}

.black.swp-slide-content h3,
.black.swp-slide-content p {
  color: #333;
}

.swp-slide-content {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 20%;
}

.swp-slide-content h3 {
  margin: 0 0 20px 0;
  line-height: 1.5;
  font-size: 28px;
  font-weight: normal;
}

.swp-slide-content p {
  margin: 0;
  line-height: 1.5;
  font-size: 16px;
}

.swp-slide:nth-child(1) .swp-slide-content {
  left: 4%;
}

.swp-slide:nth-child(2) .swp-slide-content {
  left: 54%;
}

@media screen and (max-width: 768px) {
  .swp-320 {
    margin-bottom: 10px;
  }

  .swp-slide-content {
    top: 50%;
    width: 35%;
    transform: translateY(-50%) scale(.6);
    transform-origin: left center;
  }

  .swp-slide:nth-child(1) .swp-slide-content {
    left: 4%;
  }

  .swp-slide:nth-child(2) .swp-slide-content {
    left: 54%;
    transform: translateY(-50%) scale(.6);
    transform-origin: left center;
  }

  .swp-slide-content h3 {
    margin: 0 0 5px 0;
    line-height: 22px;
    font-size: 18px;
  }

  .swp-slide-content p {
    margin: 0;
    line-height: 16px;
    font-size: 12px;
  }
}



/* carousel-600 */
.csl-600 {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-bottom: 15px;
}

.csl-container {
  position: relative;
  width: 55%;
  overflow: hidden;
}

.csl-content {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 500%;
}

.csl-slide {
  position: relative;
  width: 20%;
}

.csl-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.csl-slide span {
  position: absolute;
  box-sizing: border-box;
  border-radius: 2px;
  padding: 4px 8px;
  text-align: center;
  font-size: 14px;
}

.csl-slide span.white {
  border: 1px solid #fff;
  color: #fff;
}

.csl-slide span.black {
  border: 1px solid #222;
  color: #222;
}

.csl-slide span.left-top {
  left: 6%;
  top: 6%;
}

.csl-slide span.right-top {
  right: 6%;
  top: 6%;
}

.csl-slide span.left-bottom {
  left: 6%;
  bottom: 6%;
}

.csl-slide span.right-bottom {
  right: 6%;
  bottom: 6%;
}

.csl-text {
  display: flex;
  width: 45%;
  background-color: #f4f5f6;
  color: #333;
  overflow: hidden;
}

.csl-text-wrapper {
  width: 90%;
  margin: auto;
}

.csl-text-title {
  margin: 0 0 20px 0;
  line-height: 28px;
  font-size: 28px;
  font-weight: normal;
}

.csl-text-list {
  margin: 0;
  padding-left: 20px;
}

.csl-text-list li {
  list-style-type: disc;
  margin-top: 10px;
  line-height: 24px;
  font-size: 16px;
}

/* thumbnail-600 */
.tbl-600 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 10px;
}

.tbl-item {
  position: relative;
  display: inline-block;
  width: calc(100% / 5 - 10px);
}

.tbl-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
  transition: background .2s ease;
}

.tbl-item:hover::after {
  background: rgba(0, 0, 0, 0);
}

.tbl-item img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 998px) {
  .csl-600 {
    flex-direction: column;
    margin-bottom: 10px;
  }

  .csl-container,
  .csl-text {
    width: 100%;
  }

  .csl-text {
    padding: 20px 0;
  }

  .csl-text-title {
    margin: 0 0 10px 0;
    line-height: 22px;
    font-size: 18px;
  }

  .csl-text-list li {
    line-height: 16px;
    font-size: 12px;
  }

  .csl-slide span {
    font-size: 12px;
  }
}



/* banner */
.bnr {
  position: relative;
  margin-bottom: 10px;
}

.bnr>img {
  display: block;
  width: 100%;
}

img.bnr-logo {
  display: inline-block;
  width: 160px;
  position: absolute;
  top: 15%;
  left: 10%;
}

.bnr-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.bnr-content h3 {
  margin: 0 0 20px 0;
  letter-spacing: 1px;
  line-height: 32px;
  font-size: 28px;
  font-weight: normal;
}

.bnr-content p {
  margin: 0;
  letter-spacing: 1px;
  line-height: 24px;
  font-size: 16px;
}

/* banner-number */
.bnr-1 .bnr-content {
  left: 10%;
  width: 30%;
  color: #fff;
}

.bnr-2 .bnr-content {
  left: 10%;
  width: 30%;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .bnr {
    margin-bottom: 10px;
  }

  img.bnr-logo {
    width: 80px;
  }

  .bnr-content h3 {
    margin: 0 0 10px 0;
    line-height: 22px;
    font-size: 18px;
  }

  .bnr-content p {
    line-height: 16px;
    font-size: 12px;
  }

  .bnr-1 .bnr-content {
    width: 60%;
    transform: translateY(-50%) scale(.6);
    transform-origin: left center;
  }


  .bnr-2 .bnr-content {
    width: 80%;
    transform: translateY(-50%) scale(.6);
    transform-origin: left center;
  }
}



/* symbol-list */
.symbol-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 60%;
  margin-top: 80px;
}

.symbol-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.symbol-item span {
  margin-top: 10px;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .symbol-list {
    transform: scale(.5);
    transform-origin: left center;
    width: 100%;
    margin-top: 20px;
  }
}


/* mag */
.mag {
  width: 80%;
  margin: 60px auto;
}

.mag>img {
  display: block;
  width: 100%;
}

.mag img:nth-child(2) {
  margin: 60px 0;
}

.product-info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

.product-info:nth-of-type(1) {
  margin-top: 40px;
}

.product-info li {
  list-style: none;

  width: calc(100% / 2);
  border-bottom: 1px solid #b8b8b9;
  line-height: 35px;
  font-size: 16px;
}

.alone.product-info li {
  width: 100%;
}

.cpd,
.fmt {
  width: 100%;
  margin-top: 100px;
}

.cpd h3,
.fmt h3 {
  margin:  0 0 20px 0;
  line-height: 32px;
  letter-spacing: 1px;
  font-size: 28px;
  font-weight: normal;
}

.cpd-list,
.fmt-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cpd-item,
.fmt-item {
  width: calc(100% / 2 - 20px);
  text-align: center;
}

.cpd-item img,
.fmt-item img {
  display: block;
  width: 100%;
}

.cpd-item span {
  display: inline-block;
  margin: 20px 0;
}

.fmt-item span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  margin-top: 5px;
  background: #585656;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .mag {
    width: 90%;
    margin: 20px auto;
  }

  .product-info:nth-of-type(1) {
    margin-top: 20px;
  }

  .product-info li {
    width: 100%;
    line-height: 24px;
    font-size: 12px;
  }

  .cpd,
  .fmt {
    margin-top: 40px;
  }

  .cpd h3,
  .fmt h3 {
    line-height: 22px;
    font-size: 18px;
  }

  .cpd-list,
  .fmt-list {
    flex-direction: column;
  }

  .cpd-item,
  .fmt-item {
    width: 100%;
    margin-bottom: 20px;
  }

  .cpd-item span {
    margin-top: 10px;
    font-size: 12px;
  }

  .fmt-item span {
    font-size: 12px;
  }
} 


/* selling */
.selling {
  margin-top: 40px;
}

.selling-title {
  display: inline-block;
  max-width: 460px;
  width: 100%;
  box-sizing: border-box;
  padding-left: 40px;
  border-radius: 0 20px 20px 0;
  background: #5c787c;
  line-height: 64px;
  font-size: 24px;
  color: #fff;
}

.selling-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 10px;
}

.selling-item {
  cursor: pointer;
  width: calc(100% / 5 - 10px);
  margin-top: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.selling-item img {
  display: block;
  width: 100%;
  transition: all .3s;
}

.selling-item:hover img {
  transform: scale(1.1);
}

@media screen and (max-width: 998px) {
  .selling-title {
    max-width: 300px;
    width: 100%;
    padding-left: 20px;
    border-radius: 0 15px 15px 0;
    line-height: 49px;
    font-size: 18px;
  }

  .selling-item {
    width: calc(100% / 2 - 10px);
  }
}