@charset "utf-8";
/*======================


カレンダー用css
tw2022_calendar.css
2022/10


======================*/

.inner {
  width: 1080px;
  margin: 0 auto 50px auto;
}

.shadow_area {
padding: 40px 60px;
background: rgba(255,255,255,.9);
box-shadow: 0 0 10px 3px rgba(0,0,0,.08);
}

.sec_subttl {
  font-size: 35px;
  font-weight: 700;
  display: block;
  text-align: center;
  color: #070707;
  padding: 20px;
  position: relative;
}

.sec_subttl span {
  font-size: 18px;
  color: #838383;
  text-align: center;
  display: block;
}

.sec_subttl._underline::before {
  content: '';
  position: absolute;
  bottom: 35px;
  display: inline-block;
  width: 100px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #000;
  border-radius: 2px;
}

h4.sec_subttl {
  font-size: 28px;
  padding: 60px 0 0 0;
}

/*======================
ボタン類
======================*/

.p_link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.btn_link.popup a::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  mask: url(https://tamashiiweb.com/img/common/ico_plus.png) no-repeat center center;
  -webkit-mask: url(https://tamashiiweb.com/img/common/ico_plus.png) no-repeat center center;
    mask-size: auto;
  background: #DC000C;
  width: 15px;
  height: 15px;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/*======================
ポップアップ
======================*/

#cboxOverlay {
  background-color: #000 !important;
}
#cboxLoadedContent {
  background-color: #FFF !important;
}

#cboxClose {
  background-position: 0 0px !important;
  right: 30px !important;
  top: 30px !important;
  width: 34px !important;
  height: 34px !important;
  background-image: url("https://tamashiiweb.com/img/calendar/close.png") !important;
  background-repeat: no-repeat !important;
}

/*======================
アコーディオン
======================*/

.accordion-title{ 
	text-align: center;
	padding: 10px 15px 10px 0;
	font-weight: 700;
	cursor: pointer;
	width: 105px;
	margin: 0 auto;
	position: relative;
	border-bottom: 1px solid #000;
}
.accordion-title::after {
  content: '';
  display: block;
  position: absolute;
  top: calc(50% - 7px);
  right: 5px;
  transform: rotate(90deg);
  mask: url(https://tamashiiweb.com/img/common/ico_arrow_rt.png) no-repeat center center;
  -webkit-mask: url(https://tamashiiweb.com/img/common/ico_arrow_rt.png) no-repeat center center;
  mask-size: auto;
  background: #DC000C;
  width: 15px;
  height: 15px;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.accordion-title.open::after {
  transform: rotate(-90deg);
}


.accordion-ttlt.open{ display: none; }
.accordion-ttlb.open{ display: none; }

.accordion-content {
display: none;
}

/*======================
チェックボックス
======================*/

.check-box {
  cursor: pointer;
}
.check-text {
  /* チェックボックスとテキストの上下を中央に */
  align-items: center;
display: block;
text-align: center;
margin: 0 15px 0 30px;
padding: 5px;
position: relative;
font-size: 12px;
color: #FFFFFF;
}
.check-box input {
  display: none; /* デフォルトのチェックボックスを非表示 */
}
.check-box input + .check-text::before {
background-image: none;
background-position: center;
background-repeat: no-repeat;
background-size: contain;
content: "";
height: 20px;
position: absolute;
width: 20px;
border: 1px solid #000;
margin-right: 5px;
display: block;
top: 3px;
left: -30px;
}
.check-box input:checked + .check-text::before {
  background-image: url("https://tamashiiweb.com/img/common/ico_check.png");
	background-repeat: no-repeat;
	background-size: 16px 16px;
}

.label {
	border-radius: 3px;
	text-align: center;
	margin-bottom: 10px;
}
.label._type01{
	background-color: #5d90ec;
}
.label._type02{
	background-color: #bc4340;
}
.label._type03{
	background-color: #e47a3a;
}
.label._type04{
	background-color: #e47a3a;
}
.label._type05{
	background-color: #9f6da8;
}
.label._type06{
	background-color: #1e984c;
}
.label._type07{
	background-color: #1e984c;
}
.label._type08{
	background-color: #e47a3a;
}
.label._type09{
	background-color: #e47a3a;
}
.label._type10{
	background-color: #de68a0;
}
.label._status01,
.label._status02,
.label._status03,
.label._status05{
	color: #DC000C;
	border: 1px solid #DC000C;
}
.label._status04,
.label._status06{
	background-color: #9B9B9B;
}


/*======================

======================*/

.about{}

.about p{
padding: 30px 0;
text-align: center;
line-height: 2em;
}

.about .btn_link {
  max-width: 450px;
  width: 48%;
  margin: auto;
}

.about .btn_link a {
  font-size: 14px !important;
  font-weight: 700;
  background: linear-gradient(90deg, #FF0000 0%, #DE0000 100%) !important;
  color: #fff !important;
}
.about .btn_link a::after{
  background: #fff !important;
}

.about .btn_link a:hover {
  background: #fff !important;
  color: #000 !important;
}
.btn_link a:hover::after {
  background: #DC000C !important;
}

#about_pop{ background-color: #FFFFFF; }

#about_pop .inner {
  width: 100%;
  margin: 50px auto;
}

#about_pop ._underline::before {
  bottom: 0;
}

#about_pop .exercise_area{
padding: 40px;
border: 1px solid #ccc;
margin: 40px 60px;
}
#about_pop .exercise_area h4.sec_subttl{ font-size: 25px; text-align: center; padding: 0 0 40px 0; }
#about_pop .exercise_area .flex{ display: flex; flex-wrap: wrap; font-size: 16px; }
#about_pop .exercise_area .left{ width: 40%; }
#about_pop .exercise_area .left img{ width: 100%; }
#about_pop .exercise_area .right{ width: 60%; line-height: 1.7em; padding-left: 3%; }
#about_pop .exercise_area .btn_link {
  width: 500px;
  max-width: 100%;
  margin: 30px auto;
}

