/* =========================================================
   Reset
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #222;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
}

html[lang="zh-Hans"] body {
  font-family: "Noto Sans SC", sans-serif;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
}




/* =========================================================
   Common
========================================================= */

.inner {
  width: 980px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}



/* =========================================================
   Header
========================================================= */

.site-header {
  position: relative;
  z-index: 100;
  width: 100%;
  background: #fff;
}

/* =========================================================
   Fixed Header
========================================================= */

.site-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  animation: headerFadeIn 0.45s ease forwards;
}

@keyframes headerFadeIn {

  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}





.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 980px;
  max-width: calc(100% - 40px);
  height: 82px;
  margin: 0 auto;
}


/* =========================================================
   Menu Trigger
========================================================= */

.menu-trigger {
  display: none;
}

.header-logo {
  display: block;
  width: 150px;
  flex-shrink: 0;
}

.header-logo img {
  width: 100%;
}


/* =========================================================
   Global Navigation
========================================================= */

.global-nav {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.global-nav > a,
.language-trigger {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-size: 1.4rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
}

.global-nav > a::after,
.language-trigger::after {
  position: absolute;
  right: 15px;
  bottom: 20px;
  left: 15px;
  height: 3px;
  background: #009b63;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.global-nav > a:hover::after,
.language-trigger:hover::after {
  transform: scaleX(1);
}

.global-nav > a,
.language-nav {
  position: relative;
}

.global-nav > a:not(:first-child)::before,
.language-nav::before {
  position: absolute;
  top: 50%;
  left: 0;

  width: 1px;
  height: 18px;

  background: #cfcfcf;

  content: "";
  transform: translateY(-50%);
}



/* =========================================================
   Language
========================================================= */

.language-nav {
  position: relative;
  height: 100%;
}

.language-trigger {
  height: 100%;
  gap: 10px;
}


.language-trigger {
  color: #009b50;
}

.language-arrow {
  width: 0;
  height: 0;

  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #009b50;

  transition: transform 0.3s ease;
}

.language-trigger[aria-expanded="true"] .language-arrow {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 190px;
  padding: 10px 0;
  background: #f2f2f2;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.language-nav.is-open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu a {
  display: block;
  padding: 11px 20px;
  font-size: 1.3rem;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.language-menu a:hover,
.language-menu a.is-current {
  color: #036c46;
  background: #e7e7e7;
}


/* =========================================================
   Header Smartphone
========================================================= */

@media (max-width: 767px) {

  .site-header {
    position: relative;
    z-index: 200;
  }

  .header-inner {
    position: relative;

    width: calc(100% - 32px);
    max-width: none;
    height: 72px;

    margin: 0 auto;
  }


  /* =====================================================
     Logo
  ====================================================== */

  .header-logo {
    width: clamp(105px, 30vw, 125px);
  }


  /* =====================================================
     Hamburger
  ====================================================== */

 .menu-trigger {

    -webkit-tap-highlight-color: transparent;
  outline: none;
  position: relative;
  right: 8px;
  z-index: 202;

  display: block;

  width: 48px;
  height: 48px;

  margin-left: auto;

  cursor: pointer;
}

.menu-trigger span {
  position: absolute;
  left: 10px;

  width: 28px;
  height: 2px;

  background: #222;

  transition:
    top 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}

.menu-trigger span:nth-child(1) {
  top: 14px;
}

.menu-trigger span:nth-child(2) {
  top: 23px;
}

.menu-trigger span:nth-child(3) {
  top: 32px;
}

  /* Open */

.menu-trigger.is-open span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

.menu-trigger.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-trigger.is-open span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}


  /* =====================================================
     Global Navigation
  ====================================================== */

 .global-nav {
    position: absolute;
    top: 72px;
    right: -16px;
    left: -16px;
    z-index: 1001;

    display: none;

    height: auto;
    padding: 14px 24px 18px;

    background: #fff;

    box-shadow:
      0 10px 20px rgba(0, 0, 0, 0.08);
  }

  .global-nav.is-open {
    display: block;
  }

  .global-nav > a {
    display: flex;
    align-items: center;

    min-height: 46px;
    padding: 10px 4px;

    border-bottom: 1px solid #e5e5e5;

    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.4;
  }



  /* PC用の縦区切りを消す */

  .global-nav > a:not(:first-child)::before,
  .language-nav::before {
    display: none;
  }


  /* PC用hover下線をSPでは消す */

  .global-nav > a::after,
  .language-trigger::after {
    display: none;
  }


  /* =====================================================
     Language
  ====================================================== */

  .language-nav {
    height: auto;
  }

  .language-trigger {
    width: 100%;
    min-height: 46px;

    justify-content: flex-start;

    padding: 10px 4px;

    border-bottom: 1px solid #e5e5e5;

    font-size: 1.4rem;
    line-height: 1.4;
  }

  .language-arrow {
    margin-left: 4px;
  }


  /* Language Sub Menu */

  .language-menu {
    position: static;

    width: 100%;
    max-height: 0;

    padding: 0;

    overflow: hidden;

    background: #f2f2f2;
    box-shadow: none;

    opacity: 1;
    visibility: visible;

    transform: none;

    transition:
      max-height 0.35s ease,
      padding 0.35s ease;
  }

  .language-nav.is-open .language-menu {
    max-height: 180px;
    padding: 6px 0;

    transform: none;
  }

  .language-menu a {
    padding: 11px 18px;

    font-size: 1.3rem;
  }

}

/* =========================================================
   Page Top
========================================================= */

.page-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;

  width: 54px;
  height: 54px;

  padding: 0;
  border: 1px solid #009b50;
  background: #fff;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    background-color 0.3s ease;
}

.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-top:hover {
  background: #009b50;
}

.page-top span {
  position: absolute;
  top: 21px;
  left: 50%;

  width: 12px;
  height: 12px;

  border-top: 2px solid #009b50;
  border-left: 2px solid #009b50;

  transform: translateX(-50%) rotate(45deg);

  transition: border-color 0.3s ease;
}

.page-top:hover span {
  border-color: #fff;
}

@media (max-width: 767px) {

  .page-top {
    right: 15px;
    bottom: 15px;

    width: 46px;
    height: 46px;
  }

  .page-top span {
    top: 18px;
  }

}

/* =========================================================
   Hero
========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 700px;
  background: #fff;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 1120px;
  max-width: calc(100% - 40px);
  height: 100%;
  margin: 0 auto;
}


/* =========================================================
   Hero Background
========================================================= */

.hero-bg {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}



/* 左右装飾 */

.hero-decoration {
  position: absolute;
  top: 0;
  height: 100%;
  width: auto;
  max-width: none;
}

.hero-decoration--left {
  left: 0;
}

.hero-decoration--right {
  right: 0;
}


/* =========================================================
   Hero Heading
========================================================= */

.hero-heading {
  position: relative;
  z-index: 5;
  width: min(820px, 100%);
  margin: 0 auto;
  padding-top: 45px;
  text-align: center;
}

.hero-jimtof-logo {
  width: min(710px, 100%);
  margin: 0 auto;
}

.hero-subtitle {
  margin: 10px 0 0;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
}

.hero-subtitle,
.hero-date,
.hero-venue {
  transform: scaleX(1.07);
  transform-origin: center;
  letter-spacing: 0.02em;
}

.hero-subtitle{
  letter-spacing: 0.04em;
}

/* =========================================================
   Hero Date
========================================================= */

.hero-date-wrap {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  padding-bottom: 8px;
}

.hero-date-wrap::after {
  position: absolute;
  right: -15px;
  bottom: 0;
  left: -33px;
  height: 3px;
  content: "";
   background: linear-gradient(
    90deg,
    #00854a 0%,
    #00a651 50%,
    #8cc665 100%
  ); 
}

.hero-date {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 0;
  line-height: 1;
  position: relative;
}

/* 2026 */
.hero-date-year {
  position: absolute;
  top: 50%;
  left: 10px;

  margin: 0;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;

  transform: translate(-100%, -42%) rotate(90deg);
  transform-origin: center;
}

.hero-date strong {
  font-size: 5rem;
  font-weight: 700;
}

.hero-date small {
  font-size: 2.8rem;
  font-weight: 700;
}

.hero-date-separator {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  margin: 0 8px;
  transform: translateY(-1px);
}

.hero-date-separator span {
  display: block;
  width: 13px;
  height: 13px;
  border-top: 3px solid #00a651;
  border-right: 3px solid #00a651;
  transform: rotate(45deg);
}

.hero-date-separator span + span {
  margin-left: -7px;
}


.hero-date-number,
.hero-date-day,
.hero-date-year,
.hero-date strong,
.hero-date small {
  font-family: Arial, Helvetica, sans-serif;
}

/* =========================================================
   Hero Venue
========================================================= */

.hero-venue {
  margin: 8px 0 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.hero-venue small {
  font-size: 1.2rem;
  font-weight: 700;
}


/* =========================================================
   Hero Machines
========================================================= */

/*
 * 01 : 311 × 216
 * 02 : 204 × 226
 * 03 : 267 × 226
 * 04 : 290 × 226
 *
 * 横幅合計 : 1072px
 */

.hero-machines {
  position: absolute;
  left: 50%;
  bottom: 55px;
  width: 1072px;
  height: 226px;
  transform: translateX(-50%);
}

.hero-machine {
  position: absolute;
  bottom: 0;
}

.hero-machine img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 18px rgba(0, 0, 0, 0.08));
}


