@charset "utf-8";

/* 基本重置與盒模型 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}

/* CSS 變數（示例） */
:root {
  --color-primary: #ff3737;
  --color-primary-light: #f7250a;
  --color-text: #333333;
  --font-family-main: sans-serif;
  --font-size-base: 18px;
  --font-size-base-sm: 16px;
  --transition-time: 0.3s;
}

/* 全局樣式 */
html, body {
  scroll-behavior: smooth;
  width: 100%;
  background: linear-gradient(90deg, #f4ff61, #ffd4e9, #ffd4c6, #f4ff61, #ffe48e);
  background-size: 300% 100%;
  animation: gradientMove 6s infinite ease-in-out alternate;
  font-family: var(--font-family-main);
  font-size: var(--font-size-base);
  text-align: justify;
  color: var(--color-text);
  height: auto;
  overflow-x: hidden;
}

@keyframes gradientMove {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* 響應式字體 */
@media (max-width: 991px) {
  html, body {
    background-position: right;
    font-size: var(--font-size-base-sm);
  }
}

/* 小螢幕額外調整 */
@media (max-width: 576px) {
  .chapter-title-en {
    font-size: 14px;
  }
}

/* 鏈接樣式簡化 */
a {
  color: var(--color-text);
  text-decoration: none;
}

a:hover,
a:focus,
a:active {
  color: var(--color-text);
  text-decoration: none;
}

/* 佈局輔助 */
.row {
  display: flex;
  flex-wrap: wrap;
}

.col {
  min-width: 0;
  max-width: 100%;
}

/* 顏色類別 */
.color-red {
  color: #ff3737;
}

.bg-red {
  background: var(--color-primary);
}

.text-shadow {
  text-shadow: #567898 1px 0 10px;
}

/* 保留原生游標 */
#cursor-ring{
  position: fixed;
  left: 0; top: 0;
  width: 120px; height: 120px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99999;
  will-change: transform;
}

/* 旋轉放在 .ring */
#cursor-ring .ring{
  transform-origin: 50% 50%;
  transform-box: fill-box;         /* 讓中心正確 */
  animation: ring-spin 8s linear infinite;
}

/* 縮放放在 .ring-wrap（不干擾旋轉） */
#cursor-ring .ring-wrap{
  transform-origin: 50% 50%;
  transform-box: fill-box;
}

#cursor-ring .ring-text{
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 6px;             /* 額外字距，搭配 textLength 使用 */
  fill: #ff2c41;
}

@keyframes ring-spin { to { transform: rotate(360deg); } }

