@charset "UTF-8";
/*ここでは各パーショルファイルを＠useしてください。*/
/*クラス定義 (これより下を消す)*/
/*ここでは各ファイルで使用する変数を定義してください。*/
/*ここでは各パーショルファイルを＠useしてください。*/
/*クラス定義 (これより下を消す)*/
/*クラス定義 (これより下を消す)*/
* {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
  color: #383838;
  overflow-x: hidden;
}

button {
  background-color: transparent;
  padding: 0;
  border: none;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

/*クラス定義 (これより下に記載)*/
/*ここでは各パーショルファイルを＠useしてください。*/
/*クラス定義 (これより下を消す)*/
/*クラス定義 (これより下を消す)*/
:root {
  --nav-h: 72px;
}

body.no-scroll {
  overflow: hidden;
}

/* Scope header rules to this nav specifically */
nav#siteNav {
  /* desktop-first layout */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #ffffff;
  padding: 1rem 15.625rem;
  padding-top: calc(env(safe-area-inset-top, 0px) + 1rem);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 10000;
  /* desktop right area */
  /* link color consistency */
  /* ===== Desktop CTA ===== */
  /* SP right cluster (phone/mail/hamburger) */
  /* mobile overlay menu */
  /* ✅ correct selector: apply to this nav when it has .scrolled */
  /* ===== breakpoints ===== */
}
nav#siteNav .logo-container {
  display: flex;
  align-items: center;
  min-height: 2.5rem;
}
nav#siteNav .logo-container img {
  height: 2.5rem;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
nav#siteNav .logo-container img:hover {
  opacity: 0.7;
}
nav#siteNav .nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
nav#siteNav .navigation-list {
  display: flex;
  gap: 1.875rem;
}
nav#siteNav .navigation-list li {
  cursor: pointer;
  padding: 0 0.625rem;
  list-style: none;
}
nav#siteNav .navigation-list a:link,
nav#siteNav .navigation-list a:visited,
nav#siteNav .navigation-list a:active,
nav#siteNav .mobile-links a:link,
nav#siteNav .mobile-links a:visited,
nav#siteNav .mobile-links a:active {
  color: #00bbc9;
}
nav#siteNav .navigation-list a:hover,
nav#siteNav .mobile-links a:hover {
  opacity: 0.7;
}
nav#siteNav .nav-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 12.0625rem;
  height: 3.1875rem;
  border: 2px solid #00bbc9;
  border-radius: 30px;
  color: #00bbc9;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.2s ease;
  cursor: pointer;
  /* ✅ matches JS toggle */
}
nav#siteNav .nav-cta-button:hover {
  opacity: 0.7;
}
nav#siteNav .nav-cta-button.is-scrolled {
  background: #f87aac;
  border-color: #f87aac;
  color: #ffffff;
}
nav#siteNav .nav-cta-button.is-scrolled i,
nav#siteNav .nav-cta-button.is-scrolled span {
  color: inherit;
}
nav#siteNav .sp-right {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
}
nav#siteNav .sp-right .icon-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid #00bbc9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00bbc9;
  text-decoration: none;
  background: transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.2s ease, opacity 0.2s ease;
}
nav#siteNav .sp-right .icon-btn:hover {
  opacity: 0.7;
}
nav#siteNav .sp-right .icon-btn i {
  font-size: 1.125rem;
  color: inherit;
}
nav#siteNav .sp-right .hamburger {
  display: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  position: relative;
  z-index: 2000;
  transition: opacity 0.2s;
}
nav#siteNav .sp-right .hamburger:hover {
  opacity: 0.7;
}
nav#siteNav .sp-right .hamburger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #00bbc9;
  border-radius: 2px;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}