/* 01 */

.hero-machine--01 {
  left: 0;
  bottom: 0;
  width: 311px;
}


/* 02 */

.hero-machine--02 {
  left: 311px;
  bottom: 0;
  width: 204px;
}


/* 03 */

.hero-machine--03 {
  left: 515px;
  bottom: 0;
  width: 267px;
}


/* 04 */

.hero-machine--04 {
  left: 782px;
  bottom: 0;
  width: 290px;
}


/* =========================================================
   Hero Animation - Initial
========================================================= */

.hero-heading,
.hero-machine,
.hero-decoration {
  opacity: 0;
}

.hero-heading {
  transform: translateY(20px);
}

.hero-machine--01 {
  transform: translateX(-35px);
}

.hero-machine--02 {
  transform: translateY(25px);
}

.hero-machine--03 {
  transform: translateY(25px);
}

.hero-machine--04 {
  transform: translateX(35px);
}

.hero-decoration--left {
  transform: translateX(-60px);
}

.hero-decoration--right {
  transform: translateX(60px);
}


/* =========================================================
   Hero Animation - Active
========================================================= */

body.is-loaded .hero-heading {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.9s ease 0.2s,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

body.is-loaded .hero-decoration--left,
body.is-loaded .hero-decoration--right {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 1.2s ease,
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-loaded .hero-machine {
  opacity: 1;
}

body.is-loaded .hero-machine--01 {
  transform: translateX(0);
  transition:
    opacity 0.9s ease 0.65s,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.65s;
}

body.is-loaded .hero-machine--02 {
  transform: translateY(0);
  transition:
    opacity 0.9s ease 0.8s,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.8s;
}

body.is-loaded .hero-machine--03 {
  transform: translateY(0);
  transition:
    opacity 0.9s ease 0.95s,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.95s;
}

body.is-loaded .hero-machine--04 {
  transform: translateX(0);
  transition:
    opacity 0.9s ease 1.1s,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1) 1.1s;
}


/* =========================================================
   Hero Responsive
========================================================= */

@media (max-width: 1160px) {

  .hero {
    height: clamp(360px, 60vw, 700px);
  }

  .hero-inner {
    width: calc(100% - 40px);
  }


  /* =====================================================
     Heading
  ====================================================== */

  .hero-heading {
    width: min(820px, 78vw);
    padding-top: clamp(24px, 3.9vw, 45px);
  }

  .hero-jimtof-logo {
    width: clamp(300px, 61vw, 710px);
    max-width: 100%;
  }

  .hero-subtitle {
    margin-top: clamp(5px, 0.85vw, 10px);
    font-size: clamp(1.8rem, 3.45vw, 4rem);
  }


  /* =====================================================
     Date
  ====================================================== */

  .hero-date-wrap {
    margin-top: clamp(5px, 0.85vw, 10px);
    padding-bottom: clamp(4px, 0.7vw, 8px);
  }

  .hero-date {
    gap: clamp(3px, 0.7vw, 8px);
  }

  .hero-date-year {
    left: clamp(5px, 0.85vw, 10px);
    font-size: clamp(1.1rem, 1.55vw, 1.8rem);
  }

  .hero-date strong {
    font-size: clamp(2.7rem, 4.3vw, 5rem);
  }

  .hero-date small {
    font-size: clamp(1.35rem, 2.4vw, 2.8rem);
  }

  .hero-date-separator {
    gap: 1px;
    margin: 0 clamp(3px, 0.7vw, 8px);
  }

  .hero-date-separator span {
    width: clamp(7px, 1.1vw, 13px);
    height: clamp(7px, 1.1vw, 13px);

    border-top-width: clamp(2px, 0.25vw, 3px);
    border-right-width: clamp(2px, 0.25vw, 3px);
  }

  .hero-date-separator span + span {
    margin-left: clamp(-7px, -0.6vw, -4px);
  }

  .hero-date-wrap::after {
    right: clamp(-15px, -1.2vw, -7px);
    left: clamp(-33px, -2.5vw, -15px);
    height: clamp(2px, 0.25vw, 3px);
  }


  /* =====================================================
     Venue
  ====================================================== */

  .hero-venue {
    margin-top: clamp(4px, 0.7vw, 8px);
    font-size: clamp(1.15rem, 1.72vw, 2rem);
  }

  .hero-venue small {
    font-size: clamp(0.9rem, 1.03vw, 1.2rem);
  }


  /* =====================================================
     Machines

     PCの1072×226の比率と配置をそのまま縮小
  ====================================================== */

  .hero-machines {
    bottom: clamp(22px, 4.7vw, 55px);

    width: min(92vw, 1072px);
    height: auto;

    aspect-ratio: 1072 / 226;

    transform: translateX(-50%);
  }

  .hero-machine--01 {
    left: 0;
    width: 29.01%;
  }

  .hero-machine--02 {
    left: 29.01%;
    width: 19.03%;
  }

  .hero-machine--03 {
    left: 48.04%;
    width: 24.91%;
  }

  .hero-machine--04 {
    left: 72.95%;
    width: 27.05%;
  }


  /* =====================================================
     Side Decorations
  ====================================================== */

  .hero-decoration {
    top: 50%;

    width: auto;
    height: clamp(300px, 57vw, 700px);

    transform-origin: center;
  }

  body.is-loaded .hero-decoration--left,
  body.is-loaded .hero-decoration--right {
    transform: translateY(-50%);
  }

  .hero-decoration--left {
    left: 0;
  }

  .hero-decoration--right {
    right: 0;
  }

}

/* =========================================================
   Tablet
========================================================= */








@media (max-width: 1100px) {

  .header-inner,
  .inner {
    max-width: calc(100% - 40px);
  }

  .global-nav > a,
  .language-trigger {
    padding: 0 12px;
    font-size: 1.2rem;
  }

}


/* =========================================================
   Hero Smartphone
========================================================= */


@media (max-width: 767px) {

  .hero {
    height: clamp(330px, 60vw, 460px);
  }

  .hero-inner {
    width: calc(100% - 24px);
    max-width: none;
  }

  .hero-heading {
    width: 100%;
    padding-top: clamp(20px, 3.9vw, 30px);
  }

  .hero-jimtof-logo {
    width: clamp(300px, 61vw, 468px);
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: clamp(1.8rem, 3.45vw, 2.65rem);
  }

  .hero-date-year {
    font-size: clamp(1.1rem, 1.55vw, 1.4rem);
  }

  .hero-date strong {
    font-size: clamp(2.7rem, 4.3vw, 3.3rem);
  }

  .hero-date small {
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  }

  .hero-venue {
    font-size: clamp(1.15rem, 1.72vw, 1.35rem);
  }

  .hero-venue small {
    font-size: clamp(0.9rem, 1.03vw, 1rem);
  }

  /* 4台はPC/Tabletと同じ比率のまま縮小 */
  /* 4台の機械：現状より少し大きく */
  .hero-machines {
    bottom: clamp(18px, 4.7vw, 36px);
    width: 98vw;
  }

  /* 帯もTabletから連続して縮小 */
.hero-decoration {
  top: 47%;
  width: auto;
  height: clamp(240px, 71vw, 380px);
}

.hero-decoration--left {
  left: clamp(-34px, -6vw, 0px);
}

.hero-decoration--right {
  right: clamp(-34px, -6vw, 0px);
}

  body.is-loaded .hero-decoration--left,
  body.is-loaded .hero-decoration--right {
    transform: translateY(-50%);
  }

}

/* =========================================================
   Reduced Motion
========================================================= */

/*
@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .hero-heading,
  .hero-machine,
  .hero-decoration {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

}
*/






/* =========================================================
   Products
========================================================= */

.products {
  position: relative;
  overflow: hidden;
  padding: 85px 0 100px;
  background: #fff;
}

.products-decoration {
  position: absolute;
  bottom: 100px;
  left: 0;
  z-index: 0;

  width: 175px;
  height: auto;

  pointer-events: none;
  opacity: 0.6;
}

.products .inner {
  position: relative;
  z-index: auto;
}


/* =========================================================
   Section Heading
========================================================= */

.section-heading {
  position: relative;
  height: 95px;
  margin-bottom: 35px;
}


.section-heading-bg {
  position: absolute;
  top: -40px;

  /* 見た目上の文字左端をviewport左端へ */
  left: calc((100vw - 980px) / -2 - 15px);

  display: flex;

  font-size: 12rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;

    transform: scaleX(1.12);
  transform-origin: left center;

  pointer-events: none;
}

.section-heading-bg > span {
  display: inline-block;

  background: linear-gradient(
    0deg,
    #D3E7C1 0%,
    #B4DBC0 50%,
    #ABDACE 100%
  );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: 0.7;
}






.section-heading-main {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 0;
  padding-top: 10px;
}

.section-heading-main h2 {
  margin: 0;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

.section-heading-main span {
  margin: 0;
  color: #009b50;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}








/* =========================================================
   Products Grid
========================================================= */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}


/* =========================================================
   Product Card
========================================================= */

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border: 1px solid #e6e6e6;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  z-index: 2;
  transform: translateY(-8px);

  box-shadow:
   0 12px 28px rgba(0, 0, 0, 0.10),
    0 0 32px rgba(0, 155, 80, 0.08);
}


.product-card:focus-visible {
  outline: 2px solid #009b50;
  outline-offset: 4px;
}

/* =========================================================
   Product Brand
========================================================= */

.product-brand {
  align-self: flex-start;
  min-width: 164px;
  padding: 7px 18px;
  background: #009b50;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}


/* =========================================================
   Product Image
========================================================= */

.product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  padding: 18px 20px 5px;
  cursor: pointer;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* =========================================================
   Product Body
========================================================= */

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 15px 20px 18px;
}

.product-title {
  position: relative;
  padding-left: 14px;
}

/* 通常時：グレー */
.product-title::before {
  position: absolute;
  top: 2px;
  bottom: 0;
  left: 0;
  width: 6px;
  background: #ddd;
  content: "";
}

/* ホバー用グラデーション */
.product-title::after {
  position: absolute;
  top: 2px;
  bottom: 0;
  left: 0;
  width: 6px;
  background: linear-gradient(
    180deg,
    #ABDACE 0%,
    #B4DBC0 50%,
    #D3E7C1 100%
  );
  content: "";
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* カードホバー時にふわっと表示 */
.product-card:hover .product-title::after {
  opacity: 1;
}




.product-category {
  margin: 0 0 2px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.product-title h3 {
  margin: 0;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}


/* =========================================================
   Product Description
========================================================= */
.product-description {
  margin: 24px 0 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.7;
}

.product-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 86px;
  height: 31px;
  margin: auto auto 0;
  border: 1px solid #009b50;
  color: #009b50;
  font-size: 1.3rem;
  font-weight: 500;

  transition:
    background-color 0.65s ease,
    color 0.65s ease,
    border-color 0.65s ease;
}

.product-more:hover {
  background-color: #009b50;
  color: #fff;
  border-color: #009b50;
}




/* =========================================================
   Products Tablet
========================================================= */

@media (max-width: 1100px) {

  .products-grid {
    gap: 16px;
  }

  .product-title h3 {
    font-size: 3.2rem;
  }

}


/* =========================================================
   Products Tablet
========================================================= */

@media (max-width: 960px) {

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

}

/* =========================================================
   Products Smartphone
========================================================= */

@media (max-width: 767px) {

  .products {
    padding: 60px 0 70px;
  }

  .section-heading {
    height: 70px;
    margin-bottom: 25px;
  }

  .section-heading-bg {
    top: -15px;
    font-size: 5rem;
  }

  .section-heading-main h2 {
    font-size: 3rem;
  }

  .section-heading-main span {
    font-size: 1.2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-card:hover {
    transform: none;
  }

  .product-image {
    height: 240px;
  }

  .product-title h3 {
    font-size: 3.2rem;
  }

}

@media (max-width: 1020px) {

  .section-heading-bg {
    left: -20px;
  }

}


/* =========================================================
   Product Modal
========================================================= */

.product-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 60px 40px;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}

.product-modal.is-open {
  opacity: 1;
  visibility: visible;
}


/* =========================================================
   Modal Overlay
========================================================= */

.product-modal-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.62);
}