#about_pop .exercise_area .btn_link a {
  font-size: 14px !important;
  font-weight: 700;
  background: linear-gradient(90deg, #FF0000 0%, #DE0000 100%) !important;
  color: #fff !important;
}
#about_pop .exercise_area .btn_link a::after{
  background: #fff !important;
}

#about_pop .exercise_area .btn_link a:hover {
  background: #fff !important;
  color: #000 !important;
}
#about_pop .exercise_area .btn_link a:hover::after {
  background: #DC000C !important;
}


.sale_area{ width: 550px; margin: 0 auto; display: block; }
.sale_area h4{ font-size: 20px; font-weight: 700; padding: 20px; text-align: center; }
.sale_area .area_btn {
  display: inline-block;
  width: calc((100% - 120px) / 5) !important;
  padding: 3px 5px !important;
  background: #fff;
  color: #A8A8A8;
  border: 1px solid #A8A8A8;
  border-radius: 3px;
  font-size: 14px;
  text-align: center;
  transition: all .2s;
  font-weight: 300;
  margin: 10px;
  pointer-events: auto;
}

.sale_area .area_btn._on {
  cursor: pointer;
  background: #575757;
  color: #fff;
  border: 1px solid #575757;
  pointer-events: auto;
}
.sale_area .area_btn:hover {
  cursor: pointer;
  background: #575757;
  color: #fff;
  border: 1px solid #575757;
  pointer-events: auto;
}

/* 202303追加 */
.current-month_area { margin: 15px auto 25px; }
.current-month_area h4 {
    font-size: 20px;
    font-weight: 700;
    padding: 20px;
    text-align: center;
}
.current-month_area .btn_link {
    width: 380px;
    max-width: 30%;
    margin: 0 10px;
}
.current-month_area .btn_link a {
    background: #d12c26;
    color: #fff;
    font-size: 14px !important;
    font-weight: 300;
    padding: 15px;
}
.current-month_area .btn_link a:hover {
    background: #fff;
    color: #d12c26;
}
/* .current-month_area .btn_link a:hover::after {
    background: #fff !important;
} */
.current-month_area .btn_link a::after {
    display: none;
}
/* /202303追加 */


.search_area{  }

.search_area h4{ font-size: 20px; font-weight: 700; padding: 20px; text-align: center; }


.search_area .btn_link {
  width: 380px;
  max-width: 23%;
  margin: auto;
}

