/*

Power Template

https://templatemo.com/tm-508-power

*/

* {
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    outline: none!important;
}

a {
  text-decoration: none!important;
}

body {
  overflow-x: hidden;
}

ul {
  list-style: none;
  margin: 0px;
}

p {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.25px;
  font-weight: 300;
}

.col-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-15 {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
.col-sm-15 {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-15 {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-15 {
        width: 20%;
        float: left;
    }
}

.primary-button a {
  padding: 13px 20px;
  letter-spacing: 0.5px;
  background-color: #0da0e8;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.secondary-button a {
  padding: 13px 20px;
  letter-spacing: 0.5px;
  background-color: #f0843d;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.border-button a {
  padding: 13px 20px;
  letter-spacing: 0.5px;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}


.section-heading {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 60px;
}

.section-heading h4 {
  margin-top: 0px;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 300;
  color: #121212;
}

.section-heading p {
  color: #7a7a7a;
  padding: 0px 25%;
}

@media (max-width: 991px) {
  .section-heading p {
    padding: 0px 10%;
  }
}

@media (max-width: 767px) {
  .section-heading p {
    padding: 0px 5%;
  }
}

.navbar-dark {
  background-color: #fff;
  border: none;
}

.navbar-dark .navbar-nav>.active>a, .navbar-dark .navbar-nav>.active>a:hover, .navbar-dark .navbar-nav>.active>a:focus {
  background-color: #f0843d;
}

.navbar-dark .navbar-nav .nav-link.active {
  background-color: #f0843d;
  color: #fff;
}

.main-header {
  position: fixed;
  width: 100%;
  height: 80px;
  margin: 0 auto;
  z-index: 1000;
  top: 30px;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

.navbar {
  margin-bottom: 0px;
  position: relative;
}

.navbar .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 991.98px) {
  .navbar .container-fluid {
    padding-left: 10px;
    padding-right: 50px;
  }
}

@media (max-width: 575px) {
  .navbar .container-fluid {
    padding-left: 5px;
    padding-right: 45px;
  }
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
  flex-basis: auto;
  flex-grow: 1;
  align-items: center;
}

/* 992px以上で通常メニューを表示 */
@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    padding: 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
    opacity: 0;
  }
  
  .navbar-collapse.show {
    display: block !important;
    max-height: 500px;
    opacity: 1;
    padding: 15px;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
  }
  
  /* Bootstrap 5のcollapseアニメーション */
  .navbar-collapse.collapsing {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
    overflow: hidden;
  }
  
  .collapse:not(.show) {
    display: none !important;
  }
}

/* Bootstrap 5のcollapseトランジション */
.collapse {
  transition: height 0.3s ease-in-out;
}

.collapsing {
  transition: height 0.3s ease-in-out;
}