/* =========================================================
   Modal Dialog
========================================================= */

.product-modal-dialog {
  position: relative;
  z-index: 2;

  width: 1040px;
  max-width: 100%;

  background: #fff;

  overflow: visible;

  opacity: 0;
  transform: translateY(20px);

  transition:
    opacity 0.5s ease 0.1s,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.product-modal.is-open .product-modal-dialog {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================================
   Modal Close
========================================================= */

.product-modal-close {
  position: absolute;

  top: -50px;
  right: -60px;

  width: 50px;
  height: 50px;

  padding: 0;
  border: 0;

  background: transparent;

  cursor: pointer;
}
.product-modal-close span {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 58px;
  height: 2px;

  background: #fff;

  transform-origin: center;
}

.product-modal-close span:first-child {
  transform:
    translate(-50%, -50%)
    rotate(45deg);
}

.product-modal-close span:last-child {
  transform:
    translate(-50%, -50%)
    rotate(-45deg);
}


/* =========================================================
   Modal Content
========================================================= */

.product-modal-content {
  display: grid;
  grid-template-columns: 48% 52%;

  min-height: 590px;
}


/* =========================================================
   Modal Left
========================================================= */

.product-modal-left {
  position: relative;

  padding: 55px 35px 45px 65px;
}


/* =========================================================
   Modal Title
========================================================= */

.product-modal-title-area {
  position: relative;
  z-index: 2;
}

.product-modal-category {
  position: relative;
  z-index: 2;

  margin: 0 0 2px;

  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
}

.product-modal-name {
  position: relative;
  z-index: 2;

  margin: 0;

  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.product-modal-name--tex {
  font-size: 5.2rem;
  white-space: nowrap;
}

#modal-tex-2500s-gr .product-modal-name {
  font-size: 5rem;
  white-space: nowrap;
}

/* =========================================================
   Modal Decoration
========================================================= */

.product-modal-decoration {
  position: absolute;

  top: -38px;
  left: -68px;

  width: 165px;
  height: 125px;

  pointer-events: none;
  opacity: 0.5;
}




/* =========================================================
   Modal Brand
========================================================= */

.product-modal-brand {
  display: inline-block;

  width: auto;
  min-width: 0;

  margin: 10px 0 0;
  padding: 5px 28px;

  background: #009b50;
  color: #fff;

  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}


/* =========================================================
   Modal Image
========================================================= */

.product-modal-image {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 390px;
  margin-top: 10px;

  overflow: hidden;
}

.product-modal-image img {
  display: block;

  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;

  object-fit: contain;

  /* 共通の scale は使用しない */
  transform: none;
}

#modal-ge25cf .product-modal-image img {
  transform: scale(1.1);
  transform-origin: center;
}

#modal-tex-2500s-gr .product-modal-image img {
  transform: scale(1.1);
  transform-origin: center;
}



