@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

/* 隱藏原生 li 的所有清單樣式 */
ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  list-style-position: inside;
}

/* 內部的 span 偽裝成 list-item */
ul li span[style*=font-size] {
  display: list-item; /* 變成清單項目 */
  list-style-type: disc; /* 長出圓點 */
  list-style-position: inside; /* 讓圓點出現在 span 內部 */
  margin-left: 0;
}

/* 沒有 span 的一般 li（維持原樣） */
ul li:not(:has(span)) {
  list-style-type: disc;
  list-style-position: inside;
  font-size: 1rem;
}

/* 內部的 span 偽裝成 list-item */
ul[style*="list-style-type: circle"] li span[style*=font-size] {
  display: list-item; /* 變成清單項目 */
  list-style-type: circle; /* 長出空心圓點 */
  list-style-position: inside; /* 讓空心圓點出現在 span 內部 */
  margin-left: 0;
}

/* 沒有 span 的一般 li（維持原樣） */
ul[style*="list-style-type: circle"] li:not(:has(span)) {
  list-style-type: circle;
  list-style-position: inside;
  font-size: 1rem;
}

/* 內部的 span 偽裝成 list-item */
ul[style*="list-style-type: square"] li span[style*=font-size] {
  display: list-item; /* 變成清單項目 */
  list-style-type: square; /* 長出空心圓點 */
  list-style-position: inside; /* 讓空心圓點出現在 span 內部 */
  margin-left: 0;
}

/* 沒有 span 的一般 li（維持原樣） */
ul[style*="list-style-type: square"] li:not(:has(span)) {
  list-style-type: square;
  list-style-position: inside;
  font-size: 1rem;
}

ol li {
  list-style: none;
  padding: 0;
  margin: 0;
  list-style-position: inside;
}

/* 內部的 span 偽裝成 list-item */
ol li span[style*=font-size] {
  display: list-item; /* 變成清單項目 */
  list-style-type: decimal; /* 長出num */
  list-style-position: inside; /* 讓num出現在 span 內部 */
  margin-left: 0;
}

/* 沒有 span 的一般 li（維持原樣） */
ol li:not(:has(span)) {
  list-style-type: decimal;
  list-style-position: inside;
  font-size: 1rem;
}

ol li:has(span[style*=font-size]) {
  counter-increment: list-item 0;
}

ol[style*="list-style-type: lower-alpha"] li {
  list-style: none;
  padding: 0;
  margin: 0;
  list-style-position: inside;
}

/* 內部的 span 偽裝成 list-item */
ol[style*="list-style-type: lower-alpha"] li span[style*=font-size] {
  display: list-item; /* 變成清單項目 */
  list-style-type: lower-alpha; /* 長出num */
  list-style-position: inside; /* 讓num出現在 span 內部 */
  margin-left: 0;
}

/* 沒有 span 的一般 li（維持原樣） */
ol[style*="list-style-type: lower-alpha"] li:not(:has(span)) {
  list-style-type: lower-alpha;
  list-style-position: inside;
  font-size: 1rem;
}

ol[style*="list-style-type: lower-alpha"] li:has(span[style*=font-size]) {
  counter-increment: list-item 0;
}

ol[style*="list-style-type: lower-greek"] li {
  list-style: none;
  padding: 0;
  margin: 0;
  list-style-position: inside;
}

/* 內部的 span 偽裝成 list-item */
ol[style*="list-style-type: lower-greek"] li span[style*=font-size] {
  display: list-item; /* 變成清單項目 */
  list-style-type: lower-greek; /* 長出num */
  list-style-position: inside; /* 讓num出現在 span 內部 */
  margin-left: 0;
}

/* 沒有 span 的一般 li（維持原樣） */
ol[style*="list-style-type: lower-greek"] li:not(:has(span)) {
  list-style-type: lower-greek;
  list-style-position: inside;
  font-size: 1rem;
}

ol[style*="list-style-type: lower-greek"] li:has(span[style*=font-size]) {
  counter-increment: list-item 0;
}

ol[style*="list-style-type: lower-roman"] li {
  list-style: none;
  padding: 0;
  margin: 0;
  list-style-position: inside;
}

/* 內部的 span 偽裝成 list-item */
ol[style*="list-style-type: lower-roman"] li span[style*=font-size] {
  display: list-item; /* 變成清單項目 */
  list-style-type: lower-roman; /* 長出num */
  list-style-position: inside; /* 讓num出現在 span 內部 */
  margin-left: 0;
}

/* 沒有 span 的一般 li（維持原樣） */
ol[style*="list-style-type: lower-roman"] li:not(:has(span)) {
  list-style-type: lower-roman;
  list-style-position: inside;
  font-size: 1rem;
}

ol[style*="list-style-type: lower-roman"] li:has(span[style*=font-size]) {
  counter-increment: list-item 0;
}

ol[style*="list-style-type: upper-alpha"] li {
  list-style: none;
  padding: 0;
  margin: 0;
  list-style-position: inside;
}

/* 內部的 span 偽裝成 list-item */
ol[style*="list-style-type: upper-alpha"] li span[style*=font-size] {
  display: list-item; /* 變成清單項目 */
  list-style-type: upper-alpha; /* 長出num */
  list-style-position: inside; /* 讓num出現在 span 內部 */
  margin-left: 0;
}

/* 沒有 span 的一般 li（維持原樣） */
ol[style*="list-style-type: upper-alpha"] li:not(:has(span)) {
  list-style-type: upper-alpha;
  list-style-position: inside;
  font-size: 1rem;
}

ol[style*="list-style-type: upper-alpha"] li:has(span[style*=font-size]) {
  counter-increment: list-item 0;
}

ol[style*="list-style-type: upper-roman"] li {
  list-style: none;
  padding: 0;
  margin: 0;
  list-style-position: inside;
}

/* 內部的 span 偽裝成 list-item */
ol[style*="list-style-type: upper-roman"] li span[style*=font-size] {
  display: list-item; /* 變成清單項目 */
  list-style-type: upper-roman; /* 長出num */
  list-style-position: inside; /* 讓num出現在 span 內部 */
  margin-left: 0;
}

/* 沒有 span 的一般 li（維持原樣） */
ol[style*="list-style-type: upper-roman"] li:not(:has(span)) {
  list-style-type: upper-roman;
  list-style-position: inside;
  font-size: 1rem;
}

ol[style*="list-style-type: upper-roman"] li:has(span[style*=font-size]) {
  counter-increment: list-item 0;
}

