/**
* Template Name: Knight - v4.3.0
* Template URL: https://bootstrapmade.com/knight-free-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: "Jost", "SF Pro JP", "SF Pro Text", "SF Pro Icons", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  background: #282828;
  color: #fff;
}

a {
  text-decoration: none;
  color: #FFF100;
}

a:hover {
  color: #9ed49a;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  
}

.caption-mark {
  font-size: 0.6em;
  vertical-align: super;
}

.caption {
  font-size: 0.7rem;
  line-height: 1.4;
  color: #666;
}

.banner:hover {
  opacity: 0.8;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #FFF100;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #333;
  line-height: 0;
}

.back-to-top:hover {
  background: #97d193;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  background: #222;
  box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.5);
  position: fixed;
  top: -70px;
  left: 0;
  right: 0;
}

#header.header-scrolled {
  top: 0;
}

#header .logo h1 {
  font-size: 11px;
  margin: 5px 0 0 10px;
  line-height: 1.4;
  font-weight: 600;
  display: inline-block;
  width: 10rem;
  vertical-align: middle;
  color: #FFF100;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 36px;
}

@media (max-width: 992px) {
  #header {
    height: 50px;
  }
  #header .logo img {
    padding: 0;
    margin: 0;
    max-height: 28px;
  }
}

/* Removed scrolled-offset to prevent black bar issue */

/* Removed mobile scrolled-offset to prevent black bar issue */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 25px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0px;
  color: #FFF;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #FFF100;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #FFF100;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #FFF100;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515!important;
}

.navbar-mobile a.nav-link.button {
  margin: .8rem 1rem;
  padding: 8px 15px 6px;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #FFF100;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #FFF100;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

a.nav-link.button {
  background: #FFF100;
  color: #333;
  border-radius: 5rem;
  padding: 8px 20px 6px;
  letter-spacing: 0;
  font-size: 1rem;
  margin-left: 1.5rem;
  line-height: 1;
  border: 2px solid #FFF100;
  box-sizing: border-box;
}

a.nav-link.button:hover {
  background: #282828;
  color: #FFF100;
  border: 2px solid #FFF100;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  /* background: url("../img/hero-bg.png"); */
  position: relative;
  background-color: rgba(0, 0, 0, 0.3);
}

#hero .hero-container {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
  color: #FFF100;
}

#backgroundVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

#hero .container.position-adjust {
  margin-top: -150px;
}

#hero .catch {
  font-size: 2.1rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  padding: .5rem 1rem .3rem 1.9rem;
  line-height: 1;
  display: inline-block;
  border: 3px solid #fff;
  border-radius: 5rem;
}

#hero img.hero-logo {
  width: 26rem;
  max-width: 90%;
}

#hero img.filmlabo-img {
  width: 20rem;
  max-width: 100%;
}

#hero h1 {
  margin: 0 0 6px 0;
  font-size: 1.3rem;
  font-weight: bold;
}

#hero h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: bold;
}

#hero .btn-get-started {
  font-weight: bold;
  font-size: 1.5rem;
  /* letter-spacing: 1px; */
  display: inline-block;
  padding: 6px 30px;
  border-radius: 10rem;
  margin: 10px;
  color: #111;
  background: #FFF100;
  border: 3px solid #FFF100;
}

#hero .btn-get-started:hover {
  transition: 0.5s;
  background: transparent;
  border: 3px solid #FFF100;
  color: #fff100;
}

#hero .btn-get-started i {
  font-size: 30px;
  top: 4px;
  position: relative;
}

#hero .btn-get-started.btn-location {
  background: transparent;
  border: 3px solid #fff;
  color: #fff;
}

#hero .btn-get-started.btn-location:hover {
  background: #fff;
  color: #111;
}

#hero .btn-get-started.btn-location i {
  font-size: 24px;
  top: 3px;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero img.filmlabo-img {
    width: 11rem;
    max-width: 100%;
  }
  #hero .catch {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    padding: .5rem 1rem .3rem 1.9rem;
    line-height: 1;
    display: inline-block;
    border: 3px solid #fff;
    border-radius: 5rem;
  }
  #hero h1 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  #hero h2 {
    font-size: 20px;
    line-height: 22px;
  }
  #hero .btn-get-started {
    font-weight: bold;
    font-size: 1.2rem;
    /* letter-spacing: 1px; */
    display: inline-block;
    padding: 6px 30px;
    border-radius: 10rem;
    margin: 10px;
    color: #111;
    background: #FFF100;
  }
  #hero .btn-get-started i {
    font-size: 24px;
    top: 3px;
    position: relative;
  }
  #hero .btn-get-started.btn-location {
    font-size: 1rem;
    padding: 6px 20px;
  }
  #hero .btn-get-started.btn-location i {
    font-size: 20px;
    top: 3px;
  }
}

