.second-nav {
  z-index: 2111;
}

.second-nav__inner ul li {
  position: relative;
}

.second-nav__inner ul li.active:after {
  opacity: 1;
  width: 18px;
  transition: all 300ms ease;
}

.second-nav__inner ul li:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  width: 0;
  height: 4px;
  opacity: 0;
  border-radius: 2px;
  background-color: var(--hover-color);
  /*transition: all 300ms ease*/
}

.second-nav ul li:hover {
  color: var(--hover-color);
}


.container-general {
  padding: 30px 0;
  margin: 0 auto;
  /*width: 90%;*/
  /*max-width: 1200px*/
}
.container-general .gallery-wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 70vh;
}
.container-general .gallery-wrap .item {
  flex: 1;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: none;
  transition: all 0.8s ease;
  position: relative;
  overflow: hidden;
}
/*.container-general .gallery-wrap .item:hover {
  flex: 7;
}
.container-general .gallery-wrap .item .item-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 1;
  font-size: 24px;
}

.container-general .gallery-wrap .item .item-description {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 1;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 80%;
  text-align: center;
  background: rgba(0, 0, 0, 0.7); !* 娣诲姞鑳屾櫙浠ヤ究浜庨槄璇� *!
  padding: 10px;
  border-radius: 5px;
}

.container-general .gallery-wrap .item:hover .item-description {
  opacity: 1;
}*/


.container-general .gallery-wrap .item:hover {
  flex: 3;
}
.container-general .gallery-wrap .item .item-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 1;
  font-size: 24px;
  text-align: center;
}
.container-general .gallery-wrap .item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* 閬僵灞傝儗鏅� */
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0.2;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.container-general .gallery-wrap .item .item-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.container-general .gallery-wrap .item .overlay .item-description {
  font-size: 28px;
  opacity: 0;
  transition: opacity 300ms ease;
}
.container-general .gallery-wrap .item:hover .overlay .item-description,
.container-general .gallery-wrap .item:hover .overlay {
  opacity: 1;
}
.container-general .gallery-wrap .item:hover .item-title {
  opacity: 0;
}
@media (max-width: 768px) {
  .container-general .gallery-wrap {
    height: 50vh;
  }
  .container-general .gallery-wrap .item .item-title {
    font-size: 20px;
  }

  .container-general .gallery-wrap .item .overlay .item-description {
    font-size: 16px;
  }
}

.wrap-effect-1 .item:first-of-type {
  background-image: url("../../images/about/20250427114101.jpg");
}
.wrap-effect-1 .item:nth-of-type(2) {
  background-image: url("../../images/about/20250427125449.jpg");
}
.wrap-effect-1 .item:nth-of-type(3) {
  background-image: url("../../images/about/20250427122910.jpg");
}


.inspire {
  border: 1px solid rgba(22, 76, 167, 0.6);
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  margin: 10px;
  padding: 10px;
}
.inspire:after {
  background: #38ef7d;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.4;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: -10;
}
.inspire:hover:after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  25% {
    transform: rotate(10deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-10deg) translate3d(0, 0, 0);
  }
  75% {
    transform: rotate(5deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}



.news-card {
  position: relative;
  /*width: 100%;*/
  /*max-width: 400px;*/
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.news-card__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-card__title {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

.news-card__subtitle {
  font-size: 14px;
  margin: 5px 0;
}

.news-card__date {
  font-size: 12px;
  margin-top: 10px;
}

.news-card:hover .news-card__image img {
  opacity: 0;
}

.news-card:hover .news-card__content {
  opacity: 1;
}

@media (max-width: 768px) {
  .news-card {
    max-width: 100%;
  }

  .news-card__title {
    font-size: 16px;
  }

  .news-card__subtitle {
    font-size: 12px;
  }

  .news-card__date {
    font-size: 10px;
  }
}

.single-inspiration {
  position: relative;
  -webkit-transition: all .5s;
  transition: all .5s;
  margin-bottom: 30px
}

.single-inspiration .blog-link {
  position: absolute;
  top: 30px;
  left: 0;
  width: 150px;
  background-color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 30px;
  text-align: center;
  -webkit-transition: all .5s;
  transition: all .5s
}

.single-inspiration .inspiration-content {
  padding: 30px;
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0,0,0,0.05);
  box-shadow: 0 0 20px 3px rgba(0,0,0,0.05);
  max-width: 370px;
  -webkit-transition: all .5s;
  transition: all .5s;
  margin-top: -75px
}

.single-inspiration .inspiration-content a h3 {
  margin-bottom: 15px;
  -webkit-transition: all .5s;
  transition: all .5s;
  font-size: 20px
}

.single-inspiration .inspiration-content ul li {
  display: inline-block;
  padding-right: 10px
}

.single-inspiration .inspiration-content ul li i {
  color: #d80650;
  margin-right: 5px;
  display: inline-block;
  position: relative;
  top: 2px
}

.single-inspiration .inspiration-content ul li .admin {
  color: #343434
}

.single-inspiration:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px)
}

