@charset "UTF-8";
#menu a {
  color: white;
  border-bottom: #00a0e9 3px solid; }
  #menu a:hover {
    color: #ffeb3b;
    border-bottom: white 3px solid; }
    #menu a:hover.btn-outline-light {
      color: #28a745; }
  #menu a.dropdown-item {
    color: #9a68a8; }
  #menu a.btn-outline-light {
    border-bottom: #fff 1px solid; }
#menu .nav-item {
  margin: 0 10px; }

.fixed-top .fixed-img {
  display: none !important; }
.fixed-top #logo {
  display: block !important; }

.btn-primary {
  color: #ffffff;
  background-color: #42b6e9;
  border-width: 4px;
  border-color: #70c8ee;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5); }
  .btn-primary:visited {
    background-color: #2bade6;
    border-color: #2bade6; }
  .btn-primary:hover {
    background-color: #1aa2de;
    border-color: #2bade6; }
  .btn-primary:active {
    background-color: #2bade6;
    border-color: #2bade6; }

.btn-outline-primary {
  color: #42b6e9;
  background-color: transparent;
  background-image: none;
  border: #42b6e9 3px solid;
  font-weight: bold; }
  .btn-outline-primary:hover {
    background-color: #42b6e9;
    border: #42b6e9 3px solid; }

.btn-outline-secondary {
  color: #42b6e9;
  background-color: #fff;
  font-weight: bold;
  border: #fff 3px solid;
  border-radius: 0; }
  .btn-outline-secondary:hover {
    background-color: #42b6e9;
    border: #fff 3px solid; }

#job_banner {
  background: #fffdf4 url(../images/job_mainvision.jpg) no-repeat center bottom;
  height: 600px;
  background-size: contain; }
  #job_banner #main_title {
    color: black;
    font-size: 1.8rem;
    font-weight: bold; }
  #job_banner p {
    font-size: 2em; }

/* ---- 圓圈：微幅放大縮小 + 柔和外光暈 ---- */
#job_joinus {
    /* 尺寸你原本就 200x200，如需 RWD 可用下行替換:
--size: min(62vw, 220px); width: var(--size); height: var(--size); */
  background: #edf9fe;
  width: 200px;
  height: 200px;
  border-radius: 100px;
  /* 置中排版 */
  place-items: center;
  text-align: center;
  padding-top: 30px;
  margin-top: 100px;
  gap: 10px;
  position: relative;
  /* 呼吸動畫（微幅縮放） */
  animation: circle-pulse 3.2s ease-in-out infinite;
  /* 外圍柔光圈 */
  /* 標題 */
  /* 兩條連結：變成塊級、帶箭頭、指向右方動畫 */ }
  #job_joinus::before, #job_joinus::after {
    content: "";
    position: absolute;
    inset: -8%;
    border-radius: 50%;
    pointer-events: none; }
  #job_joinus::before {
    /* 漸層光暈 */
    background: radial-gradient(100% 100% at 50% 50%, rgba(0, 158, 219, 0.22), rgba(0, 0, 0, 0) 60%);
    filter: blur(14px);
    animation: halo 4.2s ease-in-out infinite; }
  #job_joinus::after {
    /* 外圈細環＋些許陰影 */
    border: 1.5px solid rgba(0, 158, 219, 0.25);
    box-shadow: 0 0 18px rgba(0, 158, 219, 0.12), inset 0 0 12px rgba(29, 103, 152, 0.08);
    animation: ring 5.6s ease-in-out infinite; }
  #job_joinus h1 {
    margin: 0 0 6px;
    font-weight: 800;
    font-size: 34px;
    line-height: 1.1;
    color: black; }
  #job_joinus .line_a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    color: #0b1f2a;
    text-decoration: none;
    border: 1px solid rgba(29, 103, 152, 0.18);
    box-shadow: 0 6px 16px rgba(29, 103, 152, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    /* 讓第二個連結與第一個有間距（你 HTML 有 <br> 也行，但這樣更乾淨） */
    /* 箭頭（右移動作） */ }
    #job_joinus .line_a:not(:first-of-type) {
      margin-top: 8px; }
    #job_joinus .line_a:hover, #job_joinus .line_a:focus-visible {
      transform: translateY(-1px);
      box-shadow: 0 10px 26px rgba(29, 103, 152, 0.18);
      outline: none; }
    #job_joinus .line_a::after {
      content: "→";
      font-weight: 700;
      display: inline-block;
      transform: translateX(0);
      animation: arrow-nudge 1.1s ease-in-out infinite;
      /* 小圓點背景（可拿掉） */
      margin-left: 6px;
      position: relative; }
    #job_joinus .line_a::before {
      /* 小膠囊底(很淡) */
      content: "";
      inline-size: 16px;
      block-size: 16px;
      border-radius: 999px;
      background: currentColor;
      opacity: 0.08;
      transform: translateY(2px);
      margin-right: -2px;
      /* 視覺微調 */ }

/* ---- 動畫 ---- */
@keyframes circle-pulse {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.04); }
  100% {
    transform: scale(1); } }
@keyframes halo {
  0%,
    100% {
    opacity: .55;
    transform: scale(1); }
  50% {
    opacity: .85;
    transform: scale(1.04); } }