/*--------------------------------------------------------------
# Balloon & Triangle
--------------------------------------------------------------*/

.balloon-top {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 10px 30px;
  min-width: 120px;
  max-width: 100%;
  background: #fefefe;
  border-radius: 50rem;
}

.balloon-top p {
  font-size: 18px;
  font-weight: bold;
  padding: 0;
  margin: 0;
  background: -webkit-linear-gradient(120deg, #094bda, #d71087, #02bcb6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.balloon-top p small {
  font-size: 14px;
  font-weight: 300;
}

.balloon-top:before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #fefefe;
}

.top-image-position {
  position: relative;
  top: -48px;
}

.triangle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  border-top: 20px solid #FFF100;
  border-bottom: 0;
}

@media (max-width: 768px) {
  .balloon-top {
    padding: 10px 20px;
  }
  .balloon-top p {
    font-size: 15px;
    line-height: 1.4;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: whitesmoke;
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 27px;
  font-weight: 100;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding: 0 55px;
  color: #333;
  letter-spacing: 2px;
  display: inline-block;
}

.section-title h2:before, .section-title h2:after {
  content: '';
  position: absolute;
  top: 45%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: #aaa;
}

.section-title h2:before {
  left:0;
}
.section-title h2:after {
  right: 0;
}

.section-title p {
  margin-bottom: 0;
  color: #aeaeae;
}

.section-title .section-caption {
  font-size: 0.65rem;
  color: #099790;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
  font-weight: bold;
}



/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .image {
  padding: 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

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

.about .content ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.about .content ul i {
  font-size: 24px;
  padding: 2px 6px 0 0;
  color: #FFF100;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
section#services {
  background: #282828;
}

.services h2 {
  display: flex;
  color: #FFF;
  font-size: 18px;
  text-align: center;
}

.services h2 img.logo {
  height: 20px;
  margin-right: 3px;
  position: relative;
  top: -2px;
}

.services h2::before,
.services h2::after {
  content: '';
  height: 1px;
  background-color: #666;
  flex-grow: 1;
  margin: 9px 20px;
}

.services p {
  color: #fff;
}

.services .icon-box {
  border: 3px solid #444;
  border-radius: 1rem;
  background: #303030;
}

.services .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.services .icon-box i {
  font-size: 5rem;
  float: left;
  color: #FFF100;
}

.services .icon-box p {
  font-size: 15px;
  color: #fff;
}

.services .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 2200px;
  min-height: 800px;
}

@media (max-width: 768px) {
  .services .image {
    min-height: 19rem;
    background-size: 150%;
    margin: 0 -12px;
  }
}

/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/
section#news {
  background: #f5f5f5;
  color: #333;
}

.news ul li {
  font-size: 14px;
}

.news ul li[data-bs-toggle="modal"]  {
  cursor: pointer;
}

.news ul li[data-bs-toggle="modal"]:hover {
  background: #fafafa!important;
  border-left: #FFF100 3px solid;
}

.news ul li span {
  font-size: 12px;
  color: #0bb9a2;
}

.news .icon-box {
  border: 3px solid #444;
  border-radius: 1rem;
  background: #303030;
}

.news .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.news .icon-box i {
  font-size: 5rem;
  float: left;
  color: #FFF100;
}

.news .icon-box p {
  font-size: 15px;
  color: #fff;
}

.news .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 40rem;
}

@media (max-width: 768px) {
  .news .image {
    min-height: 28rem;
    margin: 0 -12px;
    background-size: 170%;
  }
  .news ul li span {
    display: block;
  }
}


/*--------------------------------------------------------------
# News Modal
--------------------------------------------------------------*/

.modal-content {
  color: #333;
}

.modal-content .modal-title {
  font-size: 1.1rem;
}

.modal-content .modal-body {
  font-size: 0.9rem;
}

.modal-content .modal-body p {
  margin-bottom: 0;
}

.modal-content .modal-body img {
  margin: 1rem 0rem;
}

.modal-content .modal-body a {
  color: #0c6183;
  text-decoration: underline;
}