.single-inspiration:hover .blog-link {
  background-color: #d80650;
  color: #fff
}

.single-inspiration:hover .inspiration-content {
  max-width: 100%;
  background-color: #d80650
}

.single-inspiration:hover .inspiration-content a h3 {
  color: #fff
}

.single-inspiration:hover .inspiration-content ul li {
  color: #fff
}

.single-inspiration:hover .inspiration-content ul li .admin {
  color: #fff
}

.single-inspiration:hover .inspiration-content ul li i {
  color: #fff
}



@media (min-width: 992px) and (max-width: 1199px) {
  .blog-page--sidebar .blog-card-two__meta {
    /*left: 30px*/
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blog-page--sidebar .blog-card-two__content {
    padding: 21px 30px 30px
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blog-page--sidebar .blog-card-two__title {
    font-size: 24px
  }
}

.blog-card-two {
  background-color: var(--transwide-white, #fff);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.15)
}

.blog-card-two__image {
  position: relative;
  overflow: hidden;
  z-index: 1
}

.blog-card-two__image img {
  position: relative;
  width: 100%;
  display: block;
  transition: all 500ms ease
}

.blog-card-two__image__link {
  width: 0;
  height: 100%;
  background-color: RGBA(var(--transwide-black3-rgb, 0, 0, 0), 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 500ms ease
}

.blog-card-two__image__link::before, .blog-card-two__image__link::after {
  content: "";
  width: 25px;
  height: 2px;
  background-color: var(--transwide-white, #fff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 500ms ease
}

.blog-card-two__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg)
}
.blog-card-two__image__link .visual-center {
  opacity: 0;
  position: absolute;
  font-size: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  padding: 10px; /* 鍙€夛細娣诲姞涓€浜涘唴杈硅窛 */
  color: white; /* 鏍规嵁闇€瑕佽皟鏁撮鑹� */
}
.blog-card-two:hover .blog-card-two__image img {
  transform: scale(1.1)
}

.blog-card-two:hover .blog-card-two__image__link {
  opacity: 1;
  width: 100%;
}
.blog-card-two:hover .blog-card-two__image__link .visual-center {
  opacity: 1;
  width: 90%;
}

.blog-card-two:hover .blog-card-two__image__link::before,
.blog-card-two:hover .blog-card-two__image__link::after {
  opacity: 0
}
.blog-card-two:hover .blog-card-two__meta{
  opacity: 0;
}
.blog-card-two__meta {
  position: absolute;
  /*left: 30px;*/
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card-two__meta {
    /*left: 20px*/
  }
}

@media (max-width: 375px) {
  .blog-card-two__meta {
    /*left: 25px*/
  }
}

:root {
  --transwide-color: #868EA5;
  --transwide-color-rgb: 134, 142, 165;
  --transwide-text-dark: #95B7D1;
  --transwide-text-dark-rgb: 149, 183, 209;
  --transwide-base: #DD111E;
  --transwide-base-rgb: 221, 17, 30;
  --transwide-white: #fff;
  --transwide-white-rgb: 255, 255, 255;
  --transwide-white2: #F2F2F2;
  --transwide-white2-rgb: 242, 242, 242;
  --transwide-black: #06416F;
  --transwide-black-rgb: 6, 65, 111;
  --transwide-black2: #04243D;
  --transwide-black2-rgb: 4, 36, 61;
  --transwide-black3: #000;
  --transwide-black3-rgb: 0, 0, 0;
  --transwide-black4: #0C395B;
  --transwide-black4-rgb: 12, 57, 91;
  --transwide-black5: #121C2C;
  --transwide-black5-rgb: 18, 28, 44;
  --section-space: 120px
}
.gutter-y-30 {
  --bs-gutter-y: 30px;
}
.row {
  --bs-gutter-x: 30px;
}


.blog-card-two__date {
  min-width: 78px;
  padding: 6px 15px 8px;
  background-color: var(--transwide-base)
}

.blog-card-two__date__day, .blog-card-two__date__month {
  display: block;
  color: var(--transwide-white, #fff);
  text-align: center
}

.blog-card-two__date__day {
  font-size: 16px;
  line-height: 1.25
}

.blog-card-two__date__month {
  font-size: 14px;
  line-height: 1.25
}

.blog-card-two__comment {
  display: inline-block;
  padding: 8px 8px 0 0;
  border-top: 1px solid var(--transwide-base);
  border-right: 1px solid var(--transwide-base)
}

.blog-card-two__comment__link {
  padding: 5px 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--transwide-white, #fff);
  line-height: 1.625;
  background-color: var(--transwide-base);
  transition: all 500ms ease
}

.blog-card-two__comment__link:hover {
  color: var(--transwide-black)
}

.blog-card-two__comment__icon {
  display: inline-flex;
  font-size: 16px;
  color: var(--transwide-white, #fff);
  transition: all 500ms ease
}

.blog-card-two__comment__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor
}

a:hover .blog-card-two__comment__icon {
  color: var(--transwide-black)
}

.blog-card-two__content {
  padding: 21px 30px 30px
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card-two__content {
    padding: 16px 20px 20px
  }
}

@media (max-width: 375px) {
  .blog-card-two__content {
    padding: 21px 25px 25px
  }
}

.blog-card-two__title {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.458
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card-two__title {
    font-size: 22px
  }
}

@media (max-width: 375px) {
  .blog-card-two__title {
    font-size: 22px
  }
}

.blog-card-two__title:hover {
  color: var(--transwide-base)
}

.blog-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0, currentcolor 100%) 0 95%/0px 1px no-repeat;
  transition: all 500ms ease
}

.blog-card-two__title a:hover {
  background-size: 100% 1px
}

.blog-card-two__text {
  margin-bottom: 15px
}

.blog-card-two__admin {
  position: relative;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--transwide-black);
  overflow: hidden;
  z-index: 1
}

.blog-card-two__admin::after {
  content: "";
  width: 0;
  height: 100%;
  background-color: var(--transwide-base);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  transition: all 500ms ease
}

.blog-card-two__admin__image {
  width: 35px !important;
  height: 35px;
  flex-shrink: 0;
  border-radius: 50%
}

.blog-card-two__admin__name {
  margin-bottom: -3px;
  font-size: 16px;
  font-weight: 700;
  color: var(--transwide-white, #fff);
  text-transform: capitalize;
  line-height: 1.625
}

.blog-card-two__admin__name:hover {
  color: var(--transwide-black)
}

.blog-card-two__admin__name a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0, currentcolor 100%) 0 95%/0px 1px no-repeat;
  transition: all 500ms ease
}

