@charset "UTF-8";
/*
    自定義在最下面
*/
/* Font Weight */
/* Width */
/* Height */
/* Display */
/* Margin */
/* Padding */
/* Cursor */
/* Background Color */
/* Color */
/* Text Limit */
/* 毛玻璃 */
/******************  自定義  ******************/
/* Color */
/* Background Color */
/* Font Size */
/* Button */
:root {
  /* Primary Color */
  --pc-950: #552B00;
  --pc-900: #773C00;
  --pc-800: #995006;
  --pc-700: #BB6611;
  --pc-600: #DD7F20;
  --pc-500: #FF9933;
  --pc-400: #FFB061;
  --pc-300: #FFC78F;
  --pc-200: #FFDEBD;
  --pc-100: #FFF5EA;
  --pc-50: #FFF7EE;
  /* Secondary Color */
  --sc-950: #432004;
  --sc-900: #733E0A;
  --sc-800: #894B00;
  --sc-700: #A65F00;
  --sc-600: #D08700;
  --sc-500: #EFB100;
  --sc-400: #FCC800;
  --sc-300: #FFDF20;
  --sc-200: #FFF085;
  --sc-100: #FEF9C2;
  --sc-50: #FEFCE8;
  /* Red Color */
  --rc-950: #4B0407;
  --rc-900: #881418;
  --rc-800: #A50F15;
  --rc-700: #C80D14;
  --rc-600: #ED151D;
  --rc-500: #FF444B;
  --rc-400: #FF646A;
  --rc-300: #FF9DA1;
  --rc-200: #FFC5C7;
  --rc-100: #FFDFE0;
  --rc-50: #FFF1F2;
  /* Yellow Color */
  --yc-950: #461B02;
  --yc-900: #7A350D;
  --yc-800: #94400C;
  --yc-700: #B75506;
  --yc-600: #DD7902;
  --yc-500: #F9A107;
  --yc-400: #FFC321;
  --yc-300: #FFD74A;
  --yc-200: #FFE888;
  --yc-100: #FFF5C6;
  --yc-50: #FFFBEB;
  /* Success Color */
  --suc-950: #0F2A09;
  --suc-900: #254D1A;
  --suc-800: #285B19;
  --suc-700: #2E7219;
  --suc-600: #3A951B;
  --suc-500: #51C128;
  --suc-400: #6ED645;
  --suc-300: #93E571;
  --suc-200: #BCF1A5;
  --suc-100: #DDF7D0;
  --suc-50: #F0FCE9;
  /* Neutral Color */
  --nc-950: #0A0A0A;
  --nc-900: #171717;
  --nc-800: #262626;
  --nc-700: #404040;
  --nc-600: #525252;
  --nc-500: #737373;
  --nc-400: #A1A1A1;
  --nc-300: #D4D4D4;
  --nc-200: #E5E5E5;
  --nc-100: #F5F5F5;
  --nc-50: #FFFFFF;
  /* Font-Size */
  --text-9xl: 128px;
  --text-9xl--line-height: 1;
  --text-8xl: 96px;
  --text-8xl--line-height: 1;
  --text-7xl: 72px;
  --text-7xl--line-height: 1;
  --text-6xl: 60px;
  --text-6xl--line-height: 1;
  --text-5xl: 60px;
  --text-5xl--line-height: 1;
  --text-4xl: 36px;
  --text-4xl--line-height: 2.5rem;
  --text-3xl: 30px;
  --text-3xl--line-height: 2.25rem;
  --text-2xl: 24px;
  --text-2xl--line-height: 2rem;
  --text-xl: 20px;
  --text-xl--line-height: 1.75rem;
  --text-lg: 18px;
  --text-lg--line-height: 1.75rem;
  --text-base: 16px;
  --text-base--line-height: 1.5rem;
  --text-sm: 14px;
  --text-sm--line-height: 1.25rem;
  --text-xs: 12px;
  --text-xs--line-height: 1rem;
  /* Radius */
  --radius-4: 4px;
  --radius-8: 8px;
  --radius-16: 16px;
  --radius-24: 24px;
  --radius-32: 32px;
  --radius-40: 40px;
  --radius-80: 80px;
  --radius-100: 100px;
  /* Spacing */
  --spacing-4: 4px;
  --spacing-8: 8px;
  --spacing-12: 12px;
  --spacing-16: 16px;
  --spacing-18: 18px;
  --spacing-20: 20px;
  --spacing-24: 24px;
  --spacing-28: 28px;
  --spacing-32: 32px;
  --spacing-40: 40px;
  --spacing-48: 48px;
  --spacing-56: 56px;
  --spacing-64: 64px;
  --spacing-72: 72px;
  --spacing-80: 80px;
  --spacing-120: 120px;
  --spacing-240: 240px;
}

