html {
  font-size: 16px;
}
body {
  font-family: "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.7;
  color: #222;
  background: #fff;
  letter-spacing: 0.02em;
  min-height: 100vh;
  opacity: 1;
  transition: opacity 0.5s ease;
}
img {
  max-width: 100%;
  height: auto;
}
svg {
  fill: currentColor;
}
body.fade-out {
  opacity: 0;
}
body.menu-open main {
  transform: scale(0.98);
  transition: transform 0.45s ease;
}
.title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 32px;
}
.label {
  display: block;
  font-size: 14px;
  color: #aaa;
  letter-spacing: 0.12em;
}
.hidden {
  display: none !important;
}
.btn {
  padding: 7px 14px;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  font-size: 15px;
}
.btn-primary {
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;
  border: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  border-radius: 5px;
  width: 180px;
  text-align: center;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.15) 40%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0.15) 60%, transparent 100%);
  transform: translateX(0);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition-delay: 0s;
}
.btn-primary:hover::before {
  transform: translateX(300%);
  transition: transform 0.6s ease;
  transition-delay: 0.05s;
}
.header {
  --header-height: 64px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}
.header a {
  transition:
    filter 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background-color 0.3s ease;
  z-index: -1;
}
.header.is-scrolled::before {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 0 24px;
  position: relative;
  z-index: 1000;
}
.header-actions {
  display: flex;
  gap: 12px;
}

.footer {
  background: #f2f2f2;
  padding: 60px 80px 30px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  max-width: 1100px;
  margin: auto;
}
.footer-logo img {
  width: 250px;
}
.link-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 100px;
}
.link-col:nth-child(3) {
  border-left: 1px solid #ccc;
}
.link-col a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  transition: 0.3s;
}
.link-col a:hover {
  opacity: 0.6;
}
.footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-btn {
  display: inline-block;
  padding: 8px 30px;
  border: 1px solid #333;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  transition: 0.3s;
}
.im-btn {
  display: inline-block;
  padding: 8px 30px;
  border: 1px solid #000;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  transition: 0.3s;
  background-color: #000;
}
.footer-btn:hover {
  background: #333;
  color: #fff;
}
.im-btn:hover {
  background: #fff;
  color: #000;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  max-width: 1100px;
  margin: 25px auto 0;
}
.footer-bottom-left {
  display: flex;
  gap: 0;
}
.footer-bottom-left a {
  text-decoration: none;
  color: #333;
  padding: 0 15px;
  position: relative;
  transition: 0.3s;
}
.footer-bottom-left a:hover {
  opacity: 0.6;
}
.icon-fb {
  display: inline-block;
  background: url(/assets/images/logo-fb.svg) no-repeat left 0;
  background-size: 20px auto;
  padding-left: 24px;
}
.icon-x {
  display: inline-block;
  background: url(/assets/images/logo-x.svg) no-repeat left 0;
  background-size: 15px auto;
  padding-left: 24px;
}
.icon-ig {
  display: inline-block;
  background: url(/assets/images/logo-ig.svg) no-repeat left 0;
  background-size: 18px auto;
  padding-left: 24px;
}
.icon-li {
  display: inline-block;
  background: url(/assets/images/logo-li.svg) no-repeat left 0;
  background-size: 18px auto;
  padding-left: 24px;
}
.footer-copy {
  color: #666;
}
.footer-box {
  display: flex;
  gap: 60px;
}
.sp-actionsWrap {
  display: flex;
}
.menu-btn {
  width: 28px;
  height: 20px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  margin: 10px;
}
.menu-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transition:
    filter 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}
.menu-btn span:nth-child(1) {
  top: 0;
}
.menu-btn span:nth-child(2) {
  top: 9px;
}
.menu-btn span:nth-child(3) {
  bottom: 0;
}
body.menu-open .menu-btn span {
  background: #fff;
}
.menu-btn.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}
.menu-btn.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.logo img {
  width: 170px;
  padding: 10px;
  transition:
    filter 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}
