.awards_link_btn {
  box-sizing: border-box;
  background-color: #172a88;
  border-radius: 30px;
  padding: 14px 30px;
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
  margin-bottom: 30px;
}

/* 全螢幕固定、白色半透明背景 */
.video-wrap {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none; /* 預設隱藏，用 .show 開啟 */
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 24px; /* 邊緣留白，避免小螢幕貼邊 */
  backdrop-filter: blur(2px); /* 可選：柔化背景 */
}
.video-wrap.show {
  display: flex;
}

/* 影片容器：置中 + 響應式 16:9 */
.video-inner {
  position: relative;
  width: min(1200px, 92vw);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
/* 讓 iframe/Player 充滿容器 */
#yt-player,
.video-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#navbar {
  height: 60px;
  position: fixed;
  z-index: 20;
  padding: 0 20px;
  top: 0;
  left: 0;
  background-color: var(--PrimaryColor);
}

/* 關閉按鈕：右上角固定 */
.video_close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10000; /* 蓋過影片 */
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

/* 開聲音按鈕（覆蓋在影片右下） */
.unmute-btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  background: #0008;
  color: #fff;
  backdrop-filter: blur(6px);
  cursor: pointer;
}

/* scroll 超過200px 的 navbar 背景色 */
#navbar.hasBg {
  background-color: var(--PrimaryColor);
}

#navbar .box {
  padding: unset;
  height: 100%;
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

#navbar .box .icon,
#navbar .box .icon img {
  height: 100%;
  display: block;
}

#navbar .box .icon {
  padding: 15px 0;
}

#navbar .box .listContainer {
  height: 100%;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

#navbar .dropdownMenu,
#navbar .box .listContainer a {
  text-decoration: none;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  color: #172a88;
  text-shadow: 5px 5px 15px rgba(58, 195, 146, 0.01),
    31px 39px 30px rgba(58, 195, 146, 0.05),
    14px 18px 22px rgba(58, 195, 146, 0.09),
    3px 4px 12px rgba(58, 195, 146, 0.1);
  display: block;
  cursor: pointer;
}

#navbar .dropdownMenu {
  position: relative;
  height: 100%;
  /* width: 180px; */
}
#navbar .dropdownMenu .menu {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 5px;
  z-index: 2;
  background-color: var(--PrimaryColor);
  cursor: pointer;
}

#navbar .dropdownMenu .menu img {
  width: 14px;
}

#navbar .dropdownMenu .options {
  position: absolute;
  transform: translateX(-50%);
  width: 180px;
  left: 50%;
  padding: 10px;
  background-color: #fff;
  top: -500px;
  z-index: 1;
  transition: 0.4s;
}

#navbar .dropdownMenu:hover .options {
  top: calc(100%);
}

#navbar .dropdownMenu .options a {
  color: #8c8c8c;
  line-height: 2;
}

#navbar .box .btnBox {
  height: 100%;
  display: flex;
  align-items: center;
}

#navbar .box .btnBox .singUp {
  padding: 5px 20px;
  border-radius: 50px;
  color: #fff;
  background-image: linear-gradient(to right, #f60, #ff490a);
}

@media (max-width: 768px) {
  #navbar .box {
    justify-content: space-between;
  }

  #navbar {
    position: flex;
    z-index: 2;
  }

  #navbar .box .logoContainer {
    gap: 20px;
  }

  #listBar {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: -200%;
    left: 0;
    height: 100%;
    background: #000a;
    width: 100%;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-duration: 1s;
    z-index: 10;
    padding-top: 20px;
  }
  #listBar .menuText {
    color: var(--PrimaryColor);
    font-size: 20px;
    text-align: center;
    border-bottom: 1px solid #fff;
    padding: 20px 0;
  }

  #listBar a {
    text-align: center;
    padding: 14px 0;
    color: #fff;
    text-decoration: none;
  }
}

/* fixedBox */
#fixedBox {
  position: fixed;
  z-index: 3;
  bottom: 200px;
  right: 30px;
  display: flex;
  flex-direction: column;
  width: 48px;
  transition: 0.5s;
  gap: 10px;
}

#fixedBox.corner {
  bottom: 30px;
}

#fixedBox a {
  display: block;
  text-decoration: none;
  width: 100%;
}

#fixedBox img {
  display: block;
  width: 100%;
}

#fixedBox a:active img {
  filter: hue-rotate(45deg);
}

@media (max-width: 768px) {
  #fixedBox {
    bottom: 30px;
  }
}