/*--------------------------------------------------------------
# features
--------------------------------------------------------------*/
section#features {
  background: #f5f5f5;
  color: #333;
}

.features h2 {
  color: #333;
}

.features .title-box {
  display: flex;
  margin: 5px 0;
  position: relative;
}

.features h3 {
  color: #099790;
  font-size: 22px;
  margin-top: 12px;
  position: relative;
  font-weight: bold;
  display: inline-block;
  margin-left: 2rem;
}

.features .title-icon {
  display: inline-block;
  position: absolute;
  left: -.7rem;
}

.features .title-icon i {
  font-size: 2rem;
  vertical-align: middle;
  background: #cbe5e4;
  color: #fff;
  border-radius: 10rem;
  width: 3rem;
  height: 3rem;
  text-align: center;
  line-height: 3rem;
}

@media (max-width: 768px) {
  .features h3 i {
    left:-1.5rem;
    margin-right: -2.3rem;
  }
}

/*--------------------------------------------------------------
# glass-film-type
--------------------------------------------------------------*/
.glass-film-type {
  padding: 40px 0;
  background: #f5f5f5;
}

.glass-film-type span.img-comment {
  font-size: 11px;
  color: #888;
  position: absolute;
}

.glass-film-type img.glass-film-img {
  background: transparent;
}

.glass-film-type .nav-tabs {
  border: 0;
}

.glass-film-type .nav-link {
  border: 0;
  padding: 20px;
  color: #151515;
  transition: 0.3s;
  border-radius: 1rem;
  border: 3px solid #fff;
  background: #f3f3f3;
}

.glass-film-type .nav-link h4 {
  font-size: 17px;
  font-weight: bold;
  transition: 0.3s;
  margin-bottom: 6px;
}

.glass-film-type .nav-link:hover h4 {
  color: #333;
}

.glass-film-type .nav-link li {
  font-size: 1rem;
  line-height: 1.3;
}

.glass-film-type .nav-link p {
  font-size: 12px;
  margin-bottom: 0;
}

.glass-film-type .nav-link.active {
  background: #f6f6f6;
  color:#333;
  border: 3px solid #fff100;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2) !important;
}

.glass-film-type .nav-link.active h4 {
  color: #111;
}

.glass-film-type .tab-pane.active {
  -webkit-animation: slide-down 0.5s ease-out;
  animation: slide-down 0.5s ease-out;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# spec
--------------------------------------------------------------*/
.spec {
  background: whitesmoke;
  padding: 0;
}

.spec .content {
  color: #333;
  padding: 40px 100px 0 100px;
  display: inline-block;
}

.spec .content h3 {

}

.spec .content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 5px;
}

.spec .content p {
  font-size: 15px;
  color: #959595;
}

.spec .content .section-title {
  text-align: center;
  padding-bottom: 0px;
}

.spec .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.spec .spec-table {
  padding: 0 100px 60px 100px;
}

.spec .spec-table a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.spec .spec-table span {
  color: #FFF100;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.spec .spec-table i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.spec .spec-table p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.spec .spec-table .icon-show {
  display: none;
}

.spec .spec-table a.collapsed {
  color: #343a40;
}

.spec .spec-table a.collapsed:hover {
  color: #FFF100;
}

.spec .spec-table a.collapsed .icon-show {
  display: inline-block;
}

.spec .spec-table a.collapsed .icon-close {
  display: none;
}

.spec .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#FFF100 50%, rgba(124, 197, 118, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.spec .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.spec .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(124, 197, 118, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.spec .play-btn:hover::after {
  border-left: 15px solid #FFF100;
  transform: scale(20);
}