/* スマホビューのメニューアニメーション強化 */
@media (max-width: 991.98px) {
  .navbar-collapse .nav-item {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  
  .navbar-collapse.show .nav-item {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* メニューアイテムを順番に表示 */
  .navbar-collapse.show .nav-item:nth-child(1) {
    transition-delay: 0.05s;
  }
  
  .navbar-collapse.show .nav-item:nth-child(2) {
    transition-delay: 0.1s;
  }
  
  .navbar-collapse.show .nav-item:nth-child(3) {
    transition-delay: 0.15s;
  }
  
  .navbar-collapse.show .nav-item:nth-child(4) {
    transition-delay: 0.2s;
  }
  
  .navbar-collapse.show .nav-item:nth-child(5) {
    transition-delay: 0.25s;
  }
  
  .navbar-collapse.show .nav-item:nth-child(6) {
    transition-delay: 0.3s;
  }
}

.navbar-header {
  float: none;
  height: 80px;
  position: relative;
}

.scrolled {
  position: fixed;
  left: 0;
  top: 0;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

#menu-wrapper {
  background-color: white;
  overflow: visible;
  -moz-box-shadow: 1px 1px 3px 2px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 1px 1px 3px 2px rgba(0, 0, 0, 0.07);
  box-shadow: 1px 1px 3px 2px rgba(0, 0, 0, 0.07);
  position: relative;
  width: 100%;
  max-width: 100%;
}

.navbar {
  position: relative;
}

.navbar-brand {
  font-family: 'Open Sans', sans-serif;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  color: #0da0e8!important;
  transition: all 0.5s;
  margin-left: 30px;
  display: flex;
  align-items: center;
  height: 80px;
  max-width: calc(100% - 60px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0;
}

@media (max-width: 991.98px) {
  .navbar-brand {
    margin-left: 15px;
    font-size: 24px;
    line-height: 1.2;
    max-width: calc(100% - 50px);
    padding: 0;
  }
  
  .navbar-brand img {
    height: 50px;
  }
}

@media (max-width: 575px) {
  .navbar-brand {
    margin-left: 10px;
    font-size: 20px;
    line-height: 1.2;
    max-width: calc(100% - 45px);
    padding: 0;
  }
  
  .navbar-brand img {
    height: 42px;
  }
  
  .navbar-brand .brand-text {
    display: none;
  }
}

.navbar-brand img {
  height: 50px;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
  flex-shrink: 0;
}

.navbar-nav {
  margin: 0;
  padding: 0;
}

.navbar-nav.menu-first {
  margin-left: 0;
  display: flex;
  align-items: center;
  height: 80px;
  flex-wrap: nowrap;
}


.navbar-nav.menu-first li {
  display: inline-block;
  margin: 0px;
  vertical-align: middle;
  float: none;
}

.navbar-nav.menu-first li:last-child {
  margin-right: 0;
}

@media (min-width: 992px) {
  .navbar-nav.menu-first li:last-child {
    margin-right: 60px!important;
  }
}

.navbar-nav.menu-first li a {
  color: #7a7a7a;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  text-shadow: none;
  display: inline-block;
  line-height: 80px;
  padding: 0px 20px;
  letter-spacing: 0.5px;
  transition: all 0.5s;
  outline: none;
  white-space: nowrap;
}

.navbar-nav.menu-first li.active a {
  color: #fff;
  background-color: #f0843d;
}

.navbar-dark .navbar-nav>li>a:hover, 
.navbar-dark .navbar-nav>li>a:focus {
  color: #7a7a7a;
}

.navbar-dark .navbar-nav.menu-first>li>a:hover, 
.navbar-dark .navbar-nav.menu-first>li>a:focus {
  color: #7a7a7a;
}

.navbar-dark .navbar-toggler {
  border-color: #f0843d;
  background-color: #f0843d;
  display: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  margin-bottom: 0;
  z-index: 1000;
  padding: 4px 8px;
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-toggler {
    display: block;
    right: 10px;
  }
}

@media (max-width: 575px) {
  .navbar-dark .navbar-toggler {
    right: 5px;
    padding: 3px 6px;
  }
}

/* Bootstrap 5の標準ブレークポイント（992px未満）でバーガーメニューを表示 */
@media (max-width: 991.98px) {
  .navbar-dark .navbar-toggler {
    display: block;
    right: 10px;
  }
  
  .navbar-nav {
    flex-direction: column;
    width: 100%;
  }
  
  .navbar-nav .nav-item {
    width: 100%;
  }
  
  .navbar-nav .nav-link {
    padding: 10px 15px;
    width: 100%;
    text-align: left;
  }
  
  .navbar-nav.menu-first {
    height: auto;
    flex-wrap: wrap;
    display: block;
  }
  
  .navbar-nav.menu-first li {
    display: block;
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  
  .navbar-nav.menu-first li:first-child {
    border-top: 1px solid #eee;
  }
  
  .navbar-nav.menu-first li:last-child {
    border-bottom: none;
    margin-right: 0 !important;
  }
  
  .navbar-nav.menu-first li a {
    width: 100%;
    line-height: 50px;
    padding: 0px 20px;
    white-space: normal;
  }
}

/* 992px以上で通常メニューを表示 */
@media (min-width: 992px) {
  .navbar-nav.menu-first {
    display: flex;
    align-items: center;
    height: 80px;
    flex-wrap: nowrap;
  }
  
  .navbar-nav.menu-first li {
    display: inline-block;
  }
  
  .navbar-nav.menu-first li:last-child {
    margin-right: 60px !important;
  }
}

.banner {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.banner .container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  text-align: center;
  margin: 60px 0;
  position: relative;
  z-index: 1;
}

.hero-logo img {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: inline-block;
}

.banner .container .row {
  width: 100%;
  margin: 0;
}

.banner-content {
  text-align: center;
  padding: 80px 0px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.banner-content h6 {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.banner-content h2 {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin-top: 0px;
  margin-bottom: 30px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .hero-logo {
    margin: 50px 0;
  }
  
  .hero-logo img {
    max-width: 400px;
  }
  
  .banner-content h6 {
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  
  .banner-content h2 {
    font-size: 36px;
    letter-spacing: 0.5px;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    margin: 40px 0;
  }
  
  .hero-logo img {
    max-width: 300px;
  }
  
  .banner-content h6 {
    font-size: 14px;
    letter-spacing: 0.5px;
  }
  
  .banner-content h2 {
    font-size: 28px;
    letter-spacing: 0px;
    line-height: 1.4;
  }
}

/* ヒーローセクションの色指定 */
.text-orange {
  color: #f0843d;
}

.text-blue {
  color: #0da0e8;
}

.banner-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.banner-content ul li {
  display: inline-block;
  margin: 10px;
}


.intro {
  background-color: #0da0e8;
  text-align: center;
  padding: 80px 0px;
}

.intro h4 {
  margin-top: 0px;
  font-size: 44px;
  font-weight: 300;
  color: #fff;
}

.intro h4 .mobile-break {
  display: none;
}

@media (max-width: 767px) {
  .intro h4 .mobile-break {
    display: block;
  }
  
  .intro h4 {
    font-size: 32px;
    line-height: 1.4;
  }
  
  .intro h6 {
    font-size: 14px;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .intro h4 {
    font-size: 28px;
    line-height: 1.4;
  }
  
  .intro h6 {
    font-size: 13px;
    letter-spacing: 0.3px;
    white-space: nowrap;
  }
}

.intro h6 {
  margin-top: 15px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.intro .border-button {
  margin-top: 45px;
}


/* 代表メッセージセクション */
.message-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.message-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}


.message-text {
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.message-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  gap: 20px;
}

.message-logo {
  text-align: left;
  flex: 0 0 auto;
}

.message-logo img {
  height: 80px;
  width: auto;
  max-width: 100%;
}

.message-signature {
  text-align: right;
  flex: 0 0 auto;
}

.signature-image {
  height: 80px;
  width: auto;
  max-width: 300px;
  display: block;
}

.message-body {
  font-size: 16px;
  line-height: 2;
  color: #4a4a4a;
  text-align: left;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.message-body p {
  margin-bottom: 20px;
  text-align: justify;
  text-justify: inter-ideograph;
}

.message-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .message-section {
    padding: 60px 0;
  }
  
  .message-content {
    gap: 35px;
    padding: 0 20px;
  }
  
  
  .message-footer {
    margin-top: 15px;
  }
  
  .message-logo img {
    height: 70px;
  }
  
  .signature-image {
    height: 70px;
    max-width: 280px;
  }
  
  .message-body {
    font-size: 15px;
    line-height: 1.9;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: normal;
  }
  
  .message-body p {
    text-align: justify;
    text-justify: inter-ideograph;
  }
}

@media (max-width: 767px) {
  .message-section {
    padding: 50px 15px;
  }
  
  .message-content {
    gap: 25px;
    padding: 0;
  }
  
  
  .message-footer {
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
  }
  
  .message-logo {
    text-align: left;
    flex: 0 0 auto;
  }
  
  .message-logo img {
    height: 60px;
  }
  
  .message-signature {
    text-align: right;
    flex: 0 0 auto;
  }
  
  .signature-image {
    height: 60px;
    max-width: 250px;
  }
  
  .message-body {
    font-size: 15px;
    line-height: 1.9;
    text-align: left;
    padding: 0;
    max-width: 100%;
    word-wrap: normal;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
  
  .message-body p {
    margin-bottom: 18px;
    text-align: left;
    text-justify: none;
    word-break: normal;
    overflow-wrap: normal;
    word-wrap: normal;
  }
  
}

/* 会社概要セクション */
.company-info-section {
  background-color: #fff;
  padding: 80px 0;
}

.company-info-content {
  max-width: 100%;
}

.company-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-info-list dt {
  font-size: 16px;
  font-weight: 700;
  color: #121212;
  margin-top: 30px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid #0da0e8;
  font-family: 'Noto Sans JP', sans-serif;
}

.company-info-list dt:first-child {
  margin-top: 0;
}

.company-info-list dd {
  font-size: 16px;
  color: #4a4a4a;
  margin: 0 0 0 0;
  padding: 0;
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
}

@media (max-width: 767px) {
  .company-info-section {
    padding: 60px 15px;
  }
  
  .company-info-list dt {
    font-size: 15px;
    margin-top: 25px;
    margin-bottom: 8px;
  }
  
  .company-info-list dd {
    font-size: 15px;
    line-height: 1.7;
  }
}

#about {
  padding: 0px;
  background-image: url(../img/services-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

#about .service-item {
  text-align: center;
  margin: 0px;
  padding: 80px 45px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#about .service-item h4 {
  margin-top: 45px;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

#about .service-item p {
  margin-bottom: 0px;
  color: #fff;
}

#about .first-service {
  background-color: rgba(242, 116, 95, 0.75);
}

#about .second-service {
  background-color: rgba(54, 62, 80, 0.75);
}

#about .third-service {
  background-color: rgba(70, 186, 226, 0.75);
}

#about .service-item .icon {
  width: 70px;
  height: 70px;
  display: block;
  text-align: center;
  line-height: 74px;
  background-color: transparent;
  margin: 0 auto;
}

#about .service-item .icon img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

#about .first-service .icon img {
  filter: brightness(0) invert(1);
  width: 100px;
  height: 100px;
  object-fit: contain;
}




.what-we-do {
  background-color: #fff;
  padding-top: 0;
  padding-bottom: 80px;
}

.what-we-do .tabs li a {
  text-decoration: none;
  color: #121212;
}

.what-we-do .tabs .active .list-item {
  background-color: #f0843d!important;
  color: #fff!important;
}

.what-we-do .tabs .active .list-item .icon {
  background-color: #fff;
}

.what-we-do .list-item {
  background-color: #0da0e8;
  color: #fff;
  text-align: center;
  padding: 40px 0px;
  margin: 15px 0px;
  transition: all 0.5s;
}

.what-we-do .list-item .icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 90px;
  background-color: #fff;
}

.what-we-do .list-item h4 {
  margin-top: 20px;
  margin-bottom: 0px;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

#second-tab-group > div {
  display: block;
}

.what-we-do .tab-content-services {
  margin-top: 60px;
}

.what-we-do .tab-content-services .right-image img {
  width: 100%;
  overflow: hidden;
}

.what-we-do .tab-content-services .left-text h4 {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 20px;
  color: #121212;
}

.what-we-do .tab-content-services .left-text p {
  color: #7a7a7a;
}

.what-we-do .tab-content-services .left-text .primary-button {
  margin-top: 35px;
  margin-bottom: 50px;
}





#portfolio {
  text-align: center;
}

#portfolio .item {
  margin: 0px 5px;
}

.portfolio-section {
  background-color: #363e50;
  padding-top: 0;
  padding-bottom: 80px;
  overflow: visible;
}

#portfolio .section-heading h4 {
  color: #fff;
}