.search_area .btn_link a {
  font-size: 14px !important;
  font-weight: 300;
}
.search_area .btn_link a:hover::after {
  background: #FFF !important;
}


.search_pop { background-color: #FFFFFF; }

.search_pop .inner {
  width: 100%;
  margin: 50px auto;
}

.search_pop ._underline::before {
  bottom: 0;
}

.search_pop .p_link {
  padding: 50px 0;
}
.search_pop .p_link a {
  position: relative;
  padding: 20px 5px 20px 15px;
  font-size: 14px;
}

.search_pop .btn_link {
width: 300px;
max-width: 30%;
margin: 0 20px;
}
.search_pop .btn_link a:hover::after {
  background: #FFF !important;
}


.search_pop .btn_link a.check { padding: 20px 0px 20px 30px; }
.search_pop .btn_link a.check::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: auto;
  left: 76px;
  transform: translateY(-50%);
  mask: url(https://tamashiiweb.com/img/common/ico_check.png) no-repeat center center !important;
  -webkit-mask: url(https://tamashiiweb.com/img/common/ico_check.png) no-repeat center center !important;
    mask-size: auto;
  background: #DC000C;
  width: 16px;
  height: 16px;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.search_pop .btn_link a.check:hover::after {
  background: #FFF !important;
}
.search_pop .btn_link a.batsu { padding: 20px 0px 20px 30px; }
.search_pop .btn_link a.batsu::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: auto;
  left: 65px;
  transform: translateY(-50%);
  mask: url(https://tamashiiweb.com/img/common/ico_batsu.png) no-repeat center center !important;
  -webkit-mask: url(https://tamashiiweb.com/img/common/ico_batsu.png) no-repeat center center !important;
    mask-size: auto;
  background: #DC000C;
  width: 16px;
  height: 16px;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.search_pop .btn_link a.batsu:hover::after {
  background: #FFF !important;
}

.search_pop .btn_link a.reflect {
  font-size: 14px !important;
  font-weight: 700;
  background: linear-gradient(90deg, #FF0000 0%, #DE0000 100%) !important;
  color: #fff !important;
}
.search_pop .btn_link a.reflect::after{
  display: none;
}

.search_pop .btn_link a.reflect:hover {
  background: #fff !important;
  color: #000 !important;
}

#category_pop #categorysearch ul{ display: flex; flex-wrap: wrap; width: 80%; margin: auto; }
#category_pop #categorysearch ul li{ width: 31%; margin: 1%; }


#series_pop .flex{ 
display: flex;
flex-wrap: wrap;
width: 80%;
margin: auto;
max-height: 400px;
overflow: scroll;
}
#series_pop .series_ttl{
	padding: 20px;
	font-size: 22px;
	color: #FFFFFF;
	background-color:#292929;
	font-weight: 700;
}
#series_pop .flex_wrap{ width: 48%; margin: 1%; }
#series_pop .flex_wrap ul{padding: 15px; }
#series_pop .flex_wrap ul .check-text{ color: #000000 !important; font-size: 14px; text-align: left; }

#series_pop .series_area{ width: 650px; margin: 30px auto 0 auto; }
#series_pop .series_area li {
  display: inline-block;
  width: calc((93% - 100px) / 6);
  font-size: 18px;
  font-weight: 700;
	}
#series_pop .series_area li.area_btn {
  display: inline-block;
  width: calc((96% - 100px) / 6);
  padding: 10px 5px;
  background: #fff;
  color: #A8A8A8;
  border: 1px solid #A8A8A8;
  border-radius: 3px;
  font-size: 16px;
  text-align: center;
  transition: all .2s;
  font-weight: 300;
  margin: 10px;
}

#series_pop .series_area li.area_btn.active {
  cursor: pointer;
  background: #575757;
  color: #fff;
  border: 1px solid #575757;
  pointer-events: auto;
}
#series_pop .series_area .area_btn:hover {
  cursor: pointer;
  background: #575757;
  color: #fff;
  border: 1px solid #575757;
  pointer-events: auto;
}

#series_pop .series_tab_box .series_tab_panel {
    display:none;
}

#series_pop .series_tab_box .series_tab_panel.active {
    display:flex;
}