body.menu-open .logo img {
  filter: invert(1);
}
.logo a:hover {
  opacity: 0.8;
  transition: transform 0.6s ease;
}
.gnav ul {
  display: flex;
  justify-content: center;
  padding: 12px 0;
  list-style: none;
  margin: 0;
}
.gnav a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
}
body.menu-open .gnav a {
  color: #fff;
}
.nav-link {
  position: relative;
  display: inline-block;
  padding: 4px 0;
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #000;
  transition:
    width 0.3s ease,
    left 0.3s ease;
}
.nav-link:hover {
  transform: translateY(-1px);
  opacity: 0.8;
}
.nav-link:hover::after {
  width: 100%;
  left: 0;
}
.gnav li + li::before {
  content: "/";
  margin: 0 40px;
  color: #999;
}
.fv {
  display: flex;
  align-items: center;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
.fv-image {
  flex: 9;
}
.fv-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}
.fv-switch {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 160px;
  margin: 20px;
}
.fv-switch img {
  width: 80px;
  height: auto;
  display: block;
  pointer-events: auto;
  cursor: pointer;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.switch-pc {
  display: block;
}
.switch-sp {
  display: none;
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 800;
}
.menu-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}
.sp-actions {
  align-items: center;
  display: flex;
  gap: 4px;
}
.sp-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 45px;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  gap: 4px;
  background: #000;
  font-size: 8px;
}
body.menu-open .sp-action {
  filter: invert(1);
}
.js-scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.js-scroll-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.about {
  padding: 180px 24px 100px 24px;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.about-text {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.about.is-visible .about-text {
  opacity: 1;
  transform: translateY(0);
  margin-top: 100px;
}
.about-text p {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 16px;
}
.about-images {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 40px;
  align-items: start;
  justify-content: end;
  transform: translateY(24px) scale(1.03);
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.about.is-visible .about-images {
  opacity: 1;
  transition-delay: 0.25s;
  transform: translateY(0) scale(1);
}
.about-image img {
  width: 100%;
  display: block;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}
.image-main {
  width: 360px;
  margin-top: -100px;
}
.image-sub {
  width: 360px;
  margin-top: 40px;
}
.usecase {
  background: #fff;
  padding: 50px 24px 80px;
}
.usecase-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.usecase-head {
  margin-bottom: 48px;
}
.uc-block {
  margin-top: 72px;
}
.uc-media {
  position: relative;
}
.uc-tag {
  position: absolute;
  top: -20px;
  left: -10px;
  z-index: 3;
  background: #000;
  color: #fff;
  font-size: 14px;
  padding: 10px 18px;
  line-height: 1;
}
.frame {
  position: relative;
  padding-top: 20px;
}
.frame::before {
  content: "";
  position: absolute;
  left: -10px;
  width: calc(100% + 0px);
  height: calc(100% + -30px);
  background: #000;
  z-index: -1;
}
.shadow {
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}
.uc-frame::before {
  top: 10px;
}
.split {
  position: relative;
  z-index: 1;
  display: grid;
  overflow: hidden;
}
.uc-split {
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background-color: #fff;
}
.uc-pane {
  margin: 0;
}
.uc-pane img {
  width: 100%;
  height: 100%;
  display: block;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}
.uc-badges {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 16px;
}
.uc-badge {
  width: 80px;
  height: 35px;
  background: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 20px;
}
.uc-badge.on {
  color: #e60012;
}
.uc-badge.off {
  color: #111;
}
.uc-desc {
  margin: 18px 0 0;
  text-align: center;
  font-size: 15px;
  line-height: 1.9;
}
.uc-desc span {
  display: block;
}
.glass-types:has(.glass-types-btn:hover)::after {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(2px);
}
.glass-types:has(.glass-types-btn:hover) .glass-types-media img {
  transform: scale(1);
}
.glass-types {
  background: #000;
  padding: 50px 24px;
  margin: 50px 0;
  position: relative;
}
.glass-types::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background-color 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.glass-types-bg {
  max-width: 1200px;
  margin: auto;
  position: relative;
}
.glass-types-media {
  position: relative;
  z-index: 0;
  cursor: default;
  overflow: hidden;
  z-index: 0;
}
.glass-types-media img {
  transform: scale(1.06);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-types-pc {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.glass-types-pc img,
.glass-types-sp img {
  width: 100%;
  display: block;
  cursor: default;
}
.glass-types-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 32px;
  text-align: center;
  text-decoration: none;
  color: inherit;
}
.glass-types-title {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 14px 28px;
  font-size: 20px;
  letter-spacing: 0.08em;
}
.glass-types-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 40px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 15px;
  border: 1px solid #000;
  position: relative;
  z-index: 0;
  overflow: hidden;
  transition:
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
  text-decoration: none;
  width: 100px;
  margin: auto;
  font-weight: bold;
}
.glass-types-btn > * {
  position: relative;
  z-index: 1;
}
.glass-types-btn .arrow {
  transition: transform 0.3s ease;
}
.glass-types-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  opacity: 0.9;
}
.glass-types-btn:hover::before {
  transform: scaleX(1);
}
.glass-types-btn:hover .arrow {
  transform: translateX(4px);
}
.merit {
  padding: 50px 24px 80px;
}
.merit-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.merit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px 50px;
  color: #222;
}
.mt-frame::before {
  top: 10px;
}
.merit-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #fff;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.08);
}
.merit-image {
  margin: 0;
}
.merit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}
.merit-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  height: 300px;
}
.merit-content h3 {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 500;
}
.merit-content p {
  font-size: 14px;
  line-height: 1.9;
}
.ccase {
  background: #000;
  color: #fff;
  padding: clamp(48px, 6vw, 96px) 0;
  position: relative;
  margin: 50px 0;
}
.ccase__inner {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  position: relative;
}
.ccase__head {
  position: relative;
  z-index: 20;
}
.ccase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* ← スマホも4列 */
  gap: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.ccase__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 4 / 3;
  background: #111;
}
.ccase__item:nth-child(4n) {
  border-right: 0;
}
.ccase__item:nth-last-child(-n + 4) {
  border-bottom: 0;
}
.ccase__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.25));
  opacity: 0.7;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.ccase__more {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 40px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 15px;
  border: 1px solid #000;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition:
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
  text-decoration: none;
  width: 100px;
  font-weight: bold;
}
.ccase__more:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  opacity: 0.9;
}
.ccase__moreWrap {
  position: absolute;
  left: 0;
  top: -100px;
  transform: translateY(190px);
  display: flex;
  justify-content: center;
  margin-top: clamp(16px, 2.4vw, 28px);
  z-index: 20;
}
.ccase__moreArrow {
  display: inline-block;
  transform: translateY(1px);
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease;
}
.ccase__more:hover .ccase__moreArrow {
  transform: translateX(4px);
}
.ccase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.ccase__bg:has(.ccase__more:hover) .ccase__item img {
  transform: scale(1);
}
.ccase__bg {
  position: relative;
}
.ccase__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition:
    background-color 0.4s ease,
    backdrop-filter 0.4s ease;
  pointer-events: none;
  z-index: 1;
  backdrop-filter: blur(0px);
}
.ccase__bg:has(.ccase__more:hover)::after {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(2px);
}
.wood {
  padding: 50px 24px 80px;
}
.wood__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.wood__content {
  flex: 1;
  position: relative;
  top: -60px;
}
.wood__sub {
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.wood__logo {
  height: 60px;
  width: auto;
  display: block;
}
.wood__image {
  margin: 0;
  transform: translateY(24px) scale(1.03);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  position: relative;
  top: -13px;
  flex: 1;
}
.wood__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}
.wood__btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  margin-top: 20px;
  position: relative;
  align-items: center;
  gap: 20px;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  overflow: hidden;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  transition: color 0.4s ease;
  width: 230px;
}
.wood__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  background: #fff;
  transition: width 0.6s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 0;
}
.wood__btn-text,
.wood__btn .arrow {
  position: relative;
  z-index: 1;
  transition:
    color 0.4s ease,
    transform 0.3s ease;
}
.wood__btn:hover {
  color: #000;
}
.wood__btn:hover::before {
  width: 100%;
}
.wood__btn:hover .arrow {
  transform: translateX(5px);
}
.page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 55px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid #fff;
}
.page-top .arrow {
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
  margin-bottom: 8px;
}
.page-top:hover {
  opacity: 0.8;
}
.page-top.is-show {
  opacity: 1;
  pointer-events: auto;
}
.text {
  font-size: 9px;
}
.case-main {
  padding-bottom: 80px;
}
.case-hero {
  position: relative;
  overflow: hidden;
}
.case-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-hero h1 {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  padding: 14px 30px;
  font-size: 30px;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 500;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}