/* 觸控裝置關閉 */
@media (hover:none) and (pointer:coarse){ #cursor-ring{ display:none; } }

/* 減少動態偏好 */
@media (prefers-reduced-motion: reduce){ #cursor-ring .ring{ animation:none !important; } }

/* 讓 SVG 元素不要裁切超出的字形 */
#cursor-ring-svg { overflow: visible; }

/* 保險起見，群組也開放溢出 */
#cursor-ring .ring,
#cursor-ring .ring-wrap { overflow: visible; }

/* 全站通用：不要把圖硬拉高，避免變形 */
img { max-width: 100%; height: auto; }

/* Bootstrap 的 .w-100 會把寬度設成 100%（可能被放大）；
   需要拉滿容器的圖用 .img-fluid，或至少保證 height:auto */
img.w-100 { height: auto; }

/* 任何自訂類別曾寫過 height:100% 的，先清掉 */
.lecture-img,
.rounded-img,
.sidemenu-img,
.sidemenu-imgH { height: auto; }

/* 絕對定位的裝飾圖，指定位寬，讓高度自動依比例 */
.exhibitors-bgDecL,
.exhibitors-bgDecR,
.exhibitors-dec { width: min(40vw, 760px); height: auto; }


/* --------------------------- */
/* SIDEMENU */
/* --------------------------- */

.sidemenuBox {
    position: fixed;
    bottom: 25%;
    right: 60px;
    z-index: 997;
    cursor: pointer;
}

.sidemenu {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidemenuImgBox img {
    z-index: 999;
    animation-name: cta-ani;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    transition: all .1s linear;
    -webkit-transition: all .1s linear;
}

@keyframes cta-ani {
    0% {
        transform: translateY(-3px);
    }
    50% {
        transform: translateY(3px);
    }
    100% {
        transform: translateY(-3px);
    }
}

.sidemenuImgBox {
    position: relative;
    z-index: 999;
}

.sidemenu-imgH{
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.sidemenu-img:hover {
    opacity: 0;
    /* transition: 0.5s; */
}

.sidemenu-imgH:hover {
    opacity: 1;
    /* transition: 0.5s; */
}

.sidemenu p {
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    color: #fa2a2a;
    padding: 8px 12px;
    margin-top: 3px;
    z-index: 999;
    animation-name: cta-ani;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    transition: all .1s linear;
    -webkit-transition: all .1s linear;
}

/* ===== SIDEMENU：文字卡片（霧面白底 + 流動發光）===== */
.sidemenu p{
  position: relative;
  display: inline-flex;           /* 讓內容水平垂直置中 */
  align-items: center;
  justify-content: center;

  margin-top: 6px;                /* 與圖片拉開一點距離 */
  padding: 8px 16px;              /* 卡片內距 */
  border-radius: 14px;

  /* 文字：統一實色 #FF3737 */
  color: #FF3737;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;

  /* 移除任何背景，讓偽元素來當卡片 */
  background: none !important;

  /* 讓 ::before / ::after 的負 z-index 只在自身層內 */
  isolation: isolate;
  z-index: 1;

  /* 繼續沿用你原本的小彈跳動畫 */
  animation-name: cta-ani;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

/* 霧面白底（卡片本體） */
.sidemenu p::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.8);
  box-shadow: 0 4px 22px rgba(0,0,0,0.12),
              0 0 0 1px rgba(255,255,255,0.85) inset;
  z-index: -1; /* 在文字底下 */
}

/* 流動發光光暈（在更底層） */
.sidemenu p::before{
  content: "";
  position: absolute;
  inset: -6px;                    /* 微外擴讓光暈更柔 */
  border-radius: 18px;
  background: linear-gradient(90deg,
    #ff8a80, #ffd180, #fff59d, #80d8ff, #ea80fc, #ff8a80);
  background-size: 300% 100%;
  filter: blur(12px);
  opacity: 0.85;
  animation: sidemenuGlowShift 6s linear infinite;
  z-index: -2;
}

/* 彩色光暈流動動畫 */
@keyframes sidemenuGlowShift{
  0%   { background-position:   0% 50%; }
  100% { background-position: 100% 50%; }
}

/* hover 時讓光更亮一點（可選） */
.sidemenu:hover p::before{
  opacity: 1;
  filter: blur(18px);
}

/* 使用者偏好減少動態：停用光暈流動 */
@media (prefers-reduced-motion: reduce){
  .sidemenu p::before{ animation: none; }
}



/* --------------------------- */
/* NAVBAR */
/* --------------------------- */
.navbar-custom {
  height: 72px;
  z-index: 998;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  padding: 0 80px;
  display: flex;
  align-items: center;
  margin: 12px auto;
  width: 90%;
  border-radius: 60px;
}

/* Logo */
.navbar-brand {
  padding: 20px 48px;
  display: flex;
  align-items: center;
}
.navbar-brand img {
  height: 24px;
  display: block;
}

/* 響應式 Logo 縮放 */
@media (max-width: 1199px) {
  .navbar-custom {
    height: 60px;
    padding: 0 40px;
  }
  .navbar-brand {
    padding: 16px 32px;
  }
  .navbar-brand img {
    height: 28px;
  }
}

@media (max-width: 991px) {
  .navbar-custom { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .has-fixed-bg { background-attachment: scroll !important; }
}


@media (max-width: 576px) {
  .navbar-brand img {
  height: 20px;
}
}

/* 基本 nav-link 樣式 */
.navbar .nav-link {
  position: relative;
  margin: 4px 8px;
  font-size: 18px;
  font-weight: 600;
  color: #0d6efd;
  text-align: center;
  letter-spacing: 1.2px;
  cursor: pointer;
}

.navbar .nav-link:hover, .translate-wrapper i:hover {
  scale: 1.07;
  transition: linear;
  color: #064aaf;
}

/* 底線流動動畫 */
@keyframes gradientLine {
  to {
    background-position: 200% center;
  }
}


/* 線上報名按鈕 */
/* 預設樣式（確保原本背景是固定顏色） */
.nav-btn-registration a {
  background: #ff2c41; /* 原本的紅色，可自行調整 */
  color: #ffffff !important;
  transition: background 0.3s ease;
  border-radius: 32px;
  padding: 8px 18px !important;
  z-index: 997;
  position: relative;
}

/* hover 動態漸變背景 */
.nav-btn-registration a:hover {
  background: linear-gradient(45deg, #dc3545, #fc0707, #ff3044);
  background-size: 200% auto; /* 漸變比按鈕寬，方便流動 */
  animation: btnGradientMoveR 2s linear infinite;
  color: #fff;
  z-index: 997; 
}

@keyframes btnGradientMoveR {
  to {
    background-position: 200% center;
  }
}

/* 小於 992px (tablet 以下) */
@media (max-width: 991px) {
  .navbar-custom {
    background-color: rgba(255, 255, 255, 0.45); /* 乳白半透明 */
    backdrop-filter: blur(10px); /* 模糊背景 */
    -webkit-backdrop-filter: blur(10px);
    height: auto;
    width: 100%;
    padding: 12px 24px;
    clip-path: none !important; /* 確保移除不規則形狀 */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* 淡淡陰影增加質感 */
    flex-wrap: wrap;
  }

  .navbar-brand {
    padding: 12px 16px;
    border-radius: 0; /* 去除圓角，簡潔 */
  }

  /* 漢堡按鈕 */
  .navbar-toggler {
    background: transparent;
    border: none;
    padding: 12px 16px;
    font-size: 1.5rem;
    margin-left: auto;
  }

  .menu-icon i {
    transition: transform 0.5s ease;
  }

  .navbar-toggler[aria-expanded="true"] .menu-icon i {
    transform: rotate(90deg) scale(1.1);
  }

  /* 菜單折疊區 */
  .navbar-collapse {
    width: 100%;
    margin-top: 12px;
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    gap: 12px;
  }

  .navbar-nav .nav-item {
    width: 100%;
    text-align: center;
  }
}

.googleBox {
  text-align: center;
}

.googleBox select {
  color: #1b76ff;
  padding: 8px 12px;
  background-color: rgba(214, 214, 214, 0.5);
  border-radius: 12px 0 0 12px;
  position: relative;
}

.googleBox .goog-te-gadget .goog-te-combo {
  padding: 4px 12px;
  border-radius: 20px;
}

/* 包住 icon 與彈出內容 */
.translate-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* 預設隱藏 popup */
.googleBox {
  display: none;
  position: absolute;
  top: 80%;       /* icon 下方 */
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 8px 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 996;
  min-width: 200px;
}

/* 懸停顯示 popup */
.translate-wrapper:hover .googleBox {
  display: block;
}
.translate-wrapper:active .googleBox {
  display: block;
}

@media (max-width: 991px) {
  .for-pc {
    display: none !important;
  }
  .for-m {
    display: inline-block !important;
  }
  .translate-wrapper .googleBox {
    display: block;
  }
  .googleBox {
    position: relative;
    background: rgba(0,0,0,0);
    border: 1px solid rgba(0,0,0,0);
    box-shadow: 0 4px 12px rgba(0,0,0,0);
  }
}
.navbar-custom.nav-dim {
  background-color: rgba(255,255,255,0.6) !important; /* 白色系 */
  backdrop-filter: blur(4px); /* 可加磨砂效果 */
}

/* 桌機與手機都用絕對定位的彈出層，不影響文流 */
.translate-wrapper { position: relative; }
.googleBox{
  position:absolute; top:120%; left:50%; transform:translateX(-50%);
  display:none; min-width:220px; min-height:40px; /* 固定尺寸，避免初始化抖動 */
  background:#fff; border:1px solid rgba(0,0,0,.12); border-radius:8px; padding:8px 12px;
  box-shadow:0 8px 24px rgba(0,0,0,.12); z-index:1100; pointer-events:auto;
}
.translate-wrapper.open .googleBox{ display:block; }

/* 取消你原本在 991px 以下把 .googleBox 設成 block/relative 的規則 */
@media (max-width:991px){
  .translate-wrapper .googleBox{ /* 保持上面的絕對定位寫法，不要改成 block */ }
}



/* --------------------------- */
/* BANNER */
/* --------------------------- */
.banner-area {
  position: relative;
  background: url(../img/bg.png) no-repeat top center;
  background-size: 100% 100%;
}

/* @media (max-width: 991px) {
  .banner-area {
    border-bottom: 1px solid #fff;
  }
} */

.banner-area img {
  width: 100%;
  height: 100%;
}

.banner-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}

.banner-inner img {
  max-width: 1440px;
  width: 100%;
}

.p-absolute {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.banner-anim-1,
.banner-anim-2 {
  will-change: transform;
  white-space: nowrap;
  animation-iteration-count: infinite;
}

.banner-anim-1 {
  animation-name: bannerAnim1;
  animation-duration: 2s;
  animation-timing-function: linear;
}

@keyframes bannerAnim1 {
  0%   { transform: scale(1); }
  50%  { transform: scale(0.95); }
  100% { transform: scale(1); }
}

.banner-anim-2 {
  animation-name: bannerAnim2;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
}

@keyframes bannerAnim2 {
  0%   { transform: translateY(10px) rotate(1deg); opacity: 1; }
  25%  { transform: translateY(5px) rotate(-1deg); opacity: 0.75; }
  75%  { transform: translateY(0px) rotate(1deg); opacity: 0.5; }
  100% { transform: translateY(5px) rotate(1deg); opacity: 1; }
}


/* --------------------------- */
/* COMMON */
/* --------------------------- */

/* 外框進度條 */

.progress-wrapper {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 996;
}

.progress-label {
  display: flex;
  justify-content: center;
  align-items: center;
}

.progress-label p {
  font-family:  sans-serif;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #FF3737;
  z-index: 99;
  margin-bottom: 0px;
  background: rgb(255,255,255,.75);
  border-radius: 12px 12px 0 0;
  padding: 4px 20px;
  text-align: center;
  border: 2px solid #ffffff;
}

/* @keyframes pulseGlow {
  0%, 100% { text-shadow: 0 0 6px rgba(255,255,255,0.6), 0 0 8px rgba(0,229,255,0.6); }
  50%      { text-shadow: 0 0 12px rgba(255,255,255,1), 0 0 16px rgba(255,110,196,0.9); }
} */


.progress-container {
  font-family:  sans-serif;
  font-weight: 600;
  letter-spacing: 5px;
  width: 100%;
  padding: 2px 0;
  background: rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-bar {
  height: 36px;
  width: 0%;
  background: linear-gradient(90deg, #00e5ff, #ff6ec4, #f9d423);
  background-size: 300% 100%;
  animation: gradientMove2 5s infinite linear;
  transition: width 0.1s ease-out;
  border-radius: 20px;
  box-shadow: 0 0 12px white;
  position: relative;
  overflow: hidden;
}

@keyframes gradientMove2 {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.progress-inner {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.progress-text {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 4px #000;
  z-index: 2;
}

.emoji {
  font-size: 20px;
  /* animation: bounce 1s infinite ease-in-out, blink 2s infinite; */
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* 外框進度條 */

/* 流星容器 */
.shooting-stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* 不影響互動 */
  overflow: hidden;
}

/* 單顆流星造型 */
.shooting-stars::before,
.shooting-stars::after {
  content: '';
  position: absolute;
  top: -10%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,1), rgba(255,255,255,0));
  animation: shooting 1s linear infinite;
}

/* 多顆流星 - 用 nth-child 模擬多個時間差 */
.shooting-stars::after {
  top: -20%;
  left: 50%;
  animation-delay: 1s;
}

@keyframes shooting {
  0% {
    transform: translate(-200px, -200px) rotate(45deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translate(800px, 800px) rotate(45deg);
    opacity: 0;
  }
}


/*標題 */

.chapter-title-box {
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 48px;
    position: relative;
}

.chapter-title-box h2 {
    color: #0d6efd;
    font-family:  "DotGothic16", sans-serif;
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 10px;
}

.chapter-title-box h3 {
    color: #5384c9;
    font-family:  "DotGothic16", sans-serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1.8px;
}

.chapter-title-box h4 {
  color: #ffffff;
  background: rgba(255, 43, 43, 0.85);
  padding: 8px 28px;
  border-radius: 32px;
  font-size: 20px;
  display: block;
}

@media (max-width:500px) {
    .chapter-title-box h2 {
        font-size: 38px;
    }
}
.wave-title {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  will-change: transform, opacity;
}

/* 初始狀態 */
.wave-title span {
  display: inline-block;
  transform: translateY(80%);
  opacity: 0;
}

/* 進場動畫（更短更快） */
.wave-title.inview span {
  animation: waveUp 0.4s forwards ease-out;
}

@keyframes waveUp {
  to { transform: translateY(0); opacity: 1; }
}

/* 低動態偏好 */
@media (prefers-reduced-motion: reduce) {
  .wave-title span,
  .wave-title.inview span { transform:none !important; opacity:1 !important; animation:none !important; }
}

.color-blue {
    color: #0d6efd !important;
}

.color-red {
  color: #ff2c41 !important;
}


.d-1199-n {
    display: inline-block;
}

.d-1199 {
    display: none;
}

@media (max-width:1399px) {
    .d-1199-n {
        display: none;
    }

    .d-1199 {
        display: inline-block;
    }
}

@media (max-width:767px) {
    .d-1199-n {
        display: inline-block;
    }

    .d-1199 {
        display: none;
    }
}

@media (max-width:421px) {
    .d-1199-n {
        display: none;
    }

    .d-1199 {
        display: inline-block;
    }
}


/* --------------------------- */
/* COMMON */
/* --------------------------- */

/* --------------------------- */
/* VIDEO */
/* --------------------------- */


.chapter-marqueeBox {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    mix-blend-mode: overlay;
}

.chapter-marquee {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    align-items: center;
    flex-wrap: nowrap;
    animation-name: chapterMarqueeAnim;
    animation-duration: 150s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
}

@keyframes chapterMarqueeAnim{
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.chapter-marquee p {
    font-family: "DotGothic16", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-style: normal;
    letter-spacing: 10px;
    font-size: 120px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    mix-blend-mode: color-burn;
}

@media (max-width:767px) {
    .chapter-marqueeBox {
        padding: 60px 0;
    }
    .chapter-marquee p {
        font-size: 80px;
    }
}

.video-area {
    width: 100%;
    overflow: hidden;
    padding: 140px 0 100px 0;
    position: relative;
}

@media (max-width:991px) {
    .video-area {
        border-radius: 0 0 0 0;
    }
}

@media (max-width:767px) {
    .video-area {
        padding: 100px 0 0 0;
    }
}

.video {
    height: 500px;
    padding: 16px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.video iframe {
    border-radius: 20px;
}

@media (max-width:1199px) {
    .video {
        height: 400px;
    }
}

@media (max-width:767px) {
    .video {
        height: 300px;
        padding: 8px;
    }
}

@media (max-width:575px) {
    .video {
        height: 250px;
        margin-top: 24px;
    }
}

.videodec-text {
    font-family: sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    display: inline-block;
    position: absolute;
    top: -70px;
    left: 50%;
    z-index: 1;
    width: 100%;
    text-align: center;
    transform: translateX(-50%);
    color:#fa2a2a;
}

.for-576px {
  display: block;
}
.for-575px {
  display: none;
}

@media (max-width:575px) {
    .videodec-text {
        font-size: 28px;
    }
    .for-576px {
      display: none;
    }
    .for-575px {
      display: block;
    }
}

.video {
    padding: 12px;
    border-radius: 20px;
    border: 2px solid #ffffff;
}


/* --------------------------- */
/* VIDEO */
/* --------------------------- */

/* --------------------------- */
/* EXHIBITORS INTRO */
/* --------------------------- */
#exhibitors-intro { position: relative; isolation: isolate; overflow-x: clip; }

/* 區塊容器（桌機預設） */
#exhibitors-intro .exhibitors-intro-area {
  padding: 120px 0;
  position: relative;
  width: 100%;
  background-attachment: fixed;
  overflow: hidden; /* 防止裝飾外溢 */
}

@media (max-width: 991px){
  .exhibitors-intro-area{ background-attachment: scroll !important; }
}
@media (max-width: 575.98px) {
  #exhibitors-intro .exhibitors-intro-area { padding: 100px 32px; }
}

/* 左右背景裝飾（區塊內側、隨內容捲動） */
#exhibitors-intro .exhibitors-bgDecL,
#exhibitors-intro .exhibitors-bgDecR {
  position: absolute;
  bottom: 50%;
  width: 40%;
  z-index: 0;
  transform: translateY(50%);
  animation: exhibitors-bgDec 6s ease-in-out infinite;
  opacity: 0.3;
  display: block;
}
#exhibitors-intro .exhibitors-bgDecL { left: 0; }
#exhibitors-intro .exhibitors-bgDecR { right: 0; }

@keyframes exhibitors-bgDec {
  0%   { opacity: 0.3; bottom: 40%; }
  25%  { opacity: 0.5; bottom: 50%; }
  50%  { opacity: 0.3; bottom: 40%; }
  100% { opacity: 0.5; bottom: 50%; }
}

/* 內容容器 / 中央三張裝飾（區塊內側、隨內容捲動） */
#exhibitors-intro .exhibitors-content { position: relative; }
#exhibitors-intro .exhibitors-content .exhibitors-dec {
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  display: block;
}
#exhibitors-intro .exhibitors-dec.exhibitors-dec-animation-girl { animation: animationGirl 6s ease-in-out infinite; }
@keyframes animationGirl {
  0%, 50%   { transform: rotate(6deg) translateX(-50%); }
  25%, 100% { transform: rotate(0deg) translateX(-50%); }
}
#exhibitors-intro .exhibitors-dec.exhibitors-dec-animation-s1 { animation: animationS1 6s ease-in-out infinite; }
@keyframes animationS1 {
  0%, 50%   { opacity: 1;   transform: translate(-50%, 3px); }
  25%, 100% { opacity: 0.5; transform: translate(-50%, 0); }
}
#exhibitors-intro .exhibitors-dec.exhibitors-dec-animation-s2 { animation: animationS2 6s ease-in-out infinite; }
@keyframes animationS2 {
  0%   { opacity: 0.5; transform: translate(-50%, 3px); }
  25%  { opacity: 0;   transform: translate(-50%, 0); }
  50%  { opacity: 0.5; transform: translate(-50%, -3px); }
  100% { opacity: 1;   transform: translate(-50%, 0); }
}

/* 卡片（四個圈圈） */
#exhibitors-intro .exhibitors-box {
  position: relative;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 1; /* 高於裝飾 */
}
#exhibitors-intro .blob-background {
  position: absolute;
  top: 0; left: 0;
  width: 220px; height: 220px;
  background: rgba(255, 255, 255, 0.85);
  filter: url(#blob-filter);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255 255 255 / 0.85);
  animation: blobMove 6s ease-in-out infinite;
  transition: box-shadow 0.4s ease;
  z-index: 1;
}
#exhibitors-intro .exhibitors-inner {
  position: relative; z-index: 2;
  width: 220px; height: 220px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 20px; box-sizing: border-box;
  margin: 0 auto;
}
#exhibitors-intro .exhibitors-inner h3 {
  margin: 0 0 10px;
  font-size: 36px; font-weight: 600;
  color: #FF3737;
  font-family:  "DotGothic16", sans-serif;
  letter-spacing: 2px;
}
#exhibitors-intro .exhibitors-inner p {
  margin: 0;
  font-size: 18px; font-weight: 600;
  color: #505050;
  font-family:  "DotGothic16", sans-serif;
  letter-spacing: 1.2px;
}
@keyframes blobMove {
  0%, 100% {
    border-radius: 45% 55% 55% 45% / 60% 40% 60% 40%;
    transform: translate(0, 0) scale(1);
  }
  25% { transform: translate(5px, 3px) scale(1.01); }
  50% {
    border-radius: 50% 50% 60% 40% / 55% 45% 45% 55%;
    transform: translate(-5px, -3px) scale(0.99);
  }
  75% { transform: translate(2px, -1px) scale(1.02); }
}
#exhibitors-intro .exhibitors-box:hover .blob-background {
  animation-duration: 2s;
  animation-name: blobMoveHover;
  box-shadow: 0 0 25px rgba(255 255 255 / 0.8);
}
@keyframes blobMoveHover {
  0%, 100% {
    border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    transform: translate(0, 0) scale(1.1);
  }
  33% {
    border-radius: 65% 35% 35% 65% / 30% 70% 20% 80%;
    transform: translate(15px, 12px) scale(1.15);
  }
  66% {
    border-radius: 30% 70% 50% 50% / 60% 40% 60% 40%;
    transform: translate(-15px, -12px) scale(1.05);
  }
}

/* 桌機：4×2 指定位 */
@media (min-width: 992px) {
  #exhibitors-intro .exhibitors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    justify-items: center;
    align-items: start;
    position: relative;
    z-index: 1;
  }
  /* 日本留學 / 打工度假 / 日本住宿 / 日本正職 */
  #exhibitors-intro .exhibitors-grid > .exhibitors-link:nth-child(1) { grid-column: 2; grid-row: 1; }
  #exhibitors-intro .exhibitors-grid > .exhibitors-link:nth-child(2) { grid-column: 3; grid-row: 1; }
  #exhibitors-intro .exhibitors-grid > .exhibitors-link:nth-child(3) { grid-column: 1; grid-row: 2; }
  #exhibitors-intro .exhibitors-grid > .exhibitors-link:nth-child(4) { grid-column: 4; grid-row: 2; }
}
/* === ≤767.98px：改成 2×2 圓形網格排版 === */
@media (max-width: 991.98px) {
    
  #exhibitors-intro .exhibitors-content .exhibitors-dec {
    bottom: 250px;
    z-index: 2;
  }
  /* 最小圓直徑（可調） */
  #exhibitors-intro { --circle-min: 140px; }

  /* 2欄網格（覆蓋 <992 之前的 flex 單列） */
  #exhibitors-intro .exhibitors-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(var(--circle-min), 1fr));
    gap: 16px 14px;
    justify-items: center;
    align-items: start;
    max-width: 100%;
  }

  /* 外層連結隨欄寬，避免撐太大 */
  #exhibitors-intro .exhibitors-link {
    width: 100%;
  }

  /* 每張卡片＝正方形容器（自動等比） */
  #exhibitors-intro .exhibitors-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;          /* 讓寬高相等 */
    display: grid;
    place-items: center;
    margin: 0;
  }

  /* blob：填滿盒子並置於底層、正圓 */
  #exhibitors-intro .blob-background {
    position: absolute !important;
    inset: 0;                      /* top/right/bottom/left: 0 */
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
  }

  /* 內文：覆蓋在 blob 上、保持置中與圓角 */
  #exhibitors-intro .exhibitors-inner {
    position: relative;
    width: 100% !important;
    height: 100% !important;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 8%;
    text-align: center;
    box-sizing: border-box;
  }

  /* 標題與卡片距離收斂，讓整段更緊湊 */
  #exhibitors-intro .chapter-title-box { margin-bottom: 12px; }
}

