@charset "UTF-8";

/************************************************
/* root 參數 顏色對應
*/

:root {
  --nintendoRed1: rgba(3, 191, 254, 1);
  --nintendoGray1: rgb(130, 130, 130, 1);
  --nintendoGray2: rgb(202, 202, 202, 1);
  --nintendoGray3: rgb(51, 51, 51, 1);
  --nintendoGray4: rgb(189, 189, 189, 1);
  --pcRed: #dc0300;
  --ytDark: #282828;
  --ytOverlay: rgb(40, 40, 40, 0.5);
}

/************************************************
/* 匯入 tailwind 元件
*/

/*! tailwindcss v2.1.2 | MIT License | https://tailwindcss.com
*/

/*! modern-normalize v1.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/

:root {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/*
Sections
========
*/

/**
Remove the margin in all browsers.
*/

body {
  margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
  font-family: system-ui, -apple-system,
    /* Firefox supports this but not yet `system-ui` */
    "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

/**
Add the correct font weight in Edge and Safari.
*/

b {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo,
    monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
Add the correct font size in all browsers.
*/

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
}

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/

button,
select {
  /* 1 */
  text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

/**
Restore the focus styles unset by the previous rule.
*/

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */

dl,
h1,
h4,
figure,
p {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

fieldset {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 1 */
  line-height: 1.5;
  /* 2 */
}

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
  font-family: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button,
[role="button"] {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

h1,
h4 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
  color: inherit;
  text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

/**
 * Make replaced elements `display: block` by default as that's
 * the behavior you want almost all of the time. Inspired by
 * CSS Remedy, with `svg` added as well.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

/**
 * Constrain images and videos to the parent width and preserve
 * their intrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img,
video {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 480px) {
  .container {
    max-width: 480px;
  }
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1366px) {
  .container {
    max-width: 1366px;
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1920px;
  }
}

.aspect-w-16 {
  position: relative;
  padding-bottom: -webkit-calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
  padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
}

.aspect-w-16>* {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.aspect-w-16 {
  --tw-aspect-w: 16;
}

.aspect-h-9 {
  --tw-aspect-h: 9;
}

.space-y-4> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: -webkit-calc(1rem * -webkit-calc(1 - var(--tw-space-y-reverse)));
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: -webkit-calc(1rem * var(--tw-space-y-reverse));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.space-x-2> :not([hidden])~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: -webkit-calc(.5rem * var(--tw-space-x-reverse));
  margin-right: calc(.5rem * var(--tw-space-x-reverse));
  margin-left: -webkit-calc(.5rem * -webkit-calc(1 - var(--tw-space-x-reverse)));
  margin-left: calc(.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-4> :not([hidden])~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: -webkit-calc(1rem * var(--tw-space-x-reverse));
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: -webkit-calc(1rem * -webkit-calc(1 - var(--tw-space-x-reverse)));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.bg-nintendoRed1 {
  background-color: var(--nintendoRed1);
}

.bg-nintendoGray2 {
  background-color: var(--nintendoGray2);
}

.group:hover .group-hover\:bg-nintendoRed1 {
  background-color: var(--nintendoRed1);
}

.bg-none {
  background-image: none;
}

.border-white {
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}

.border-nintendoRed1 {
  border-color: var(--nintendoRed1);
}

.border-nintendoGray4 {
  border-color: var(--nintendoGray4);
}

.hover\:border-nintendoRed1:hover {
  border-color: var(--nintendoRed1);
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.border-2 {
  border-width: 2px;
}

.border {
  border-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-r {
  border-right-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-l {
  border-left-width: 1px;
}

.cursor-pointer {
  cursor: pointer;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.contents {
  display: contents;
}

.hidden {
  display: none;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.items-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-shrink-0 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.font-bold {
  font-weight: 700;
}

.h-1 {
  height: 0.25rem;
}

.h-8 {
  height: 2rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

.h-full {
  height: 100%;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.leading-5 {
  line-height: 1.25rem;
}

.m-auto {
  margin: auto;
}

.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-0 {
  margin-bottom: 0px;
}

.mr-1 {
  margin-right: 0.25rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.-mt-1 {
  margin-top: -0.25rem;
}

.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

.opacity-0 {
  opacity: 0;
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.overflow-hidden {
  overflow: hidden;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pointer-events-none {
  pointer-events: none;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.top-0 {
  top: 0px;
}

.left-0 {
  left: 0px;
}

.resize {
  resize: both;
}

* {
  --tw-shadow: 0 0 #0000;
}

.shadow {
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-md:hover {
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

* {
  --tw-ring-inset: var(--tw-empty,
      /*!*/
      /*!*/
    );
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

.text-center {
  text-align: center;
}

.text-black {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.visible {
  visibility: visible;
}

.w-auto {
  width: auto;
}

.w-10\/12 {
  width: 83.333333%;
}

.w-full {
  width: 100%;
  height: auto;
  display: block;
}

.z-auto {
  z-index: auto;
}

.gap-2 {
  gap: 0.5rem;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.transform {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  -webkit-transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  -ms-transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:translate-x-2:hover {
  --tw-translate-x: 0.5rem;
}

.hover\:-translate-x-2:hover {
  --tw-translate-x: -0.5rem;
}

.transition-all {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 150ms;
  transition-duration: 150ms;
}

.transition {
  -webkit-transition-property: background-color, border-color, color, fill,
    stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter,
    -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke,
    opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter,
    -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke,
    opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke,
    opacity, box-shadow, transform, filter, backdrop-filter, -webkit-box-shadow,
    -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 150ms;
  transition-duration: 150ms;
}

.ease-in-out {
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-300 {
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes ping {
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ping {

  75%,
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

@-webkit-keyframes bounce {
  100% {
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }

  50% {
    -webkit-transform: none;
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes bounce {

  0%,
  100% {
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }

  50% {
    -webkit-transform: none;
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.filter {
  --tw-blur: var(--tw-empty,
      /*!*/
      /*!*/
    );
  --tw-brightness: var(--tw-empty,
      /*!*/
      /*!*/
    );
  --tw-contrast: var(--tw-empty,
      /*!*/
      /*!*/
    );
  --tw-grayscale: var(--tw-empty,
      /*!*/
      /*!*/
    );
  --tw-hue-rotate: var(--tw-empty,
      /*!*/
      /*!*/
    );
  --tw-invert: var(--tw-empty,
      /*!*/
      /*!*/
    );
  --tw-saturate: var(--tw-empty,
      /*!*/
      /*!*/
    );
  --tw-sepia: var(--tw-empty,
      /*!*/
      /*!*/
    );
  --tw-drop-shadow: var(--tw-empty,
      /*!*/
      /*!*/
    );
  -webkit-filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.blur {
  --tw-blur: blur(8px);
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/************************************************
/* 額外基礎設定
*/

body {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  position: relative;
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
  /*md*/
}

@media (min-width: 768px) {
  body {
    -webkit-overflow-scrolling: touch;
  }
}

a {
  background-color: transparent;
  cursor: pointer;
}

a:hover {
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
  text-decoration: none;
}

/*大外框最大寬置中 斷點*/

.container {
  min-width: 320px;
  width: 100%;
  max-width: 1732px;
  padding: 0px !important;
  /*xs*/
  /*sm*/
  /*md*/
  /*lg*/
  /*xl*/
  /*2xl*/
}

/*所有元素動態*/

.transition-group,
.transition-group * {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/*底層背景動態*/

.wrapper {
  position: relative;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.wrapper:before {
  content: "";
  display: block;
  width: 200%;
  height: 200%;
  position: absolute;
  top: -50%;
  left: -50%;
  z-index: -1;
  opacity: 1;
}

.wrapper:before {
  background-image: url(../img/BN11.jpg);
}

.wrapper[data-ani="1"]:before {
  -webkit-animation: wrapperbgTrans1 10s linear infinite;
  animation: wrapperbgTrans1 10s linear infinite;
}

.wrapper[data-ani="2"]:before {
  -webkit-animation: wrapperbgTrans2 10s linear infinite;
  animation: wrapperbgTrans2 10s linear infinite;
}

.wrapper[data-ani="3"]:before {
  -webkit-animation: wrapperbgTrans3 10s linear infinite;
  animation: wrapperbgTrans3 10s linear infinite;
}

@-webkit-keyframes wrapperbgTrans1 {
  to {
    -webkit-transform: translateX(0px) translateY(-268px) scale(1, 1);
    transform: translateX(0px) translateY(-268px) scale(1, 1);
  }
}

@keyframes wrapperbgTrans1 {
  to {
    -webkit-transform: translateX(0px) translateY(-268px) scale(1, 1);
    transform: translateX(0px) translateY(-268px) scale(1, 1);
  }
}

@-webkit-keyframes wrapperbgTrans2 {
  to {
    -webkit-transform: translateX(-232px) translateY(-268px) scale(1, 1);
    transform: translateX(-232px) translateY(-268px) scale(1, 1);
  }
}

@keyframes wrapperbgTrans2 {
  to {
    -webkit-transform: translateX(-232px) translateY(-268px) scale(1, 1);
    transform: translateX(-232px) translateY(-268px) scale(1, 1);
  }
}

@-webkit-keyframes wrapperbgTrans3 {
  to {
    -webkit-transform: translateX(232px) translateY(-268px) scale(1, 1);
    transform: translateX(232px) translateY(-268px) scale(1, 1);
  }
}

@keyframes wrapperbgTrans3 {
  to {
    -webkit-transform: translateX(232px) translateY(-268px) scale(1, 1);
    transform: translateX(232px) translateY(-268px) scale(1, 1);
  }
}

/*行動裝置設定*/

html.mobile {
  /* 隱藏 scrollbar */
}

html.mobile ::-webkit-scrollbar {
  width: 0;
  height: 0;
  background-color: transparent;
  -webkit-appearance: none;
}

html.mobile ::-webkit-scrollbar-track {
  width: 0;
  height: 0;
  background-color: transparent;
  -webkit-appearance: none;
}

html.mobile ::-webkit-scrollbar-thumb {
  width: 0;
  height: 0;
  background-color: transparent;
  -webkit-appearance: none;
}

html.mobile .scroller-wrapper {
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 1;
}

html.mobile .scroller-wrapper::-webkit-scrollbar {
  -webkit-appearance: none;
}

html.mobile .scroller-wrapper .scroller-container::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}

html.mobile .scroller-wrapper .scroller-container {
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}

html.mobile body.menuopen {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/*單多行隱藏文字點點點*/

.line-1 {
  display: block;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  white-space: normal !important;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical !important;
  word-break: break-all;
}

.line-2 {
  display: block;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  white-space: normal !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  word-break: break-all;
}

.line-3 {
  display: block;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  white-space: normal !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  word-break: break-all;
}

.line-4 {
  display: block;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  white-space: normal !important;
  -webkit-line-clamp: 4 !important;
  -webkit-box-orient: vertical !important;
  word-break: break-all;
}

.line-5 {
  display: block;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  white-space: normal !important;
  -webkit-line-clamp: 5 !important;
  -webkit-box-orient: vertical !important;
  word-break: break-all;
}

/************************************************
/* 匯入 各區塊 SCSS
*/

/************************************************
/* 匯入 各區塊 SCSS
*/

/*置頂第一層*/

.topbar {
  background-color: #dc0001;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 2rem;
  font-size: 0.75rem;
  line-height: 1rem;
  overflow: hidden;
  position: relative;
  z-index: 9999;
  position: fixed;
  top: 0;
  width: 100%;
}

@media (min-width: 769px) {
  .topbar {
    height: 2.5rem;
    position: unset;
  }
}

.topbar {
  /*外框*/
}

.topbar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .topbar .container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.topbar .container {
  /*連結預設*/
  /*LOGO*/
  /*靠左連結區*/
  /*靠右連結區*/
}

.topbar .container a {
  background-color: transparent;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.topbar .container .pchome_logo img {
  height: 1rem;
}

@media (min-width: 768px) {
  .topbar .container .pchome_logo img {
    height: 1.25rem;
  }
}

.topbar .container .pchome_web {
  display: none;
}

@media (min-width: 1024px) {
  .topbar .container .pchome_web {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.topbar .container .pchome_web {
  /*連結*/
}

.topbar .container .pchome_web li:first-child a::before,
.topbar .container .pchome_web li a::after {
  display: inline-block;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  content: "|";
}

.topbar .container .pchome_member {
  display: none;
}

@media (min-width: 1024px) {
  .topbar .container .pchome_member {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.topbar .container .pchome_member {
  /*連結*/
}

.topbar .container .pchome_member a {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

/*置頂第二層*/

.sitebar {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  margin-top: 76px;
}

@media (min-width: 768px) {
  .sitebar {
    height: 70px;
    overflow: hidden;
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
      0 2px 4px -1px rgba(0, 0, 0, 0.06);
    -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
      var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
      var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    margin-top: unset;
  }
}

@media (min-width: 1024px) {
  .sitebar {
    padding: 7px 0;
  }
}

.sitebar {
  /*外框*/
}

.sitebar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-direction: column;
}

@media (min-width: 768px) {
  .sitebar .container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-direction: row;
  }
}

.sitebar .container {
  /*左邊 或 上方區域*/
  /*右邊或下方區域 相關網站*/
}

.sitebar .container .sitebar_bar1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .sitebar .container .sitebar_bar1 {
    width: auto;
    display: flex;
  }
}

.sitebar .container .sitebar_bar1 {
  /*目錄按鈕*/
  /*網站名稱區域*/
  /*相關網站按鈕*/
}

.sitebar .container .sitebar_bar1 .btn_menu {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 2rem;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  width: 2rem;
}

@media (min-width: 768px) {
  .sitebar .container .sitebar_bar1 .btn_menu {
    margin-left: 0px;
  }
}

@media (min-width: 1366px) {
  .sitebar .container .sitebar_bar1 .btn_menu {
    display: none;
  }
}

.sitebar .container .sitebar_bar1 .btn_menu {
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url(../icon/icon-Hamburger.svg);
}

.sitebar .container .sitebar_bar1 .btn_menu.open {
  background-image: url(../icon/icon-Close.svg);
}

.sitebar .container .sitebar_bar1 .site_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*LOGO*/
  /*網站名稱*/
}

.sitebar .container .sitebar_bar1 .site_name img {
  height: 1.5rem;
}

@media (min-width: 768px) {
  .sitebar .container .sitebar_bar1 .site_name img {
    height: 1.75rem;
  }
}

.sitebar .container .sitebar_bar1 .site_name h4 {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
  padding-left: 0.5rem;
}

@media (min-width: 768px) {
  .sitebar .container .sitebar_bar1 .site_name h4 {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.sitebar .container .sitebar_bar1 .btn_bar2 {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 2rem;
  margin-right: 0.5rem;
  width: 2rem;
}

@media (min-width: 768px) {
  .sitebar .container .sitebar_bar1 .btn_bar2 {
    display: none;
  }
}

.sitebar .container .sitebar_bar1 .btn_bar2 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20%;
  background-image: url(../icon/icon-Site.svg);
}

.swiperLightbox .swiper-pagination-bullet {
  margin: 0 5px;
  background-color: #fff;
}

.swiper1>.swiper-container-free-mode>.swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.swiper1 a:hover {
  /*lg*/
}

@media (min-width: 1024px) {
  .swiper1 a:hover {
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
    margin-top: -10px;
  }
}

.swiper2 .swiper-pagination:focus {
  outline: none;
}

.swiper2 .swiper-pagination-bullet {
  width: 64px;
  height: 5px;
  margin: 0 5px;
  opacity: 1;
  background-color: var(--nintendoGray1);
  border-radius: 0px;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 150ms;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}

.swiper2 .swiper-pagination-bullet:hover {
  background-color: var(--nintendoGray1);
}

.swiper2 .swiper-pagination-bullet-active {
  background-color: var(--nintendoRed1);
  border-radius: 0px;
  margin: 0 5px;
}

.swiper2 .swiper-pagination-bullet-active:hover {
  background-color: var(--nintendoRed1);
}

.swiper3 .swiper-pagination {
  position: static;
}

.swiper3 .swiper-pagination:focus {
  outline: none;
}

.swiper3 .swiper-pagination-bullet {
  margin: 0 5px;
  opacity: 1;
  background-color: var(--nintendoGray1);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 150ms;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}

.swiper3 .swiper-pagination-bullet:hover {
  background-color: var(--nintendoGray1);
}

.swiper3 .swiper-pagination-bullet-active {
  background-color: var(--nintendoRed1);
  margin: 0 5px;
}

.swiper3 .swiper-pagination-bullet-active:hover {
  background-color: var(--nintendoRed1);
}

.prodgrid1 ul li:hover {
  /*lg*/
}

@media (min-width: 1024px) {
  .prodgrid1 ul li:hover {
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
  }
}

.swiper4 .swiper-pagination {
  position: static;
}

.swiper4 .swiper-pagination:focus {
  outline: none;
}

.swiper4 .swiper-pagination-bullet {
  margin: 0 5px;
  opacity: 1;
  background-color: var(--nintendoGray1);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 150ms;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}

.swiper4 .swiper-pagination-bullet:hover {
  background-color: var(--nintendoGray1);
}

.swiper4 .swiper-pagination-bullet-active {
  background-color: var(--nintendoRed1);
  margin: 0 5px;
}

.swiper4 .swiper-pagination-bullet-active:hover {
  background-color: var(--nintendoRed1);
}

.swiper5 .swiper-pagination {
  position: static;
}

.swiper5 .swiper-pagination:focus {
  outline: none;
}

.swiper5 .swiper-pagination-bullet {
  margin: 0 5px;
  opacity: 1;
  background-color: var(--nintendoGray1);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 150ms;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}

.swiper5 .swiper-pagination-bullet:hover {
  background-color: var(--nintendoGray1);
}

.swiper5 .swiper-pagination-bullet-active {
  background-color: var(--nintendoRed1);
  margin: 0 5px;
}

.swiper5 .swiper-pagination-bullet-active:hover {
  background-color: var(--nintendoRed1);
}

.swiper6 .swiper-pagination:focus {
  outline: none;
}

.swiper6 .swiper-pagination-bullet {
  width: 64px;
  height: 5px;
  margin: 0 5px;
  opacity: 1;
  background-color: var(--nintendoGray1);
  border-radius: 0px;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 150ms;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}

.swiper6 .swiper-pagination-bullet:hover {
  background-color: var(--nintendoGray1);
}

.swiper6 .swiper-pagination-bullet-active {
  background-color: var(--nintendoRed1);
  border-radius: 0px;
  margin: 0 5px;
}

.swiper6 .swiper-pagination-bullet-active:hover {
  background-color: var(--nintendoRed1);
}

.swiper6 .videoplay:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: auto;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  background-color: rgba(51, 51, 51, 0.15);
  background-image: url(../img/icon/icon-play.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
  pointer-events: none;
  /*sx*/
  /*sm*/
  /*md*/
  /*lg*/
  /*xl*/
  /*2xl*/
}

@media (min-width: 768px) {
  .swiper6 .videoplay:after {
    background-size: 25%;
  }
}

@media (min-width: 1024px) {
  .swiper6 .videoplay:after {
    background-size: 20%;
  }
}

@media (min-width: 1366px) {
  .swiper6 .videoplay:after {
    background-size: 15%;
  }
}

.swiper6 .videoplay:hover {
  /*lg*/
}

@media (min-width: 1024px) {
  .swiper6 .videoplay:hover {
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
  }
}

.banner4 .bg {
  width: 100%;
  height: 56.25vw;
  /*xs*/
  /*sm*/
  /*md*/
  /*lg*/
  /*xl*/
}

@media (min-width: 1024px) {
  .banner4 .bg {
    height: 412px;
  }
}

@media (min-width: 1366px) {
  .banner4 .bg {
    height: 771px;
  }
}

.banner4 .link {
  -webkit-filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.25));
}

.banner4 .link span {
  font-size: 18px;
  /*xs*/
  /*sm*/
  /*md*/
  /*lg*/
  /*xl*/
}

@media (min-width: 768px) {
  .banner4 .link span {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .banner4 .link span {
    font-size: 32px;
  }
}

@media (min-width: 1366px) {
  .banner4 .link span {
    font-size: 40px;
  }
}

.banner4 .link img {
  width: 20px;
  /*xs*/
  /*sm*/
  /*md*/
  /*lg*/
  /*xl*/
}

@media (min-width: 768px) {
  .banner4 .link img {
    width: 30px;
  }
}

@media (min-width: 1024px) {
  .banner4 .link img {
    width: 36px;
  }
}

@media (min-width: 1366px) {
  .banner4 .link img {
    width: 50px;
  }
}

.banner4:hover {
  /*lg*/
}

@media (min-width: 1024px) {
  .banner4:hover {
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
  }
}

@media (min-width: 640px) {
  .sm\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .sm\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .sm\:px-3\.5 {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }
}

@media (min-width: 768px) {
  .md\:space-y-0> :not([hidden])~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: -webkit-calc(0px * -webkit-calc(1 - var(--tw-space-y-reverse)));
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: -webkit-calc(0px * var(--tw-space-y-reverse));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .md\:space-x-4> :not([hidden])~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: -webkit-calc(1rem * var(--tw-space-x-reverse));
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: -webkit-calc(1rem * -webkit-calc(1 - var(--tw-space-x-reverse)));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .md\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .md\:justify-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .md\:h-16 {
    height: 4rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .md\:mb-4 {
    margin-bottom: 1rem;
  }

  .md\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:gap-4 {
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .lg\:space-x-4> :not([hidden])~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: -webkit-calc(1rem * var(--tw-space-x-reverse));
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: -webkit-calc(1rem * -webkit-calc(1 - var(--tw-space-x-reverse)));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .lg\:block {
    display: block;
  }

  .lg\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .lg\:mb-0 {
    margin-bottom: 0px;
  }

  .lg\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .lg\:gap-8 {
    gap: 2rem;
  }
}

@media (min-width: 1366px) {
  .xl\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

/* 小AD */
.swiperTop {
  width: 95%;
  margin-bottom: 0.5rem;
}

@media (min-width: 769px) {
  .swiperTop {
    width: 370px;
    margin-bottom: 0;
  }
}


/* 燈箱樣式 */
.fancybox-slide--html {
  padding: 0;
}

.fancybox-content {
  background: transparent;
  padding: 40px;
}

.fancybox-close-small {
  color: #fff !important;
}


/* Dawa 20230718 */

@media (max-width:768px) {
  .swiper-container {
    padding-top: 68px;
  }
}

/* Dawa 20230718 END*/