@charset "UTF-8";
.site-header {
  position: sticky;
  background: #303e49;
  width: 100vw;
  height: auto;
  top: 0;
  left: 0;
  z-index: 10;
}

.header-container {
  width: 100%;
  max-width: 1322px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  padding: 10px;
}

.site-logo {
  display: block;
  text-decoration: none;
  width: 291px;
height: 96.122px;
aspect-ratio: 291.00/96.12;
}

.logo-image {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-nav-wrapper {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  text-decoration: none;
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.9px;
  white-space: nowrap;
}

.header-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #01adbb;
  color: white;
  text-decoration: none;
  padding: 10px 30px 5px 30px;
  font-family: "Acumin Pro", sans-serif;
  font-weight: bold;
  font-size: 24px;
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: none;
  background: #01adbb;
  border: none;
  width: 60px;
  height: 60px;
  position: relative;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.mobile-menu-toggle .hamburger-line {
  width: 25px;
  height: 3px;
  background: white;
  display: block;
  transition: all 0.3s ease;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(3px, 6px);
}
.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(2px, -6px);
}

.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 60px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 93px);
  background: #303e49;
  z-index: 9;
  transition: left 0.3s ease;
}
.mobile-nav-drawer.active {
  left: 0;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.mobile-nav-item {
  padding: 15px 0;
  color: white;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav-item.mobile-contact {
  background: #01adbb;
  color: white;
  text-align: center;
  padding: 15px 20px;
  margin-top: 20px;
  font-family: "Acumin Pro", sans-serif;
  font-weight: bold;
  font-size: 20px;
  border-bottom: none;
  width: fit-content;
  margin-inline: auto;
}

body.mobile-menu-open {
  overflow: hidden;
}

@media (max-width: 1200px) {
  .header-nav-wrapper {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-nav-drawer {
    display: block;
  }
  .logo-image {
    max-width: 100px;
    height: 33px;
  }
  .header-container {
    padding:0 0 0 20px;
  }
  .site-logo{
    width: 100px;
height: 33.032px;
aspect-ratio: 100.00/33.03;
  }
}
.site-footer {
  background: #303e49;
  color: white;
  padding: 70px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px 40px;
  margin-bottom: 107px;
  align-items: start;
  max-width: 1000px;
  margin-inline: auto;
}

.footer-logo {
  grid-column: 1;
  grid-row: 1;
width: 297.192px;
height: auto;
margin-left: -10px;
aspect-ratio: 297.19/94.00;
  justify-self: start;
}
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-company{
grid-column: 1;
grid-row: 2;
line-height: 1.4;
}

.footer-social {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-self: start;
}

.footer-social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: transparent;
  text-decoration: none;
  transition: transform 0.3s ease;
  position: relative;
}
.footer-social .social-icon:hover {
  transform: translateY(-2px);
}
.footer-social .social-icon .screen-reader-text {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.footer-social .social-icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  display: block;
}

.footer-menu {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.footer-cta {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  align-self: end;
}

.footer-left,
.footer-right {
  display: contents;
}

.menu-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-item {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.menu-item:hover {
  color: #01adbb;
}

.menu-separator {
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.footer-cta {
  display: flex;
  justify-content: flex-end;
}

.footer-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #01adbb;
  color: white;
  text-decoration: none;
  padding: 10px 30px;
  min-width: 184px;
  font-family: "Acumin Pro", sans-serif;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
  border-radius: 2px;
  transition: background 0.3s ease;
}
.footer-contact-btn:hover {
  background: #008a96;
}

.footer-copyright {
  margin-inline: calc(50% - 50vw);
  border-top: 1px solid #fff;
  padding: 12px 0;
  text-align: center;
}
.footer-copyright p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: white;
  margin: 0;
}

@media (max-width: 1000px) {
  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    gap: 40px;
    text-align: center;
    justify-items: center;
    margin-bottom: 30px;
  }
  .footer-menu {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    align-items: center;
    text-align: center;
  }
  .footer-logo {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
   width: 138px;
aspect-ratio: 138.00/46.71;
  }
  .footer-cta {
    grid-column: 1;
    grid-row: 4;
    justify-self: center
  }
  .footer-company{
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
  }
  .footer-social {
    grid-column: 1;
    grid-row: 5;
    justify-self: center;
  }
  .menu-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .menu-item {
    text-align: center;
  }
  .menu-separator {
    display: inline;
  }
  .footer-contact-btn {
    width: 241px;
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .footer-container {
    padding: 0 16px;
  }
  .footer-content {
    gap: 30px;
  }
  .footer-left {
    gap: 30px;
  }
  .footer-right {
    gap: 30px;
  }
}
.hero-img {
  width: 100vw;
  height: auto;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-page .hero-section {
  background: linear-gradient(135deg, #303e49 0%, #2c3e50 100%);
  padding: 100px 0;
  text-align: center;
  color: white;
}
.home-page .hero-section h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: bold;
}
.home-page .hero-section p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}
.home-page .hero-section .cta-button {
  display: inline-block;
  background: #01adbb;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.home-page .hero-section .cta-button:hover {
  background: #008a96;
}
.home-page .features-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.home-page .features-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.home-page .features-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #303e49;
}
.home-page .features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.home-page .features-section .feature-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.home-page .features-section .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: #01adbb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}
.home-page .features-section .feature-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #303e49;
}
.home-page .features-section .feature-item p {
  color: #666;
  line-height: 1.6;
}

.find-your-solution {
  position: relative;
  background: #303e49;
  width: 100%;
  padding: 80px 0;
}

.solution-container {
  position: relative;
  width: 1001px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.solution-title {
  font-family: "Acumin Pro", sans-serif;
  font-weight: bold;
  font-size: 56px;
  color: white;
  margin: 0;
  line-height: normal;
  text-align: left;
}

.solution-grid {
  display: flex;
  gap: 33px;
  align-items: center;
  justify-content: center;
}

.solution-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.solution-item:hover {
  text-decoration: none;
  color: inherit;
}
.solution-item:focus {
  outline: 2px solid #01adbb;
  outline-offset: 2px;
}

.solution-card {
  position: relative;
  width: 225px;
  height: 225px;
  background: white;
  border-top: 13px solid #01adbb;
}

.solution-image {
  position: absolute;
  top: 42px;
  left: 12.5px;
  width: 200px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.solution-item:nth-child(2) .solution-image {
  top: 51px;
}

.solution-item:nth-child(3) .solution-image {
  top: 44px;
}

.solution-item:nth-child(4) .solution-image {
  top: 48px;
}

.solution-label {
  font-family: "Acumin Pro", sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: white;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.solution-decoration {
  position: absolute;
  right: 10%;
  top: 0;
  width: clamp(74px, 5.54vw + 53.225px, 133px);
  aspect-ratio: 133/32;
  display: flex;
  gap: 19px;
  align-items: flex-start;
  padding-right: 0;
}
.solution-decoration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .solution-container {
    width: auto;
  }
  .solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
  }
  .solution-title {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .solution-container {
    max-width: 500px;
    padding: 0 35px;
    margin: 0 auto;
    gap: 48px;
  }
  .solution-title {
    font-size: 30px;
    margin-bottom: 0;
  }
  .solution-grid {
    display: flex;
    flex-direction: column;
    gap: 42px;
    margin: 0;
    max-width: none;
  }
  .solution-item-wrapper {
    position: relative;
    width: 100%;
  }
  .solution-item-wrapper::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 0;
    right: 0;
    height: 7px;
    background: #01adbb;
  }
  .solution-item {
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    justify-content: center;
    padding-inline: 14px;
    width: 100%;
    max-width: 330px;
    margin-inline: auto;
  }
  .solution-card {
    width: 100px;
    height: 100px;
    background: white;
    border-top: none;
    order: 2;
    flex-shrink: 0;
  }
  .solution-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 89px;
    height: 67px;
  }
  .solution-label {
    font-size: 22px;
    text-align: left;
    order: 1;
    flex: 1;
    white-space: normal;
    padding-block: 16px;
    text-align: left;
  }
  .solution-item:nth-child(2) .solution-image,
  .solution-item:nth-child(3) .solution-image,
  .solution-item:nth-child(4) .solution-image {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.news-section {
  position: relative;
  background: white;
  width: 100%;
  padding: 80px 0;
}

.news-container {
  position: relative;
  width: 1001px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.news-title {
  font-family: "Acumin Pro", sans-serif;
  font-weight: bold;
  font-size: 56px;
  color: #131313;
  margin: 0;
  line-height: normal;
}

.news-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

.news-grid {
  display: flex;
  gap: 33px;
  align-items: center;
  justify-content: center;
}

.news-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 225px;
}

.news-image {
  width: 225px;
  height: 150px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #131313;
}

.news-category {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  white-space: nowrap;
}

.news-title-item {
  font-family: "Acumin Pro", sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  width: 225px;
}

.news-excerpt {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  width: 225px;
}

.news-cta {
  display: flex;
  justify-content: center;
}

.more-news-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #01adbb;
  color: white;
  text-decoration: none;
  padding: 9px 30px 5px 30px;
  height: 44px;
  font-family: "Acumin Pro", sans-serif;
  font-weight: bold;
  font-size: 24px;
  white-space: nowrap;
  transition: background 0.3s ease;
}
.more-news-btn:hover {
  background: #008a96;
}

@media (max-width: 1200px) {
  .news-container {
    max-width: 90%;
    width: auto;
    padding: 0 20px;
  }
  .news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
  }
  .news-item {
    width: 100%;
    max-width: 500px;
    justify-self: center;
  }
  .news-image {
    width: 100%;
    max-width: 500px;
  }
  .news-title-item,
  .news-excerpt {
    width: 100%;
    max-width: 500px;
  }
}
@media (max-width: 678px) {
  .news-container {
    padding: 0 15px;
  }
  .news-title {
    font-size: 32px;
  }
  .news-grid {
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin: 0 auto;
    max-width: 305px;
  }
  .news-item {
    max-width: 305px;
  }
  .news-image {
    max-width: 305px;
    height: 203px;
  }
  .news-title-item,
  .news-excerpt {
    max-width: 305px;
  }
}
.media-section {
  position: relative;
  background: #f0f2f4;
  width: 100%;
  height: 490px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-container {
  position: relative;
  display: flex;
  gap: 51px;
  align-items: center;
}

.media-youtube {
  position: relative;
}

.youtube-card {
  position: relative;
  width: 500px;
  height: 281px;
  overflow: hidden;
}

.youtube-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.77);
}

