@charset "UTF-8";

/* main-heat-banner ###################### */
.main-heat-banner {
  position: absolute;
  bottom: 240px;
  left: 50%;
  width: 100%;
  max-width: 1280px;
  height: 180px;
  letter-spacing: -0.03em;
  background: var(--color-works-primary);
  border-radius: 20px;
  transform: translateX(-50%);
  overflow: hidden;
  transition: 1.2s ease-out;
  z-index: 15;
}
.main-heat-banner:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 480px;
  background-image: url(/assets/images/heat/img_main_banner_pc.svg);
  background-size: 394px 180px;
  background-repeat: no-repeat;
  background-position: top right;
}
.main-heat-banner .banner-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  position: relative;
  padding: 32px;
}
.main-heat-banner .banner-group .text-box {
  max-width: 800px;
}
.main-heat-banner .banner-group .title {
  font-weight: 700;
  font-size: 25px;
  color: #000;
  line-height: 1.3;
}
.main-heat-banner .banner-group .text {
  margin-top: 8px;
  font-weight: 500;
  font-size: 18px;
  color: #000;
  line-height: 1.3;
  opacity: 0.7;
}
.main-heat-banner .banner-group .btn-banner {
  flex: none;
  position: relative;
  margin-top: 16px;
  height: 37px;
  padding: 0 30px 0 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 37px;
  color: #000;
  border-radius: 32px;
  background: #fff;
  box-sizing: border-box;
}
.main-heat-banner .banner-group .btn-banner::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  width: 15px;
  height: 15px;
  background-image: url(/assets/images/heat/icon_arrow_forward.svg);
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
@media screen and (min-width: 1025px) and (max-width: 1380px) {
  .main-heat-banner {
    max-width: calc(100% - 100px);
  }
}
@media screen and (max-width: 1024px) {
  .main-heat-banner {
    max-width: calc(100% - 40px);
    height: auto;
  }
  .main-heat-banner:before {
    background-image: url(/assets/images/heat/img_main_banner_mo.svg);
    background-size: auto 100%;
  }
}
@media screen and (max-width: 767px) {
  .main-heat-banner {
    max-width: calc(100% - 40px);
    height: 131px;
  }
  .main-heat-banner:before {
    background-image: url(/assets/images/heat/img_main_banner_mo.svg);
    background-size: 161px 131px;
  }
  .main-heat-banner .banner-group {
    padding: 16px;
  }
  .main-heat-banner .banner-group .title {
    font-size: 16px;
  }
  .main-heat-banner .banner-group .btn-banner {
    height: 24px;
    padding: 0 24px 0 12px;
    font-size: 12px;
    line-height: 24px;
  }
  .main-heat-banner .banner-group .btn-banner::after {
    right: 8px;
    width: 12px;
    height: 12px;
  }
}
@media screen and (max-width: 360px) {
  .main-heat-banner:before {
    right: -20px;
  }
}

/* ##### heat-wrap ###################### */
.heat-wrap .data {text-align: left;}

