@charset "UTF-8";
.button-circle--blue {
  position: relative;
  display: block;
  background-color: var(--color-navy);
  border-radius: 50%;
}
.button-circle--blue__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 36.67%;
  transform: translate(-50%, -50%);
  aspect-ratio: 22/17;
}
.button-circle--blue__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color-white);
  transition: color 0.3s ease;
}
.button-circle--blue__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
}
.button-circle--blue:hover, .button-circle--blue:active {
  border: solid 1px var(--color-navy);
}
.button-circle--blue:hover .button-circle--blue__arrow svg, .button-circle--blue:active .button-circle--blue__arrow svg {
  color: var(--color-navy);
}
.button-circle--blue:hover .button-circle--blue__inner, .button-circle--blue:active .button-circle--blue__inner {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.button-circle--blue--diagonal {
  position: relative;
  display: block;
  background-color: var(--color-navy);
  border-radius: 50%;
}
.button-circle--blue--diagonal__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 36.67%;
  transform: translate(-50%, -50%);
  aspect-ratio: 22/17;
}
.button-circle--blue--diagonal__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color-white);
  transition: color 0.3s ease;
  transform: rotate(-45deg);
}
.button-circle--blue--diagonal__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
}
.button-circle--blue--diagonal:hover, .button-circle--blue--diagonal:active {
  border: solid 1px var(--color-navy);
}
.button-circle--blue--diagonal:hover .button-circle--blue--diagonal__arrow svg, .button-circle--blue--diagonal:active .button-circle--blue--diagonal__arrow svg {
  color: var(--color-navy);
}
.button-circle--blue--diagonal:hover .button-circle--blue--diagonal__inner, .button-circle--blue--diagonal:active .button-circle--blue--diagonal__inner {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.button-circle--red {
  position: relative;
  display: block;
  background-color: var(--color-red);
  border-radius: 50%;
}
.button-circle--red__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 36.67%;
  transform: translate(-50%, -50%);
  aspect-ratio: 22/17;
}
.button-circle--red__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color-white);
  transition: color 0.3s ease;
}
.button-circle--red__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
}
.button-circle--red:hover, .button-circle--red:active {
  border: solid 1px var(--color-red);
}
.button-circle--red:hover .button-circle--red__arrow svg, .button-circle--red:active .button-circle--red__arrow svg {
  color: var(--color-red);
}
.button-circle--red:hover .button-circle--red__inner, .button-circle--red:active .button-circle--red__inner {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.button-circle--white {
  position: relative;
  display: block;
  background-color: var(--color-white);
  border-radius: 50%;
}
.button-circle--white__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 36.67%;
  transform: translate(-50%, -50%);
  aspect-ratio: 22/17;
}
.button-circle--white__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color-navy);
  transition: color 0.3s ease;
}
.button-circle--white__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-navy);
  border-radius: 50%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
}
.button-circle--white:hover .button-circle--white__arrow svg, .button-circle--white:active .button-circle--white__arrow svg {
  color: var(--color-white);
}
.button-circle--white:hover .button-circle--white__inner, .button-circle--white:active .button-circle--white__inner {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.button-plus--blue {
  position: relative;
  background: #0e0e8f;
  border-radius: 50%;
}
.button-plus--blue__plus {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 10px;
  transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
}
.button-plus--blue__plus svg {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  transition: color 0.3s ease;
}
@media (width < 1440px) {
  .button-plus--blue__plus {
    width: 0.69vw;
  }
}
@media (width <= 767px) {
  .button-plus--blue__plus {
    width: 6px;
  }
}

.pdf-link__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 160px;
  height: 38px;
  background: #ffffff;
  border: 1px solid #6c6c6c;
  border-radius: 100px;
  cursor: pointer;
}
@media (width < 1440px) {
  .pdf-link__link {
    gap: 0.69vw;
    width: 12vw;
    height: 2.64vw;
    padding: 0.56vw 1.53vw 0.56vw 1.78vw;
  }
}
@media (width <= 767px) {
  .pdf-link__link {
    gap: 8px;
    width: 120px;
    height: 28px;
    padding: 6px 16px 6px 18px;
  }
}
.pdf-link__link-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.05em;
  color: var(--color-black);
  white-space: nowrap;
}
@media (width < 1440px) {
  .pdf-link__link-text {
    font-size: 0.97vw;
  }
}
@media (width <= 767px) {
  .pdf-link__link-text {
    font-size: 10px;
  }
}
.pdf-link__link-icon {
  width: 29px;
  aspect-ratio: 29/16;
}
@media (width < 1440px) {
  .pdf-link__link-icon {
    width: 2.01vw;
  }
}
@media (width <= 767px) {
  .pdf-link__link-icon {
    width: 16px;
  }
}

.coating-about {
  margin-top: min(8.33vw, 120px);
}
.coating-about__title-text {
  font-size: 40px;
  font-weight: 600;
  line-height: 160%;
  color: var(--blue-01);
}
@media (width < 1440px) {
  .coating-about__title-text {
    font-size: 2.78vw;
  }
}
@media (width <= 767px) {
  .coating-about__title-text {
    font-size: 24px;
  }
}
.coating-about__content {
  margin-top: 24px;
}
@media (width > 768px) {
  .coating-about__content {
    padding-right: 1px;
  }
}
@media (width < 1440px) {
  .coating-about__content {
    margin-top: 1.67vw;
  }
}
@media (width <= 767px) {
  .coating-about__content {
    margin-top: 16px;
  }
}
.coating-about__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: #000000;
}
@media (width < 1440px) {
  .coating-about__text {
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .coating-about__text {
    font-size: 12px;
  }
}
@media (width < 1440px) {
  .coating-about {
    margin-top: 6.94vw;
  }
}
@media (width <= 767px) {
  .coating-about {
    margin-top: 60px;
  }
}

.processing-examples {
  background-color: var(--blue-05);
  margin-top: min(8.33vw, 120px);
  padding-block: min(6.94vw, 100px);
}
.processing-examples__container {
  position: relative;
}
.processing-examples__container::before {
  position: absolute;
  top: calc(-1 * min(13.75vw, 198px));
  right: calc(-1 * min(8.06vw, 116px));
  display: block;
  width: min(18.06vw, 260px);
  /* prettier-ignore */
  background-image: image-set(url("../images/decoration_processing-examples-container.png") 1x, url("../images/decoration_processing-examples-container@2x.png") 2x);
  background-size: cover;
  background-position: center;
  aspect-ratio: 260/243;
  content: "";
}
@media (width < 768px) {
  .processing-examples__container::before {
    top: calc(-1 * min(6.88vw, 99px));
    right: calc(-1 * min(4.03vw, 58px));
  }
}
.processing-examples__header-text {
  font-size: min(2.08vw, 30px);
  color: var(--blue-01);
}
@media (width < 768px) {
  .processing-examples__header-text {
    font-size: 18px;
  }
}
.processing-examples__content {
  margin-top: min(2.22vw, 32px);
}
@media (width < 768px) {
  .processing-examples__content {
    margin-top: 20px;
  }
}
.processing-examples__list {
  position: relative;
  width: 100%;
  height: min(38.96vw, 561px);
  border-radius: min(1.11vw, 16px);
  overflow: hidden;
}
@media (width < 768px) {
  .processing-examples__list {
    width: 500px;
    max-width: 100%;
    height: 600px;
    border-radius: 10px;
    margin-inline: auto;
  }
}
.processing-examples__item {
  position: absolute;
  display: flex;
  gap: min(1.25vw, 18px);
  width: 100%;
  height: min(20.76vw, 299px);
  padding: min(2.08vw, 30px) min(2.08vw, 30px) min(3.54vw, 51px);
  border-radius: min(1.11vw, 16px);
  transition: all 0.3s ease;
}
.processing-examples__item.is-active {
  background-color: var(--blue-02);
}
@media (width < 768px) {
  .processing-examples__item {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 310px;
    border-radius: 10px;
    padding-top: 3%;
    padding-bottom: 0;
  }
}
.processing-examples__item--protect-film {
  top: 0px;
  z-index: 5;
  background: var(--color-white);
}
.processing-examples__item--window-film {
  top: min(19.38vw, 279px);
  z-index: 6;
  background: #f7f8ff;
}
.processing-examples__item--window-film.is-active, .processing-examples__item--window-film.is-before {
  transform: translateY(calc(-1 * min(12.71vw, 183px)));
}
@media (width < 768px) {
  .processing-examples__item--window-film {
    top: 280px;
  }
  .processing-examples__item--window-film.is-active, .processing-examples__item--window-film.is-before {
    transform: translateY(-220px);
  }
}
.processing-examples__item--dicing-tape {
  top: min(25.9vw, 373px);
  z-index: 7;
  background: var(--color-white);
}
.processing-examples__item--dicing-tape.is-active, .processing-examples__item--dicing-tape.is-before {
  transform: translateY(calc(-1 * min(12.71vw, 183px)));
}
@media (width < 768px) {
  .processing-examples__item--dicing-tape {
    top: 352px;
  }
  .processing-examples__item--dicing-tape.is-active, .processing-examples__item--dicing-tape.is-before {
    transform: translateY(-232px);
  }
}
.processing-examples__item--other {
  top: min(32.43vw, 467px);
  z-index: 8;
  background: #f7f8ff;
}
.processing-examples__item--other.is-active {
  transform: translateY(calc(-1 * min(12.71vw, 183px)));
}
@media (width < 768px) {
  .processing-examples__item--other {
    top: 420px;
    height: 419px;
  }
  .processing-examples__item--other.is-active, .processing-examples__item--other.is-before {
    transform: translateY(-239px);
  }
}
.processing-examples__text-wrapper {
  flex: 1;
}
@media (width < 768px) {
  .processing-examples__text-wrapper {
    flex: unset;
    padding-inline: 5%;
    align-self: flex-start;
  }
}
.processing-examples__item-title {
  font-size: min(1.81vw, 26px);
  font-weight: 700;
  line-height: 140%;
  color: var(--blue-02);
  transition: all 0.3s ease;
}
.is-active .processing-examples__item-title {
  color: var(--color-white);
}
@media (width < 768px) {
  .processing-examples__item-title {
    font-size: 15.6px;
  }
}
.processing-examples__item-text {
  font-size: min(1.11vw, 16px);
  font-weight: 400;
  line-height: 180%;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-top: min(0.97vw, 14px);
}
.is-active .processing-examples__item-text {
  opacity: 1;
}
@media (width < 768px) {
  .processing-examples__item-text {
    font-size: 11.2px;
    margin-top: 8.4px;
  }
}
.processing-examples__img-wrapper {
  width: min(24.44vw, 352px);
  opacity: 0;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}
.is-active .processing-examples__img-wrapper {
  opacity: 1;
  transition: opacity 0.3s ease;
}
@media (width < 768px) {
  .processing-examples__img-wrapper {
    width: clamp(12.5rem, 9.8154362416rem + 13.4228187919vw, 16.25rem);
    margin-block: auto;
  }
}
.processing-examples__item-list {
  display: flex;
  flex-direction: column;
  gap: min(0.28vw, 4px);
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-top: min(1.46vw, 21px);
}
.is-active .processing-examples__item-list {
  opacity: 1;
}
@media (width < 768px) {
  .processing-examples__item-list {
    gap: 3px;
  }
}
.processing-examples__item-list-item {
  display: flex;
  gap: min(0.56vw, 8px);
}
@media (width < 768px) {
  .processing-examples__item-list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
  }
}
.processing-examples__item-list-item-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(9.72vw, 140px);
  font-size: min(0.83vw, 12px);
  font-weight: 500;
  color: #516ed6;
  background: #dfe5fb;
  border-radius: min(0.76vw, 11px);
  aspect-ratio: 140/22;
}
@media (width < 768px) {
  .processing-examples__item-list-item-title {
    width: 110px;
    font-size: 10px;
    border-radius: 8px;
  }
}
.processing-examples__item-list-item-text {
  font-size: min(0.97vw, 14px);
  font-weight: 400;
  line-height: 160%;
  color: var(--color-white);
}
@media (width < 768px) {
  .processing-examples__item-list-item-text {
    font-size: 10px;
  }
}