.wrapper {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .wrapper {
    padding-bottom: 4.0625rem;
  }
}
@media screen and (max-width: 767px) {
  .wrapper {
    padding-bottom: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .wrapper-noPb {
    padding-bottom: 0;
  }
}

.wrapper-position {
  position: relative;
}

.frame-mid {
  max-width: 1240px;
  padding: 0 1.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .frame-mid {
    padding: 0 0.9375rem;
  }
}

.frame-l {
  max-width: 1440px;
  padding: 0 1.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .frame-l {
    padding: 0 0.9375rem;
  }
}

.frame-xl {
  max-width: 1640px;
  padding: 0 1.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .frame-xl {
    padding: 0 0.9375rem;
  }
}

.frame-other {
  padding: 0 1.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .frame-other {
    padding: 0 0.9375rem;
  }
}

.btn-group {
  display: flex;
  align-items: center;
}

button {
  background: none;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

a {
  text-decoration: none;
  cursor: pointer;
  word-wrap: break-word;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

.table-stripe-default {
  border-bottom: solid 1px #cd545e;
  line-height: 1.25rem;
  width: 100%;
  min-width: 80rem;
  text-align: center;
}
.table-stripe-default th, .table-stripe-default td {
  min-width: 5em;
  height: 50px;
  padding: 9px 8px;
  word-break: break-word;
}
.table-stripe-default thead {
  background-color: #cd545e;
}
.table-stripe-default thead th {
  color: #fff;
  border-right: solid 1px #fff;
  font-size: 1.25rem;
  line-height: 1.875rem;
  vertical-align: middle;
  font-weight: 500;
  padding: 0.875rem 1.875rem;
}
.table-stripe-default thead th:nth-last-child(1) {
  border-right: none;
}
.table-stripe-default tbody {
  background-color: #ffffff;
}
.table-stripe-default tbody tr:nth-child(odd) {
  background-color: #f8f9fb;
}
.table-stripe-default tbody th {
  text-align: left;
  background-color: #fcf6f7;
}
.table-stripe-default tbody th, .table-stripe-default tbody td {
  font-size: 1.25rem;
  line-height: 3rem;
  padding: 0.5rem 0.5rem 0.4375rem 0.5rem;
}
.table-stripe-default tbody tr td:last-of-type {
  border-right: 0;
}
.table-stripe-default tbody tr:last-of-type {
  border-bottom: 0;
}

.table-border-default {
  border: solid 1px #c8c8c8;
  border-top: solid 2px #ababab;
  width: 100%;
  min-width: 80rem;
  text-align: center;
  vertical-align: middle;
  width: 100%;
  min-width: 80rem;
}
.table-border-default thead {
  background-color: #f9f9f9;
}
.table-border-default thead th {
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: 500;
  padding: 0.875rem 1.875rem;
  vertical-align: middle;
}
.table-border-default tr {
  border-bottom: solid 1px #c8c8c8;
}
.table-border-default th, .table-border-default td {
  border: solid 1px #c8c8c8;
}
.table-border-default th {
  font-weight: 500;
  color: #141a26;
}
.table-border-default tbody {
  background-color: #ffffff;
}
.table-border-default tbody th, .table-border-default tbody td {
  font-size: 1.25rem;
  line-height: 3rem;
  padding: 0.5rem 0.5rem 0.4375rem 0.5rem;
}

.table-scroll-a {
  border-radius: 1.25rem 1.25rem 0 0;
  border-width: 2px;
  border-color: transparent;
  border-style: solid;
}

.table--style {
  overflow: hidden;
  width: 100%;
  min-width: 80rem;
}
.table--style thead {
  background-color: #555f6f;
  color: #ffffff;
}
.table--style thead th {
  font-size: 1.25rem;
  line-height: 1.875rem;
  color: #ffffff;
  font-weight: 500;
  padding: 0.875rem 1.875rem;
  vertical-align: middle;
}
.table--style thead th:last-of-type {
  border-right: 0;
}
.table--style tbody {
  background-color: #ffffff;
}
.table--style tbody tr {
  text-align: center;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #d1d1d1;
}
.table--style tbody tr:nth-child(even) {
  background-color: #f0f0f0;
}
.table--style tbody th,
.table--style tbody td {
  font-size: 1.25rem;
  line-height: 3rem;
  color: #141a26;
  font-weight: 400;
  padding: 0.5rem 0.5rem 0.4375rem 0.5rem;
}
.table--style tbody tr td:last-of-type {
  border-right-width: 0;
}

.layout-main_focus {
  width: 100%;
  position: relative;
}
.layout-main_focus:hover:after {
  content: "";
  position: absolute;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border: 5px solid #E62310;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.3);
}
.layout-main_focus:hover .focus-tool_bt {
  opacity: 1;
}
.layout-main_focus.off::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.focus-tool {
  position: relative;
  z-index: 1000;
}
.focus-tool_bt {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 0 5px;
  background-color: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  line-height: 40px;
  display: flex;
  align-items: center;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
  opacity: 0.3;
  transition: all 0.3s ease-out;
}
.focus-tool_bt a {
  display: block;
  width: 40px;
  height: 40px;
}
.focus-tool .bt_edit {
  background: url("../images/bt_edit.svg") center center no-repeat;
  background-size: 23px auto;
}
.focus-tool .bt_up {
  background: url("../images/bt_up.svg") center center no-repeat;
  background-size: 23px auto;
}
.focus-tool .bt_down {
  background: url("../images/bt_down.svg") center center no-repeat;
  background-size: 23px auto;
}
.focus-tool .bt_add {
  background: url("../images/bt_add.svg") center center no-repeat;
  background-size: 26px auto;
}
.focus-tool .bt_delete {
  background: url("../images/bt_delete.svg") center center no-repeat;
  background-size: 25px auto;
}
.focus-tool .bt_show {
  background: url("../images/bt_show.svg") center center no-repeat;
  background-size: 25px auto;
}
.focus-tool .bt_off {
  background: url("../images/bt_off.svg") center center no-repeat;
  background-size: 25px auto;
}

@media screen and (max-width: 1024px) {
  .layout-main_focus_aside {
    right: 0.9375rem !important;
    bottom: 7.5rem !important;
  }
}
.layout-main_focus_aside .focus-tool_bt {
  right: -150%;
  left: auto;
}

@media screen and (max-width: 1024px) {
  .layout-main_focus_aside_other {
    right: 0.9375rem !important;
    bottom: 7.5rem !important;
  }
}
.layout-main_focus_aside_other .focus-tool_bt {
  right: -100%;
  left: auto;
}
@media screen and (max-width: 1024px) {
  .layout-main_focus_aside_other .focus-tool_bt {
    right: -150%;
  }
}

.header-a {
  width: 100%;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 21;
  background: linear-gradient(90deg, rgb(129, 5, 5) 0%, rgb(232, 0, 0) 100%);
  background-color: transparent;
}
@media screen and (max-width: 1024px) {
  .header-a {
    display: block;
    height: 3.125rem;
  }
}
.header-a .frame-l {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header-a .frame-l {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8125rem 0 0 0;
    gap: 0.8125rem;
  }
}
.header-a .logo {
  height: 44px;
  width: auto;
}
@media screen and (max-width: 1024px) {
  .header-a .logo {
    height: 24px;
    margin-left: 0.9375rem;
  }
}
.header-a ul {
  display: flex;
  gap: 40px;
  background-color: transparent;
}
@media screen and (max-width: 1024px) {
  .header-a ul {
    width: 100dvw;
    height: calc(100dvh - 50px);
    background-color: rgba(0, 0, 0, 0.4);
    flex-direction: column;
    gap: 0;
    display: none;
  }
}
.header-a ul li {
  list-style: none !important;
}
@media screen and (max-width: 1024px) {
  .header-a ul li {
    width: 100%;
    height: 3.75rem;
    background-color: #ffffff;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #e6e6e6;
  }
}
.header-a ul .nav-link {
  font-size: 1.125rem;
  color: #ffffff;
}
@media screen and (max-width: 1024px) {
  .header-a ul .nav-link {
    width: 100%;
    height: 100%;
    color: #000000;
    padding: 0 0.9375rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
.header-a .menu-a-icon {
  display: none;
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header-a .menu-a-icon {
    display: block;
    position: absolute;
    top: 13px;
    right: 15px;
  }
}
.header-a .menu-a-icon span {
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}
.header-a .menu-a-icon span:nth-child(1) {
  left: 0;
  top: calc(50% - 8px);
}
.header-a .menu-a-icon span:nth-child(2) {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header-a .menu-a-icon span:nth-child(3) {
  left: 0;
  bottom: calc(50% - 8px);
}

.header-a.show {
  position: fixed;
  top: 0;
}

@media screen and (max-width: 1024px) {
  .header-a.show .header-a-ul {
    display: block;
    position: fixed;
    bottom: 0;
  }
}

.header-a.show .menu-a-icon span {
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}
.header-a.show .menu-a-icon span:nth-child(1) {
  transform: rotate(-45deg);
  top: 10px;
}
.header-a.show .menu-a-icon span:nth-child(2) {
  opacity: 0;
}
.header-a.show .menu-a-icon span:nth-child(3) {
  transform: rotate(45deg);
  top: 10px;
}

.section-a-1 {
  background-color: transparent;
  background-image: none;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background: linear-gradient(90deg, rgb(129, 5, 5) 0%, rgb(232, 0, 0) 100%);
}
.section-a-1 .frame-l {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 3.25rem;
}
@media screen and (max-width: 1365px) {
  .section-a-1 .frame-l {
    flex-direction: column-reverse;
    padding: 3.25rem 0.5rem;
  }
}
.section-a-1 .info-box {
  display: inline-block;
  vertical-align: top;
  max-width: 29rem;
  padding-bottom: 3.25rem;
}
@media screen and (max-width: 1365px) {
  .section-a-1 .info-box {
    max-width: none;
    width: 100%;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .section-a-1 .info-box {
    padding-bottom: 0;
  }
}
.section-a-1 .info-box .info-h2 {
  font-size: 3.5rem;
  line-height: 1.27;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.375rem;
}
@media screen and (max-width: 1365px) {
  .section-a-1 .info-box .info-h2 {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .section-a-1 .info-box .info-h2 {
    font-size: 2.75rem;
    line-height: 1.27;
  }
}
.section-a-1 .info-box .info-h3 {
  font-size: 2.5rem;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 1.25rem;
  position: relative;
}
@media screen and (max-width: 1365px) {
  .section-a-1 .info-box .info-h3 {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .section-a-1 .info-box .info-h3 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
  }
}
.section-a-1 .info-box .line {
  width: 60rem;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  right: 0;
  bottom: -10px;
}
@media screen and (max-width: 1365px) {
  .section-a-1 .info-box .line {
    width: 15rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    right: auto;
  }
}
.section-a-1 .info-box .info-para {
  font-size: 1.5rem;
  line-height: 1.66;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 2.25rem;
}
@media screen and (max-width: 1365px) {
  .section-a-1 .info-box .info-para {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .section-a-1 .info-box .info-para {
    font-size: 1.125rem;
    line-height: 1.66;
    margin-bottom: 1.25rem;
  }
}
.section-a-1 .info-box .btn-group {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 1365px) {
  .section-a-1 .info-box .btn-group {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.section-a-1 .info-box .btn-group button {
  min-width: 12.5rem;
  padding: 0.875rem 1.375rem;
}
@media screen and (max-width: 767px) {
  .section-a-1 .info-box .btn-group button {
    min-width: 8.75rem;
  }
}
.section-a-1 .info-box .btn-group button:nth-child(1) {
  font-size: 1.125rem;
  line-height: 1;
  border-radius: 24px;
  color: #141a26;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0);
  background-color: rgb(255, 255, 255);
}
@media screen and (max-width: 767px) {
  .section-a-1 .info-box .btn-group button:nth-child(1) {
    font-size: 1.125rem;
    padding-left: 2.125rem;
    padding-right: 2.125rem;
  }
}
.section-a-1 .info-box .btn-group button:nth-child(2) {
  font-size: 1.125rem;
  line-height: 1;
  border-radius: 24px;
  color: #141a26;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0);
  background-color: rgb(255, 255, 255);
}
@media screen and (max-width: 767px) {
  .section-a-1 .info-box .btn-group button:nth-child(2) {
    font-size: 1.125rem;
    padding-left: 2.125rem;
    padding-right: 2.125rem;
  }
}
.section-a-1 .img-box-position {
  width: 52.5rem;
  height: 1px;
  position: relative;
}
@media screen and (max-width: 1365px) {
  .section-a-1 .img-box-position {
    height: auto;
    margin: 0 auto;
    position: relative;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 880px) {
  .section-a-1 .img-box-position {
    width: 100%;
  }
}
.section-a-1 .img-box {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 840px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1365px) {
  .section-a-1 .img-box {
    position: static;
    width: 840px;
  }
}
@media screen and (max-width: 880px) {
  .section-a-1 .img-box {
    width: calc(100dvw - 2.25rem);
    height: calc((100dvw - 2.25rem) * 0.59523);
    margin-left: auto;
    margin-right: auto;
  }
}
.section-a-1 .img-box img {
  width: 100%;
  height: auto;
}

.section-a-2 {
  padding-top: 6.5rem;
  padding-bottom: 8.5rem;
  background-color: transparent;
  background-image: url("../images/bg-section-a-2.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .section-a-2 {
    padding-top: 3.125rem;
    padding-bottom: 14.375rem;
    background-image: url("../images/bg-section-a-2-m.jpg");
  }
}
@media screen and (max-width: 767px) {
  .section-a-2 .frame-l {
    padding: 0 0.5rem;
  }
}
.section-a-2 .info-box {
  max-width: 43.75rem;
  background-color: rgba(215, 208, 195, 0.8);
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .section-a-2 .info-box {
    padding: 0.9375rem;
  }
}
.section-a-2 .info-box .info-border {
  border-width: 1px;
  border-style: solid;
  border-color: #ffffff;
  padding: 1.625rem;
}
@media screen and (max-width: 767px) {
  .section-a-2 .info-box .info-border {
    padding: 1.5rem 1.125rem 1rem 1.125rem;
  }
}
.section-a-2 .info-box .h2 {
  font-size: 2.5rem;
  line-height: 1.5;
  color: #000000;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.section-a-2 .info-box .h3 {
  font-size: 2rem;
  line-height: 1.5;
  color: #000000;
  font-weight: 400;
  margin-bottom: 1.125rem;
}
@media screen and (max-width: 767px) {
  .section-a-2 .info-box .h3 {
    margin-bottom: 1.375rem;
  }
}
.section-a-2 .info-box .h4 {
  font-size: 24px;
  line-height: 1.5;
  color: #000000;
  font-weight: 500;
  margin-bottom: 1.25rem;
  border-left-width: 0.25rem;
  border-left-style: solid;
  border-left-color: #000000;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .section-a-2 .info-box .h4 {
    font-size: 22px;
    line-height: 2.25rem;
    margin-bottom: 1.125rem;
  }
}
.section-a-2 .info-box .para {
  font-size: 1.25rem;
  line-height: 2.25rem;
  color: #000000;
  font-weight: 500;
  text-align: justify;
}

.section-a-3 {
  padding-top: 7.5rem;
  padding-bottom: 4rem;
  background-color: transparent;
  background-image: url("../images/bg-section-a-3.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .section-a-3 {
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    background-color: transparent;
    background-image: url("../images/bg-section-a-3.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.section-a-3 .frame-xl {
  position: relative;
}
@media screen and (max-width: 1380px) {
  .section-a-3 .frame-xl {
    padding: 0;
  }
}
.section-a-3 .h2-box {
  text-align: center;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .section-a-3 .h2-box {
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.section-a-3 .h2-box .h2 {
  display: inline-block;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #000000;
  font-weight: 700;
  text-align: center;
  border-bottom-width: 2px;
  border-style: solid;
  border-color: #e80000;
  padding-bottom: 2rem;
}
.section-a-3 .h3 {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #000000;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .section-a-3 .h3 {
    max-width: 20rem;
  }
}
.section-a-3 .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-a-3 .card-gap-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.section-a-3 .card {
  width: 27.5rem;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .section-a-3 .card {
    width: 18.75rem;
  }
}
.section-a-3 img {
  width: 100%;
  height: auto;
}
.section-a-3 .info-box {
  text-align: center;
  background-color: #ffffff;
  padding: 1.625rem 2.5rem 3.25rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .section-a-3 .info-box {
    padding: 1.25rem 1.625rem 3.5rem 1.625rem;
  }
}
.section-a-3 .info-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: #242424;
  font-weight: 700;
  margin-bottom: 0.375rem;
}
.section-a-3 .info-title-style {
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: #242424;
  font-weight: 700;
  margin-bottom: 0.375rem;
}
.section-a-3 .info-sub-title {
  font-size: 1.5rem;
  line-height: 2.25rem;
  color: #810505;
  font-weight: 400;
  margin-bottom: 1.875rem;
}
.section-a-3 .info-sub-title span {
  font-weight: 700;
}
.section-a-3 .info-para {
  font-size: 1.25rem;
  line-height: 2.25rem;
  color: #242424;
  font-weight: 400;
}
.section-a-3 .frame-swiper {
  margin: 0 auto;
  padding: 0.625rem;
  max-width: 1480px;
}
@media screen and (max-width: 1366px) {
  .section-a-3 .frame-swiper {
    padding-left: 0;
    padding-right: 0;
  }
}
.section-a-3 .swiper-wrapper {
  padding-bottom: 3.125rem;
}
.section-a-3 .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  padding: 0.625rem 0;
}
@media screen and (max-width: 1380px) {
  .section-a-3 .swiper-wrapper .swiper-slide {
    width: 480px;
  }
}
@media screen and (max-width: 768px) {
  .section-a-3 .swiper-wrapper .swiper-slide {
    width: 310px;
  }
}
.section-a-3 .swiper-button-prev {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  left: 30px;
  opacity: 1;
  top: auto;
  bottom: calc((100% - 160px) / 2);
}
@media screen and (max-width: 1860px) {
  .section-a-3 .swiper-button-prev {
    left: calc(50% - 140px);
    bottom: -8px;
  }
}
@media screen and (max-width: 767px) {
  .section-a-3 .swiper-button-prev {
    width: 2.25rem;
    height: 2.25rem;
    bottom: -4px;
  }
}
.section-a-3 .swiper-button-prev::after {
  font-size: 0;
}
.section-a-3 .swiper-button-prev svg path {
  fill: #b3000e;
}
.section-a-3 .swiper-button-prev.swiper-button-disabled svg path {
  fill: #d0d0d0;
}
.section-a-3 .swiper-button-next {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  opacity: 1;
  right: 30px;
  top: auto;
  bottom: calc((100% - 160px) / 2);
}
@media screen and (max-width: 1860px) {
  .section-a-3 .swiper-button-next {
    right: calc(50% - 140px);
    bottom: -8px;
  }
}
@media screen and (max-width: 767px) {
  .section-a-3 .swiper-button-next {
    width: 2.25rem;
    height: 2.25rem;
    bottom: -4px;
  }
}
.section-a-3 .swiper-button-next::after {
  font-size: 0;
}
.section-a-3 .swiper-button-next svg path {
  fill: #b3000e;
}
.section-a-3 .swiper-button-next.swiper-button-disabled svg path {
  fill: #d0d0d0;
}
.section-a-3 .swiper-pagination {
  font-size: 0;
  bottom: 0;
}
.section-a-3 .swiper-pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #b3000e;
  opacity: 0.4;
}
.section-a-3 .swiper-pagination .swiper-pagination-bullet-active {
  width: 3.75rem;
  height: 0.5rem;
  border-radius: 4px;
  background-color: #b3000e;
  opacity: 1;
}

.section-a-3-1 .swiper-button-prev {
  display: none;
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  left: 30px;
  opacity: 1;
  top: auto;
  bottom: calc((100% - 160px) / 2);
}
@media screen and (max-width: 1860px) {
  .section-a-3-1 .swiper-button-prev {
    left: calc(50% - 140px);
    bottom: -8px;
  }
}
@media screen and (max-width: 1366px) {
  .section-a-3-1 .swiper-button-prev {
    left: calc(50% - 140px);
    bottom: -8px;
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .section-a-3-1 .swiper-button-prev {
    width: 2.25rem;
    height: 2.25rem;
    bottom: -4px;
  }
}
.section-a-3-1 .swiper-button-prev::after {
  font-size: 0;
}
.section-a-3-1 .swiper-button-prev svg path {
  fill: #b3000e;
}
.section-a-3-1 .swiper-button-prev.swiper-button-disabled svg path {
  fill: #d0d0d0;
}
.section-a-3-1 .swiper-button-next {
  display: none;
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  opacity: 1;
  right: 30px;
  top: auto;
  bottom: calc((100% - 160px) / 2);
}
@media screen and (max-width: 1366px) {
  .section-a-3-1 .swiper-button-next {
    right: calc(50% - 140px);
    bottom: -8px;
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .section-a-3-1 .swiper-button-next {
    width: 2.25rem;
    height: 2.25rem;
    bottom: -4px;
  }
}
.section-a-3-1 .swiper-button-next::after {
  font-size: 0;
}
.section-a-3-1 .swiper-button-next svg path {
  fill: #b3000e;
}
.section-a-3-1 .swiper-button-next.swiper-button-disabled svg path {
  fill: #d0d0d0;
}
.section-a-3-1 .swiper-pagination {
  font-size: 0;
  bottom: 0;
}
.section-a-3-1 .swiper-pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #b3000e;
  opacity: 0.4;
}
.section-a-3-1 .swiper-pagination .swiper-pagination-bullet-active {
  width: 3.75rem;
  height: 0.5rem;
  border-radius: 4px;
  background-color: #b3000e;
  opacity: 1;
}

.section-a-3-2 .swiper-button-prev,
.section-a-3-2 .swiper-button-next {
  display: none !important;
}
@media screen and (max-width: 1379px) {
  .section-a-3-2 .swiper-button-prev,
  .section-a-3-2 .swiper-button-next {
    display: block !important;
  }
}

.section-a-4 {
  padding-top: 3.75rem;
  padding-bottom: 7.5rem;
  background-color: #ffeeee;
  background-image: none;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .section-a-4 {
    padding-top: 2.5rem;
    padding-bottom: 5rem;
    background-color: #ffeeee;
    background-image: none;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.section-a-4 .h2-box {
  text-align: center;
  margin-bottom: 1.875rem;
}
.section-a-4 .h2-box .h2 {
  display: inline-block;
  font-size: 2.5rem;
  line-height: 1;
  color: #141a26;
  font-weight: 700;
  padding-bottom: 1.75rem;
  text-align: center;
  border-bottom-width: 2px;
  border-style: solid;
  border-color: #e80000;
}
.section-a-4 .para {
  font-size: 1.5rem;
  line-height: 2.5rem;
  color: #141a26;
  font-weight: 500;
  margin-bottom: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-a-4 .para {
    margin-bottom: 2.25rem;
  }
}
.section-a-4 .card-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 959px) {
  .section-a-4 .card-box {
    gap: 2.25rem;
  }
}
.section-a-4 .card-box .card {
  width: 100%;
  border-radius: 1.25rem;
  display: flex;
  justify-content: start;
  align-items: stretch;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .section-a-4 .card-box .card {
    flex-direction: column;
    height: auto;
  }
}
.section-a-4 .card-box .img-box {
  width: 27.5rem;
  height: 17.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 0 1.25rem 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .section-a-4 .card-box .img-box {
    width: 100%;
    height: auto;
    padding-top: 56.25%;
    position: relative;
    border-radius: 0;
  }
}
.section-a-4 .card-box img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 767px) {
  .section-a-4 .card-box img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.section-a-4 .card-box .info-box {
  flex: 1 1 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}
@media screen and (max-width: 1023px) {
  .section-a-4 .card-box .info-box {
    padding: 1.75rem;
  }
}
@media screen and (max-width: 959px) {
  .section-a-4 .card-box .info-box {
    padding: 1.5rem;
  }
}
.section-a-4 .card-box .info-box .info-h3 {
  font-size: 2rem;
  line-height: 1;
  color: #000;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 959px) {
  .section-a-4 .card-box .info-box .info-h3 {
    font-size: 1.75rem;
    line-height: 3rem;
    margin-bottom: 0.25rem;
  }
}
@media screen and (max-width: 767px) {
  .section-a-4 .card-box .info-box .info-h3 {
    text-align: center;
  }
}
.section-a-4 .card-box .info-box .info-para {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #000;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .section-a-4 .card-box .info-box .info-para {
    text-align: center;
  }
}
.section-a-4 .card-box .info-box button {
  font-size: 1rem;
  line-height: 1.125rem;
  color: #b3000e;
  font-weight: 400;
  min-width: 7.5rem;
  padding: 0.625rem 1.25rem;
  border-width: 1px;
  border-style: solid;
  border-color: #b3000e;
  border-radius: 20px;
  background-color: #ffffff;
  margin-left: auto;
  margin-top: auto;
}
@media screen and (max-width: 959px) {
  .section-a-4 .card-box .info-box button {
    font-size: 1.125rem;
    padding: 0.625rem 1.4375rem;
  }
}
@media screen and (max-width: 767px) {
  .section-a-4 .card-box .info-box button {
    text-align: center;
    display: block;
    margin: 0 auto;
    margin-top: 2.5rem;
  }
}
.section-a-4 .btn-outside-group {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .section-a-4 .btn-outside-group {
    flex-direction: column;
  }
}
.section-a-4 .btn-outside-group button {
  min-width: 12.5rem;
  padding: 0.9375rem 1.25rem;
  border-radius: 3rem;
}
.section-a-4 .btn-outside-group button:nth-child(1) {
  font-size: 1.125rem;
  line-height: 1.125rem;
  color: #ffffff;
  border-width: 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0);
  background-color: #b3000e;
}
.section-a-4 .btn-outside-group button:nth-child(2) {
  font-size: 1.125rem;
  line-height: 1.125rem;
  color: #ffffff;
  border-width: 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0);
  background-color: #b3000e;
}

.section-a-5 {
  background-color: transparent;
  background-image: url("../images/bg-section-a-5.jpg");
  background-position: 0 0;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 7.5rem;
  padding-bottom: 2.25rem;
}
@media screen and (max-width: 767px) {
  .section-a-5 {
    padding-top: 3.75rem;
    background-color: transparent;
    background-image: url("../images/bg-section-a-5.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 1680px) {
  .section-a-5 .frame-l {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .section-a-5 .frame-l {
    padding-left: 0;
    padding-right: 0;
  }
}
.section-a-5 .h2-box {
  text-align: center;
  margin-bottom: 2.25rem;
}
.section-a-5 .h2-box .h2 {
  display: inline-block;
  font-size: 2.5rem;
  line-height: 1;
  color: #ffffff;
  font-weight: 700;
  padding-bottom: 2rem;
  text-align: center;
  border-bottom-width: 2px;
  border-style: solid;
  border-color: #e80000;
}
.section-a-5 .info-box .info {
  max-width: 29.125rem;
}
.section-a-5 .info-box .info .info-h3 {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 1.75rem;
  text-align: center;
}
.section-a-5 .info-box .info .img-box {
  width: 17.5rem;
  height: 17.5rem;
  padding: 2.125rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  border-radius: 1.25rem;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.section-a-5 .info-box .info .img-box img {
  width: 100%;
  height: auto;
}
.section-a-5 .info-box .info .btn-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.section-a-5 .info-box .info .btn-group button {
  min-width: 12.5rem;
  padding: 0.9375rem 1.25rem;
  border-radius: 3rem;
}
.section-a-5 .info-box .info .btn-group button:nth-child(1) {
  font-size: 1.125rem;
  line-height: 1.125rem;
  color: #ffffff;
  border-width: 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0);
  background-color: #b3000e;
}
.section-a-5 .info-box .info .btn-group button:nth-child(2) {
  font-size: 1.125rem;
  line-height: 1.125rem;
  color: #b3000e;
  border-width: 1px;
  border-style: solid;
  border-color: #b3000e;
  background-color: #ffffff;
}
.section-a-5 .frame-swiper {
  position: relative;
}
@media screen and (max-width: 960px) {
  .section-a-5 .frame-swiper {
    padding-bottom: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .section-a-5 .frame-swiper {
    padding-bottom: 3.125rem;
  }
}
.section-a-5 .swiper-wrapper {
  padding-bottom: 2.25rem;
}
.section-a-5 .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .section-a-5 .swiper-wrapper .swiper-slide {
    width: 300px !important;
  }
}
.section-a-5 .swiper-button-prev {
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  left: 30px;
  opacity: 1;
  top: auto;
  bottom: 50%;
  display: none;
}
@media screen and (max-width: 1860px) {
  .section-a-5 .swiper-button-prev {
    left: calc(50% - 140px);
    bottom: -18px;
  }
}
@media screen and (max-width: 1279px) {
  .section-a-5 .swiper-button-prev {
    display: inline-block;
  }
}
@media screen and (max-width: 960px) {
  .section-a-5 .swiper-button-prev {
    bottom: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section-a-5 .swiper-button-prev {
    width: 2.25rem;
    height: 2.25rem;
    bottom: 2.25rem;
  }
}
.section-a-5 .swiper-button-prev::after {
  font-size: 0;
}
.section-a-5 .swiper-button-prev svg path {
  fill: #b3000e;
}
.section-a-5 .swiper-button-prev.swiper-button-disabled svg path {
  fill: #d0d0d0;
}
.section-a-5 .swiper-button-next {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  opacity: 1;
  right: 30px;
  top: auto;
  bottom: 50%;
  display: none;
}
@media screen and (max-width: 1860px) {
  .section-a-5 .swiper-button-next {
    right: calc(50% - 140px);
    bottom: -18px;
  }
}
@media screen and (max-width: 1279px) {
  .section-a-5 .swiper-button-next {
    display: inline-block;
  }
}
@media screen and (max-width: 960px) {
  .section-a-5 .swiper-button-next {
    bottom: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section-a-5 .swiper-button-next {
    width: 2.25rem;
    height: 2.25rem;
    bottom: 2.25rem;
  }
}
.section-a-5 .swiper-button-next::after {
  font-size: 0;
}
.section-a-5 .swiper-button-next svg path {
  fill: #b3000e;
}
.section-a-5 .swiper-button-next.swiper-button-disabled svg path {
  fill: #d0d0d0;
}
.section-a-5 .swiper-pagination {
  font-size: 0;
  bottom: 0;
}
.section-a-5 .swiper-pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #b3000e;
  opacity: 0.4;
}
.section-a-5 .swiper-pagination .swiper-pagination-bullet-active {
  width: 3.75rem;
  height: 0.5rem;
  border-radius: 4px;
  background-color: #b3000e;
  opacity: 1;
}

.section-a-5-1 .swiper-a-5-1-button-prev,
.section-a-5-1 .swiper-a-5-1-button-next {
  display: none;
}
@media screen and (max-width: 767px) {
  .section-a-5-1 .swiper-a-5-1-button-prev,
  .section-a-5-1 .swiper-a-5-1-button-next {
    display: inline-block;
  }
}

.section-a-5-2 .h2-box {
  text-align: center;
  margin-bottom: 2.25rem;
}
.section-a-5-2 .h2-box .h2 {
  display: inline-block;
  font-size: 2.5rem;
  line-height: 1;
  color: #ffffff;
  font-weight: 700;
  padding-bottom: 2rem;
  text-align: center;
  border-bottom-width: 2px;
  border-style: solid;
  border-color: #e80000;
}
.section-a-5-2 .info-box .info {
  max-width: 29.125rem;
}
.section-a-5-2 .info-box .info .info-h3 {
  font-size: 1.5rem;
  line-height: 2.25rem;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 1.75rem;
  text-align: center;
}
.section-a-5-2 .info-box .info .img-box {
  width: 17.5rem;
  height: 17.5rem;
  padding: 2.125rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  border-radius: 1.25rem;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.section-a-5-2 .info-box .info .img-box img {
  width: 100%;
  height: auto;
}
.section-a-5-2 .info-box .info .btn-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.section-a-5-2 .info-box .info .btn-group button {
  min-width: 12.5rem;
  padding: 0.9375rem 1.25rem;
  border-radius: 3rem;
}
.section-a-5-2 .info-box .info .btn-group button:nth-child(1) {
  font-size: 1.125rem;
  line-height: 1.125rem;
  color: #ffffff;
  border-width: 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0);
  background-color: #b3000e;
}
.section-a-5-2 .info-box .info .btn-group button:nth-child(2) {
  font-size: 1.125rem;
  line-height: 1.125rem;
  color: #b3000e;
  border-width: 1px;
  border-style: solid;
  border-color: #b3000e;
  background-color: #ffffff;
}
.section-a-5-2 .info-flex-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-a-6 {
  padding-top: 3.75rem;
  padding-bottom: 7.5rem;
  word-wrap: break-word;
}
@media screen and (max-width: 767px) {
  .section-a-6 {
    padding-top: 2.5rem;
    padding-bottom: 3.125rem;
  }
}
.section-a-6 .h2-box {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}
.section-a-6 .h2-and-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.875rem;
  padding: 0 2.5rem;
}
.section-a-6 .h2-and-btn .h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #141a26;
  font-weight: 700;
  font-family: "ROBOTO";
  max-width: 30rem;
}
.section-a-6 .h2-and-btn button {
  width: 2.75rem;
  height: 2.75rem;
  background-image: url("../images/btn-collpase.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.15s;
  flex: 0 0 auto;
}
.section-a-6 .info {
  padding: 0.75rem 0;
  border-bottom: 1px dashed #848484;
}
.section-a-6 .info:last-of-type {
  border: 0;
  padding-bottom: 0;
}
.section-a-6 .info .quest {
  font-size: 1.5rem;
  line-height: 2.5rem;
  font-weight: 700;
  color: #000000;
}
.section-a-6 .info .quest .quest-color {
  font-family: "ROBOTO";
  color: #b3000e;
}
.section-a-6 .info .answer {
  font-size: 1.5rem;
  line-height: 2.5rem;
  font-weight: 500;
  color: #000000;
}
.section-a-6 .info .answer .answer-color {
  font-family: "ROBOTO";
  color: #848484;
}
.section-a-6 .info ul {
  margin-left: 40px;
  list-style: decimal;
  padding-left: 1.5rem;
}
.section-a-6 .info ol {
  margin-left: 40px;
  padding-left: 1.5rem;
}
.section-a-6 .info-box {
  border-width: 1px;
  border-style: solid;
  border-color: #810505;
  border-radius: 1.25rem;
  padding: 2.5rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .section-a-6 .info-box {
    padding: 1rem;
  }
}
.section-a-6 .info-h2-box button {
  transform: rotate(180deg);
  transition: all 0.15s;
}
.section-a-6 .info-h2-box .h2-box {
  margin-bottom: 0;
}
.section-a-6 .info-h2-box .info-display {
  display: none;
}

.section-a-7 {
  background-color: #eeeeee;
  padding-top: 7.5rem;
  padding-bottom: 4rem;
  word-wrap: break-word;
}
@media screen and (max-width: 767px) {
  .section-a-7 {
    padding-top: 5rem;
    padding-bottom: 4.75rem;
  }
}
.section-a-7 .h2-box {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .section-a-7 .h2-box {
    padding-bottom: 2rem;
  }
}
.section-a-7 .h2-and-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.875rem;
  padding: 0 2.5rem;
}
.section-a-7 .h2-and-btn .h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #141a26;
  font-weight: 700;
  max-width: 30rem;
}
.section-a-7 .h2-and-btn button {
  width: 2.75rem;
  height: 2.75rem;
  background-image: url("../images/btn-collpase.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.15s;
  flex: 0 0 auto;
}
.section-a-7 .info-box ol {
  list-style: decimal;
  padding-left: 1.5rem;
}
.section-a-7 .info-box ol li {
  font-size: 1rem;
  line-height: 2rem;
  color: #141a26;
  list-style-position: outside;
}
.section-a-7 .info-box ol li::marker {
  width: 1.5rem;
}
.section-a-7 .info-box ol a {
  color: #b3000e;
  text-decoration: underline;
}
.section-a-7 .info-box .ol-sub {
  margin-left: -0.5rem;
  padding-left: 0;
  list-style: none;
}
.section-a-7 .info-box .ol-sub li {
  list-style: none;
}
.section-a-7 .info-h2-box button {
  transform: rotate(180deg);
  transition: all 0.15s;
}
.section-a-7 .info-h2-box .info-display {
  display: none;
}

.footer-a {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  word-wrap: break-word;
}
.footer-a .footer-a-top {
  background-color: #2a303a;
  background-image: none;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.footer-a .footer-a-bottom {
  background-color: #2a303a;
  background-image: none;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.footer-a .para {
  color: #ffffff;
  text-align: center;
}
.footer-a .info-box {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 56px;
}
@media screen and (max-width: 1023px) {
  .footer-a .info-box {
    flex-direction: column;
    gap: 24px;
  }
}
.footer-a .info-left {
  flex: 0 0 auto;
  position: relative;
  font-size: 1.125rem;
  line-height: 1.77;
  color: #ffffff;
}
.footer-a .line {
  width: 1px;
  background-color: #555f6f;
  flex: 0 0 auto;
}
@media screen and (max-width: 1023px) {
  .footer-a .line {
    width: 100%;
    height: 1px;
  }
}
.footer-a .info-right {
  font-size: 1rem;
  line-height: 2rem;
  color: #ffffff;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .footer-a .info-right {
    line-height: 1.5rem;
  }
  .footer-a .info-right br {
    display: none;
  }
}
.footer-a .info-right a {
  color: #ffffff;
}
.footer-a ol {
  position: relative;
  list-style: decimal;
  color: #ffffff;
  padding-left: 24px;
}
.footer-a ol li {
  font-size: 1rem;
  line-height: 1.5;
}
.footer-a ul {
  list-style: none;
}
.footer-a ul li {
  font-weight: 400;
  position: relative;
  color: #ffffff;
}
.footer-a ul:not([style]) li {
  list-style-type: disc;
  text-align: left;
  list-style-position: outside;
}
.footer-a ul .li-style {
  list-style-type: none !important;
  text-indent: -14px;
  padding-left: 23px;
}
.footer-a ul .li-style:before {
  content: "· ";
  display: inline-block;
  color: #555f6f;
  margin-right: 12px;
}

.header-b {
  width: 100%;
  height: 100px;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  z-index: 21;
  background-color: transparent;
}
@media screen and (max-width: 1024px) {
  .header-b {
    display: block;
    height: 3.125rem;
    background-color: transparent;
  }
}
.header-b .frame-l {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header-b .frame-l {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8125rem 0 0 0;
    gap: 0.8125rem;
  }
}
.header-b .logo {
  height: 44px;
  width: auto;
}
@media screen and (max-width: 1024px) {
  .header-b .logo {
    height: 24px;
    margin-left: 0.9375rem;
  }
}
.header-b ul {
  display: flex;
  gap: 40px;
  background-color: transparent;
}
@media screen and (max-width: 1024px) {
  .header-b ul {
    width: 100dvw;
    height: calc(100dvh - 50px);
    background-color: rgba(0, 0, 0, 0.4);
    flex-direction: column;
    gap: 0;
    display: none;
  }
}
.header-b ul li {
  list-style: none !important;
}
@media screen and (max-width: 1024px) {
  .header-b ul li {
    width: 100%;
    height: 3.75rem;
    background-color: #ffffff;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #e6e6e6;
  }
}
.header-b ul .nav-link {
  font-size: 1.125rem;
  color: #ffffff;
}
@media screen and (max-width: 1024px) {
  .header-b ul .nav-link {
    width: 100%;
    height: 100%;
    color: #000000;
    padding: 0 0.9375rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
.header-b .menu-b-icon {
  display: none;
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header-b .menu-b-icon {
    display: block;
    position: absolute;
    top: 13px;
    right: 15px;
  }
}
.header-b .menu-b-icon span {
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}
.header-b .menu-b-icon span:nth-child(1) {
  left: 0;
  top: calc(50% - 8px);
}
.header-b .menu-b-icon span:nth-child(2) {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header-b .menu-b-icon span:nth-child(3) {
  left: 0;
  bottom: calc(50% - 8px);
}

.header-b.show {
  position: fixed;
  top: 0;
}

@media screen and (max-width: 1024px) {
  .header-b.show ul {
    display: block;
  }
}

.header-b.show .menu-b-icon span {
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}
.header-b.show .menu-b-icon span:nth-child(1) {
  transform: rotate(-45deg);
  top: 10px;
}
.header-b.show .menu-b-icon span:nth-child(2) {
  opacity: 0;
}
.header-b.show .menu-b-icon span:nth-child(3) {
  transform: rotate(45deg);
  top: 10px;
}

.section-b-1 {
  font-size: 0;
}
.section-b-1 img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .section-b-1 .for-web {
    display: none;
  }
}
.section-b-1 .for-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .section-b-1 .for-mobile {
    display: block;
  }
}
.section-b-1 .swiper-pagination {
  font-size: 0;
  bottom: 3.25rem;
}
@media screen {
  .section-b-1 .swiper-pagination {
    bottom: 1.5rem;
  }
}
.section-b-1 .swiper-pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #b3000e;
  opacity: 0.4;
}
.section-b-1 .swiper-pagination .swiper-pagination-bullet-active {
  width: 3.75rem;
  height: 0.5rem;
  border-radius: 4px;
  background-color: #b3000e;
  opacity: 1;
}

.section-b-2 {
  position: relative;
}
.section-b-2 .info-and-img-box .frame-l {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 1365px) {
  .section-b-2 .info-and-img-box .frame-l {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.section-b-2 .img-and-info-box .frame-l {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 1365px) {
  .section-b-2 .img-and-info-box .frame-l {
    flex-direction: column;
    align-items: center;
  }
}
.section-b-2 .info-and-img-box {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../images/bg-section-b-2-info-and-img.jpg");
  background-position: 50% 0;
  background-size: 1920px auto;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1365px) {
  .section-b-2 .info-and-img-box {
    background-image: url("../images/bg-section-b-2-info-and-img-m.jpg");
    background-position: 50% 0;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 767px) {
  .section-b-2 .info-and-img-box {
    padding-top: 1.25rem;
    padding-bottom: 3.75rem;
    background-image: url("../images/bg-section-b-2-info-and-img-mo.jpg");
    background-position: 50% 0;
    background-size: 767px auto;
    background-repeat: no-repeat;
  }
}
.section-b-2 .info-and-img-box .frame-l {
  gap: 5rem;
}
@media screen and (max-width: 1365px) {
  .section-b-2 .info-and-img-box .frame-l {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section-b-2 .info-and-img-box .frame-l {
    gap: 1.25rem;
  }
}
.section-b-2 .info-and-img-box .info-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 1365px) {
  .section-b-2 .info-and-img-box .info-box {
    align-items: center;
  }
}
.section-b-2 .info-and-img-box .info-box .h2-edit {
  font-size: 48px;
  line-height: 2;
  color: #141a26;
  font-weight: 400;
}
@media screen and (max-width: 1365px) {
  .section-b-2 .info-and-img-box .info-box .h2-edit {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .section-b-2 .info-and-img-box .info-box .h2-edit {
    font-size: 30px;
    line-height: 1.66;
    max-width: 47.5rem;
  }
}
.section-b-2 .info-and-img-box .info-box .h3-edit {
  font-size: 64px;
  line-height: 1.5;
  color: #141a26;
  font-weight: 400;
  margin-bottom: 1.125rem;
}
@media screen and (max-width: 1365px) {
  .section-b-2 .info-and-img-box .info-box .h3-edit {
    text-align: center;
    max-width: 47.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section-b-2 .info-and-img-box .info-box .h3-edit {
    font-size: 40px;
    margin-bottom: 0.625rem;
  }
}
.section-b-2 .info-and-img-box .info-box .para {
  max-width: 35rem;
  font-size: 30px;
  line-height: 1.6;
  color: #141a26;
  font-weight: 400;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 1365px) {
  .section-b-2 .info-and-img-box .info-box .para {
    text-align: center;
    max-width: 47.5rem;
  }
}
@media screen and (max-width: 676px) {
  .section-b-2 .info-and-img-box .info-box .para {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 0.625rem;
  }
}
.section-b-2 .info-and-img-box .info-box button {
  min-width: 12.5rem;
  padding: 0.875rem 1.375rem;
  font-size: 1.125rem;
  line-height: 1;
  border-radius: 24px;
  color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #b3000e;
  background-color: #b3000e;
  margin-top: auto;
}
@media screen and (max-width: 1365px) {
  .section-b-2 .info-and-img-box .info-box button {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.section-b-2 .info-and-img-box .img-box {
  width: 47.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .section-b-2 .info-and-img-box .img-box {
    width: 100%;
  }
}
.section-b-2 .info-and-img-box .img-box img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .section-b-2 .info-and-img-box .img-box img {
    width: 100%;
    height: auto;
  }
}
.section-b-2 .info-and-img-box ul {
  margin-left: 1.25rem;
  margin-bottom: 1.25rem;
}
.section-b-2 .info-and-img-box ol {
  margin-left: 1.25rem;
  margin-bottom: 1.25rem;
}
.section-b-2 .img-and-info-box {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: transparent;
  background-image: url("../images/bg-section-b-2-img-and-info.jpg");
  background-position: 50% 0;
  background-size: 1920px auto;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1365px) {
  .section-b-2 .img-and-info-box {
    background-image: url("../images/bg-section-b-2-info-and-img-m.jpg");
    background-position: 50% 0;
    background-size: 1366px auto;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 767px) {
  .section-b-2 .img-and-info-box {
    padding-top: 2.5rem;
    padding-bottom: 3.125rem;
    background-image: url("../images/bg-section-b-2-info-and-img-mo.jpg");
    background-position: 50% 0;
    background-size: 767px auto;
    background-repeat: no-repeat;
  }
}
.section-b-2 .img-and-info-box .frame-l {
  gap: 5rem;
}
@media screen and (max-width: 1365px) {
  .section-b-2 .img-and-info-box .frame-l {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section-b-2 .img-and-info-box .frame-l {
    gap: 1.25rem;
  }
}
.section-b-2 .img-and-info-box .img-box {
  width: 47.5rem;
  height: 26.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .section-b-2 .img-and-info-box .img-box {
    width: 100%;
    height: 55.263%;
  }
}
.section-b-2 .img-and-info-box .img-box img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .section-b-2 .img-and-info-box .img-box img {
    width: 100%;
    height: auto;
  }
}
.section-b-2 .img-and-info-box .info-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1 1 auto;
}
@media screen and (max-width: 1365px) {
  .section-b-2 .img-and-info-box .info-box {
    align-items: center;
  }
}
.section-b-2 .img-and-info-box .info-box .h2-edit {
  font-size: 48px;
  line-height: 2;
  color: #141a26;
  font-weight: 400;
}
@media screen and (max-width: 1365px) {
  .section-b-2 .img-and-info-box .info-box .h2-edit {
    text-align: center;
    max-width: 47.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section-b-2 .img-and-info-box .info-box .h2-edit {
    font-size: 30px;
    line-height: 1.66;
  }
}
.section-b-2 .img-and-info-box .info-box .h3-edit {
  font-size: 64px;
  line-height: 1.5;
  color: #141a26;
  font-weight: 400;
  margin-bottom: 1.125rem;
}
@media screen and (max-width: 1365px) {
  .section-b-2 .img-and-info-box .info-box .h3-edit {
    text-align: center;
    max-width: 47.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section-b-2 .img-and-info-box .info-box .h3-edit {
    font-size: 40px;
    margin-bottom: 0.625rem;
  }
}
.section-b-2 .img-and-info-box .info-box .para {
  max-width: 35rem;
  font-size: 30px;
  line-height: 1.6;
  color: #141a26;
  font-weight: 400;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 1365px) {
  .section-b-2 .img-and-info-box .info-box .para {
    text-align: center;
    max-width: 47.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section-b-2 .img-and-info-box .info-box .para {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 0.625rem;
  }
}
.section-b-2 .img-and-info-box .info-box button {
  min-width: 12.5rem;
  padding: 0.875rem 1.375rem;
  font-size: 1.125rem;
  line-height: 1;
  border-radius: 24px;
  color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #b3000e;
  background-color: #b3000e;
  margin-top: auto;
}
@media screen and (max-width: 1365px) {
  .section-b-2 .img-and-info-box .info-box button {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.section-b-2 .img-and-info-box ul {
  margin-left: 1.25rem;
  margin-bottom: 1.25rem;
}
.section-b-2 .img-and-info-box ol {
  margin-left: 1.25rem;
  margin-bottom: 1.25rem;
}
.section-b-2 .img-and-btn-box {
  padding-top: 10rem;
  padding-bottom: 10.625rem;
  background-color: transparent;
  background-image: url("../images/bg-section-b-2-img-and-btn.jpg");
  background-position: 50% 0;
  background-size: 1920px auto;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1365px) {
  .section-b-2 .img-and-btn-box {
    background-image: url("../images/bg-section-b-2-img-and-btn-m.jpg");
    background-position: calc(50% + 80px) 0px;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 767px) {
  .section-b-2 .img-and-btn-box {
    padding-top: 3.125rem;
    padding-bottom: 5.625rem;
    background-image: url("../images/bg-section-b-2-img-and-btn-mo.jpg");
    background-position: 50% 0px;
    background-size: 767px auto;
    background-repeat: no-repeat;
  }
}
.section-b-2 .img-and-btn-box .frame-l {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .section-b-2 .img-and-btn-box .frame-l {
    width: 100%;
    gap: 1.25rem;
  }
}
.section-b-2 .img-and-btn-box .frame-l .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .section-b-2 .img-and-btn-box .frame-l .img-box {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .section-b-2 .img-and-btn-box .frame-l .img-box img {
    max-width: 100%;
  }
}
.section-b-2 .img-and-btn-box .frame-l .img-box.for-web img {
  max-width: 100%;
}
.section-b-2 .img-and-btn-box .frame-l button {
  min-width: 12.5rem;
  padding: 0.875rem 1.375rem;
  font-size: 1.125rem;
  line-height: 1;
  border-radius: 24px;
  color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #b3000e;
  background-color: #b3000e;
}
@media screen and (max-width: 767px) {
  .section-b-2 .img-and-btn-box .frame-l button {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.section-b-2 .info-only-box {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../images/bg-section-b-2-info-only.jpg");
  background-position: 50% 0;
  background-size: 1920px auto;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1365px) {
  .section-b-2 .info-only-box {
    background-image: url("../images/bg-section-b-2-info-only-m.jpg");
    background-position: 50% 0;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 767px) {
  .section-b-2 .info-only-box {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
    background-image: url("../images/bg-section-b-2-info-only-mo.jpg");
    background-position: 50% 0;
    background-size: 767px auto;
    background-repeat: no-repeat;
  }
}
.section-b-2 .info-only-box button {
  min-width: 12.5rem;
  padding: 0.875rem 1.375rem;
  font-size: 1.125rem;
  line-height: 1;
  border-radius: 24px;
  color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #b3000e;
  background-color: #b3000e;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .section-b-2 .info-only-box button {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.section-b-2 .info-only-box .outside-box + button {
  display: none;
}
@media screen and (max-width: 767px) {
  .section-b-2 .info-only-box .outside-box + button {
    display: block;
  }
}
.section-b-2 .info-only-box .info-box {
  width: 100%;
  padding: 4rem 6.25rem;
  border-radius: 1.25rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section-b-2 .info-only-box .info-box {
    padding: 1.625rem 1.125rem 2.5rem 1.125rem;
    margin-bottom: 1.25rem;
  }
}
.section-b-2 .info-only-box .info-box .h2-edit {
  font-size: 48px;
  line-height: 1.75;
  color: #141a26;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .section-b-2 .info-only-box .info-box .h2-edit {
    font-size: 30px;
    line-height: 1.66;
    text-align: center;
  }
}
.section-b-2 .info-only-box .info-box .h3-edit {
  font-size: 64px;
  line-height: 1.5;
  color: #141a26;
  font-weight: 400;
  margin-bottom: 1.125rem;
}
@media screen and (max-width: 767px) {
  .section-b-2 .info-only-box .info-box .h3-edit {
    font-size: 40px;
    text-align: center;
    margin-bottom: 0.375rem;
  }
}
.section-b-2 .info-only-box .info-box .para {
  font-size: 30px;
  line-height: 1.6;
  color: #141a26;
  font-weight: 400;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 676px) {
  .section-b-2 .info-only-box .info-box .para {
    font-size: 20px;
    margin-bottom: 0;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .section-b-2 .info-only-box .info-box button {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .section-b-2 .frame-l .img-box.for-web {
    display: none;
  }
}
.section-b-2 .frame-l .img-box.for-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .section-b-2 .frame-l .img-box.for-mobile {
    display: flex;
  }
}

.section-b-3 {
  width: 100%;
}
.section-b-3 .for-background {
  width: 100%;
  height: 40dvw;
  background-image: url("../images/bg-section-b-3.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.section-b-3 .for-web {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .section-b-3 .for-web {
    display: none;
  }
}
.section-b-3 .for-web img {
  width: 100%;
  height: auto;
}
.section-b-3 .for-mobile {
  width: 100%;
  justify-content: center;
  align-items: center;
  display: none;
}
@media screen and (max-width: 767px) {
  .section-b-3 .for-mobile {
    display: flex;
  }
}
.section-b-3 .for-mobile img {
  width: 100%;
  height: auto;
}

.section-b-4 {
  padding: 7.5rem 0;
  background-color: transparent;
  background-image: url("../images/bg-section-b-4.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .section-b-4 {
    padding: 3.75rem 0;
  }
}
.section-b-4 .h2 {
  font-size: 2.5rem;
  line-height: 3rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-align: center;
}
.section-b-4 .h3 {
  font-size: 1.5rem;
  line-height: 2.5rem;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 2.75rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-b-4 .h3 {
    font-size: 1.25rem;
    line-height: 2.25rem;
    margin-bottom: 2.125rem;
  }
}
.section-b-4 .info-box-3x,
.section-b-4 .info-box-5x {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3.125rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 1023px) {
  .section-b-4 .info-box-3x,
  .section-b-4 .info-box-5x {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.section-b-4 .info-box-3x .info,
.section-b-4 .info-box-5x .info {
  max-width: 25rem;
  width: calc((100% - 50px - 50px) / 3);
  background-color: #ffffff;
  padding: 1.75rem 2rem 2rem 2rem;
  border-radius: 1.25rem 0 0 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  flex: 0 0 auto;
}
@media screen and (max-width: 1023px) {
  .section-b-4 .info-box-3x .info,
  .section-b-4 .info-box-5x .info {
    width: 100%;
    max-width: none;
    padding-bottom: 2.25rem;
  }
}
.section-b-4 .info-box-3x .img-box,
.section-b-4 .info-box-5x .img-box {
  width: 6rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 1023px) {
  .section-b-4 .info-box-3x .img-box,
  .section-b-4 .info-box-5x .img-box {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.25rem;
  }
}
.section-b-4 .info-box-3x .img-box img,
.section-b-4 .info-box-5x .img-box img {
  width: 100%;
  height: auto;
}
.section-b-4 .info-box-3x .h4,
.section-b-4 .info-box-5x .h4 {
  font-size: 2.25rem;
  line-height: 3rem;
  color: #810505;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-align: center;
}
.section-b-4 .info-box-3x .para,
.section-b-4 .info-box-5x .para {
  font-size: 1.5rem;
  line-height: 2.5rem;
  color: #141a26;
  font-weight: 400;
  margin-bottom: 3.25rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .section-b-4 .info-box-3x .para,
  .section-b-4 .info-box-5x .para {
    font-size: 1.25rem;
    line-height: 2.25rem;
    margin-bottom: 0;
  }
}
.section-b-4 .info-box-3x button,
.section-b-4 .info-box-5x button {
  min-width: 7.5rem;
  padding: 0.625rem 1.125rem;
  font-size: 1rem;
  line-height: 1.125rem;
  border-radius: 1.25rem;
  color: #b3000e;
  border-width: 1px;
  border-style: solid;
  border-color: #b3000e;
  background-color: #ffffff;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1023px) {
  .section-b-4 .info-box-3x button,
  .section-b-4 .info-box-5x button {
    margin-top: 1.25rem;
  }
}
.section-b-4 .info-box-2x {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3.125rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 1023px) {
  .section-b-4 .info-box-2x {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.section-b-4 .info-box-2x .info {
  max-width: 39.0625rem;
  width: calc((100% - 50px) / 2);
  background-color: #ffffff;
  padding: 1.75rem 2rem 2rem 2rem;
  border-radius: 1.25rem 0 0 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  flex: 0 0 auto;
}
@media screen and (max-width: 1023px) {
  .section-b-4 .info-box-2x .info {
    width: 100%;
    max-width: none;
    padding-bottom: 2.25rem;
  }
}
.section-b-4 .info-box-2x .img-box {
  width: 6rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 1023px) {
  .section-b-4 .info-box-2x .img-box {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.25rem;
  }
}
.section-b-4 .info-box-2x .img-box img {
  width: 100%;
  height: auto;
}
.section-b-4 .info-box-2x .h4 {
  font-size: 2.25rem;
  line-height: 3rem;
  color: #810505;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-align: center;
}
.section-b-4 .info-box-2x .para {
  font-size: 1.5rem;
  line-height: 2.5rem;
  color: #141a26;
  font-weight: 400;
  margin-bottom: 3.25rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .section-b-4 .info-box-2x .para {
    font-size: 1.25rem;
    line-height: 2.25rem;
    margin-bottom: 0;
  }
}
.section-b-4 .info-box-2x button {
  min-width: 7.5rem;
  padding: 0.625rem 1.125rem;
  font-size: 1rem;
  line-height: 1.125rem;
  border-radius: 1.25rem;
  color: #b3000e;
  border-width: 1px;
  border-style: solid;
  border-color: #b3000e;
  background-color: #ffffff;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1023px) {
  .section-b-4 .info-box-2x button {
    margin-top: 1.25rem;
  }
}

.section-b-5 {
  padding: 7.5rem 0;
  background-color: transparent;
  background-image: url("../images/bg-section-b-5.jpg");
  background-position: 50% 0;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .section-b-5 {
    padding: 6.25rem 0;
    background-color: transparent;
    background-image: url("../images/bg-section-b-5-m.jpg");
    background-position: 50% 0;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.section-b-5 .info-box {
  width: 100%;
  padding: 0 3.75rem 2.25rem 3.75rem;
  border-radius: 1.25rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  background-color: #ffffff;
  position: relative;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .section-b-5 .info-box {
    padding: 0 1rem 1.75rem 1rem;
  }
}
.section-b-5 .info-box ::-webkit-scrollbar {
  width: 8px;
}
.section-b-5 .info-box ::-webkit-scrollbar-track {
  background-color: #f3f3f3;
  border-radius: 8px;
}
.section-b-5 .info-box ::-webkit-scrollbar-thumb {
  background: #aaaaaa;
  border-radius: 8px;
}
.section-b-5 .info-box .line {
  width: 100%;
  height: 0.5rem;
  background-color: #fbcfc9;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.section-b-5 .info-box .h2 {
  font-size: 2rem;
  line-height: 1.5;
  color: #141a26;
  font-weight: 400;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
  border-radius: 0 0 1.25rem 1.25rem;
  background-color: #fbcfc9;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .section-b-5 .info-box .h2 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
.section-b-5 .info-box .h3 {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #141a26;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-align: center;
}
.section-b-5 .info-box .para {
  font-size: 1.5rem;
  line-height: 2;
  color: #919191;
  font-weight: 500;
  margin-bottom: 2.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-b-5 .info-box .para {
    line-height: 1.75rem;
  }
}
.section-b-5 .info-box .table-scroll {
  padding-bottom: 1.25rem;
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 767px) {
  .section-b-5 .info-box .table-scroll {
    padding-bottom: 1.125rem;
    margin-bottom: 1.375rem;
  }
}
.section-b-5 .info-box .table-scroll-a {
  padding-bottom: 0;
}
.section-b-5 .info-box .btn-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .section-b-5 .info-box .btn-group {
    flex-direction: column;
  }
}
.section-b-5 .info-box .btn-group button {
  min-width: 15rem;
  padding: 0.875rem 1.25rem;
  border-radius: 0.625rem;
}
.section-b-5 .info-box .btn-group button:nth-child(1) {
  font-size: 1.5rem;
  line-height: 1.875rem;
  color: #ffffff;
  font-weight: 700;
  border-width: 1px;
  border-style: solid;
  border-color: #282f3b;
  background-color: #282f3b;
}
.section-b-5 .info-box .btn-group button:nth-child(2) {
  font-size: 1.5rem;
  line-height: 1.875rem;
  color: #ffffff;
  font-weight: 700;
  border-width: 1px;
  border-style: solid;
  border-color: #b3000e;
  background-color: #b3000e;
}

.section-b-6 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background-color: #ffffff;
  background-image: url("../images/bg-section-b-6.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  word-wrap: break-word;
}
@media screen and (max-width: 767px) {
  .section-b-6 {
    background-image: url("../images/bg-section-b-6-m.jpg");
  }
}
.section-b-6 .info-and-h2-box {
  width: 100%;
  padding: 3rem;
  border-radius: 1.25rem;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .section-b-6 .info-and-h2-box {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
.section-b-6 .h2-box {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .section-b-6 .h2-box {
    padding-bottom: 2rem;
  }
}
.section-b-6 .h2-and-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.875rem;
  padding: 0 1.5rem;
}
.section-b-6 .h2-and-btn .h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #141a26;
  font-weight: 700;
  max-width: 30rem;
}
.section-b-6 .h2-and-btn button {
  width: 2.75rem;
  height: 2.75rem;
  background-image: url("../images/btn-collpase.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.15s;
  flex: 0 0 auto;
}
.section-b-6 .info-box ol {
  margin-left: 1rem;
  text-indent: -1em;
}
.section-b-6 .info-box ol li {
  font-size: 1rem;
  line-height: 2rem;
  color: #141a26;
}
.section-b-6 .info-box ol .li-sub {
  list-style-type: none;
}
.section-b-6 .info-box ol a {
  color: #b3000e;
  text-decoration: underline;
  word-wrap: break-word;
}
.section-b-6 .info-box ul {
  padding-left: 1.5rem;
}
.section-b-6 .info-box ul li {
  font-size: 1rem;
  line-height: 2rem;
  color: #141a26;
}
.section-b-6 .info-box ul li::marker {
  width: 1.5rem;
}
.section-b-6 .info-box ul a {
  color: #b3000e;
  text-decoration: underline;
  word-wrap: break-word;
}
.section-b-6 .info-box .ol-sub {
  text-indent: -2em;
  margin-left: 2rem;
  padding-left: 0;
  list-style: none;
}
.section-b-6 .info-h2-box .h2-box {
  padding-bottom: 0;
}
.section-b-6 .info-h2-box button {
  transform: rotate(180deg);
  transition: all 0.15s;
  flex: 0 0 auto;
}
.section-b-6 .info-h2-box .info-display {
  display: none;
}

.footer-b {
  word-wrap: break-word;
}
.footer-b .footer-b-top {
  padding-top: 2.25rem;
  background-color: #1b1f2a;
  background-image: none;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .footer-b .footer-b-top {
    background-color: #1b1f2a;
    background-image: none;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.footer-b .footer-b-bottom {
  background-color: #2f3846;
  background-image: none;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .footer-b .footer-b-bottom {
    background-color: #2f3846;
    background-image: none;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.footer-b .logo-and-info-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2.75rem;
  gap: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .footer-b .logo-and-info-box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.footer-b .logo-and-ol-box {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .footer-b .logo-and-ol-box {
    gap: 1.5rem;
    width: 100%;
    flex-direction: column;
  }
}
.footer-b .logo-and-ol-box .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.footer-b .logo-and-ol-box img {
  height: 2.75rem;
  width: auto;
  padding-top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .footer-b .logo-and-ol-box img {
    height: 3.125rem;
    width: auto;
  }
}
.footer-b .info-box .para {
  width: 100%;
  font-size: 1rem;
  line-height: 1.5;
  color: #b6c2d5;
  font-weight: 400;
}
.footer-b .para-scription-box {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 1.5rem;
}
.footer-b .para-scription-box .para-scription {
  margin: 0 auto;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 400;
  text-align: center;
}
.footer-b .para-scription-box .para-scription a {
  color: #ffffff;
  word-wrap: break-word;
}
.footer-b ul .li-style {
  list-style-type: none !important;
  text-indent: -14px;
  padding-left: 23px;
}
.footer-b ul .li-style:before {
  content: "· ";
  display: inline-block;
  color: #555f6f;
  margin-right: 12px;
}
.footer-b ol li, .footer-b ul li {
  font-size: 1rem;
  line-height: 1.5;
}

.header-c {
  width: 100%;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 21;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 1024px) {
  .header-c {
    display: block;
    height: 3.125rem;
  }
}
.header-c .frame-l {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header-c .frame-l {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8125rem 0 0 0;
    gap: 0.8125rem;
  }
}
.header-c .logo {
  height: 44px;
  width: auto;
}
@media screen and (max-width: 1024px) {
  .header-c .logo {
    height: 24px;
    margin-left: 0.9375rem;
  }
}
.header-c ul {
  display: flex;
  gap: 40px;
  background-color: transparent;
}
@media screen and (max-width: 1024px) {
  .header-c ul {
    width: 100dvw;
    height: calc(100dvh - 50px);
    background-color: rgba(0, 0, 0, 0.4);
    flex-direction: column;
    gap: 0;
    display: none;
  }
}
.header-c ul li {
  list-style: none !important;
}
@media screen and (max-width: 1024px) {
  .header-c ul li {
    width: 100%;
    height: 3.75rem;
    background-color: #ffffff;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #e6e6e6;
  }
}
.header-c ul .nav-link {
  font-size: 1.125rem;
  color: #141a26;
}
@media screen and (max-width: 1024px) {
  .header-c ul .nav-link {
    width: 100%;
    height: 100%;
    color: #000000;
    padding: 0 0.9375rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
.header-c .menu-c-icon {
  display: none;
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header-c .menu-c-icon {
    display: block;
    position: absolute;
    top: 13px;
    right: 15px;
  }
}
.header-c .menu-c-icon span {
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background-color: #b3000e;
  position: absolute;
}
.header-c .menu-c-icon span:nth-child(1) {
  left: 0;
  top: calc(50% - 8px);
}
.header-c .menu-c-icon span:nth-child(2) {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header-c .menu-c-icon span:nth-child(3) {
  left: 0;
  bottom: calc(50% - 8px);
}

.header-c.show {
  position: fixed;
  top: 0;
}

@media screen and (max-width: 1024px) {
  .header-c.show ul {
    display: block;
  }
}

.header-c.show .menu-c-icon span {
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background-color: #b3000e;
  position: absolute;
}
.header-c.show .menu-c-icon span:nth-child(1) {
  transform: rotate(-45deg);
  top: 10px;
}
.header-c.show .menu-c-icon span:nth-child(2) {
  opacity: 0;
}
.header-c.show .menu-c-icon span:nth-child(3) {
  transform: rotate(45deg);
  top: 10px;
}

.section-c-1 {
  font-size: 0;
}
.section-c-1 img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .section-c-1 .for-web {
    display: none;
  }
}
.section-c-1 .for-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .section-c-1 .for-mobile {
    display: block;
  }
}
.section-c-1 .swiper-pagination {
  font-size: 0;
  bottom: 2.5rem;
}
@media screen and (max-width: 1439px) {
  .section-c-1 .swiper-pagination {
    bottom: 1.25rem;
  }
}
@media screen and (max-width: 1279px) {
  .section-c-1 .swiper-pagination {
    bottom: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .section-c-1 .swiper-pagination {
    bottom: 2.5rem;
  }
}
.section-c-1 .swiper-pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #ffffff;
  opacity: 0.6;
}
.section-c-1 .swiper-pagination .swiper-pagination-bullet-active {
  width: 3.75rem;
  height: 0.5rem;
  border-radius: 4px;
  background-color: #ffffff;
  opacity: 1;
}

.section-c-2 {
  padding: 7.5rem 0;
}
@media screen and (max-width: 767px) {
  .section-c-2 {
    padding: 3.25rem 0;
  }
}
.section-c-2 .frame-other {
  max-width: 85rem;
}
.section-c-2 .h2 {
  font-size: 3rem;
  line-height: 3rem;
  color: #141a26;
  font-weight: 700;
  margin-bottom: 3.375rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-c-2 .h2 {
    font-size: 2.5rem;
    margin-bottom: 1.875rem;
  }
}
.section-c-2 .info-box .info {
  display: inline-block;
  text-align: center;
}
.section-c-2 .info-box .img-box {
  width: 8.125rem;
  height: 8.125rem;
  padding: 1.5625rem;
  background-color: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.section-c-2 .info-box .num {
  max-width: 9.375rem;
  font-size: 1.625rem;
  line-height: 1.875rem;
  color: #df7112;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
.section-c-2 .info-box .h3 {
  max-width: 9.375rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: #141a26;
  font-weight: 700;
}
.section-c-2 .frame-swiper {
  margin: 0 auto;
  max-width: 1460px;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .section-c-2 .frame-swiper {
    padding-left: 7.5rem;
    padding-right: 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section-c-2 .frame-swiper {
    padding-left: 0;
    padding-right: 0;
  }
}
.section-c-2 .swiper-c-2,
.section-c-2 .swiper-c-2-1,
.section-c-2 .swiper-c-2-2 {
  padding-bottom: 3.5rem;
}
.section-c-2 .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  padding: 0.625rem 0;
}
.section-c-2 .swiper-button-prev {
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  opacity: 1;
  top: auto;
  left: -1rem;
  bottom: calc((100% - 56px) / 2);
}
@media screen and (max-width: 1669px) {
  .section-c-2 .swiper-button-prev {
    left: calc(50% - 140px);
    bottom: -20px;
  }
}
@media screen and (max-width: 767px) {
  .section-c-2 .swiper-button-prev {
    width: 2.25rem;
    height: 2.25rem;
    bottom: -14px;
  }
}
.section-c-2 .swiper-button-prev::after {
  font-size: 0;
}
.section-c-2 .swiper-button-prev.swiper-button-disabled svg path {
  fill: #d0d0d0;
}
.section-c-2 .swiper-button-next {
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  opacity: 1;
  top: auto;
  right: -1rem;
  bottom: calc((100% - 56px) / 2);
}
@media screen and (max-width: 1669px) {
  .section-c-2 .swiper-button-next {
    right: calc(50% - 140px);
    bottom: -20px;
  }
}
@media screen and (max-width: 767px) {
  .section-c-2 .swiper-button-next {
    width: 2.25rem;
    height: 2.25rem;
    bottom: -14px;
  }
}
.section-c-2 .swiper-button-next::after {
  font-size: 0;
}
.section-c-2 .swiper-button-next svg path {
  fill: #b3000e;
}
.section-c-2 .swiper-button-next.swiper-button-disabled svg path {
  fill: #d0d0d0;
}
.section-c-2 .swiper-pagination {
  font-size: 0;
  bottom: 0;
}
.section-c-2 .swiper-pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #666666;
  opacity: 0.46;
}
.section-c-2 .swiper-pagination .swiper-pagination-bullet-active {
  width: 3.75rem;
  height: 0.5rem;
  border-radius: 4px;
  background-color: #df7112;
  opacity: 1;
}

@media screen and (min-width: 1024px) {
  .section-c-2-1 .swiper-button-prev,
  .section-c-2-1 .swiper-button-next {
    display: none;
  }
}

@media screen and (max-width: 1439px) {
  .section-c-2-2 .swiper-button-prev,
  .section-c-2-2 .swiper-button-next {
    display: block;
  }
}

.section-c-3 {
  padding-top: 7.5rem;
  background-color: #FFF7F0;
  background-image: url("../images/bg-section-c-3.jpg");
  background-position: 0 0;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .section-c-3 {
    padding-top: 3.4375rem;
    background-color: #FFF7F0;
    background-image: url("../images/bg-section-c-3-m.jpg");
    background-position: 0 -4px;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.section-c-3 .frame-other {
  position: relative;
  max-width: 1270px;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 1499px) {
  .section-c-3 .frame-other {
    padding-left: 9.375rem;
    padding-right: 9.375rem;
  }
}
@media screen and (max-width: 1200px) {
  .section-c-3 .frame-other {
    padding-left: 7.5rem;
    padding-right: 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section-c-3 .frame-other {
    padding-bottom: 13.875rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
.section-c-3 .frame-other .image {
  position: absolute;
  bottom: 0;
  left: -7.5rem;
}
@media screen and (max-width: 1510px) {
  .section-c-3 .frame-other .image {
    left: 0;
  }
}
@media screen and (max-width: 1060px) {
  .section-c-3 .frame-other .image {
    width: 12.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section-c-3 .frame-other .image {
    left: 50%;
    transform: translateX(-50%);
  }
}
.section-c-3 .frame-other-for-edit {
  padding: 0 1.25rem;
}
.section-c-3 .h2 {
  font-size: 3rem;
  line-height: 3rem;
  color: #df7112;
  font-weight: 700;
  margin-bottom: 2.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-c-3 .h2 {
    margin-bottom: 1.5rem;
  }
}
.section-c-3 .para {
  font-size: 1.5rem;
  line-height: 2.5rem;
  color: #666666;
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .section-c-3 .para {
    font-size: 1.25rem;
    line-height: 3rem;
  }
}
.section-c-3 .para .img-box:first-of-type {
  display: inline-block;
  width: 1.875rem;
  height: 1.5rem;
  position: relative;
}
.section-c-3 .para .img-box:first-of-type img {
  position: absolute;
  top: 0;
  left: 0;
}
.section-c-3 .para span {
  text-align: center;
}
.section-c-3 .para .img-box:last-of-type {
  display: inline-block;
  width: 1.875rem;
  height: 1.5rem;
  position: relative;
}
.section-c-3 .para .img-box:last-of-type img {
  position: absolute;
  bottom: -16px;
  right: 0;
}
.section-c-3 .info-box {
  padding-bottom: 3rem;
}
.section-c-3 .info-box .info-frame {
  position: relative;
  width: 100%;
  max-width: 280px;
}
.section-c-3 .info-box .info-frame .info-tag {
  width: auto;
  height: 2.5rem;
  font-size: 0;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .section-c-3 .info-box .info-frame .info-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #666666;
  }
}
.section-c-3 .info-box .info-frame .info-tag span {
  font-size: 0;
}
@media screen and (max-width: 767px) {
  .section-c-3 .info-box .info-frame .info-tag span {
    display: block;
    font-size: 1.125rem;
    line-height: 2.25rem;
    color: #ffffff;
  }
}
@media screen and (max-width: 767px) {
  .section-c-3 .info-box .info-frame .info-tag img {
    display: none;
  }
}
.section-c-3 .info-box .info {
  height: 15rem;
  background-color: #ffffff;
  padding: 1.75rem 1.125rem;
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .section-c-3 .info-box .info {
    width: 100%;
    height: auto;
    padding: 0.625rem 0.625rem 3.125rem 0.625rem;
  }
}
.section-c-3 .info-box .info .h3 {
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: #141a26;
  font-weight: 700;
  margin-bottom: 0.625rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 15rem;
}
@media screen and (max-width: 767px) {
  .section-c-3 .info-box .info .h3 {
    font-size: 1.375rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
}
.section-c-3 .info-box .info .stock-num {
  font-size: 1.5rem;
  line-height: 2.25rem;
  color: #666666;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .section-c-3 .info-box .info .stock-num {
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 8.625rem;
  }
}
.section-c-3 .info-box .info .stock-attribute {
  font-size: 1.125rem;
  line-height: 2;
  color: #666666;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .section-c-3 .info-box .info .stock-attribute {
    font-size: 1rem;
  }
}
@media screen and (max-width: 374px) {
  .section-c-3 .info-box .info .stock-attribute {
    font-size: 0.875rem;
  }
}
.section-c-3 .info-box .info .stock-attribute span {
  font-size: 1.5rem;
  line-height: 2.25rem;
  color: #df7112;
}
.section-c-3 .info-box .info .stock-attribute span.num {
  font-family: "ROBOTO";
  font-weight: 350;
}
@media screen and (max-width: 767px) {
  .section-c-3 .info-box .info .stock-attribute span.num {
    display: block;
  }
}
.section-c-3 .info-flex-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}
.section-c-3 .info-flex-box .info-frame {
  width: calc(50% - 10px);
}
.section-c-3 .under-para {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #666666;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-c-3 .under-para {
    margin-left: auto;
    margin-right: auto;
    max-width: 19.125rem;
  }
}
.section-c-3 .btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.25rem;
}
@media screen and (max-width: 767px) {
  .section-c-3 .btn-group {
    flex-direction: column;
  }
}
.section-c-3 .btn-group button {
  min-width: 15rem;
  padding: 0.875rem 1.25rem;
  border-radius: 0.625rem;
}
.section-c-3 .btn-group button:nth-child(1) {
  font-size: 1.5rem;
  line-height: 1.875rem;
  border-radius: 0.625rem;
  color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #b3000e;
  background-color: #b3000e;
}
.section-c-3 .btn-group button:nth-child(2) {
  font-size: 1.5rem;
  line-height: 1.875rem;
  border-radius: 0.625rem;
  color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #666666;
  background-color: #666666;
}
.section-c-3 .frame-swiper {
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section-c-3 .frame-swiper {
    padding-left: 0;
    padding-right: 0;
  }
}
.section-c-3 .swiper-wrapper {
  padding-bottom: 3.5rem;
}
.section-c-3 .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  padding: 0.625rem 0;
}
.section-c-3 .swiper-button-prev {
  display: block !important;
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  opacity: 1;
  top: auto;
  left: -3.875rem;
  bottom: 50%;
}
@media screen and (max-width: 1669px) {
  .section-c-3 .swiper-button-prev {
    left: calc(50% - 140px);
    bottom: -20px;
  }
}
@media screen and (max-width: 767px) {
  .section-c-3 .swiper-button-prev {
    width: 2.25rem;
    height: 2.25rem;
    bottom: -14px;
  }
}
.section-c-3 .swiper-button-prev::after {
  font-size: 0;
}
.section-c-3 .swiper-button-prev svg path {
  fill: #b3000e;
}
.section-c-3 .swiper-button-prev.swiper-button-disabled svg path {
  fill: #d0d0d0;
}
.section-c-3 .swiper-button-next {
  display: block !important;
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  opacity: 1;
  top: auto;
  right: -3.875rem;
  bottom: 50%;
}
@media screen and (max-width: 1669px) {
  .section-c-3 .swiper-button-next {
    right: calc(50% - 140px);
    bottom: -20px;
  }
}
@media screen and (max-width: 767px) {
  .section-c-3 .swiper-button-next {
    width: 2.25rem;
    height: 2.25rem;
    bottom: -14px;
  }
}
.section-c-3 .swiper-button-next::after {
  font-size: 0;
}
.section-c-3 .swiper-button-next svg path {
  fill: #b3000e;
}
.section-c-3 .swiper-button-next.swiper-button-disabled svg path {
  fill: #b3000e;
}
.section-c-3 .swiper-pagination {
  font-size: 0;
  bottom: 0;
}
.section-c-3 .swiper-pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #666666;
  opacity: 0.46;
}
.section-c-3 .swiper-pagination .swiper-pagination-bullet-active {
  width: 3.75rem;
  height: 0.5rem;
  border-radius: 4px;
  background-color: #df7112;
  opacity: 1;
}

.section-c-3-1 .swiper-button-prev,
.section-c-3-1 .swiper-button-next {
  display: none !important;
}
@media screen and (max-width: 1499px) {
  .section-c-3-1 .swiper-button-prev,
  .section-c-3-1 .swiper-button-next {
    display: block !important;
  }
}

.section-c-3-3 .swiper-button-prev,
.section-c-3-3 .swiper-button-next {
  display: none !important;
}
@media screen and (max-width: 1199px) {
  .section-c-3-3 .swiper-button-prev,
  .section-c-3-3 .swiper-button-next {
    display: block !important;
  }
}

.section-c-4 {
  padding-top: 7.5rem;
  background-color: transparent;
  background-image: url("../images/bg-section-c-4.jpg");
  background-position: 100% 0;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .section-c-4 {
    padding-top: 3.75rem;
    background-color: transparent;
    background-image: url("../images/bg-section-c-4-m.jpg");
    background-position: 100% 0;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .section-c-4 {
    padding-top: 3.75rem;
    background-color: transparent;
    background-image: url("../images/bg-section-c-4-m.jpg");
    background-position: 100% 0;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
  }
}
.section-c-4 .image:first-of-type {
  position: absolute;
  bottom: 0;
  left: 12.875rem;
}
@media screen and (max-width: 1759px) {
  .section-c-4 .image:first-of-type {
    height: 11.875rem;
  }
}
@media screen and (max-width: 767px) {
  .section-c-4 .image:first-of-type {
    left: 15px;
  }
}
.section-c-4 .image:last-of-type {
  position: absolute;
  bottom: 0;
  right: 13.875rem;
}
@media screen and (max-width: 1759px) {
  .section-c-4 .image:last-of-type {
    height: 11.875rem;
  }
}
@media screen and (max-width: 767px) {
  .section-c-4 .image:last-of-type {
    right: 15px;
  }
}
.section-c-4 .frame-mid {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 1759px) {
  .section-c-4 .frame-mid {
    padding-bottom: 13.5rem;
  }
}
.section-c-4 .h2 {
  font-size: 3rem;
  line-height: 3rem;
  color: #df7112;
  font-weight: 700;
  margin-bottom: 2.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-c-4 .h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
}
.section-c-4 .para {
  font-size: 1.5rem;
  line-height: 2.5rem;
  color: #666666;
  font-weight: 400;
  text-align: center;
  margin-bottom: 7.75rem;
}
@media screen and (max-width: 767px) {
  .section-c-4 .para {
    font-size: 1.25rem;
    line-height: 3rem;
  }
}
.section-c-4 .para .img-box:first-of-type {
  display: inline-block;
  width: 1.875rem;
  height: 1.5rem;
  position: relative;
}
.section-c-4 .para .img-box:first-of-type img {
  position: absolute;
  top: 0;
  left: 0;
}
.section-c-4 .para span {
  text-align: center;
}
.section-c-4 .para .img-box:last-of-type {
  display: inline-block;
  width: 1.875rem;
  height: 1.5rem;
  position: relative;
}
.section-c-4 .para .img-box:last-of-type img {
  position: absolute;
  bottom: -16px;
  right: 0;
}
.section-c-4 .info-box {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 7.5rem 3.75rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .section-c-4 .info-box {
    flex-direction: column;
    gap: 6.25rem;
  }
}
.section-c-4 .info-box .info {
  width: 22.5rem;
  background-color: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding-top: 5rem;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  padding-bottom: 4rem;
  text-align: center;
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .section-c-4 .info-box .info {
    width: 100%;
    padding-top: 6.25rem;
    padding-bottom: 2rem;
  }
}
.section-c-4 .info-box .info .img-box {
  display: block;
  width: 1px;
  height: 1px;
  margin: 0 auto 1rem auto;
  position: relative;
}
.section-c-4 .info-box .info .img-box img {
  width: 12.5rem;
  height: 12.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.section-c-4 .info-box .info .h4 {
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: #242424;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}
.section-c-4 .info-box .info .info-para {
  font-size: 1.125rem;
  line-height: 2.25rem;
  color: #666666;
  font-weight: 400;
}
.section-c-4 .info-box .info .info-para span {
  font-size: 1.5rem;
  line-height: 2.25rem;
  color: #df7112;
  font-weight: 400;
}

.section-c-4-1 .info-box {
  margin-left: auto;
  margin-right: auto;
  max-width: 48.75rem;
}

.section-c-5 {
  background-color: #FBFAF8;
  background-image: url("../images/bg-section-c-5.jpg");
  background-position: 0 100%;
  padding: 7.5rem 0;
  word-wrap: break-word;
}
@media screen and (max-width: 1280px) {
  .section-c-5 {
    background-image: url("../images/bg-section-c-5-m.jpg");
    background-position: 0 0;
  }
}
@media screen and (max-width: 767px) {
  .section-c-5 {
    padding: 3.75rem 0;
    background-image: url("../images/bg-section-c-5-m.jpg");
    background-position: 0 0;
  }
}
.section-c-5 .frame-mid {
  position: relative;
}
.section-c-5 .frame-mid img:first-of-type {
  width: 16.125rem;
  height: auto;
  position: absolute;
  bottom: -5.375rem;
  left: -12.25rem;
  z-index: 0;
}
@media screen and (max-width: 1660px) {
  .section-c-5 .frame-mid img:first-of-type {
    width: 8.75rem;
    left: -0.5625rem;
    top: -2.625rem;
    bottom: auto;
  }
}
.section-c-5 .h2 {
  font-size: 2.5rem;
  line-height: 2.5rem;
  color: #000000;
  font-weight: 700;
  margin-bottom: 2.25rem;
  text-align: center;
}
.section-c-5 .hr {
  width: 5rem;
  height: 0.375rem;
  margin-top: 0;
  margin-bottom: 3rem;
  border: 0;
  border-radius: 0.1875rem;
  background-color: #b3000e;
}
@media screen and (max-width: 767px) {
  .section-c-5 .hr {
    margin-bottom: 2.75rem;
  }
}
.section-c-5 .info-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.section-c-5 .info {
  border-radius: 1.25rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.section-c-5 .info .info-head {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  font-size: 1.5rem;
  line-height: 2.25rem;
  color: #141a26;
  font-weight: 500;
  background-color: #ffffff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section-c-5 .info .info-head {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.section-c-5 .info .info-head .quest-num {
  position: relative;
  width: 5rem;
  height: 5rem;
  font-size: 1.5rem;
  line-height: 2.25rem;
  color: #df7112;
  font-weight: 500;
  font-family: "ROBOTO";
  padding: 1.375rem 0.9375rem;
  position: relative;
  z-index: 1;
}
.section-c-5 .info .info-head .quest-words-box {
  max-width: calc(100% - 10rem);
  padding: 1.375rem 0;
}
.section-c-5 .info .info-head .color {
  width: 5rem;
  height: 11.25rem;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  background-color: #fff3e9;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.section-c-5 .info .info-head .button-box {
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-c-5 .info .info-head .quest-arrow {
  width: 5rem;
  height: 5rem;
  margin-left: auto;
  transform: rotate(0deg);
  transition: all 0.15s;
  right: 0;
  top: 50%;
}
.section-c-5 .info .info-head .quest-arrow span:first-of-type {
  display: inline-block;
  width: 1rem;
  height: 0.25rem;
  border-radius: 0.125rem;
  background-color: #df7112;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: calc(50% - 3px);
}
.section-c-5 .info .info-head .quest-arrow span:last-of-type {
  display: inline-block;
  width: 1rem;
  height: 0.25rem;
  border-radius: 0.125rem;
  background-color: #df7112;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: calc(50% - 3px);
}
.section-c-5 .info .info-body {
  display: none;
  position: relative;
  font-size: 1.5rem;
  line-height: 2.25rem;
  font-weight: 500;
  background-color: #fbfaf8;
}
.section-c-5 .info .info-body .answer-box {
  padding: 1.375rem 5rem;
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 400;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .section-c-5 .info .info-body .answer-box {
    padding-right: 1.375rem;
  }
}
.section-c-5 .info-head-body .info-head .quest-arrow {
  transform: rotate(180deg);
  transition: all 0.15s;
}
.section-c-5 .info-head-body .info-body {
  display: block;
}
.section-c-5 ul {
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 400;
  color: #666666;
  list-style: disc;
}
.section-c-5 ol {
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 400;
  color: #666666;
  list-style: decimal;
}

.section-c-6 {
  padding: 7.5rem 0;
  background-color: #F5F3F0;
  background-image: url("../images/bg-section-c-6.jpg");
  background-position: 100% 0;
  overflow: hidden;
  word-wrap: break-word;
}
@media screen and (max-width: 1280px) {
  .section-c-6 {
    background-color: #F5F3F0;
    background-image: url("../images/bg-section-c-6-m.jpg");
    background-position: 100% 0;
  }
}
@media screen and (max-width: 767px) {
  .section-c-6 {
    background-color: #F5F3F0;
    background-image: url("../images/bg-section-c-6-m.jpg");
    background-position: 100% 0;
  }
}
.section-c-6 .info-and-h2-box {
  width: 100%;
  position: relative;
}
.section-c-6 .h2-box {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  margin-bottom: 5.5rem;
}
@media screen and (max-width: 767px) {
  .section-c-6 .h2-box {
    margin-bottom: 2.5rem;
  }
}
.section-c-6 .h2-and-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.875rem;
  padding: 0 1.5rem;
  position: relative;
}
.section-c-6 .h2-and-btn .h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #141a26;
  font-weight: 700;
  max-width: 30rem;
}
.section-c-6 .h2-and-btn button {
  width: 2.75rem;
  height: 2.75rem;
  background-image: url("../images/btn-collpase.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.15s;
  flex: 0 0 auto;
}
.section-c-6 .info-box {
  padding: 2.5rem 3.125rem;
  border-radius: 0.625rem;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .section-c-6 .info-box {
    padding: 1.875rem 1.625rem 2.25rem 1.625rem;
  }
}
.section-c-6 .info-box ol {
  list-style: decimal;
  padding-left: 1.5rem;
}
.section-c-6 .info-box ol li {
  font-size: 1.25rem;
  line-height: 2.25rem;
  color: #141a26;
  font-weight: 500;
  margin-bottom: 1rem;
  list-style-position: unset;
}
@media screen and (max-width: 767px) {
  .section-c-6 .info-box ol li {
    margin-bottom: 1.25rem;
  }
}
.section-c-6 .info-box ol li:last-of-type {
  margin-bottom: 0;
}
.section-c-6 .info-box ol li::marker {
  width: 2.25rem;
}
.section-c-6 .info-box ol li + div {
  display: inline !important;
}
.section-c-6 .info-box .ol-sub {
  padding-left: 1rem;
  text-indent: -1rem;
  list-style: none;
}
.section-c-6 .info-box .ol-sub .li-sub {
  font-size: 1.125rem;
  line-height: 2;
  color: #666666;
  font-weight: 400;
  margin-bottom: 0;
  list-style: none;
}
.section-c-6 .info-box ul {
  list-style: disc;
  padding-left: 2rem;
}
.section-c-6 .info-box ul li {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #141a26;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .section-c-6 .info-box ul li {
    margin-bottom: 1.25rem;
  }
}
.section-c-6 .info-box ul li:last-of-type {
  margin-bottom: 0;
}
.section-c-6 .info-box ul li::marker {
  width: 2.25rem;
}
.section-c-6 .info-h2-box {
  z-index: 1;
}
.section-c-6 .info-h2-box .h2-box {
  padding-bottom: 0;
  margin-bottom: 0;
}
.section-c-6 .info-h2-box button {
  transform: rotate(180deg);
  transition: all 0.15s;
}
.section-c-6 .info-h2-box .info-box {
  display: none;
}
.section-c-6 img {
  width: 14rem;
  height: auto;
  position: absolute;
  top: -2.25rem;
  right: -9.75rem;
}
@media screen and (max-width: 1439px) {
  .section-c-6 img {
    right: -4.0625rem;
  }
}
@media screen and (max-width: 767px) {
  .section-c-6 img {
    width: 11.25rem;
    top: -3.875rem;
  }
}

.footer-c {
  width: 100%;
  word-wrap: break-word;
}
.footer-c .footer-c-top {
  background-color: transparent;
  background-image: none;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background: linear-gradient(90deg, #B3000E 0%, #E60012 100%);
  padding: 1.625rem 0.9375rem;
}
.footer-c .footer-c-top ol li, .footer-c .footer-c-top ul li {
  color: #ffffff;
}
.footer-c .footer-c-bottom {
  padding-bottom: 2.25rem;
  background-color: #ffffff;
  background-image: none;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer-c .para-box {
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}
.footer-c .para-box .para {
  padding: 1.25rem 0;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #ffffff;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer-c .para-box .para br {
    display: none;
  }
}
.footer-c .contacts {
  padding-top: 2.75rem;
  padding-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footer-c .contacts {
    padding-top: 1.5rem;
    padding-bottom: 0.875rem;
    flex-direction: column;
    gap: 0;
  }
}
.footer-c .contacts .line {
  width: 1px;
  height: 1.5rem;
  background-color: #141a26;
}
@media screen and (max-width: 767px) {
  .footer-c .contacts .line {
    display: none;
  }
}
.footer-c .contacts div {
  position: relative;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #141a26;
  font-weight: 400;
  flex: 0 0 auto;
}
.footer-c .contacts div a {
  color: #141a26;
}
.footer-c .info-box + .para {
  font-size: 1rem;
  line-height: 1.875rem;
  color: #42515B;
  font-weight: 400;
  text-align: center;
}
.footer-c ul .li-style {
  list-style-type: none !important;
  text-indent: -14px;
  padding-left: 23px;
}
.footer-c ul .li-style:before {
  content: "· ";
  display: inline-block;
  color: #555f6f;
  margin-right: 12px;
}

.fixed-right-box-a {
  position: fixed;
  z-index: 20;
  right: 2.5rem;
  bottom: 3.75rem;
  gap: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .fixed-right-box-a {
    right: 0.9375rem;
    bottom: 7.5rem;
  }
}
.fixed-right-box-a .link-box {
  padding-bottom: 1rem;
}
.fixed-right-box-a .link {
  display: block;
  width: 4rem;
  height: 7.5rem;
  padding-top: 1rem;
  background-color: #66c6e5;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 0 3.125rem 3.125rem 3.125rem;
  font-size: 1.125rem;
  line-height: 1.5rem;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  gap: 0.5rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .fixed-right-box-a .link {
    width: 50dvw;
    height: 4.0625rem;
    border-top-width: 4px;
    border-top-style: solid;
    border-top-color: #b3000e;
    border-radius: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.fixed-right-box-a .link .flex-box {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .fixed-right-box-a .link .flex-box {
    flex-direction: row;
  }
}
.fixed-right-box-a .link .icon-box {
  width: 3.25rem;
  height: 2.75rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .fixed-right-box-a .link .icon-box {
    width: 2.25rem;
    height: 2.25rem;
    margin-top: 0;
    margin-right: 0.5rem;
  }
}
.fixed-right-box-a .link .icon-box img {
  width: 100%;
}
.fixed-right-box-a .link .icon-box + div {
  max-width: 3.25rem;
}
@media screen and (max-width: 1024px) {
  .fixed-right-box-a .link .icon-box + div {
    max-width: unset;
  }
}
.fixed-right-box-a .link .img-box {
  border-width: 0.125rem;
  border-style: solid;
  border-color: #ffffff;
  border-radius: 1.25rem;
  width: 2rem;
  height: 2rem;
  background-color: #df7112;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -1.1875rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .fixed-right-box-a .link .img-box {
    width: auto;
    height: auto;
    margin-left: 0.75rem;
    border: 0;
    background-color: transparent;
    position: static;
    transform: none;
  }
}
.fixed-right-box-a .link .img-box img {
  width: 0.5rem;
  height: auto;
}
.fixed-right-box-a .link-box:nth-child(1) .link {
  background-color: #66c6e5;
}
.fixed-right-box-a .link-box:nth-child(1) .link .icon-box img {
  width: 2rem;
  height: auto;
}
.fixed-right-box-a .link-box:nth-child(2) .link {
  background-color: #f9cf00;
}
.fixed-right-box-a .link-box:nth-child(2) .link .icon-box img {
  width: 2.125rem;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .fixed-right-box-a .link-box .link-l {
    width: calc(100dvw + 2px);
  }
}
.fixed-right-box-a .link-cube-box {
  border-width: 0.125rem;
  border-style: solid;
  border-color: #df7112;
  background-color: #ffffff;
  border-radius: 0 0.875rem 0.875rem 0.875rem;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.fixed-right-box-a .link-cube-box a {
  font-size: 0.875rem;
  line-height: 1rem;
  color: #df7112;
}
.fixed-right-box-a .link-top-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: #df7112;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.fixed-right-box-a .link-top-box .arrow {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.375rem;
  width: 1.5rem;
  height: 0.75rem;
}
.fixed-right-box-a .link-top-box .arrow path {
  fill: #ffffff;
}
.fixed-right-box-a .link-top-box .word {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.375rem;
  width: 2rem;
  height: 0.75rem;
}
.fixed-right-box-a .link-top-box .word path {
  fill: #ffffff;
}
.fixed-right-box-a .link-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 1023px) {
  .fixed-right-box-a .link-wrapper {
    padding-bottom: 0;
    flex-direction: row;
    gap: 0;
    position: fixed;
    bottom: 0;
    left: 0;
  }
}
.fixed-right-box-a .link-wrapper .link-box {
  padding-bottom: 0;
}

.fixed-right-box-b {
  position: fixed;
  z-index: 20;
  right: 2rem;
  bottom: 3.75rem;
  gap: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .fixed-right-box-b {
    right: 0.9375rem;
    bottom: 7.5rem;
  }
}
.fixed-right-box-b .link-box {
  padding-bottom: 1rem;
}
.fixed-right-box-b .link {
  display: block;
  width: 5rem;
  height: 5rem;
  padding-top: 0.75rem;
  background-color: #EA8686;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 3.125rem;
  font-size: 1.125rem;
  line-height: 1.5rem;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  gap: 1rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .fixed-right-box-b .link {
    width: 50dvw;
    height: 4.0625rem;
    border-top-width: 4px;
    border-top-style: solid;
    border-top-color: #b3000e;
    border-radius: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.fixed-right-box-b .link img[alt=icon] {
  display: none;
  width: 2.25rem;
}
.fixed-right-box-b .link img[alt=icon] + div {
  max-width: 2.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .fixed-right-box-b .link img[alt=icon] + div {
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
.fixed-right-box-b .link .img-box {
  border-width: 0.125rem;
  border-style: solid;
  border-color: #ffffff;
  border-radius: 1.25rem;
  width: 2rem;
  height: 2rem;
  background-color: #EA8686;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -1.1875rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .fixed-right-box-b .link .img-box {
    width: auto;
    height: auto;
    margin-left: 0.75rem;
    border: 0;
    background-color: transparent;
    position: static;
    transform: none;
  }
}
.fixed-right-box-b .link .img-box img {
  width: 0.5rem;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .fixed-right-box-b .link br {
    display: none;
  }
}
.fixed-right-box-b .link-box:nth-child(1) .link {
  background-color: #EA8686;
}
.fixed-right-box-b .link-box:nth-child(2) .link {
  background-color: #EA8686;
}
@media screen and (max-width: 1024px) {
  .fixed-right-box-b .link-box .link-l {
    width: calc(100dvw + 2px);
  }
}
.fixed-right-box-b .link-cube-box {
  border-width: 0.125rem;
  border-style: solid;
  border-color: #EA8686;
  background-color: #ffffff;
  border-radius: 0 0.875rem 0.875rem 0.875rem;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.fixed-right-box-b .link-cube-box a {
  font-size: 0.875rem;
  line-height: 1rem;
  color: #EA8686;
}
.fixed-right-box-b .link-top-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: #EA8686;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.fixed-right-box-b .link-top-box .arrow {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.375rem;
  width: 1.5rem;
  height: 0.75rem;
}
.fixed-right-box-b .link-top-box .arrow path {
  fill: #ffffff;
}
.fixed-right-box-b .link-top-box .word {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.375rem;
  width: 2rem;
  height: 0.75rem;
}
.fixed-right-box-b .link-top-box .word path {
  fill: #ffffff;
}
.fixed-right-box-b .link-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 1023px) {
  .fixed-right-box-b .link-wrapper {
    padding-bottom: 0;
    flex-direction: row;
    gap: 0;
    position: fixed;
    bottom: 0;
    left: 0;
  }
}
.fixed-right-box-b .link-wrapper .link-box {
  padding-bottom: 0;
}

.fixed-right-box-c {
  position: fixed;
  z-index: 20;
  right: 2rem;
  bottom: 3.75rem;
  gap: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .fixed-right-box-c {
    right: 0.9375rem;
    bottom: 7.5rem;
  }
}
.fixed-right-box-c .link-box {
  padding-bottom: 1rem;
}
.fixed-right-box-c .link {
  display: block;
  width: 5rem;
  height: 5rem;
  padding-top: 0.75rem;
  background-color: #b3000e;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  font-size: 1.125rem;
  line-height: 1.5rem;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  gap: 1rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .fixed-right-box-c .link {
    width: 50dvw;
    height: 4.0625rem;
    border-top-width: 4px;
    border-top-style: solid;
    border-top-color: #b3000e;
    border-radius: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.fixed-right-box-c .link img[alt=icon] {
  display: none;
  width: 2.25rem;
}
.fixed-right-box-c .link .img-box {
  border-width: 0.125rem;
  border-style: solid;
  border-color: #ffffff;
  border-radius: 1.25rem;
  width: 2rem;
  height: 2rem;
  background-color: #b3000e;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -1.1875rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .fixed-right-box-c .link .img-box {
    width: auto;
    height: auto;
    margin-left: 0.75rem;
    border: 0;
    background-color: transparent;
    position: static;
    transform: none;
  }
}
.fixed-right-box-c .link .img-box img {
  width: 0.5rem;
}
@media screen and (max-width: 1024px) {
  .fixed-right-box-c .link br {
    display: none;
  }
}
.fixed-right-box-c .link img + div {
  margin-left: auto;
  margin-right: auto;
  max-width: 2.25rem;
}
@media screen and (max-width: 1024px) {
  .fixed-right-box-c .link img + div {
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
.fixed-right-box-c .link-box:nth-child(1) .link {
  background-color: #b3000e;
}
.fixed-right-box-c .link-box:nth-child(2) .link {
  background-color: #b3000e;
}
@media screen and (max-width: 1024px) {
  .fixed-right-box-c .link-box .link-l {
    width: calc(100dvw + 2px);
  }
}
.fixed-right-box-c .link-cube-box {
  border-width: 0.125rem;
  border-style: solid;
  border-color: #b3000e;
  background-color: #ffffff;
  border-radius: 0 0.875rem 0.875rem 0.875rem;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.fixed-right-box-c .link-cube-box a {
  font-size: 0.875rem;
  line-height: 1rem;
  color: #b3000e;
}
.fixed-right-box-c .link-top-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: #b3000e;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.fixed-right-box-c .link-top-box .arrow {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.375rem;
  width: 1.5rem;
  height: 0.75rem;
}
.fixed-right-box-c .link-top-box .arrow path {
  fill: #ffffff;
}
.fixed-right-box-c .link-top-box .word {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.375rem;
  width: 2rem;
  height: 0.75rem;
}
.fixed-right-box-c .link-top-box .word path {
  fill: #ffffff;
}
.fixed-right-box-c .link-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 1023px) {
  .fixed-right-box-c .link-wrapper {
    padding-bottom: 0;
    flex-direction: row;
    gap: 0;
    position: fixed;
    bottom: 0;
    left: 0;
  }
}
.fixed-right-box-c .link-wrapper .link-box {
  padding-bottom: 0;
}

.swiper-wrapper,
.swiper-slide {
  height: auto !important;
}

.section-a-3 .swiper-wrapper-for-edit {
  justify-content: center;
}
.section-a-3 .swiper-wrapper-for-edit .swiper-slide {
  width: 33%;
}

.section-a-5 .swiper-wrapper-for-edit {
  justify-content: center;
}
.section-a-5 .swiper-wrapper-for-edit .swiper-slide {
  width: 33%;
}

.section-c-2 .swiper-wrapper-for-edit {
  justify-content: center;
}
.section-c-2 .swiper-wrapper-for-edit .swiper-slide {
  width: 20%;
}

.section-c-2-1 .swiper-wrapper-for-edit {
  justify-content: center;
}
.section-c-2-1 .swiper-wrapper-for-edit .swiper-slide {
  width: 33%;
}

.section-c-2-2 .swiper-wrapper-for-edit {
  justify-content: center;
}
.section-c-2-2 .swiper-wrapper-for-edit .swiper-slide {
  width: 25%;
}

.section-c-3 .swiper-wrapper-for-edit {
  justify-content: center;
}
.section-c-3 .swiper-wrapper-for-edit .swiper-slide {
  width: 25%;
}

ol {
  list-style: decimal;
  list-style-position: inside;
}

ul.style-circle {
  list-style: circle;
}

ul.style-disc {
  list-style: disc;
}

ul.style-square {
  list-style: square;
}/*# sourceMappingURL=style.css.map */