#portfolio .section-heading p {
  color: #aaa;
}

#portfolio .portfolio-item img {
  max-width: 100%;
  overflow: hidden;
  width: 100%;
  height: auto;
  display: block;
}

/* Slick Carousel Styles */
.portfolio-carousel {
  width: 100%;
  max-width: 100%;
  overflow: visible;
  box-sizing: border-box;
  padding-bottom: 0;
}

.portfolio-carousel .slick-list {
  margin: 0;
  padding: 0;
  overflow: hidden;
  margin-bottom: 0;
}

.portfolio-carousel .slick-track {
  display: flex;
  align-items: stretch;
}

.portfolio-carousel .item {
  padding: 0 10px;
  height: 100%;
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
}

.portfolio-carousel .portfolio-item {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.portfolio-carousel .slick-slide {
  outline: none;
  box-sizing: border-box;
}

.portfolio-carousel .slick-slide img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Slick Dots (ページネーション) - より一般的なセレクター */
#portfolio-carousel .slick-dots,
.portfolio-carousel .slick-dots,
.slick-dots {
  margin-top: 40px !important;
  margin-bottom: 0 !important;
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
  list-style: none !important;
  padding: 0 0 20px 0 !important;
  position: relative !important;
  z-index: 10 !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100% !important;
  overflow: visible !important;
  height: auto !important;
  min-height: 40px !important;
}

#portfolio-carousel .slick-dots li,
.portfolio-carousel .slick-dots li,
.slick-dots li {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#portfolio-carousel .slick-dots li button,
.portfolio-carousel .slick-dots li button,
.slick-dots li button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.4) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  border: 2px solid rgba(255, 255, 255, 0.6) !important;
  padding: 0 !important;
  font-size: 0 !important;
  color: transparent !important;
  overflow: hidden !important;
  line-height: 1 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin: 0 !important;
}