nav#siteNav .sp-right .hamburger span:nth-child(1) {
  top: 4px;
}
nav#siteNav .sp-right .hamburger span:nth-child(2) {
  top: 11px;
}
nav#siteNav .sp-right .hamburger span:nth-child(3) {
  top: 18px;
}
nav#siteNav .sp-right .hamburger.active span {
  top: 11px;
}
nav#siteNav .sp-right .hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
}
nav#siteNav .sp-right .hamburger.active span:nth-child(2) {
  opacity: 0;
}
nav#siteNav .sp-right .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
}
nav#siteNav .mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 1500;
  padding: 2rem 1.5rem;
}
nav#siteNav .mobile-menu .mobile-icons {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  font-size: 1.25rem;
  color: #00bbc9;
}
nav#siteNav .mobile-menu .mobile-icons i:hover {
  opacity: 0.7;
}
nav#siteNav .mobile-menu .mobile-links {
  margin-top: 2rem;
}
nav#siteNav .mobile-menu .mobile-links li {
  margin-bottom: 1.25rem;
  color: #00bbc9;
  cursor: pointer;
}
nav#siteNav .mobile-menu .mobile-links li:hover {
  opacity: 0.7;
}
nav#siteNav .mobile-menu .mobile-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
nav#siteNav .mobile-menu .mobile-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem;
  border-radius: 1.875rem;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s;
}
nav#siteNav .mobile-menu .mobile-buttons .btn:hover {
  opacity: 0.7;
}
nav#siteNav .mobile-menu .mobile-buttons .pink {
  background: #f87aac;
}
nav#siteNav .mobile-menu .mobile-buttons .blue {
  background: #00bbc9;
}
nav#siteNav.scrolled {
  padding-top: calc(env(safe-area-inset-top, 0px) + 1rem);
  padding-bottom: 1rem;
}
@media (max-width: 768px) {
  nav#siteNav {
    position: fixed;
    top: 0;
    left: auto;
    right: auto;
    z-index: 10000;
    padding: 1rem 1.25rem;
    padding-top: calc(env(safe-area-inset-top, 0px) + 0.625rem);
    /* Mobile icon coloring:
         - default: transparent bg, main color icon & border
         - after 696px (JS adds .is-pink): pink bg/border + white icon
      */
    /* ✅ only these two become pink on scroll */
    /* keep hamburger bars unaffected */
  }
  nav#siteNav .nav-right {
    display: none;
  }
  nav#siteNav .sp-right {
    display: flex;
  }
  nav#siteNav .sp-right .hamburger {
    display: flex;
  }
  nav#siteNav .mobile-menu.show {
    display: block;
    animation: slideIn 0.25s ease-out;
  }
  nav#siteNav .sp-right .icon-btn {
    background: transparent;
    color: #00bbc9;
    border-color: #00bbc9;
  }
  nav#siteNav .sp-right .icon-btn i {
    color: inherit;
  }
  nav#siteNav #spPhone.is-pink,
  nav#siteNav #spMail.is-pink {
    background: #f87aac;
    border-color: #f87aac;
    color: #ffffff;
  }
  nav#siteNav .sp-right .hamburger span {
    background: #00bbc9;
  }
}
@media (max-width: 430px) {
  nav#siteNav {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    padding-left: max(8px, (100vw - 336px) / 2);
    padding-right: max(8px, (100vw - 336px) / 2);
  }
  nav#siteNav .logo-container img {
    height: 1.75rem;
  }
  nav#siteNav .sp-right {
    gap: 0.625rem;
  }
  nav#siteNav .sp-right .icon-btn {
    width: 34px;
    height: 34px;
  }
  nav#siteNav .sp-right .hamburger {
    width: 20px;
    height: 20px;
  }
}

.nav-spacer {
  height: var(--nav-h);
}

/* small polish: overlay slide-in */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*ここでは各パーショルファイルを＠useしてください。*/
/*クラス定義 (これより下を消す)*/
/*クラス定義 (これより下を消す)*/
.contactSection {
  background: linear-gradient(to top, #92f5ee 0%, #54cadc 50%);
  position: relative;
  padding: 20px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-weight: 700;
  padding-bottom: 60px;
  /* Show desktop icon by default */
}
.contactSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.3) 2px, transparent 2px);
  background-size: 20px 20px;
  z-index: 0;
  pointer-events: none;
}
.contactSection .contactContainer img {
  width: 286px;
  height: 76px;
  margin-top: 70px;
}
.contactSection .contactContainer h2 {
  font-size: 3rem;
  color: #ffffff;
  padding-bottom: 20px;
}
.contactSection .contactContainer p {
  font-size: 1rem;
  letter-spacing: 0.005rem;
  color: #383838;
  line-height: 1.5rem;
}
.contactSection .contactButtons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 3.125rem;
  z-index: 4;
  position: relative;
}
.contactSection .inquiryBtn,
.contactSection .phoneBtn {
  color: #ffffff;
  margin-bottom: 1.25rem;
  width: 39.375rem;
  height: 7.1875rem;
  font-size: 1.5rem;
  padding: 30px;
  border-radius: 85px;
  letter-spacing: 0.005rem;
}
.contactSection .inquiryBtn {
  background-color: #f87aac;
}
.contactSection .inquiryBtn:hover {
  opacity: 0.8;
}
.contactSection .icon-desktop {
  display: inline-block;
}
.contactSection .icon-mobile {
  display: none;
}
.contactSection .phoneBtn {
  background-color: #00bbc9;
}
.contactSection .phoneBtn:hover {
  opacity: 0.8;
}
.contactSection .contactNote {
  text-align: right;
}

.footerContainer {
  background-color: #c6c6c6;
  color: #ffffff;
  text-align: center;
  font-family: "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-weight: 700;
  letter-spacing: 0.005rem;
  line-height: 1.5rem;
  padding: 1.875rem;
}