.case-list {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.case-card {
  display: block;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  padding: 20px 30px 30px;
  text-decoration: none;
  color: #000;
  position: relative;
  transition: 0.3s;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.case-label {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.case-card img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 10px;
}
.case-image {
  width: 100%;
  overflow: hidden;
  margin-bottom: 10px;
}
.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.case-card:hover .case-image img {
  transform: scale(1.08);
}
.case-title {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
}
.case-arrow {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #b9b9b9;
  transition: transform 0.3s ease;
}
.case-card:hover .case-arrow {
  transform: translateX(5px);
}
.case-arrow::after {
  content: "›";
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-40%, -50%);
  font-size: 35px;
  color: #fff;
}
.breadcrumb {
  margin: auto;
  padding: 10px 20px;
  font-size: 14px;
  background-color: #eae9e9;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb li {
  color: #666;
}
.breadcrumb li + li::before {
  content: ">";
  margin: 0 10px;
  color: #000;
}
.breadcrumb a {
  text-decoration: none;
  color: #000;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
[id] {
  scroll-margin-top: 120px;
}
.case {
  padding: 80px 0;
}
.case-inner {
  width: min(1100px, 90%);
  margin: auto;
}
.case-head {
  display: flex;
  position: relative;
  top: 15px;
  left: -10px;
}
.case-labels {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 6px 20px;
  font-size: 20px;
  letter-spacing: 0.1em;
}
.case-titles {
  font-size: 25px;
  line-height: 1.6;
  font-weight: 500;
  padding: 0 0 20px 15px;
}
.case-spec {
  padding: 60px;
  background-color: #fff;
}
.case-spec-title {
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 500;
}
.case-diagram {
  text-align: center;
  margin-bottom: 40px;
}
.case-diagram img {
  width: 100%;
}
.case-table {
  border-collapse: collapse;
  max-width: 830px;
}
.case-table th,
.case-table td {
  border: 1px solid #999;
  padding: 10px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
}
.case-table th {
  width: 250px;
}
.case-pdf {
  display: none;
}
.btn-cnt {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.point {
  padding: 50px 24px 20px;
}
.point.is-visible .point-text {
  opacity: 1;
  transform: translateY(0);
  margin-top: 50px;
}
.point-inner {
  max-width: 1100px;
  margin: auto;
}
.point-head {
  margin-bottom: 60px;
}
.point-block {
  position: relative;
  margin-bottom: 70px;
}
.point-card {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  background: #fff;
  padding: 30px;
  align-items: center;
  position: relative;
  top: 20px;
}
.point-content h3 {
  font-size: 24px;
  margin-bottom: 18px;
  font-weight: 500;
}
.point-content p {
  font-size: 15px;
  line-height: 2;
}
.point-image img {
  width: 90%;
  display: block;
}
.point-frame::before {
  top: -10px;
  content: "";
  position: absolute;
  left: -10px;
  width: calc(100% + 0px);
  height: calc(100% + -10px);
  background: #000;
  z-index: -1;
}
.point-text p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 16px;
  text-align: center;
}
.lineup-group-1 span {
  margin-left: 250px;
  font-size: 13px;
  line-height: 1.8;
  margin-top: 10px;
}
.lineup-card span {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 10px;
}
.scene {
  padding: 50px 0 50px;
  overflow: hidden;
}
.scene img {
  width: 100%;
  height: auto;
  display: block;
}
.scene-pc {
  position: relative;
  width: 100%;
  height: 40vw;
  max-height: 550px;
}
.scene-item {
  position: absolute;
  width: 35vw;
  max-width: 1920px;
  opacity: 0;
}
.scene-item img {
  width: 100%;
  display: block;
}
.scene-1 {
  left: -3%;
  top: 0;
  transform: translate(-120px, 120px);
}
.scene-2 {
  left: 21%;
  top: 0;
  transform: translate(120px, -120px);
}
.scene-3 {
  left: 44%;
  top: 8%;
  transform: translate(-120px, 120px);
}
.scene-4 {
  right: -3.3%;
  top: 8%;
  transform: translate(120px, -120px);
}
.scene-item.show {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.scene-2.show {
  transition-delay: 0.15s;
}
.scene-3.show {
  transition-delay: 0.35s;
}
.scene-4.show {
  transition-delay: 0.55s;
}
.scene-sp {
  display: none;
}
.scene-sp-left,
.scene-sp-right {
  width: 85%;
  opacity: 0;
}
.scene-sp-left {
  transform: translate(-60px, 60px);
}
.scene-sp-right {
  margin-left: auto;
  margin-top: -15%;
  transform: translate(60px, -60px);
}
.scene-sp img {
  width: 100%;
}
.scene-sp-left.show,
.scene-sp-right.show {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.lineup {
  padding: 0 24px 80px;
}
.lineup-inner {
  max-width: 1100px;
  margin: auto;
}
.lineup-head {
  margin-bottom: 60px;
}
.lineup-group {
  margin-bottom: 70px;
}
.lineup-group-3 {
  margin-bottom: 10px;
}
.lineup-group-1 {
  max-width: 800px;
}
.lineup-products {
  display: grid;
  grid-template-columns: 240px repeat(3, 1fr);
  align-items: end;
  margin-bottom: 0;
}
.lineup-products-2 {
  grid-template-columns: 240px repeat(2, 1fr);
}
.lineup-product {
  text-align: center;
}
.lineup-product img {
  margin: auto;
  display: block;
}
.lineup-product-1 img {
  max-height: 300px;
}
.lineup-product-2 img {
  max-height: 350px;
}
.lineup-product-3 img {
  max-height: 150px;
}
.lineup-name {
  margin: 20px 0;
  font-weight: 600;
}
.lineup-compare {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 15px;
}
.lineup-compare th,
.lineup-compare td {
  border: 1px solid #bbb;
  padding: 10px 30px;
  text-align: left;
}
.lineup-compare th {
  width: 240px;
  text-align: left;
  font-weight: 500;
}
.lineup-compare td {
  font-size: 18px;
}
.lineup-note {
  margin-left: 250px;
  font-size: 13px;
  line-height: 1.8;
  margin-top: 10px;
}
.lineup-pc {
  display: block;
}
.lineup-sp {
  display: none;
}
.lineup-compare tr > *:first-child {
  border-left: none;
}
.lineup-compare tr > *:last-child {
  border-right: none;
}
.pd-left {
  padding-left: 15px;
}
.layout-example {
  padding: 40px 24px 120px;
}
.layout-inner {
  max-width: 1100px;
  margin: auto;
}
.layout-head {
  margin-bottom: 60px;
}
.layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.layout-card {
  background: #fff;
  padding: 30px;
  position: relative;
}
.layout-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: -1;
}
.layout-title {
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 500;
}
.layout-card img {
  max-height: 350px;
  display: block;
  margin: auto;
}
@media (max-width: 1440px) {
  .about-images {
    column-gap: 10px;
  }
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .about {
    padding: 110px 24px 50px 24px;
  }
  .about-inner {
    max-width: 1000px;
    gap: 20px;
  }
  .about.is-visible .about-text {
    margin-top: 0;
  }
  .image-main {
    width: 250px;
  }
  .image-sub {
    width: 250px;
    margin-top: -50px;
  }
  .point.is-visible .point-text {
    margin-top: 0;
  }
}
@media (max-width: 1440px) and (min-width: 769px) {
  .header-top {
    padding: 10px 24px 0 24px;
  }
  .gnav ul {
    padding: 0 0 10px 0;
  }
}
@media (max-width: 1350px) {
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin-top: 10px;
  }
}
@media (max-width: 1250px) and (min-width: 769px) {
  .footer {
    padding: 60px 30px 30px;
  }
}
@media (max-width: 1024px) {
  .about {
    padding: 50px 15px 20px;
  }
  .about.is-visible .about-text {
    margin-top: 0;
  }
  .about.is-visible .about-images {
    justify-content: flex-end;
  }
  .case-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .point.is-visible .point-text {
    margin-top: 0;
  }
  .point-text p {
    font-size: 14px;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .gnav li + li::before {
    margin: 0 20px;
  }
  .about-inner {
    max-width: 800px;
    gap: 20px;
  }
  .image-main {
    margin-top: 0;
    width: 200px;
  }
  .image-sub {
    width: 200px;
  }
}
@media (max-width: 1200px) {
  .mb-none-1200,
  .br-1200 {
    display: none;
  }
  .split {
    overflow: visible;
  }
  .merit {
    padding: 50px 24px 20px;
  }
  .merit-inner {
    max-width: 400px;
  }
  .merit-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mt-frame {
    padding-top: 0;
  }
  .mt-frame::before {
    height: 270px;
    top: -10px;
  }
  .merit-card {
    grid-template-columns: 1fr;
    box-shadow: none;
  }
  .merit-image {
    position: relative;
    z-index: 1;
    top: 0;
  }
  .merit-image img {
    height: 270px;
  }
  .merit-content {
    padding: 20px 0px;
    height: auto;
  }
}

@media (max-width: 1000px) {
  .mb-none-1000,
  .br-1000 {
    display: none;
  }
  .wood__inner {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .wood__content {
    top: 0;
  }
  .wood__sub {
    text-align: left;
  }
  .wood__logo {
    height: 40px;
    max-width: 250px;
  }
  .wood__image img {
    max-width: 500px;
  }
}
@media (max-width: 900px) {
  .ccase__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .ccase__moreWrap {
    position: relative;
    transform: none;
    margin-top: 20px;
    top: 0;
  }
}
@media (max-width: 768px) {
  .mb-none-768 {
    display: none;
  }
  .footer {
    padding: 50px 20px 30px;
  }
  .footer-inner {
    flex-direction: column;
    border-bottom: none;
    gap: 20px;
    width: 170px;
    margin: auto;
    padding-bottom: 20px;
  }
  .footer-logo {
    text-align: center;
  }
  .footer-logo img {
    width: 160px;
  }
  .link-col {
    padding-left: 0;
    border-left: none;
  }
  .link-col:nth-child(3) {
    border-top: 1px solid #ccc;
    border-left: none;
    padding-top: 30px;
  }
  .footer-buttons {
    width: 100%;
    max-width: 150px;
    gap: 13px;
  }
  .footer-btn {
    width: 100%;
    font-size: 13px;
    padding: 8px 20px;
  }
  .footer-bottom-left {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }
  .footer-bottom-left a {
    padding: 0 10px;
  }
  .footer-box {
    flex-direction: column;
    gap: 20px;
    margin: auto;
  }
  .footer-copy {
    font-size: 0.6rem;
  }
  .title {
    font-size: 28px;
    text-align: center;
  }
  .label {
    text-align: center;
  }
  .logo img {
    width: 100px;
  }
  .gnav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    transform: translateY(-100%);
    z-index: 900;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .gnav.is-open {
    transform: translateY(0);
  }
  .gnav ul {
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(-10px);
    transition:
      opacity 0.4s ease,
      transform 0.4s ease;
  }
  .gnav.is-open ul {
    opacity: 1;
    transform: translateY(0);
  }
  .gnav li {
    width: 100%;
    border-top: 1px solid #eee;
    transition: background-color 0.25s ease;
  }
  .gnav li:active {
    background: rgba(0, 0, 0, 0.05);
  }
  .gnav a {
    display: block;
    padding: 16px;
    font-size: 18px;
    letter-spacing: 0.04em;
  }
  .nav-link::after {
    content: none;
  }
  .gnav li + li::before {
    content: "";
    margin: 0;
  }
  .fv {
    flex-direction: column;
  }
  .fv-image {
    flex: none;
    width: 100%;
  }
  .fv-switch {
    flex: none;
    width: 100%;
    height: 20px;
  }
  .fv-switch img {
    width: 100px;
  }
  .switch-pc {
    display: none;
  }
  .switch-sp {
    display: block;
  }
  .about-inner {
    max-width: 500px;
    grid-template-columns: 1fr;
  }
  .about-images {
    justify-items: center;
  }
  .image-main {
    width: 100%;
    margin-left: 0;
    margin-top: -80px;
  }
  .image-sub {
    width: 100%;
    margin-left: 0;
    margin-top: -20px;
  }
  .usecase {
    padding: 50px 16px 20px;
  }
  .usecase-inner {
    max-width: 500px;
  }
  .uc-block {
    margin-top: 56px;
  }
  .uc-tag {
    top: -15px;
    left: -5px;
  }
  .uc-frame::before {
    left: -5px;
    top: 15px;
    width: calc(100% + 0px);
    height: calc(100% + -20px);
  }
  .uc-split {
    grid-template-columns: 1fr;
  }
  .uc-pane {
    position: relative;
  }
  .uc-pane::after {
    content: attr(data-badge);
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 60px;
    height: 28px;
    background: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  }
  .uc-pane[data-badge="ON"]::after {
    color: #e60012;
  }
  .uc-pane[data-badge="OFF"]::after {
    color: #111;
    top: 10px;
  }
  .uc-badges {
    display: none;
  }
  .uc-desc {
    margin-top: 20px;
    line-height: 1.8;
  }
  .glass-types {
    margin: 50px 0 20px;
    max-height: 500px;
  }
  .glass-types-bg:has(.glass-types-btn:hover) .glass-types-media::after {
    background: rgba(255, 255, 255, 0);
  }
  .glass-types-media img {
    max-height: 400px;
    max-width: 400px;
    transform: scale(1);
    margin: auto;
  }
  .glass-types-overlay {
    max-height: 400px;
    max-width: 400px;
    margin: auto;
  }
  .glass-types-btn:hover {
    transform: none;
    box-shadow: none;
  }
  .glass-types-btn::before {
    transform: scaleX(0);
  }
  .ccase {
    margin: 50px 0 20px;
  }
  .ccase__bg:has(.ccase__more:hover)::after {
    background: rgba(255, 255, 255, 0);
  }
  .ccase__more:hover {
    transform: none;
    box-shadow: none;
  }
  .case-hero h1 {
    font-size: 18px;
    padding: 10px 15px;
    min-width: 190px;
    text-align: center;
  }
  .case-head {
    top: 20px;
    left: -5px;
    display: block;
  }
  .case-labels {
    padding: 0 10px;
    font-size: 18px;
  }
  .case-titles {
    font-size: 20px;
    padding: 15px 0 20px;
  }
  .case-spec {
    padding: 30px 20px 50px;
  }
  .case-spec-title {
    margin-bottom: 5px;
  }
  .case-table tr {
    display: block;
    margin-bottom: 10px;
    margin-bottom: 0;
  }
  .case-table th,
  .case-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  .case-table th {
    background: #eee;
    border-bottom: none;
  }
  .case {
    padding: 10px 0 30px;
  }
  .case-title {
    font-size: 18px;
  }
  .case-diagram {
    display: none;
  }
  .case-table {
    margin: 5px 0 30px;
  }
  .case-pdf {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #000;
    padding: 16px 22px;
    border-radius: 40px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    max-width: 260px;
    margin: auto;
  }
  .case-box {
    margin: auto;
    width: 250px;
  }
  .point {
    padding: 40px 20px 10px;
  }
  .point-card {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0;
  }
  .point-image {
    order: -1;
  }
  .point-image img {
    width: 100%;
  }
  .point-content {
    padding: 30px 24px 35px;
  }
  .point-content h3 {
    font-size: 20px;
  }
  .point-content p {
    font-size: 14px;
  }
  .point-tag {
    top: -15px;
    left: -5px;
  }
  .point-frame::before {
    left: -5px;
    top: -5px;
    width: calc(100% + 0px);
    height: calc(100% + -10px);
  }
  .point-inner {
    max-width: 500px;
  }
  .scene {
    padding: 50px 0;
  }
  .scene-pc {
    display: none;
  }
  .scene-sp {
    display: block;
    max-width: 768px;
    margin: auto;
    position: relative;
  }
  .scene-sp-left,
  .scene-sp-right {
    width: 85%;
    margin: auto;
    opacity: 0;
  }
  .scene-sp-left {
    transform: translate(-80px, 80px);
    margin-left: -8%;
  }
  .scene-sp-right {
    transform: translate(80px, -80px);
    margin-top: -70%;
    margin-left: 24%;
  }
  .scene-sp img {
    width: 100%;
    display: block;
  }
  .scene-sp-left.show,
  .scene-sp-right.show {
    opacity: 1;
    transform: translate(0, 0);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .lineup {
    padding: 50px 30px 0;
  }
  .lineup-pc {
    display: none;
  }
  .lineup-sp {
    display: block;
    max-width: 500px;
    margin: auto;
  }
  .lineup-card-3 {
    text-align: center;
  }
  .lineup-card-3 img {
    max-height: 150px;
  }
  .lineup-card-3 table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    border: 1px solid #bbb;
  }
  .lineup-card-3 th {
    background: #eee;
    padding: 10px;
    font-size: 14px;
  }
  .lineup-card-3 td {
    padding: 10px;
    font-size: 14px;
  }
  .lineup-card {
    text-align: center;
    margin-bottom: 60px;
  }
  .lineup-card img {
    max-height: 200px;
  }
  .lineup-card table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    border: 1px solid #bbb;
  }
  .lineup-card th {
    background: #eee;
    padding: 5px;
    font-size: 14px;
  }
  .lineup-card td {
    padding: 10px;
    font-size: 14px;
  }
  .lineup-name {
    margin: 10px 0;
  }
  .lineup-note {
    margin: 10px 0 60px 10px;
  }
  .layout-example {
    padding: 30px 20px 80px;
  }
  .layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .layout-card {
    padding: 20px;
  }
  .layout-title {
    font-size: 18px;
  }
  .layout-card::before {
    top: -5px;
    left: -5px;
  }
  .layout-inner {
    max-width: 500px;
  }
}
@media (max-width: 768px) and (min-width: 321px) {
  .header-top {
    padding: 16px 10px 10px;
  }
}
@media (max-width: 600px) {
  .case-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .ccase__more {
    padding: 9px 18px;
  }
}
@media (max-width: 425px) {
  .mb-none-425 {
    display: none;
  }
}
@media (max-width: 375px) {
  .about-text p {
    font-size: 13px;
    letter-spacing: -1px;
  }
  .uc-desc {
    font-size: 14px;
  }
  .point-text p {
    font-size: 13px;
    letter-spacing: -0.1px;
  }
}
@media (max-width: 320px) {
  .header-top {
    padding: 16px 0 10px;
  }
}
@media (min-width: 426px) {
  .br-425,
  .pc-none-425 {
    display: none;
  }
}
@media (min-width: 769px) {
  .br-768,
  .pc-none-768 {
    display: none;
  }
}

@media (min-width: 1201px) {
  .pc-none-1200 {
    display: none;
  }
}
@media (min-width: 1001px) {
  .pc-none-1000 {
    display: none;
  }
  .wood__btn {
    width: auto;
    margin-top: 0;
    position: absolute;
    left: 0;
    top: 40px;
    transform: translateY(190px);
  }
}
.wd-1100 {
  max-width: 1100px;
  margin: auto;
}

.glass-products-types-wrapper {
  padding: 80px 20px 20px;
}

.glass-products-type-section-title {
  margin-bottom: 60px;
}
.glass-products-type-block {
  position: relative;
  width: 100%;
  margin: 40px auto;
}

.glass-products-type-block::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -6px;
  width: 98%;
  height: 8px;
  background: #333;
}

.glass-products-type-block::after {
  content: "";
  position: absolute;
  top: 0;
  left: -6px;
  width: 8px;
  height: calc(100% - 20px);
  background: #333;
}

.glass-products-type-title h3 {
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-weight: 500;
}

@media all and (max-width: 1000px) {
  .glass-products-type-title h3 {
    margin-bottom: 20px;
    font-size: 20px;
    letter-spacing: 0.05em;
  }

  .glass-products-types-wrapper {
    padding: 40px 20px 20px;
  }
}

.glass-products-type-block-space {
  padding-left: 12px;
}

.glass-products-type-left {
  margin-top: 10px;
  padding-left: 50px;
  position: relative;
  text-align: left;
}

@media all and (max-width: 1000px) {
  .glass-products-type-left {
    padding-left: 0;
  }
}

.glass-products-type-description {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.1em;
}

@media all and (max-width: 1000px) {
  .glass-products-type-description {
    margin: 0 auto 15px;
    letter-spacing: 0.03em;
    font-size: 14px;
  }
}

@media all and (max-width: 1000px) {
  .glass-products-types-pc_br {
    display: none;
  }
}

.glass-products-types-mobile_br {
  display: none;
}

@media all and (max-width: 1000px) {
  .glass-products-types-mobile_br {
    display: inline;
  }
}

.glass-products-type-right {
  display: flex;
  justify-content: flex-end;
  margin-right: 5%;
}

@media all and (max-width: 1000px) {
  .glass-products-type-right {
    justify-content: center;
    margin: 0 auto;
  }
}

.glass-products-type-right.solar-control {
  justify-content: center;
  gap: 20px;
}

@media all and (max-width: 1000px) {
  .glass-products-type-right.solar-control {
    flex-direction: column;
    align-items: center;
  }
}
.glass-products-type-image {
  width: 150px;
  margin: 10px 30px;
}

@media all and (max-width: 1000px) {
  .glass-products-type-image {
    margin: 8px;
  }
}

.glass-products-type-image.solar-control {
  width: 220px;
  margin: 15px 0 0 0;
}

@media all and (max-width: 1000px) {
  .glass-products-type-image.solar-control {
    width: 200px;
  }
}

.glass-products-type-image img {
  width: 100%;
  height: auto;
  display: block;
}

.glass-products-type-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
}

@media all and (max-width: 1000px) {
  .glass-products-type-row {
    display: block;
  }
}

.glass-products-type-more-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  cursor: pointer;
  padding: 30px 0;
  user-select: none;
  transition: opacity 0.2s;
}