/* heat-service ###################### */
.ai-icon-face,
.ai-icon-robot {display: inline-block; width: 48px; height: 48px; vertical-align: top; background-size: cover;}
.ai-icon-face {background-image: url(/assets/images/heat/ai-icon-face.svg);}
.ai-icon-robot {background-image: url(/assets/images/heat/ai-icon-robot.svg);}
.heat-service .data-inner {
  max-width: 500px; 
  margin: 0 auto; 
  text-align: center;
}
.heat-service .heat-intro {
  padding: calc(7rem + 72px) 0 240px;
  background: #121212;
  color: #fff;
}
.heat-service .heat-intro .heat-heading {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
  color: #fff;
}
.heat-service .heat-intro .heat-heading > span {display: block;}
.heat-service .heat-tag-area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: 8px;
  margin: 48px -10px 0;
}
.heat-service .heat-tag-area .tag-item {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 321px;
  box-sizing: border-box;
}
.heat-service .heat-tag-area .tag-item.type02 {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
}
.heat-service .heat-tech {margin-top: -112px;}
.heat-service .heat-tech .heat-heading {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: var(--color-works-primary);
}
.heat-service .heat-tech .heat-img-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}
.heat-service .img-item,
.heat-service .img-item > img {
  width: 100%;
}
.heat-service .heat-slogan {
  padding: 40px 20px 80px;
}
.heat-service .heat-slogan .data-inner {
  max-width: 335px;
  padding: 0 20px;
}
.heat-service .heat-slogan .slogan-area p {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #222;
}
.heat-service .heat-slogan .slogan-area p + p {
  margin-top: 32px;
}
.heat-service .heat-slogan .slogan-area span {
  font-weight: 700;
}
.heat-service .heat-slogan .icon-logo {
  display: block; 
  margin: 0 auto; 
  width: 66.5px; 
  height: 12px;
  -webkit-mask: url(/assets/images/safeu/new_logo.svg) no-repeat 50%;
  -webkit-mask-size: contain;
  mask: url(/assets/images/safeu/new_logo.svg) no-repeat 50%;
  mask-size: contain;
  background-color: #222;
}
.heat-law {
  margin-bottom: 46px;
}
.heat-law * {
  color: #fff;
  vertical-align: middle;
}
.heat-law strong {
  font-weight: 700;
}
.heat-law .text1 {
  font-size: 16px;
  line-height: 130%;  
}
.heat-law .text1 strong {
  font-size: 21px;
}
.heat-law .text2 {
  margin-top: 24px;
  font-size: 24px;
  line-height: 130%;
}
.heat-law .text2 strong {
  font-size: 31px;
  color: var(--color-works-primary);
}
.heat-law .heat-img-area {
  margin-top: 32px;
}
.heat-law .img-item + .img-item {
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .heat-service .heat-intro {
    padding-top: calc(55px + 72px); 
    padding-left: 20px; 
    padding-right: 20px;
  }
  .heat-tech .data-inner {
    /* max-width: 335px;  */
    padding-left: 20px; 
    padding-right: 20px;
  }
}
@media screen and (max-width: 380px) {
  .heat-law br {
    display: none;
  }
  .heat-law .text2 strong {
    display: block;
  }
}

.heat-service .heat-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 1;
}
.heat-service .heat-banner .btn-banner {
  max-width: 600px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 60px;
  margin: 0 auto;
  background: var(--color-works-primary);
  backdrop-filter: blur(16px);
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  color: #000;
}
.heat-service .heat-banner span {
  position: relative;
  padding-right: 30px;
}
.heat-service .heat-banner span::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  width: 15px;
  height: 15px;
  -webkit-mask: url(/assets/images/heat/icon_arrow_forward.svg) no-repeat 50%;
  -webkit-mask-size: contain;
  mask: url(/assets/images/heat/icon_arrow_forward.svg) no-repeat 50%;
  mask-size: contain;
  background-color: #000;
  transform: translateY(-50%);
}
.heat-service #dFoot {
  padding-bottom: 140px
}
@media screen and (max-width: 767px) {
  .heat-service .footer-inner {padding-bottom: 0;}
}

/* heat-guide ###################### */
.heat-guide .heat-visual {
  position: relative;
  height: calc(7rem + 490px);
  background: url(/assets/images/heat/guide_visual_bg_pc.jpg) no-repeat 50%;
  background-size: cover;
}
.heat-guide .heat-visual img {max-width: none;}
.heat-guide .heat-visual .heat-heading {
  position: absolute; left: 50%; bottom: 103.74px; transform: translateX(-50%);
}
.heat-guide .heat-visual::after {
  content: '';
  position: absolute;
  left: 50%; 
  bottom: 0;
  width: 682px;
  height: 375px;
  background-image: url(/assets/images/heat/guide_visual_img_pc.png);
  background-repeat: no-repeat;
  background-position: 50% -32px;
  background-size: 730px 423px;
  transform: translateX(-50%);
  transition: all 0.7s ease;
}
@media screen and (max-width: 767px) {
  .heat-guide .heat-visual {
    height: calc(55px + 490px);
    background-image: url(/assets/images/heat/guide_visual_bg_mo.jpg);
  }
  .heat-guide .heat-visual::after {
    width: 351px;
    height: 265px;
    background-image: url(/assets/images/heat/guide_visual_img_mo.png);
    background-size: 375px 289px;
    background-position-y: 0;
  }
}
@media screen and (max-width: 360px) {
    .heat-guide .heat-visual::after {
      bottom: -27px;
      transform: translateX(-50%) scale(0.8);
    }
}