/* =========================================================
   Modal Right
========================================================= */

.product-modal-right {
  padding: 32px 65px 28px 35px;
}


/* =========================================================
   Modal Catch
========================================================= */

.product-modal-catch {
  position: relative;
  padding-left: 25px;
  padding-right: 50px;
}

.product-modal-catch::before {
  position: absolute;

  top: 0;
  bottom: 0;
  left: 0;

  width: 8px;

  background: linear-gradient(
    180deg,
    #ABDACE 0%,
    #B4DBC0 50%,
    #D3E7C1 100%
  );

  content: "";
}

.product-modal-catch h4 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
}

.modal-catch-line {
  display: block;
  white-space: nowrap;
}


@media (max-width: 1200px) {

  .product-modal-dialog {
    width: calc(100vw - 100px);
    max-width: 1100px;
  }

  .product-modal-content {
    grid-template-columns: 42% 58%;
  }

  .product-modal-right {
    padding: 40px 45px 40px 25px;
  }

  .product-modal-catch h4 {
    font-size: 2.4rem;
    line-height: 1.5;
  }

}




/* =========================================================
   Modal Text
========================================================= */

.product-modal-text {
  margin-top: 32px;
}

.product-modal-text p {
  margin: 0 0 28px;

  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9;
}

.product-modal-text p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   Modal Link
========================================================= */