.blog-card-two__admin__name a:hover {
  background-size: 100% 1px
}

.blog-card-two__admin__designation {
  margin: 0;
  font-size: 14px;
  text-transform: capitalize;
  line-height: 1.625;
  transition: all 500ms ease
}

.blog-card-two:hover .blog-card-two__admin::after {
  width: 100%;
  left: 0
}

.blog-card-two:hover .blog-card-two__admin__designation {
  color: var(--transwide-white, #fff)
}


.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}



.swiper-container {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  width: 280px;
  /*height: 500px;*/
  padding: 5px;
}

.swiper-content {
  background-color: #fff;
  width: 100%;
  height: 100%;
}
.swiper-content .honor {
  width: 280px;
  height: 400px;
  position: relative;
}
@media (max-width: 1024px) {
  .swiper-slide {
    width: 200px;
    /*height: 500px;*/
    padding: 5px;
  }
  .swiper-content .honor {
    width: 200px;
    height: 290px;
  }
}
.swiper-content .honor.honor20231 {
  background: url("../../images/about/honor20231.png");
  background-position: center;
  background-size: cover;
}

.swiper-content .honor.honor20232 {
  background: url("../../images/about/honor20232.png");
  background-position: center;
  background-size: cover;
}

.swiper-content .honor.honor20233 {
  background: url("../../images/about/honor20233.png");
  background-position: center;
  background-size: cover;
}
.swiper-content .honor.honor20241 {
  background: url("../../images/about/honor20241.png");
  background-position: center;
  background-size: cover;
}
.swiper-content .honor.honor20242 {
  background: url("../../images/about/honor20242.png");
  background-position: center;
  background-size: cover;
}
.swiper-content .honor.honor20243 {
  background: url("../../images/about/honor20243.png");
  background-position: center;
  background-size: cover;
}
.swiper-content .honor.honor20244 {
  background: url("../../images/about/honor20244.png");
  background-position: center;
  background-size: cover;
}
.swiper-content .honor.honor20245 {
  background: url("../../images/about/honor20245.png");
  background-position: center;
  background-size: cover;
}
.swiper-content .honor.honor20246 {
  background: url("../../images/about/honor20246.png");
  background-position: center;
  background-size: cover;
}
.swiper-content .honor.honor20251 {
  background: url("../../images/about/honor20251.png");
  background-position: center;
  background-size: cover;
}
.swiper-content .honor.honor20231_en {
  background: url("../../images/about/honor20231_en.png");
  background-position: center;
  background-size: cover;
}