@media (max-width: 430px) {
  .contactSection {
    background: linear-gradient(to top, #92f5ee 0%, #54cadc 50%);
    position: relative;
    padding: 20px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    font-weight: 400;
    font-weight: 700;
    padding-bottom: 30px;
  }
  .contactSection::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.3) 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 0;
    pointer-events: none;
  }
  .contactSection .contactContainer img {
    width: 214px;
    height: 57px;
    margin-top: 20px;
  }
  .contactSection .contactContainer h2 {
    font-size: 2rem;
    padding-bottom: 20px;
  }
  .contactSection .contactContainer p {
    font-size: 1rem;
    text-align: left;
    width: 330px;
  }
  .contactSection .contactButtons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 3.125rem;
    z-index: 4;
    position: relative;
  }
  .contactSection .inquiryBtn,
  .contactSection .phoneBtn {
    margin-bottom: 1.25rem;
    width: 20.625rem;
    height: 5.125rem;
    font-size: 1rem;
    padding: 30px;
    border-radius: 85px;
  }
  .contactSection .inquiryBtn {
    background-color: #f87aac;
  }
  .contactSection .inquiryBtn:hover {
    opacity: 0.8;
  }
  .contactSection .icon-desktop {
    display: none; /* hide desktop icon */
  }
  .contactSection .icon-mobile {
    display: inline-block; /* show mobile icon */
  }
  .contactSection .phoneBtn {
    background-color: #00bbc9;
  }
  .contactSection .phoneBtn:hover {
    opacity: 0.8;
  }
  .contactSection .contactNote {
    text-align: center;
  }
  .contactSection .contactNote p {
    font-size: 0.625rem;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.01rem;
  }
  .footerContainer {
    padding: 0.625rem;
    font-size: 0.625rem;
  }
}
/*ここでは各パーショルファイルを＠useしてください。*/
/*クラス定義 (これより下を消す)*/
/*クラス定義 (これより下を消す)*/
.hero-section {
  background-image: url("../img/top-mv-pc@2x.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  position: relative;
  padding-top: calc(var(--nav-h, 100px) + 0rem);
  overflow: hidden;
  height: 800px;
  margin-bottom: 0;
  padding-bottom: 0;
}
.hero-section .hero-1st-container {
  position: relative;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 1084px;
  margin: 0 auto;
  padding-top: 1.375rem;
  width: 100%;
}
.hero-section .hero-text {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 6.25rem;
}
.hero-section .hero-text .main {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  margin: 0;
  font-family: "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
}
.hero-section .hero-text .subtitle {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 0.3125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
}
.hero-section .hero-deco-line {
  display: flex;
  justify-content: flex-start;
  gap: 0.75rem;
  margin: 0.3125rem 0;
  padding-left: 0.625rem;
}
.hero-section .hero-deco-line .dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: #00bbc9;
  margin-right: 0.875rem;
}
.hero-section .device-image img {
  width: 408px;
  height: 309.97px;
  margin-right: 5.625rem;
}
.hero-section .device-image {
  position: absolute;
  right: clamp(10px, 6vw, 5px);
  top: 1.25rem;
}
.hero-section .hero-features {
  display: flex;
  gap: 1rem;
  margin-top: 0.625rem;
  margin-bottom: 2.5rem;
  margin-left: 1.875rem;
  justify-content: flex-start;
}
.hero-section .hero-features h2 {
  font-weight: 700;
  font-size: 1.25rem;
}
.hero-section .feature-circle {
  width: 6.875rem;
  height: 6.875rem;
  background-color: #ffffff;
  color: #00bbc9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
  text-align: center;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  line-height: 1;
  letter-spacing: 0.08em;
  padding: 0.625rem;
  font-family: "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
}
.hero-section .cta-buttons {
  display: flex;
  justify-content: center;
  margin-top: -0.625rem;
}
.hero-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 0.3125rem;
  margin-top: 1.25rem;
}
.hero-section .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 13.75rem;
  height: 3.75rem;
  border-radius: 2.5rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  font-family: "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}
.hero-section .btn i {
  font-size: 1.125rem;
}
.hero-section .btn-download {
  background-color: #00bbc9;
}
.hero-section .btn-download:hover {
  opacity: 0.8;
}
.hero-section .btn-contact {
  background-color: #f87aac;
}
.hero-section .btn-contact:hover {
  opacity: 0.8;
}

.aboutMe-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e6fdff;
  margin-top: -14.375rem;
  padding-top: 16.25rem;
  padding-bottom: 2.5rem;
}
.aboutMe-section .aboutMe-container {
  text-align: center;
  font-family: "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-weight: 700;
}
.aboutMe-section .aboutMe-container h2 {
  font-size: 2rem;
  color: #00bbc9;
  line-height: 1;
  padding-bottom: 1.25rem;
}
.aboutMe-section .aboutMe-container img {
  width: 22.5rem;
  height: 9.785rem;
}
.aboutMe-section .aboutMe-container p {
  letter-spacing: 0.5rem;
  color: #383838;
}
.aboutMe-section .first-text {
  font-size: 1.75rem;
}
.aboutMe-section .second-text {
  font-size: 1.5rem;
  width: 688px;
  font-weight: 700;
  line-height: 43px;
  letter-spacing: 0.5rem;
}
.aboutMe-section .text-span {
  color: #00bbc9;
}