@media (max-width: 480px) {
  #fixedBox {
    width: 35px;
  }
}

/* section1 */

:root {
  --Section1BackgroundHeight: 4000px;
}

#section1 {
  position: relative;
  background-color: var(--PrimaryColor);
  /* min-height: var(--Section1BackgroundHeight); */
  overflow: hidden;
}

#section1 .bg_container {
  position: absolute;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#section1 .bg_container .colorBg1,
#section1 .bg_container .colorBg2,
#section1 .bg_container .colorBg3,
#section1 .bg_container .clapperboard,
#section1 .bg_container .filmReel,
#section1 .bg_container .point1,
#section1 .bg_container .point2,
#section1 .bg_container .star1,
#section1 .bg_container .star2,
#section1 .bg_container .star3,
#section1 .bg_container .star4,
#section1 .bg_container .star5,
#section1 .bg_container .star6,
#section1 .bg_container .star7,
#section1 .bg_container .star8,
#section1 .bg_container .star9,
#section1 .bg_container .star10,
#section1 .bg_container .star11,
#section1 .bg_container .star12,
#section1 .bg_container .play,
#section1 .bg_container .point3,
#section1 .bg_container .light {
  position: absolute;
  display: block;
}

#section1 .bg_container .colorBg1,
#section1 .bg_container .colorBg2,
#section1 .bg_container .colorBg3,
#section1 .bg_container .light {
  width: 100%;
  left: 0;
}

#section1 .bg_container .colorBg1 {
  top: 30%;
}

#section1 .bg_container .colorBg2 {
  top: 45%;
}

#section1 .bg_container .colorBg3 {
  top: 60%;
}

#section1 .bg_container .light {
  width: 100%;
  right: 0;
  top: 30%;
}

#section1 .bg_container .clapperboard {
  width: 25%;
  right: 0;
  top: 58%;
}

#section1 .bg_container .filmReel {
  width: 20%;
  top: 46%;
  left: 0;
}

#section1 .bg_container .point1 {
  width: 8%;
  right: 5%;
  top: 32%;
}

#section1 .bg_container .point2 {
  width: 8%;
  left: 8%;
  top: 41%;
}

#section1 .bg_container .star1 {
  width: 3%;
  right: 15%;
  top: 40%;
}

#section1 .bg_container .star2 {
  width: 5%;
  left: 18%;
  top: 38%;
}

#section1 .bg_container .star3 {
  width: 5%;
  left: 7%;
  top: 56%;
}

#section1 .bg_container .star4 {
  width: 2%;
  right: 5%;
  top: 53%;
}

#section1 .bg_container .star5 {
  width: 4%;
  right: 8%;
  top: 58%;
}

#section1 .bg_container .star6 {
  width: 5%;
  left: 8%;
  top: 65%;
  opacity: 0.8;
}

#section1 .bg_container .star7 {
  width: 2%;
  left: 15%;
  top: 70%;
}

#section1 .bg_container .star8 {
  width: 2%;
  left: 9%;
  top: 76%;
}

#section1 .bg_container .star9 {
  width: 4%;
  right: 8%;
  top: 72%;
}

#section1 .bg_container .star10 {
  width: 4%;
  left: 18%;
  top: 92%;
}

#section1 .bg_container .star11 {
  width: 2%;
  right: 18%;
  top: 95%;
}

#section1 .bg_container .star12 {
  width: 2%;
  right: 8%;
  top: 98%;
  opacity: 0.7;
}

#section1 .bg_container .play {
  width: 4%;
  right: 8%;
  top: 80%;
}

#section1 .bg_container .point3 {
  width: 7%;
  right: 10%;
  top: 83%;
}

@media (max-width: 1440px) {
  #section1 .bg_container .colorBg1,
  #section1 .bg_container .colorBg2,
  #section1 .bg_container .colorBg3 {
    min-width: 1440px;
    transform: translateX(-50%);
    left: 50%;
  }
}

#section1 .content_container {
  position: relative;
  z-index: 2;
}

#section1 .box {
  margin-top: 147px;
  position: relative;
  padding: 60px 0;
}

@media (max-width: 768px) {
  #section1 .box {
    margin: 100px 0;
  }
}

@media (max-width: 480px) {
  #section1 .box {
    margin: 100px 0 0;
  }
}

/* kv */

#kv {
  position: relative;
}

#kv .kv_bg {
  position: absolute;
  left: 0;
  top: 120px;
  width: 100%;
  display: block;
  z-index: 1;
}