.heat-guide .data-inner {
  max-width: 1230px;
  margin: 0 auto;
}
@media screen and (max-width: 1270px) {
  .heat-guide .data-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.heat-wrap .guide-heading {
  position: relative;
  padding-left: 25px;
  font-weight: 700; 
  font-size: 24px; 
  line-height: 30px; 
  color: #000;
}
.heat-wrap .guide-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2.5px;
  width: 12px;
  height: 25px;
  background-color: #000;
}
.heat-wrap .heading-group {
  padding-top: 160px;
  padding-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .heat-wrap .heading-group {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .heat-wrap .guide-heading {
    font-size: 20px;
    line-height: 25px;
  }
  .heat-wrap .guide-heading::before {
    height: 20px;
   }
}

.guide-group {
  padding-bottom: 140px;
}
@media screen and (max-width: 1024px) {
  .guide-group {
    padding-bottom: 96px;
  }
}

.guide-group .box-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  position: relative;
  margin-bottom: 60px;
  padding: 19px 0 19px 126px;
}
.guide-group .box-heading .number {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 500;
  font-size: 100px;
  line-height: 125px;
  color: #363636;
}
.guide-group .box-heading .sub {
  font-weight: 600;
  font-size: 27px;
  line-height: 34px;
  color: #000;
}
.guide-group .box-heading .main {
  font-weight: 800;
  font-size: 40px;
  line-height: 50px;
  color: #000;
}
@media screen and (max-width: 1024px) {

}
@media screen and (max-width: 767px) {
  .guide-group .box-heading {
    margin-bottom: 50px;
    padding: 11px 0 11px 86px;
  }
  .guide-group .box-heading .number {
    font-size: 70px;
    line-height: 87px;
  }
  .guide-group .box-heading .sub {
    font-size: 20px;
    line-height: 25px;
  }
  .guide-group .box-heading .main {
    font-size: 30px;
    line-height: 37px;
  }
}

.guide-icon-delete {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(/assets/images/heat/icon_btn_delete.svg);
  background-size: cover;
  vertical-align: middle;
}
.guide-icon-trash {
  display: inline-block;
  width: 35px;
  height: 33px;
  background: url(/assets/images/heat/icon_btn_trash.svg);
  background-size: cover;
  vertical-align: middle;
}
.guide-icon-add {
  display: inline-block;
  width: 112px;
  height: 33px;
  background: url(/assets/images/heat/icon_btn_add.svg);
  background-size: cover;
  vertical-align: middle;
}
.guide-icon-modify {
  display: inline-block;
  width: 58px;
  height: 33px;
  background: url(/assets/images/heat/icon_btn_modify.svg);
  background-size: cover;
  vertical-align: middle;
}
.guide-text-box {
  margin-bottom: 80px;
}
.guide-text-box .text {
  padding: 0 10px;
  font-weight: 600;
  font-size: 22px;
  line-height: 27px;
  color: #000;
}
.guide-text-box .text-list {
  margin-top: 30px;
}
.guide-text-box .text-list li {
  padding: 0 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
}
.guide-text-box .text-list span {
  position: relative;
  padding: 0 9px;
}
.guide-text-box .text-list span::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 11px;
  background: #F7FF8F;
  z-index: -1;
}
.guide-text-box .text-list li + li {
  margin-top: 16px;
}


.guide-box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 77px;
}
.guide-box + .guide-box  {
  margin-top: 120px;
}
.guide-box + .sub-step  {
  margin-top: 60px;
}
.guide-box .info-area {
  width: 48.78048780487805%;
}
.guide-box .img-area {
  width: calc(100% - 48.78048780487805% - 77px);
}
.guide-box .img-area img {
  vertical-align: top;
}
.guide-box .step-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  min-height: 65px;
  padding: 20px 30px;
  font-weight: 700;
  /* font-size: 20px; */
  font-size: 22px;
  line-height: 25px;
  color: #000000;
  border-radius: 8px;
  background: #EDFF00;
  box-sizing: border-box;
  word-break: break-all;
}
.guide-box .step-title + .step-title {
  margin-top: 32px;
}
.guide-box .step-title + .subdirectory {
  margin-top: 8px;
}
.guide-box .step-title span {
  margin-right: 12px;
}
.guide-box .step-title.subdirectory {
  padding-left: 66px;
  background: #FFFFFF;
  font-weight: 600;
  /* font-size: 18px; */
  font-size: 20px;
  line-height: 22px;
  color: #232529;
}
.guide-box .step-title.subdirectory::before {
  content: '';
  position: absolute;
  top: 20.5px;
  left: 30px;
  width: 24px;
  height: 24px;
  background: url(/assets/images/heat/icon_subdirectory_arrow_right.svg);
  background-size: cover;  
}
.guide-box .step-title.white span {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: #232529;
}