.product-modal-link {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 35px;

  width: 315px;
  height: 54px;

  margin: 35px auto 0;

  border: 1px solid #009b50;

  color: #009b50;

  font-size: 1.5rem;
  font-weight: 500;

  transition:
    color 0.65s ease,
    background-color 0.65s ease;
}

.product-modal-link:hover {
  background: #009b50;
  color: #fff;
}


/* =========================================================
   Modal Open Body
========================================================= */

body.is-modal-open {
  overflow: hidden;
}


/* =========================================================
   Modal Tablet
========================================================= */

@media (min-width: 768px) and (max-width: 1100px) {

   .product-modal {
    padding: 50px 20px 30px;
  }

  .product-modal-dialog {
    width: calc(100vw - 40px);
    max-width: 960px;
    max-height: none;

    /* ここ重要 */
    overflow: visible;
  }

  .product-modal-content {
    grid-template-columns: 44% 56%;
    min-height: 0;

    /* スクロールはこちらへ移す */
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .product-modal-left {
    padding:
      40px
      20px
      30px
      40px;
  }

  .product-modal-right {
    padding:
      32px
      34px
      32px
      24px;
  }

  .product-modal-name {
    font-size: 4.6rem;
  }




  .product-modal-category {
    font-size: 1.8rem;
  }

  .product-modal-brand {
    font-size: 1.4rem;
  }

  .product-modal-image {
    height: 320px;
  }

  .product-modal-catch {
    padding-left: 20px;
    padding-right: 0;
  }

  .product-modal-catch h4 {
    font-size: 2.3rem;
    line-height: 1.4;
  }

  .product-modal-text {
    margin-top: 24px;
  }

  .product-modal-text p {
    margin-bottom: 20px;
    font-size: 1.45rem;
    line-height: 1.8;
  }

  .product-modal-link {
    margin-top: 24px;
  }

  /* =====================================================
     Close
  ====================================================== */

  .product-modal-close {
    position: absolute;

    top: -48px;
    right: 0;
    z-index: 10;

    width: 42px;
    height: 42px;
  }

  .product-modal-close span {
    width: 46px;
  }

}

/* =========================================================
   Modal Smartphone
========================================================= */

@media (max-width: 767px) {

  .product-modal {
    display: block;
    padding: 65px 16px 25px;
    overflow-y: auto;
  }

  .product-modal-dialog {
    width: 100%;
    max-height: none;
  }

  .product-modal-content {
    display: block;
    min-height: 0;
  }

    .product-modal-overlay {
    position: fixed;
    inset: 0;
  }

/* =====================================================
   Close
   Smartphone
====================================================== */

.product-modal-close {
  position: absolute;

  top: 10px;
  right: 10px;
  z-index: 100;

  display: block;

  width: 40px;
  height: 40px;

  opacity: 1;
  visibility: visible;
}

.product-modal-close span {
  position: absolute;

  top: 50%;
  left: 50%;

  display: block;

  width: 30px;
  height: 2px;

  background: #222;

  transform-origin: center;
}

.product-modal-close span:first-child {
  transform:
    translate(-50%, -50%)
    rotate(45deg);
}

.product-modal-close span:last-child {
  transform:
    translate(-50%, -50%)
    rotate(-45deg);
}


  .product-modal-left {
    padding:
      45px
      25px
      20px;
  }

  .product-modal-right {
    padding:
      20px
      25px
      40px;
  }

  .product-modal-name {
    font-size: 4.5rem;
  }

  .product-modal-category {
    font-size: 1.6rem;
  }

  .product-modal-brand {
    width: 220px;
    font-size: 1.4rem;
  }

  .product-modal-image {
    height: 260px;
  }

  .product-modal-catch h4 {
    font-size: 2.2rem;
  }

  .product-modal-text p {
    font-size: 1.4rem;
  }

  .product-modal-link {
    width: 100%;
  }

}


/* =========================================================
   Modal Small Smartphone
========================================================= */

@media (max-width: 560px) {

  .product-modal {
    width: 100%;
    max-width: 100vw;

    padding: 58px 10px 20px;

    overflow-x: hidden;
  }


  /* =====================================================
     Layout
  ====================================================== */

  .product-modal-dialog,
  .product-modal-content,
  .product-modal-left,
  .product-modal-right,
  .product-modal-title-area,
  .product-modal-catch,
  .product-modal-text {
    min-width: 0;
    max-width: 100%;
  }

  .product-modal-dialog {
  width: 100%;
  overflow: visible;
  }

  .product-modal-content {
    width: 100%;
    overflow-x: hidden;
  }


  /* =====================================================
     Left
  ====================================================== */

  .product-modal-left {
    width: auto;

    padding:
      32px
      18px
      15px;
  }

  .product-modal-category {
    font-size: 1.4rem;
  }

  .product-modal-name {
    max-width: 100%;

    font-size: clamp(3.6rem, 10vw, 4.5rem);
  }

  .product-modal-brand {
    width: auto;
    min-width: 190px;

    padding: 5px 20px;

    font-size: 1.3rem;
  }


  /* =====================================================
     Image
  ====================================================== */

  .product-modal-image {
    width: 100%;
    max-width: 100%;

    height: clamp(190px, 52vw, 240px);

    margin-top: 10px;

    overflow: hidden;
  }

  .product-modal-image img {
    display: block;

    width: 100%;
    max-width: 100%;
    height: 100%;

    object-fit: contain;

    transform: none;
  }


  /* =====================================================
     Right
  ====================================================== */

  .product-modal-right {
    width: auto;

    padding:
      15px
      18px
      32px;
  }

  .product-modal-catch {
    width: 100%;

    padding-left: 16px;
    padding-right: 0;
  }

  .product-modal-catch::before {
    width: 6px;
  }

  .product-modal-catch h4 {
    max-width: 100%;

    font-size: clamp(1.8rem, 5.2vw, 2.2rem);
    line-height: 1.45;

    overflow-wrap: break-word;
  }

  .modal-catch-line {
    white-space: normal;
  }


  /* =====================================================
     Text
  ====================================================== */

  .product-modal-text {
    width: 100%;

    margin-top: 24px;
  }

  .product-modal-text p {
    max-width: 100%;

    margin-bottom: 20px;

    font-size: 1.35rem;
    line-height: 1.8;

    overflow-wrap: break-word;
  }


  /* =====================================================
     Link
  ====================================================== */

  .product-modal-link {
    width: 100%;
    max-width: 100%;
    height: 50px;

    margin-top: 25px;

    font-size: 1.3rem;
  }


}

/* =========================================================
   Product Modal - Low Height
========================================================= */

@media (min-width: 768px) and (max-height: 700px) {

  .product-modal {
    padding: 20px 40px;
  }

  .product-modal-dialog {
    max-height: none;
    overflow: visible;
  }

  .product-modal-content {
    min-height: 0;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }

}


/* =========================================================
   Modal Close - Inside
   モーダル上端が画面上部に近い場合
========================================================= */

@media (min-width: 768px) {

  .product-modal.is-close-inside .product-modal-close {
    top: 8px;
    right: 8px;
    z-index: 20;

    width: 32px;
    height: 32px;
  }

  .product-modal.is-close-inside .product-modal-close span {
    width: 28px;
    background: #222;
  }

}



/* =========================================================
   Overview
========================================================= */

.overview {
  padding: 70px 0 110px;
  background: #fff;
}


/* =========================================================
   Overview Heading
========================================================= */

.overview-heading {
  display: flex;
  flex-direction: column;
  align-items: center;

  margin-bottom: 40px;

  text-align: center;
}

.overview-heading h2 {
  margin: 0;

  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
}

.overview-heading span {
  margin-top: 2px;

  color: #009b50;

  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}



/* =========================================================
   Overview Table
========================================================= */

.overview-table-wrap {
  width: 820px;
  max-width: 100%;
  margin: 0 auto;
}

.overview-table {
  position: relative;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

.overview-col-heading {
  width: 20%;
}

.overview-col-content {
  width: 80%;
}

.overview-table th,
.overview-table td {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
}

.overview-table th {
  padding: 20px 18px;
  background: #f4f4f4;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.overview-table td {
  padding: 20px 28px;
  background: #fff;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
}

.overview-table tr > *:first-child {
  border-left: 1px solid #ddd;
}

.overview-table::before {
  position: absolute;
  top: -4px;
  left: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(
    to right,
    #666 0%,
    #666 20%,
    #006b45 20%,
    #00a55a 60%,
    #8cc665 100%
  );

  content: "";
}




/* =========================================================
   Overview Link
========================================================= */

.overview-link {
  display: inline-flex;
  align-items: center;

  gap: 5px;

  transition: color 0.4s ease;
}

.overview-link:hover {
  color: #009b50;
}


/* =========================================================
   External Link Icon
========================================================= */

.overview-external {
  position: relative;

  display: inline-block;

  width: 11px;
  height: 11px;

  border: 1px solid currentColor;
}

.overview-external::before {
  position: absolute;

  top: -3px;
  right: -3px;

  width: 6px;
  height: 6px;

  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;

  background: #fff;

  content: "";
}

.overview-external::after {
  position: absolute;

  top: -1px;
  right: -1px;

  width: 6px;
  height: 1px;

  background: currentColor;

  content: "";

  transform: rotate(-45deg);
  transform-origin: right center;
}


/* =========================================================
   Note
========================================================= */

.overview-note {
  font-size: 1.2rem;
}


/* =========================================================
   Booth
========================================================= */

.overview-booth-row th,
.overview-booth-row td {
  vertical-align: top;
}

.overview-booth-number {
  margin: 0 0 30px;

  font-size: 1.9rem;
  font-weight: 400;
  text-align: center;
}


/* =========================================================
   Map
========================================================= */

.overview-map {
  width: 600px;
  max-width: 100%;

  margin: 0 auto;
}

.overview-map img {
  width: 100%;
  height: auto;
}




/* =========================================================
   Banner
========================================================= */

.overview-banner {
  width: 650px;
  max-width: 100%;

  margin: 70px auto 0;
}

.overview-banner img {
  width: 100%;
  height: auto;
}


/* =========================================================
   Overview Tablet
========================================================= */

@media (max-width: 1100px) {

  .overview {
    padding: 80px 0 100px;
  }

  .overview-table th {
    width: 160px;
  }


  .overview-table td {
    padding: 18px 22px;
  }

}


/* =========================================================
   Overview Smartphone
========================================================= */

@media (max-width: 767px) {

  .overview {
    padding: 60px 0 70px;
  }

  .overview-heading {
    margin-bottom: 30px;
  }

  .overview-heading h2 {
    font-size: 3rem;
  }

  .overview-heading span {
    font-size: 1.2rem;
  }


  .overview-table {
    table-layout: auto;
  }

  .overview-table th {
    width: 100px;

    padding: 14px 8px;

    font-size: 1.2rem;
  }


  .overview-table td {
    padding: 14px 12px;

    font-size: 1.2rem;
  }

  .overview-note {
    display: block;

    margin-top: 3px;

    font-size: 1rem;
  }

  .overview-map {
    width: 100%;
    max-width: none;
  }

  .overview-map img {
    width: 100%;
    height: auto;
  }



  .overview-booth-number {
    margin-bottom: 20px;

    font-size: 1.2rem;
  }


  .overview-banner {
    margin-top: 45px;
  }

}


/* =========================================================
   Invitation Request & Contact
========================================================= */

.request-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0 120px;
  background: #fff;
}


/* =========================================================
   Request Heading
========================================================= */

.request-heading {
  position: relative;
  width: 100%;
  min-height: 190px;
  margin-bottom: 35px;
}


/* Background English Text
--------------------------------------------------------- */

/* Background English Text
--------------------------------------------------------- */

.request-heading-bg {
  position: absolute;
  top: -30px;
  right: 0;
  left: auto;
  z-index: 1;

  display: flex;
  flex-direction: column;

  width: 1280px;
  max-width: calc(100% - 40px);

  font-size: 9rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.035em;

  white-space: nowrap;
  pointer-events: none;

  transform: none;
}

.request-heading-line {
  display: flex;
}

.request-heading-line--01 {
  align-self: flex-start;
}

.request-heading-line--02 {
  align-self: flex-end;
  margin-top: -8px;
}


.request-heading-line > span {
  display: inline-block;

  background: linear-gradient(
    0deg,
    #D3E7C1 0%,
    #B4DBC0 50%,
    #ABDACE 100%
  );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;

  opacity: 0.7;
}

.request-space {
  width: 0.35em;
}

/* Main Heading
--------------------------------------------------------- */

.request-heading-main {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding-top: 38px;

  text-align: center;
}

.request-heading-main h2 {
  margin: 0;

  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.25;
}

.request-heading-main p {
  margin: 2px 0 0;

  color: #009b50;

  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
}


/* =========================================================
   Request Content
========================================================= */

.request-content {
  width: 980px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  padding-top: 35px;

  border-top: 1px solid #eee;
}


/* =========================================================
   Request Form
========================================================= */

.request-form {
  width: 100%;
  margin: 0 auto;
}


/* 外部埋め込みフォームが iframe の場合 */
.request-form iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  margin: 0 auto;
  border: 0;
}