#kv .prize {
  position: absolute;
  right: 14%;
  top: 300px;
  width: 221px;
  z-index: 2;
}

#kv .kvSlogan {
  width: 100%;
  max-width: 630px;
  display: block;
  margin-bottom: 80vh;
}

@media (max-width: 1700px) {
  #kv .kvSlogan {
    margin-bottom: 50vh;
  }
}

@media (max-width: 1440px) {
  #kv .kv_bg {
    top: 300px;
  }

  #kv .prize {
    right: 10%;
    top: 400px;
  }

  #kv .kvSlogan {
    margin-bottom: 65vh;
  }
}

@media (max-width: 1024px) {
  #kv .kvSlogan {
    margin-bottom: 45vh;
  }

  #kv .prize {
    width: 150px;
  }
}

@media (max-width: 768px) {
  #kv .kvSlogan {
    margin-bottom: 300px;
  }
  #kv .prize {
    top: 350px;
    width: 100px;
  }
}

@media (max-width: 480px) {
  #kv .kvSlogan {
    margin-bottom: 250px;
  }
  #kv .prize {
    top: 300px;
    right: 10px;
  }
}

/* paper style */
#section1 .paper_style {
  position: relative;
  background-color: #fff;
  padding: 60px 20px 0;
}

#section1 .paper_style .paperBorderBottom,
#section1 .paper_style .paperBorderTop {
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
}

#section1 .paper_style .paperBorderTop {
  bottom: 100%;
}

#section1 .paper_style .paperBorderBottom {
  top: 100%;
  transform: rotate(180deg);
}

#section1 .paper_style .shadowBox {
  margin-bottom: 60px;
}

/* signup rule */

:root {
  --CardRightWidth: 60px;
  --CardTransformTop: -30px;
}

#signupRule .remark {
  font-size: 24px;
  color: #008d6b;
  text-align: center;
  margin-bottom: 50px;
}

#signupRule .cards {
  display: flex;
  flex-direction: column;
  display: none;
}

/* signupRule 的顯示控制 */

#signupRule:has(.toggle:not(.active)) > .cards.video {
  display: flex;
}

#signupRule:has(.toggle.active) > .cards.quote {
  display: flex;
}

#signupRule .card {
  display: flex;
}

#signupRule .card:nth-child(even) {
  flex-direction: row-reverse;
}

#signupRule .card_t {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 15px;
}

#signupRule .card_des {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  padding-left: 20px;
}

#signupRule .card .card_l {
  width: calc(100% - var(--CardRightWidth));
  border-radius: 30px;
  padding: 64px 50px;
  box-shadow: 0px 4px 4px 0px #00000040;
}

#signupRule .card:nth-child(odd) .card_l {
  background-color: #172a88;
}

#signupRule .card:nth-child(even) .card_l {
  background-color: #f5f9fae5;
}

#signupRule .card:nth-child(odd) .card_l .card_t,
#signupRule .card:nth-child(odd) .card_l .card_des {
  color: #fff;
}

#signupRule .card:nth-child(even) .card_l .card_t,
#signupRule .card:nth-child(even) .card_l .card_des {
  color: #172a88;
}

#signupRule .card:nth-child(2) .card_l {
  transform: translateY(var(--CardTransformTop));
}

#signupRule .card:nth-child(3) .card_l {
  transform: translateY(calc(var(--CardTransformTop) * 2));
}

#signupRule .card:nth-child(4) .card_l {
  transform: translateY(calc(var(--CardTransformTop) * 3));
}

#signupRule .card .card_l img {
  display: block;
  width: 100%;
}

#signupRule .card .card_r {
  width: var(--CardRightWidth);
}

@media (max-width: 480px) {
  :root {
    --CardRightWidth: 0px;
  }

  #signupRule .remark {
    font-size: 16px;
  }

  #signupRule .card .card_l {
    padding: 50px 30px;
  }
}

@media (max-width: 410px) {
  #signupRule .card .card_l {
    padding: 40px 15px;
  }
}

/* award */

#award {
  position: relative;
  background-color: var(--PrimaryColor);
}

#award .star1,
#award .star2,
#award .star3,
#award .star4,
#award .star5,
#award .star6 {
  position: absolute;
  display: block;
}

#award .star1 {
  width: 4%;
  left: 20%;
  top: 8%;
}

#award .star2 {
  width: 2%;
  right: 18%;
  top: 10%;
}

#award .star3 {
  width: 3%;
  left: 5%;
  top: 80%;
}