.spec .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {
  .spec .content, .spec .spec-table {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .spec .content {
    padding-top: 30px;
  }
  .spec .spec-table {
    padding-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 60px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}

.testimonials .quote-icon {
  text-align: center;
  margin-bottom: 30px;
}

.testimonials .quote-icon i {
  color: #FFF100;
  font-size: 24px;
  padding: 18px;
  border-radius: 50px;
  border: 2px solid #FFF100;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 30px auto;
  font-size: 20px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FFF100;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: whitesmoke;
  padding: 15px 0;
  text-align: center;
}

.clients img {
  width: 50%;
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  filter: none;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .clients img {
    width: 40%;
  }
}

@media (max-width: 575px) {
  .clients img {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: -40px;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: bottom ease-in-out 0.4s;
  background: rgba(124, 197, 118, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a i {
  line-height: 0;
}

.team .member .social a:hover {
  color: #fff;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin: 15px 0 5px 0;
  font-size: 18px;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
  color: #FFF100;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #888888;
}

.team .member:hover .social {
  bottom: 0;
  opacity: 1;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid #fff;
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #151515;
}

.pricing .box h4 {
  font-size: 42px;
  color: #151515;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #151515;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #FFF100;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 5px;
  border: 2px solid #FFF100;
  color: #FFF100;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .box .btn-buy:hover {
  background: #FFF100;
  color: #fff;
}

.pricing .recommended {
  border-color: #FFF100;
}

.pricing .recommended .btn-buy {
  background: #FFF100;
  color: #fff;
}

.pricing .recommended .btn-buy:hover {
  background: #61b959;
  border-color: #61b959;
}

.pricing .recommended-badge {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 12px;
  padding: 4px 25px 6px 25px;
  background: #eaf6e9;
  color: #FFF100;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq h2 {
  color: #FFF100;
}

.faq .faq-list li {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  color: #FFF100;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-right: 25px;
  cursor: pointer;
}

.faq .faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #fff;
}

.faq .faq-list a.collapsed:hover {
  color: #FFF100;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
}

.contact .info i {
  font-size: 20px;
  color: #FFF100;
  float: left;
  width: 44px;
  height: 44px;
  background: #282828;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
  color: #555;
  margin-top: 5px;
}

.contact .info p {
  padding: 0 0 0 68px;
  margin-bottom: 0;
  font-size: 15px;
  color: #484848;
}

.contact .info .address, .contact .info .email, .contact .info .phone, .contact .info .cs {
  margin-top: 20px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i, .contact .info .cs:hover i {
  background: #FFF100;
  color: #282828;
}

.contact .php-email-form, .contact .tel-inq {
  width: 100%;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  color: #333;
}

.contact .tel-inq p {
  margin: 0;
}

.contact .tel-inq p span.tel-num {
  color: #099790;
  font-size: 24px;
  font-weight: bold;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form select, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input, .contact .php-email-form select {
  height: 44px;
}

.contact .php-email-form input[type="checkbox"] {
  width: 14px;
  height: 14px;
}

.contact .php-email-form label {
  font-size: 14px;
  color: #151515;
}

.contact .php-email-form .scroll {
  font-size: 13px;
  color: #151515;
  border: solid 1px #d2d2d2;
  background: #f7f7f7;
  padding: 15px;
  height: 130px;
  overflow: auto;
  line-height: 1.47em;
  display: block;
  text-align: left;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #FFF100;
  border: 0;
  padding: 10px 24px;
  color: #333;
  font-weight: bold;
  transition: 0.4s;
  border-radius: 10rem;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #282828;
  color:#FFF100;
}

.contact .php-email-form button#submit-btn:disabled {
  background-color: #eee;
  color: #aaa;
  cursor: not-allowed;
  transition: all 0.3s ease-in-out;
}

.contact .php-email-form button#submit-btn:disabled::after {
  content:"送信には同意チェックが必要です";
  display: block;
  font-size: 10px;
  font-weight: 100;
  margin: 2px;
  line-height: 1;
}

/* 完了時には after コンテンツを非表示にする */
.contact .php-email-form button#submit-btn.completed::after {
  content: "";
  display: none;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 40px 0;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: url("../img/footer-bg.jpg") center center no-repeat;
  color: #fff;
  font-size: 14px;
  position: relative;
}

#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

#footer .footer-top {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}

#footer .footer-top .footer-logo img {
  height: 120px;
}

#footer .footer-top h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 30px 0 0 0;
  margin-bottom: 0;
}

#footer .footer-top p {
  font-size: 15;
  font-style: italic;
  margin: 30px 0 0 0;
  padding: 0;
}

#footer .footer-top .footer-newsletter {
  text-align: center;
  font-size: 15px;
  margin-top: 30px;
}

#footer .footer-top .footer-newsletter form {
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #FFF100;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #5ab652;
}

#footer .footer-top .social-links {
  margin-top: 30px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #FFF100;
  border: 2px solid #FFF100;
  color: #111;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: transparent;
  border: 2px solid #FFF100;
  color: #FFF100;
  text-decoration: none;
}

#footer .footer-bottom {
  border-top: 1px solid #222222;
  z-index: 2;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}

#footer .privacy-policy {

  font-size: 12px;
}