@media (max-width: 767.98px) {
  #exhibitors-intro .exhibitors-content .exhibitors-dec {
    bottom: 160px;
    z-index: 2;
  }
}

@media (max-width: 575.98px) {
    #exhibitors-intro .exhibitors-content .exhibitors-dec {
    bottom:33%;
  }
    #exhibitors-intro .exhibitors-inner h3 { font-size: clamp(18px, 4.8vw, 24px); line-height: 1.15; margin: 0 0 6px; }
  #exhibitors-intro .exhibitors-inner p  { font-size: clamp(11px, 3.4vw, 12px); line-height: 1.25; margin: 0; } 
}
/* --------------------------- */
/* EXHIBITORS INTRO */
/* --------------------------- */

/* --------------------------- */
/* LECTURES */
/* --------------------------- */
.lectures-area {
  padding: 120px 0 60px;
  position: relative;
  z-index: 2;
  width: 100%;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

@media (max-width: 991px) {
  .lectures-area {
    padding: 80px 20px 40px;
  }
}

@media (max-width: 575px) {
  .lectures-area {
    padding: 60px 16px 30px;
  }
}

/* 章節標題 */
.chapter-title-box {
  text-align: center;
  margin-bottom: 40px;
}

.lectures-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #FF3737;
  padding: 6px 0;
  animation: bounce 1s infinite ease-in-out, blink 2s infinite;
}

