.container {
  width: 1080px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 820px) {
  .container {
    width: 100%;
    padding: 0 15rem;
  }
}
.min-container {
  width: 956px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 820px) {
  .min-container {
    width: 100%;
    padding: 0 15rem;
  }
}
body,
html {
  scroll-behavior: smooth;
}
/* pc */
.pc-style {
  display: block;
}
/* mobile */
.mobile-style {
  display: none;
}
.flex-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .flex-wrapper {
    flex-direction: column;
  }
}
.wrap-h1 {
  font-size: 48px;
  font-weight: 600;
  color: #171717;
  line-height: 1.2;
}
.wrap-h2 {
  font-size: 36px;
  font-weight: 600;
  color: #171717;
  line-height: 1.2;
  width: 810px;
  margin: 0 auto;
  text-align: center;
}
.wrap-desc {
  font-size: 18px;
  font-weight: normal;
  color: #393939;
  line-height: 1.5;
  margin-top: 20px;
  text-align: center;
}
.common-bg-btn {
  display: inline-block;
  background: #F5A253;
  border-radius: 50px;
  padding: 20px 52px;
  border: 10px solid #f2d1a1;
  font-size: 26px;
  font-weight: normal;
  color: #fff;
  line-height: 1.5;
}
.common-bg-btn:hover {
  background: linear-gradient(90deg, #f5a253 0%, #ff6737 100%, #ff6737 100%);
}
/* common aside */
.common-aside {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 67%;
  right: 6%;
  z-index: 99;
  gap: 36px;
}
.common-aside_item {
  width: 97px;
  height: 97px;
  background: url('../../img/sprite.png') no-repeat;
  box-shadow: 0px 0px 29px rgba(245, 162, 83, 0.2);
  border-radius: 50%;
  cursor: pointer;
}
.common-aside_item.item-1 {
  background-position: -86px -83px;
}
.common-aside_item.item-2 {
  background-position: -86px -211px;
}
.common-aside_item:hover.item-1 {
  background-position: -223px -83px;
}
.common-aside_item:hover.item-2 {
  background-position: -223px -211px;
}
@media screen and (max-width: 768px) {
  .common-aside {
    display: none;
  }
}
.new-msg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  background-color: burlywood;
  border-radius: 20px;
  color: #fff;
  z-index: 99999;
  padding: 15px 20px;
}
.common-form_component {
  position: absolute;
  height: 100%;
  width: 100%;
  background: #ffffffb3;
  z-index: 998;
  top: 0;
  left: 0;
}
.common-form_component .button-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 999;
  color: #bbbaba;
}
.button-loader {
  --d: 16px;
  margin-right: 30px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  vertical-align: super;
  box-shadow: calc(1 * var(--d)) calc(0 * var(--d)) 0 0, calc(0.707 * var(--d)) calc(0.707 * var(--d)) 0 0.5px, calc(0 * var(--d)) calc(1 * var(--d)) 0 1px, calc(-0.707 * var(--d)) calc(0.707 * var(--d)) 0 1.5px, calc(-1 * var(--d)) calc(0 * var(--d)) 0 2px, calc(-0.707 * var(--d)) calc(-0.707 * var(--d)) 0 2.5px, calc(0 * var(--d)) calc(-1 * var(--d)) 0 3px;
  animation: spinner 1s infinite steps(8);
}
.hide {
  display: none;
}
@keyframes spinner {
  100% {
    transform: rotate(1turn);
  }
}
/* common lading */
.common-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  margin: 50px 0;
}
.common-loading .loader {
  width: 15px;
  height: 15px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: l5 1s infinite linear alternate;
}
@keyframes l5 {
  0% {
    box-shadow: 20px 0 #000, -20px 0 #0002;
    background: #000;
  }
  33% {
    box-shadow: 20px 0 #000, -20px 0 #0002;
    background: #0002;
  }
  66% {
    box-shadow: 20px 0 #0002, -20px 0 #000;
    background: #0002;
  }
  100% {
    box-shadow: 20px 0 #0002, -20px 0 #000;
    background: #000;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.2666667vw;
  }
  body {
    font-size: 16rem;
  }
  .container {
    width: 100%;
    padding: 0 15rem;
  }
  .pc-style {
    display: none !important;
  }
  .mobile-style {
    display: block;
  }
  .wrap-h1 {
    font-size: 36rem;
  }
  .wrap-h2 {
    width: 100%;
    font-size: 28rem;
  }
  .wrap-desc {
    margin-top: 20rem;
    font-size: 16rem;
  }
  .common-bg-btn {
    border: 10rem solid rgba(255, 255, 255, 0.3);
  }
}
/* header start */
.header {
  background-color: #fff;
}
.header .flex-wrapper {
  justify-content: center;
}
.header_logo {
  padding: 16px 0;
}
.header_nav {
  margin-left: 60px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.header_nav-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: normal;
  color: #171717;
  position: relative;
  padding: 16px 0;
}
.header_nav-item .iconfont {
  margin-left: 13px;
  font-size: 14px;
  font-weight: bold;
}
.header_nav-item:hover {
  color: #F5A253;
}
.header_drop-list {
  position: absolute;
  padding: 0 20px;
  top: 90%;
  left: -20px;
  background: #fff;
  box-shadow: 0px -3px 22px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 10px 10px;
  z-index: 99;
  display: none;
}
.header_drop-item {
  padding: 15px 0;
  border-bottom: 1px solid #f2f2f2;
  font-size: 12px;
  font-weight: normal;
  color: #000;
  white-space: nowrap;
}
.header_drop-item:hover {
  color: #F5A253;
}
.header_drop-item:last-child {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 0 15rem;
  }
  .header .flex-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
  .header .mobile-nav_handle {
    display: inline-block;
    background: url('../../img/sprite.png') no-repeat -639px -101px;
    width: 18px;
    height: 19px;
  }
  .header .mobile-nav_content {
    box-shadow: 0px -3px 22px 0px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 77rem;
    left: 0;
    background: #fff;
    width: 100%;
    z-index: 999;
    display: none;
  }
  .header .mobile-nav_item {
    padding: 20rem;
    font-size: 16rem;
    font-weight: normal;
    color: #171717;
    border-bottom: 1px solid #f4f4f4;
    display: block;
  }
  .header .mobile-nav_item:last-child {
    border-bottom: unset;
  }
  .header .mobile-nav_item.active {
    color: #F5A253;
  }
  .header .mobile-nav_item.active .iconfont {
    display: inline-block;
    color: #171717;
    transform: rotate(180deg);
  }
  .header .mobile-nav_top {
    flex-direction: column;
  }
  .header .mobile-nav_top .iconfont {
    font-size: 20rem;
    font-weight: bold;
  }
  .header .mobile-nav_info {
    padding: 20rem 0 0 20rem;
    display: none;
  }
  .header .mobile-nav_info-link {
    display: block;
    margin-bottom: 20rem;
    font-size: 12rem;
    font-weight: normal;
    color: #171717;
  }
  .header .mobile-nav_info-link:last-child {
    margin-bottom: 0;
  }
  .header .mobile-nav_info-link:hover {
    color: #F5A253;
  }
}
/* header end */
/* footer start */
.footer {
  background: #152e56;
  padding: 90px 0 60px;
}
.footer > .container > .flex-wrapper {
  gap: 140px;
  align-items: flex-start;
}
.footer .footer-left {
  display: flex;
  flex-direction: column;
  gap: 90px;
  flex: 0 0 263px;
}
.footer .footer-right {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 75px;
}
.footer .footer-right_title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.footer .footer-right_list {
  margin-top: 30px;
}
.footer .footer-right_list.icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
}
.footer .footer-right_info {
  font-size: 14px;
  font-weight: normal;
  color: #fff;
  margin-bottom: 15px;
}
.footer .footer-right_info:hover {
  color: #F5A253;
}
.footer .footer-right_icon-box {
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px;
  display: flex;
}
.footer .footer-right_icon-box .icon-item {
  display: inline-block;
  background-image: url('../../img/sprite.png');
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
}
.footer .footer-right_icon-box .icon-item.icon-fb {
  background-position: -707px -100px;
}
.footer .footer-right_icon-box .icon-item.icon-x {
  background-position: -738px -99px;
}
.footer .footer-right_icon-box .icon-item.icon-ig {
  background-position: -768px -99px;
}
.footer .footer-right_icon-box .icon-item:hover.icon-fb {
  background-position: -707px -147px;
}
.footer .footer-right_icon-box .icon-item:hover.icon-x {
  background-position: -738px -146px;
}
.footer .footer-right_icon-box .icon-item:hover.icon-ig {
  background-position: -768px -146px;
}
.footer .language-wraper {
  position: relative;
  height: 105px;
}
.footer .language-info {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: normal;
  color: #fff;
}
.footer .language-info .iconfont {
  font-weight: bold;
  font-size: 20px;
}
.footer .language-info:hover {
  color: #F5A253;
}
.footer .language-box {
  position: absolute;
  padding: 8px 15px;
  border-radius: 5px;
  background: #3a4a6b;
  right: 0;
  transform: translateY(-60%);
  display: none;
  max-height: 200px;
  overflow-y: auto;
}
.footer .language-box::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: #f5f5f5;
  border-radius: 20px;
}
.footer .language-box::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: #F5A253;
}
.footer .language-box_item {
  font-size: 14px;
  font-weight: normal;
  color: #fff;
  display: block;
  margin-top: 7px;
}
.footer .language-box_item:first-child {
  margin-top: 0;
}
.footer .language-box_item:hover {
  color: #F5A253;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 60rem 0 40rem;
  }
  .footer > .container > .flex-wrapper {
    gap: 45rem;
    align-items: flex-start;
  }
  .footer .footer-left {
    flex: unset;
  }
  .footer .footer-right {
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: unset;
  }
  .footer .footer-right_title {
    font-size: 18rem;
  }
  .footer .footer-right_item {
    padding: 20rem 0 5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }
  .footer .footer-right_item:first-child {
    padding: 0 0 5rem 0;
  }
  .footer .footer-right_list {
    margin-top: 20rem;
  }
  .footer .footer-right_list.icons {
    gap: 17rem;
    justify-content: flex-start;
  }
  .footer .footer-right_info {
    font-size: 14rem;
    margin-bottom: 15rem;
  }
  .footer .footer-right_icon-box {
    border-radius: 7rem;
    padding: 8rem;
  }
  .footer .footer-right_icon-box .icon-item {
    background-size: 1400rem auto;
    width: 18rem;
    height: 18rem;
  }
  .footer .footer-right_icon-box .icon-item.icon-fb {
    background-position: -707rem -100rem;
  }
  .footer .footer-right_icon-box .icon-item.icon-x {
    background-position: -738rem -99rem;
  }
  .footer .footer-right_icon-box .icon-item.icon-ig {
    background-position: -768rem -99rem;
  }
  .footer .footer-right_icon-box .icon-item:hover.icon-fb {
    background-position: -707rem -147rem;
  }
  .footer .footer-right_icon-box .icon-item:hover.icon-x {
    background-position: -738rem -146rem;
  }
  .footer .footer-right_icon-box .icon-item:hover.icon-ig {
    background-position: -768rem -146rem;
  }
  .footer .language-wraper {
    position: relative;
    height: 105px;
  }
  .footer .language-info {
    gap: 8rem;
    font-size: 16rem;
  }
  .footer .language-info .iconfont {
    font-size: 20rem;
  }
  .footer .language-box {
    padding: 8rem 15rem;
    border-radius: 5rem;
    right: -90rem;
    max-height: 200rem;
  }
  .footer .language-box::-webkit-scrollbar {
    width: 8rem;
    height: 8rem;
    background: #f5f5f5;
    border-radius: 20rem;
  }
  .footer .language-box::-webkit-scrollbar-thumb {
    border-radius: 20rem;
    background: #F5A253;
  }
  .footer .language-box_item {
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    display: block;
    margin-top: 7rem;
  }
}
.copyright {
  padding: 8px 0;
  background: rgba(98, 115, 142, 0.95);
  text-align: center;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 99;
  display: none;
}
.copyright_info {
  flex-grow: 1;
  font-size: 12px;
  font-weight: normal;
  color: #FFF;
  line-height: 1.5;
}
.copyright_sharp {
  color: #F5A253;
}
.copyright_btn {
  flex: 0 0 154px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 0;
  border-radius: 35px;
  background: #F5A253;
  font-size: 16px;
  font-weight: normal;
  color: #FFF;
}
.copyright_btn:hover {
  background: linear-gradient(90deg, #f5a253 0%, #ff6737 100%, #ff6737 100%);
}
@media screen and (max-width: 768px) {
  .copyright {
    padding: 0;
  }
  .copyright .container {
    padding: 0;
  }
  .copyright .flex-wrapper {
    flex-direction: row;
    justify-content: unset;
    align-items: unset;
  }
  .copyright_info {
    font-size: 12rem;
    flex: 0 0 82%;
    text-align: left;
    padding: 5rem 2rem 5rem 10rem;
  }
  .copyright_btn {
    flex: unset;
    flex-grow: 1;
    padding: 12rem 4rem;
    border-radius: 0;
    font-size: 12rem;
  }
}
/* footer end */
/* common-pagination start */
.common-pagination {
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.common-pagination .Ch_paging_prev,
.common-pagination .Ch_paging_next {
  display: inline-block;
  width: 100px;
  height: 32px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #4f4f4f;
  line-height: 32px;
  border-radius: 4px;
  border: 1px solid #d4d6d9;
  background: #fff;
  margin-bottom: 12px;
}
.common-pagination .Ch_paging_prev .iconfont,
.common-pagination .Ch_paging_next .iconfont {
  transform: rotate(180deg);
}
.common-pagination .Ch_paging_prev:hover,
.common-pagination .Ch_paging_next:hover {
  text-decoration: none;
}
.common-pagination .Ch_paging_prev {
  margin-right: 12px;
  position: relative;
}
.common-pagination .Ch_paging_next {
  margin-left: 12px;
}
.common-pagination .Ch_paging_btn > a {
  font-size: 14px;
  font-weight: 500;
  color: #4f4f4f;
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  flex-shrink: 0;
  margin-left: 6px;
  margin-right: 6px;
  margin-bottom: 12px;
  background-color: #fff;
}
.common-pagination .Ch_paging_btn > a.Ch_Paging_choose {
  background-color: #F5A253;
  border-radius: 2px;
  color: #fff;
}
.common-pagination .Ch_paging_btn > a:hover {
  text-decoration: none;
}
.common-pagination #ChPagingCount,
.common-pagination #ChPagingCountNumber {
  display: none;
}
@media screen and (max-width: 768px) {
  .common-pagination {
    position: relative;
    width: 90%;
  }
  .common-pagination .Ch_paging_prev,
  .common-pagination .Ch_paging_next {
    position: absolute;
    top: 100%;
  }
  .common-pagination .Ch_paging_prev {
    left: 6px;
  }
  .common-pagination .Ch_paging_next {
    right: 6px;
  }
}
.mmForm {
  font-size: 16px;
  font-weight: 300;
  color: #171717;
  line-height: 1.5;
  padding-right: 15px;
}
.mmForm .required .mmForm-item_label {
  position: relative;
  text-indent: 6px;
}
.mmForm .required .mmForm-item_label::before {
  content: '*';
  position: absolute;
  top: 0;
  left: -6px;
}
.mmForm-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.mmForm-item_label {
  flex: 1;
}
.mmForm-item_content {
  width: 458px;
}
.mmForm-item_tips {
  width: 100%;
  text-align: right;
  font-size: 12px;
  font-weight: 300;
  color: #838383;
  line-height: 1.8;
  margin-top: 12px;
}
.mmForm-input {
  width: 100%;
  height: 40px;
  background: #fff;
  padding: 8px 13px;
  border-radius: 8px;
  border: 1px solid #d9d9d9;
  box-sizing: border-box;
}
.mmForm-input::placeholder {
  color: #959595;
}
.mmForm-input.error-message {
  border: 1px solid #f53f3f;
  background: #ffece8;
}
.mmForm-select {
  position: relative;
}
.mmForm-select_value {
  width: 100%;
  cursor: pointer;
}
.mmForm-select::before {
  position: absolute;
  right: 12px;
  top: 13px;
  content: '';
  height: 16px;
  width: 22px;
  background-image: url(../../img/common/sprite.png);
  background-repeat: no-repeat;
  background-size: 1331px 794px;
  background-position: -777px -77px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .mmForm-select::before {
    background-size: 1331rem 794rem !important;
  }
}
.mmForm-select.unfold::before {
  transform: rotate(180deg);
}
.mmForm-select.arrow::before {
  background-image: url(../../img/common/sprite.png);
  background-repeat: no-repeat;
  background-size: 1331px 794px;
  background-position: -865px -77px;
}
@media screen and (max-width: 768px) {
  .mmForm-select.arrow::before {
    background-size: 1331rem 794rem !important;
  }
}
.mmForm-select.other {
  position: relative;
}
.mmForm-select.other::after {
  content: 'Other';
  position: absolute;
  left: 12px;
  height: 26px;
  padding-right: 12px;
  border-right: 1px solid #d9d9d9;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.mmForm-select.other .mmForm-input {
  text-indent: 70px;
}
.mmForm-options {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  max-height: 250px;
  background: #fff;
  padding: 11px 19px 0;
  border-radius: 8px;
  border: 1px solid #d9d9d9;
  z-index: 9999;
}
.mmForm-options.scroll {
  overflow-y: scroll;
}
.mmForm-options .option {
  font-size: 14px;
  font-weight: 500;
  color: #4e4e4e;
  line-height: 1.8;
  margin-bottom: 11px;
  cursor: pointer;
}
.mmForm-options .option.active {
  color: #f5a253;
}
.mmForm-options .option:hover {
  color: #f5a253;
}
.mmForm-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #f5a253;
  padding: 10px 47px;
  margin: 22px auto;
  border-radius: 82px;
  box-sizing: border-box;
}
.mmForm-btn_icon {
  width: 28px;
  height: 28px;
  margin-right: 11px;
  background-image: url(../../img/common/sprite.png);
  background-repeat: no-repeat;
  background-size: 1331px 794px;
  background-position: -820px -71px;
}
@media screen and (max-width: 768px) {
  .mmForm-btn_icon {
    background-size: 1331rem 794rem !important;
  }
}
.mmForm-btn[disabled='disabled'] {
  cursor: not-allowed;
}
.mmForm-btn:hover {
  background: linear-gradient(90deg, #fed554 0%, #ff9475 100%);
}
@media screen and (max-width: 768px) {
  .mmForm {
    font-size: 16rem;
    padding-right: 0;
  }
  .mmForm .required .mmForm-item_label {
    text-indent: 6rem;
  }
  .mmForm .required .mmForm-item_label::before {
    left: -6rem;
  }
  .mmForm-item {
    margin-bottom: 22rem;
  }
  .mmForm-item_label {
    margin-bottom: 14rem;
  }
  .mmForm-item_content {
    width: 100%;
  }
  .mmForm-item_tips {
    text-align: left;
    font-size: 12rem;
    margin-top: 9rem;
  }
  .mmForm-input {
    height: 40rem;
    padding: 8rem 14rem;
    border-radius: 6rem;
  }
  .mmForm-input::placeholder {
    font-size: 14rem;
  }
  .mmForm-select::before {
    position: absolute;
    right: 14rem;
    top: 14rem;
    height: 16rem;
    width: 22rem;
    background-position: -777rem -77rem;
  }
  .mmForm-select.arrow::before {
    background-position: -865rem -77rem;
  }
  .mmForm-select.other::after {
    left: 12rem;
    height: 26rem;
    padding-right: 12rem;
  }
  .mmForm-select.other .mmForm-input {
    text-indent: 70rem;
  }
  .mmForm-options {
    top: 40rem;
    max-height: 250rem;
    padding: 11rem 11rem 0;
    border-radius: 8rem;
  }
  .mmForm-options .option {
    font-size: 14rem;
    margin-bottom: 11rem;
  }
  .mmForm-btn {
    font-size: 16rem;
    padding: 10rem 47rem;
    margin: 12rem auto;
    border-radius: 82rem;
  }
  .mmForm-btn_icon {
    width: 28rem;
    height: 28rem;
    margin-right: 11rem;
    background-position: -820rem -71rem;
  }
}
.fucaso-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(92, 92, 92, 0.29);
  z-index: 100000;
}
.fucaso-dialog.active {
  display: flex;
}
.fucaso-dialog_inner {
  position: relative;
  z-index: 2;
  display: flex;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #ffeddc 100%);
  padding: 20px;
}
.fucaso-dialog_inner::after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 445px;
  height: 397px;
  background-image: url(../../img/fucaso-dialog-after.svg);
  background-size: 100% 100%;
}
.fucaso-dialog .fucaso-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 23px;
  height: 22px;
  background-image: url(../../img/fucaso-dialog-close.svg);
  background-size: 100% 100%;
  cursor: pointer;
  transition: transform 200ms;
}
.fucaso-dialog .fucaso-close:hover {
  transform: scale(1.2);
}
.fucaso-dialog .fucaso-info {
  padding: 0 35px 0 15px;
}
.fucaso-dialog .fucaso-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  color: #ec752c;
}
.fucaso-dialog .fucaso-desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #ec752c;
  margin-bottom: 10px;
}
.fucaso-dialog .fucaso-content {
  width: 570px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 10px;
}
.fucaso-dialog .content-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fucaso-dialog .content-item.item1 {
  width: 380px;
  height: 180px;
}
.fucaso-dialog .content-item.item1 .item-box {
  height: 86px;
}
.fucaso-dialog .content-item.item2 {
  width: 180px;
  height: 180px;
}
.fucaso-dialog .content-item.item2 .item-box:first-child {
  height: 102px;
}
.fucaso-dialog .content-item.item2 .item-box:first-child .item-list {
  padding-right: 10px;
}
.fucaso-dialog .content-item.item2 .item-box:last-child {
  height: 68px;
}
.fucaso-dialog .content-item.item2 .item-box:last-child .item-title {
  padding: 4px 18px;
}
.fucaso-dialog .content-item.item3 {
  width: 460px;
  height: 70px;
}
.fucaso-dialog .content-item.item3 .item-box {
  height: 70px;
}
.fucaso-dialog .content-item.item3 .item-list {
  display: flex;
  flex-flow: row wrap;
  column-gap: 40px;
}
.fucaso-dialog .item-box {
  box-sizing: border-box;
  border-radius: 8px;
  background: rgba(245, 162, 83, 0.1);
  padding-top: 5px;
}
.fucaso-dialog .item-title {
  display: block;
  font-size: 14px;
  color: #152e56;
  padding-left: 20px;
  margin-bottom: 2px;
}
.fucaso-dialog .item-list {
  padding-left: 20px;
}
.fucaso-dialog .item-list .list-li {
  list-style-type: disc;
  font-weight: lighter;
  font-size: 12px;
  line-height: 1.5;
  color: #152e56;
}
.fucaso-dialog .item-list .list-li::marker {
  font-weight: lighter;
  font-size: 8px;
}
.fucaso-dialog .fucaso-cover {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 0 15px 0 35px;
  border-left: 2px dashed rgba(245, 162, 83, 0.21);
}
.fucaso-dialog .fucaso-img-pc {
  filter: drop-shadow(0 1px 20px rgba(255, 110, 59, 0.2));
}
.fucaso-dialog .fucaso-img-mb {
  display: none;
}
.fucaso-dialog .fucaso-btn {
  width: 200px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  border-radius: 98px;
  background: linear-gradient(90deg, #f5a253 0%, #ff6737 100%, #ff6737 100%);
}
.fucaso-dialog .fucaso-btn:hover {
  background: linear-gradient(180deg, #f5a253 0%, #ff6737 100%, #ff6737 100%);
}
@media (max-width: 768px) {
  .fucaso-dialog_inner {
    flex-direction: column;
    width: 345rem;
    border-radius: 10rem;
    padding: 10rem;
    overflow: hidden;
  }
  .fucaso-dialog_inner::after {
    bottom: -50rem;
    width: 305rem;
    height: 285rem;
  }
  .fucaso-dialog .fucaso-close {
    top: 10rem;
    right: 10rem;
    width: 14rem;
    height: 12rem;
    transition: transform 200ms;
  }
  .fucaso-dialog .fucaso-info {
    padding: 0 0 10rem;
  }
  .fucaso-dialog .fucaso-title {
    font-size: 12rem;
  }
  .fucaso-dialog .fucaso-desc {
    font-weight: lighter;
    font-size: 8rem;
    margin-bottom: 10rem;
  }
  .fucaso-dialog .fucaso-content {
    width: 326rem;
    row-gap: 8rem;
    column-gap: 0;
  }
  .fucaso-dialog .content-item.item1 {
    order: 2;
    flex-direction: column-reverse;
    row-gap: 8rem;
    column-gap: 0;
    width: 202rem;
    height: auto;
  }
  .fucaso-dialog .content-item.item1 .item-box {
    height: auto;
    padding-bottom: 4rem;
  }
  .fucaso-dialog .content-item.item1 .item-box:first-child {
    width: 252rem;
    height: auto;
  }
  .fucaso-dialog .content-item.item2 {
    order: 3;
    align-items: flex-end;
    width: 118rem;
    height: auto;
    row-gap: 8rem;
    column-gap: 0;
  }
  .fucaso-dialog .content-item.item2 .item-box:first-child {
    width: 114rem;
    height: auto;
    padding-bottom: 4rem;
  }
  .fucaso-dialog .content-item.item2 .item-box:first-child .item-list {
    padding-left: 8rem;
    padding-right: 0;
  }
  .fucaso-dialog .content-item.item2 .item-box:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65rem;
    height: auto;
    padding-top: 0;
  }
  .fucaso-dialog .content-item.item2 .item-box:last-child .item-title {
    padding: 10rem 6rem 6rem;
    margin-bottom: 0;
  }
  .fucaso-dialog .content-item.item3 {
    order: 1;
    width: 324rem;
    height: auto;
  }
  .fucaso-dialog .content-item.item3 .item-box {
    height: auto;
    padding-bottom: 4rem;
  }
  .fucaso-dialog .content-item.item3 .item-list {
    display: flex;
    flex-flow: row wrap;
    column-gap: 40rem;
  }
  .fucaso-dialog .item-box {
    border-radius: 4rem;
    padding-top: 4rem;
  }
  .fucaso-dialog .item-title {
    font-weight: 400;
    font-size: 8rem;
    padding-left: 10rem;
    margin-bottom: 2rem;
  }
  .fucaso-dialog .item-list {
    padding-left: 10rem;
  }
  .fucaso-dialog .item-list .list-li {
    list-style: none;
    position: relative;
    font-size: 8rem;
  }
  .fucaso-dialog .item-list .list-li::before {
    content: '·';
    position: absolute;
    top: -3rem;
    left: -5rem;
    font-size: 12rem;
  }
  .fucaso-dialog .fucaso-cover {
    flex-direction: row;
    gap: 16rem;
    padding: 10rem 0 0;
    border-left: none;
    border-top: 1rem dashed rgba(245, 162, 83, 0.21);
  }
  .fucaso-dialog .fucaso-img-pc {
    display: none;
    filter: drop-shadow(0 1px 20px rgba(255, 110, 59, 0.2));
  }
  .fucaso-dialog .fucaso-img-mb {
    display: block;
    filter: drop-shadow(0 1rem 20rem rgba(255, 110, 59, 0.2));
  }
  .fucaso-dialog .fucaso-btn {
    width: 90rem;
    height: 20rem;
    font-size: 8rem;
    border-radius: 98px;
  }
}