#portfolio-carousel .slick-dots li button:hover,
.portfolio-carousel .slick-dots li button:hover,
.slick-dots li button:hover {
  transform: scale(1.2) !important;
  background-color: rgba(240, 132, 61, 0.8) !important;
  border-color: #f0843d !important;
}

#portfolio-carousel .slick-dots li.slick-active button,
.portfolio-carousel .slick-dots li.slick-active button,
.slick-dots li.slick-active button {
  background-color: #f0843d !important;
  border-color: #f0843d !important;
  transform: scale(1.3) !important;
}

#portfolio-carousel .slick-dots li button::before,
.portfolio-carousel .slick-dots li button::before,
.slick-dots li button::before {
  display: none !important;
  content: none !important;
}



#blog {
  background-color: #f4f4f4;
}

#blog .section-heading {
  text-align: center;
}

.wrapper {
  text-align: left;
}

#blog .tabs {
  list-style: none;
  margin-top: 0px;
}

#blog .tabs li {
  display: block;
  text-align: left;
  margin-bottom: 29px;
}

#blog .tabs a {
  display:block;
  text-align: left;
  text-decoration:none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color:#121212;
  font-size: 20px;
  font-weight: 700;
  padding: 24px 25px;
  background-color: #fff;
  transition: all 0.3s;
  box-shadow: 0px 0px 10px #cdcdcd;
}

