 /*  全站 Reset + 變數設定 */
:root {
  --primary-color: #899599;
  --secondary-color: #00202c;
  --bg-color: #f4f4f4;
  --text-color: #000;
  --muted-text: #474747;
  --border-color: #e5e7eb;
  --fun-color: #03c145;
  --fun2-color: #e75810;

  --dark-bg: #000;
  --dark-text: #ffff;
}

/* @media (prefers-color-scheme: dark) {
  :root {
    --bg-color: var(--dark-bg);
    --text-color: var(--dark-text);
  }
} */
/* 預設字體大小：PC/Desktop */
h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 16px; }
/* 平板字體大小調整 */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  h3 { font-size: 26px; }
  h4 { font-size: 22px; }
  h5 { font-size: 18px; }
  h6 { font-size: 16px; }
}
/* 手機字體大小調整 */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 24px; }
  h4 { font-size: 20px; }
  h5 { font-size: 16px; }
  h6 { font-size: 14px; }
}
@font-face {
  font-family: "CustomFont";
  src: url("fonts/CustomFont.ttf") format("woff2");
  /* , */
        /* url("fonts/my-custom-font.woff") format("woff"); */
  font-weight: normal;
  font-style: normal;
}
----------------------------
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, h1, h2, h3, h4, h5, h6,
p, a, blockquote, pre,
dl, dd, ol, ul, figure,
form, fieldset, legend,
input, textarea, select, button,
label, summary {
  margin: 0;
  padding: 0;
  /* font: inherit; */
  /* vertical-align: baseline; */
  color: inherit;
  text-decoration: none;
  /* line-height: inherit; */
  /* background: transparent; */
  border: 0;
  box-sizing: border-box;
}
body {
  font-family: "CustomFont", system-ui, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1;

  width: 98%;
  margin: auto;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  /* cursor: default; */
  cursor: crosshair;
}
html {
  scroll-behavior: smooth;
}
li {
  list-style: none;
}
/* navbar */
.navbar {
  display: flex;
  margin: auto;
  height: 60px;
  width: 100%;
  border-bottom: 1px solid var(--text-color);
  align-items: center;
  background: var(--bg-color);
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar-text {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 2px solid var(--text-color);
  margin-bottom: 10px;
}
.navbar-text > header > h1 {
  font-size: 36px;
  background-color: var(--dark-bg);
  color: var(--dark-text);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 400;
}
.navbar-text > small {
  position: absolute;
  right: 0;
  bottom: calc((100% - 36px) / 2);
  color: var(--muted-text);
}
.navbar-text > a:not(header a) {
  position: absolute;
  left: 0;
  bottom: calc((100% - 36px) / 2);
  display: flex;
  align-items: center;
  background: var(--fun2-color);
  border-radius: 999px;
  border: 1px solid var(--text-color);
  padding: .2rem .3rem;
  line-height: 1;
}
.navbar-text > a::before {
  content: "";
  display: inline-block;
  height: 1px;
  width: 0;
  margin-right: 10px;
  transition: all 1s;
}
.navbar-text > a:hover::before {
  width: 3rem;
  background-color: var(--text-color);
}

/* header */
.header-area {
  height: 6rem;
  display: flex;
  align-items: end;
}

/* service-area */
.main-section {
  border-top: 1px solid var(--text-color);
  border-bottom: 1px solid var(--text-color);
  height: auto;
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 1rem 0;
}
.tab-panel {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: 100%;
  width: fit-content;
  padding-right: 12px;
  margin-right: 10px;
}
.service-tabs .service-group {
  line-height: 1;
  position: relative; 
}
.tab-form-link {
  margin-top: 50px;
  position: relative;
}
.tab-form-link a {
  position: relative;
}
.tab-form-link a::before {
  content: '';
  background: #f349496b;
  width: 110%;
  height: 40%;
  position: absolute;
  z-index: -1;
  right: -5%;
  bottom: 40%;
  transform: translate(0, 50%);
  transition: all .5s;
  filter: blur(.9px);
}
.tab-form-link a:hover::before {
  width: 0;
}


/* 切換區 */
.content {
  height: 100%;
  width: 100%;
  display: flex;
}
.content-panel {
  height: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.content-panel.visible {
  opacity: 1;
}
.content-img-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  flex-shrink: 1;
  align-self: flex-start;
  width: 100%;
  max-width: 600px;
}
.content-image {
  max-width: 600px;
  width: 100%;
  height: auto;
}
.item-image {
  aspect-ratio: 1 / 1;
  height: auto;
  width: 100%;
  object-fit: contain;
  overflow: hidden;
}

/* item images */
.item-img-container {
  height: fit-content;
  padding: 1rem 0;
}
.item-img-list {
  display: flex;
  justify-content: end;
  width: 100%;
  height: auto;
  gap: 1rem;
}
.item-img-box {
  max-width: 180px;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--text-color);
}
.item-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.content-item-id-text {
  margin: 0 1rem;
  align-self: flex-start;
}
.content-item-id {
  flex-wrap: wrap;
}
.content-item-id-text h6 {
  font-weight: 300;
}
.item-name {
  font-weight: bold;

  & h5 {
    /* font-size: 18px; */
  }
}
.content-discription {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  height: fit-content;
  width: 500px;
  min-width: 445px;
  gap: 10px;
  line-height: 1.5;
  flex-shrink: 1;
  
  & p {
    color: var(--muted-text);
    font-size: 20px;
  }

  & span {
    font-weight: bold;
    color: var(--text-color);
  }
}