/* =========================================================
   Request Tablet
========================================================= */

@media (max-width: 1100px) {

  .request-section {
    padding: 80px 0 100px;
  }

  .request-heading-bg {
    font-size: 6rem;
  }

  .request-heading-main h2 {
    font-size: 3.2rem;
  }

}


/* =========================================================
   Request Smartphone
========================================================= */

@media (max-width: 767px) {

  .request-section {
    padding: 60px 0 70px;
  }

  .request-heading {
    min-height: 140px;
    margin-bottom: 25px;
  }

  .request-heading-bg {
    top: 0;

    width: calc(100% - 32px);

    font-size: 3.8rem;
    line-height: 0.8;
  }

  

  .request-heading-main {
    padding-top: 30px;
  }

  .request-heading-main h2 {
    font-size: 3rem;
  }

  .request-heading-main p {
    font-size: 1.1rem;
  }

  .request-content {
    max-width: calc(100% - 32px);
    padding-top: 25px;
  }

  .request-heading-line--02 {
  margin-top: 0;
}

}


/* =========================================================
   Exhibitor Logos
========================================================= */

.exhibitor-logos {
  padding: 70px 0 80px;
  background: #fff;
}

.exhibitor-logos-inner {
  width: 1270px;
  max-width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
}




.exhibitor-logos-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0;
}