#award .star4 {
  width: 2%;
  left: 18%;
  top: 75%;
}

#award .star5 {
  width: 3%;
  right: 18%;
  top: 80%;
}

#award .star6 {
  width: 2%;
  right: 8%;
  top: 75%;
  opacity: 0.8;
}

#award .box {
  padding-bottom: 200px;
}

#award .sectionBottomBg {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  display: block;
}

#award .lists {
  display: flex;
  flex-direction: column;
  gap: 30px;
  display: none;
}

/* award 的顯示控制 */

#award:has(.toggle:not(.active)) .box > .lists.video {
  display: flex;
}

#award:has(.toggle.active) .box > .lists.quote {
  display: flex;
}

#award .list {
  display: flex;
  position: relative;
  height: 168px;
  width: 100%;
  justify-content: center;
  align-items: center;
  color: #2d4a75;
  z-index: 1;
}

#award .list .list_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}

#award .list_l {
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 40%;
  padding-left: 20px;
  align-items: center;
}

#award .list_l span {
  font-size: 16px;
  font-weight: 400;
}

#award .list_r {
  width: 60%;
  font-size: 24px;
  padding-right: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  #award .box {
    padding-bottom: 130px;
  }

  #award .list_l {
    font-size: 28px;
  }

  #award .list_r {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  #award .box {
    padding-bottom: 80px;
  }

  #award .list {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  #award .list_l {
    font-size: 24px;
    width: 100%;
    padding: unset;
  }

  #award .list_r {
    font-size: 16px;
    width: 100%;
    padding: unset;
  }
}

/* signup */

:root {
  --SignupPrimaryColor: #172a88;
}

#signup {
  background-color: #c4e0f4;
  padding: 100px 10px;
  position: relative;
}

#signup .cloud1,
#signup .cloud2,
#signup .point1,
#signup .point2,
#signup .point3,
#signup .point4,
#signup .point5,
#signup .play1,
#signup .play2,
#signup .cloud3 {
  position: absolute;
  display: block;
}

#signup .cloud1 {
  top: 10%;
  left: 0;
  width: 20%;
}

#signup .cloud2 {
  top: 20%;
  right: 0;
  width: 20%;
}

#signup .cloud3 {
  top: 80%;
  left: 0;
  width: 15%;
}

#signup .point1 {
  top: 40%;
  left: 10%;
  width: 5%;
}

#signup .point2 {
  top: 40%;
  left: 16%;
  width: 5%;
}

#signup .point3 {
  top: 60%;
  right: 2%;
  width: 5%;
}

#signup .point4 {
  top: 60%;
  right: 8%;
  width: 5%;
}

#signup .point5 {
  top: 90%;
  right: 10%;
  width: 5%;
}

#signup .play1 {
  top: 50%;
  left: 15%;
  width: 3%;
}

#signup .play2 {
  top: 85%;
  right: 10%;
  width: 3%;
}

#signup .box {
  border-radius: 32px;
  background-color: #fff;
  padding-bottom: unset;
}

#signup .remark {
  color: #625248;
  font-family: "Kosugi Maru", sans-serif;
  text-align: center;
  margin-bottom: 30px;
  padding: 0 10px;
}

#signup .lists {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding: 0 10px;
}

#signup .list {
  display: flex;
  width: 100%;
  max-width: 470px;
}

#signup .list_l {
  width: 138px;
  text-align: right;
  color: #625248;
  font-weight: 700;
  padding-top: 10px;
}

#signup .list_l span,
#signup .agree span {
  color: #ee803e;
}

#signup .list_r {
  width: calc(100% - 138px);
  padding-left: 30px;
}

#signup .list_r .list_remark {
  color: #968e89;
  font-size: 14px;
}

#signup .btns {
  display: flex;
  gap: 10px;
}

#signup .agree {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 470px;
  gap: 10px;
  align-items: center;
}

#signup .agree .des {
  font-size: 14px;
  color: #968e89;
  letter-spacing: 0;
  line-height: 1.4;
}

#form .submit {
  width: 144px;
  height: 48px;
  border-radius: 56px;
  background-color: var(--SignupPrimaryColor);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin-bottom: 50px;
}

#form .submit:active {
  background-color: #a8000e;
}

#signup .btns .btn {
  padding: 11px 16px;
  font-family: "Kosugi Maru", sans-serif;
  color: var(--SignupPrimaryColor);
  border-radius: 50px;
  border: 1px solid var(--SignupPrimaryColor);
}

