<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* main */
main{
  width: 100%;
  display: flex;
  justify-content:flex-end;
  align-items: center;
  position: relative;
  background-color: #000000;
  margin-top: 100px;
}
main h2{
  font-size: 200px; 
  position: absolute;
  top: 50%;
  left: 80px;
  transition: 0.3s;
}
/* //main */

/* section */
.speaker{
  width: calc(100% - 100px);
  margin: 250px auto;
  text-align: center;
  overflow: hidden;
  padding: 0 10px;
}
.speaker .textbox{
  margin-bottom: 200px;
  padding: 10px 0;
}
.speaker .textbox h4{
  font-size: 30px;
  margin-bottom: 50px;
  transition: 0.3s;
}
.speaker .textbox p{
  font-size: 26px;
  line-height: 150%;
  transition: 0.3s;
  font-weight: 400;
}

h3{
  margin-bottom: 100px;
}
.speaker .bestitem{
  max-width: 1400px;
  margin: auto;
}
.swiper-wrapper{
  display: flex;
}
.swiper-scrollbar {
  width: 100% !important;
  background-color: #cccccc;
  position: relative !important;
  left: 0 !important;
  top: 0 !important;
  margin-top: 50px;
}
.item{
  flex-shrink: 0;
  text-align: start;
  margin-bottom: 20px;
}
.item a img{
  margin: auto;
  width: 100%;
}
del{
  font-weight: 300;
  font-size: 18px;
}
.red_bold{
  font-weight: 700;
  font-size: 20px;
  color: var(--salecolor--);
}
.item .title{
  margin: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.colorbox{
  display: flex;
  align-items: center;
  gap: 14px;
}
.colorbox .color_black{
  width:1.5rem;
  height: 1.5rem;
  border-radius: 100%;
  background-color: #000000;
  outline: 0.5px solid #5e5e5e;
}
.colorbox .color_brown{
  width:1.5rem;
  height: 1.5rem;
  border-radius: 100%;
  background-color: #824820;
}
.colorbox .color_cream{
  width:1.5rem;
  height: 1.5rem;
  border-radius: 100%;
  background-color: #E8E0D5;
}

.colorbox .color_half1{
  width:1.5rem;
  height: 1.5rem;
  border-radius: 100%;
  background: linear-gradient(90deg, rgb(0, 0, 0) 50%, rgb(185, 147, 94) 50%);
  outline: 0.5px solid #5e5e5e;
}
.colorbox .color_half2{
  width:1.5rem;
  height: 1.5rem;
  border-radius: 100%;
  background: linear-gradient(90deg, rgb(0, 0, 0) 50%, rgb(181, 181, 181) 50%);
  outline: 0.5px solid #5e5e5e;
}
.item .title a{
  font-weight: 400;
  font-size: 18px;
}
.item p{
  font-size: 18px;
  font-weight: 300;
}
.btn_box{
  margin-top: 150px;
  margin-bottom: 120px;
}
.btn_box button{
  width: 120px;
  padding: 6px;
  border-radius: 20px;
  background-color: #353535;
  color: #f2f2f2;
  outline: none;
  border: none;
  margin-right: 10px;
  font-size: 20px;
}
.btn_box button:last-child{
  margin-right: 0;
}
.btn_box button:first-child{
  background-color: var(--subcolor--);
}
.product{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.out{
  text-decoration: line-through;
}
/* //section */
</pre></body></html>