.youtube-icon--movie {
  position: absolute;
  top: 97px;
  left: 211px;
  width: 79px;
  height: 79px;
}
.youtube-icon--movie img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.youtube-text {
  position: absolute;
  top: 166px;
  left: 204px;
  font-family: "Acumin Pro", sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: white;
  line-height: normal;
  white-space: nowrap;
}

.media-social {
  display: flex;
  flex-direction: column;
  gap: 41px;
  width: 121px;
}

.social-card {
  position: relative;
  width: 120px;
  height: 120px;
  overflow: hidden;
}

.social-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.social-icon--card {
  position: absolute;
  top: 35px;
  left: 42px;
  width: 34px;
  height: 34px;
}
.social-icon--card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-text {
  position: absolute;
  bottom: 30px;
  left: 11px;
  font-family: "Acumin Pro", sans-serif;
  font-weight: bold;
  font-size: 17.946px;
  color: white;
  line-height: normal;
  white-space: nowrap;
}

.instagram-card .social-bg {
  background-position: 65.98% 16.95%;
  background-size: 185.73% 104.92%;
}

.twitter-card .social-icon {
  top: 36px;
}
.twitter-card .social-text {
  bottom: 32px;
  left: 31px;
}

@media (max-width: 768px) {
  .media-section {
    height: auto;
    padding: 72px 0;
  }
  .media-container {
    flex-direction: column;
    gap: 12px;
    max-width: 500px;
    width: 100%;
    padding: 0 20px;
  }
  .youtube-card {
    width: 305px;
    height: 171px;
    max-width: 100%;
  }
  .youtube-icon--movie {
    top: 47px;
    left: 128px;
    width: 48px;
    height: 48px;
  }
  .youtube-text {
    top: 89px;
    left: 107px;
    font-size: 24px;
  }
  .media-social {
    flex-direction: row;
    gap: 15px;
    width: 100%;
    justify-content: center;
  }
  .social-card {
    width: 145px;
    height: 145px;
  }
  .social-icon--card {
    top: 42px;
    left: 51px;
    width: 41px;
    height: 41px;
  }
  .social-text {
    bottom: 31px;
    font-size: 21.5px;
  }
  .twitter-card .social-text {
    bottom: 27px;
    left: 37px;
  }
}
.about-us-section {
  position: relative;
  background: #303e49;
  width: 100%;
  padding: 80px 0;
}

.about-us-container {
  position: relative;
  max-width: 1070px;
  margin: 0 auto;
  padding: 0 35px;
}

.about-decoration {
  position: absolute;
  left: 10%;
  top: 0;
  width: clamp(74px, 5.54vw + 53.225px, 133px);
  aspect-ratio: 133/32;
  display: flex;
  gap: 19px;
  align-items: flex-start;
}
.about-decoration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-content {
  position: relative;
  width: 100%;
}

.about-title {
  font-family: "Acumin Pro", sans-serif;
  font-weight: bold;
  font-size: clamp(30px, 4.65vw, 67px);
  color: white;
  margin: 0 0 35px 0;
  line-height: normal;
}

.about-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: white;
  line-height: 1.8;
  max-width: 100%;
  margin: 0 auto;
}
.about-text p {
  margin: 0 0 24px 0;
}
.about-text p:last-child {
  margin-bottom: 0;
}
.about-text strong {
  font-weight: 700;
}
.about-text br {
  line-height: 1.2;
}
.about-heading{
  font-size: 24px;
}
.about-cards-wrapper{
  display: flex;
  gap: clamp(10px, 2.5vw, 50px);
  justify-content: space-between;
  margin-block: 48px;
}

.about-card {
   position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 23px 15px;
  width:100%;
  max-width: 300px;
  height: auto;
  color: #131313;
  box-sizing: border-box;
  background: #F0F2F4; 
  overflow: hidden;

}

.about-card-title{
  align-self: flex-start;;
  font-size: 22px;
  border-bottom: 3px solid #303E49; ;
}
.about-card-text{
  font-size: 14px;
}

 .about-card-image{
    position: absolute;
    height: auto;
    object-fit: contain;
  }
.about-card-image   img{
      width: 100%;
    }

  .about-image-1{
    top: -6px;
    right:3px;
aspect-ratio: 58 / 73;
width: 102px;
}
  .about-image-2{
    top: 5px;
    right: 5px;
    aspect-ratio: 1 / 1 ;
    width: 110px;
  }
  .about-image-3{
    top: -6px;
    right: 0;
  aspect-ratio: 80.5 / 71;
  width: 121px;
  }



@media (max-width: 768px) {
  .about-us-section {
    padding: 60px 0;
  }
  .about-us-container {
    margin: 0 auto;
  }
  .about-content {
    width: 100%;
  }
.about-cards-wrapper{
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-block: 40px;
}

.about-card{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 13px;
  width: clamp(300px,100%, 500px);
  max-width: 500px;
  height: auto;
  color: #131313;
  box-sizing: border-box;
  background: #F0F2F4; 
  overflow: hidden;
}

.about-card-title{
  align-self: flex-start;;
  font-size: 18px;
  border-bottom: 3px solid #303E49; ;
}
.about-card-text{
  font-size: 12px;
}

  .about-card-image{
    position: absolute;
    height: auto;
    object-fit: contain;
  }
  .about-image-1{
    top: -6px;
    right:2px;
aspect-ratio: 58 / 73;
width: 74px;
}
  .about-image-2{
    top: 5px;
    right: 5px;
    aspect-ratio: 1 / 1 ;
    width: 77px;
  }
  .about-image-3{
    top: -6px;
    right: 0;
  aspect-ratio: 80.5 / 71;
  width: 80.5px;
  }

  
  .about-text {
    font-size: 14px;
    line-height: 1.7;
  }
  .about-text p {
    margin-bottom: 20px;
  }
  .about-heading{
  font-size: 18px;
}

}
.explanation-title {
  font-family: "Acumin Pro", sans-serif;
  font-weight: bold;
  font-size: clamp(30px, 4.65vw, 67px);
  color: white;
  margin: 0 0 35px 0;
  line-height: normal;
}

.explanation-section {
  position: relative;
  background: #3d4e5a;
  width: 100%;
  padding: 117px 0 80px;
}

.explanation-container {
  position: relative;
  max-width: 1070px;
  margin: 0 auto;
  padding: 0 20px;
  padding: 0 35px;
}

.explanation-intro {
  /* margin-bottom: 60px; */
}
.explanation-intro p {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: white;
  line-height: 1.5;
  max-width: 100%;
  margin: 0 auto;
}
.explanation-intro p + p {
  margin-top: 24px;
}

.explanation-content {
  position: relative;
  left: 200px;
  width: calc(100% - 200px);
}