.swiper-content .honor.honor20232_en {
  background: url("../../images/about/honor20232_en.png");
  background-position: center;
  background-size: cover;
}

.swiper-content .honor.honor20233_en {
  background: url("../../images/about/honor20233_en.png");
  background-position: center;
  background-size: cover;
}
.swiper-content .honor.honor20241_en {
  background: url("../../images/about/honor20241_en.png");
  background-position: center;
  background-size: cover;
}
.swiper-content .honor.honor20242_en {
  background: url("../../images/about/honor20242_en.png");
  background-position: center;
  background-size: cover;
}
.swiper-content .honor.honor20243_en {
  background: url("../../images/about/honor20243_en.png");
  background-position: center;
  background-size: cover;
}
.swiper-content .honor.honor20244_en {
  background: url("../../images/about/honor20244_en.png");
  background-position: center;
  background-size: cover;
}
.swiper-content .honor.honor20245_en {
  background: url("../../images/about/honor20245_en.png");
  background-position: center;
  background-size: cover;
}
.swiper-content .honor.honor20246_en {
  background: url("../../images/about/honor20246_en.png");
  background-position: center;
  background-size: cover;
}
.swiper-content .honor.honor20251_en {
  background: url("../../images/about/honor20251_en.png");
  background-position: center;
  background-size: cover;
}



/*.history-part{ background-attachment:fixed;}
.history-part .yearbox{ position: relative; float: right; width: 2.48em; height: 0.64em; line-height: 0.64em; color: #fff; border-radius: 0.05em; background: var(--hover-color);}
.history-part .yearbox dt{cursor: pointer;width: 100%;height: 0.64em; line-height: 0.64em;}
.history-part .yearbox dt span{ float: left; margin-left: 0.3em;}
.history-part .yearbox dt i{ float: right;margin-right: 0.25em;}
.history-part .yearbox dd{display: none;line-height: 0.5em; position:absolute; lefT:0; top:calc(100% + 1px); z-index:11; width:100%;max-height:2em; overflow:auto; border-radius:0.05em;background:#F2F7F6;}
.history-part .yearbox dd p{cursor: pointer; line-height: 0.5em; padding:0 0.3em; color: #000;!*font-family: 'Aleo';*!}
.history-part .yearbox dd p.active{ color: #fff; background: var(--hover-color);}
.history-part .yearbox.open dt i{ transform:rotate(180deg);}
.yearbox_fixed .year-wrap{position: fixed; left:0; top:1.3em; width:100%; z-index: 100;}*/

/*html, body {
  margin: 0;
  font-size: 100%;
}*/
.wrap2 {
  /*width: 14.4em;*/
  max-width: 90%;
  margin: auto;
}
.wrap2 > * {
  font-size: calc(100vw / 19.20);
}
.bg-cover {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}


.fnt_20{font-size: 0.2em;}
.fnt_40{font-size: 0.4em;}

.fixed:before {
  content: '';
  display: table
}

.fixed:after {
  content: '';
  display: table;
  clear: both
}

.fixed {
  *zoom: 1
}
.hisbox {
  margin-top: 0.3em;
  position: relative;
}

.hisbox .line {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  border-right: 1px dashed #032A64;
}

.hisbox .line::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  width: 3px;
  height: 1.8em;
  background: linear-gradient(to bottom, rgba(238, 241, 243, 0.5), rgba(238, 241, 243, 1));
}

.hisbox ul {
  position: relative;
  z-index: 2;
}