#brand_pop .flex{ 
display: flex;
flex-wrap: wrap;
width: 80%;
margin: auto;
max-height: 400px;
overflow: scroll;
}
#brand_pop ul.flex .check-text{ color: #000000 !important; font-size: 14px; text-align: left; }
#brand_pop ul.flex li{ width: 48%; margin: 1%; }


#monthly_pop .flex{ 
display: flex;
flex-wrap: wrap;
width: 80%;
margin: auto;
border-bottom: 1px solid #ccc;
padding: 40px 0;
}
#monthly_pop .monthly_ttl{
padding: 10px 5px;
font-size: 18px;
font-weight: 700;
}

#monthly_pop .year{ width: 40%; }
#monthly_pop .monthly_area.year li.area_btn {
  display: inline-block;
  width: calc((100% - 70px) / 2);
  padding: 10px 5px;
  background: #fff;
  color: #A8A8A8;
  border: 1px solid #A8A8A8;
  border-radius: 3px;
  font-size: 16px;
  text-align: center;
  transition: all .2s;
  font-weight: 700;
  margin: 5px;
}
#monthly_pop .monthly_area.year li.area_btn._on {
  cursor: pointer;
  background: #575757;
  color: #fff;
  border: 1px solid #575757;
  pointer-events: auto;
}
#monthly_pop .monthly_area.year .area_btn:hover {
  cursor: pointer;
  background: #575757;
  color: #fff;
  border: 1px solid #575757;
  pointer-events: auto;
}

#monthly_pop .month{ width: 60%; }
#monthly_pop .monthly_area.month li.area_btn {
  display: inline-block;
  width: calc((100% - 70px) / 4);
  padding: 10px 5px;
  background: #fff;
  color: #A8A8A8;
  border: 1px solid #A8A8A8;
  border-radius: 3px;
  font-size: 16px;
  text-align: center;
  transition: all .2s;
  font-weight: 300;
  margin: 5px;
}
#monthly_pop .monthly_area.month li.area_btn._on {
  cursor: pointer;
  background: #575757;
  color: #fff;
  border: 1px solid #575757;
  pointer-events: auto;
}
#monthly_pop .monthly_area.month .area_btn:hover {
  cursor: pointer;
  background: #575757;
  color: #fff;
  border: 1px solid #575757;
  pointer-events: auto;
}
#monthly_pop .selecting{
width: 80%;
margin: auto;
padding: 40px 0;
}

#item_pop{}
#item_pop .inner{ padding: 0 40px; }
#item_pop .flex{ 
display: flex;
flex-wrap: wrap;
}

#item_pop .item_wrap{ margin-bottom: 30px; }
#item_pop .itemdtl_contentsarea{ margin: 0 auto !important; }
#item_pop .item_images{
	width: 400px;
	height: 400px; 
	text-align: center;
	background-color: #eeeeee;
    display: flex;
    justify-content: center;
    align-items: center;
}
#item_pop .item_images img{
	width: auto;
	max-width: 100%;
    height: auto;
    max-height: 100%;
}
#item_pop .item_info{
	width: calc(100% - 420px);
	margin-left: 20px;
}

#item_pop .item_info span.label{
	align-items: center;
	display: block;
	text-align: center;
	padding: 5px;
	position: relative;
	font-size: 12px;
	color: #FFFFFF;
	width: 170px;
}

#item_pop .item_info dl{ line-height: 2em;}
#item_pop .item_info dt { margin-bottom: 10px; }
#item_pop .item_info dt .brand_name{ font-size: 22px; font-weight: 300; }
#item_pop .item_info dt .item_name{ font-size: 26px; font-weight: 700; }
#item_pop .item_info dd{ font-size: 16px; }

#item_pop ul.brand_list{ display: flex; flex-wrap: wrap; }
#item_pop ul.brand_list li{ 
	width: 32%; 
	margin: 20px 1% 20px 0; 
	background-color: #292929; 
	color: #FFF; 
	font-size: 12px; 
	text-align: center; 
	padding: 3px; 
	border-radius: 3px;
}

#item_pop .item_info .btn_link {
  width: 300px;
  max-width: 50%;
  margin: 0;
}
#item_pop .p_link {
  padding: 30px 0;
  justify-content:flex-start;
}