/* tabs */
.service-tabs {
  width: 200px;
  box-sizing: border-box;
  transition: width 1s;
}
.service-tab-text {
  display: block;
  box-sizing: border-box;
  line-height: 1;
  font-size: 18px;
  /* font-weight: bold; */
  background: #cbcbcb3b;
  /* border: 1px solid var(--text-color); */
  /* border: 1px solid #00000000; */
  /* border-radius: 2px; */
  padding: 4px;
  color: #474747;
}
.service-tabs .service-group {
  color: var(--muted-text);
  cursor: default;
  transition: all 1s;
  position: relative;
  margin-bottom: 4px;
  /* padding-bottom: 4px; */
  transform: translateX(12px);
  /* border-bottom: .5px solid #9e9e9e9e; */


  & > .subservice-tabs {
    display: none;
    gap: 1px;
    margin: 0 0 .5rem 1rem;
    height: 0;
    transition: height 1s;
    overflow: hidden;
  }
  &.active > .subservice-tabs {
    display: block;
    height: auto;
  }
}
.service-tabs .service-group::before {
  /* content: ''; */
  display: block;
  height: 10px;
  width: 5px;
  box-shadow: inset 0 0 0 1px var(--text-color);
  transform: translate(-100%, -50%);
  transition: all .5s;
  position: absolute;
  top: 0.5rem;
  left: -2px;
}
/* .service-tabs .service-group::after {
  content: '';
  position: absolute;
  right: -20;
  width: 0;
  height: 1px;
  top: 50%;
  transform: translate(100% -50%) scaleX(0);
  background-color: var(--muted-text);
  transition: all 1s ease;
} */
.service-tabs .service-group:hover {
  color: var(--secondary-color);

  & > .service-tab-text {
    background: var(--fun2-color);
    color: var(--text-color);
  }
}
.service-tabs .service-group.active {
  color: var(--text-color);
  transition: all 1s ease;

  & > .service-tab-text {
    background: var(--dark-bg);
    /* border: 1px solid #474747; */
    /* border-radius: 2px; */
    color: var(--dark-text);
  }
}
.service-tabs .service-group.active::before {
  /* content: ''; */
  display: block;
  height: 10px;
  /* width: 8px; */
  background: var(--fun-color);
  transform: translate(-100%, -50%);
  transition: all 1s;
  /* color: var(--muted-text); */
}
/* .service-tabs .service-group.active::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  width: 50px;
  height: 1px;
  transform: translate(100%, -50%) scaleX(1);
  background-color: var(--text-color);
  transition: transform .8s ease, width 1.5s ease;
} */
.service-tabs .service-group:hover::before {
  content: '';
  opacity: .8;
  /* height: 100%; */
  /* width: 8px; */
}

/* span */
.service-tabs .service-group .intro-discrip {
  position: absolute;
  right: -20%;
  top: 0;
  transform: translateX(100%);
  display: flex;
  line-height: 1.3;
  width: 100px;
  opacity: 0;
  pointer-events: none;
}
.service-tabs .service-group.active .intro-discrip {
  position: absolute;
  right: -60%;
  top: 0;
  transform: translateX(100%);
  color: var(--text-color);
  font-size: 14px;
  width: 200px;
  display: inline-block;
  opacity: 1;
  pointer-events: auto;
  transition: all 1.5s ease;
}
.service-tabs .intro-discrip p {
  margin-top: 5px;
}