.hisbox li {
  float: right;
  width: 50%;
  clear: both;
  min-height: 1.76em;
  padding-left: 0.6em;
  position: relative;
}

.hisbox li::before {
  opacity: 0;
  content: "";
  position: absolute;
  z-index: 3;
  left: -0.03em;
  bottom: 0;
  height: 100%;
  width: 0.06em;
  background: var(--hover-color);
}

.hisbox li em {
  position: absolute;
  z-index: 3;
  left: -27px;
  top: 0;
  width: 54px;
  height: 54px;
  border-radius: 100%;
  border: 1px solid #092F67;
  background: #EFF2F5;
}

.hisbox li em::before {
  content: "";
  position: absolute;
  z-index: 20;
  left: 9px;
  top: 9px;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  border: 1px solid #092F67;
  background: #EFF2F5;
}

.hisbox li span {
  display: block;
  color: #032A64;
  margin-bottom: 0.3em; /*font-family: 'Aleo';*/
}

.hisbox li p {
  cursor: pointer;
  position: relative;
  margin-bottom: 0.1em;
  margin-left: 0.18em;
  /*max-width: 500px;*/
  /*transition: transform 0.3s ease, font-size 0.3s ease;*/
  transition: transform 0.3s ease;
  transform-origin: left center;
  /*display: inline-block; !* 闃叉缂╂斁褰卞搷甯冨眬 *!*/
}

.hisbox li .history-item{
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 100%;
  cursor: pointer;
  position: relative;
  margin-bottom: 0.1em;
  margin-left: 0.18em;
  transition: transform 0.3s ease;
  transform-origin: left center;
}
.hisbox li .history-item:hover {
  transform: scale(1.2);
  position: relative;
  z-index: 10;
}
.hisbox li:nth-child(2n) .history-item{
  transform-origin: right center;
  direction: rtl;
  text-align: right;
}


.hisbox li .history-item .tag__left{
  width: 0.5em;
  height: 0.5em;
  flex-basis: 0.5em;
  background-color: #000;
  border-radius: 100%;
  opacity: 1;
}
.hisbox li:hover{color: var(--hover-color);}
.hisbox li:hover em,.hisbox li:hover em::before{border-color: var(--hover-color);}
.hisbox li:hover span{color: var(--hover-color);}
.hisbox li:hover p::before{background: var(--hover-color);}
.hisbox li:hover .tag__left{background: var(--hover-color);}
.hisbox li:hover::before{opacity: 1;}

.hisbox li .history-item .item_label{
  padding-left: 0.2em;
  flex: 1;
}
.hisbox li:nth-child(2n) .history-item .item_label{
  padding-right: 0.2em;
}
@media screen and (max-width: 1024px) {
    .hisbox li .history-item .item_label.pc{
        display: none;
    }
    .hisbox li:nth-child(2n) .history-item .item_label.pc{
        display: none;
    }
    .hisbox li .history-item .item_label.mobile{
        display: block;
    }
    .hisbox li:nth-child(2n) .history-item .item_label.mobile{
        display: block;
    }
}
@media screen and (min-width: 1024px) {
    .hisbox li .history-item .item_label.mobile{
        display: block;
    }
    .hisbox li:nth-child(2n) .history-item .item_label.mobile{
        display: block;
    }
    .hisbox li .history-item .item_label.mobile{
        display: none;
    }
    .hisbox li:nth-child(2n) .history-item .item_label.mobile{
        display: none;
    }
}
.hisbox li:nth-child(2n) p:hover,
.hisbox li p:hover {
  transform: scale(1.2);
  position: relative;
  z-index: 10;
}
.hisbox li p::before {
  content: "";
  position: absolute;
  left: -0.7em;
  top: 0.5em;
  width: 0.5em;
  height: 0.5em;
  border-radius: 100%;
  background: #000;
}

.hisbox li:nth-child(2n) {
  float: left;
  text-align: right;
  padding-right: 0.6em;
  padding-left: 0;
}

.hisbox li:nth-child(2n) em {
  left: auto;
  right: -27px;
}

.hisbox li:nth-child(2n) p {
  margin-left: 0;
  transform-origin: right center;
  direction: rtl;
  /*unicode-bidi: bidi-override;*/
  text-align: right;
}

.hisbox li:nth-child(2n) p::before {
  left: auto;
  right: -0.7em;
}

.hisbox li:nth-child(2n)::before {
  left: auto;
  right: -0.04em;
}