/* 內容 row 調整 */
.lectures-area .row {
  margin-top: -30px; /* 比原本-50px更舒適 */
  gap: 24px;
}

@media (max-width: 991px) {
  .lectures-area .row {
    margin-top: -15px;
  }
}

/* 圖文分欄間距 */
.lectures-area .col-lg-8 {
  margin-top: 24px;
}

@media (max-width: 991px) {
  .lectures-area .col-lg-8 {
    margin-top: -200px;
  }
}

/* --------------------------- */
/* 講座圖片盒子 */
/* --------------------------- */
.lecture-img-box {
  background-color: #eee;
  overflow: hidden;
  border-radius: 16px; /* 改成圓角方塊 */
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.08);
  transition: transform 0.3s ease;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lecture-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.lecture-img-box:hover {
  transform: scale(1.05);
}

/* 取消 clip-path，改圓角 */
.lectures-img {
  height: 160px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
  margin-bottom: 16px;
}

/* 各講座背景圖 */
.lecture-study {
  background-image: url(../img/lecture-study.jpg);
}
.lecture-career {
  background-image: url(../img/lecture-career.jpg);
}
.lecture-rental {
  background-image: url(../img/lecture-rental.jpg);
}
.lecture-wh {
  background-image: url(../img/lecture-wh.jpg);
}
.lecture-school {
  background-image: url(../img/lecture-school.jpg);
}