#footer .copyright , #footer .credits{
  font-size: 12px;
}

/*--------------------------------------------------------------
# reCAPTCHA
--------------------------------------------------------------*/
.grecaptcha-badge { 
  visibility: hidden;
}

.recaptcha-box {
  background-color: #fafafa;
  border: 1px solid #f1f1f1;
  display: inline-block;
  padding: 5px 20px;
  font-size: .8rem;
  color: #666;
  line-height: 1.6;
  border-radius: .2rem;
}

.recaptcha-box a {
  color: #007bff;
  text-decoration: underline;
}


/*--------------------------------------------------------------
# New iPhone Tag
--------------------------------------------------------------*/
.new-iphone-info-wrapper {
    background: #fff;
    border: 1px dotted #ccc;
    border-radius: 0.5rem;
    text-align: center;
    padding: 12px 16px;
    margin-bottom: 20px;
}

.new-iphone-info-wrapper p {
    font-size: 14px;
    margin-top: .2rem;
    color: #dc3545;
    line-height: 1.2;
    margin-bottom: 0;
}

.new-iphone-container {
    padding: 0 10px;
}

.new-iphone {
    background: yellow;
    color: #111;
    font-size: 0.85rem;
    font-weight: bold;
    padding: 3px 6px 1px;
    margin: 2px;
    border-radius: 2rem;
    line-height: 1;
    display: inline-block;
    text-align: left;
    letter-spacing: -0.5px;
    border: 1px solid #ccc;
}

/*--------------------------------------------------------------
# Filter Accordion (Mobile-Friendly)
--------------------------------------------------------------*/
.filter-accordion {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.filter-toggle-btn {
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, #FFF100 0%, #FFD700 100%);
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.filter-toggle-btn:hover {
  background: linear-gradient(135deg, #FFD700 0%, #FFF100 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.filter-toggle-btn:active {
  transform: scale(0.98);
}

.filter-toggle-btn .toggle-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.filter-toggle-btn.active .toggle-icon {
  transform: rotate(180deg);
}

.filter-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
}

.filter-content.active {
  max-height: 2000px;
}

.filter-group {
  padding: 16px 20px 8px;
  border-bottom: 1px solid #f0f0f0;
}

.filter-group:last-of-type {
  border-bottom: none;
}

.filter-group-label {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.filter-group-label i {
  color: #FFF100;
  font-size: 18px;
}

.filter-group .location-flters {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-group .location-flters li {
  cursor: pointer;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: #555;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 20px;
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
}

.filter-group .location-flters li:hover {
  background: #fff;
  border-color: #FFF100;
  color: #333;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(255, 241, 0, 0.3);
}

.filter-group .location-flters li.filter-active {
  background: #FFF100;
  border-color: #FFF100;
  color: #333;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(255, 241, 0, 0.4);
}

.filter-group .location-flters li .badge {
  font-size: 14px;
  padding: 2px 6px;
  margin-left: 4px;
}

/* フィルター操作エリア */
.filter-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-top: 1px solid #e9ecef;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-filter-reset {
  background: linear-gradient(135deg, #FFF100 0%, #FFD700 100%);
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-filter-reset:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 241, 0, 0.3);
}

.btn-filter-reset:active {
  transform: translateY(0);
}

.btn-filter-reset i {
  font-size: 16px;
}

.filter-help {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #666;
  flex: 1;
  min-width: 0;
}

.filter-help i {
  font-size: 16px;
  color: #999;
  flex-shrink: 0;
}

.filter-help span {
  line-height: 1.4;
}

/*--------------------------------------------------------------
# Location
--------------------------------------------------------------*/
.location {
    background: whitesmoke;
    padding: 0;
}
/* セクション全体の高さ設定 (900px) */
#locations-module-container {
    height: 1200px;
    width: 100%;
    position: relative;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

/* リストコンテナ */
#location-list-container {
    min-height: 0;
    overflow-y: auto;
}

/* 地図コンテナ */
#map-container {
    background-color: #e9ecef;
    z-index: 0;
}

/* Leaflet調整 */
.leaflet-pane { z-index: 10 !important; }
.leaflet-top, .leaflet-bottom { z-index: 20 !important; }

/* カスタムマーカー */
.custom-marker {
    background: transparent;
    border: none;
}

/* リストアイテム */
.location-item {
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #dee2e6;
    background-color: #fff;
}
.location-item:hover {
    background-color: #f8f9fa;
    border-left-width: 4px;
    border-left-color: #adb5bd;
}
/* 選択中のスタイル */
.location-item.active {
    background-color: #e0f7fa !important; /* 薄いシアン */
    border-color: #dee2e6;
    border-left-width: 4px !important;
    border-left-color: #0dcaf0 !important; /* 左端にアクセントカラー */
}

/* サムネイル画像コンテナ（バッジ配置用） */
.thumb-container {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}
.thumb-img {
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    background-color: #e9ecef;
    object-fit: cover;
}

/* 画像上のバッジスタイル */
.status-badge-overlay {
    position: absolute;
    top: -4px;
    left: -4px;
    z-index: 2;
    font-size: 0.75rem !important;
    padding: 0.3em 0.7em !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* メンテナンス中のリストアイテム */
.location-item.is-maintenance {
    opacity: 0.55;
}

.location-item.is-maintenance:hover {
    opacity: 0.75;
}

/* リスト内のテキストスタイル調整 */
.location-name-container {
    height: 2.8em; /* 2行分の高さを確保 */
    display: flex;
    align-items: center; /* 上下中央揃え */
    margin-bottom: 0.25rem;
    overflow: hidden;
}
.location-name-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    font-size: 1rem;
    font-weight: bold;
    color: #212529;
}
.location-meta-text {
    font-size: 0.7rem;
    color: #6c757d;
    line-height: 1.3;
}

/* 在庫テーブル */
.stock-table {
    font-size: 11px;
    table-layout: fixed;
}
.stock-table th,
.stock-table td {
    vertical-align: middle;
    overflow: hidden;
    text-overflow: ellipsis;
}
.stock-table tbody tr:hover {
    background-color: rgba(0,0,0,0.02);
}
.stock-table td.text-truncate {
    max-width: 0;
}

/* 検索フィルターのレスポンシブ調整 */
#region-filter,
#prefecture-filter {
    width: calc(50% - 0.25rem);
}