.explanation-item {
  display: flex;
  gap: 70px;
  align-items: center;
  margin-bottom: 65px;
}
.explanation-item:last-child {
  margin-bottom: 0;
}
.explanation-item.reverse {
  flex-direction: row-reverse;
  justify-content: space-between;
}

.explanation-image {
  flex-shrink: 0;
  width: 322px;
aspect-ratio: 200 / 202;
}
.explanation-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.explanation-text {
  flex: 1;
}
.explanation-text p {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: white;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1000px) {
  .explanation-intro {
    margin-bottom: 60px;
  }
  .explanation-intro p {
    font-size: 14px;
  }
  .explanation-content {
    left: 0;
    width: 100%;
  }
  .explanation-item {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 80px;
    align-items: center;
  }
  .explanation-item.reverse {
    flex-direction: column;
  }
  .explanation-image {
    width: 220px;
    max-width: 305px;
  }
  .explanation-text p {
    font-size: 14px;
    text-align: left;
  }
}
@media (max-width: 1024px) {
  .explanation-content {
    left: 0;
    width: 100%;
  }
  .explanation-item {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .explanation-item.reverse {
    flex-direction: column;
  }
  .explanation-image {
    width: 100%;
    max-width: 380px;
  }
  .explanation-text {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .explanation-section {
    padding: 60px 0;
  }
  .explanation-intro {
    margin-bottom: 60px;
  }
  .explanation-intro p {
    font-size: 14px;
  }
  .explanation-item {
    gap: 20px;
  }
  .explanation-text p {
    font-size: 14px;
  }
}

.company-section {
background-color: #FFF;
display: grid;
place-items: center;
padding: 123px 20px;
}

.company-container {
  max-width: 600px;
display: grid;
gap: 32px;
}

.company-title {
  color: #131313;
text-align: center;
font-family: "Acumin Pro";
font-size: 64px;
font-style: normal;
font-weight: 700;
line-height: normal;
align-self: stretch;
}

.company-table {

}

.company-item {
  display: grid;
  grid-template-columns: 200px 400px;
  border-top: 1px solid #E1E1E1;
}

.company-item:last-child {
border-bottom: 1px solid #E1E1E1;
}

.company-label {
  color: #333;
font-family: "Acumin Pro";
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 150%; /* 27px */
padding: 10px 30px;

}

.company-text {
  color: #333;
font-family: "Acumin Pro";
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 27px */
padding: 10px 30px;
}
@media (max-width: 768px) {
  .company-section {
    padding: 72px 35px;
  }
  .company-container {
    width: 100%;
    max-width: 500px;
    gap: 29px;
    place-self: center;
  }
  .company-item{
    grid-template-columns: 62px 1fr;
  }
  .company-title {
    font-size: 40px;
  }
  .company-label {
    font-size: 14px;
    padding: 4.5px 10px;
  }
  .company-text {
 padding: 4.5px 10px;
     font-size: 14px;
  }
}



.contact-section {
  position: relative;
  background: white;
  width: 100%;
  padding: 123px 0 80px;
}

.contact-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  margin-left: 300px;
  padding: 0 20px;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
}

.contact-title {
  font-family: "Acumin Pro", sans-serif;
  font-weight: bold;
  font-size: 64px;
  color: #131313;
  margin: 0;
  line-height: normal;
}

.contact-text-cta {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  width: 100%;
}

.contact-description p {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #131313;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.contact-cta {
  display: flex;
  justify-content: center;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #01adbb;
  color: white;
  text-decoration: none;
  padding: 10px 30px 5px 30px;
  font-family: "Acumin Pro", sans-serif;
  font-weight: bold;
  font-size: 24px;
  line-height: normal;
  white-space: nowrap;
  transition: background 0.3s ease;
}
.contact-btn:hover {
  background: #008a96;
}

@media (max-width: 1024px) {
  .contact-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
  }
}
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  .contact-container {
    padding: 0 16px;
  }
  .contact-title {
    font-size: 48px;
  }
  .contact-description p {
    font-size: 14px;
  }
  .contact-btn {
    font-size: 20px;
    padding: 8px 24px 4px 24px;
  }
}
.about-page .page-hero {
  background: linear-gradient(135deg, #303e49 0%, #2c3e50 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}
.about-page .page-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.about-page .page-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: bold;
}
.about-page .page-hero .lead {
  font-size: 20px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}
.about-page .about-content {
  padding: 80px 0;
}
.about-page .about-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.about-page .about-content .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .about-page .about-content .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.about-page .about-content .content-grid.reverse .content-text {
  order: 2;
}
.about-page .about-content .content-grid.reverse .content-image {
  order: 1;
}
@media (max-width: 768px) {
  .about-page .about-content .content-grid.reverse .content-text,
  .about-page .about-content .content-grid.reverse .content-image {
    order: initial;
  }
}
.about-page .about-content .content-text h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #303e49;
}
.about-page .about-content .content-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}
.about-page .about-content .content-text .highlight {
  color: #01adbb;
  font-weight: 600;
}
.about-page .about-content .content-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about-page .team-section {
  background: #f8f9fa;
  padding: 80px 0;
}
.about-page .team-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.about-page .team-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #303e49;
}
.about-page .team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.about-page .team-section .team-member {
  background: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.about-page .team-section .team-member .member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: #e9ecef;
  overflow: hidden;
}
.about-page .team-section .team-member .member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-page .team-section .team-member h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #303e49;
}
.about-page .team-section .team-member .position {
  color: #01adbb;
  font-weight: 600;
  margin-bottom: 15px;
}
.about-page .team-section .team-member p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}
.about-page .values-section {
  padding: 80px 0;
}
.about-page .values-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.about-page .values-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #303e49;
}
.about-page .values-section .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.about-page .values-section .value-item {
  text-align: center;
}
.about-page .values-section .value-item .value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: #01adbb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
}
.about-page .values-section .value-item h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #303e49;
}
.about-page .values-section .value-item p {
  color: #666;
  line-height: 1.7;
  font-size: 16px;
}

.contact-section {
  background: #f0f2f4;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 123px 0;
}

.contact-container {
  width: 100%;
  max-width: 1400px;
  padding: 0 300px;
  margin: 0 auto;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: flex-start;
  width: 800px;
  margin: 0 auto;
}

.contact-title {
  font-family: "Acumin Pro", sans-serif;
  font-weight: bold;
  font-size: 64px;
  line-height: normal;
  color: #131313;
  text-align: center;
  margin: 0;
  width: 100%;
}