#blog .tabs .active {
  background-color: #0da0e8;
  color: #fff!important;
}
#blog .tabs .active .info-post li {
  color: #fff!important;
}
#blog .tabs .active .info-post li i {
  color: #fff!important;
}
#first-tab-group {
  margin-top: 0px;
  margin-bottom: 15px;
}
#first-tab-group img {
  width: 100%;
  overflow: hidden;
}
.tabgroup .text-content  {
  background-color: #fff;
  color: #fff;
  padding: 25px;
  text-align: left;
  margin-top: -10px;
  margin-left: 10px;
  margin-right: 10px;
  position: relative;
  box-shadow: 0px 0px 10px #cdcdcd;
}
.tabgroup .text-content h4 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #121212;
  margin-top: 0px;
  margin-bottom: 15px;
}
.tabgroup .text-content span {
  font-size: 13px;
  color: #33c1cf;
}
.tabgroup .text-content a {
  font-size: 13px;
  color: #33c1cf;
  text-decoration: none;
}
.tabgroup .text-content p {
  margin-top: 17px;
  color: #7a7a7a;
}

.tabgroup .text-content .primary-button {
  margin-bottom: 15px;
  margin-top: 30px;
}

.tabgroup .text-content .primary-button a {
  color: #fff;
}

.clearfix:after {
  content:"";
  display:table;
  clear:both;
}

#blog {
  padding-bottom: 80px;
}

#blog .info-post li {
  display: inline;
  margin-right: 15px;
}

#blog .info-post li {
  color: #343434;
  font-size: 15px;
  font-weight: 300;
  text-transform: capitalize;
}

#blog .info-post li i {
  color: #0da0e8;
  margin-right: 5px;
}




#contact-us {
  background-color: #fff;
  text-align: left;
  padding-top: 0;
  padding-bottom: 80px;
}

#contact-us .section-heading {
  color: #121212;
}

#contact-us .section-heading h4 {
  color: #fff;
}

#contact-us .section-heading p {
  color: rgba(255, 255, 255, 0.8);
}


#contact-us .pop-button {
  margin-top: 30px;
}

#contact input {
  border-radius: 0px;
  padding-left: 15px;
  font-size: 15px;
  font-weight: 300;
  color: #7a7a7a;
  background-color: rgba(0, 0, 0, 0.03);
  outline: none;
  border: none;
  box-shadow: none;
  line-height: 50px;
  height: 50px;
  width: 100%;
  margin-bottom: 30px;
}

#contact textarea {
  border-radius: 0px;
  padding-left: 15px;
  padding-top: 10px;
  font-size: 15px;
  font-weight: 300;
  color: #232323;
  background-color: rgba(0, 0, 0, 0.03);
  outline: none;
  border: none;
  box-shadow: none;
  height: 165px;
  max-height: 220px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 25px;
}

#contact button {
    padding: 13px 20px;
  letter-spacing: 0.5px;
  background-color: #0da0e8;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0px;
}



footer {
  background-color: #363e50;
  padding: 60px 0 30px;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
}

footer .footer-brand {
  margin-bottom: 20px;
}

footer .footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 15px;
}

footer .footer-brand h5 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

footer .footer-address {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  padding: 0;
  text-transform: none;
  font-family: 'Noto Sans JP', sans-serif;
}

footer .footer-links h5,
footer .footer-contact h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

footer .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .footer-menu li {
  margin-bottom: 12px;
}

footer .footer-menu a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
}

footer .footer-menu a:hover {
  color: #f0843d;
  transform: translateX(5px);
}

footer .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

footer .footer-contact-list li {
  margin-bottom: 15px;
}

footer .footer-contact-list a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Sans JP', sans-serif;
}

footer .footer-contact-list a i {
  color: #f0843d;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

footer .footer-contact-list a:hover {
  color: #d46f2c;
}

footer .back-to-top {
  margin-top: 20px;
}

footer .back-to-top a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #f0843d;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

footer .back-to-top a:hover {
  background-color: #d46f2c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 132, 61, 0.3);
}

footer .back-to-top i {
  font-size: 18px;
}

footer .footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 40px;
  text-align: center;
}

footer .footer-copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin: 0;
  padding: 0;
  text-transform: none;
  font-family: 'Noto Sans JP', sans-serif;
}