/* --------------------------- */
/* 講座內容盒子 */
/* --------------------------- */
.lectures-area {
  padding: 100px 15px 60px;
  /* 移除背景 */
  background: none;
}

.lectures-area .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
}

.col-lg-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
  /* 加入圖片動畫 */
  animation: imgSway 6s ease-in-out infinite;
}

.col-lg-8 {
  flex: 0 0 66.6667%;
  max-width: 66.6667%;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}

.flex-lg-row-reverse {
  flex-direction: row-reverse;
}

/* 圖片本身圓角 */
.lecture-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  display: block;
}

/* 圖片懸停放大 */
.lecture-img:hover {
  transform: scale(1.03);
}

/* 文字區塊毛玻璃+圓角+動畫 */
.lectures-box {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 25px 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);

  /* 出場動畫 */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpIn 1s forwards;
  animation-delay: 0.3s;
}

.lectures-title {
  color: #ff2c41;
  font-family:  "DotGothic16", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 2.2px;
}

.lectures-box h4 {
  font-size: 22px;
  font-weight: 600;
}

.lectures-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
}

/* 圖片左右搖擺動畫 */
@keyframes imgSway {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
}

/* 文字區塊淡入+上移動畫 */
@keyframes fadeUpIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 響應式調整 */
@media (max-width: 991px) {
  .col-lg-3,
  .col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 1.5rem;
  }
  .flex-lg-row-reverse {
    flex-direction: row;
  }
}

@media (max-width: 575px) {
  .lectures-area {
    padding: 60px 40px 40px;
  }
  .lectures-title {
    font-size: 1.5rem;
  }
  .lectures-description {
    font-size: 0.9rem;
  }s
  .lectures-box {
    padding: 16px 24px;
  }
}

.lectures-schedule h4 {
  color: #0079EA;
}

.lectures-scheduleInner {
  border-top: #0079EA solid 1px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding-top: 12px;
  color: #47494b;
}

.lectures-schedule p {
  margin-bottom: 8px;
  font-size: 18px;
  text-align: left;
}

.lectures-schedule span {
  font-weight: 600;
}

@media (max-width: 575px) {
  .lectures-schedule h4 {
    font-size: 18px;
  }
  .lectures-schedule p {
    font-size: 16px;
  }
}

/* --------------------------- */
/* LECTURES */
/* --------------------------- */

/* --------------------------- */
/* CULTURE */
/* --------------------------- */
/* .culture-area {
    margin-top: -36px;
    padding: 0 0 100px 0;
    overflow: hidden;
    z-index: 1;
    position: relative;
} */

/* --------------------------- */
/* CULTURE */
/* --------------------------- */

/* --------------------------- */
/* GIFT */
/* --------------------------- */
.gift-area {
    padding: 120px 0;
}

.gift-boxF {
    position: relative;
    height: 400px;
    display: block;
    margin-bottom: 48px;
}

.gift-boxF img {
    width: 100%;
}

.gift-box {
    margin-bottom: 24px;
}

.gift-box img {
    width: 100%;
}

.gift-anim {
    animation-name: giftAnim;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes giftAnim{
    0% {                           
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
} 

.gift-anim2 {
    animation-name: giftAnim2;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes giftAnim2{
    0% {                           
        transform: translate(0px,40px) rotate(5deg);
    }
    50% {
        transform: translate(0px,40px) rotate(0deg);
    }
    100% {
        transform: translate(0px,40px) rotate(5deg);
    }
} 

.swiper-button-next,
.swiper-button-prev {
    color: #333; /* 箭頭顏色 */
    z-index: 9999;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px; /* 箭頭大小 */
}

.gift-info {
    font-size: 14px;
    line-height: 2;
    color: #ffffff;
    display: block;
    margin-top: 20px;
    position: relative;
}

@media (max-width:1199px) {
    #gift .chapter-title-box {
      margin-bottom: 12px;
    }

    .gift-boxF {
        height: 280px;
    }

    @keyframes giftAnim2{
    0% {                           
        transform: translate(0px,20px) rotate(5deg);
    }
    50% {
        transform: translate(0px,20px) rotate(0deg);
    }
    100% {
        transform: translate(0px,20px) rotate(5deg);
    }
    } 
}

@media (max-width:991px) {
    .gift-boxF {
        height: 190px;
    }
}

@media (max-width:767px) {
    .gift-boxF {
        height: 140px;
    }
}

@media (max-width:576px) {
    .gift-boxF {
        height: auto;
        margin-bottom: 0px;
    }
}

/* 固定卡片為 3:2，避免高度跳動與重排 */
#gift .swiper-slide .gift-box {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #f5f5f5;
}
#gift .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 導覽鈕可點、不卡、不被遮 */
#gift .swiper-button-next,
#gift .swiper-button-prev {
  z-index: 5;
  pointer-events: auto;
  width: 44px;
  height: 44px;
  transform: translateZ(0);
}
#gift .swiper-button-next::after,
#gift .swiper-button-prev::after {
  font-size: 20px;
}


/* --------------------------- */
/* GIFT */
/* --------------------------- */


/* --------------------------- */
/* Location */
/* --------------------------- */
.location-area {
    position: relative;
    padding: 120px 0;
    z-index: 6;
}
@media (max-width:575px) {
    .location-area {
        padding: 100px 32px 32px 32px;
    }
}
.location-content {
    margin-top: 80px;
}
@media (max-width:576px) {
    .location-content {
        margin-top: 0;
    }
}
.location-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
@media (max-width:767px) {
    .location-box {
        margin-bottom: 66px;
    }
}
.location-box h3 {
    font-family:  "DotGothic16", sans-serif;
    color: #FF3737;
    font-weight: 600;
    text-align: center;
    letter-spacing: 3px;
}
.location-card {
    background: linear-gradient(-45deg, rgba(255,255,255,0.15), #ffffff, rgba(255,255,255,0.5));
    text-align: center;
    padding: 60px;
    position: relative;
    z-index: 2;
    background-size: 300% 300%;
    border-radius: 20px;
    border: 2px #ffffff solid;
}
@media (max-width:1399px) {
    .location-card {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        min-height: 299.53px;
        padding: 20px 20px 8px 20px;
    }
}

.location-card p {
  margin-bottom: 0px;
  font-family: sans-serif;
  letter-spacing: 0px;
}

.location-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0d6efd;
    padding: 12px 30px;
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    border-radius: 20px;
}
@media (max-width:1399px) {
    .location-tel {
        width: 60%;
    }
}
@media (max-width:1199px) {
    .location-card {
        min-height: 250px;
    }
    .location-tel {
        width: 80%;
        bottom: -36px;
    }
}
@media (max-width:767px) {
    .location-tel {
        width: 90%;
        bottom: -32px;
    }
}
.location-map iframe {
    width: 100%;
    max-width: 100%;
    display: block;
    border-radius: 16px;
}