/* subservice-tabs */
/* .subservice-tabs {
  display: none;
  gap: 1px;
  height: 0;
  margin: .5rem 0 1rem 1rem;
  transition: height 1s;
}
.subservice-tabs.active {
  display: flex;
  flex-direction: column;
  height: auto;
} */
.subservice-tabs .subservice-item {
  /* cursor: pointer; */
  display: flex;
  /* height: 1.5rem; */
  align-items: center;
  padding: 4px 4px 4px 2px;  
  opacity: .7;
  /* border-top: 1px dashed var(--text-color); */
  border-bottom: 1px dashed var(--text-color);

  &:hover {
    background: #cbcbcb46;
  }
  
  &.active {
    background: #cbcbcb;
    color: var(--text-color);
    opacity: 1;
  }
}




.placeholder-x {
  position: relative;
  inset: 0;
  width: 10vw;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--text-color);
}
.placeholder-x::before,
.placeholder-x::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 140%;
  background-color: #000000;
  top: -20%;
  left: 50%;
  transform-origin: center;
}
.placeholder-x::before {
  transform: rotate(45deg);
}
.placeholder-x::after {
  transform: rotate(-45deg);
}





/* video */
.video {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  border-bottom: 1px solid var(--text-color);
}
.video-h2 {
  height: 6rem;
  display: flex;
  align-items: end;
  border-bottom: 1px solid var(--text-color);
}
.video-block {
  display: flex;
  flex-direction: column;
}
.video-selector {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--text-color);
}
.video-selector .video-btn {
  font-size: 16px;
  font-family: inherit;
  color: var(--muted-text);
  opacity: 0.5;
  background: none;
  border: 1px solid #00000000;
  border-radius: 0px;
  position: relative;
  transition: all 1s;

  &:hover {
    opacity: .7;
    text-shadow: 0 2px 2px #4747472a;
    color: #474747;
  }
}
.video-selector .video-btn::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #00000000;
  transform: translateY(100%);
  transition: all 1s;
  opacity: 0;
}
.video-selector .video-btn.active {
  color: var(--text-color);
  opacity: 1;
  text-shadow: 0 2px 20px #474747;
}
.video-selector .video-btn.active::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--text-color);
  box-shadow: 0 2px 8px 4px #cbcbcb;
  opacity: 1;
}
.sticker-btn {
  display: flex;
  align-items: center;
  font-family: inherit;
  font-size: 16px;
  color: var(--text-color);
  border-left: 1px dashed #949292;
  padding-left: 1rem;
  margin-left: 2rem;
  text-shadow: 0 2px 10px #474747;
  transition: .7s;
  background: none;
  position: relative;
  box-sizing: border-box;
}
.sticker-btn:hover {
  text-shadow: 0 2px 8px #03c145;
}
.sticker-btn::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #00000000;
  transform: translateY(100%);
  transition: all 1s;
  opacity: 0;
}
.sticker-btn.active::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 2rem;
  height: 1px;
  background: var(--text-color);
  box-shadow: 0 2px 8px 4px #cbcbcb;
  opacity: 1;
}
.v-spans {
  display: flex;
  justify-content: center;
}
.v-span {
  content: '';
}

.video-container {
  box-sizing: border-box;
  align-self: center;
  width: 1000px;
  resize: horizontal;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--dark-bg);
  margin: 1rem 0;
}
.video-container iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}
.video-container #stickerFrame {
  display: none;
  width: 100%;
  height: 100%;

}



/* procedure */
.procedure {
  display: flex;
  flex-direction: column;
}
.procedure-h2 {
  height: 6rem;
  display: flex;
  align-items: end;
  border-bottom: 1px solid var(--text-color);
}
.prcedure-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 6rem;
  padding-top: 3px;
}
.line-line-line {
  min-height: 36px;
  width: 100%;
  display: flex;
  align-items: end;
  margin-bottom: 15px;
}
.line-line-line span {
  background: var(--text-color);
  height: 1px;
  border: 0px;
  width: 100%;
  font-size: 0;
  box-shadow: 0 -10px 0 0.1px #000,
  0 -19px 0 .1px #000,
  0 -26px 0 0.1px #000,
  0 -31px 0 0.1px #000,
  0 -35px 0 0.1px #000;
}
.procedure-flow-box {
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  border-left: 1px solid #000;
  height: 100%;
}
.flow {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: end;
  border-bottom: 1px solid var(--text-color);
  justify-content: space-between;
}
.flow-step-number {
  height: 100%;
}
.flow-step-number h3 {
  font-size: 100px;
  line-height: .9;
  text-align: right;

}
.flow-text-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 1.3rem;
  box-sizing: border-box;
}
.flow-text-box .flow-step {
  /* padding-top: 4px; */
  color: var(--text-color);
}
.flow-text-box .flow-detail {
  width: 500px;
  color: var(--text-color);
  letter-spacing: .8px;
  /* word-spacing: 10px; */

  & p {
    color: var(--muted-text);
    line-height: 1.5;
  }
}
.flow-text-box .flow-detail p {
  font-size: 20px;
}
.flow-img {
  position: relative;
}
.flow-img img {
  position: absolute;
  right: 0;
  bottom: 0;
}