/* RESPONSIVE */

@media (max-width: 1199px) {
  .navbar-nav.menu-first li a {
    font-size: 13px;
    padding: 0px 15px;
  }
  
  .navbar-brand {
    font-size: 34px;
    line-height: 1.2;
    padding: 0;
  }
  
  .navbar-brand img {
    height: 48px;
  }
  
  .navbar-nav.menu-first li:last-child {
    margin-right: 0 !important;
  }
}

@media (max-width: 991px) {
  footer {
    padding: 40px 15px 20px;
    text-align: center;
  }

  footer .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  footer .row {
    margin-left: 0;
    margin-right: 0;
  }

  footer .row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 40px;
  }

  footer .footer-brand {
    text-align: center;
    margin-bottom: 25px;
  }

  footer .footer-logo {
    margin-bottom: 15px;
  }

  footer .footer-brand h5 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  footer .footer-address {
    font-size: 13px;
    line-height: 1.8;
    text-align: center;
  }

  footer .footer-links,
  footer .footer-contact {
    margin-bottom: 0;
  }

  footer .footer-links h5,
  footer .footer-contact h5 {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
  }

  footer .footer-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 15px;
    justify-items: center;
    max-width: 280px;
    margin: 0 auto;
    padding: 0;
  }

  footer .footer-menu li {
    margin-bottom: 0;
    width: 100%;
  }

  footer .footer-menu a {
    font-size: 13px;
    text-align: center;
    display: block;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  footer .footer-menu a:hover {
    background-color: rgba(255, 152, 0, 0.1);
    transform: none;
  }

  footer .footer-contact-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 15px;
    justify-items: center;
    max-width: 350px;
    margin: 0 auto 25px;
    padding: 0;
  }

  footer .footer-contact-list li {
    margin-bottom: 0;
    width: 100%;
  }

  footer .footer-contact-list a {
    justify-content: center;
    font-size: 12px;
    padding: 10px 12px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    flex-direction: column;
    gap: 5px;
  }

  footer .footer-contact-list a i {
    font-size: 18px;
    margin-bottom: 5px;
  }

  footer .footer-contact-list a:hover {
    background-color: rgba(240, 132, 61, 0.15);
    color: #f0843d;
  }

  footer .back-to-top {
    margin-top: 25px;
  }

  footer .back-to-top a {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }

  footer .footer-copyright {
    margin-top: 30px;
    padding-top: 25px;
  }

  footer .footer-copyright p {
    font-size: 12px;
  }
  
  .navbar-nav.menu-first li a {
    font-size: 12px;
    padding: 0px 12px;
  }
  
  .navbar-brand {
    font-size: 30px;
    line-height: 1.2;
    margin-left: 15px;
    padding: 0;
  }
  
  .navbar-brand img {
    height: 44px;
  }
  
  .navbar-nav.menu-first li:last-child {
    margin-right: 0 !important;
  }
}