@keyframes ring {
  0%,
    100% {
    opacity: .6;
    transform: scale(1); }
  50% {
    opacity: .85;
    transform: scale(1.02); } }
@keyframes arrow-nudge {
  0% {
    transform: translateX(0); }
  50% {
    transform: translateX(6px); }
  100% {
    transform: translateX(0); } }
/* ---- 偏好：減少動態時關閉動畫 ---- */
@media (prefers-reduced-motion: reduce) {
  #job_joinus,
  #job_joinus::before,
  #job_joinus::after,
  #job_joinus .line_a::after {
    animation: none !important; } }
#job_advantage {
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  position: absolute;
  top: 15%;
  bottom: 5%;
  color: black; }
  #job_advantage li {
    border: #42b6e9 1px solid;
    padding: 10px 15px;
    background: #fff;
    transform: skew(-20deg); }
    #job_advantage li span.normal-txt {
      display: inline-block;
      transform: skew(20deg); }

h2.line_t {
  font-size: 28px;
  font-weight: bold; }
  h2.line_t::after {
    content: "";
    display: block;
    border-bottom: 3px solid #42b6e9;
    width: 10%;
    margin-left: 50%;
    left: -5%;
    position: absolute;
    bottom: -5%;
    z-index: 0; }

.delay-1s {
  animation-delay: 1s; }

.delay-2s {
  animation-delay: 2s; }

.delay-03s {
  animation-delay: .3s; }

.note {
  color: #0068b7; }

.note2 {
  color: #0068b7;
  font-weight: bold; }

#Benefits .h1 {
  font-size: 28px;
  font-weight: bold; }
#Benefits .card {
  border: 0;
  border-radius: 8px;
  height: 370px; }
#Benefits .card-01 {
  background: #fbc043 url(../images/job_title01.jpg) no-repeat right bottom; }
#Benefits .card-02 {
  background: #649f5b url(../images/job_title02.jpg) no-repeat right bottom;
  color: #fff; }
#Benefits .card-03 {
  background: #3daada url(../images/job_title03.jpg) no-repeat right bottom;
  color: #fff; }
#Benefits ul {
  padding-left: 25px; }
#Benefits li {
  font-size: 20px;
  line-height: 2; }
#Benefits .list-square {
  list-style-type: square; }

#job_icon01 {
  background: url(../images/job_bg01.png) no-repeat right bottom;
  background-size: auto 80%; }

#job_icon02 {
  background: url(../images/job_bg02.png) no-repeat right bottom;
  background-size: auto 60%; }

#job_icon03 {
  background: url(../images/job_bg03.png) no-repeat right bottom;
  background-size: auto 65%; }

.list-square {
  list-style-type: square; }

.title {
  font-size: 40px;
  border-left: 8px solid #0068b7;
  font-weight: bold; }

#description {
  position: relative;
  height: 400px;
  background: #ecf0f1;
  padding: 20px;
  font-size: 18px;
  line-height: 1.8;
  border-radius: 10px; }
  #description::after {
    content: "";
    position: absolute;
    display: block;
    background: url(../images/job_description.png) no-repeat right bottom;
    right: 0px;
    bottom: -50px;
    width: 460px;
    height: 339px;
    background-size: 60%; }

#carouselControls img,
#carouselControls02 img,
#carouselControls03 img {
  border-radius: 8px; }

.btnw-100 {
  width: 100%; }

@media (min-width: 576px) {
  .fixed-top .fixed-img {
    display: inline-block !important; }
  .fixed-top #logo {
    display: none !important; } }
@media (min-width: 768px) {
  #job_advantage {
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    position: absolute;
    top: auto;
    right: 15%;
    bottom: 5%;
    color: black; }
    #job_advantage li {
      border: #42b6e9 1px solid;
      padding: 10px 15px;
      background: #fff;
      transform: skew(-20deg); }
      #job_advantage li span.normal-txt {
        display: inline-block;
        transform: skew(20deg); }

  h2.line_t {
    font-size: 36px; }

  #description {
    position: relative;
    height: 300px; }
    #description::after {
      content: "";
      position: absolute;
      display: block;
      right: 0px;
      bottom: -50px;
      background-size: 70%; }

  #Benefits .h1 {
    font-size: 37px; } }
@media (min-width: 992px) {
  #job_banner {
    background: #fffdf4 url(../images/job_mainvision.jpg) no-repeat center bottom;
    height: 620px;
    background-size: auto; }
    #job_banner #main_title {
      font-size: 3.5rem;
      font-weight: bold; }
    #job_banner p {
      font-size: 2em; }

  #description {
    height: auto;
    padding: 20px;
    font-size: 18px;
    line-height: 1.8; }
    #description::after {
      background: url(../images/job_description.png) no-repeat center bottom;
      right: 0px;
      bottom: -50px;
      width: 460px;
      height: 339px;
      background-size: 90%; } }
@media (min-width: 1200px) {
  .carousel-indicators {
    bottom: -40px; }
    .carousel-indicators li {
      background: #dee5c3;
      height: 10px;
      border-radius: 10px; }
      .carousel-indicators li.active {
        background: #0068b7; }

  .carousel-item .card {
    border: none;
    text-align: center;
    font-weight: bold; } }

/*# sourceMappingURL=custom_job.css.map */