.calendar{}

.calendar .accordion-ttlb {
  text-align: center;
  padding: 10px 15px 10px 0;
  font-weight: 700;
  cursor: pointer;
  width: 215px;
  margin: 60px auto 0 auto;
  position: relative;
  border-bottom: 1px solid #000;
}
.calendar .accordion-ttlb::after {
  transform: rotate(-90deg);
}

.calendar .accordion-ttlt {
  text-align: center;
  padding: 10px 15px 10px 0;
  font-weight: 700;
  cursor: pointer;
  width: 135px;
  margin: 30px auto;
  position: relative;
  border-bottom: 1px solid #000;
}
.calendar .accordion-ttlt::after {
  transform: rotate(90deg);
}


.releaseday {}

.releaseday .accordion-ttlt {
  text-align: center;
  padding: 10px 15px 10px 0;
  font-weight: 700;
  cursor: pointer;
  width: 135px;
  margin: 30px auto;
  position: relative;
  border-bottom: 1px solid #000;
}

.releaseday ._underline::before{ bottom: 0; }


.sendday {}

.sendday .accordion-ttlt {
  text-align: center;
  padding: 10px 15px 10px 0;
  font-weight: 700;
  cursor: pointer;
  width: 135px;
  margin: 30px auto;
  position: relative;
  border-bottom: 1px solid #000;
}

.sendday ._underline::before{ bottom: 0; }



/*======================
スライダー
======================*/
#tw2022_wrapper .inner .slider_wrap{
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  padding: 40px;
}

#tw2022_wrapper .inner .swiper-slide{
    position: relative;
	height: auto;
	width: 100%;
}
#tw2022_wrapper .inner .slider_nav_wrap {
position: absolute;
top: calc(50% - 15px);
right: 0;
left: 0;
bottom: initial;
width: 100%;
}
#tw2022_wrapper .inner .swiper-button-next, #tw2022_wrapper .inner .swiper-rtl .swiper-button-prev {
  left: auto;
  right: 0;
}
#tw2022_wrapper .inner .swiper-button-prev, #tw2022_wrapper .inner .swiper-rtl .swiper-button-next {
  left: 0;
  right: auto;
}

#tw2022_wrapper .inner .swiper-button-next:before,
#tw2022_wrapper .inner .swiper-button-prev:before {
	background: #DC000C;
}
#tw2022_wrapper .inner .swiper-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
	background-color: #838383;
}
#tw2022_wrapper .inner .swiper-pagination{
  display: none;
}
.calender {
    position: absolute;
    top: 0;
    font-size: 40px;
    font-weight: 700;
	left: 10px;
}
.calender span{
	font-size: 17px;
	margin-left: 10px;
}
#tw2022_wrapper .inner .slider_wrap{ border-bottom: 1px solid #eeeeee; }
.inner .lists {
margin-top: 60px;
margin-left: 5%;
margin-bottom: 5%;
height: calc(100% - 60px);
max-width: 300px;
display: flex;
margin-right: 5%;
}
.inner .lists a {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.inner .lists .thum {
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}
.inner .lists a:hover .thum img{
	transform: scale(1.1);
}
.inner .lists .thum._fav:before{
	content: '';
	display: block;
	position: absolute;
	top: 2px;
    left: 2px;
    background: #fff;
	mask: url(https://tamashiiweb.com/img/common/ico_fav.png) no-repeat center center;
    -webkit-mask: url(https://tamashiiweb.com/img//common/ico_fav.png) no-repeat center center;
	width: 15px;
    height: 15px;
    z-index: 1;
}
.inner .lists .thum._fav:after{
	content: '';
	display: block;
	position: absolute;
    top: 0;
    left: 0;
	border-bottom: 35px solid transparent;
	border-left: 35px solid #DC000C;
}

/*.inner .lists .thum ._pop:before{
content: '';
display: block;
position: absolute;
bottom: 16px;
right: 16px;
background: #fff;
mask: url(../img/common/ico_plus.png) no-repeat center center;
-webkit-mask: url(../img/common/ico_plus.png) no-repeat center center;
width: 15px;
height: 15px;
z-index: 1;
}
.inner .lists .thum ._pop:after{
content: '';
display: block;
position: absolute;
bottom: 10px;
right: 10px;
background-color: #DC000C;
border-radius: 20px;
height: 25px;
width: 25px;
}*/



.inner .lists .text {
    color: #070707;
}

.inner .lists a:hover .text{
	color: #DC000C;
	opacity: 1;
}
.inner .lists .text .brand{
	font-size: 12px;
	margin-bottom: 5px;
}
.inner .lists._resale .text{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: row-reverse;
}
.inner .lists._resale .brand{
	width: 60%;
}

.inner .lists .text .name {
  font-size: 14px;
  margin-bottom: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  min-height: 3.5em;
}
.label_wrap{
    margin-top: auto;
}

#schedule .today{
    position: absolute;
    right: 0;
    top: -90px;
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    background-color: #DC000C;
    height: 100%;
    width: 380px;
    z-index: 0;
}
#schedule .today span{
	color: #BF0D0D;
	font-weight: 700;
    text-align: center;
	line-height: 0.8em;
	display: inline-block;
    margin-left: 90px;
}
#schedule .today .txt{
    font-size: 14px;
    position: absolute;
    left: 30px;
    top: 65px;
}
#schedule .today .month{
    font-size: 50px;
    position: absolute;
    left: 95px;
    top: 30px;
}
#schedule .today .day{
    font-size: 151px;
    position: absolute;
    left: 30px;
    top: 90px;
}