@media (max-width: 767px) {
  .navbar-brand {
    float: none;
    height: 80px;
    line-height: 1.2;
    margin-left: 15px;
    padding: 0;
    font-size: 22px;
  }
  
  .navbar-brand img {
    height: 44px;
  }
  
  .navbar-header {
    height: 80px;
  }
  
  .navbar-dark .navbar-collapse, .navbar-dark .navbar-form {
    border-color: transparent;
  }
  
  .navbar-dark .navbar-toggler:hover, .navbar-dark .navbar-toggler:focus {
    background-color: #f0843d;
  }
  
  /* 事業内容セクションのレスポンシブ対応 */
  .what-we-do .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  .what-we-do .container .row {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
  
  .what-we-do .container .row > .col-md-12 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  /* タブボタンの直接の親要素（.col-md-12 > .row）のマージンを調整 */
  .what-we-do .col-md-12 > .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  .what-we-do .col-md-12 > .row > .col-md-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  /* clearfixクラスを無効化 */
  .what-we-do .tabs.clearfix::before,
  .what-we-do .tabs.clearfix::after {
    display: none !important;
    content: "" !important;
  }
  
  .what-we-do .tabs {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    justify-content: center !important;
    align-items: stretch !important;
    list-style: none !important;
    width: 100% !important;
    max-width: 100% !important;
    clear: none !important;
    overflow: visible !important;
  }
  
  .what-we-do .tabs li {
    margin: 0 !important;
    float: none !important;
    padding: 0 !important;
    flex: 0 0 auto !important;
    list-style: none !important;
    box-sizing: border-box !important;
    clear: none !important;
    position: relative !important;
  }
  
  /* Bootstrapのクラスをすべて上書き */
  .what-we-do .tabs li.col-md-15,
  .what-we-do .tabs li.col-sm-12,
  .what-we-do .tabs li.col-12 {
    width: auto !important;
    max-width: none !important;
    min-width: auto !important;
    float: none !important;
    padding: 0 !important;
    flex: 0 0 auto !important;
    clear: none !important;
  }
  
  /* 最初の3つは33.333%幅（1行目） */
  .what-we-do .tabs li:nth-child(1),
  .what-we-do .tabs li:nth-child(2),
  .what-we-do .tabs li:nth-child(3) {
    width: calc((100% - 24px) / 3) !important;
    max-width: calc((100% - 24px) / 3) !important;
    min-width: calc((100% - 24px) / 3) !important;
    flex: 0 0 calc((100% - 24px) / 3) !important;
    float: none !important;
    clear: none !important;
  }
  
  /* 4つ目と5つ目は上の3個と同じ33.333%幅（2行目、中央配置） */
  .what-we-do .tabs li:nth-child(4),
  .what-we-do .tabs li:nth-child(5) {
    width: calc((100% - 24px) / 3) !important;
    max-width: calc((100% - 24px) / 3) !important;
    min-width: calc((100% - 24px) / 3) !important;
    flex: 0 0 calc((100% - 24px) / 3) !important;
    float: none !important;
    clear: none !important;
  }
  
  /* スマホビューでは.col-md-15, .col-sm-12, .col-12を無効化 */
  .what-we-do .tabs .col-md-15,
  .what-we-do .tabs .col-sm-12,
  .what-we-do .tabs .col-12 {
    width: auto !important;
    max-width: none !important;
    min-width: auto !important;
    float: none !important;
    padding: 0 !important;
    clear: none !important;
  }
  
  /* 通常のスタイルを上書き - PCビューと色を合わせる */
  .what-we-do .list-item {
    margin: 0 !important;
    padding: 18px 12px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 8px !important;
    min-height: 110px !important;
    height: 100% !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    background-color: #0da0e8 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    color: #fff !important;
  }
  
  .what-we-do .list-item:hover {
    background-color: #0da0e8 !important;
    transform: translateY(-2px) !important;
    opacity: 0.9 !important;
  }
  
  .what-we-do .tabs .active .list-item {
    background-color: #f0843d !important;
    color: #fff !important;
  }
  
  .what-we-do .list-item .icon {
    width: 50px !important;
    height: 50px !important;
    line-height: 50px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    background-color: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .what-we-do .list-item .icon img {
    width: 35px !important;
    height: 35px !important;
    object-fit: contain !important;
    display: block !important;
  }
  
  .what-we-do .list-item h4 {
    margin: 0 !important;
    font-size: 13px !important;
    flex: 1 !important;
    text-align: center !important;
    line-height: 1.3 !important;
    color: #fff !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
  }
  
  .what-we-do .tabs .active .list-item h4 {
    color: #fff !important;
  }
  
  /* タブコンテンツのテキストのパディングを他のセクションと統一 */
  .what-we-do .tab-content-services {
    margin-top: 30px !important;
  }
  
  .what-we-do .tab-content-services .col-md-6 {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-bottom: 20px;
  }
  
  .what-we-do .tab-content-services .left-text {
    padding: 0 !important;
  }
  
  .what-we-do .tab-content-services .left-text h4 {
    font-size: 20px !important;
    margin-bottom: 15px !important;
    color: #121212 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
  }
  
  .what-we-do .tab-content-services .left-text p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    color: #7a7a7a !important;
    font-weight: 300 !important;
  }
  
  /* より具体的なセレクタで確実に色を適用 */
  #second-tab-group .what-we-do .tab-content-services .left-text h4 {
    color: #121212 !important;
  }
  
  #second-tab-group .what-we-do .tab-content-services .left-text p {
    color: #7a7a7a !important;
  }
  
  .what-we-do .tab-content-services .right-image {
    padding: 0 !important;
    margin-bottom: 20px;
  }
  
  .what-we-do .tab-content-services .right-image img {
    width: 100% !important;
    height: auto;
    border-radius: 8px;
  }
  
  /* アクセス情報セクションのスマホビュー対応 */
  #contact-us .col-md-6 {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-bottom: 20px;
  }
  
  .access-info {
    padding: 25px 20px !important;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
  }
  
  .access-info h4 {
    font-size: 22px !important;
    margin-bottom: 20px !important;
    padding-bottom: 12px !important;
  }
  
  .info-item {
    margin-bottom: 20px !important;
    padding-bottom: 15px !important;
  }
  
  .info-item h5 {
    font-size: 15px !important;
    margin-bottom: 10px !important;
  }
  
  .info-item p {
    font-size: 13px !important;
    line-height: 1.7;
  }
  
  #map {
    padding: 0 !important;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background-color: #fff;
  }
  
  #map iframe {
    border-radius: 12px !important;
    width: 100% !important;
    height: 300px !important;
  }
}