.contract-products {
  margin-top: 120px;
  margin-bottom: 120px;
}
.contract-products__tabs {
  display: flex;
  gap: 4px;
}
@media (width < 1440px) {
  .contract-products__tabs {
    gap: 0.28vw;
  }
}
@media (width <= 767px) {
  .contract-products__tabs {
    gap: 2.4px;
  }
}
.contract-products__tab {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  height: 70px;
  font-size: 30px;
  font-weight: 500;
  color: var(--blue-01);
  background: var(--blue-05);
  border: none;
  border-radius: 10px 10px 0px 0px;
  cursor: pointer;
}
.contract-products__tab.panel-active {
  color: var(--color-white);
  background: linear-gradient(142.23deg, #516ed6 12.3%, #3620c7 89.4%);
  cursor: default;
}
@media (width < 1440px) {
  .contract-products__tab {
    height: 4.86vw;
    font-size: 2.08vw;
    border-radius: 0.69vw 0.69vw 0px 0px;
  }
}
@media (width <= 767px) {
  .contract-products__tab {
    height: 9vw;
    font-size: 2.5vw;
    border-radius: 6px 6px 0px 0px;
  }
}
.contract-products__panels {
  width: 100%;
}
.contract-products__panel {
  display: none;
  width: 100%;
  background: var(--color-white);
  border: 4px solid var(--blue-01);
  border-radius: 0px 0px 10px 10px;
  opacity: 0;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
}
.contract-products__panel.panel-active {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (width < 1440px) {
  .contract-products__panel {
    border-radius: 0px 0px 0.69vw 0.69vw;
    border-width: 0.28vw;
  }
}
@media (width <= 767px) {
  .contract-products__panel {
    border-radius: 0px 0px 6px 6px;
    border-width: 2.4px;
  }
}
.contract-products__panel--factory {
  padding-bottom: 70px;
}
@media (width < 1440px) {
  .contract-products {
    margin-top: 8.33vw;
    margin-bottom: 8.33vw;
  }
}
@media (width <= 767px) {
  .contract-products {
    margin-top: 72px;
    margin-bottom: 72px;
  }
}

.panel-contract {
  padding-block: 60px;
}
.panel-contract__inner {
  width: 969px;
  max-width: 95%;
  margin-inline: auto;
}
@media (width < 1440px) {
  .panel-contract__inner {
    width: 88.06%;
  }
}
@media (width <= 767px) {
  .panel-contract__inner {
    width: 610.8px;
  }
}
.panel-contract__outsourcing-intro-title-text {
  font-size: 30px;
  font-weight: 900;
  line-height: 160%;
  color: var(--blue-01);
}
@media (width < 1440px) {
  .panel-contract__outsourcing-intro-title-text {
    font-size: 2.08vw;
  }
}
@media (width <= 767px) {
  .panel-contract__outsourcing-intro-title-text {
    font-size: 18px;
  }
}
.panel-contract__outsourcing-intro-content {
  margin-top: 24px;
}
@media (width < 1440px) {
  .panel-contract__outsourcing-intro-content {
    margin-top: 1.67vw;
  }
}
@media (width <= 767px) {
  .panel-contract__outsourcing-intro-content {
    margin-top: 16px;
  }
}
.panel-contract__outsourcing-intro-content-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: var(--color-black);
}
@media (width < 1440px) {
  .panel-contract__outsourcing-intro-content-text {
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .panel-contract__outsourcing-intro-content-text {
    font-size: 12px;
  }
}
.panel-contract__outsourcing-intro-video {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
@media (width < 1440px) {
  .panel-contract__outsourcing-intro-video {
    margin-top: 4.17vw;
  }
}
@media (width <= 767px) {
  .panel-contract__outsourcing-intro-video {
    margin-top: 48px;
  }
}
.panel-contract__outsourcing-intro-video-video {
  width: 684px;
  aspect-ratio: 1200/707;
}
@media (width < 1440px) {
  .panel-contract__outsourcing-intro-video-video {
    width: 59.86vw;
  }
}
@media (width <= 767px) {
  .panel-contract__outsourcing-intro-video-video {
    width: 100%;
    max-width: 342px;
  }
}
.panel-contract__product-process {
  margin-top: 84px;
}
@media (width < 1440px) {
  .panel-contract__product-process {
    margin-top: 5.83vw;
  }
}
@media (width <= 767px) {
  .panel-contract__product-process {
    margin-top: 67px;
  }
}
.panel-contract__product-process-title-text {
  font-size: 30px;
  font-weight: 900;
  line-height: 120%;
  color: var(--blue-01);
}
@media (width < 1440px) {
  .panel-contract__product-process-title-text {
    font-size: 2.08vw;
  }
}
@media (width <= 767px) {
  .panel-contract__product-process-title-text {
    font-size: 18px;
  }
}
.panel-contract__product-process-content {
  margin-top: 30px;
}
@media (width < 1440px) {
  .panel-contract__product-process-content {
    margin-top: 2.08vw;
  }
}
@media (width <= 767px) {
  .panel-contract__product-process-content {
    margin-top: 24px;
  }
}
.panel-contract__product-process-content-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: var(--color-black);
}
@media (width < 1440px) {
  .panel-contract__product-process-content-text {
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .panel-contract__product-process-content-text {
    font-size: 12px;
  }
}
.panel-contract__product-process {
  margin-top: 83px;
}
@media (width < 1440px) {
  .panel-contract__product-process {
    margin-top: 5.56vw;
  }
}
@media (width <= 767px) {
  .panel-contract__product-process {
    margin-top: 64px;
  }
}
.panel-contract__product-process-title-text {
  font-size: 30px;
  font-weight: 900;
  line-height: 120%;
  color: var(--blue-01);
}
@media (width < 1440px) {
  .panel-contract__product-process-title-text {
    font-size: 2.08vw;
  }
}
@media (width <= 767px) {
  .panel-contract__product-process-title-text {
    font-size: 18px;
  }
}
.panel-contract__product-process-text {
  margin-top: 30px;
}
.panel-contract__product-process-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: var(--color-black);
}
@media (width < 1440px) {
  .panel-contract__product-process-text p {
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .panel-contract__product-process-text p {
    font-size: 12px;
  }
}
@media (width < 1440px) {
  .panel-contract__product-process-text {
    margin-top: 2.08vw;
  }
}
@media (width <= 767px) {
  .panel-contract__product-process-text {
    margin-top: 24px;
  }
}
.panel-contract__product-process-flow {
  margin-top: 36px;
}
@media (width < 1440px) {
  .panel-contract__product-process-flow {
    margin-top: 2.5vw;
  }
}
@media (width <= 767px) {
  .panel-contract__product-process-flow {
    margin-top: 28.8px;
  }
}
.panel-contract__product-process-flow-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 812px;
  margin-inline: auto;
}
@media (width < 1440px) {
  .panel-contract__product-process-flow-list {
    gap: 1.25vw;
    width: 56.53vw;
  }
}
@media (width <= 767px) {
  .panel-contract__product-process-flow-list {
    gap: 14.4px;
    width: 100%;
    max-width: 500px;
  }
}
.panel-contract__product-process-flow-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  background: var(--blue-05);
  border-radius: 14px;
  aspect-ratio: 812/70;
}
.panel-contract__product-process-flow-item .triangle {
  position: absolute;
  bottom: -10px;
  left: 70px;
  z-index: 0;
  width: 20px;
  aspect-ratio: 20/14;
  content: "";
}
@media (width < 1440px) {
  .panel-contract__product-process-flow-item .triangle {
    bottom: -0.69vw;
    left: 4.86vw;
    width: 1.39vw;
  }
}
@media (width <= 767px) {
  .panel-contract__product-process-flow-item .triangle {
    bottom: -15%;
    left: 17%;
    width: 4%;
  }
}
.panel-contract__product-process-flow-item.deep-blue {
  background: var(--blue-02);
}
@media (width <= 767px) {
  .panel-contract__product-process-flow-item {
    height: clamp(34px, 10vw, 50px);
    aspect-ratio: unset;
  }
}
.panel-contract__product-process-flow-item-title {
  width: 140px;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  color: var(--blue-01);
  margin-left: 30px;
  flex-shrink: 0;
}
.deep-blue .panel-contract__product-process-flow-item-title {
  color: var(--color-white);
}
@media (width < 1440px) {
  .panel-contract__product-process-flow-item-title {
    width: 9.72vw;
    font-size: 1.39vw;
    margin-left: 2.08vw;
  }
}
@media (width <= 767px) {
  .panel-contract__product-process-flow-item-title {
    width: 24%;
    font-size: clamp(0.625rem, 0.5355145414rem + 0.4474272931vw, 0.75rem);
    margin-left: 8px;
  }
}
.panel-contract__product-process-flow-icon {
  width: 82px;
  flex-shrink: 0;
}
@media (width < 1440px) {
  .panel-contract__product-process-flow-icon {
    width: 5.69vw;
  }
}
@media (width <= 767px) {
  .panel-contract__product-process-flow-icon {
    width: 11vw;
    max-width: 55px;
  }
}
.panel-contract__product-process-flow-item-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: var(--color-black);
  margin-left: 20px;
  padding-right: 20px;
}
.deep-blue .panel-contract__product-process-flow-item-text {
  color: var(--color-white);
}
@media (width < 1440px) {
  .panel-contract__product-process-flow-item-text {
    font-size: 1.11vw;
    margin-left: 1.39vw;
    padding-right: 1.39vw;
  }
}
@media (width <= 767px) {
  .panel-contract__product-process-flow-item-text {
    font-size: clamp(0.5625rem, 0.4730145414rem + 0.4474272931vw, 0.6875rem);
    margin-left: 8px;
    padding-right: 8px;
  }
}
.panel-contract__equipment {
  margin-top: min(7.29vw, 105px);
}
@media (width <= 767px) {
  .panel-contract__equipment {
    margin-top: 48px;
  }
}
.panel-contract__equipment-title-text {
  font-size: 30px;
  font-weight: 900;
  line-height: 120%;
  color: var(--blue-01);
}
@media (width < 1440px) {
  .panel-contract__equipment-title-text {
    font-size: 2.08vw;
  }
}
@media (width <= 767px) {
  .panel-contract__equipment-title-text {
    font-size: 18px;
  }
}
.panel-contract__equipment-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: min(2.08vw, 30px) min(1.67vw, 24px);
  margin-top: 40px;
}
@media (width < 1440px) {
  .panel-contract__equipment-content {
    margin-top: 2.78vw;
  }
}
@media (width <= 767px) {
  .panel-contract__equipment-content {
    gap: 16px 20px;
    margin-top: 32px;
  }
}
.panel-contract__equipment-item {
  position: relative;
  width: calc((100% - 48px) / 3);
  border-radius: 10px;
  aspect-ratio: 307/200;
}
@media (width < 1440px) and (width >= 768px) {
  .panel-contract__equipment-item {
    width: 21.25vw;
  }
}
@media (width <= 767px) {
  .panel-contract__equipment-item {
    width: 250px;
    max-width: 100%;
  }
}
.panel-contract__equipment-item-title {
  position: absolute;
  bottom: 0.78em;
  left: 0.89em;
  z-index: 1;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.22;
  color: var(--color-white);
}
@media (width < 1440px) {
  .panel-contract__equipment-item-title {
    font-size: 1.25vw;
  }
}
@media (width <= 767px) {
  .panel-contract__equipment-item-title {
    font-size: 12px;
  }
}
.panel-contract__equipment-link {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 30px;
  height: 30px;
}
@media (width < 1440px) {
  .panel-contract__equipment-link {
    right: 0.56vw;
    bottom: 0.56vw;
    width: 2.08vw;
    height: 2.08vw;
  }
}
@media (width <= 767px) {
  .panel-contract__equipment-link {
    right: 6px;
    bottom: 6px;
    width: 24px;
    height: 24px;
  }
}
.panel-contract__equipment-item-gradation {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url("../images/panel-contract__equipment-item-gradation-mask.png");
  mask-image: url("../images/panel-contract__equipment-item-gradation-mask.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: center;
  mask-position: center;
  overflow: hidden;
}
.panel-contract__equipment-item-gradation::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(81, 110, 214, 0) -22%, #3620c7 91.5%);
  transition: all 0.3s ease;
  content: "";
}
.panel-contract__equipment-item:hover .panel-contract__equipment-item-gradation::before, .panel-contract__equipment-item:focus-visible .panel-contract__equipment-item-gradation::before {
  height: 28%;
  background: linear-gradient(180deg, rgba(81, 110, 214, 0) 0%, #3620c7 95%);
}
@media (width < 1024px) {
  .panel-contract__equipment-item-gradation::before {
    height: 28%;
    background: linear-gradient(180deg, rgba(81, 110, 214, 0) 0%, #3620c7 95%);
  }
}
.panel-contract__equipment-pdf-link {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: min(2.29vw, 33px);
}
.panel-contract__equipment-pdf-link-link {
  gap: 10px;
  width: 314px;
  max-width: 100%;
}
@media (width <= 767px) {
  .panel-contract__equipment-pdf-link {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 18px;
  }
  .panel-contract__equipment-pdf-link-link {
    flex: 0 0 100%;
    width: min(314px, 100%);
    max-width: 314px;
    height: auto;
    min-height: 38px;
    padding: 8px 18px;
  }
  .panel-contract__equipment-pdf-link-text {
    text-align: center;
    white-space: normal;
  }
}
.panel-contract__test-coater {
  margin-top: 100px;
}
@media (width < 1440px) {
  .panel-contract__test-coater {
    margin-top: 6.94vw;
  }
}
@media (width <= 767px) {
  .panel-contract__test-coater {
    margin-top: 60px;
  }
}
.panel-contract__test-coater-title-text {
  font-size: 30px;
  font-weight: 900;
  line-height: 120%;
  color: var(--blue-01);
}
@media (width < 1440px) {
  .panel-contract__test-coater-title-text {
    font-size: 2.08vw;
  }
}
@media (width <= 767px) {
  .panel-contract__test-coater-title-text {
    font-size: 18px;
  }
}
.panel-contract__test-coater-content {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: 968px;
  max-width: 100%;
  margin-top: min(2.78vw, 40px);
}
@media (width < 1440px) {
  .panel-contract__test-coater-content {
    gap: 1.67vw;
  }
}
@media (width <= 767px) {
  .panel-contract__test-coater-content {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
  }
}
.panel-contract__test-coater-content-image {
  position: sticky;
  top: var(--header-height);
  width: 354px;
  align-self: flex-start;
}
@media (width < 1440px) and (width >= 768px) {
  .panel-contract__test-coater-content-image {
    width: 24.58vw;
  }
}
@media (width <= 767px) {
  .panel-contract__test-coater-content-image {
    position: static;
    width: 100%;
    max-width: 310px;
    align-self: center;
  }
}
.panel-contract__test-coater-content-detail {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: min(0.76vw, 11px);
}
@media (width <= 767px) {
  .panel-contract__test-coater-content-detail {
    gap: 8px;
    width: 100%;
    max-width: 517px;
  }
}
.panel-contract__test-coater-content-detail-text {
  width: 100%;
  padding-left: min(1.39vw, 20px);
  margin-bottom: min(6.94vw, 98px);
}
.panel-contract__test-coater-content-detail-text h3 {
  font-size: min(1.81vw, 26px);
  font-weight: 900;
  line-height: 140%;
  color: var(--blue-01);
  margin-bottom: min(0.97vw, 14px);
}
@media (width < 768px) {
  .panel-contract__test-coater-content-detail-text h3 {
    font-size: 15.6px;
    margin-bottom: 8.4px;
  }
}
.panel-contract__test-coater-content-detail-text p {
  font-size: min(1.11vw, 16px);
  font-weight: 400;
  line-height: 180%;
  color: #000;
}
@media (width < 768px) {
  .panel-contract__test-coater-content-detail-text p {
    font-size: 9.6px;
  }
}
@media (width < 768px) {
  .panel-contract__test-coater-content-detail-text {
    padding-left: 12px;
    margin-bottom: 58.8px;
  }
}
.panel-contract__test-coater-content-detail-text-img {
  display: flex;
  justify-content: flex-start;
  gap: min(1.39vw, 20px);
  width: min(39.58vw, 570px);
  margin-top: min(1.39vw, 20px);
}
.panel-contract__test-coater-content-detail-text-img img {
  width: min(8.33vw, 120px);
}
@media (width < 768px) {
  .panel-contract__test-coater-content-detail-text-img img {
    flex: 1;
    width: unset;
  }
}
@media (width < 768px) {
  .panel-contract__test-coater-content-detail-text-img {
    gap: 12px;
    width: 342px;
    max-width: 100%;
    margin-top: 12px;
  }
}
.panel-contract__test-coater-content-detail-basic-spec, .panel-contract__test-coater-content-detail-uv-lamp, .panel-contract__test-coater-content-detail-laminate, .panel-contract__test-coater-content-detail-dryer, .panel-contract__test-coater-content-detail-clean-room {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 3px min(2.01vw, 29px) 3px;
  background: #ffffff;
  border: 1px solid var(--blue-01);
  border-radius: 12px;
}
@media (width < 1440px) {
  .panel-contract__test-coater-content-detail-basic-spec, .panel-contract__test-coater-content-detail-uv-lamp, .panel-contract__test-coater-content-detail-laminate, .panel-contract__test-coater-content-detail-dryer, .panel-contract__test-coater-content-detail-clean-room {
    border-radius: 0.83vw;
  }
}
@media (width <= 767px) {
  .panel-contract__test-coater-content-detail-basic-spec, .panel-contract__test-coater-content-detail-uv-lamp, .panel-contract__test-coater-content-detail-laminate, .panel-contract__test-coater-content-detail-dryer, .panel-contract__test-coater-content-detail-clean-room {
    padding: 3px 16px 3px;
    border-radius: 10px;
  }
}
.panel-contract__test-coater-content-detail-basic-spec-container, .panel-contract__test-coater-content-detail-uv-lamp-container, .panel-contract__test-coater-content-detail-laminate-container, .panel-contract__test-coater-content-detail-clean-room-container {
  width: 100%;
}
.panel-contract__test-coater-content-detail-title {
  width: 100%;
}
.panel-contract__test-coater-content-detail-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  color: var(--color-black);
  background: none;
  border: 0;
  cursor: pointer;
}
@media (width < 1440px) {
  .panel-contract__test-coater-content-detail-toggle {
    font-size: 1.25vw;
  }
}
@media (width <= 767px) {
  .panel-contract__test-coater-content-detail-toggle {
    padding: 6px 4px;
    font-size: 11px;
  }
}
.panel-contract__test-coater-content-detail-icon {
  display: block;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-right: 1.5px solid #000000;
  border-bottom: 1.5px solid #000000;
}
.is-open .panel-contract__test-coater-content-detail-icon {
  transform: rotate(-135deg);
}
@media (width < 1440px) {
  .panel-contract__test-coater-content-detail-icon {
    width: 0.56vw;
    height: 0.56vw;
    border-right-width: 0.1vw;
    border-bottom-width: 0.1vw;
  }
}
@media (width <= 767px) {
  .panel-contract__test-coater-content-detail-icon {
    width: 4.8px;
    height: 4.8px;
    border-right-width: 0.9px;
    border-bottom-width: 0.9px;
  }
}
.panel-contract__test-coater-content-detail-table-wrapper {
  height: 0;
  transition: 0.3s ease;
  overflow: hidden;
}
.panel-contract__test-coater-content-detail-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  box-sizing: border-box;
  table-layout: fixed;
  margin-top: min(0.42vw, 6px);
  margin-bottom: min(0.9vw, 13px);
}
.panel-contract__test-coater-content-detail-table.is-single-col colgroup col.panel-contract__test-coater-content-detail-table-col-term {
  width: 100%;
}
.panel-contract__test-coater-content-detail-table colgroup col:nth-child(1) {
  width: 28.3%;
  border-radius: 10px 0 0 0;
}
.panel-contract__test-coater-content-detail-table colgroup col:nth-child(2) {
  width: 71.7%;
  border-radius: 0 10px 0 0;
}
@media (width < 1440px) {
  .panel-contract__test-coater-content-detail-table {
    border-spacing: 0.14vw;
  }
}
@media (width <= 767px) {
  .panel-contract__test-coater-content-detail-table {
    border-spacing: 1.2px;
    margin-top: 6px;
    margin-bottom: 3.6px;
  }
}
@media (width <= 498px) {
  .panel-contract__test-coater-content-detail-table colgroup col:nth-child(1) {
    width: 38% !important;
  }
  .panel-contract__test-coater-content-detail-table colgroup col:nth-child(2) {
    width: 66% !important;
  }
}
.panel-contract__test-coater-content-detail-table#test-coater-basic-spec colgroup col:nth-child(1) {
  width: 32%;
}
.panel-contract__test-coater-content-detail-table#test-coater-basic-spec colgroup col:nth-child(2) {
  width: 68%;
}
.panel-contract__test-coater-content-detail-table-term {
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  color: var(--color-white);
  text-align: left;
  background: var(--blue-01);
  padding-block: 10px;
  padding-inline: 20px;
}
@media (width < 1440px) {
  .panel-contract__test-coater-content-detail-table-term {
    font-size: 1.11vw;
    padding-block: 0.69vw;
    padding-inline: 1.39vw;
  }
}
@media (width <= 767px) {
  .panel-contract__test-coater-content-detail-table-term {
    font-size: 9.6px;
    padding-block: 8px;
    padding-inline: 10px;
  }
}
.panel-contract__test-coater-content-detail-table-term-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
@media (width < 1440px) {
  .panel-contract__test-coater-content-detail-table-term-inner {
    gap: 0.62vw;
  }
}
@media (width <= 767px) {
  .panel-contract__test-coater-content-detail-table-term-inner {
    gap: 7.2px;
  }
}
.panel-contract__test-coater-content-detail-table-detail {
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  color: var(--color-black);
  background-color: #f3f4ff;
  padding-inline: 0.7em;
  padding-block: 0.36em;
}
@media (width < 1440px) {
  .panel-contract__test-coater-content-detail-table-detail {
    font-size: 0.97vw;
  }
}
@media (width <= 767px) {
  .panel-contract__test-coater-content-detail-table-detail {
    font-size: 11.2px;
  }
}
.panel-contract__test-coater-content-detail-table-row:first-child th {
  border-radius: min(0.69vw, 10px) 0 0 0;
}
.panel-contract__test-coater-content-detail-table-row:first-child td:last-child {
  border-radius: 0 min(0.69vw, 10px) 0 0;
}
.panel-contract__test-coater-content-detail-table-row:last-child th {
  border-radius: 0 0 0 min(0.69vw, 10px);
}
.panel-contract__test-coater-content-detail-table-row:last-child td:last-child {
  border-radius: 0 0 min(0.69vw, 10px) 0;
}
.is-single-row:not(.is-single-col) .panel-contract__test-coater-content-detail-table-row th {
  border-radius: min(0.69vw, 10px) 0 0 min(0.69vw, 10px);
}
.is-single-row:not(.is-single-col) .panel-contract__test-coater-content-detail-table-row td {
  border-radius: 0 min(0.69vw, 10px) min(0.69vw, 10px) 0;
}
.is-single-col:not(.is-single-row) .panel-contract__test-coater-content-detail-table-row td {
  padding-inline: 20px;
}
@media (width < 1440px) {
  .is-single-col:not(.is-single-row) .panel-contract__test-coater-content-detail-table-row td {
    padding-inline: 1.39vw;
  }
}
@media (width <= 767px) {
  .is-single-col:not(.is-single-row) .panel-contract__test-coater-content-detail-table-row td {
    padding-inline: 10px;
  }
}
.is-single-col:not(.is-single-row) .panel-contract__test-coater-content-detail-table-row:first-child td {
  border-radius: min(0.69vw, 10px) min(0.69vw, 10px) 0 0;
}
.is-single-col:not(.is-single-row) .panel-contract__test-coater-content-detail-table-row:last-child td {
  border-radius: 0 0 min(0.69vw, 10px) min(0.69vw, 10px);
}
.is-single-row.is-single-col .panel-contract__test-coater-content-detail-table-row td {
  border-radius: min(0.69vw, 10px);
}
.panel-contract__test-coater-pdf-link {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
@media (width < 1440px) {
  .panel-contract {
    padding-block: 4.17vw;
  }
}
@media (width <= 767px) {
  .panel-contract {
    padding-block: 48px;
  }
}

.panel-products__inner {
  width: 968px;
  max-width: 95%;
  margin-inline: auto;
}
.panel-products__intro {
  padding-top: min(3.47vw, 50px);
}
@media (width <= 767px) {
  .panel-products__intro {
    padding-top: 20px;
  }
}
.panel-products__intro-text {
  font-size: min(1.11vw, 16px);
  font-weight: 400;
  line-height: 180%;
  color: var(--color-black);
}
@media (width <= 767px) {
  .panel-products__intro-text {
    font-size: 12px;
  }
}
.panel-products__intro-img-wrapper {
  display: flex;
  gap: min(1.39vw, 20px);
  margin-top: min(3.47vw, 50px);
}
@media (width <= 767px) {
  .panel-products__intro-img-wrapper {
    gap: 12px;
    margin-top: 20px;
  }
}
.panel-products__intro-img {
  flex: 1;
}
.panel-products__product-process {
  margin-top: 80px;
}
@media (width < 1440px) {
  .panel-products__product-process {
    margin-top: 5.56vw;
  }
}
@media (width <= 767px) {
  .panel-products__product-process {
    margin-top: 64px;
  }
}
.panel-products__product-process-title-text {
  font-size: 30px;
  font-weight: 900;
  line-height: 120%;
  color: var(--blue-01);
}
@media (width < 1440px) {
  .panel-products__product-process-title-text {
    font-size: 2.08vw;
  }
}
@media (width <= 767px) {
  .panel-products__product-process-title-text {
    font-size: 18px;
  }
}
.panel-products__product-process-text {
  margin-top: 30px;
}
.panel-products__product-process-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.05em;
  color: var(--color-black);
}
@media (width < 1440px) {
  .panel-products__product-process-text p {
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .panel-products__product-process-text p {
    font-size: 12px;
  }
}
@media (width < 1440px) {
  .panel-products__product-process-text {
    margin-top: 2.08vw;
  }
}
@media (width <= 767px) {
  .panel-products__product-process-text {
    margin-top: 24px;
  }
}
.panel-products__product-process-flow {
  margin-top: 36px;
}
@media (width < 1440px) {
  .panel-products__product-process-flow {
    margin-top: 2.5vw;
  }
}
@media (width <= 767px) {
  .panel-products__product-process-flow {
    margin-top: 28.8px;
  }
}
.panel-products__product-process-flow-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 812px;
  margin-inline: auto;
}
@media (width < 1440px) {
  .panel-products__product-process-flow-list {
    gap: 1.25vw;
    width: 56.53vw;
  }
}
@media (width <= 767px) {
  .panel-products__product-process-flow-list {
    gap: 14.4px;
    width: 100%;
    max-width: 500px;
  }
}
.panel-products__product-process-flow-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  background: var(--blue-05);
  border-radius: 14px;
  aspect-ratio: 812/70;
}
.panel-products__product-process-flow-item .triangle {
  position: absolute;
  bottom: -10px;
  left: 70px;
  z-index: 0;
  width: 20px;
  aspect-ratio: 20/14;
  content: "";
}
@media (width < 1440px) {
  .panel-products__product-process-flow-item .triangle {
    bottom: -0.69vw;
    left: 4.86vw;
    width: 1.39vw;
  }
}
@media (width <= 767px) {
  .panel-products__product-process-flow-item .triangle {
    bottom: -15%;
    left: 17%;
    width: 4%;
  }
}
.panel-products__product-process-flow-item.deep-blue {
  background: var(--blue-02);
}
@media (width <= 767px) {
  .panel-products__product-process-flow-item {
    height: clamp(34px, 10vw, 50px);
    aspect-ratio: unset;
  }
}
.panel-products__product-process-flow-item-title {
  width: 140px;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  color: var(--blue-01);
  margin-left: 30px;
  flex-shrink: 0;
}
.deep-blue .panel-products__product-process-flow-item-title {
  color: var(--color-white);
}
@media (width < 1440px) {
  .panel-products__product-process-flow-item-title {
    width: 9.72vw;
    font-size: 1.39vw;
    margin-left: 2.08vw;
  }
}
@media (width <= 767px) {
  .panel-products__product-process-flow-item-title {
    width: 24%;
    font-size: clamp(0.625rem, 0.5355145414rem + 0.4474272931vw, 0.75rem);
    margin-left: 8px;
  }
}
.panel-products__product-process-flow-icon {
  width: 82px;
  flex-shrink: 0;
}
@media (width < 1440px) {
  .panel-products__product-process-flow-icon {
    width: 5.69vw;
  }
}
@media (width <= 767px) {
  .panel-products__product-process-flow-icon {
    width: 11vw;
    max-width: 55px;
  }
}
.panel-products__product-process-flow-item-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: var(--color-black);
  margin-left: 20px;
  padding-right: 20px;
}
.deep-blue .panel-products__product-process-flow-item-text {
  color: var(--color-white);
}
@media (width < 1440px) {
  .panel-products__product-process-flow-item-text {
    font-size: 1.11vw;
    margin-left: 1.39vw;
    padding-right: 1.39vw;
  }
}
@media (width <= 767px) {
  .panel-products__product-process-flow-item-text {
    font-size: clamp(0.5625rem, 0.4730145414rem + 0.4474272931vw, 0.6875rem);
    margin-left: 8px;
    padding-right: 8px;
  }
}
.panel-products__adhesive-film-lineup {
  margin-top: min(6vw, 86px);
}
@media (width <= 767px) {
  .panel-products__adhesive-film-lineup {
    margin-top: 69px;
  }
}
.panel-products__hard-coat-film-lineup {
  margin-top: min(5.56vw, 80px);
  padding-bottom: min(4.17vw, 60px);
}
@media (width <= 767px) {
  .panel-products__hard-coat-film-lineup {
    margin-top: 69px;
    padding-bottom: 36px;
  }
}
.panel-products__adhesive-film-lineup-title-text, .panel-products__hard-coat-film-lineup-title-text {
  font-size: 30px;
  font-weight: 900;
  line-height: 120%;
  color: var(--blue-01);
}
@media (width < 1440px) {
  .panel-products__adhesive-film-lineup-title-text, .panel-products__hard-coat-film-lineup-title-text {
    font-size: 2.08vw;
  }
}
@media (width <= 767px) {
  .panel-products__adhesive-film-lineup-title-text, .panel-products__hard-coat-film-lineup-title-text {
    font-size: 18px;
  }
}
.panel-products__accordion {
  padding: 10px 30px 10px;
  border: 1px solid var(--blue-02);
  border-radius: 16px;
  margin-bottom: 10px;
}
.panel-products__accordion:nth-child(2) {
  margin-top: 30px;
}
@media (width < 1440px) {
  .panel-products__accordion:nth-child(2) {
    margin-top: 2.08vw;
  }
}
@media (width <= 767px) {
  .panel-products__accordion:nth-child(2) {
    margin-top: 24px;
  }
}
@media (width < 1440px) {
  .panel-products__accordion {
    padding: 0.69vw 2.08vw 0.69vw;
    border-radius: 1.11vw;
  }
}
@media (width <= 767px) {
  .panel-products__accordion {
    padding: 11.2px 16px 11.2px;
    border-radius: 12px;
  }
}
.panel-products__title {
  width: 100%;
}
.panel-products__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 4px;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  color: var(--color-black);
  background: none;
  border: 0;
  cursor: pointer;
}
@media (width < 1440px) {
  .panel-products__toggle {
    padding: 0.28vw;
    font-size: 1.67vw;
  }
}
@media (width <= 767px) {
  .panel-products__toggle {
    padding: 2.4px;
    font-size: 15px;
  }
}
.panel-products__icon {
  display: block;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-right: 1.5px solid #000000;
  border-bottom: 1.5px solid #000000;
}
.is-open .panel-products__icon {
  transform: rotate(-135deg);
}
@media (width < 1440px) {
  .panel-products__icon {
    width: 0.56vw;
    height: 0.56vw;
    border-right-width: 0.1vw;
    border-bottom-width: 0.1vw;
  }
}
@media (width <= 767px) {
  .panel-products__icon {
    width: 4.8px;
    height: 4.8px;
    border-right-width: 0.9px;
    border-bottom-width: 0.9px;
  }
}
.panel-products__content-wrapper {
  width: 100%;
  height: 0;
  transition: 0.3s ease;
  overflow: hidden;
  padding-right: 32px;
}
@media (width < 1440px) {
  .panel-products__content-wrapper {
    padding-right: 2.22vw;
  }
}
@media (width <= 767px) {
  .panel-products__content-wrapper {
    padding-right: 0;
  }
}
.panel-products__content-image {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.panel-products__content-image h4 {
  width: 100%;
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
  color: var(--blue-01);
  margin-bottom: 20px;
}
@media (width < 1440px) {
  .panel-products__content-image h4 {
    font-size: 1.53vw;
  }
}
@media (width <= 767px) {
  .panel-products__content-image h4 {
    font-size: 16px;
  }
}
@media (width < 1440px) {
  .panel-products__content-image {
    gap: 1.11vw;
    margin-top: 2.78vw;
  }
}
@media (width <= 767px) {
  .panel-products__content-image {
    gap: 16px;
    margin-top: 32px;
  }
}
.panel-products__content-image-item {
  width: calc((100% - 16px) / 2);
  background: rgba(231, 241, 255, 0.5);
  border-radius: 10px;
  padding-left: 20px;
  padding-right: 14px;
}
.panel-products__content-image-item.is-single {
  display: flex;
  width: 100%;
}
@media (width <= 767px) {
  .panel-products__content-image-item.is-single {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
.panel-products__content-image-item h5 {
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
  color: var(--color-black);
  margin-top: 20px;
}
@media (width < 1440px) {
  .panel-products__content-image-item h5 {
    font-size: 1.25vw;
    margin-top: 1.39vw;
  }
}
@media (width <= 767px) {
  .panel-products__content-image-item h5 {
    font-size: 12px;
    text-align: center;
    margin-top: 16px;
  }
}
.panel-products__content-image-item img {
  margin-top: 20px;
  margin-bottom: 32px;
}
@media (width < 1440px) {
  .panel-products__content-image-item img {
    margin-top: 1.39vw;
    margin-bottom: 2.22vw;
  }
}
@media (width <= 767px) {
  .panel-products__content-image-item img {
    max-width: 310px;
    margin-top: 16px;
    margin-bottom: 16px;
    margin-inline: auto;
  }
}
@media (width < 1440px) {
  .panel-products__content-image-item {
    width: calc((100% - 1.11vw) / 2);
    padding-left: 1.39vw;
    padding-right: 0.97vw;
  }
}
@media (width <= 767px) {
  .panel-products__content-image-item {
    width: 100%;
    padding-left: 20px;
    padding-right: 14px;
  }
}
.panel-products__content-inner h4 {
  width: 100%;
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
  color: var(--blue-01);
  margin-bottom: 20px;
  margin-top: 30px;
}
@media (width < 1440px) {
  .panel-products__content-inner h4 {
    font-size: 1.53vw;
    margin-bottom: 1.39vw;
    margin-top: 2.08vw;
  }
}
@media (width <= 767px) {
  .panel-products__content-inner h4 {
    font-size: 16px;
    margin-bottom: 16px;
    margin-top: 24px;
  }
}
.panel-products__protective-film-image-item--01 img {
  width: 92.06%;
}
.panel-products__protective-film-image-item--02 img, .panel-products__protective-film-image-item--03 img {
  width: 92.29%;
}
.panel-products__protective-film-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  margin-top: 21px;
  table-layout: fixed;
}
.panel-products__protective-film-table colgroup col:nth-child(1) {
  width: 19.38%;
}
@media (width <= 767px) {
  .panel-products__protective-film-table colgroup col:nth-child(1) {
    width: 23.5%;
  }
}
.panel-products__protective-film-table thead tr:first-child th:nth-child(1) {
  border-radius: 10px 0 0 0;
}
@media (width < 1440px) {
  .panel-products__protective-film-table thead tr:first-child th:nth-child(1) {
    border-radius: 0.69vw 0 0 0;
  }
}
@media (width <= 767px) {
  .panel-products__protective-film-table thead tr:first-child th:nth-child(1) {
    border-radius: 6px 0 0 0;
  }
}
.panel-products__protective-film-table thead tr:first-child th:last-child {
  border-radius: 0 10px 0 0;
}
@media (width < 1440px) {
  .panel-products__protective-film-table thead tr:first-child th:last-child {
    border-radius: 0 0.69vw 0 0;
  }
}
@media (width <= 767px) {
  .panel-products__protective-film-table thead tr:first-child th:last-child {
    border-radius: 0 6px 0 0;
  }
}
.panel-products__protective-film-table thead th {
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  color: var(--color-white);
  text-align: center;
  background: var(--blue-01);
  padding-block: 6px;
}
@media (width < 1440px) {
  .panel-products__protective-film-table thead th {
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .panel-products__protective-film-table thead th {
    font-size: 9px;
  }
}
@media (width < 1440px) {
  .panel-products__protective-film-table thead {
    height: 2.08vw;
  }
}
@media (width <= 767px) {
  .panel-products__protective-film-table thead {
    height: 18px;
  }
}
.panel-products__protective-film-table tbody tr:last-child th {
  border-radius: 0 0 0 10px;
}
@media (width < 1440px) {
  .panel-products__protective-film-table tbody tr:last-child th {
    border-radius: 0 0 0 0.69vw;
  }
}
@media (width <= 767px) {
  .panel-products__protective-film-table tbody tr:last-child th {
    border-radius: 0 0 0 6px;
  }
}
.panel-products__protective-film-table tbody tr:last-child td {
  border-radius: 0 0 10px 0;
}
@media (width < 1440px) {
  .panel-products__protective-film-table tbody tr:last-child td {
    border-radius: 0 0 0.69vw 0;
  }
}
@media (width <= 767px) {
  .panel-products__protective-film-table tbody tr:last-child td {
    border-radius: 0 0 6px 0;
  }
}
.panel-products__protective-film-table tbody tr th {
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.05em;
  color: var(--blue-01);
  text-align: left;
  background: var(--blue-05);
  padding-block: 0.6em;
  padding-left: 1.1em;
}
@media (width < 1440px) {
  .panel-products__protective-film-table tbody tr th {
    font-size: 1.25vw;
  }
}
@media (width <= 767px) {
  .panel-products__protective-film-table tbody tr th {
    font-size: 9px;
    text-align: center;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}
.panel-products__protective-film-table tbody tr td {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: var(--color-black);
  text-align: center;
  background-color: #f3f4ff;
  padding-inline: 1.3em;
  padding-block: 0.6em;
}
.panel-products__protective-film-table tbody tr td p {
  position: relative;
  display: inline-block;
}
.panel-products__protective-film-table tbody tr td p .panel-products__protective-film-table-td-9-5 {
  position: absolute;
  top: 40%;
  right: -10px;
  width: 17px;
  height: 8px;
  transform: translate(50%, -50%);
}
.panel-products__protective-film-table tbody tr td p .panel-products__protective-film-table-td-9-5 svg {
  width: 100%;
  height: 100%;
}
@media (width < 1440px) {
  .panel-products__protective-film-table tbody tr td p .panel-products__protective-film-table-td-9-5 {
    right: -0.69vw;
    width: 1.18vw;
    height: 0.56vw;
  }
}
@media (width <= 767px) {
  .panel-products__protective-film-table tbody tr td p .panel-products__protective-film-table-td-9-5 {
    right: -6px;
    width: 12px;
    height: 5.6px;
  }
}
@media (width < 1440px) {
  .panel-products__protective-film-table tbody tr td {
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .panel-products__protective-film-table tbody tr td {
    font-size: 9px;
    padding-inline: 0.5em;
  }
}
@media (width < 1440px) {
  .panel-products__protective-film-table {
    border-spacing: 0.14vw;
    margin-top: 1.46vw;
  }
}
@media (width <= 767px) {
  .panel-products__protective-film-table {
    border-spacing: 1.2px;
    margin-top: 12.6px;
  }
}
.panel-products__optical-adhesive-film-image-item--01 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 3px;
  padding-left: 15px;
}
.panel-products__optical-adhesive-film-image-item--01 img {
  width: 74.07%;
}
@media (width < 1440px) {
  .panel-products__optical-adhesive-film-image-item--01 {
    padding-left: 1.04vw;
    padding-top: 0.21vw;
  }
}
.panel-products__optical-adhesive-film-image-item--02 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2px;
  padding-left: 16px;
}
.panel-products__optical-adhesive-film-image-item--02 img {
  width: 74.3%;
}
@media (width < 1440px) {
  .panel-products__optical-adhesive-film-image-item--02 {
    padding-left: 1.11vw;
    padding-bottom: 0.14vw;
  }
}
.panel-products__optical-adhesive-film-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  margin-top: 21px;
  table-layout: fixed;
  margin-bottom: 10px;
}
.panel-products__optical-adhesive-film-table colgroup col:nth-child(1) {
  width: 23.62%;
}
.panel-products__optical-adhesive-film-table colgroup col:last-child {
  width: 40.83%;
}
.panel-products__optical-adhesive-film-table thead tr:first-child th:nth-child(1) {
  border-radius: 10px 0 0 0;
}
@media (width < 1440px) {
  .panel-products__optical-adhesive-film-table thead tr:first-child th:nth-child(1) {
    border-radius: 0.69vw 0 0 0;
  }
}
@media (width <= 767px) {
  .panel-products__optical-adhesive-film-table thead tr:first-child th:nth-child(1) {
    border-radius: 6px 0 0 0;
  }
}
.panel-products__optical-adhesive-film-table thead tr:first-child th:last-child {
  border-radius: 0 10px 0 0;
}
@media (width < 1440px) {
  .panel-products__optical-adhesive-film-table thead tr:first-child th:last-child {
    border-radius: 0 0.69vw 0 0;
  }
}
@media (width <= 767px) {
  .panel-products__optical-adhesive-film-table thead tr:first-child th:last-child {
    border-radius: 0 6px 0 0;
  }
}
.panel-products__optical-adhesive-film-table thead th {
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  color: var(--color-white);
  text-align: center;
  background: var(--blue-01);
  padding-block: 5.4px;
}
@media (width < 1440px) {
  .panel-products__optical-adhesive-film-table thead th {
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .panel-products__optical-adhesive-film-table thead th {
    font-size: 9px;
  }
}
@media (width < 1440px) {
  .panel-products__optical-adhesive-film-table thead {
    height: 2.08vw;
  }
}
@media (width <= 767px) {
  .panel-products__optical-adhesive-film-table thead {
    height: 18px;
  }
}
.panel-products__optical-adhesive-film-table tbody tr:last-child th {
  border-radius: 0 0 0 10px;
}
@media (width < 1440px) {
  .panel-products__optical-adhesive-film-table tbody tr:last-child th {
    border-radius: 0 0 0 0.69vw;
  }
}
@media (width <= 767px) {
  .panel-products__optical-adhesive-film-table tbody tr:last-child th {
    border-radius: 0 0 0 6px;
  }
}
.panel-products__optical-adhesive-film-table tbody tr:last-child td {
  border-radius: 0 0 10px 0;
}
@media (width < 1440px) {
  .panel-products__optical-adhesive-film-table tbody tr:last-child td {
    border-radius: 0 0 0.69vw 0;
  }
}
@media (width <= 767px) {
  .panel-products__optical-adhesive-film-table tbody tr:last-child td {
    border-radius: 0 0 6px 0;
  }
}
.panel-products__optical-adhesive-film-table tbody tr th {
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.05em;
  color: var(--blue-01);
  text-align: left;
  background: var(--blue-05);
  padding-block: 0.6em;
  padding-left: 1.1em;
}
@media (width < 1440px) {
  .panel-products__optical-adhesive-film-table tbody tr th {
    font-size: 1.25vw;
  }
}
@media (width <= 767px) {
  .panel-products__optical-adhesive-film-table tbody tr th {
    font-size: 9px;
    text-align: center;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}
.panel-products__optical-adhesive-film-table tbody tr td {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: var(--color-black);
  text-align: center;
  background-color: #f3f4ff;
  padding-inline: 1.3em;
  padding-block: 0.6em;
}
.panel-products__optical-adhesive-film-table tbody tr td p {
  position: relative;
  display: inline-block;
}
.panel-products__optical-adhesive-film-table tbody tr td p .panel-products__protective-film-table-td-9-5 {
  position: absolute;
  top: 40%;
  right: -10px;
  width: 17px;
  height: 8px;
  transform: translate(50%, -50%);
}
.panel-products__optical-adhesive-film-table tbody tr td p .panel-products__protective-film-table-td-9-5 svg {
  width: 100%;
  height: 100%;
}
@media (width < 1440px) {
  .panel-products__optical-adhesive-film-table tbody tr td p .panel-products__protective-film-table-td-9-5 {
    right: -0.69vw;
    width: 1.18vw;
    height: 0.56vw;
  }
}
@media (width <= 767px) {
  .panel-products__optical-adhesive-film-table tbody tr td p .panel-products__protective-film-table-td-9-5 {
    right: -6px;
    width: 12px;
    height: 5.6px;
  }
}
@media (width < 1440px) {
  .panel-products__optical-adhesive-film-table tbody tr td {
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .panel-products__optical-adhesive-film-table tbody tr td {
    font-size: 9px;
    padding-inline: 0.5em;
  }
}
@media (width < 1440px) {
  .panel-products__optical-adhesive-film-table {
    border-spacing: 0.14vw;
    margin-top: 1.46vw;
    margin-bottom: 0.69vw;
  }
}
@media (width <= 767px) {
  .panel-products__optical-adhesive-film-table {
    border-spacing: 1.2px;
    margin-top: 12.6px;
    margin-bottom: 8px;
  }
}
.panel-products__uv-carrier-film-image-item--01 {
  display: flex;
  justify-content: center;
  gap: 79px;
  width: 100%;
  padding-inline: 35px 31px;
}
.panel-products__uv-carrier-film-image-item--01 img {
  width: 352px;
  margin-top: 28px;
  flex-shrink: 0;
}
@media (width < 1440px) {
  .panel-products__uv-carrier-film-image-item--01 img {
    width: 24.58vw;
    margin-top: 1.94vw;
  }
}
@media (width <= 767px) {
  .panel-products__uv-carrier-film-image-item--01 img {
    width: 100%;
    max-width: 310px;
    margin-top: 16px;
  }
}
.panel-products__uv-carrier-film-image-item--01 ul {
  margin-top: 31px;
}
.panel-products__uv-carrier-film-image-item--01 ul li {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: var(--color-black);
  text-indent: 1em;
}
.panel-products__uv-carrier-film-image-item--01 ul li::before {
  position: absolute;
  top: 0;
  left: -1em;
  display: inline;
  content: "●";
}
@media (width < 1440px) {
  .panel-products__uv-carrier-film-image-item--01 ul li {
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .panel-products__uv-carrier-film-image-item--01 ul li {
    font-size: 12px;
  }
}
@media (width < 1440px) {
  .panel-products__uv-carrier-film-image-item--01 ul {
    margin-top: 2.15vw;
  }
}
@media (width <= 767px) {
  .panel-products__uv-carrier-film-image-item--01 ul {
    margin-top: 16px;
  }
}
.panel-products__uv-carrier-film-image-item--01 p {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: var(--color-black);
  margin-top: 20px;
}
@media (width < 1440px) {
  .panel-products__uv-carrier-film-image-item--01 p {
    font-size: 1.11vw;
    margin-top: 1.39vw;
  }
}
@media (width <= 767px) {
  .panel-products__uv-carrier-film-image-item--01 p {
    font-size: 12px;
    margin-top: 16px;
  }
}
@media (width < 1440px) {
  .panel-products__uv-carrier-film-image-item--01 {
    gap: 5.49vw;
    padding-inline: 2.43vw 2.15vw;
  }
}
@media (width <= 767px) {
  .panel-products__uv-carrier-film-image-item--01 {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-inline: 24px 20px;
    padding-bottom: 10px;
  }
}
.panel-products__uv-carrier-film-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  margin-top: 21px;
  table-layout: fixed;
  margin-bottom: 10px;
}
.panel-products__uv-carrier-film-table colgroup col:nth-child(1) {
  width: 29.5%;
}
.panel-products__uv-carrier-film-table colgroup col:nth-child(2) {
  width: 13.93%;
}
.panel-products__uv-carrier-film-table colgroup col:nth-child(3) {
  width: 16.21%;
}
.panel-products__uv-carrier-film-table colgroup col:nth-child(4) {
  width: 16.1%;
}
@media (width <= 767px) {
  .panel-products__uv-carrier-film-table colgroup col:nth-child(4) {
    width: 18.5%;
  }
}
.panel-products__uv-carrier-film-table colgroup col:nth-child(5) {
  width: 5.82%;
}
@media (width <= 767px) {
  .panel-products__uv-carrier-film-table colgroup col:nth-child(5) {
    width: 7.5%;
  }
}
.panel-products__uv-carrier-film-table thead tr:first-child th:nth-child(1) {
  border-radius: 10px 0 0 0;
}
@media (width < 1440px) {
  .panel-products__uv-carrier-film-table thead tr:first-child th:nth-child(1) {
    border-radius: 0.69vw 0 0 0;
  }
}
@media (width <= 767px) {
  .panel-products__uv-carrier-film-table thead tr:first-child th:nth-child(1) {
    border-radius: 6px 0 0 0;
  }
}
.panel-products__uv-carrier-film-table thead tr:first-child th:last-child {
  border-radius: 0 10px 0 0;
}
@media (width < 1440px) {
  .panel-products__uv-carrier-film-table thead tr:first-child th:last-child {
    border-radius: 0 0.69vw 0 0;
  }
}
@media (width <= 767px) {
  .panel-products__uv-carrier-film-table thead tr:first-child th:last-child {
    border-radius: 0 6px 0 0;
  }
}
.panel-products__uv-carrier-film-table thead th {
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  color: var(--color-white);
  text-align: center;
  background: var(--blue-01);
  padding-block: 5.4px;
}
@media (width < 1440px) {
  .panel-products__uv-carrier-film-table thead th {
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .panel-products__uv-carrier-film-table thead th {
    font-size: 9px;
  }
}
@media (width < 1440px) {
  .panel-products__uv-carrier-film-table thead {
    height: 2.08vw;
  }
}
@media (width <= 767px) {
  .panel-products__uv-carrier-film-table thead {
    height: 18px;
  }
}
.panel-products__uv-carrier-film-table tbody tr:last-child th {
  border-radius: 0 0 0 10px;
}
@media (width < 1440px) {
  .panel-products__uv-carrier-film-table tbody tr:last-child th {
    border-radius: 0 0 0 0.69vw;
  }
}
@media (width <= 767px) {
  .panel-products__uv-carrier-film-table tbody tr:last-child th {
    border-radius: 0 0 0 6px;
  }
}
.panel-products__uv-carrier-film-table tbody tr:nth-child(4) td:last-child {
  border-radius: 0 0 10px 0;
}
@media (width < 1440px) {
  .panel-products__uv-carrier-film-table tbody tr:nth-child(4) td:last-child {
    border-radius: 0 0 0.69vw 0;
  }
}
@media (width <= 767px) {
  .panel-products__uv-carrier-film-table tbody tr:nth-child(4) td:last-child {
    border-radius: 0 0 6px 0;
  }
}
.panel-products__uv-carrier-film-table tbody tr th {
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.05em;
  color: var(--blue-01);
  text-align: left;
  background: var(--blue-05);
  padding-block: 0.6em;
  padding-left: 10px;
}
@media (width < 1440px) {
  .panel-products__uv-carrier-film-table tbody tr th {
    font-size: 1.25vw;
  }
}
@media (width <= 767px) {
  .panel-products__uv-carrier-film-table tbody tr th {
    font-size: 9px;
    text-align: center;
    padding-inline: 0.25em;
  }
}
.panel-products__uv-carrier-film-table tbody tr td {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: var(--color-black);
  text-align: center;
  background-color: #f3f4ff;
  padding-block: 0.6em;
}
@media (width < 1440px) {
  .panel-products__uv-carrier-film-table tbody tr td {
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .panel-products__uv-carrier-film-table tbody tr td {
    font-size: 8px;
  }
}
@media (width < 374px) {
  .panel-products__uv-carrier-film-table tbody tr td {
    font-size: 7px;
  }
}
@media (width < 1440px) {
  .panel-products__uv-carrier-film-table {
    border-spacing: 0.14vw;
    margin-top: 1.46vw;
    margin-bottom: 0.69vw;
  }
}
@media (width <= 767px) {
  .panel-products__uv-carrier-film-table {
    border-spacing: 1.2px;
    margin-top: 12.6px;
    margin-bottom: 8px;
  }
}
.panel-products__content-sr-image-item-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 366px;
  padding-top: 15px;
  padding-right: 7px;
}
.panel-products__content-sr-image-item-image-wrapper img {
  width: 269px;
}
@media (width < 1440px) {
  .panel-products__content-sr-image-item-image-wrapper img {
    width: 19.24vw;
  }
}
@media (width <= 767px) {
  .panel-products__content-sr-image-item-image-wrapper img {
    width: 100%;
    max-width: 269px;
  }
}
@media (width < 1440px) {
  .panel-products__content-sr-image-item-image-wrapper {
    width: 41.25vw;
    padding-top: 1.04vw;
    padding-right: 0.48vw;
  }
}
.panel-products__content-sr-image-item-list-wrapper {
  width: 510px;
  padding-right: 30px;
  padding-block: 30.5px;
}
.panel-products__content-sr-image-item-list-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.panel-products__content-sr-image-item-list-wrapper ul li {
  display: flex;
  gap: 15px;
}
@media (width < 1440px) {
  .panel-products__content-sr-image-item-list-wrapper ul li {
    gap: 1.04vw;
  }
}
@media (width <= 767px) {
  .panel-products__content-sr-image-item-list-wrapper ul li {
    gap: 10px;
  }
}
@media (width < 1440px) {
  .panel-products__content-sr-image-item-list-wrapper ul {
    gap: 0.97vw;
  }
}
@media (width <= 767px) {
  .panel-products__content-sr-image-item-list-wrapper ul {
    gap: 10px;
  }
}
@media (width < 1440px) {
  .panel-products__content-sr-image-item-list-wrapper {
    width: 57.5vw;
    padding-right: 2.08vw;
    padding-block: 2.08vw;
  }
}
@media (width <= 767px) {
  .panel-products__content-sr-image-item-list-wrapper {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-block: 16px;
  }
}
.panel-products__content-sr-item-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 68px;
  height: 29px;
  font-size: 16px;
  font-weight: 700;
  line-height: 180%;
  color: var(--color-white);
  background: var(--blue-01);
  border-radius: 4px;
  flex-shrink: 0;
}
@media (width < 1440px) {
  .panel-products__content-sr-item-label {
    width: 4.63vw;
    height: 1.99vw;
    font-size: 1.11vw;
  }
}
@media (width < 1440px) and (width <= 767px) {
  .panel-products__content-sr-item-label {
    width: 45px;
    height: 25px;
    font-size: 11px;
  }
}
.panel-products__content-sr-item-value {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: var(--color-black);
}
@media (width < 1440px) {
  .panel-products__content-sr-item-value {
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .panel-products__content-sr-item-value {
    font-size: 10px;
    padding-top: 3.5px;
  }
}
.panel-products__sr-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  margin-top: 21px;
  table-layout: fixed;
}
.panel-products__sr-table colgroup col:nth-child(1) {
  width: 28.43%;
}
.panel-products__sr-table thead tr:first-child th:nth-child(1) {
  border-radius: 10px 0 0 0;
}
@media (width < 1440px) {
  .panel-products__sr-table thead tr:first-child th:nth-child(1) {
    border-radius: 0.69vw 0 0 0;
  }
}
@media (width <= 767px) {
  .panel-products__sr-table thead tr:first-child th:nth-child(1) {
    border-radius: 6px 0 0 0;
  }
}
.panel-products__sr-table thead tr:first-child th:last-child {
  border-radius: 0 10px 0 0;
}
@media (width < 1440px) {
  .panel-products__sr-table thead tr:first-child th:last-child {
    border-radius: 0 0.69vw 0 0;
  }
}
@media (width <= 767px) {
  .panel-products__sr-table thead tr:first-child th:last-child {
    border-radius: 0 6px 0 0;
  }
}
.panel-products__sr-table thead th {
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  color: var(--color-white);
  text-align: center;
  background: var(--blue-01);
  padding-block: 6px;
}
@media (width < 1440px) {
  .panel-products__sr-table thead th {
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .panel-products__sr-table thead th {
    font-size: 9px;
  }
}
@media (width < 1440px) {
  .panel-products__sr-table thead {
    height: 2.08vw;
  }
}
@media (width <= 767px) {
  .panel-products__sr-table thead {
    height: 18px;
  }
}
.panel-products__sr-table tbody tr:last-child th {
  border-radius: 0 0 0 10px;
}
@media (width < 1440px) {
  .panel-products__sr-table tbody tr:last-child th {
    border-radius: 0 0 0 0.69vw;
  }
}
@media (width <= 767px) {
  .panel-products__sr-table tbody tr:last-child th {
    border-radius: 0 0 0 6px;
  }
}
.panel-products__sr-table tbody tr:last-child td {
  border-radius: 0 0 10px 0;
}
@media (width < 1440px) {
  .panel-products__sr-table tbody tr:last-child td {
    border-radius: 0 0 0.69vw 0;
  }
}
@media (width <= 767px) {
  .panel-products__sr-table tbody tr:last-child td {
    border-radius: 0 0 6px 0;
  }
}
.panel-products__sr-table tbody tr th {
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.05em;
  color: var(--blue-01);
  text-align: left;
  background: var(--blue-05);
  padding-block: 0.6em;
  padding-left: 1.1em;
}
@media (width < 1440px) {
  .panel-products__sr-table tbody tr th {
    font-size: 1.25vw;
  }
}
@media (width <= 767px) {
  .panel-products__sr-table tbody tr th {
    font-size: 9px;
    text-align: center;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}
.panel-products__sr-table tbody tr td {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: var(--color-black);
  text-align: center;
  background-color: #f3f4ff;
  padding-inline: 1.3em;
  padding-block: 0.6em;
}
.panel-products__sr-table tbody tr td p {
  position: relative;
  display: inline-block;
}
.panel-products__sr-table tbody tr td p .panel-products__protective-film-table-td-9-5 {
  position: absolute;
  top: 40%;
  right: -10px;
  width: 17px;
  height: 8px;
  transform: translate(50%, -50%);
}
.panel-products__sr-table tbody tr td p .panel-products__protective-film-table-td-9-5 svg {
  width: 100%;
  height: 100%;
}
@media (width < 1440px) {
  .panel-products__sr-table tbody tr td p .panel-products__protective-film-table-td-9-5 {
    right: -0.69vw;
    width: 1.18vw;
    height: 0.56vw;
  }
}
@media (width <= 767px) {
  .panel-products__sr-table tbody tr td p .panel-products__protective-film-table-td-9-5 {
    right: -6px;
    width: 12px;
    height: 5.6px;
  }
}
@media (width < 1440px) {
  .panel-products__sr-table tbody tr td {
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .panel-products__sr-table tbody tr td {
    font-size: 9px;
    padding-inline: 0.5em;
  }
}
@media (width < 1440px) {
  .panel-products__sr-table {
    border-spacing: 0.14vw;
    margin-top: 1.46vw;
  }
}
@media (width <= 767px) {
  .panel-products__sr-table {
    border-spacing: 1.2px;
    margin-top: 12.6px;
  }
}
.panel-products__content-ss-image-item-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 408px;
  padding-right: 5px;
}
.panel-products__content-ss-image-item-image-wrapper img {
  width: 313px;
}
@media (width < 1440px) {
  .panel-products__content-ss-image-item-image-wrapper img {
    width: 21.81vw;
  }
}
@media (width <= 767px) {
  .panel-products__content-ss-image-item-image-wrapper img {
    width: 100%;
    max-width: 313px;
  }
}
@media (width < 1440px) {
  .panel-products__content-ss-image-item-image-wrapper {
    width: 45.25vw;
    padding-right: 0.35vw;
  }
}
.panel-products__content-ss-image-item-list-wrapper {
  width: 468px;
  padding-right: 45px;
  padding-block: 69px;
}
.panel-products__content-ss-image-item-list-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.panel-products__content-ss-image-item-list-wrapper ul li {
  display: flex;
  gap: 15px;
}
@media (width < 1440px) {
  .panel-products__content-ss-image-item-list-wrapper ul li {
    gap: 1.04vw;
  }
}
@media (width <= 767px) {
  .panel-products__content-ss-image-item-list-wrapper ul li {
    gap: 10px;
  }
}
@media (width < 1440px) {
  .panel-products__content-ss-image-item-list-wrapper ul {
    gap: 0.97vw;
  }
}
@media (width <= 767px) {
  .panel-products__content-ss-image-item-list-wrapper ul {
    gap: 10px;
  }
}
@media (width < 1440px) {
  .panel-products__content-ss-image-item-list-wrapper {
    width: 52.5vw;
    padding-right: 3.13vw;
    padding-block: 4.79vw;
  }
}
@media (width <= 767px) {
  .panel-products__content-ss-image-item-list-wrapper {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-block: 16px;
  }
}
.panel-products__content-ss-item-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 68px;
  height: 29px;
  font-size: 16px;
  font-weight: 700;
  line-height: 180%;
  color: var(--color-white);
  background: var(--blue-01);
  border-radius: 4px;
  flex-shrink: 0;
}
@media (width < 1440px) {
  .panel-products__content-ss-item-label {
    width: 4.63vw;
    height: 1.99vw;
    font-size: 1.11vw;
  }
}
@media (width < 1440px) and (width <= 767px) {
  .panel-products__content-ss-item-label {
    width: 45px;
    height: 25px;
    font-size: 11px;
  }
}
.panel-products__content-ss-item-value {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: var(--color-black);
}
@media (width < 1440px) {
  .panel-products__content-ss-item-value {
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .panel-products__content-ss-item-value {
    font-size: 10px;
    padding-top: 3.5px;
  }
}
.panel-products__ss-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  margin-top: 21px;
  table-layout: fixed;
}
.panel-products__ss-table colgroup col:nth-child(1) {
  width: 28.43%;
}
.panel-products__ss-table thead tr:first-child th:nth-child(1) {
  border-radius: 10px 0 0 0;
}
@media (width < 1440px) {
  .panel-products__ss-table thead tr:first-child th:nth-child(1) {
    border-radius: 0.69vw 0 0 0;
  }
}
@media (width <= 767px) {
  .panel-products__ss-table thead tr:first-child th:nth-child(1) {
    border-radius: 6px 0 0 0;
  }
}
.panel-products__ss-table thead tr:first-child th:last-child {
  border-radius: 0 10px 0 0;
}
@media (width < 1440px) {
  .panel-products__ss-table thead tr:first-child th:last-child {
    border-radius: 0 0.69vw 0 0;
  }
}
@media (width <= 767px) {
  .panel-products__ss-table thead tr:first-child th:last-child {
    border-radius: 0 6px 0 0;
  }
}
.panel-products__ss-table thead th {
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  color: var(--color-white);
  text-align: center;
  background: var(--blue-01);
  padding-block: 6px;
}
@media (width < 1440px) {
  .panel-products__ss-table thead th {
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .panel-products__ss-table thead th {
    font-size: 9px;
  }
}
@media (width < 1440px) {
  .panel-products__ss-table thead {
    height: 2.08vw;
  }
}
@media (width <= 767px) {
  .panel-products__ss-table thead {
    height: 18px;
  }
}
.panel-products__ss-table tbody tr:last-child th {
  border-radius: 0 0 0 10px;
}
@media (width < 1440px) {
  .panel-products__ss-table tbody tr:last-child th {
    border-radius: 0 0 0 0.69vw;
  }
}
@media (width <= 767px) {
  .panel-products__ss-table tbody tr:last-child th {
    border-radius: 0 0 0 6px;
  }
}
.panel-products__ss-table tbody tr:last-child td {
  border-radius: 0 0 10px 0;
}
@media (width < 1440px) {
  .panel-products__ss-table tbody tr:last-child td {
    border-radius: 0 0 0.69vw 0;
  }
}
@media (width <= 767px) {
  .panel-products__ss-table tbody tr:last-child td {
    border-radius: 0 0 6px 0;
  }
}
.panel-products__ss-table tbody tr th {
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.05em;
  color: var(--blue-01);
  text-align: left;
  background: var(--blue-05);
  padding-block: 0.6em;
  padding-left: 1.1em;
}
@media (width < 1440px) {
  .panel-products__ss-table tbody tr th {
    font-size: 1.25vw;
  }
}
@media (width <= 767px) {
  .panel-products__ss-table tbody tr th {
    font-size: 9px;
    text-align: center;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}
.panel-products__ss-table tbody tr td {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: var(--color-black);
  text-align: center;
  background-color: #f3f4ff;
  padding-inline: 1.3em;
  padding-block: 0.6em;
}
.panel-products__ss-table tbody tr td p {
  position: relative;
  display: inline-block;
}
.panel-products__ss-table tbody tr td p .panel-products__protective-film-table-td-9-5 {
  position: absolute;
  top: 40%;
  right: -10px;
  width: 17px;
  height: 8px;
  transform: translate(50%, -50%);
}
.panel-products__ss-table tbody tr td p .panel-products__protective-film-table-td-9-5 svg {
  width: 100%;
  height: 100%;
}
@media (width < 1440px) {
  .panel-products__ss-table tbody tr td p .panel-products__protective-film-table-td-9-5 {
    right: -0.69vw;
    width: 1.18vw;
    height: 0.56vw;
  }
}
@media (width <= 767px) {
  .panel-products__ss-table tbody tr td p .panel-products__protective-film-table-td-9-5 {
    right: -6px;
    width: 12px;
    height: 5.6px;
  }
}
@media (width < 1440px) {
  .panel-products__ss-table tbody tr td {
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .panel-products__ss-table tbody tr td {
    font-size: 9px;
    padding-inline: 0.5em;
  }
}
@media (width < 1440px) {
  .panel-products__ss-table {
    border-spacing: 0.14vw;
    margin-top: 1.46vw;
  }
}
@media (width <= 767px) {
  .panel-products__ss-table {
    border-spacing: 1.2px;
    margin-top: 12.6px;
  }
}
.panel-products__content-paragraph {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: var(--color-black);
}
@media (width < 1440px) {
  .panel-products__content-paragraph {
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .panel-products__content-paragraph {
    font-size: 9px;
  }
}
.panel-products__content-note {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: var(--color-black);
  padding-left: 1.1em;
  margin-top: 10px;
}
.panel-products__content-note:last-child {
  margin-bottom: 10px;
}
.panel-products__content-note::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}
@media (width < 1440px) {
  .panel-products__content-note {
    font-size: 1.11vw;
    margin-top: 0.69vw;
  }
}
@media (width <= 767px) {
  .panel-products__content-note {
    font-size: 9px;
    margin-top: 5px;
  }
}
.panel-products__content-pdf-link {
  margin-block: 10px 20px;
}
@media (width < 1440px) {
  .panel-products__content-pdf-link {
    margin-block: 0.69vw 1.39vw;
  }
}
@media (width <= 767px) {
  .panel-products__content-pdf-link {
    margin-block: 8px 16px;
  }
}
.panel-products .text-asterisk {
  position: relative;
  display: inline-block;
  text-indent: 4.2px;
}
.panel-products .text-asterisk::before {
  position: absolute;
  top: 7.5px;
  left: 0;
  display: inline-block;
  width: 6px;
  height: 6px;
  background-image: url("../images/decoration_coating-panel-products__content-image-item-text.svg");
  background-size: cover;
  content: "";
}
@media (width < 1440px) {
  .panel-products .text-asterisk::before {
    top: 0.35vw;
    left: -0.13vw;
    width: 0.42vw;
    height: 0.42vw;
  }
}
@media (width <= 767px) {
  .panel-products .text-asterisk::before {
    top: 3.2px;
    left: 0;
    width: 4.8px;
    height: 4.8px;
  }
}
.panel-products .text--caution--01 {
  display: inline-block;
}
.panel-products .text--caution--01::after {
  display: inline-block;
  width: 15px;
  height: 9px;
  background-image: url("../images/decoration_coating-panel-products__content-image-item-text-caution--01.svg");
  background-size: cover;
  transform: translateX(-3px) translateY(-5px);
  content: "";
}
@media (width < 1440px) {
  .panel-products .text--caution--01::after {
    width: 1.04vw;
    height: 0.62vw;
    transform: translateX(-0.21vw) translateY(-0.35vw);
  }
}
@media (width <= 767px) {
  .panel-products .text--caution--01::after {
    width: 7px;
    height: 4.2px;
    transform: translateX(-1.4px) translateY(-2px);
  }
}
.panel-products .text--caution--02 {
  display: inline-block;
}
.panel-products .text--caution--02::after {
  display: inline-block;
  width: 22px;
  height: 11px;
  background-image: url("../images/decoration_coating-panel-products__content-image-item-text-caution--02.svg");
  background-size: cover;
  transform: translateY(-5px);
  content: "";
}
@media (width < 1440px) {
  .panel-products .text--caution--02::after {
    width: 1.53vw;
    height: 0.77vw;
    transform: translateY(-0.35vw);
  }
}
@media (width <= 767px) {
  .panel-products .text--caution--02::after {
    width: 11px;
    height: 5.5px;
    transform: translateY(-2px);
  }
}
.panel-products__adhesive-film-lineup-pdf-link {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
@media (width < 1440px) {
  .panel-products__adhesive-film-lineup-pdf-link {
    margin-top: 1.39vw;
  }
}
@media (width <= 767px) {
  .panel-products__adhesive-film-lineup-pdf-link {
    margin-top: 16px;
  }
}

.modal {
  position: fixed;
  z-index: 1000;
  display: flex;
  max-height: calc(100dvh - 40px);
  opacity: 0;
  transition: opacity 0.3s ease;
  visibility: hidden;
  inset: 0;
  pointer-events: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal.is-open {
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal__inner {
  width: 100%;
  height: 100%;
  padding-inline: 2%;
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
}
.modal__close {
  position: absolute;
  top: -12px;
  right: -12px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: var(--blue-02);
  border-radius: 4px;
  cursor: pointer;
}
@media (width < 1440px) {
  .modal__close {
    top: -0.83vw;
    right: -0.83vw;
    width: 2.5vw;
    height: 2.5vw;
  }
}
@media (width <= 767px) {
  .modal__close {
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
  }
}
.modal__body {
  padding-bottom: 40px;
}
.modal__body:not(:first-child) {
  padding-top: 40px;
}
.modal__body:not(:last-child) {
  border-bottom: 2px solid #d0d0d0;
}
@media (width < 1440px) {
  .modal__body {
    padding-bottom: 2.78vw;
  }
  .modal__body:not(:first-child) {
    padding-top: 2.78vw;
  }
  .modal__body:not(:last-child) {
    border-bottom: 0.14vw solid #d0d0d0;
  }
}
@media (width <= 767px) {
  .modal__body {
    padding-bottom: 32px;
  }
  .modal__body:not(:first-child) {
    padding-top: 32px;
  }
  .modal__body:not(:last-child) {
    border-bottom: 1.2px solid #d0d0d0;
  }
}
.modal__content {
  position: relative;
  width: 100%;
  max-width: 1156px;
  margin: 5% auto;
  padding: 60px 50px;
  background: #fff;
  border: 3px solid var(--blue-02);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(20px);
}
.is-open .modal__content {
  opacity: 1;
  transform: translateY(0);
}
@media (width < 1440px) {
  .modal__content {
    padding: 4.17vw 3.47vw;
    border-radius: 1.39vw;
  }
}
@media (width <= 767px) {
  .modal__content {
    padding: 30px 2%;
    border-radius: 15px;
  }
}
.modal__title-text {
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  color: var(--color-black);
}
@media (width < 1440px) {
  .modal__title-text {
    font-size: 1.94vw;
  }
}
@media (width <= 767px) {
  .modal__title-text {
    font-size: 16px;
  }
}
.modal__inner-content {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}
@media (width < 1440px) {
  .modal__inner-content {
    gap: 2.78vw;
    margin-top: 1.39vw;
  }
}
@media (width <= 767px) {
  .modal__inner-content {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 16px;
  }
}
.modal__content-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 309px;
}
@media (width < 1440px) and (width >= 768px) {
  .modal__content-image {
    gap: 0.69vw;
    width: 21.53vw;
  }
}
@media (width <= 767px) {
  .modal__content-image {
    gap: 8px;
    max-width: 100%;
  }
}
.modal__content-image-caption {
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  color: var(--color-black);
}
.modal__table--pattern-02-detail-link {
  display: inline-block;
  border-bottom: solid currentColor 1px;
}
.modal__table--pattern-02-detail-link-pdf {
  display: inline-block;
  transform: translateY(0.1em);
}
.modal__table {
  width: 707px;
}
.modal__table thead tr th:first-child {
  border-radius: 10px 0 0 0;
}
@media (width < 1440px) {
  .modal__table thead tr th:first-child {
    border-radius: 0.69vw 0 0 0;
  }
}
@media (width <= 767px) {
  .modal__table thead tr th:first-child {
    border-radius: 6px 0 0 0;
  }
}
.modal__table thead tr th:last-child {
  border-radius: 0 10px 0 0;
}
@media (width < 1440px) {
  .modal__table thead tr th:last-child {
    border-radius: 0 0.69vw 0 0;
  }
}
@media (width <= 767px) {
  .modal__table thead tr th:last-child {
    border-radius: 0 6px 0 0;
  }
}
.modal__table tbody:nth-child(2) tr:first-child th:first-child {
  border-radius: 10px 0 0 0;
}
@media (width < 1440px) {
  .modal__table tbody:nth-child(2) tr:first-child th:first-child {
    border-radius: 0.69vw 0 0 0;
  }
}
@media (width <= 767px) {
  .modal__table tbody:nth-child(2) tr:first-child th:first-child {
    border-radius: 6px 0 0 0;
  }
}
.modal__table tbody:nth-child(2) tr:first-child th:last-child {
  border-radius: 0 10px 0 0;
}
@media (width < 1440px) {
  .modal__table tbody:nth-child(2) tr:first-child th:last-child {
    border-radius: 0 0.69vw 0 0;
  }
}
@media (width <= 767px) {
  .modal__table tbody:nth-child(2) tr:first-child th:last-child {
    border-radius: 0 6px 0 0;
  }
}
@media (width < 1440px) and (width >= 768px) {
  .modal__table {
    flex: 1;
    width: unset;
  }
}
@media (width <= 767px) {
  .modal__table {
    width: 100%;
  }
}
.modal__table-note {
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  color: var(--color-black);
  margin-top: 20px;
}
@media (width < 1440px) {
  .modal__table-note {
    font-size: 1.11vw;
    margin-top: 1.39vw;
  }
}
@media (width <= 767px) {
  .modal__table-note {
    font-size: 12px;
    margin-top: 16px;
  }
}
.modal__table-note--corona-compatibility {
  margin-top: 0;
}
@media (width <= 767px) {
  .modal__table-note--corona-compatibility {
    margin-top: 16px;
  }
}
.modal__table--pattern-01 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
}
.modal-coater-laminator .modal__table--pattern-01 colgroup col:nth-child(1) {
  width: 31.4%;
  border-radius: 10px 0 0 0;
}
.modal-coater-laminator .modal__table--pattern-01 colgroup col:nth-child(2) {
  width: 20.51%;
}
.modal-coater-laminator .modal__table--pattern-01 colgroup col:nth-child(3) {
  width: 48.09%;
  border-radius: 0 10px 0 0;
}
.modal-inspection-slitter .modal__table--pattern-01 colgroup col:nth-child(1) {
  width: 34%;
  border-radius: 10px 0 0 0;
}
.modal-inspection-slitter .modal__table--pattern-01 colgroup col:nth-child(2) {
  width: 33%;
}
.modal-inspection-slitter .modal__table--pattern-01 colgroup col:nth-child(3) {
  width: 33%;
  border-radius: 0 10px 0 0;
}
@media (width < 1440px) {
  .modal__table--pattern-01 {
    border-spacing: 0.14vw;
  }
}
@media (width <= 767px) {
  .modal__table--pattern-01 {
    border-spacing: 1.2px;
  }
}
.modal__table--pattern-01-th {
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  color: var(--color-white);
  text-align: center;
  background: var(--blue-01);
  padding-block: 5.5px;
}
@media (width < 1440px) {
  .modal__table--pattern-01-th {
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .modal__table--pattern-01-th {
    font-size: 9.6px;
  }
}
.modal__table--pattern-01-th--with-button {
  padding-inline: 10px;
}
@media (width < 1440px) {
  .modal__table--pattern-01-th--with-button {
    padding-inline: 0.69vw;
  }
}
@media (width <= 767px) {
  .modal__table--pattern-01-th--with-button {
    padding-inline: 4px;
  }
}
.modal__table--pattern-01-th-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (width < 1440px) {
  .modal__table--pattern-01-th-inner {
    gap: 0.69vw;
  }
}
@media (width <= 767px) {
  .modal__table--pattern-01-th-inner {
    flex-direction: column;
    gap: 4px;
  }
}
.modal__table--pattern-01-modal-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 7px;
  color: var(--blue-02);
  background: var(--color-white);
  border-radius: 999px;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media (width < 1440px) {
  .modal__table--pattern-01-modal-button {
    gap: 0.42vw;
    padding-block: 0.21vw;
    padding-inline: 0.49vw;
  }
}
@media (width <= 767px) {
  .modal__table--pattern-01-modal-button {
    gap: 4px;
    padding-block: 2px;
    padding-inline: 6px;
  }
}
.modal__table--pattern-01-modal-button:hover, .modal__table--pattern-01-modal-button:active {
  color: var(--color-white);
  background: var(--blue-02);
}
.modal__table--pattern-01-modal-button-text {
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
@media (width < 1440px) {
  .modal__table--pattern-01-modal-button-text {
    font-size: 0.76vw;
  }
}
@media (width <= 767px) {
  .modal__table--pattern-01-modal-button-text {
    font-size: 8px;
  }
}
.modal__table--pattern-01-modal-button-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 11px;
  aspect-ratio: 1;
}
.modal__table--pattern-01-modal-button-icon img {
  display: block;
  width: 100%;
  height: auto;
}
@media (width < 1440px) {
  .modal__table--pattern-01-modal-button-icon {
    width: 0.76vw;
  }
}
@media (width <= 767px) {
  .modal__table--pattern-01-modal-button-icon {
    width: 8px;
  }
}
.modal__table--pattern-01-machine {
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.05em;
  color: var(--blue-01);
  text-align: left;
  background: var(--blue-05);
  padding-block: 1em;
  padding-left: 1.1em;
}
@media (width < 1440px) {
  .modal__table--pattern-01-machine {
    font-size: 1.25vw;
  }
}
@media (width <= 767px) {
  .modal__table--pattern-01-machine {
    font-size: 10.8px;
    text-align: center;
    padding-inline: 0.5em;
  }
}
.modal__table--pattern-01-width, .modal__table--pattern-01-method, .modal__table--pattern-01-clean {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: var(--color-black);
  background-color: #f3f4ff;
  padding-inline: 1.3em;
  padding-block: 1em;
}
@media (width < 1440px) {
  .modal__table--pattern-01-width, .modal__table--pattern-01-method, .modal__table--pattern-01-clean {
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .modal__table--pattern-01-width, .modal__table--pattern-01-method, .modal__table--pattern-01-clean {
    font-size: 9.6px;
    padding-inline: 0.5em;
  }
}
.modal__table--pattern-01-note {
  font-size: 10px;
  font-weight: 600;
  line-height: 120%;
  color: var(--blue-01);
}
@media (width < 1440px) {
  .modal__table--pattern-01-note {
    font-size: 0.69vw;
  }
}
@media (width <= 767px) {
  .modal__table--pattern-01-note {
    font-size: 6px;
  }
}
.modal__table--pattern-01-sub {
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
  color: var(--blue-01);
}
@media (width < 1440px) {
  .modal__table--pattern-01-sub {
    font-size: 0.97vw;
  }
}
@media (width <= 767px) {
  .modal__table--pattern-01-sub {
    font-size: 8.4px;
  }
}
.modal__table--pattern-01-row:last-child th {
  border-radius: 0 0 0 10px;
}
.modal__table--pattern-01-row:last-child td:last-child {
  border-radius: 0 0 10px 0;
}
.modal__table--pattern-01-item {
  position: relative;
  padding-left: 1.2em;
}
.modal__table--pattern-01-item::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  color: var(--color-black);
  transform: translateY(-50%);
  content: "●";
}
.modal__table--pattern-02 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  box-sizing: border-box;
}
.modal__table--pattern-02 colgroup col:nth-child(1) {
  width: 31.4%;
  border-radius: 10px 0 0 0;
}
.modal__table--pattern-02 colgroup col:nth-child(3) {
  width: 68.6%;
  border-radius: 0 10px 0 0;
}
@media (width < 1440px) {
  .modal__table--pattern-02 {
    border-spacing: 0.14vw;
  }
}
@media (width <= 767px) {
  .modal__table--pattern-02 {
    border-spacing: 1.2px;
  }
}
.modal__table--pattern-02-term {
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  color: var(--color-white);
  text-align: center;
  text-align: left;
  background: var(--blue-01);
  padding-block: 10px;
  padding-inline: 20px;
}
@media (width < 1440px) {
  .modal__table--pattern-02-term {
    font-size: 1.11vw;
    padding-inline: 1.39vw;
    padding-block: 0.69vw;
  }
}
@media (width <= 767px) {
  .modal__table--pattern-02-term {
    font-size: 9.6px;
    padding-inline: 8px;
    padding-block: 6px;
  }
}
.modal__table--pattern-02-term--with-button {
  padding-block: 8px;
}
@media (width < 1440px) {
  .modal__table--pattern-02-term--with-button {
    padding-block: 0.56vw;
  }
}
@media (width <= 767px) {
  .modal__table--pattern-02-term--with-button {
    padding-block: 6px;
  }
}
.modal__table--pattern-02-term-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
@media (width < 1440px) {
  .modal__table--pattern-02-term-inner {
    gap: 0.56vw;
  }
}
@media (width <= 767px) {
  .modal__table--pattern-02-term-inner {
    gap: 6px;
  }
}
.modal__table--pattern-02-term-note {
  font-size: 14px;
}
@media (width < 1440px) {
  .modal__table--pattern-02-term-note {
    font-size: 0.97vw;
  }
}
@media (width <= 767px) {
  .modal__table--pattern-02-term-note {
    font-size: 8.4px;
  }
}
.modal__table--pattern-02--compatibility {
  margin-top: 12px;
}
.modal__table--pattern-02--compatibility .modal__table--pattern-02-term {
  text-align: center;
}
.modal__table--pattern-02--compatibility .modal__table--pattern-02-detail-head {
  width: auto;
  line-height: 140%;
  padding-block: 0.8em;
}
.modal__table--pattern-02--compatibility .modal__table--pattern-02-detail {
  line-height: 140%;
  padding-block: 0.8em;
}
.modal__table--pattern-02--compatibility .modal__table--pattern-02-row:last-child td:first-child {
  border-radius: 0 0 0 10px;
}
.modal__table--pattern-02--compatibility colgroup col:nth-child(1) {
  width: 36%;
}
.modal__table--pattern-02--compatibility colgroup col:nth-child(2) {
  width: 64%;
}
@media (width < 1440px) {
  .modal__table--pattern-02--compatibility {
    margin-top: 0.83vw;
  }
}
@media (width <= 767px) {
  .modal__table--pattern-02--compatibility {
    margin-top: 10px;
  }
}
.modal__table--pattern-02-detail {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: var(--color-black);
  background-color: #f3f4ff;
  padding-inline: 1.3em;
  padding-block: 1em;
}
.modal__table--pattern-02-detail:has(.modal__table--pattern-02-detail-inner) {
  padding: 0;
}
@media (width < 1440px) {
  .modal__table--pattern-02-detail {
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .modal__table--pattern-02-detail {
    font-size: 9.6px;
    padding-inline: 0.5em;
  }
}
.modal__table--pattern-02-detail-inner {
  display: flex;
}
.modal__table--pattern-02-detail-inner:not(:first-child) {
  border-top: solid 2px #fff;
}
@media (width < 1440px) {
  .modal__table--pattern-02-detail-inner {
    border-top: solid 0.14vw #fff;
  }
}
@media (width <= 767px) {
  .modal__table--pattern-02-detail-inner {
    border-top: solid 1.2px #fff;
  }
}
.modal__table--pattern-02-detail-head {
  display: flex;
  align-items: center;
  width: 34.84%;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.05em;
  color: var(--blue-01);
  text-align: left;
  background: var(--blue-05);
  padding-block: 1em;
  padding-left: 1.1em;
  border-right: solid 2px #fff;
}
@media (width < 1440px) {
  .modal__table--pattern-02-detail-head {
    border-right: solid 0.14vw #fff;
  }
}
@media (width <= 767px) {
  .modal__table--pattern-02-detail-head {
    border-right: solid 1.2px #fff;
  }
}
@media (width < 1440px) {
  .modal__table--pattern-02-detail-head {
    font-size: 1.25vw;
  }
}
@media (width <= 767px) {
  .modal__table--pattern-02-detail-head {
    font-size: 10.8px;
    text-align: center;
    padding-inline: 0.5em;
  }
}
.modal__table--pattern-02-detail-value {
  padding-inline: 1.3em;
  padding-block: 1em;
}
@media (width <= 767px) {
  .modal__table--pattern-02-detail-value {
    padding-inline: 0.5em;
  }
}
.modal__table--pattern-02-row:last-child th {
  border-radius: 0 0 0 10px;
}
.modal__table--pattern-02-row:last-child td:last-child {
  border-radius: 0 0 10px 0;
}
.modal .modal__table--pattern-03 {
  width: 100%;
  border-radius: min(0.69vw, 10px);
  border-collapse: collapse;
  overflow: hidden;
}
.modal .modal__table--pattern-03 td {
  width: 33.333%;
  font-size: min(1.11vw, 16px);
  font-weight: 400;
  color: var(--color-black);
  text-align: center;
  background-color: var(--blue-05);
  border: 2px solid var(--color-white);
  padding-block: 0.56em;
  padding-inline: 0.2em;
}
@media (width < 1440px) {
  .modal .modal__table--pattern-03 td {
    font-size: 11px;
  }
}
.modal__table--pattern-02-detail .modal__pdf-link {
  margin-block: 11px;
}
@media (width < 1440px) {
  .modal__table--pattern-02-detail .modal__pdf-link {
    margin-block: 0.76vw;
  }
}
@media (width <= 767px) {
  .modal__table--pattern-02-detail .modal__pdf-link {
    margin-block: 8.8px;
  }
}
.modal__pdf-link--end {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
@media (width < 1440px) {
  .modal__pdf-link--end {
    margin-top: 1.39vw;
  }
}
@media (width <= 767px) {
  .modal__pdf-link--end {
    margin-top: 16px;
  }
}

.modal__card-title {
  font-size: min(1.94vw, 28px);
  font-weight: 700;
  line-height: 120%;
  color: var(--color-black);
}
@media (width <= 767px) {
  .modal__card-title {
    font-size: 16.8px;
  }
}
.modal__body--01 {
  border-bottom: 2px solid #d0d0d0;
  padding-bottom: min(4.17vw, 60px);
}
@media (width <= 767px) {
  .modal__body--01 {
    border-bottom: 1px solid #d0d0d0;
    padding-bottom: 36px;
  }
}
.modal__body--01-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: min(1.46vw, 21px);
  margin-top: min(4.17vw, 60px);
}
@media (width <= 767px) {
  .modal__body--01-inner {
    gap: 13px;
    margin-top: 36px;
  }
}
.modal__title {
  font-size: min(1.94vw, 28px);
  font-weight: 700;
  line-height: 120%;
  color: var(--color-black);
}
@media (width <= 767px) {
  .modal__title {
    font-size: 16.8px;
    text-align: center;
  }
}
.modal__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - min(1.46vw, 21px) * 2) / 3);
  background: #f3f4ff;
  border-radius: min(0.69vw, 10px);
  aspect-ratio: 338/300;
  white-space: nowrap;
}
@media (width <= 767px) {
  .modal__card {
    width: 100%;
    max-width: 338px;
    border-radius: 6px;
  }
}
.modal__card-title {
  position: absolute;
  top: 0.83em;
  left: 50%;
  font-size: min(1.67vw, 24px);
  font-weight: 600;
  line-height: 120%;
  color: var(--blue-01);
  transform: translateX(-50%);
}
@media (width <= 767px) {
  .modal__card-title {
    font-size: 15px;
  }
}
.modal__card-text {
  position: absolute;
  top: 3.71em;
  left: 50%;
  font-size: min(0.97vw, 14px);
  font-weight: 400;
  line-height: 160%;
  color: var(--color-black);
  transform: translateX(-50%);
}
@media (width <= 767px) {
  .modal__card-text {
    font-size: 11px;
  }
}
.modal__card-img {
  width: 100%;
  height: 100%;
}
.modal__body--02 {
  display: flex;
  gap: min(4.44vw, 64px);
  padding-top: min(4.17vw, 60px);
}
@media (width <= 767px) {
  .modal__body--02 {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-top: 36px;
  }
}
.modal__img-area {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(23.47vw, 338px);
  background: rgba(255, 243, 227, 0.5);
  border-radius: min(0.69vw, 10px);
  aspect-ratio: 338/402;
  white-space: nowrap;
}
@media (width <= 767px) {
  .modal__img-area {
    width: 100%;
    max-width: 338px;
    border-radius: 6px;
  }
}
.modal__img-title {
  position: absolute;
  top: 0.83em;
  left: 50%;
  font-size: min(1.67vw, 24px);
  font-weight: 600;
  line-height: 120%;
  color: var(--blue-01);
  transform: translateX(-50%);
}
@media (width <= 767px) {
  .modal__img-title {
    font-size: 15px;
  }
}
.modal__img-text {
  position: absolute;
  top: 3.71em;
  left: 50%;
  font-size: min(0.97vw, 14px);
  font-weight: 400;
  line-height: 160%;
  color: var(--color-black);
  transform: translateX(-50%);
}
@media (width <= 767px) {
  .modal__img-text {
    font-size: 11px;
  }
}
.modal__img {
  width: 100%;
  height: 100%;
}
.modal__body--02-inner {
  flex: 1;
}
.modal__body--02-inner-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: min(2.08vw, 30px);
  font-size: min(1.25vw, 18px);
  font-weight: 600;
  line-height: 120%;
  color: var(--color-white);
  background: linear-gradient(89.99deg, #474fd0 23.63%, #3620c7 83.56%);
  border-radius: min(0.28vw, 4px);
}
@media (width <= 767px) {
  .modal__body--02-inner-title {
    height: 30px;
    font-size: 16px;
    border-radius: 4px;
  }
}
.modal__body--02-inner-list {
  margin-top: min(0.69vw, 10px);
  counter-reset: number;
}
@media (width <= 767px) {
  .modal__body--02-inner-list {
    margin-top: 8px;
  }
}
.modal__body--02-inner-list-item {
  position: relative;
  padding-left: min(2.92vw, 42px);
  counter-increment: number;
}
.modal__body--02-inner-list-item::before {
  position: absolute;
  left: 0;
  font-size: min(1.81vw, 26px);
  font-weight: 600;
  line-height: 160%;
  color: var(--blue-05);
  content: counter(number, decimal-leading-zero);
}
@media (width <= 767px) {
  .modal__body--02-inner-list-item::before {
    font-size: 18px;
  }
}
@media (width <= 767px) {
  .modal__body--02-inner-list-item {
    padding-left: 24px;
  }
}
.modal__body--02-inner-list-item-title {
  font-size: min(1.39vw, 20px);
  font-weight: 700;
  line-height: 180%;
  color: var(--blue-01);
}
@media (width <= 767px) {
  .modal__body--02-inner-list-item-title {
    font-size: 16px;
  }
}
.modal__body--02-inner-list-item-text {
  font-size: min(1.11vw, 16px);
  font-weight: 400;
  line-height: 180%;
  color: #000;
}
@media (width <= 767px) {
  .modal__body--02-inner-list-item-text {
    font-size: 14px;
  }
}

body.is-modal-open {
  overflow: hidden;
}

.panel-products__content-table-head .panel-products__content-table-th {
  background: var(--blue-02);
}

.panel-products__content-table tbody .panel-products__content-table-th {
  color: var(--blue-02);
}