.glass-products-type-more-trigger:hover {
  opacity: 0.7;
}

.glass-products-type-arrow {
  width: 10px;
  height: 10px;
  border-left: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(-45deg);
  transition: transform 200ms ease;
  flex-shrink: 0;
}

.is-open .glass-products-type-arrow {
  transform: rotate(135deg);
}

.glass-products-type-text-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 7em;
  position: relative;
}

.glass-products-type-open-text,
.glass-products-type-close-text {
  white-space: nowrap;
}

.glass-products-type-close-text {
  display: none;
}

.is-open .glass-products-type-open-text {
  display: none;
}

.is-open .glass-products-type-close-text {
  display: inline;
}

.glass-products-type-block-content {
  height: 0;
  overflow: hidden;
}
.glass-products-type-block-content-inner {
  width: 93%;
  padding: 8px 0;
  margin: auto;
}

.capability-title-sideline {
  width: 100%;
  border: 1px solid #050505;
}

.capability-title h3 {
  font-size: 20px;
  line-height: 25px;
  margin-left: 20px;
  letter-spacing: 0.05em;
  padding: 10px;
  font-weight: 500;
}

@media all and (max-width: 1000px) {
  .capability-title {
    font-size: 14px;
  }
  .capability-title h3 {
    font-size: 18px;
  }
}