#signup .btns .btn.checked {
  color: #fff;
  background-color: var(--SignupPrimaryColor);
}

@media (max-width: 480px) {
  #signup .list {
    flex-direction: column;
    gap: 10px;
  }
  #signup .list_l {
    width: 100%;
    text-align: left;
  }
  #signup .list_r {
    width: 100%;
    padding: unset;
  }
}

input[type="text"] {
  border: unset;
  background-color: var(--PrimaryColor);
  border-radius: 8px;
  padding: 15px 10px;
  width: 100%;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  border-radius: 6px;
}

input[type="file"] {
  display: none;
}

.upload-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  padding: 0 16px;
  background-color: #f0f6f7;
  /* 淡灰藍底 */
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  box-sizing: border-box;
}

/* 檔名顯示區 */
.upload-box .file-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  padding-right: 28px;
  /* 預留加號空間 */
}

/* 加號圖示 */
.upload-box::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../imgs/form_plus.png");
  background-size: contain;
  background-repeat: no-repeat;
}

input:focus {
  outline: none;
  border-color: #66afe9;
  box-shadow: 0 0 5px rgba(102, 175, 233, 0.6);
}

select {
  padding: 15px 10px;
  border: unset;
  border-radius: 8px;
  /* 圓角 */
  background-color: var(--PrimaryColor);
  width: 100%;
  appearance: none;
  /* 移除預設樣式（部分瀏覽器有效） */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../imgs/form_arrow.png");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px 12px;
}

select:focus {
  outline: none;
  border-color: #66afe9;
  box-shadow: 0 0 5px rgba(102, 175, 233, 0.6);
}

textarea {
  width: 100%;
  min-height: 260px;
  padding: 10px;
  border: unset;
  border-radius: 8px;
  background-color: var(--PrimaryColor);
  line-height: 1.5;
  /* 只能上下拖曳大小 */
  resize: vertical;
  outline: none;
}

/* notice */
#signup .notice {
  background-color: var(--SignupPrimaryColor);
  padding: 35px;
  padding-bottom: 60px;
  border-radius: 0 0 32px 32px;
}

#signup .notice .title {
  color: #fff;
}

#signup .notice ol {
  padding-left: 20px;
  width: 100%;
  max-width: 600px;
}

#signup .notice li {
  font-size: 14px;
  color: #fff;
  font-family: "Kosugi Maru", sans-serif;
}

/* 單選選項群組：排列與間距 */
#signup .options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* 單一選項：用 label 包 radio 與文字 */
#signup .opt {
  display: inline-flex;
  align-items: center;
  position: relative;
}

/* 隱藏原生 radio，但保留可聚焦性（用 + .btn 當外觀） */
#signup .opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* 膠囊外觀：沿用你原本 .btn 的樣式 */
#signup .opt .btn {
  padding: 11px 16px;
  font-family: "Kosugi Maru", sans-serif;
  color: var(--SignupPrimaryColor);
  border-radius: 50px;
  border: 1px solid var(--SignupPrimaryColor);
  cursor: pointer;
  user-select: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* 已選中的外觀（等同 .btn.checked） */
#signup .opt input[type="radio"]:checked + .btn {
  color: #fff;
  background-color: var(--SignupPrimaryColor);
}

/* 鍵盤可及性：聚焦時給明顯外框 */
#signup .opt input[type="radio"]:focus-visible + .btn {
  outline: 2px solid #66afe9;
  outline-offset: 2px;
}

/* footer */
#footer {
  background-color: #fff;
  position: relative;
}

#footer .private {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #968e89;
  text-decoration: none;
  position: absolute;
  right: 15px;
  bottom: 10px;
  z-index: 1;
  cursor: pointer;
}
#footer .private span {
  margin-left: 5px;
  border: 1px solid #968e89;
  padding: 0 4px;
  user-select: none;
}

#footer .box {
  max-width: 1400px;
  padding: 39px 0 55px;
}

#footer .items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 32px;
}

#footer .item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

#footer .item_t {
  font-weight: 500;
  color: #625248;
  font-size: 14px;
  line-height: 1.5;
}

#footer .logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

#footer .logo {
  height: 40px;
  display: block;
}

#footer .logo.h35 {
  height: 35px;
}

#footer .logo.h30 {
  height: 30px;
}

#footer .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}

#footer .remark {
  padding-top: 32px;
  border-top: 0.5px solid #968e89;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  width: 100%;
  line-height: 23px;
  text-align: center;
  color: #968e89;
}