#schedule .btn_link{
    position: absolute;
    bottom: 30px;
	left: 36%;
}

/*======================
スライダー about
======================*/

#about_pop .slider_wrap {
  padding: 0 40px;
}

#about_pop .swiper {
  padding: 0 40px;
}
#about_pop .swiper-slide{
	height: auto;
}
#about_pop .lists{
	position: relative;
    margin-right: -15%;
	height: 100%;
}
#about_pop .lists a {
    display: flex;
    flex-direction: column;
    height: 100%;
}
#about_pop .lists .thum_wrap{
	position: relative;
	margin-bottom: 15px;
}
#about_pop .lists .thum_wrap:after{
	content: '';
	display: block;
	position: absolute;
	top: 5px;
    bottom: -5px;
    right: -5px;
    width: 100%;
	background-color: #DC000C;
	-webkit-clip-path: polygon(20% 0%, 100% 0%, 80% 96%, 0% 96%);
	clip-path: polygon(20% 0%, 100% 0%, 80% 96%, 0% 96%);
	z-index: -1;
	transition: all .2s;
}
#about_pop .lists a:hover .thum_wrap:after{
	transform: translate(-10px,-10px);
}
#about_pop .lists .thum{
   -webkit-clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
    overflow: hidden;
}
#about_pop .lists .thum img{
	position: relative;
	transform: scale(1.3);
    width: 100%;
}
#about_pop .lists a:hover .thum img{
		opacity: 1;
}
#about_pop .swiper-wrapper{
	padding-bottom: 30px;
}
#about_pop .lists .text{
    display: flex;
    flex-direction: column;
    height: 100%;
	text-align: center;
	margin-right: 23%;
	font-weight: bold;
}

#about_pop .lists a:hover .text{
    color: #DC000C;
}

#about_pop .slider_nav_wrap{
	position: absolute;
    top: 30px;
    right: 4%;
    left: initial;
    bottom: initial;
    max-width: 30%;
}
#about_pop .swiper-button-next:before,
#about_pop .swiper-button-prev:before {
	background: #DC000C;
}

#about_pop .swiper-button-next, #about_pop .swiper-rtl .swiper-button-prev {
  left: auto;
  right: 0;
  top: 16px;
}
#about_pop .swiper-button-prev, #about_pop .swiper-rtl .swiper-button-next {
  left: 0;
  right: auto;
  top: 16px;
}

#about_pop .swiper-button-prev, #about_pop .swiper-button-next {
  width: 15px;
  height: 15px;
  transition: all .2s;
  border-radius: 50%;
}

#about_pop .swiper-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
	background-color: #838383;
}

#about_pop .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color,#dc020d);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

#about_pop .swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, #about_pop .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, #about_pop .swiper-vertical > #about_pop .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 85%;
  height: 4px;
  left: 8%;
  top: 0;
}