@media (max-width: 385px){

  

}



/* LIGHT BOX */

.slbOverlay, .slbWrapOuter, .slbWrap {

    position: fixed; top: 0; right: 0; bottom: 0; left: 0;

}

.slbOverlay {

    overflow: hidden; z-index: 2000; background-color: #000; opacity: 0.7; filter: alpha(opacity=70);
    animation: slbOverlay 0.5s;

}

.slbWrapOuter {

    overflow-x: hidden; overflow-y: auto; z-index: 2010;

}

.slbWrap {

    position: absolute; text-align: center;

    &:before {

        content: ""; display: inline-block; height: 100%; vertical-align: middle;

    }

}

.slbContentOuter {

    position: relative; display: inline-block; vertical-align: middle; margin: 0px auto; padding: 0 1em; box-sizing: border-box; z-index: 2020; text-align: left;
    max-width: 100%;

    .slbContentEl & {

        padding: 5em 1em;

    }

}

.slbContent {

    position: relative;

    .slbContentEl & {

        animation: slbEnter 0.3s; background-color: #fff; box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.4);

    }

}

.slbImageWrap {

    animation: slbEnter 0.3s;
    position: relative;

    &:after {

        content: ""; position: absolute; left: 0; right: 0; top: 5em; bottom: 5em; display: block; z-index: -1;
        box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.6); background-color: #FFF;

    }

}

.slbImage {

    width: auto; max-width: 100%; height: auto; display: block; line-height: 0; box-sizing: border-box; padding: 5em 0; margin: 0 auto;

}

.slbCaption {

    /* @include ellipsis; */
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    font-size: 1.4em; position: absolute; left: 0; right: 0; bottom: 0; padding: 0.714em 0;
    color: #fff; color: rgba(255, 255, 255, 0.7); text-align: center;

}

.slbCloseBtn, .slbArrow {

    margin:0; padding: 0; border: 0; cursor: pointer; background: none;
    &::-moz-focus-inner { padding: 0; border: 0; }

    &:hover { opacity: 0.5; }
    &:active { opacity: 0.8; }

}

.slbCloseBtn {

  font-size: 36px;

    /* SCSS variables removed - using fixed values */
    /* $size: 50; $iconSize: 30; */

    /* @include animation(slbEnter 0.3s); */
    animation: slbEnter 0.3s;

    font-size: 3em; width: 5em; height: 5em; line-height: 5em;
    position: absolute; right: -1em; top: 0;
    color: #fff; color: rgba(255, 255, 255, 0.7); text-align: center;

    .slbLoading & {

        display: none;

    }

}

.slbLoadingText {

    font-size: 1.4em; color: #fff; color: rgba(255, 255, 255, 0.9);

}

.slbArrows {

    position: fixed; top: 50%; left: 0; right: 0;

    .slbLoading & {

        display: none;

    }

}

.slbArrow {

    /* SCSS variables removed - using fixed values */
    /* $size: 50; $iconSize: 8; */

    position: absolute; top: 50%; margin-top: -5em; width: 5em; height: 10em;
    opacity: 0.7; text-indent: -999em; overflow: hidden;

    &:before {

        content: ""; position: absolute; top: 50%; left: 50%; margin: -0.8em 0 0 -0.8em; border: 0.8em solid transparent;

    }

    &.next {

        right: 0; &:before { border-left-color: #fff; }

    }

    &.prev {

        left: 0; &:before { border-right-color: #fff;}

    }

}

.slbIframeCont {

    width: 80em; height: 0; overflow: hidden; padding-top: 56.25%; margin: 5em 0;

}

.slbIframe {

    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.6); background: #000;

}

/* Access Section Background with Parallax */
#contact-us {
  background-image: url(../img/access_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
}

#contact-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

#contact-us .container {
  position: relative;
  z-index: 2;
}

/* Access Info Styles */
.access-info {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  height: 100%;
}

.access-info h4 {
  color: #333;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 3px solid #f0843d;
  padding-bottom: 15px;
}

.info-item {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.info-item h5 {
  color: #f0843d;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.info-item h5 i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.info-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.info-item a {
  color: #f0843d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: #d46f2c;
  text-decoration: underline;
}

@keyframes slbOverlay {
    from { opacity: 0; }
    to { opacity: 0.7; }
}

@keyframes slbEnter {
    from { opacity: 0; transform: translate3d(0, -1em, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}