/* FAQ */
.faq-container {
  margin-bottom: 6rem;
}
/* .badge{
  letter-spacing: 2px;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--text-color);
} */
ul.slides {
  display: flex;
  width: 100%;
  gap: 2rem;
  list-style: none;
  margin-bottom: 4rem;
  box-sizing: border-box;
}
li.slide {
  width: 100%;
  flex-basis: 0% 1 0%;
  /* flex: 1; */
  background: #cbcbcb;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 1.5rem;
  border: 1px solid var(--text-color);
}
li.slide > img {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
li.slide > span {

}
/* .slide:nth-of-type(1) {
  background-color: #F2E205;
}
.slide:nth-of-type(2) {
  background-color: #F25C05;
  left: 100%;
}
.slide:nth-of-type(3) {
  background-color: #495F8C;
  left: 200%;
} */
.faqs {
  
}
.faq-text {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--text-color);
}
.faq-text > img {
  height: 2.5rem;
  margin-right: .5rem;
}
.faq-text > h3 {
  /* border: 2px solid var(--text-color); */
  /* border-radius: 999px; */
  /* padding: 5px 10px; */
  /* text-decoration: underline; */
}
.faq {
  /* border: 1px solid var(--text-color); */
}
.faq > li{
  padding: 1rem 1rem;
  /* width: 80%; */
  margin: 1rem auto;
  /* border: 1px solid var(--text-color); */
  background: #cbcbcb3b;

  &:hover > .faq-content > .a:nth-of-type(2) {
    /* height: 30px;
    overflow: hidden;
    opacity: 1; */
  }
}
.faq > hr {
  all: unset;
  border-top: 1px dotted var(--text-color);
  margin: 1rem 0;
  /* display: flex; */
}
.faq > li > .q {
  /* display: inline-block; */
  box-sizing: border-box;
  margin-bottom: .5rem;
  /* border: ; */
  color: var(--dark-text);
  background: var(--dark-bg);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 20px;
  display: flex;
  width: fit-content;
  align-items: center;
}
.faq > li > .faq-content {
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
}
.faq > li > .faq-content > .a {
  color: var(--muted-text);
  line-height: 1.5;
  font-size: 20px;

  & > span {
    font-weight: bold;
  }
}
.faq > li > .faq-content > .a:nth-of-type(2) {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height .7s, opacity 1.7s;
}
.qa > .faq-content{
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  /* .qa:hover > .faq-content > svg {
    animation: shake 1s ease 3;
  } */
  .qa:hover > .q > svg  {
    animation: shake 1s ease 3;
  }
}
@keyframes shake {
  50% {
    transform: rotateZ(-135deg) scale(1.2) translate(-1px, -1px);
  }

  /* 66% {
    transform: rotateZ(-135deg) scale(1.5) translate(2px, 2px);
  } */

  100% {
    transform: rotateZ(-135deg) scale(1.2) translate(0px, 0px);
  }
}
.arrow-icon {
  transform: rotateZ(-135deg) scale(1.2);
  transition: all 1s;
  color: var(--text-color);
  /* color: var(--dark-text); */
  margin-left: 1rem;
  background: var(--bg-color);
  /* background: var(--fun-color); */
  border-radius: 50%;
  border: 1.5px solid var(--border-color);
}
.arrow-icon.open {
  transform: rotateZ(-90deg) scale(1.2);
}
.faq-video-container {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  align-self: center;
  width: 1000px;
  resize: horizontal;
  height: 0;
  gap: 1rem;
  overflow: hidden;
  transition: height .7s ease, opacity 2s ease, margin 1s;
}
.faq-video-container iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--dark-bg);
}
.faq-video-container img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--dark-bg);
}