.guide-box .step-title.dark {
  color: #F2FF40;
  background: #000;
}
.guide-box .step-title.gray {
  /* font-size: 16px; */
  /* line-height: 20px; */
  font-size: 18px;
  line-height: 24px;
  color: #232529;
  background: #F5F6F8;
}
.guide-box .guide-list {
  margin-top: 35px;
}
.guide-box .guide-list .sub {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #555555;
}
.guide-box .guide-list li {
  position: relative;
  padding-left: 35px;
  font-weight: 500;
  /* font-size: 16px; */
  font-size: 18px;
  line-height: 180%;
  color: #000;
  word-break: break-all;
}
.guide-box .guide-list li + li {
  margin-top: 16px;
}
.guide-box .guide-list .number {
  position: absolute;
  left: 0;
  top: 4px;
  width: 24px;
  height: 24px;
  font-weight: 700;
  /* font-size: 10px; */
  font-size: 12px;
  line-height: 24px;
  color: #FFFFFF;
  background: #232529;
  border-radius: 60px;
  text-align: center;
}
.guide-box .guide-list .remark {
  color: #9ECC20;
}
.guide-box .guide-list [class^=guide-icon] {
  margin: 0 10px;
} 
.guide-box .guide-list [class^=guide-icon] + [class^=guide-icon] {
  margin-left: -5px;
}

.guide-box .guide-list.type-dot li {
  padding-left: 12px;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
}
.guide-box .guide-list.type-dot li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
}
.guide-box .guide-list.type-dot li + li {
  margin-top: 8px;
}
.guide-box .guide-list.type-sub li + li {
  margin-top: 22px;
}

.guide-box.box-gray {
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  background: #F9F9F9;
  border-radius: 12px;
  gap: 0;
}
.guide-box.box-gray .step-title {
  min-height: auto;
  padding: 0;
  background: none;
  border-radius: 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #000000;
}
.guide-box.box-gray .info-area {
  width: auto;
  max-width: 510px;
}
.guide-box.box-gray .img-area {
  width: 49.74%;
}
.guide-box.box-gray + .guide-box.box-gray {
  margin-top: 42px;
}

@media screen and (max-width: 1024px) {
  .guide-box {
    flex-direction: column;
    gap: 40px;
  }
  .guide-box + .guide-box  {
    margin-top: 140px;
  }
  .guide-box + .sub-step  {
    margin-top: 70px;
  }
  .guide-box .info-area,
  .guide-box .img-area {
    width: 100%;
  }
  .guide-box .img-area {
    text-align: center;
  }
  .guide-box.box-gray {
    align-items: start;
    gap: 40px;
  }
  .guide-box.box-gray .img-area {
    width: 100%;
  }
}

.guide-text-box .smallmo-data {
  display: none;
}
@media screen and (max-width: 767px) {
  .guide-text-box .pctab-data {
    display: none;
  }
  .guide-text-box .smallmo-data {
    display: block;
  }
}

/* terms-table ###################### */
/* .table-data {display: none;}
.table-terms {width: 1005; overflow: hidden; overflow-x: auto;}
.terms-table {
  width: 100%;
  border: 0;
  border-top: 2px solid #222; 
  border-collapse:collapse;
}
.terms-table th,
.terms-table td {
  padding: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  border: 1px solid #ccc;
}
.terms-table th:first-child,
.terms-table td:first-child {
  border-left: none;
}
.terms-table th:last-child,
.terms-table td:last-child {
  border-right: none;
}
.terms-table th {
  font-weight: 500;
  color : #222;
  border-bottom: 1px solid #222;
  text-align: center;
  background: #fafafa;
}
.terms-table .fill {
  background: #eee;
}
.terms-table.center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .terms-table {
    width: 1024px;
  }
} */