/* 手機才換行（<1200px 顯示換行） */
.br-1199 { display: none; }
@media (max-width:1199px){ .br-1199 { display: inline; } }

/* 地圖比例盒：先預留高度，避免 CLS */
.ratio-box{
  position: relative;
  aspect-ratio: 16 / 9;     /* 你也可以改成 4/3 或 1/1 */
  background: #f2f2f2;      /* 骨架底色 */
  overflow: hidden;
  border-radius: .5rem;     /* 可和你的卡片圓角一致 */
}
.ratio-box iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* （選用）讓卡片高度更穩定，進一步降低跳動 */
.location-card{ min-height: 260px; }    /* 依實際內容微調 */
.location-title{ min-height: 1.5em; }
.location-tel{ min-height: 44px; }      /* 觸控可點尺寸 */

/* --------------------------- */
/* Location */
/* --------------------------- */

/* --------------------------- */
/* FOOTER */
/* --------------------------- */
.footer-area {
    padding: 120px 0;
    position: relative;
    z-index: 6;
    /* background-image: url(../img/blue-sky.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: auto; */
    color: #FF3737;
    letter-spacing: 1.5px;
}

@media (max-width:991px) {
    .footer-area {
        padding: 30px 0 100px;
    }
}

.footer-wsij {
    margin-left: 10px;
    height: 65px;
}

@media (max-width:991px) {
    .footer-wsij {
        height: 50px;
    }
}

.footer-jptip {
    margin-left: 10px;
    height: 55px;
}

@media (max-width:991px) {
    .footer-jptip {
        height: 45px;
    }
}

@media (max-width:767px) {
    .footer-jptip {
        text-align: center;
        margin-left: 0;
    }

    .footer-jptip img {
        height: 60px;
    }
}

.sns-box {
    display: inline;
    margin-left: 17px;
}

@media (max-width:767px) {
    .sns-box {
        display: block;
        margin-left: 0;
        margin-top: 20px;
        text-align: center;
    }
}

.sns-box img {
    width: 35px;
    margin-left: 3px;
}

@media (max-width:991px) {
    .sns-box img {
        width: 30px;
    }
}

@media (max-width:767px) {
    .sns-box img {
        width: 35px;
    }
}

.footer-link-box {
    display: inline;
    margin-left: 5px;
}

.footer-link-box a {
    color: #0d6efd;
    font-weight: 600;
}

.footer-link-box a:hover {
    color: #0c56c4;
}

/* --------------------------- */
/* FOOTER */
/* --------------------------- */









/* --------------------------- */
/* EXHIBITORS*/
/* --------------------------- */
.exhibitors-filter-area {
    padding: 150px 0 0 0;
}

.exhibitors-title-box {
    position: relative;
    padding-bottom: 24px;
}

.exhibitors-title-box .chapter-title-en {
    margin-bottom: 16px;
}

.exhibitors-type-box {
    display: flex;
    padding: 24px 16px;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
}

.exhibitors-type-box-m {
    display: none;
}

.exhibitors-filter-option {
    color: #ff3737;
    margin: 0 36px;
    font-size: 24px;
}

.exhibitors-filter-option:hover {
    transform: scale(1.1);
    transition: ease-in-out;
    font-weight: 600;
}

.exhibitors-filter-option-active {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 0 36px;
    background-color: #ff3737;
    border-radius: 32px;
    padding: 8px 24px;
}

@media (max-width:991px) {
    .exhibitors-filter-option {
        margin: 0 16px;
    }

    .exhibitors-filter-option-active {
        margin: 0 16px;
    }
}

@media (max-width:767px) {
    .exhibitors-filter-option,
    .exhibitors-filter-option-active {
        font-size: 20px;
        margin: 0 12px;
    }

    .exhibitors-filter-option,
    .exhibitors-filter-option-active {
        font-size: 18px;
    }
}

@media (max-width:487px) {
    .exhibitors-type-box {
        display: none;
    }

    .exhibitors-type-box-m {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 2;
    }
    .exhibitors-filter-option {
    padding: 8px 24px;  
    }
}

.exhibitors-list-area {
    padding: 0 0 80px 0;
    overflow: hidden;
}

.exhibitors-catagory {
    font-family:  "DotGothic16", sans-serif;
    font-size: 40px;
    position: relative;
    display: table;
    margin: 60px auto;
    text-align: center;
    letter-spacing: 3px;
}

.exhibitors-list-box {
    margin-top: 20px;
}

.exhibitors-card-box {
    position: relative;
    text-decoration: none;
    display: block;
    margin-bottom: 48px;
    -webkit-column-break-inside: avoid;
    break-inside: avoid;
}

.exhibitors-card {
    background: rgba(255, 255, 255, 0.65);
    border: 2px #ffffff solid;
    position: relative;
    cursor: pointer;
    border-radius: 12px;
}

.exhibitors-card:hover {
    background: rgba(255, 255, 255, 1);
}

.exhibitors-card-2 {
    background: rgba(255, 255, 255, 0.65);
    border: 2px #ffffff solid;
    position: relative;
}

.exhibitors-card-img {
    width: 100%;
    height: 180px;
}