.capability-block {
  margin: 20px 0 40px;
}

.capability-performance-evaluation-methods-block {
  display: flex;
  gap: 60px;
}

@media all and (max-width: 1000px) {
  .capability-performance-evaluation-methods-block {
    flex-direction: column;
    align-items: center;
  }
}

.capability-sub-title {
  font-size: 20px;
  line-height: 40px;
  margin-bottom: 10px;
}

@media all and (max-width: 1000px) {
  .capability-sub-title p {
    font-size: 16px;
    margin: 0;
    margin-top: 30px;
    letter-spacing: 0.05em;
  }
}

.capability-performance-evaluation-methods-block-row {
  margin-left: 80px;
}

@media all and (max-width: 1000px) {
  .capability-performance-evaluation-methods-block-row {
    margin: 0;
    margin-top: -30px;
    order: 2;
  }
}

.capability-performance-evaluation-methods-image {
  width: 200px;
}

@media all and (max-width: 1000px) {
  .capability-performance-evaluation-methods-image {
    width: 200px;
  }
}

.capability-performance-evaluation-methods-image img {
  width: 100%;
  height: auto;
}

.capability-performance-evaluation-methods-items {
  display: flex;
  gap: 26px;
  font-size: 16px;
  text-align: center;
  white-space: nowrap;
}