.hisbox li.on {
  color: var(--hover-color);
}

.hisbox li.on em, .hisbox li.on em::before {
  border-color: var(--hover-color);
}

.hisbox li.on span {
  color: var(--hover-color);
}

.hisbox li.on p::before {
  background: var(--hover-color);
}

.hisbox li.on::before {
  opacity: 1;
}


@media only screen and (max-width:1599px) {
  .hisbox li em{width: 40px; height: 40px;left:-20px;}

  .hisbox li em::before {
    left: 7px;
    top: 7px;
    width: 24px;
    height: 24px;
  }
  .hisbox li:nth-child(2n) em{right:-20px;}
}
@media only screen and (max-width:1279px) {
  .wrap2 > * {
    font-size: calc(100vw / 15.20);
  }
  .hisbox li em {
    width: 30px;
    height: 30px;
    left: -15px;
  }

  .hisbox li em::before {
    left: 7px;
    top: 7px;
    width: 14px;
    height: 14px;
  }

  .hisbox li:nth-child(2n) em {
    right: -15px;
  }
}
@media only screen and (max-width:1023px) {
  .hisbox li p::before{top:0.08em;}
  .wrap2 > * {
    font-size: calc(100vw / 12.20);
  }
}
@media only screen and (max-width:767px) {
  .wrap2 > * {
    font-size: calc(100vw / 9.20);
  }

  .hisbox li {
    float: none !important;
    width: 100%;
    min-height: auto;
    padding-bottom: 5%;
  }

  .hisbox li:nth-child(2n) {
    transform-origin: left center;
    text-align: left;
    padding-right: 0;
    padding-left: 0.6em;
  }

  .hisbox li:nth-child(2n)::before {
    right: auto;
    left: -0.03em;
  }

  .hisbox li em {
    width: 22px;
    height: 22px;
    left: -10px;
    margin-top: 3px;
  }
  .hisbox li:before{
    bottom: -3px;
  }
  .hisbox li em::before {
    left: 4px;
    top: 4px;
    width: 10px;
    height: 10px;
  }

  .hisbox li:nth-child(2n) em {
    right: auto;
    left: -10px;
  }

  .hisbox li:nth-child(2n) .history-item{
    transform-origin: left center;
    direction: ltr;
    text-align: left;
  }
  .hisbox li:nth-child(2n) .history-item .tag__left,
  .hisbox li  .history-item .tag__left {
    top: 0.7em;
    width: 4px;
    height: 4px;
    flex-basis: 4px;
  }

  .hisbox li:nth-child(2n) p::before,
  .hisbox li p::before {
    top: 0.7em;
    width: 4px;
    height: 4px;
  }

  .hisbox li:nth-child(2n) p::before {
    right: auto;
    left: -0.7em;
  }

  .hisbox li:nth-child(2n) p {
    margin-left: 0.18em;
    text-align: left;
    transform-origin: left center;
  }

  .hisbox .line {
    lefT: 0;
    top: 4px;
  }
}
@media only screen and (max-width:430px) {
  .wrap2 > * {
    font-size: calc(100vw / 6.20);
  }
  /* .hisbox li:hover{color: var(--hover-color);}
  .hisbox li:hover em,.hisbox li:hover em::before{border-color: var(--hover-color);}
  .hisbox li:hover span{color: var(--hover-color);}
  .hisbox li:hover p::before{background: var(--hover-color);}
  .hisbox li:hover p::before{background: var(--hover-color);}
  .hisbox li:hover .tag__left{background: var(--hover-color);} */
}
@media only screen and (min-width: 1025px) {
  /* .hisbox li:hover{color: var(--hover-color);}
  .hisbox li:hover em,.hisbox li:hover em::before{border-color: var(--hover-color);}
  .hisbox li:hover span{color: var(--hover-color);}
  .hisbox li:hover p::before{background: var(--hover-color);}
  .hisbox li:hover p::before{background: var(--hover-color);}
  .hisbox li:hover .tag__left{background: var(--hover-color);}
  .hisbox li:hover::before{opacity: 1;} */
}

body[data-page=aboutus] .part__title:after {
  background-color: var(--hover-color);
  width: 0;
  height: 4px;
}

.swiper-3d .swiper-slide-shadow-left{
  background-image: linear-gradient(to left, rgb(0 0 0 / 58%), rgb(0 0 0 / 36%));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgb(0 0 0 / 58%), rgb(0 0 0 / 36%));
}