.solution-section {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}
.solution-section .solution-text {
  text-align: center;
  font-family: "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-weight: 700;
  color: #383838;
  letter-spacing: 0.5rem;
  line-height: 1;
}
.solution-section .solution-text p {
  font-size: 1.75rem;
}
.solution-section .solution-text h2 {
  font-size: 3rem;
  padding-top: 1.25rem;
}
.solution-section .solution-span {
  color: #00bbc9;
}

.solution-images {
  display: flex;
  flex-direction: column;
  padding-top: 2.5rem;
  gap: 2.5rem;
}
.solution-images .solution-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}
.solution-images img {
  width: 100%;
}
.solution-images .image-wrapper {
  background: linear-gradient(to bottom, #54cadc, #92f5ee); /* CHANGED */
  width: 27rem; /* same visual width */
  height: 55.125rem;
  border-radius: 0.75rem; /* nice rounded corners (optional) */
  overflow: hidden;
}
.solution-images .image-wrapper img {
  display: block;
  width: 100%; /* CHANGED: fill .image-wrapper */
  height: auto; /* CHANGED */
}

.solution-swiper {
  display: none;
}

.benefits-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 8.75rem;
}
.benefits-section .benefits-container {
  text-align: center;
  font-family: "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-weight: 700;
  color: #383838;
  letter-spacing: 0.5rem;
  line-height: 1;
  padding-bottom: 0.625rem;
}
.benefits-section .benefits-container p {
  font-size: 1.75rem;
  font-weight: 700;
}
.benefits-section .benefits-container h2 {
  font-size: 3rem;
}
.benefits-section .benefits-span {
  color: #00bbc9;
}
.benefits-section .tab-section {
  background-image: url("../img/background.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0px 1800px 50px 1800px;
}
.benefits-section .tab-buttons {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.benefits-section .tab-buttons .tab-button {
  background-color: #efefef;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1.25rem;
  font-weight: bold;
  cursor: pointer;
  color: #383838;
  transition: background-color 0.3s ease;
  width: 290px;
  height: 108px;
}
.benefits-section .tab-buttons .tab-button:hover {
  opacity: 0.7;
}
.benefits-section .tab-buttons .tab-button.active {
  background-color: #5ed1df;
  color: #ffffff;
}
.benefits-section .tab-buttons .tab-button:not(:last-child) {
  margin-right: 0.5rem;
}
.benefits-section .tab-content-wrapper {
  font-family: "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #383838;
  background: linear-gradient(to bottom, #54cadc, #92f5ee);
  width: 897px;
  height: 900px;
}
.benefits-section .tab-content-wrapper .tab-content {
  display: none;
}
.benefits-section .tab-content-wrapper .tab-content.active {
  display: block;
}
.benefits-section .tab-content-wrapper .tab-content .benefit-icon {
  width: 7.5rem;
  margin-bottom: 1.25rem;
}
.benefits-section .tab-content-wrapper .benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 10px 80px 10px 80px;
}
.benefits-section .tab-content-wrapper .benefit-list .benefit-item {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 56.25rem;
  margin: 0 auto;
}
.benefits-section .tab-content-wrapper .benefit-list .benefit-item .num {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: bold;
  color: #ffffff;
  opacity: 0.47;
  flex-shrink: 0;
}
.benefits-section .tab-content-wrapper .benefit-list .benefit-item .benefit-box {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.625rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
  position: relative;
  width: 800px;
}
.benefits-section .tab-content-wrapper .benefit-list .benefit-item .benefit-box p {
  font-size: 1.25rem;
  text-align: left;
  color: #383838;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}
.benefits-section .tab-content-wrapper .benefit-list .benefit-item .highlight {
  color: #00bbc9;
  font-weight: bold;
}
.benefits-section .tab-content-wrapper img {
  width: 187px;
  padding: 3.75rem 0 1.25rem 0;
}
.benefits-section .tab-content-wrapper h3 {
  font-size: 2rem;
  color: #ffffff;
  padding-bottom: 1.25rem;
}
.benefits-section .tab-content-container {
  display: none;
}
.benefits-section .tab-content-container.active {
  display: block;
}

.productDetailsSection {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 3.125rem 0;
  background-color: #efefef;
}
.productDetailsSection .productDetailsText {
  text-align: center;
  font-family: "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-weight: 700;
}
.productDetailsSection .productDetailsText h2 {
  font-size: 2.5rem;
  color: #383838;
}
.productDetailsSection .productDetailsText span {
  color: #00bbc9;
}
.productDetailsSection .productDetailsText p {
  padding-top: 20px;
  line-height: 24px;
}
.productDetailsSection .device-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.productDetailsSection .device-box {
  position: relative;
  border: 2px solid #00bcd9;
  border-radius: 10px;
  padding: 60px 20px 20px;
  background-color: white;
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
  margin-top: 94px;
  margin-bottom: 50px;
}
.productDetailsSection .device-header {
  position: absolute;
  top: -32px;
  left: 50.1%;
  transform: translateX(-50%);
  background-color: #00bbc9;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 14px 16px;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  white-space: nowrap;
  z-index: 1;
  width: 500.5px;
  text-align: center;
}
.productDetailsSection .device-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.productDetailsSection .device-row {
  display: grid;
  grid-template-columns: 1.4fr 60px 1.6fr;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
}
.productDetailsSection .col1,
.productDetailsSection .col3 {
  white-space: normal;
}
.productDetailsSection .col2 {
  text-align: center;
  white-space: nowrap;
  letter-spacing: 2px;
}

.resultsSection {
  background-color: #e6fdff;
  padding-bottom: 2.5rem;
}
.resultsSection .resultsText {
  font-weight: 700;
  color: #383838;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 2.56px;
  padding-bottom: 20px;
  padding-top: 40px;
}
.resultsSection .resultsText .highlight {
  color: #00bbc9;
}
.resultsSection .resultsImages {
  background-color: #ffffff;
  width: 900px;
  height: 398.59px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  padding-top: 40px;
  gap: 60px;
}
.resultsSection .resultsImages .effect1 {
  width: 376px;
  height: 223.75px;
}
.resultsSection .resultsImages .effect2 {
  width: 347px;
  height: 301.58px;
}
.resultsSection .resultsImages .effect1:hover,
.resultsSection .resultsImages .effect2:hover {
  opacity: 0.7;
  cursor: pointer;
}
.resultsSection .resultsImages .resultsImagesContainer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: -moz-fit-content;
  width: fit-content;
}
.resultsSection .resultsImages .resultsImagesContainer p {
  text-align: right;
  width: 100%;
  font-size: 0.75rem;
  margin-top: 8px;
}
.resultsSection .resultsImages .resultsImagesContainer .info {
  padding-top: 80px;
}
.resultsSection .resultLinks {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 400;
  color: #383838;
}
.resultsSection .resultLinksText {
  text-align: right;
  padding-top: 1.25rem;
  padding-left: 27.5rem;
}
.resultsSection .resultLinksText a {
  text-decoration: none;
  color: #383838;
}

.modalOverlay {
  display: none;
  position: fixed;
  inset: 0; /* shorthand: top/right/bottom/left */
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: flex-start;
  z-index: 9999;
  padding: 3rem 0.75rem 0.75rem;
}
.modalOverlay.active {
  display: flex;
}

.modalImage {
  display: block;
  width: auto;
  height: auto;
  max-width: min(92vw, 960px); /* fit nicely on desktop & mobile */
  max-height: 86vh; /* keep inside the viewport height */
  -o-object-fit: contain;
     object-fit: contain;
  image-orientation: from-image;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* 🔧 NEW: bounded content box so nothing can overflow the viewport */
.modalContent {
  position: relative; /* new */
  display: inline-block;
  line-height: 0;
}

.modalClose {
  position: absolute;
  top: -44px;
  right: 0;
  z-index: 2;
  width: 36px;
  height: 36px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  line-height: 36px;
  text-align: center;
  border: 0;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
}

/* ⭐ Prevent background scroll/gestures while modal is open (JS toggles this) */
body.modal-open {
  overflow: hidden;
  touch-action: none;
}

.productDetailsSection .acc-round {
  display: none;
}

@media (max-width: 430px) {
  .hero-section {
    background-image: url("../img/top-mv-sp@2x.png");
    height: 50.25rem;
    padding-top: var(--nav-h, 3.75rem);
  }
  .hero-section .hero-1st-container {
    flex-direction: column;
    align-items: center;
  }
  .hero-section .hero-text {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin: 0;
    text-align: left;
    align-items: flex-start;
    /* NEW: make heading block as wide as the text */
    /* Dots: fill the heading width and space evenly */
  }
  .hero-section .hero-text .main {
    font-size: 0.75rem;
    margin: 0 0 0.25rem 0;
    text-align: left;
    font-weight: 700;
    font-style: normal;
    font-size: 0.75rem;
    padding-left: 0.25rem;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }
  .hero-section .hero-text .subtitle {
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 1.5rem;
    line-height: 1.25;
    margin-top: 0rem;
  }
  .hero-section .hero-text .hero-heading {
    display: inline-block;
    max-width: min(92vw, 22.5rem);
  }
  .hero-section .hero-text .hero-deco-line {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    gap: clamp(1px, -10vw, 2px);
    margin: 0.375rem 0 0.75rem;
  }
  .hero-section .hero-text .hero-deco-line .dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #00bbc9;
    justify-self: center;
  }
  .hero-section .hero-deco-line {
    width: min(92vw, 22.5rem);
    display: flex;
    justify-content: space-between;
    gap: 0;
    margin: 0.25rem 0 0.75rem 0.0625rem;
  }
  .hero-section .hero-deco-line .dot {
    width: 0.5rem;
    height: 0.5rem;
    font-size: 1.5rem;
  }
  .hero-section .device-image {
    position: static;
    right: auto;
  }
  .hero-section .device-image img {
    width: min(76vw, 20rem);
    height: auto;
    margin: 0.75rem auto 0;
    display: block;
  }
  .hero-section .hero-features {
    margin-left: 0;
    justify-content: space-between;
    padding: 0 1rem;
  }
  .hero-section .hero-features h2 {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    line-height: 1.35rem;
  }
  .hero-section .feature-circle {
    width: clamp(82px, 28vw, 110px);
    height: clamp(82px, 28vw, 110px);
    font-size: 0.75rem;
  }
  .hero-section .cta-buttons {
    padding: 0 1rem;
    margin-top: 1.25rem;
    gap: 0.75rem;
  }
  .hero-section .cta-buttons .btn {
    flex: 1 1 48%;
    width: auto;
    height: 3.25rem;
    font-size: 0.875rem;
  }
  .aboutMe-section {
    padding-top: 16.25rem;
    padding-bottom: 1.25rem;
    height: 624px;
  }
  .aboutMe-section .aboutMe-container {
    width: 324px;
    height: 314px;
  }
  .aboutMe-section .aboutMe-container h2 {
    line-height: 1;
    padding-bottom: 1.25rem;
    font-size: 1.75rem;
  }
  .aboutMe-section .aboutMe-container img {
    width: 16.5rem;
    height: 7.125rem;
    margin: 0.625rem 0.625rem;
  }
  .aboutMe-section .aboutMe-container p {
    letter-spacing: 0.0625rem;
    color: #383838;
  }
  .aboutMe-section .first-text {
    font-weight: 700;
    font-size: 1.25rem;
    width: 280px;
    line-height: 1.2;
    letter-spacing: 4em;
    margin: 0 1.25rem 0.625rem 1.25rem;
    padding: 0 0rem;
  }
  .aboutMe-section .second-text {
    line-height: 28px;
    letter-spacing: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    width: 328px;
  }
  .aboutMe-section .text-span {
    color: #00bbc9;
  }
  .solution-section {
    padding-top: 2.5rem;
    padding-bottom: 0rem;
    background-image: url("../img/background.png");
  }
  .solution-section .solution-text p {
    font-size: 1.25rem;
  }
  .solution-section .solution-text h2 {
    font-size: 1.75rem;
    padding-top: 0.3125rem;
  }
  .solution-section .solution-span {
    color: #00bbc9;
  }
  /* Hide desktop grid, show swiper */
  .solution-images {
    display: none;
  }
  .solution-swiper {
    background-image: url("../img/background.png");
    background-repeat: repeat;
    /* adjust this so dots end right above the next section title */
    padding: 0.75rem 0 3rem;
    display: block;
    width: 100%;
    position: relative;
  }
  /* ADDED: let slides render their own rounded card; wrapper stays neutral */
  .solution-swiper .swiper-wrapper {
    background: none;
    border-radius: 0;
    overflow: visible;
    min-height: auto;
  }
  /* each slide is a rounded gradient card that CLIPS contents */
  /* style each slide's card */
  .solution-card {
    border-radius: 0.75rem;
    box-shadow: none;
    padding: 1rem 0.875rem 1.125rem;
    width: 22.5rem;
    height: 43.75rem;
    margin: 0 auto; /* centered */
  }
  .solution-swiper .image-wrapper {
    width: 100%;
  }
  .solution-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0.5rem auto 0.625rem;
  }
  .solution-swiper {
    padding-bottom: 3rem;
  }
  .solution-swiper .solution-card {
    padding-bottom: 1.125rem;
  }
  .solution-swiper .swiper-pagination {
    position: static;
    transform: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0;
    margin-top: 0.875rem;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    z-index: 1;
  }
  .solution-swiper .swiper-pagination::after {
    display: none;
  }
  .image-wrapper {
    background: linear-gradient(to bottom, #54cadc, #92f5ee);
    height: 100%;
  }
  .solution-swiper .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 1.5px solid #656565;
    background: transparent;
    opacity: 1;
    margin: 0;
  }
  .solution-swiper .swiper-pagination-bullet-active {
    background: #00c6d5;
    border-color: #00c6d5;
  }
  /* ----- arrows: gray translucent circles + white triangles ----- */
  .solution-swiper .swiper-button-prev,
  .solution-swiper .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(56, 56, 56, 0.4); /* translucent gray */
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    z-index: 3;
    /* remove default glyph */
  }
  .solution-swiper .swiper-button-prev::after,
  .solution-swiper .swiper-button-next::after {
    content: "";
  }
  /* triangles via CSS borders */
  .solution-swiper .swiper-button-prev::before,
  .solution-swiper .swiper-button-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
  }
  .solution-swiper .swiper-button-prev::before {
    border-width: 0.4375rem 0.625rem 0.4375rem 0;
    border-color: transparent #ffffff transparent transparent;
    margin-left: -0.125rem;
  }
  .solution-swiper .swiper-button-next::before {
    border-width: 0.4375rem 0 0.4375rem 0.625rem;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 0.125rem;
  }
  /* inset from card edges like the mock */
  .solution-swiper .swiper-button-prev {
    left: 1.5rem;
  }
  .solution-swiper .swiper-button-next {
    right: 1.5rem;
  }
  .solution-swiper .solution-tag,
  .solution-swiper .solution-badge {
    display: none !important;
  }
  .solution-swiper .solution-card {
    padding: 0.75rem 0.875rem; /* a little tighter top/bottom */
  }
  .solution-swiper .swiper-slide img {
    margin: 0; /* remove extra vertical space below/above image */
  }
  .benefits-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 2.5rem;
    margin-bottom: 0rem;
    padding-bottom: 0rem;
  }
  .benefits-section::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0; /* top/left: 0; right auto; bottom auto */
    width: 100%;
    height: 10rem;
    background-image: url("../img/background.png");
    background-repeat: repeat;
    background-size: auto;
    z-index: 0;
    pointer-events: none;
  }
  .benefits-section .benefits-container {
    position: relative;
    z-index: 1;
    padding-bottom: 0.625rem;
  }
  .benefits-section .benefits-container p {
    font-size: 1.25rem;
  }
  .benefits-section .benefits-container h2 {
    font-size: 1.75rem;
  }
  .benefits-section .tab-section {
    background-image: none;
    padding: 0.75rem 1rem 2.5rem;
    position: relative;
    z-index: 1;
  }
  .benefits-section .tab-buttons {
    display: flex;
    justify-content: center;
    gap: 0.375rem;
    max-width: 0rem;
    margin: 0 auto 0rem;
  }
  .benefits-section .tab-buttons .tab-button {
    background-color: #efefef;
    border-radius: 0.625rem 0.625rem 0 0;
    border: none;
    padding: 0rem 0rem;
    font-size: 1rem;
    margin-left: 0;
    min-width: 8.6875rem;
    margin-right: 0.625rem;
    height: 2.75rem;
  }
  .benefits-section .tab-buttons .tab-button:hover {
    opacity: 0.7;
  }
  .benefits-section .tab-buttons .tab-button.active {
    background-color: #5ed1df;
    color: #ffffff;
  }
  .benefits-section .tab-buttons .tab-button:not(:last-child) {
    margin-right: 0.5rem;
  }
  .benefits-section .tab-content-wrapper {
    background: linear-gradient(to bottom, #54cadc, #92f5ee);
    height: 698px;
    padding: 1.5rem 1rem 1.25rem;
    max-width: 27.25rem; /* ← replaces 393px */
  }
  .benefits-section .tab-content-wrapper .tab-content {
    display: none;
  }
  .benefits-section .tab-content-wrapper .tab-content.active {
    display: block;
  }
  .benefits-section .tab-content-wrapper .tab-content .benefit-icon {
    width: 7.5rem;
    margin-bottom: 1.25rem;
    display: block;
  }
  .benefits-section .tab-content-wrapper .benefit-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0 0.5rem;
  }
  .benefits-section .tab-content-wrapper .benefit-list .benefit-item {
    display: grid;
    grid-template-columns: 1.75rem 1fr; /* number + box */
    align-items: center;
    gap: 0.5rem;
  }
  .benefits-section .tab-content-wrapper .benefit-list .benefit-item .num {
    width: 1.375rem;
    height: 3.3125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
  }
  .benefits-section .tab-content-wrapper .benefit-list .benefit-item .benefit-box {
    background-color: #ffffff;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
    padding: 1.375rem 1rem;
    width: auto;
    margin-bottom: 0.625rem;
  }
  .benefits-section .tab-content-wrapper .benefit-list .benefit-item .benefit-box p {
    font-size: 0.75rem;
    text-align: left;
    color: #383838;
  }
  .benefits-section .tab-content-wrapper .benefit-list .benefit-item .highlight {
    color: #00bbc9;
    font-weight: bold;
  }
  .benefits-section .tab-content-wrapper img {
    width: 7.5625rem;
    padding: 1.25rem 0 1.25rem 0;
  }
  .benefits-section .tab-content-wrapper h3 {
    font-size: 1.5rem;
    color: #ffffff;
    padding-bottom: 1.5rem;
  }
  .benefits-section .tab-content-container {
    display: none;
  }
  .benefits-section .tab-content-container.active {
    display: block;
  }
  .resultsSection {
    background-color: #e6fdff;
    padding-bottom: 2.5rem;
    padding-top: 0.0625rem;
  }
  .resultsSection .resultsText {
    text-align: center;
    font-size: 1.75rem;
    width: 15.625rem;
    margin: 0.875rem 6.25rem;
    line-height: 1.2;
  }
  .resultsSection .resultsImages {
    width: 100%;
    height: 35.75rem;
    max-width: min(92vw, 20.75rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0rem 0.625rem;
    gap: 1rem;
  }
  .resultsSection .resultsImages .effect1 {
    width: 279px;
    height: 166px;
  }
  .resultsSection .resultsImages .effect2 {
    width: 279px;
    height: 242px;
  }
  .resultsSection .resultsImages .effect1:hover,
  .resultsSection .resultsImages .effect2:hover {
    opacity: 0.7;
    cursor: pointer;
  }
  .resultsSection .resultsImages .resultsImagesContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .resultsSection .resultsImages .resultsImagesContainer p {
    text-align: right;
    width: 100%;
    font-size: 0.625rem;
    margin-top: 8px;
  }
  .resultsSection .resultsImages .resultsImagesContainer .info {
    padding-top: 10px;
  }
  .resultsSection .resultLinks {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    width: 23.75rem;
    color: #656565;
  }
  .resultsSection .resultLinks .resultLinksText {
    text-align: left;
    padding-top: 1.25rem;
    padding-left: 3.125rem;
  }
  .resultsSection .resultLinks .resultLinksText a {
    text-decoration: none;
    color: #656565;
  }
  .resultsSection .resultLinks .resultLinksText span {
    padding-left: 2.375rem;
  }
  .modalOverlay {
    justify-content: center;
    align-items: center;
    padding-right: 1.75rem;
  }
  .modalClose {
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 24px;
  }
  .productDetailsSection {
    padding-top: 1.25rem;
    margin-top: 0rem;
    padding-bottom: 4.375rem;
    /* round icon bubble */
    /* 🔁 CHANGED: collapsible with 0.3s animation */
    /* keep your table look */
  }
  .productDetailsSection .productDetailsText h2 {
    font-size: 1.75rem;
    width: 13.1875rem;
    margin-left: 2.5rem;
    line-height: 1.2;
  }
  .productDetailsSection .productDetailsText p {
    padding-top: 0.75rem;
    line-height: 1.5rem;
    width: 18.125rem;
    font-size: 0.75rem;
    text-align: left;
  }
  .productDetailsSection .device-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    margin-top: 1.375rem;
  }
  .productDetailsSection .device-box {
    position: relative;
    border-radius: 0.75rem;
    padding: 0 1.625rem;
    margin: 0;
    border: 0;
    box-shadow: none;
    width: 100%;
    height: auto;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 1rem;
    margin-bottom: 0rem;
    overflow: hidden;
    background: transparent;
  }
  .productDetailsSection .device-header {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    background-color: #00bbc9;
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    display: grid; /* 🔧 CHANGED: uniform layout */
    grid-template-columns: 1fr 2rem;
    align-items: center;
    gap: 0.75rem;
    border: 0;
    border-radius: 0.75rem;
    cursor: pointer;
    text-align: left;
    transition: opacity 0.2s ease;
    white-space: normal;
    min-height: 5.125rem;
  }
  .productDetailsSection .device-header:hover {
    opacity: 0.7;
  }
  .productDetailsSection .header-title {
    font-weight: 700;
    line-height: 1.5rem;
    font-size: 1rem;
    letter-spacing: 0.08em;
    width: 16.25rem;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-left: 2.5rem;
  }
  .productDetailsSection .acc-round {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }
  .productDetailsSection .acc-icon {
    font-size: 1.125rem;
    font-weight: 700;
    color: #00c6d5;
    transition: transform 0.3s ease, color 0.2s ease;
  }
  .productDetailsSection .device-content {
    box-sizing: border-box;
    display: block;
    overflow: hidden;
    max-height: 0; /* closed */
    transition: max-height 0.3s ease; /* ③ animation */
    background: transparent;
    border-top: 0;
    border-radius: 0rem;
    padding: 0 1rem;
    border: 0;
  }
  .productDetailsSection .device-box.is-open .device-header {
    border-radius: 12px 12px 0 0;
  }
  .productDetailsSection .device-box.is-open .device-content {
    padding: 1rem;
    border: 1px solid #00c6d5;
  }
  .productDetailsSection .device-row {
    display: grid;
    grid-template-columns: 1.2fr 2rem 1.6fr;
    gap: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
    padding: 0.25rem 0;
  }
  .productDetailsSection .col1,
  .productDetailsSection .col3 {
    white-space: normal;
  }
  .productDetailsSection .col2 {
    text-align: center;
    white-space: nowrap;
    letter-spacing: 2px;
  }
  .productDetailsSection .productDetailsSection .device-box.is-open .acc-icon {
    transform: none;
    border: 0;
  }
}
@media (max-width: 430px) {
  .productDetailsSection .acc-round {
    display: inline-flex;
  }
}
@media (max-width: 430px) {
  .benefits-section {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .productDetailsSection {
    position: relative;
    margin-top: 0;
    background-color: #efefef;
  }
  .productDetailsSection::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -40px;
    height: 40px;
    background: #efefef;
    pointer-events: none;
  }
  /* Prevent the section title's top margin from collapsing upward */
  .productDetailsSection .productDetailsText h2 {
    margin-top: 0;
  }
}/*# sourceMappingURL=style.css.map */