.capability-performance-evaluation-methods-item.wall {
  padding-left: 10px;
}

@media all and (max-width: 1000px) {
  .capability-performance-evaluation-methods-item.wall {
    padding-left: 6px;
  }
}

@media all and (max-width: 1000px) {
  .capability-performance-evaluation-methods-items {
    gap: 28px;
  }
}

.capability-performance-evaluation-methods-description {
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  margin: auto 0;
}

@media all and (max-width: 1000px) {
  .capability-performance-evaluation-methods-description {
    padding: 0 10px;
    order: 1;
    letter-spacing: 0.05em;
    font-size: 14px;
  }

  .capability-performance-evaluation-methods-description p {
    margin: 0;
  }
}
.capability-performance-evaluation-result-table-block-mobile {
  display: none;
}
@media all and (max-width: 1000px) {
  .capability-performance-evaluation-result-table-block-mobile {
    display: block;
  }
}

@media all and (max-width: 1000px) {
  .capability-performance-evaluation-result-table-block-pc {
    display: none;
  }
}

.capability-performance-evaluation-result-table {
  overflow-wrap: break-word;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.capability-performance-evaluation-result-table th,
.capability-performance-evaluation-result-table td {
  border: 1px solid #000000;
  padding: 3px 12px;
  text-align: center;
  vertical-align: middle;
  word-break: break-word;
  font-size: 16px;
  line-height: 44px;
}

@media all and (max-width: 1000px) {
  .capability-performance-evaluation-result-table td {
    padding: 2px 0;
    border: none;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #edebeb;
  }

  .capability-performance-evaluation-result-table th,
  .capability-performance-evaluation-result-table td {
    letter-spacing: 0.1em;
  }
}
.capability-performance-evaluation-result-table .evaluation-result-table-items {
  padding-left: 70px;
  text-align: left;
}

@media all and (max-width: 1000px) {
  .evaluation-result-table-value.end,
  .evaluation-result-table-items.end {
    border-bottom: 1px solid #000000;
  }
}

@media all and (max-width: 1000px) {
  .capability-performance-evaluation-result-table .evaluation-result-table-items {
    padding-left: 15px;
    line-height: 1.5;
    font-size: 14px;
  }
}

.capability-performance-evaluation-result-table tr:first-child th {
  width: 30%;
  background-color: #edebeb;
  line-height: 1.5;
  padding: 15px 0;
}

@media all and (max-width: 1000px) {
  .evaluation-result-table-section {
    background-color: #edebeb;
  }
}

.capability-performance-evaluation-result-table th:first-child,
.capability-performance-evaluation-result-table td:first-child {
  border-left: none;
}

.capability-performance-evaluation-result-table th:last-child,
.capability-performance-evaluation-result-table td:last-child {
  border-right: none;
}

@media all and (max-width: 1000px) {
  .capability-performance-evaluation-result-table th:first-child,
  .capability-performance-evaluation-result-table td:first-child {
    border-left: 1px solid #000000;
  }

  .capability-performance-evaluation-result-table th:last-child,
  .capability-performance-evaluation-result-table td:last-child {
    border-right: 1px solid #000000;
    font-size: 14px;
  }
}

@media all and (min-width: 1000px) {
  .capability-performance-evaluation-result-table tr:nth-child(2) td {
    font-size: 16px;
  }
}

.capability-performance-evaluation-result-footnote {
  font-size: 13px;
  line-height: 25px;
  letter-spacing: -3%;
  color: #716c6c;
  margin: 20px 0 30px;
}

@media all and (max-width: 1000px) {
  .capability-performance-evaluation-result-footnote {
    margin-bottom: 10px;
    padding: 8px;
    letter-spacing: 0.05em;
  }
}

.capability-performance-evaluation-result-text {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -2%;
}

@media all and (max-width: 1000px) {
  .capability-performance-evaluation-result-text {
    padding: 8px;
    line-height: 2;
    letter-spacing: 0.02em;
    font-size: 14px;
  }
}

.capability-performance-span {
  color: #ea3737;
}

.mechanism {
  background-color: #000000;
  color: #fdfbfb;
  margin: 20px 0;
  padding: 80px 20px;
}

.mechanism-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.mechanism-title {
  font-weight: 600;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0%;
  margin-bottom: 60px;
}

.mechanism-container {
  display: grid;
  grid-template-columns: 6fr 4fr;
  column-gap: 5vw;
  align-items: start;
}

.text-container {
  grid-column: 1;
  display: flex;
  flex-direction: column;
}

.mechanism-text {
  order: 1;
  font-size: 16px;
  line-height: 35px;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.mechanism-img-wrap {
  order: 2;
  display: flex;
  gap: 20px;
  padding: clamp(20px, 2vw, 40px);
  border: 2px solid #fff;
  justify-content: center;
  max-width: 600px;
}

.mechanism-img-wrap img {
  flex: 1 1 auto;
  max-width: 270px;
  height: auto;
  display: block;
}

.mechanism-img {
  grid-column: 2;
  display: flex;
  justify-content: center;
}

.mechanism-img img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .text-container {
    margin: auto;
  }
  .mechanism-img img {
    max-width: 250px;
  }
  .mechanism {
    padding: 50px 20px;
  }
  .mechanism-inner {
    max-width: 800px;
  }
  .mechanism-container {
    display: flex;
    flex-direction: column;
  }

  .mechanism-title {
    font-weight: 600;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0%;
  }

  .mechanism-img {
    order: -1;
    width: 100%;
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
    margin-bottom: 25px;
  }

  .mechanism-img-wrap {
    order: 1;
    flex-direction: column;
    padding: 30px 10px;
    max-width: 250px;
    margin: auto;
  }

  .mechanism-img-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .mechanism-text {
    order: 2;
    font-size: 14px;
    line-height: 32px;
    letter-spacing: -3%;
    margin-top: 40px;
  }
}

.outer {
  width: 100%;
  max-width: 1100px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 80px 20px 100px;
}

.type {
  width: 600px;
  margin-top: 50px;
  font-size: 19px;
}

.table {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  height: 250px;
  border-collapse: collapse;
}

.table th {
  width: 400px;
  text-align: center;
  position: relative;
  font-weight: normal;
}

.table td {
  text-align: center;
}

.table th span {
  display: inline-block;
  text-align: left;
  width: 8em;
  white-space: nowrap;
}

.table th,
.table td {
  border: 1px solid #bdbdbd;
  padding: 8px;
}

.table tr > *:first-child {
  border-left: none;
}

.table tr > *:last-child {
  border-right: none;
}

.product-content {
  margin-top: 10px;
}

.product-content .message {
  font-size: 15px;
}

.product-content .message .sp-br {
  display: none;
}

.product-content .message .sp-br .sp-indent {
  margin-left: 0;
}

.product-care {
  margin-top: 20px;
  color: #686868;
}

.product-care p {
  font-size: 13px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .outer {
    width: 94%;
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 50px 20px 100px;
  }

  .product-spec-JP {
    font-size: 22px;
  }

  .type {
    width: 100%;
    max-width: 650px;
  }

  .table {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .table th {
    width: 300px;
  }
}
@media all and (max-width: 767px) {
  .outer {
    width: 90%;
    max-width: 760px;
    padding: 0 10px;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 40px 20px 80px;
  }

  .product-spec-EN {
    font-size: 15px;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
  }

  .product-spec-JP {
    font-size: 20px;
  }

  .type {
    width: 100%;
    font-size: 18px;
    max-width: 600px;
  }

  .table {
    height: auto;
    border: 1px solid #000;
  }

  .table tr {
    display: block;
  }

  .table td {
    display: block;
  }

  .table th span {
    display: inline;
    width: auto;
    text-align: initial;
  }

  .table th,
  .table td {
    display: block;
    width: 100%;
    border-bottom: 1px solid #000;
    padding: 8px;
    text-align: center;
  }

  .table th {
    background: #edebeb;
  }

  .product-content .message {
    margin-top: 20px;
    font-size: 14px;
  }

  .product-content .message .sp-br {
    display: inline;
  }

  .product-content .message .sp-indent {
    padding-left: 16px;
  }

  .product-care {
    margin-top: 40px;
  }

  .product-care p {
    line-height: 2;
  }
}