@media (min-width: 768px) {
    #region-filter,
    #prefecture-filter {
        width: auto;
        min-width: 140px;
    }
}

/* 詳細モーダル（PC） */
.location-detail-modal-desktop {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 380px;
    max-height: calc(100% - 2rem);
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 30;
    overflow-y: auto;
    display: none;
}

/* 閉じるボタン（正円） */
.btn-close-custom {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    transition: all 0.2s;
    cursor: pointer;
}
.btn-close-custom:hover {
    background-color: #e9ecef;
}

/* 全体に戻るボタン */
.btn-reset-map {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 25;
    background: white;
    border: 2px solid rgba(0,0,0,0.2);
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 6px;
    color: #333;
    transition: background-color 0.2s;
}
.btn-reset-map:hover {
    background-color: #f8f9fa;
}

/* モバイル用ボトムシート */
.mobile-detail-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 1.5rem 1.5rem 0 0;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    max-height: 94vh;
    overflow-y: auto;
}
.mobile-detail-sheet.show {
    transform: translateY(0);
}

.mobile-detail-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-detail-overlay.show {
    display: block;
    opacity: 1;
}

/* ローディング・エラーオーバーレイ */
#loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}
#loading-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* 画像スタイル */
.object-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* スクロールバー調整 */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }



/* モバイル対応 */
@media (max-width: 768px) {
  .filter-toggle-btn {
    font-size: 14px;
    padding: 14px 16px;
  }

  .filter-group {
    padding: 12px 16px 8px;
  }

  .filter-group-label {
    font-size: 13px;
  }

  .filter-group .location-flters li {
    font-size: 12px;
    padding: 6px 12px;
  }

  .filter-actions {
    padding: 12px 16px;
    gap: 12px;
  }

  .btn-filter-reset {
    font-size: 13px;
    padding: 7px 16px;
  }

  .filter-help {
    font-size: 11px;
  }

  .filter-help i {
    font-size: 14px;
  }
}

/* デスクトップ・タブレット対応 - より大きなUI */
@media (min-width: 769px) {
  .filter-toggle-btn {
    font-size: 18px;
    padding: 18px 24px;
  }

  .filter-toggle-btn i.bx-filter-alt {
    font-size: 24px;
  }

  .filter-toggle-btn i.toggle-icon {
    font-size: 24px;
  }

  .filter-group {
    padding: 16px 24px 12px;
  }

  .filter-group-label {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .filter-group .location-flters li {
    font-size: 14px;
    padding: 10px 18px;
  }
}