.yula {
    background-image: url(../img/exhibitors/studyabroad/yula.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}
.aacf {
    background-image: url(../img/exhibitors/studyabroad/aacf.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}
.sng {
    background-image: url(../img/exhibitors/studyabroad/sng.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}
.cbc {
    background-image: url(../img/exhibitors/studyabroad/cbc.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}
.kla-osaka {
    background-image: url(../img/exhibitors/studyabroad/kla-osaka.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.canaan {
    background-image: url(../img/exhibitors/studyabroad/canaan.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}
.jcom {
    background-image: url(../img/exhibitors/studyabroad/jcom.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}
.ecc {
    background-image: url(../img/exhibitors/studyabroad/ecc.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}
.tsuji-chorishi {
    background-image: url(../img/exhibitors/studyabroad/tsuji-chorishi.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}
.tsuji-seika {
    background-image: url(../img/exhibitors/studyabroad/tsuji-seika.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.jec {
    background-image: url(../img/exhibitors/studyabroad/jec.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}
.neec {
    background-image: url(../img/exhibitors/studyabroad/neec.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}
.oscd {
    background-image: url(../img/exhibitors/studyabroad/oscd.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}
.syusei {
    background-image: url(../img/exhibitors/studyabroad/syusei.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}
.kufs {
    background-image: url(../img/exhibitors/studyabroad/kufs.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.shukutoku {
    background-image: url(../img/exhibitors/studyabroad/shukutoku.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.incul {
    background-image: url(../img/exhibitors/studyabroad/incul.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.ydc-jpn {
    background-image: url(../img/exhibitors/studyabroad/ydc-jpn.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}
.ehle {
    background-image: url(../img/exhibitors/studyabroad/ehle.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}
.kyotominsai {
    background-image: url(../img/exhibitors/studyabroad/kyotominsai.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.abk {
    background-image: url(../img/exhibitors/studyabroad/abk.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}
.eastwest {
    background-image: url(../img/exhibitors/studyabroad/eastwest.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.akamonkai {
    background-image: url(../img/exhibitors/studyabroad/akamonkai.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.naganuma {
    background-image: url(../img/exhibitors/studyabroad/naganuma.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.seiko {
    background-image: url(../img/exhibitors/studyabroad/seiko.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.en {
    background-image: url(../img/exhibitors/studyabroad/en.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.tera {
    background-image: url(../img/exhibitors/studyabroad/tera.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}


.kicl {
    background-image: url(../img/exhibitors/studyabroad/kicl.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}


.exhibitors-card-info {
    padding: 0 24px;
}

.exhibitors-card-info h4 {
    color: #0079EA;
    font-weight: 600;
    font-size: 24px;
    margin: 16px 0 8px 0;
    letter-spacing: 1px;
    text-align: left;
}

.exhibitors-card-info p {
    color: #333333;
}

.exhibitors-card-infoPlace {
    display: flex;
}

.exhibitors-card-infoPlace {
    color: #143a75;
}

.exhibitors-card-infoPlace h5 {
    display: block;
    font-weight: 600;
    font-size: 22px;
}

.exhibitors-card-btn {
    color: #0079EA;
    border-top: 2px #0079EA solid;
    margin: 16px 16px 0 16px;
    padding: 16px 0;
    text-align: center;
}


.exhibitors-list-schedule {
    display: flex;
    justify-content: center;
}

.exhibitors-list-schedule div {
    padding: 6px 28px;
    background: #0079ea44;
    color: #ffffff71;
    margin: 0 2px;
    border-radius: 0 0 12px 12px;
}

.exhibitors-list-schedule .active {
    background: #0079EA;
    color: #ffffff;
}

.exhibitorsWh .exhibitors-card {
    cursor: auto;
}

.exhibitors-wh-box {
    padding: 32px 12px;
    border-radius: 20px;
}

.exhibitors-wh-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0079EA;
}

.exhibitors-wh-box {
    color: #0079EA;
}

.exhibitorsWh-level {
    display: inline-block;
    position: absolute;
    top: -20px;
    left: -20px;
    color: #ffffff;
    background-color: #0079EA;
    padding: 16px 20px;
    z-index: 2;
    border-radius: 60px;
}

.exhibitorsWh-money {
    color: #0079EA;
    font-weight: 600;
    border-top: 2px #0079EA solid;
    margin: 16px 16px 0 16px;
    padding: 16px 0;
    text-align: center;
}

.exhibitors-card-title {
    margin: 16px 0 8px 0;
    font-weight: 600;
}

.exhibitorsWh-level p {
    font-weight: 600;
    margin: 0;
}

.exhibitors-ca-box img {
    width: 100%;
    z-index: 10;
    position: relative;
}

.wh-1 {
    background-image: url(../img/exhibitors/workingholiday/wh-1.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.wh-2 {
    background-image: url(../img/exhibitors/workingholiday/wh-2.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.wh-3 {
    background-image: url(../img/exhibitors/workingholiday/wh-3.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.wh-4 {
    background-image: url(../img/exhibitors/workingholiday/wh-4.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.wh-5 {
    background-image: url(../img/exhibitors/workingholiday/wh-5.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.wh-6 {
    background-image: url(../img/exhibitors/workingholiday/wh-6.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.wh-7 {
    background-image: url(../img/exhibitors/workingholiday/wh-7.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.wh-8 {
    background-image: url(../img/exhibitors/workingholiday/wh-8.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.wh-9 {
    background-image: url(../img/exhibitors/workingholiday/wh-9.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.wh-10 {
    background-image: url(../img/exhibitors/workingholiday/wh-10.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.wh-11 {
    background-image: url(../img/exhibitors/workingholiday/wh-11.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.wh-12 {
    background-image: url(../img/exhibitors/workingholiday/wh-12.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}


.signup-btn {
    margin-top: 24px;
    background-color: #ff558a;
    color: #ffffff;
    padding: 32px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    border-radius: 50px;
}

.CS {
    font-family:  "DotGothic16", sans-serif;
    font-size: 36px;
    color: #0084FF;
    letter-spacing: 2px;
    text-align: center;
    margin-top: 100px;
}

/* 日本住宿 */

.e-heya {
    background-image: url(../img/exhibitors/renting/e-heya.jpg);
    background-size: cover;
    background-position: center;
}
.oakhouse {
    background-image: url(../img/exhibitors/renting/oakhouse.jpg);
    background-size: cover;
    background-position: center;
}
.homestayinjp {
    background-image: url(../img/exhibitors/renting/homestayinjp.jpg);
    background-size: cover;
    background-position: center;
}
.bgj {
    background-image: url(../img/exhibitors/renting/bgj.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}
.kamikawa {
    background-image: url(../img/exhibitors/renting/kamikawa.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

/* 日本正職 */

.tj-frere {
    background-image: url(../img/exhibitors/career/tj-frere.jpg);
    background-size: cover;
    background-position: center;
}
.route-inn {
    background-image: url(../img/exhibitors/career/route-inn.jpg);
    background-size: cover;
    background-position: center;
}

/* --------------------------- */
/* EXHIBITORS*/
/* --------------------------- */

/* --------------------------- */
/* REGISTER */
/* --------------------------- */
.register-area {
    padding: 150px 0 100px;
    width: 100%;
    height: auto;
}


@media (max-width:767px) {
    .r-footer-area {
        background-color: none;
    }
}

.steps-title-box {
    margin-top: 50px;
    text-align: center;
}

.steps-title-box div {
    display: inline;
    font-size: 35px;
    font-weight: 500;
    color: white;
    background-color: #dd2629;
    padding: 5px 15px 8px;
    margin: 0 -10px;
}

.steps-explanation {
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
}

@media (max-width:767px) {
    .steps-explanation {
        margin-bottom: 80px;
    }
}

.steps-row {
    margin: 30px 0 80px;
}

.steps-box {
    padding: 20px 30px 30px;
    text-align: center;
    font-size: 20px;
    background-color: white;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .2);
    position: relative;
}

.steps-box div {
    font-size: 40px;
    font-family: "DotGothic16", sans-serif;
    margin-bottom: 5px;
}

@media (max-width:991px) {
    .steps-box div {
        font-size: 30px;
    }
}

.steps-box i {
    font-size: 30px;
    color: #dd2629;
    position: absolute;
    top: 50%;
    right: -20px;
    animation-name: ani-arrow-right;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes ani-arrow-right {
    0% {
        transform: translate(-5px, -50%) rotate(90deg);
    }

    50% {
        transform: translate(5px, -50%) rotate(90deg);
    }

    100% {
        transform: translate(-5px, -50%) rotate(90deg);
    }
}

.register-box {
    background: rgba(255, 255, 255, 0.65);
    padding: 60px 100px;
    position: relative;
    border: 2px solid #ffffff;
    border-radius: 0 20px 20px 20px;
}

@media (max-width:991px) {
    .register-box {
        padding: 52px 80px;
    }
}

@media (max-width:767px) {
    .register-box {
        padding: 32px 36px;
    }
}

.register-next-arrow {
    font-size: 40px;
    text-align: center;
    margin: 30px 0;
    animation-name: ani-arrow-down;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes ani-arrow-down {
    0% {
        transform: translateY(-8px);
    }

    50% {
        transform: translateY(8px);
    }

    100% {
        transform: translateY(-8px);
    }
}

.steps-text {
    font-size: 70px;
    font-family: "DotGothic16", sans-serif;
    position: absolute;
    top: -20px;
    left: -30px;
    transform: rotate(-12deg);
}

@media (max-width:767px) {
    .steps-text {
        font-size: 60px;
    }
}

@media (max-width:575px) {
    .steps-text {
        font-size: 50px;
        top: -30px;
        left: 10px;
    }
}

.steps-text:after {
    content: '';
    display: block;
    height: 3px;
    width: 100%;
    background-color: currentColor;
    margin-top: -20px;
}

.register-box-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
}

.star {
    color: #dd2629;
    margin-right: 5px;
    font-size: 20px;
}

.register-box-explanation {
    text-align: center;
    margin-top: -25px;
}

.register-box-notice {
    text-align: center;
    padding: 15px;
    border: 2px #dd2629 dashed;
    border-radius: 10px;
    color: #dd2629;
    width: 50%;
    margin: 30px auto 60px;
    font-size: 18px;
}

@media (max-width:1199px) {
    .register-box-notice {
        width: 80%;
    }
}

@media (max-width:991px) {
    .register-box-notice {
        width: 90%;
    }
}

@media (max-width:767px) {
    .register-box-notice {
        width: 100%;
    }
}

@media (max-width:463px) {
    .register-box label span {
        display: block;
    }
}

.register-box-notice div {
    font-size: 16px;
    margin-top: 5px;
}

.options-margin {
    margin-top: 30px;
}

@media (max-width:991px) {
    .options-margin {
        margin-top: 20px;
    }
}

@media (max-width:991px) {
    .options-margin-mobile {
        margin-top: 20px;
    }
}

.register-lectures-checkbox {
    margin: 40px 0;
}

@media (max-width:991px) {
    .register-lectures-checkbox {
        margin: 30px 0;
    }
}

.question-position {
    text-align: right;
}

@media (max-width:991px) {
    .question-position {
        text-align: left;
        margin-bottom: 5px;
    }
}

.needhelp-box {
    margin-top: 80px;
    text-align: center;
}

.needhelp-box div {
    margin-top: 20px;
}

/*

.location-box {
    padding: 20px 0;
    text-align: center;
    border: 1px #ccc solid;
    border-radius: 10px;
    margin-top: 10px;
}

@media (max-width:991px) {
    .location-box {
        padding: 15px 20px;
    }
}

@media (max-width:767px) {
    .location-box {
        font-size: 16px;
    }
}

.location-border {
    border-left: 1px #ccc solid;
}

@media (max-width:991px) {
    .location-border {
        border-left: none;
        border-top: 1px #ccc solid;
        width: 200px;
        margin: 10px auto 0;
        padding-top: 10px;
    }
}
*/

.register-note {
    font-size: 18px;
    line-height: 34px;
    width: 100%;
    margin: 0 auto;
}

.license-box {
    font-size: 18px;
    text-align: center;
    margin: 60px auto 0;
}

.register-submit {
    font-family:   "DotGothic16", sans-serif;
    background: linear-gradient(45deg, #00e5ff, #ff6ec4, #f9d423);
    color: #ffffff;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin: 30px auto 0;
    padding: 24px 100px;
    letter-spacing: 2rem;
    text-indent: 2rem;
    animation: gradientMove4 8s infinite ease-in-out alternate;
    background-size: 300% 300%;
    border-radius: 60px;
}

@keyframes gradientMove4 {
  0% {
    background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (max-width:445px) {
    .register-submit {
        padding: 20px 28px;
    }
}

.register-date {
    font-size: 20px;
    font-weight: 700;
}

.register-date-announce {
    margin-bottom: 30px;
}

.register-date-announce div div {
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    padding: 10px 0 14px;
    text-align: center;
    border: 2px #FF4F4D solid;
    color: #FF4F4D;
    border-radius: 10px;
}

@media (max-width:1399px) {
    .register-date-announce div div {
        font-size: 20px;
        padding: 10px 0 12px;
    }
}

@media (max-width:1199px) {
    .register-date-announce div div {
        font-size: 18px;
    }
}

@media (max-width:991px) {
    .register-date-announce div div {
        margin-bottom: 10px;
    }
}

.register-title {
    font-family:  "DotGothic16", sans-serif;
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 20px 36px;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
    background-color: #0079EA;
    border-radius: 20px 20px 0 0;
}

@media (max-width: 991px) {
    .register-title {
        padding: 10px 30px;
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .register-title {
        font-size: 1.5rem;
    }
}

.register-box .form-input,
.register-box .form-select {
    background-color: #e9ebed;
    border: 1px #e9ebed solid;
    border-radius: 60px;
}

.register-box .form-control {
    padding: .75rem 1.5rem;
}

.modal-dialog {
    z-index: 999;
}

.modal-custom .modal-content .popup-title {
    font-family:  "DotGothic16", sans-serif;
}

.popup-btn {
    font-family:  "DotGothic16", sans-serif;
    font-size: 32px;
    padding: 16px 0;
    color: #ffffff;
    background-color: #0079EA;
}

.popup-btn:hover {
    color: #ffffff;
    background-color: #0365c0;
}
/* --------------------------- */
/* REGISTER */
/* --------------------------- */


/* --------------------------- */
/* EXHIBITORS CAREER */
/* --------------------------- */

.exhibitorsCa .exhibitors-card {
    cursor: pointer;
}

.ca-1 {
    background-image: url(../img/exhibitors/career/ca-1.jpg);
    background-size: cover;
    background-position: center;
}
.ca-2 {
    background-image: url(../img/exhibitors/career/ca-2.jpg);
    background-size: cover;
    background-position: center;
}
.ca-3 {
    background-image: url(../img/exhibitors/career/ca-3.jpg);
    background-size: cover;
    background-position: center;
}

.ca-4 {
    background-image: url(../img/exhibitors/career/ca-4.jpg);
    background-size: cover;
    background-position: center;
}
.ca-5 {
    background-image: url(../img/exhibitors/career/ca-5.jpg);
    background-size: cover;
    background-position: center;
}
.ca-6 {
    background-image: url(../img/exhibitors/career/ca-6.jpg);
    background-size: cover;
    background-position: center;
}
.ca-7 {
    background-image: url(../img/exhibitors/career/ca-7.jpg);
    background-size: cover;
    background-position: center;
}
.ca-8 {
    background-image: url(../img/exhibitors/career/ca-8.jpg);
    background-size: cover;
    background-position: center;
}
.ca-9 {
    background-image: url(../img/exhibitors/career/ca-9.jpg);
    background-size: cover;
    background-position: center;
}
.ca-10 {
    background-image: url(../img/exhibitors/career/ca-10.jpg);
    background-size: cover;
    background-position: center;
}
.ca-11 {
    background-image: url(../img/exhibitors/career/ca-11.jpg);
    background-size: cover;
    background-position: center;
}
.ca-12 {
    background-image: url(../img/exhibitors/career/ca-12.jpg);
    background-size: cover;
    background-position: center;
}
.ca-13 {
    background-image: url(../img/exhibitors/career/ca-13.jpg);
    background-size: cover;
    background-position: center;
}


/* --------------------------- */
/* EXHIBITORS CAREER */
/* --------------------------- */

@media (max-width:320px) {
    .dec-m1, .dec-m2, .dec-m3, .dec-m4, .decBox {
        display: none;
    }
}