/* footer-contect */
.footer-info-content {
  background: var(--fun2-color);
  padding: 2rem 4rem;
  margin-bottom: 2.5rem;
  justify-content: space-between;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  border: 2px solid #000;
}
.footer-LOGO {
  padding: .3rem 0;
}
.foorter-block {
  display: flex;
  width: 100%;
  gap: 1rem;
  border-top: 1px solid var(--text-color);
  padding: .5rem 0;
}
.footer-info {
  display: grid;
  /* grid-template-rows: repeat(4, 1fr); */
  grid-template-columns: 100%;
  gap: .5rem;
  justify-content: end;
  align-self: self-end;
  width: 100%;
  height: 100%;
  border-left: 1px solid var(--text-color);
  padding-left: .5rem;
  box-sizing: border-box;
}
.information {
  display: flex;
  flex-direction: row;
  align-items: end;
  letter-spacing: 2px;
  padding-bottom: 2px;
  width: 100%;
  box-sizing: border-box;
}
.information a {
  width: 100%;
  font-size: 18px;
  line-height: 1.1;

  &:hover {
    color: var(--dark-bg);
    background: var(--fun-color);
  }
}
.information p {
  text-wrap: wrap;
  white-space: normal;
  overflow-wrap: break-word;
  user-select: auto;
  -webkit-user-select: auto;
  -moz-user-select: all;
  font-size: 18px;
  line-height: 1.1;

  &::selection {
    background-color: var(--fun-color);
    color: var(--dark);
  }
}
.information p:nth-child(1) {
  text-wrap: nowrap;
}
.information p:nth-child(2) {
  width: 100%;
  text-align: end;
  
  & span {
    font-weight: bold;
    letter-spacing: 0;
  }

  & span::selection {
    background-color: var(--fun-color);
    color: var(--dark-bg);
  }
}
.info-time p {
  line-height: 1.3;
}
.footer-info:nth-last-of-type(2) {
  display: flex;
  align-items: end;
  justify-content: start;
  gap: 1rem;
}
.footer-info:nth-last-of-type(2) .information-l {
  display: flex;
  flex-direction: column;
  /* flex: 1; */
  gap: .5rem;
}
.footer-info:nth-last-of-type(2) .information-r {
  display: flex;
  flex-direction: column;
  /* flex: 1; */
  gap: .5rem;
}


/* footer */
.footer-container {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-top: 4px;
  padding-bottom: 8px;
  border-top: 2px solid var(--text-color);
  position: fixed;
  bottom: 0;
  width: 98%;
  z-index: 999;
  background: var(--bg-color);
}
.footer-social a {
  font-size: small;
}

/* top-button */
.top {
  position: fixed;
  left: calc(2%);
  bottom: 2.5rem;
  bottom: calc(2.5rem + 1%);
  width: 30px;
  height: 30px;
  border: 1px solid var(--secondary-color);
  background: #03c146cf;
  backdrop-filter: blur(1px);
  /* color: var(--dark-text); */
  /* mix-blend-mode: difference; */
  transition: background 1s;

  &:hover {
    background: #03c145; 
  }
}

@media (max-width: 1200px) {
    /* 切換區 */
  .content-discription {
    font-size: 16px;
  }
}

@media (max-width: 1150px) {
  /* 切換區 */
  .content-panel {
    flex-direction: column;
    margin: auto;
  }
  .content-item-id-text {
    width: 600px;
    align-self: auto;
  }
  .content-discription {
    width: 600px;
    margin: 2rem 1rem;
  }
  .flow-img {
    position: initial;
    display: flex;
    justify-content: end;
  }
  .flow-img img {
    position: static;
  }
}

@media (max-width: 768px) {
  /* service-area */
  .main-section {
    flex-direction: column;
  }

  /* 切換區 */
  .content-img-block {
    margin: 2rem 1rem;
    box-sizing: border-box;
    width: auto;
  }
  .content-image {
    width: 100%;
    height: auto;
  }
  .content-item-id-text {
    width: 100%;
  }
  .item-name {

    & h4 {
      font-size: 22px;
    }
  }
  .content-discription {
    min-width: auto;
    width: auto;

    & p {
      color: var(--muted-text);
      font-size: 20px;
    }
  }
  .item-img-list {
    gap: 1rem;
  }

  /* video */
  .video-container {
    width: 100%;
  }
  .video {

  }








  /* procedure */
  .flow-text-box .flow-detail {
    width: auto;
  }
  .flow-text-box .flow-detail p {
    font-size: 16px;
  }
  .flow-img img {
    width: 100%;
    max-width: 300px;
  }
  /* FAQ */
  ul.slides {
    flex-direction: column;
    width: 80%;
    margin: auto auto 4rem auto;
  }
  .faq > li{

  }
  .faq > li > .faq-content .a {
    font-size: 18px;

    & > span {
      display: block;
      font-weight: bold;
    }
  }
  .faq-video-container {
    width: 100%;
  }


  /* footer-content */
  .footer-info-content {
    padding: 1rem .8rem;
  }
  .foorter-block {
    flex-direction: column;  
    height: auto;
  }
  .footer-info {
    width: 100%;
  }
  .information p:nth-child(2) {
    text-align: end;
    word-break: break-all;
  }
  .footer-info:nth-last-of-type(2) .information-r .information > a{
    /* text-align: end; */
  }
}