.exhibitor-logo-item {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 90px;
  padding: 0;
}

.exhibitor-logo-item:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 0;

  width: 1px;
  height: 45px;

  background: #b5b5b5;

  content: "";
  transform: translateY(-50%);
}




.exhibitor-logo-item img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 55px;
}

.exhibitor-logo-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 90px;
  padding: 0 30px;
  transition: background-color 0.25s ease;
}


html[lang="en"] .exhibitor-logo-item:nth-child(1) a,
html[lang="en"] .exhibitor-logo-item:nth-child(2) a,
html[lang="zh-Hans"] .exhibitor-logo-item:nth-child(1) a,
html[lang="zh-Hans"] .exhibitor-logo-item:nth-child(2) a {
  padding-left: 10px;
  padding-right: 10px;
}


.exhibitor-logo-item a:hover {
  background-color: #f3f3f3;
}





/* =========================================================
   Footer
========================================================= */

.site-footer {
  background: #707070;
}

.site-footer .inner {
  display: flex;
  align-items: center;
  min-height: 54px;
}

.site-footer-copy {
  margin: 0;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  margin: auto;
}


/* =========================================================
   Exhibitor Logos / Footer Tablet
========================================================= */

@media (max-width: 1100px) {

  .exhibitor-logos-list {
    gap: 30px;
  }

}

/* =========================================================
   Exhibitor Logos / Footer Smartphone
========================================================= */

@media (max-width: 767px) {

  .exhibitor-logos {
    padding: 42px 0 45px;
  }

  .exhibitor-logos-list {
    grid-template-columns: repeat(2, 1fr);

    column-gap: 24px;
    row-gap: 16px;
  }

  .exhibitor-logo-item {
    min-height: 52px;
  }

  .exhibitor-logo-item img {
    max-height: 42px;
  }

  .site-footer .inner {
    min-height: 62px;
  }

  .site-footer-copy {
    font-size: 0.9rem;
    line-height: 1.6;
  }

}




/* =========================================================
   Scroll Fade Up
========================================================= */

.fade-up,
.fade-up-delay {
  opacity: 0;
  transform: translateY(12px);
}

.fade-up.is-visible {
  animation:
    fadeUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-up-delay.is-visible {
  animation:
    fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.22s forwards;
}

@keyframes fadeUp {

  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}