@media (max-width: 576px) {
  .col-wrap {
    padding: 0;
  }
}
.blocks-wrap--tab-wrap {
  display: flex;
  justify-content: center;
}
.blocks-wrap--tab-wrap__tab-container {
  display: flex;
  gap: var(--spacing-12);
  overflow: auto;
  flex-wrap: wrap;
  justify-content: center;
}
.blocks-wrap--tab-wrap__tab-box {
  width: 150px;
}
.blocks-wrap--tab-wrap__card-wrap {
  width: 100%;
  position: relative;
}
.blocks-wrap--tab-wrap__card-content {
  color: var(--nc-50) !important;
  font-size: var(--text-base) !important;
  line-height: var(--text-base--line-height);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  aspect-ratio: 4/3;
  align-items: center;
  padding: var(--spacing-32);
  opacity: 0;
  transition: opacity 0.5s ease-out;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-16);
  cursor: pointer;
}
.blocks-wrap--tab-wrap__card-top {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.blocks-wrap--tab-wrap__card-icon {
  background: var(--nc-50) !important;
  color: var(--pc-500) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 100px;
}
.blocks-wrap--tab-wrap__card-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-12);
  flex-grow: 1;
}
.blocks-wrap--tab-wrap__card-text {
  font-size: var(--text-base) !important;
  line-height: var(--text-base--line-height);
  color: var(--nc-50) !important;
}
.blocks-wrap--tab-wrap__card-tag-wrap {
  width: 100%;
  display: flex;
  flex: var(--spacing-4);
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: var(--spacing-8);
}
.blocks-wrap--tab-wrap__card-tag {
  color: var(--nc-50) !important;
  font-size: var(--text-xs) !important;
  line-height: var(--text-xs--line-height);
  background: rgba(255, 255, 255, 0.1333333333);
  width: fit-content;
  height: var(--spacing-20);
  border: 1px solid var(--nc-50);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-12) var(--spacing-8);
}
.blocks-wrap--tab-wrap__card-wrap:hover .blocks-wrap--tab-wrap__card-content, .blocks-wrap--tab-wrap__card-content:hover .blocks-wrap--tab-wrap__card-content {
  opacity: 1;
}
.blocks-wrap--tab-wrap__card-wrap:hover + .c-story-card .c-story-card__img-wrap, .blocks-wrap--tab-wrap__card-content:hover + .c-story-card .c-story-card__img-wrap {
  background: var(--pc-500) !important;
}
.blocks-wrap--tab-wrap__card-wrap:hover + .c-story-card .c-story-card__img, .blocks-wrap--tab-wrap__card-content:hover + .c-story-card .c-story-card__img {
  transform: scale(1.1);
  opacity: 0.6;
}
.blocks-wrap--tab-wrap__card-wrap:hover + .c-story-card .c-story-card__title, .blocks-wrap--tab-wrap__card-content:hover + .c-story-card .c-story-card__title {
  color: var(--pc-500) !important;
}

.blocks-wrap--contact {
  background: url("/images/portfolio/contact-wrap-bg.jpg") no-repeat center bottom;
  height: fit-content;
}
.blocks-wrap--contact.--no-bg {
  background: none;
}
.blocks-wrap--contact__intro-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-32);
  justify-content: center;
}
.blocks-wrap--contact__card-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-16);
}

@media (max-width: 576px) {
  .c-information-card__description {
    -webkit-line-clamp: none;
  }
}/*# sourceMappingURL=portfolio-list.css.map */