.contact-text-cta {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.contact-description {
  width: 100%;
}
.contact-description p {
  text-align: center;
  font-family: "Acumin Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #131313;
  margin: 0;
}

.contact-cta {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-btn {
  background: #01adbb;
  color: white;
  font-family: "Acumin Pro", sans-serif;
  font-weight: bold;
  font-size: 24px;
  line-height: normal;
  text-decoration: none;
  padding: 10px 30px 5px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}
.contact-btn:hover {
  background: #019aa6;
  color: white;
}
.contact-btn:focus {
  outline: 2px solid #01adbb;
  outline-offset: 2px;
}

@media (max-width: 1200px) {
  .contact-container {
    padding: 0 150px;
  }
  .contact-content {
    width: 100%;
    max-width: 800px;
  }
}
@media (max-width: 1024px) {
  .contact-section {
    padding: 80px 0;
  }
  .contact-container {
    padding: 0 100px;
  }
  .contact-title {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  .contact-container {
    padding: 0 50px;
  }
  .contact-title {
    font-size: 48px;
  }
  .contact-text-cta {
    gap: 40px;
  }
  .contact-btn {
    font-size: 20px;
    padding: 8px 25px 4px 25px;
  }
}
@media (max-width: 480px) {
  .contact-section {
    padding: 40px 0;
  }
  .contact-container {
    padding: 0 20px;
  }
  .contact-content {
    gap: 12px;
  }
  .contact-title {
    font-size: 36px;
  }
  .contact-text-cta {
    gap: 30px;
  }
  .contact-description p {
    font-size: 14px;
  }
  .contact-btn {
    font-size: 18px;
    padding: 6px 20px 3px 20px;
  }
}
.security-hero {
  position: relative;
  width: 100vw;
  height: 296px;
  background: #707070;
  overflow: hidden;
}

.security-hero-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.security-hero-background img {
  position: absolute;
  bottom: -0.5px;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.security-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.security-bg-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  z-index: 1;
}

.security-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}

.security-title {
  font-family: "Acumin Pro", sans-serif;
  font-weight: bold;
  font-size: 72px;
  line-height: normal;
  color: white;
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 1400px) {
  .security-hero-background {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .security-hero {
    height: 160px;
  }
  .security-title {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  .security-title {
    font-size: 48px;
  }
}
@media (max-width: 480px) {
  .security-title {
    font-size: 40px;
  }
}
.product-detail {
  background: white;
  padding: 100px 0;
}
.product-detail:nth-child(even) {
  background: #fff;
}
.product-detail:nth-child(odd) {
  background: #f0f2f4;
}

.product-images {
  display: flex;
  flex-direction: column;
  gap: 28.8px;
  flex-shrink: 0;
}

.main-image {
  position: relative;
}

.image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: white;
  border: 2px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.product-main-img {
  width: 243px;
  height: 251px;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.main-image-swiper .swiper-button-next,
.main-image-swiper .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  margin-top: 0;
  color: transparent;
  z-index: 10;
  cursor: pointer;
  background: none;
  border: none;
}
.main-image-swiper .swiper-button-next::after,
.main-image-swiper .swiper-button-prev::after {
  display: none;
}
.main-image-swiper .swiper-button-next img,
.main-image-swiper .swiper-button-prev img {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.main-image-swiper .swiper-button-next {
  right: 12px;
}

.main-image-swiper .swiper-button-prev {
  left: 12px;
}
.main-image-swiper .swiper-button-prev img {
  transform: rotate(180deg);
}

.main-image-swiper {
  position: relative;
  overflow: hidden;
}
.main-image-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  transition-property: transform;
}
.main-image-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-image-swiper .swiper-slide .image-frame {
  width: 100%;
  height: 100%;
  margin: 0;
}
.main-image-swiper.swiper-horizontal .swiper-wrapper {
  flex-direction: row;
}
.main-image-swiper.swiper-fade .swiper-slide {
  position: absolute;
  top: 0;
  left: 0;
}

.thumbnail-images {
  display: flex;
  gap: 18px;
  align-items: center;
  width: 100%;
}

.thumbnail {
  position: relative;
  width: 99px;
  height: 66px;
  background: white;
  border: 2px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.thumbnail.active {
  border-color: #01adbb;
}

.thumbnail-img {
  width: 53.844px;
  height: 55.602px;
  object-fit: cover;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-name {
  border-bottom: 2px solid #d9d9d9;
  padding-bottom: 3px;
}
.product-name h2 {
  font-family: "Acumin Pro", sans-serif;
  margin: 0;
  line-height: normal;
  color: #131313;
}
.product-name h2 .product-code {
  font-weight: bold;
  font-size: 32px;
}
.product-name h2 .product-title {
  font-weight: bold;
  font-size: 24px;
}

.product-description {
  width: 510px;
}
.product-description p {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 400;
  color: #131313;
  line-height: 1.5;
  margin-bottom: 0;
}

.product-detail-image {
  width: 100%;
}

.detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: 50.02% 83.65%;
  background-size: 100.04% 148.79%;
}

@media (max-width: 1024px) {
  .main-image {
    width: 100%;
    max-width: 450px;
  }
  .main-image-swiper {
    width: 100%;
    max-width: 450px;
  }
  .product-info {
    text-align: center;
  }
  .product-description {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .product-detail {
    padding: 60px 0;
  }
  .main-image {
    height: 250px;
  }
  .main-image-swiper {
    height: 250px;
  }
  .image-frame {
    width: 100%;
  }
  .product-main-img {
    width: 200px;
    height: 200px;
  }
  .thumbnail-images {
    justify-content: center;
    flex-wrap: wrap;
  }
  .product-name h2 .product-code {
    font-size: 28px;
  }
  .product-name h2 .product-title {
    font-size: 20px;
  }
  .product-description p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .product-images {
    gap: 20px;
  }
  .main-image {
    height: 200px;
  }
  .main-image-swiper {
    height: 200px;
  }
  .image-frame {
    height: auto;
  }
  .product-main-img {
    width: 150px;
    height: 150px;
  }
  .thumbnail {
    width: 70px;
    height: 50px;
  }
  .thumbnail-img {
    width: 40px;
    height: 40px;
  }
  .product-name h2 .product-code {
    font-size: 24px;
  }
  .product-name h2 .product-title {
    font-size: 18px;
  }
}
.security-product-detail {
  background: white;
  padding: 100px 0;
}
.security-product-detail:nth-child(even) {
  background: #fff;
}
.security-product-detail:nth-child(odd) {
  background: #f0f2f4;
}

.security-product-images {
  display: flex;
  flex-direction: column;
  gap: 28.8px;
  width: 450px;
  flex-shrink: 0;
}

.security-main-image {
  position: relative;
  width: 450px;
  height: 300px;
  overflow: hidden;
}

.security-product-main-img {
  width: 60%;
  height: 100%;
  object-fit: contain;
}

.security-main-image-swiper .swiper-button-next,
.security-main-image-swiper .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  margin-top: 0;
  color: transparent;
  z-index: 10;
  cursor: pointer;
  background-image: url("../images/swiper-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border: none;
}
.security-main-image-swiper .swiper-button-next::after,
.security-main-image-swiper .swiper-button-prev::after {
  display: none;
}
.security-main-image-swiper .swiper-button-next.swiper-button-disabled,
.security-main-image-swiper .swiper-button-prev.swiper-button-disabled {
  display: none;
}
.security-main-image-swiper .swiper-button-next img,
.security-main-image-swiper .swiper-button-prev img {
  display: none;
}

.security-main-image-swiper .swiper-button-next {
  right: 12px;
}

.security-main-image-swiper .swiper-button-prev {
  left: 12px;
  transform: translateY(-50%) rotate(180deg);
}

.security-main-image-swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.security-main-image-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  transition-property: transform;
  box-sizing: border-box;
}
.security-main-image-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.security-main-image-swiper .swiper-slide .image-frame {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.security-main-image-swiper.swiper-horizontal .swiper-wrapper {
  flex-direction: row;
}
.security-main-image-swiper.swiper-fade .swiper-slide {
  position: absolute;
  top: 0;
  left: 0;
}

.security-product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.security-product-name {
  border-bottom: 2px solid #d9d9d9;
  padding-bottom: 3px;
}
.security-product-name h2 {
  font-family: "Acumin Pro", sans-serif;
  margin: 0;
  line-height: normal;
  color: #131313;
}
.security-product-name h2 .security-product-code {
  font-weight: bold;
  font-size: 32px;
}
.security-product-name h2 .security-product-title {
  font-weight: bold;
  font-size: 24px;
}

.security-product-description p {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #131313;
  line-height: 1.5;
  margin-bottom: 0;
}
.security-product-description .notice-text {
  font-size: 14px;
}
.security-product-description .notice-text p {
  margin: 0.5em 0; /* 行間調整 */
}

.security-product-detail-image {
  width: 100%;
}

.security-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: 50.02% 83.65%;
  background-size: 100.04% 148.79%;
}

@media (max-width: 1024px) {
  .security-main-image {
    width: 100%;
    max-width: 450px;
  }
  .security-main-image-swiper {
    width: 100%;
    max-width: 450px;
  }
  .security-product-info {
    text-align: center;
    margin-inline: auto;
  }
  .security-product-description {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .security-product-detail {
    padding: 60px 0;
  }
  .security-main-image {
    height: 250px;
  }
  .security-product-name h2 .security-product-code {
    font-size: 28px;
  }
  .security-product-name h2 .security-product-title {
    font-size: 20px;
  }
  .security-product-description p {
    font-size: 14px;
  }
  .security-product-description .notice-text {
    font-size: 12px; /* 14px - 2px */
  }
}
@media (max-width: 500px) {
  .security-main-image-swiper .swiper-button-next,
  .security-main-image-swiper .swiper-button-prev {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 480px) {
  .security-product-images {
    gap: 20px;
  }
  .security-main-image {
    height: 200px;
  }
  .security-product-name h2 .security-product-code {
    font-size: 24px;
  }
  .security-product-name h2 .security-product-title {
    font-size: 18px;
  }
}
.contact-section.contact-even {
  background: #fff !important;
}
.contact-section.contact-odd {
  background: #f0f2f4 !important;
}

.blog-page .page-header {
  background: #303e49;
  color: white;
  padding: 60px 0;
  text-align: center;
}
.blog-page .page-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.blog-page .page-header h1 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: bold;
}
.blog-page .page-header p {
  font-size: 18px;
  opacity: 0.9;
}
.blog-page .blog-content {
  padding: 80px 0;
}
.blog-page .blog-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.blog-page .blog-content .blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}
@media (max-width: 968px) {
  .blog-page .blog-content .blog-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.blog-page .blog-content .posts-section .posts-grid {
  display: grid;
  gap: 40px;
}
.blog-page .blog-content .posts-section .post-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-page .blog-content .posts-section .post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.blog-page .blog-content .posts-section .post-card .post-image {
  height: 250px;
  background: #f8f9fa;
  overflow: hidden;
}
.blog-page .blog-content .posts-section .post-card .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-page .blog-content .posts-section .post-card .post-content {
  padding: 30px;
}
.blog-page .blog-content .posts-section .post-card .post-content .post-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
}
.blog-page .blog-content .posts-section .post-card .post-content .post-meta .category {
  background: #01adbb;
  color: white;
  padding: 4px 8px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 12px;
}
.blog-page .blog-content .posts-section .post-card .post-content .post-meta .category:hover {
  background: #008a96;
}
.blog-page .blog-content .posts-section .post-card .post-content .post-meta .date {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-page .blog-content .posts-section .post-card .post-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #303e49;
}
.blog-page .blog-content .posts-section .post-card .post-content h2 a {
  color: inherit;
  text-decoration: none;
}
.blog-page .blog-content .posts-section .post-card .post-content h2 a:hover {
  color: #01adbb;
}
.blog-page .blog-content .posts-section .post-card .post-content .excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.blog-page .blog-content .posts-section .post-card .post-content .read-more {
  display: inline-block;
  color: #01adbb;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.blog-page .blog-content .posts-section .post-card .post-content .read-more:hover {
  text-decoration: underline;
}
.blog-page .blog-content .posts-section .pagination {
  margin-top: 60px;
  text-align: center;
}
.blog-page .blog-content .posts-section .pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.blog-page .blog-content .posts-section .pagination .nav-links a,
.blog-page .blog-content .posts-section .pagination .nav-links span {
  display: inline-block;
  padding: 10px 15px;
  border: 1px solid #e9ecef;
  text-decoration: none;
  color: #303e49;
  border-radius: 5px;
}
.blog-page .blog-content .posts-section .pagination .nav-links a:hover,
.blog-page .blog-content .posts-section .pagination .nav-links span:hover {
  background: #01adbb;
  color: white;
  border-color: #01adbb;
}
.blog-page .blog-content .posts-section .pagination .nav-links a.current,
.blog-page .blog-content .posts-section .pagination .nav-links span.current {
  background: #01adbb;
  color: white;
  border-color: #01adbb;
}
.blog-page .blog-content .sidebar .widget {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.blog-page .blog-content .sidebar .widget h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #303e49;
  padding-bottom: 10px;
  border-bottom: 2px solid #01adbb;
}
.blog-page .blog-content .sidebar .widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-page .blog-content .sidebar .widget ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9ecef;
}
.blog-page .blog-content .sidebar .widget ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.blog-page .blog-content .sidebar .widget ul li a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-page .blog-content .sidebar .widget ul li a:hover {
  color: #01adbb;
}
.blog-page .blog-content .sidebar .widget .search-form {
  display: flex;
  gap: 10px;
}
.blog-page .blog-content .sidebar .widget .search-form input[type=search] {
  flex: 1;
  padding: 10px;
  border: 1px solid #e9ecef;
  border-radius: 5px;
}
.blog-page .blog-content .sidebar .widget .search-form input[type=search]:focus {
  outline: none;
  border-color: #01adbb;
}
.blog-page .blog-content .sidebar .widget .search-form button {
  background: #01adbb;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}
.blog-page .blog-content .sidebar .widget .search-form button:hover {
  background: #008a96;
}
.blog-page .blog-content .sidebar .widget .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-page .blog-content .sidebar .widget .tag-cloud a {
  background: white;
  color: #555;
  padding: 5px 10px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 12px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}
.blog-page .blog-content .sidebar .widget .tag-cloud a:hover {
  background: #01adbb;
  color: white;
  border-color: #01adbb;
}

.single-post .post-header {
  background: #303e49;
  color: white;
  padding: 60px 0;
}
.single-post .post-header .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.single-post .post-header .post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  opacity: 0.8;
}
.single-post .post-header .post-meta .category {
  background: #01adbb;
  padding: 4px 8px;
  border-radius: 3px;
}
.single-post .post-header h1 {
  font-size: 36px;
  line-height: 1.3;
}
.single-post .post-content {
  padding: 60px 0;
}
.single-post .post-content .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.single-post .post-content .content {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}
.single-post .post-content .content h2,
.single-post .post-content .content h3,
.single-post .post-content .content h4,
.single-post .post-content .content h5,
.single-post .post-content .content h6 {
  color: #303e49;
  margin-top: 40px;
  margin-bottom: 20px;
}
.single-post .post-content .content p {
  margin-bottom: 20px;
}
.single-post .post-content .content img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin: 20px 0;
}
.single-post .post-content .content blockquote {
  border-left: 4px solid #01adbb;
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #666;
}
.single-post .post-content .content code {
  background: #f8f9fa;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: "Courier New", monospace;
}
.single-post .post-content .content pre {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 5px;
  overflow-x: auto;
  margin: 20px 0;
}
.single-post .post-content .content pre code {
  background: none;
  padding: 0;
}
.single-post .post-content .notice-text {
  font-size: 14px;
}
.single-post .post-content .notice-text p {
  font-size: 14px;
  margin: 0.5em 0; /* 行間調整 */
}
.single-post .post-content .post-tags {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}
.single-post .post-content .post-tags h4 {
  margin-bottom: 15px;
  color: #303e49;
}
.single-post .post-content .post-tags .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.single-post .post-content .post-tags .tag-list a {
  background: #f8f9fa;
  color: #555;
  padding: 5px 10px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.single-post .post-content .post-tags .tag-list a:hover {
  background: #01adbb;
  color: white;
}

.accessories-hero {
  position: relative;
  width: 100vw;
  height: 296px;
  background: #707070;
  overflow: hidden;
}

.accessories-hero-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.accessories-hero-background img {
  position: absolute;
  bottom: -0.5px;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.accessories-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.accessories-bg-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  z-index: 1;
}

.accessories-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}

.accessories-title {
  font-family: "Acumin Pro", sans-serif;
  font-weight: bold;
  font-size: 72px;
  line-height: normal;
  color: white;
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 1400px) {
  .accessories-hero-background {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .accessories-hero {
    height: 160px;
  }
  .accessories-title {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  .accessories-title {
    font-size: 48px;
  }
}
@media (max-width: 480px) {
  .accessories-title {
    font-size: 40px;
  }
}
.product-detail {
  background: white;
  padding: 100px 0;
}
.product-detail:nth-child(even) {
  background: #fff;
}
.product-detail:nth-child(odd) {
  background: #f0f2f4;
}

.product-images {
  display: flex;
  flex-direction: column;
  gap: 28.8px;
  flex-shrink: 0;
}

.main-image {
  position: relative;
}

.image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: white;
  border: 2px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.product-main-img {
  width: 243px;
  height: 251px;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.main-image-swiper .swiper-button-next,
.main-image-swiper .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  margin-top: 0;
  color: transparent;
  z-index: 10;
  cursor: pointer;
  background: none;
  border: none;
}
.main-image-swiper .swiper-button-next::after,
.main-image-swiper .swiper-button-prev::after {
  display: none;
}
.main-image-swiper .swiper-button-next img,
.main-image-swiper .swiper-button-prev img {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.main-image-swiper .swiper-button-next {
  right: 12px;
}

.main-image-swiper .swiper-button-prev {
  left: 12px;
}
.main-image-swiper .swiper-button-prev img {
  transform: rotate(180deg);
}

.main-image-swiper {
  position: relative;
  overflow: hidden;
}
.main-image-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  transition-property: transform;
}
.main-image-swiper .swiper-slide {
  flex-shrink: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-image-swiper .swiper-slide .image-frame {
  width: 100%;
  height: 100%;
  margin: 0;
}
.main-image-swiper.swiper-horizontal .swiper-wrapper {
  flex-direction: row;
}
.main-image-swiper.swiper-fade .swiper-slide {
  position: absolute;
  top: 0;
  left: 0;
}

.thumbnail-images {
  display: flex;
  gap: 18px;
  align-items: center;
  width: 100%;
}

.thumbnail {
  position: relative;
  width: 99px;
  height: 66px;
  background: white;
  border: 2px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.thumbnail.active {
  border-color: #01adbb;
}

.thumbnail-img {
  width: 53.844px;
  height: 55.602px;
  object-fit: cover;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-name {
  border-bottom: 2px solid #d9d9d9;
  padding-bottom: 3px;
}
.product-name h2 {
  font-family: "Acumin Pro", sans-serif;
  margin: 0;
  line-height: normal;
  color: #131313;
}
.product-name h2 .product-code {
  font-weight: bold;
  font-size: 32px;
}
.product-name h2 .product-title {
  font-weight: bold;
  font-size: 24px;
}

.product-description {
  width: 510px;
}
.product-description p {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 400;
  color: #131313;
  line-height: 1.5;
  margin-bottom: 0;
}
.product-description .notice-text {
  font-size: 14px;
}
.product-description .notice-text p {
  margin: 0.5em 0; /* 行間調整 */
}

.product-detail-image {
  width: 100%;
}

.detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: 50.02% 83.65%;
  background-size: 100.04% 148.79%;
}

@media (max-width: 1024px) {
  .main-image {
    width: 100%;
    max-width: 450px;
  }
  .main-image-swiper {
    width: 100%;
    max-width: 450px;
  }
  .product-info {
    text-align: center;
  }
  .product-description {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .product-detail {
    padding: 60px 0;
  }
  .main-image {
    height: 250px;
  }
  .main-image-swiper {
    height: 250px;
  }
  .image-frame {
    width: 100%;
  }
  .product-main-img {
    width: 200px;
    height: 200px;
  }
  .thumbnail-images {
    justify-content: center;
    flex-wrap: wrap;
  }
  .product-name h2 .product-code {
    font-size: 28px;
  }
  .product-name h2 .product-title {
    font-size: 20px;
  }
  .product-description p {
    font-size: 14px;
  }
  .product-description .notice-text {
    font-size: 12px; /* 14px - 2px */
  }
}
@media (max-width: 480px) {
  .product-images {
    gap: 20px;
  }
  .main-image {
    height: 200px;
  }
  .main-image-swiper {
    height: 200px;
  }
  .product-main-img {
    width: 150px;
    height: 150px;
  }
  .thumbnail {
    width: 70px;
    height: 50px;
  }
  .thumbnail-img {
    width: 40px;
    height: 40px;
  }
  .product-name h2 .product-code {
    font-size: 24px;
  }
  .product-name h2 .product-title {
    font-size: 18px;
  }
}
.accessories-product-detail {
  background: white;
  padding: 100px 0;
}
.accessories-product-detail:nth-child(even) {
  background: #fff;
}
.accessories-product-detail:nth-child(odd) {
  background: #f0f2f4;
}

.accessories-product-images {
  display: flex;
  flex-direction: column;
  gap: 28.8px;
  flex-shrink: 0;
}

.accessories-main-image {
  position: relative;
  overflow: hidden;
}

.accessories-product-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.accessories-main-image-swiper .swiper-button-next,
.accessories-main-image-swiper .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  margin-top: 0;
  color: transparent;
  z-index: 10;
  cursor: pointer;
  background: none;
  border: none;
}
.accessories-main-image-swiper .swiper-button-next::after,
.accessories-main-image-swiper .swiper-button-prev::after {
  display: none;
}
.accessories-main-image-swiper .swiper-button-next img,
.accessories-main-image-swiper .swiper-button-prev img {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.accessories-main-image-swiper .swiper-button-next {
  right: 12px;
}

.accessories-main-image-swiper .swiper-button-prev {
  left: 12px;
}
.accessories-main-image-swiper .swiper-button-prev img {
  transform: rotate(180deg);
}

.accessories-main-image-swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.accessories-main-image-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  transition-property: transform;
  box-sizing: border-box;
}
.accessories-main-image-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.accessories-main-image-swiper .swiper-slide .image-frame {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.accessories-main-image-swiper.swiper-horizontal .swiper-wrapper {
  flex-direction: row;
}
.accessories-main-image-swiper.swiper-fade .swiper-slide {
  position: absolute;
  top: 0;
  left: 0;
}

.accessories-product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.accessories-product-name {
  border-bottom: 2px solid #d9d9d9;
  padding-bottom: 3px;
}
.accessories-product-name h2 {
  font-family: "Acumin Pro", sans-serif;
  margin: 0;
  line-height: normal;
  color: #131313;
}
.accessories-product-name h2 .accessories-product-code {
  font-weight: bold;
  font-size: 32px;
}
.accessories-product-name h2 .accessories-product-title {
  font-weight: bold;
  font-size: 24px;
}

.accessories-product-description {
  width: 510px;
}
.accessories-product-description p {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #131313;
  line-height: 1.5;
  margin-bottom: 0;
}

.accessories-product-detail-image {
  width: 100%;
}

.accessories-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: 50.02% 83.65%;
  background-size: 100.04% 148.79%;
}

@media (max-width: 1024px) {
  .accessories-product-content {
    flex-direction: column;
    gap: 60px;
  }
  .accessories-product-images {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
  .accessories-main-image {
    width: 100%;
    max-width: 450px;
  }
  .accessories-main-image-swiper {
    width: 100%;
    max-width: 450px;
  }
  .accessories-product-info {
    text-align: center;
    margin-inline: auto;
  }
  .accessories-product-description {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .accessories-product-detail {
    padding: 60px 0;
  }
  .accessories-main-image {
    height: 250px;
  }
  .accessories-product-name h2 .accessories-product-code {
    font-size: 28px;
  }
  .accessories-product-name h2 .accessories-product-title {
    font-size: 20px;
  }
  .accessories-product-description p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .accessories-product-images {
    gap: 20px;
  }
  .accessories-main-image {
    height: 200px;
  }
  .accessories-product-name h2 .accessories-product-code {
    font-size: 24px;
  }
  .accessories-product-name h2 .accessories-product-title {
    font-size: 18px;
  }
}
.garage-hero {
  position: relative;
  width: 100vw;
  height: 296px;
  background: #707070;
  overflow: hidden;
}

.garage-hero-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.garage-hero-background img {
  position: absolute;
  bottom: -0.5px;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.garage-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.garage-bg-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  z-index: 1;
}

.garage-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}

.garage-title {
  font-family: "Acumin Pro", sans-serif;
  font-weight: bold;
  font-size: 72px;
  line-height: normal;
  color: white;
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 1400px) {
  .garage-hero-background {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .garage-hero {
    height: 160px;
  }
  .garage-title {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  .garage-title {
    font-size: 48px;
  }
}
@media (max-width: 480px) {
  .garage-title {
    font-size: 40px;
  }
}
.garage-product-detail {
  background: white;
  padding: 100px 0;
}
.garage-product-detail:nth-child(even) {
  background: #fff;
}
.garage-product-detail:nth-child(odd) {
  background: #f0f2f4;
}

.garage-product-images {
  display: flex;
  flex-direction: column;
  gap: 28.8px;
  width: 450px;
  flex-shrink: 0;
}

.garage-main-image {
  position: relative;
  width: 450px;
  height: 300px;
  overflow: hidden;
}

.garage-product-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.garage-main-image-swiper .swiper-button-next,
.garage-main-image-swiper .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  margin-top: 0;
  color: transparent;
  z-index: 10;
  cursor: pointer;
  background-image: url("../images/swiper-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border: none;
}
.garage-main-image-swiper .swiper-button-next::after,
.garage-main-image-swiper .swiper-button-prev::after {
  display: none;
}
.garage-main-image-swiper .swiper-button-next.swiper-button-disabled,
.garage-main-image-swiper .swiper-button-prev.swiper-button-disabled {
  display: none;
}
.garage-main-image-swiper .swiper-button-next img,
.garage-main-image-swiper .swiper-button-prev img {
  display: none;
}

.garage-main-image-swiper .swiper-button-next {
  right: 12px;
}

.garage-main-image-swiper .swiper-button-prev {
  left: 12px;
  transform: translateY(-50%) rotate(180deg);
}

.garage-main-image-swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.garage-main-image-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  transition-property: transform;
  box-sizing: border-box;
}
.garage-main-image-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.garage-main-image-swiper .swiper-slide .image-frame {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.garage-main-image-swiper.swiper-horizontal .swiper-wrapper {
  flex-direction: row;
}
.garage-main-image-swiper.swiper-fade .swiper-slide {
  position: absolute;
  top: 0;
  left: 0;
}

.garage-product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.garage-product-name {
  border-bottom: 2px solid #d9d9d9;
  padding-bottom: 3px;
}
.garage-product-name h2 {
  font-family: "Acumin Pro", sans-serif;
  margin: 0;
  line-height: normal;
  color: #131313;
}
.garage-product-name h2 .garage-product-code {
  font-weight: bold;
  font-size: 32px;
}
.garage-product-name h2 .garage-product-title {
  font-weight: bold;
  font-size: 24px;
}

.garage-product-description p {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #131313;
  line-height: 1.5;
  margin-bottom: 0;
}
.garage-product-description .notice-text {
  font-size: 14px;
}
.garage-product-description .notice-text p {
  margin: 0.5em 0; /* 行間調整 */
}

.garage-product-detail-image {
  width: 100%;
}

.garage-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: 50.02% 83.65%;
  background-size: 100.04% 148.79%;
}

@media (max-width: 1024px) {
  .garage-main-image {
    width: 100%;
    max-width: 450px;
  }
  .garage-main-image-swiper {
    width: 100%;
    max-width: 450px;
  }
  .garage-product-info {
    text-align: center;
    margin-inline: auto;
  }
  .garage-product-description {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .garage-product-detail {
    padding: 60px 0;
  }
  .garage-main-image {
    height: 250px;
  }
  .garage-product-name h2 .garage-product-code {
    font-size: 28px;
  }
  .garage-product-name h2 .garage-product-title {
    font-size: 20px;
  }
  .garage-product-description p {
    font-size: 14px;
  }
  .garage-product-description .notice-text {
    font-size: 12px; /* 14px - 2px */
  }
}
@media (max-width: 480px) {
  .garage-product-images {
    gap: 20px;
  }
  .garage-main-image {
    height: 200px;
  }
  .garage-product-name h2 .garage-product-code {
    font-size: 24px;
  }
  .garage-product-name h2 .garage-product-title {
    font-size: 18px;
  }
}
.product-images,
.garage-product-images,
.accessories-product-images,
.security-product-images {
  display: flex;
  flex-direction: column;
  gap: 28.8px;
  width: 100%;
  max-width: 450px;
  min-width: 300px;
  flex-shrink: 0;
  height: auto;
}

.main-image,
.garage-main-image,
.accessories-main-image,
.security-main-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  min-height: 200px;
}

.product-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-image-swiper .swiper-button-next,
.main-image-swiper .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  margin-top: 0;
  color: transparent;
  z-index: 10;
  cursor: pointer;
  background-image: url("../images/swiper-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border: none;
}
.main-image-swiper .swiper-button-next::after,
.main-image-swiper .swiper-button-prev::after {
  display: none;
}
.main-image-swiper .swiper-button-next.swiper-button-disabled,
.main-image-swiper .swiper-button-prev.swiper-button-disabled {
  display: none;
}
.main-image-swiper .swiper-button-next img,
.main-image-swiper .swiper-button-prev img {
  display: none;
}

.main-image-swiper .swiper-button-next {
  right: 12px;
}

.main-image-swiper .swiper-button-prev {
  left: 12px;
  transform: translateY(-50%) rotate(180deg);
}

.main-image-swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.main-image-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  transition-property: transform;
  box-sizing: border-box;
}
.main-image-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.main-image-swiper .swiper-slide .image-frame {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-image-swiper.swiper-horizontal .swiper-wrapper {
  flex-direction: row;
}
.main-image-swiper.swiper-fade .swiper-slide {
  position: absolute;
  top: 0;
  left: 0;
}

.thumb-image-swiper,
.garage-thumb-image-swiper,
.accessories-thumb-image-swiper,
.security-thumb-image-swiper {
  width: 100%;
  max-width: 450px;
  height: auto;
  min-height: 60px;
}
.thumb-image-swiper .swiper-wrapper,
.garage-thumb-image-swiper .swiper-wrapper,
.accessories-thumb-image-swiper .swiper-wrapper,
.security-thumb-image-swiper .swiper-wrapper {
  display: flex;
  height: auto;
  align-items: stretch;
}
.thumb-image-swiper .swiper-slide--thumb,
.garage-thumb-image-swiper .swiper-slide--thumb,
.accessories-thumb-image-swiper .swiper-slide--thumb,
.security-thumb-image-swiper .swiper-slide--thumb {
  width: calc((100% - 18px) / 4);
  aspect-ratio: 100/67;
  flex-shrink: 0;
  height: auto;
  margin-right: 6px;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  box-sizing: border-box;
}
.thumb-image-swiper .swiper-slide--thumb:last-child,
.garage-thumb-image-swiper .swiper-slide--thumb:last-child,
.accessories-thumb-image-swiper .swiper-slide--thumb:last-child,
.security-thumb-image-swiper .swiper-slide--thumb:last-child {
  margin-right: 0;
}
.thumb-image-swiper .swiper-slide--thumb.swiper-slide-thumb-active,
.garage-thumb-image-swiper .swiper-slide--thumb.swiper-slide-thumb-active,
.accessories-thumb-image-swiper .swiper-slide--thumb.swiper-slide-thumb-active,
.security-thumb-image-swiper .swiper-slide--thumb.swiper-slide-thumb-active {
  border-color: #01adbb;
}
.thumb-image-swiper .swiper-slide--thumb .image-frame,
.garage-thumb-image-swiper .swiper-slide--thumb .image-frame,
.accessories-thumb-image-swiper .swiper-slide--thumb .image-frame,
.security-thumb-image-swiper .swiper-slide--thumb .image-frame {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.thumb-image-swiper .swiper-slide--thumb .thumb-img,
.garage-thumb-image-swiper .swiper-slide--thumb .thumb-img,
.accessories-thumb-image-swiper .swiper-slide--thumb .thumb-img,
.security-thumb-image-swiper .swiper-slide--thumb .thumb-img {
  width: 70%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.product-container,
.garage-product-container,
.accessories-product-container,
.security-product-container {
  display: grid !important;
  grid-template-columns: minmax(300px, 450px) 1fr !important;
  grid-template-rows: auto 1fr auto !important;
  grid-template-areas: "images name" "images description" "detail detail" !important;
  gap: 60px clamp(20px, 4vw, 40px) !important;
  align-items: start !important;
  max-width: 1000px;
  margin: 0 auto !important;
  padding: 0 clamp(16px, 2vw, 20px) !important;
  flex-direction: unset !important;
}

.product-images,
.garage-product-images,
.accessories-product-images,
.security-product-images {
  grid-area: images;
}

.product-name,
.garage-product-name,
.accessories-product-name,
.security-product-name {
  grid-area: name;
}

.product-description,
.garage-product-description,
.accessories-product-description,
.security-product-description {
  grid-area: description;
}

.product-info,
.garage-product-info,
.accessories-product-info,
.security-product-info {
  display: contents;
}

.product-detail-image,
.garage-product-detail-image,
.accessories-product-detail-image,
.security-product-detail-image {
  grid-area: detail;
}

.product-content,
.garage-product-content,
.accessories-product-content,
.security-product-content {
  display: contents;
}

@media (min-width: 1025px) {
  body .product-container,
  body .garage-product-container,
  body .accessories-product-container,
  body .security-product-container {
    display: grid !important;
    grid-template-columns: minmax(300px, 450px) 1fr !important;
    grid-template-rows: auto 1fr auto !important;
    grid-template-areas: "images name" "images description" "detail detail" !important;
    gap: 60px clamp(20px, 4vw, 40px) !important;
    flex-direction: unset !important;
    align-items: start !important;
  }
  .product-name,
  .garage-product-name,
  .accessories-product-name,
  .security-product-name {
    align-self: start;
    margin-bottom: 32px;
  }
  .product-description,
  .garage-product-description,
  .accessories-product-description,
  .security-product-description {
    align-self: start;
    margin-top: -70px;
  }
}
@media (max-width: 1024px) {
  body .product-container,
  body .garage-product-container,
  body .accessories-product-container,
  body .security-product-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas: "name" "images" "description" "detail" !important;
    gap: 60px !important;
    flex-direction: unset !important;
    max-width: 500px;
  }
  .product-name,
  .garage-product-name,
  .accessories-product-name,
  .security-product-name {
    margin-bottom: 0;
  }
  .product-images,
  .garage-product-images,
  .accessories-product-images,
  .security-product-images {
    justify-self: center;
  }
  .product-name,
  .garage-product-name,
  .accessories-product-name,
  .security-product-name,
  .product-description,
  .garage-product-description,
  .accessories-product-description,
  .security-product-description {
    border-bottom: none;
    margin-bottom: -40px;
  }
  .product-images,
  .garage-product-images,
  .accessories-product-images,
  .security-product-images {
    width: 100%;
    max-width: 450px;
    height: auto;
  }
  .main-image,
  .garage-main-image,
  .accessories-main-image,
  .security-main-image {
    width: 100%;
    max-width: 450px;
  }
  .main-image-swiper,
  .garage-main-image-swiper,
  .accessories-main-image-swiper,
  .security-main-image-swiper {
    width: 100%;
    max-width: 450px;
  }
  .product-description,
  .garage-product-description,
  .accessories-product-description,
  .security-product-description {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .product-detail,
  .garage-product-detail,
  .accessories-product-detail,
  .security-product-detail {
    padding: 60px 0;
  }
  .product-container,
  .garage-product-container,
  .accessories-product-container,
  .security-product-container {
    gap: 60px;
    padding: 0 16px;
  }
  .product-name h2 .product-code,
  .product-name h2 .garage-product-code,
  .product-name h2 .accessories-product-code,
  .product-name h2 .security-product-code,
  .garage-product-name h2 .product-code,
  .garage-product-name h2 .garage-product-code,
  .garage-product-name h2 .accessories-product-code,
  .garage-product-name h2 .security-product-code,
  .accessories-product-name h2 .product-code,
  .accessories-product-name h2 .garage-product-code,
  .accessories-product-name h2 .accessories-product-code,
  .accessories-product-name h2 .security-product-code,
  .security-product-name h2 .product-code,
  .security-product-name h2 .garage-product-code,
  .security-product-name h2 .accessories-product-code,
  .security-product-name h2 .security-product-code {
    font-size: 28px;
  }
  .product-name h2 .product-title,
  .product-name h2 .garage-product-title,
  .product-name h2 .accessories-product-title,
  .product-name h2 .security-product-title,
  .garage-product-name h2 .product-title,
  .garage-product-name h2 .garage-product-title,
  .garage-product-name h2 .accessories-product-title,
  .garage-product-name h2 .security-product-title,
  .accessories-product-name h2 .product-title,
  .accessories-product-name h2 .garage-product-title,
  .accessories-product-name h2 .accessories-product-title,
  .accessories-product-name h2 .security-product-title,
  .security-product-name h2 .product-title,
  .security-product-name h2 .garage-product-title,
  .security-product-name h2 .accessories-product-title,
  .security-product-name h2 .security-product-title {
    font-size: 20px;
  }
  .product-description p,
  .garage-product-description p,
  .accessories-product-description p,
  .security-product-description p {
    font-size: 14px;
  }
  .product-detail-image,
  .garage-product-detail-image,
  .accessories-product-detail-image,
  .security-product-detail-image {
    aspect-ratio: 305/107;
  }
}
@media (max-width: 480px) {
  .product-images,
  .garage-product-images,
  .accessories-product-images,
  .security-product-images {
    gap: 20px;
    height: auto;
  }
  .product-name h2 .product-code,
  .product-name h2 .garage-product-code,
  .product-name h2 .accessories-product-code,
  .product-name h2 .security-product-code,
  .garage-product-name h2 .product-code,
  .garage-product-name h2 .garage-product-code,
  .garage-product-name h2 .accessories-product-code,
  .garage-product-name h2 .security-product-code,
  .accessories-product-name h2 .product-code,
  .accessories-product-name h2 .garage-product-code,
  .accessories-product-name h2 .accessories-product-code,
  .accessories-product-name h2 .security-product-code,
  .security-product-name h2 .product-code,
  .security-product-name h2 .garage-product-code,
  .security-product-name h2 .accessories-product-code,
  .security-product-name h2 .security-product-code {
    font-size: 24px;
  }
  .product-name h2 .product-title,
  .product-name h2 .garage-product-title,
  .product-name h2 .accessories-product-title,
  .product-name h2 .security-product-title,
  .garage-product-name h2 .product-title,
  .garage-product-name h2 .garage-product-title,
  .garage-product-name h2 .accessories-product-title,
  .garage-product-name h2 .security-product-title,
  .accessories-product-name h2 .product-title,
  .accessories-product-name h2 .garage-product-title,
  .accessories-product-name h2 .accessories-product-title,
  .accessories-product-name h2 .security-product-title,
  .security-product-name h2 .product-title,
  .security-product-name h2 .garage-product-title,
  .security-product-name h2 .accessories-product-title,
  .security-product-name h2 .security-product-title {
    font-size: 18px;
  }
}
.main-image .no-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #f5f5f5;
  color: #999;
  font-size: 1.2rem;
  border-radius: 8px;
}

.others-hero {
  position: relative;
  width: 100vw;
  height: 296px;
  background: #707070;
  overflow: hidden;
}

.others-hero-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.others-hero-background img {
  position: absolute;
  bottom: -0.5px;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.others-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.others-bg-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  z-index: 1;
}

.others-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}

.others-title {
  font-family: "Acumin Pro", sans-serif;
  font-weight: bold;
  font-size: 72px;
  line-height: normal;
  color: white;
  margin: 0;
  white-space: nowrap;
}

.others-overview {
  position: relative;
  background: #303e49;
  width: 100%;
  height: 296px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.others-overview-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.others-decoration {
  position: absolute;
  right: 10%;
  top: 0;
  height: 32px;
  width: 133px;
  display: flex;
  gap: 19px;
  align-items: flex-start;
  padding-right: 0;
}
.others-decoration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.others-overview-content {
  position: relative;
  width: 100%;
  text-align: center;
}

.others-description {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: white;
  line-height: 2;
  margin: 0;
  max-width: 595px;
  margin: 0 auto;
}

@media (max-width: 1400px) {
  .others-hero-background {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .others-hero {
    height: 160px;
  }
  .others-title {
    font-size: 56px;
  }
  .others-decoration {
    right: 5%;
  }
  .others-description {
    width: 100%;
    max-width: 595px;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .others-title {
    font-size: 48px;
  }
  .others-overview {
    height: auto;
    padding: 60px 0;
  }
  .others-decoration {
    display: none;
  }
  .others-description {
    font-size: 14px;
    padding: 0 16px;
  }
}
@media (max-width: 480px) {
  .others-title {
    font-size: 40px;
  }
  .others-overview {
    padding: 40px 0;
  }
}
.solution-navigation {
  background: #f8fafb;
  padding: 80px 0 100px;
  border-top: 1px solid #e9ecef;
}

.solution-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.solution-nav-heading {
  font-family: "Acumin Pro", sans-serif;
  font-weight: bold;
  font-size: 48px;
  color: #131313;
  margin: 0 0 60px 0;
  line-height: 1.2;
}

.solution-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.solution-card {
  background: white;
  padding: 40px 30px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(1, 173, 187, 0.15);
  border-color: #01adbb;
}
.solution-card:hover .solution-icon-img {
  transform: scale(1.1) rotate(5deg);
}
.solution-card:hover .solution-link-text {
  color: #01adbb;
  transform: translateX(8px);
}
.solution-card:hover .solution-link-text::after {
  opacity: 1;
  transform: translateX(0);
}
.solution-card.active {
  background: linear-gradient(135deg, #01adbb 0%, #00969e 100%);
  border-color: #01adbb;
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(1, 173, 187, 0.25);
}
.solution-card.active::before {
  transform: scaleX(1);
  background: white;
}
.solution-card.active .solution-title {
  color: white;
}
.solution-card.active .solution-description {
  color: rgba(255, 255, 255, 0.9);
}
.solution-card.active .solution-link-text {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}
.solution-card.active .solution-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.solution-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.solution-icon {
  width: 80px;
  height: 80px;
  background: #f0f8ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.solution-icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: brightness(0) saturate(100%) invert(55%) sepia(78%) saturate(2076%) hue-rotate(162deg) brightness(96%) contrast(101%);
}

.solution-description {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  margin: 0 0 24px 0;
  transition: color 0.3s ease;
}

.solution-link-text {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #131313;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.solution-link-text::after {
  content: "→";
  margin-left: 8px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .solution-navigation {
    padding: 60px 0 80px;
  }
  .solution-nav-heading {
    font-size: 40px;
    margin-bottom: 50px;
  }
  .solution-nav-grid {
    gap: 30px;
  }
  .solution-card {
    padding: 35px 25px;
  }
}
@media (max-width: 768px) {
  .solution-navigation {
    padding: 50px 0 60px;
  }
  .solution-nav-container {
    padding: 0 16px;
  }
  .solution-nav-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .solution-nav-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 400px;
  }
  .solution-card {
    padding: 30px 20px;
  }
  .solution-card:hover {
    transform: translateY(-4px);
  }
  .solution-card.active {
    transform: translateY(-2px);
  }
  .solution-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  .solution-icon-img {
    width: 35px;
    height: 35px;
  }
  .solution-description {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .solution-link-text {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .solution-nav-heading {
    font-size: 28px;
  }
  .solution-card {
    padding: 25px 15px;
  }
  .solution-description {
    font-size: 13px;
  }
}

/* About Images Section */
.about-images-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.about-image {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-image > div {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 250px;
  border-radius: 8px;
}

.about-image img {
  display: none;
}

.about-image-1 > div {
  background-image: url('../images/about_01.webp');
}

.about-image-2 > div {
  background-image: url('../images/about_02.webp');
}

.about-image-3 > div {
  background-image: url('../images/about_03.webp');
}

@media (min-width: 769px) {
  .about-images-wrapper {
    flex-direction: row;
    gap: 30px;
  }

  .about-image {
    flex: 1;
  }

  .about-image > div {
    min-height: 300px;
  }
}

/*# sourceMappingURL=style.css.map */
