/* Sub Visual */
.sub-visual {
  position: relative;
  width: 100%;
  height:500px;
}

.sub-visual-container {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 1500px;
  width: 95%;
  height: 100%;
  margin:0 auto;
}

.sub-visual-title {
  font-size:5.2rem;
  font-weight: 700; 
  margin-bottom: 20px;
}

.sub-visual-text {
  font-size: 2.4rem;
}

.sub-visual-nav {
  position: absolute;
  left:0;
  bottom:0;
  width: 100%;
  padding:10px;
  border-radius:200px;
  background-color: #F5F5F5;
}

.sub-visual-nav ul {
  display: flex;
  text-align: center;
  gap:10px;
}

.sub-visual-nav li {
  flex:1 1;
}

.sub-visual-nav a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  border-radius: 200px;
  background-color: #fff;
  font-size: 2rem;
}

.sub-visual-nav li.on a {
  font-weight: 700;
  color:#fff;
  background-color: #A5CD39; 
}

@media screen and (max-width:1200px) {
  .sub-visual {
    height: 380px;
  }

  .sub-visual-title {
    font-size: 4.2rem;
  }

  .sub-visual-text {
    font-size: 2rem;
  }

  .sub-visual-nav a {
    font-size: 1.8rem;
  }
}
@media screen and (max-width:1024px) {
  .sub-visual-title {
    margin-bottom: 16px;
  }

  .sub-visual-nav {
    padding: 6px;
  }
  
  .sub-visual-nav ul {
    gap:6px;
  }

  .sub-visual-nav a {
    height: 40px;
  }
}
@media screen and (max-width:768px) {
  .sub-visual {
    height: 300px;
    background-color:#F5F5F5;
  }

  .sub-visual-nav {
    display: none;
  }

  .sub-visual-title {
    font-size: 3.4rem;
  }

  .sub-visual-text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width:576px) {
  .sub-visual {
    height: 140px;
  }
  
  .sub-visual-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .sub-visual-text {
    font-size: 1.4rem;
  }
}


/* Overview */
.overview {
  padding: 150px 0px;
}

.overview .tit {
  line-height:1.4;
}

.overview .img {
  border-radius: 30px;
  overflow: hidden;
}

.overview .txt {
  display: flex;
  justify-content: space-between;
}

.overview .lt {
  width: 41%;
}

.overview .rt {
  width: 49.2%;
}

.overview .t01 {
  line-height: 1.45;
}

.overview .t02 {
  line-height: 1.65;
}

.overview .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap:10px;
  position: absolute;
  left:0;
  bottom:0;
  width: 360px;
  height: 70px;
  border-radius: 10px;
  background-color: #003763;
  transition: all .3s ease;
}

.overview .btn i {
  display: block;
  width: 21px;
  height:21px;
  background: url('/asset/img/icon/ico_download.svg') no-repeat center;
}

@media screen and (max-width:1200px) {
  .overview {
    padding: 120px 0px;
  }

  .overview .lt {
    width: 45%;
  }
}
@media screen and (max-width:1024px) {
  .overview {
    padding: 100px 0px;
  }

  .overview .btn {
    gap:6px;
    width: 280px;
    height: 54px;
  }

  .overview .btn i {
    width: 16px;
    height:16px;
  }
}
@media screen and (max-width:768px) {
  .overview {
    padding: 80px 0px;
  }

  .overview .txt {
    flex-direction: column;
  }

  .overview .lt {
    width: 100%;
    margin-bottom:20px;
  }

  .overview .rt {
    width: 100%;
  }

  .overview .btn {
    position: relative;
    width: 220px;
    height: 46px;
    margin-top: 10px;
  }

  .overview .btn i {
    background-size: auto 18px;
  }
}
@media screen and (max-width:576px) {
  .overview {
    padding: 60px 0px;
  }

  .overview .btn {
    gap:4px;
    width: 140px;
    height: 38px;
  }

  .overview .btn i {
    background-size: auto 15px;
  }
}


/* Ceo */
.ceo {
  padding: 150px 0px;
}

.ceo .img {
  position: relative;
  padding: 70px 0px 60px;
}

.ceo .img::after {
  content: "";
  display: block;
  position: absolute;
  top:0;
  left:50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: url('/asset/img/sub/about/ceo/sec_bak.jpg') no-repeat center / cover;
  z-index: -1;
}

.ceo .img i {
  display: block;
  width: 619px;
  height: 123px;
  margin-bottom: 100px;
  background:url('/asset/img/sub/about/ceo/sec_im.png') no-repeat center / contain;
}

.ceo .img p {
  line-height:1.5;
}

.ceo .txt .t01 {
  line-height: 1.6;
}

.ceo .txt .t02 i {
  display: block;
  width: 69px;
  height:32px;
  background: url('/asset/img/icon/ico_leaves.svg') no-repeat center;
}

.ceo .txt .t02 span {
  display: flex;
  align-items: center;
  gap:10px;
}

@media screen and (max-width:1200px) {
  .ceo {
    padding: 120px 0px;
  }
}
@media screen and (max-width:1024px) {
  .ceo {
    padding: 100px 0px;
  }

  .ceo .img {
    padding: 50px 0px 40px;
  }

  .ceo .img i {
    display: block;
    width: 469px;
    height: 93px;
    margin-bottom: 40px;
  }

  .ceo .txt .t02 span {
    gap:6px;
  }

  .ceo .txt .t02 i {
    width: 59px;
    height: 26px;
    background-size: auto 26px;
  }
}
@media screen and (max-width:768px) {
  .ceo {
    padding:80px 0px;
  }

  .ceo .img {
    padding: 36px 0px 20px;
  }

  .ceo .img i {
    width: 329px;
    height: 63px;
    margin-bottom: 20px;
  }

  .ceo .txt .t02 i {
    width: 46px;
    height: 20px;
    background-size: auto 20px;
  }
}
@media screen and (max-width:576px) {
  .ceo {
    padding: 60px 0px;
  }

  .ceo .img i {
    width: 219px;
    height: 43px;
    margin-bottom: 10px;
  }

  .ceo .txt .t02 i {
    width: 30px;
    height: 12px;
    background-size: auto 12px;
  }
}


/* History */
.history {
  padding: 150px 0px;
}

.history .item {
  display: flex;
  justify-content: space-between;
}

.history .item:not(:last-child){
  margin-bottom: 100px;
}

.history .lt {
  width: 380px;
}

.history .rt {
  width: calc(100% - 380px);
}

.history dl {
  display:flex;
  min-height:160px;
  padding: 20px 0px;
  border-top: 1px solid #D8D8D8;
}

.history dt {
  width: 250px;
  line-height: 1.8;
}

.history dd {
  width: calc(100% - 250px);
}

.history dd span {
  display: block;
  line-height: 1.8;
}

@media screen and (max-width:1200px) {
  .history {
    padding: 120px 0px;
  }

  .history .item:not(:last-child){
    margin-bottom: 80px;
  }

  .history dl {
    min-height:140px;
  }

  .history dt {
    width: 150px;
  }

  .history dd {
    width: calc(100% - 150px);
  }
}
@media screen and (max-width:1024px) {
  .history {
    padding: 100px 0px;
  }

  .history .item:not(:last-child){
    margin-bottom: 60px;
  }

  .history .lt {
    width: 250px;
  }

  .history .rt {
    width: calc(100% - 250px);
  }

  .history dl {
    min-height: 130px;
    padding: 16px 0px;
  }
}
@media screen and (max-width:768px) {
  .history {
    padding: 80px 0px;
  }

  .history .item {
    flex-wrap: wrap;
  }

  .history .item:not(:last-child) {
    margin-bottom: 40px;
  }

  .history .lt {
    width: 100%;
    margin-bottom: 20px;
  }

  .history .rt {
    width: 100%;
  }

  .history dl {
    min-height: auto;
  }

  .history dt {
    width: 100px;
  }

  .history dd {
    width: calc(100% - 100px);
  }
}
@media screen and (max-width:576px) {
  .history {
    padding: 60px 0px;
  }

  .history .item:not(:last-child) {
    margin-bottom:30px;
  }

  .history .lt {
    margin-bottom: 12px;
  }

  .history dl {
    padding: 10px 0px;
  }

  .history dt {
    width: 50px;
  }

  .history dd {
    width: calc(100% - 50px);
  }
}


/* Cert */
.cert {
  padding: 150px 0px;
}
@media screen and (max-width:1200px) {
  .cert {
    padding: 120px 0px;
  }
}
@media screen and (max-width:1024px) {
  .cert {
    padding: 100px 0px;
  }
}
@media screen and (max-width:768px) {
  .cert {
    padding: 80px 0px;
  }
}
@media screen and (max-width:576px) {
  .cert {
    padding: 60px 0px;
  }
}


/* Location */
.location {
  padding: 150px 0px;
}

.location .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(600/1500*100%);
  border-radius: 30px;
  overflow:hidden;
}

.location .img iframe {
  display: block;
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
}

.location .info {
  display: flex;
  gap:24px;
}

.location .info li {
  flex:1 1;
}

.location .info .card {
  display: flex;
  gap:10px;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 40px;
  border-radius:30px;
  background-color: #F5F5F5;
}

.location .info i {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height:24px;
  margin-top: 5px;
}

.location .info .txt-wrap {
  width: calc(100% - 34px);
}

.location .info .txt .t01 {
  font-size: 2.8rem;
}

.location .info .txt .t02 {
  font-size: 2rem;
  line-height: 1.6 ;
}

@media screen and (max-width:1200px) {
  .location {
    padding: 120px 0px;
  }

  .location .info .card  {
    padding:40px 8%;
  }

  .location .info .txt .t01 {
    font-size: 2.4rem;
  }

  .location .info .txt .t02 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width:1024px) {
  .location {
    padding: 100px 0px;
  }

  .location .info {
    gap:16px;
  }

  .location .info .card {
    padding: 30px 8%;
    gap:6px;
  }

  .location .info i {
    width: 20px;
    height:20px;
    background-size: auto 20px;
  }

  .location .info .txt-wrap {
    width: calc(100% - 26px);
  }
}
@media screen and (max-width:768px) {
  .location {
    padding: 80px 0px;
  }

  .location .info {
    flex-wrap: wrap;
    gap:8px;
  }

  .location .info li {
    flex:1 1 100%;
    max-width: 100%;
  }

  .location .info .card {
    padding: 30px;
  }

  .location .info i {
    margin-top: 3px;
  }

  .location .info .txt .t01 {
    font-size: 2rem;
  }

  .location .info .txt .t02 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width:576px) {
  .location {
    padding: 60px 0px;
  }

  .location .img {
    height: 320px;
    padding-top: 0px;
    border-radius: 10px;
  }

  .location .info {
    gap:4px;
  }

  .location .info .card {
    gap:4px;
    padding: 20px;
    border-radius: 10px;
  }

  .location .info i {
    width: 14px;
    height:14px;
    margin-top: 2px;
    background-size: auto 14px;
  }

  .location .info .txt-wrap {
    width: calc(100% - 18px);
  }

  .location .info .txt .t01 {
    font-size: 1.4rem;
  }

  .location .info .txt .t02 {
    font-size: 1.2rem;
  }
}


/* Business Common */
.biz-title {
  display: flex;
  align-items: center;
  gap:20px;
}

.biz-title::before {
  content: "";
  display: block;
  width:56px;
  height: 26px;
  background: url('/asset/img/icon/ico_leaves.svg') no-repeat center / contain;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
  .biz-title {
    gap:12px;
  }

  .biz-title::before {
    width:52px;
    height: 22px;
  }
}
@media screen and (max-width:768px) {
  .biz-title::before {
    width:42px;
    height: 20px;
  }
}
@media screen and (max-width:576px) {
  .biz-title {
    gap:6px;
  }

  .biz-title::before {
    width:28px;
    height: 14px;
  }
}


/* Hee */
.hee {
  position: relative;
  padding: 150px 0px;
}

.hee::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top:0;
  right:0;
  background: url('/asset/img/sub/business/hee/sec_bak.png') no-repeat right center;
  z-index: -1;
}

.hee .bd {
  display: flex;
  justify-content: space-between;
}


.hee .lt,
.hee .rt {
  width: 49%;
}

.hee .txt {
  padding:30px 0px;
}

.hee .txt .t02 {
  line-height: 1.6; 
}

.hee .img {
  text-align: center;
  font-size: 0px;
}

@media screen and (max-width:1200px) {
  .hee {
    padding: 120px 0px;
  }

  .hee::after {
    background-position: right -100px center;
    background-size: auto 90%;
  }
}
@media screen and (max-width:1024px) {
  .hee {
    padding: 100px 0px;
  }
}
@media screen and (max-width:768px) {
  .hee {
    padding: 80px 0px;
  }

  .hee::after {
    top:-50%;
    background-size: auto 324px;
  }

  .hee .bd {
    flex-wrap: wrap;
  }

  .hee .lt, .hee .rt {
    width: 100%;
  }

  .hee .lt {
    order: 2;
  }

  .hee .rt {
    position: relative;
    order: 1;
  }

  .hee .img img {
    width: 324px;
  }

  .hee .txt {
    padding:30px 0px 0px;
  }
}
@media screen and (max-width:576px) {
  .hee {
    padding: 60px 0px;
  }
}


/* Spg */
.spg .sec01 {
  padding: 150px 0px;
}

.spg .sec01 .article:first-child {
  padding-bottom: 150px;
}

.spg .sec01 .list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin: -12px;
}

.spg .sec01 .list::after {
  content: "";
  display: block;
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 369px;
  height: 348px;
  background: url('/asset/img/sub/business/spg/sec01_ele.svg') no-repeat center / contain;
}

.spg .sec01 .list li {
  flex:1 0 33.33%;
  max-width: 33.33%;
  padding: 12px;
}

.spg .sec01 .list .card {
  height: 100%;
  min-height: 488px;
  padding: 50px 10%;
  border-radius: 30px;
  background-color:#F5F5F5;
  transition: all .3s ease;
}

.spg .sec01 .list .icon {
  display: block;
  width: 100px;
  height:100px;
  margin-bottom: 60px;
  background-repeat: no-repeat;
  background-position: center;
}

.spg .sec01 .list .txt .t01 {
  transition: all .3s ease;
}

.spg .sec01 .list .txt .t02 {
  line-height:1.5;
  transition: all .3s ease;
}

.spg .sec01 .step {
  display: flex;
  margin:-12px;
}

.spg .sec01 .step li {
  position: relative;
  flex:1 1;
  padding: 12px;
}

.spg .sec01 .step li:not(:last-child) .card::after {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  right: -42px;
  transform: translateY(-50%);
  width: 60px;
  height:60px;
  background: url('/asset/img/sub/business/spg/sec01_arr.svg') no-repeat center / cover;
  z-index:1;
}

.spg .sec01 .step .card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:10px;
  width: 100%;
  padding: 50px 0px;
  border-radius: 80px;
  background-color: #f5f5f5;
}

.spg .sec01 .step .icon {
  display: block;
  width: 60px;
  height:60px;
  background-repeat: no-repeat;
  background-position: center;
}

.spg .sec01 .step .txt .t02 {
  line-height:1.5;
}

.spg .sec02 {
  padding: 150px 0px;
  background-color:#F6FAEC;
}

.spg .sec03 {
  padding: 150px 0px;
}

.spg .sec03 table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  border:1px solid #B3B3B3;
}

.spg .sec03 table tr {
  border-bottom: 1px solid #B3B3B3;
}

.spg .sec03 table th,
.spg .sec03 table td {
  height: 50px;
  padding: 10px;
  font-size: 1.8rem;
  border-right: 1px solid #B3B3B3;
}

.spg .sec03 table th {
  color:#003763;
  background-color:#E6EBF0;
}

@media screen and (max-width:1200px) {
  .spg .sec01 {
    padding: 120px 0px;
  }

  .spg .sec01 .article:first-child {
    padding-bottom: 120px;
  }

  .spg .sec02 {
    padding: 120px 0px;
  }

  .spg .sec03 {
    padding: 120px 0px;
  }

  .spg .sec03 table th, .spg .sec03 table td {
    font-size: 1.6rem;
  }
}
@media screen and (max-width:1024px) {
  .spg .sec01 {
    padding: 100px 0px;
  }

  .spg .sec01 .article:first-child {
    padding-bottom: 100px;
  }

  .spg .sec01 .list {
    margin: -6px;
  }

  .spg .sec01 .list::after {
    right: 0px;
    width: 288px;
    height: 268px;
    background-size: auto 268px;
  }

  .spg .sec01 .list li {
    padding: 6px;
  }

  .spg .sec01 .list .card {
    min-height: 428px;
    padding: 36px 10%;
  }

  .spg .sec01 .list .icon {
    width: 80px;
    height:80px;
    margin-bottom: 40px;
    background-size: auto 80px;
  }

  .spg .sec01 .step {
    margin:-6px;
  }

  .spg .sec01 .step li {
    padding: 6px;
  }

  .spg .sec01 .step li:not(:last-child) .card::after {
    right: -24px;
    width: 40px;
    height:40px;
    background-size: auto 40px;
  }

  .spg .sec01 .step .card {
    gap:6px;
    padding: 36px 0px;
    border-radius: 40px;
  }

  .spg .sec02 {
    padding: 100px 0px;
  }

  .spg .sec03 {
    padding: 100px 0px;
  }

  .spg .sec03 table th, .spg .sec03 table td {
    height: 44px;
    padding: 6px;
  }
}
@media screen and (max-width:768px) {
  .spg .sec01 {
    padding: 80px 0px;
  }

  .spg .sec01 .article:first-child {
    padding-bottom: 80px;
  }

  .spg .sec01 .list::after {
    display: none;
  }

  .spg .sec01 .list li {
    flex:1 1 100%;
    max-width: 100%;
  }

  .spg .sec01 .list .card {
    min-height: auto;
    padding: 30px;
  }

  .spg .sec01 .list .icon {
    width: 60px;
    height:60px;
    margin-bottom: 30px;
    background-size: auto 60px;
  }

  .spg .sec01 .list .txt .t01 br {
    display: none;
  }

  .spg .sec01 .step {
    flex-wrap: wrap;
  }

  .spg .sec01 .step li {
    flex:1 1 100%;
    max-width: 100%;
  }

  .spg .sec01 .step li:not(:last-child) .card::after {
    display: none;
  }

  .spg .sec01 .step .card {
    border-radius: 30px;
  }

  .spg .sec02 {
    padding: 80px 0px;
  }

  .spg .sec03 {
    padding: 80px 0px;
  }

  .spg .sec03 .bd {
    position: relative;
    overflow: hidden;
  }

  .spg .sec03 .table-wrap {
    width: 100%;
    overflow-x: auto;
  }

  .spg .sec03 .table-wrap::after {
    content: "";
    display:block;
    position: absolute;
    top: 0;
    left: 100%;
    width: 50px;
    height: 100%;
    border-radius: 10px 0 0 10px/50% 0 0 50%;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.25);
  }

  .spg .sec03 table {
    width:900px;
  }

  .spg .sec03 table th, .spg .sec03 table td {
    font-size: 1.4rem;
  }
}
@media screen and (max-width:576px) {
  .spg .sec01 {
    padding: 60px 0px;
  }

  .spg .sec01 .article:first-child {
    padding-bottom: 60px;
  }

  .spg .sec01 .list {
    margin: -4px;
  }

  .spg .sec01 .list li {
    padding: 4px;
  }

  .spg .sec01 .list .card {
    padding: 20px;
    border-radius: 10px;
  }

  .spg .sec01 .list .icon {
    width: 40px;
    height:40px;
    margin-bottom: 20px;
    background-size: auto 40px;
  }

  .spg .sec01 .step {
    margin: -2px;
  }

  .spg .sec01 .step li {
    padding: 2px;
  }

  .spg .sec01 .step .card {
    padding:20px 0px;
    border-radius: 10px;
  }

  .spg .sec01 .step .icon {
    width: 40px;
    height:40px;
    background-size: auto 40px;
  }

  .spg .sec02 {
    padding: 60px 0px;
  }

  .spg .sec03 {
    padding: 60px 0px;
  }

  .spg .sec03 table {
    width:600px;
  }

  .spg .sec03 table th, .spg .sec03 table td {
    height: 36px;
    padding: 4px;
    font-size: 1.2rem;
  }
}


/* Ren */
/* Ren */
.ren {
  padding: 150px 0px;
}

.ren .article01,
.ren .article02 {
  padding: 0px 0px 150px;
}

.ren .biz-text {
  line-height: 1.6;
}

.ren table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  border:1px solid #B3B3B3;
}

.ren table tr {
  border-bottom: 1px solid #B3B3B3;
}

.ren table td {
  height: 50px;
  padding: 10px;
  font-size: 1.8rem;
  border-right: 1px solid #B3B3B3;
}

.ren .table td.td-hd {
  height: 50px;
}

.ren .table td em {
  font-size: 1.6rem;
}

.ren .point dd {
  display: flex;
  gap:10px;
}

.ren .point i {
  display: block;
  width: 20px;
  height:20px;
  margin-top: 5px;
  background: url('/asset/img/sub/business/ew/sec_point.svg') no-repeat center / cover;
}

.ren .point span {
  width: calc(100% - 30px);
}

.ren .pin {
  display: flex;
  gap:10px;
}

.ren .pin i {
  display: block;
  width: 20px;
  height:20px;
  margin-top: 5px;
  background: url('/asset/img/sub/business/ew/sec_pin.svg') no-repeat center / cover;
}

.ren .pin span {
  width: calc(100% - 30px);
}

.ren .photo {
  display: flex;
  gap:24px;
}

.ren .photo li {
  flex:1 1;
}

.ren .caution {
  padding:50px;
  border-radius: 30px;
  background-color: #f5f5f5;
}

.ren .caution h5 {
  display: flex;
  align-items: center;
  gap:10px;
}

.ren .caution h5 i {
  display: block;
  width: 40px;
  height:40px;
  background: url('/asset/img/sub/business/ew/sec_caution.svg') no-repeat center / cover;
}

.ren .caution dd {
  display: flex;
}

.ren .caution dd span {
  display: block;
  width: calc(100% - 17px);
}

.ren .caution dd span.dot {
  width: 17px;
}

.ren .step {
  display: flex;
  justify-content: space-between;
  gap:8%;
}

.ren .step li {
  flex:1 1;
  text-align: center;
}

.ren .step .img {
  position: relative;
}

.ren .step li:not(:last-child) .img::after {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  right:-52%;
  transform: translateY(-50%);
  /* width: 90px; */
  width: 44.6078%;
  height: 6.6667%;
  /* height: 16px; */
  background: url('/asset/img/sub/business/ew/sec_arr.svg') no-repeat center / contain;
}

@media screen and (max-width:1200px) {
  .ren {
    padding: 120px 0px;
  }

  .ren .article01,
  .ren .article02 {
    padding: 0px 0px 120px;
  }

  .ren table td {
    font-size: 1.6rem;
  }

  .ren table td em {
    font-size: 1.4rem;
  }

  .ren .point i {
    margin-top: 4px;
  }

  .ren .pin i {
    margin-top: 4px;
  }

  .ren .step {
    gap:6%;
  }

  .ren .step li:not(:last-child) .img::after {
    right: -35%;
    width: 30%;
  }

}
@media screen and (max-width:1024px) {
  .ren {
    padding: 100px 0px;
  }

  .ren .article01,
  .ren .article02 {
    padding: 0px 0px 100px;
  }

  .ren table td {
    height: 44px;
    padding: 6px;
  }

  .ren .table td.td-hd {
    height: 44px;
  }

  .ren .pin {
    gap:6px;
  }

  .ren .point dd {
    gap:6px;
  }

  .ren .photo {
    gap:12px;
  }

  .ren .caution {
    padding: 36px;
  }

  .ren .caution h5 {
    gap:6px;
  }

  .ren .caution h5 i {
    width: 30px;
    height:30px;
    background-size: auto 30px;
  }

  .ren .step {
    flex-wrap: wrap;
    justify-content: center;
    gap:0px;
    margin: -24px;
  }

  .ren .step li {
    flex:1 0 33.33%;
    max-width: 33.33%;
    padding: 24px;
  }

  .ren .step li:not(:last-child) .img::after {
    display: none;
  }
}
@media screen and (max-width:768px) {
  .ren {
    padding: 80px 0px;
  }

  .ren .bd {
    position: relative;
    overflow: hidden;
  }

  .ren .article01,
  .ren .article02 {
    padding: 0px 0px 80px;
  }

  .ren .table-wrap {
    width: 100%;
    overflow-x: auto;
  }

  .ren .table-wrap::after {
    content: "";
    display:block;
    position: absolute;
    top: 0;
    left: 100%;
    width: 50px;
    height: 100%;
    border-radius: 10px 0 0 10px/50% 0 0 50%;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.25);
  }

  .ren table {
    width: 800px;
  }

  .ren table td {
    height: 36px;
    font-size: 1.4rem;
  }

  .ren .table td em {
    font-size: 1.2rem;
  }

  .ren .point i {
    width: 16px;
    height:16px;
    margin-top: 3px;
    background-size: auto 16px;
  }

  .ren .pin i {
    width: 16px;
    height:16px;
    margin-top: 3px;
    background-size: auto 16px;
  }

  .ren .pin br {
    display: none;
  }

  .ren .photo {
    flex-wrap: wrap;
    gap:24px;
  }

  .ren .photo li {
    flex:1 1 100%;
  }

  .ren .caution {
    padding: 30px;
  } 

  .ren .step {
    margin: -12px;
  }

  .ren .step li {
    padding: 12px;
  }

  .ren .step img {
    width: 140px;
  }

}
@media screen and (max-width:576px) {
  .ren {
    padding: 60px 0px;
  }

  .ren .article01,
  .ren .article02 {
    padding: 0px 0px 60px;
  }

  .ren table {
    width: 600px;
  }

  .ren table td {
    font-size: 1.2rem;
  }

  .ren .table td.td-hd {
    height: 36px;
  }

  .ren .table td em {
    font-size: 1rem;
  }

  .ren .point dd {
    gap:4px;
  }

  .ren .point i {
    width: 14px;
    height:14px;
    background-size: auto 14px;
  }

  .ren .pin {
    gap:4px;
  }

  .ren .pin i {
    width: 14px;
    height:14px;
    background-size: auto 14px;
  }

  .ren .caution {
    padding: 20px 12px;
    border-radius: 10px;
  }

  .ren .caution h5 {
    gap:4px;
  }

  .ren .caution h5 i {
    width: 24px;
    height:24px;
    background-size: auto 24px;
  }

  .ren .caution dd span {
    width: calc(100% - 12px);
  }

  .ren .caution dd span.dot {
    width: 12px;
  }

  .ren .caution dd br {
    display: none;
  }

  .ren .step {
    margin: -2px;
  }

  .ren .step li {
    flex:1 1 100%;
    max-width: 100%;
    padding: 2px;
    text-align: left;
  }

  .ren .step .card {
    display: flex;
    align-items: center;
    border-radius:10px;
    padding:0px 16px;
    background-color:#f5f5f5 ;
  }

  .ren .step img {
    width: 70px;
  }
}



/* Ew */
.ew {
  padding: 150px 0px;
}

.ew .article01,
.ew .article02 {
  padding: 0px 0px 150px;
}

.ew .table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  border:1px solid #B3B3B3;
}

.ew .table tr {
  border-bottom: 1px solid #B3B3B3;
}

.ew .table td {
  height: 80px;
  padding: 10px;
  font-size: 1.8rem;
  line-height:1.5;
  border-right: 1px solid #B3B3B3;
}

.ew .table td.td-hd {
  height: 50px;
}

.ew .table td em {
  font-size: 1.6rem;
}

.ew .point dd {
  display: flex;
  gap:10px;
}

.ew .point i {
  display: block;
  width: 20px;
  height:20px;
  margin-top: 5px;
  background: url('/asset/img/sub/business/ew/sec_point.svg') no-repeat center / cover;
}

.ew .point span {
  width: calc(100% - 30px);
}

.ew .pin {
  display: flex;
  gap:10px;
}

.ew .pin i {
  display: block;
  width: 20px;
  height:20px;
  margin-top: 5px;
  background: url('/asset/img/sub/business/ew/sec_pin.svg') no-repeat center / cover;
}

.ew .pin span {
  width: calc(100% - 30px);
}

.ew .photo {
  display: flex;
  gap:24px;
}

.ew .photo li {
  flex:1 1;
}

.ew .caution {
  padding:50px;
  border-radius: 30px;
  background-color: #f5f5f5;
}

.ew .caution h5 {
  display: flex;
  align-items: center;
  gap:10px;
}

.ew .caution h5 i {
  display: block;
  width: 40px;
  height:40px;
  background: url('/asset/img/sub/business/ew/sec_caution.svg') no-repeat center / cover;
}

.ew .caution dd {
  display: flex;
}

.ew .caution dd span {
  display: block;
  width: calc(100% - 17px);
}

.ew .caution dd span.dot {
  width: 17px;
}

.ew .step {
  display: flex;
  justify-content: space-between;
  gap:8%;
}

.ew .step li {
  flex:1 1;
  text-align: center;
}

.ew .step .img {
  position: relative;
}

.ew .step li:not(:last-child) .img::after {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  right:-52%;
  transform: translateY(-50%);
  /* width: 90px; */
  width: 44.6078%;
  height: 6.6667%;
  /* height: 16px; */
  background: url('/asset/img/sub/business/ew/sec_arr.svg') no-repeat center / contain;
}

.ew .order .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ew .order .lt,
.ew .order .rt {
  width: 49.2%;
}

.ew .order .rt .txt {
  padding-left: 9.5%;
}

@media screen and (max-width:1200px) {
  .ew {
    padding: 120px 0px;
  }

  .ew .article01,
  .ew .article02 {
    padding: 0px 0px 120px;
  }

  .ew .table td {
    font-size: 1.6rem;
  }

  .ew .table td em {
    font-size: 1.4rem;
  }

  .ew .point i {
    margin-top: 4px;
  }

  .ew .pin i {
    margin-top: 4px;
  }

  .ew .step {
    gap:6%;
  }

  .ew .step li:not(:last-child) .img::after {
    right: -35%;
    width: 30%;
  }
}
@media screen and (max-width:1024px) {
  .ew {
    padding: 100px 0px;
  }

  .ew .article01,
  .ew .article02 {
    padding: 0px 0px 100px;
  }

  .ew .table td {
    height: 60px;
    padding: 6px;
  }

  .ew .table td.td-hd {
    height: 44px;
  }

  .ew .pin {
    gap:6px;
  }

  .ew .point dd {
    gap:6px;
  }

  .ew .photo {
    gap:12px;
  }

  .ew .caution {
    padding: 36px;
  }

  .ew .caution h5 {
    gap:6px;
  }

  .ew .caution h5 i {
    width: 30px;
    height:30px;
    background-size: auto 30px;
  }

  .ew .step {
    flex-wrap: wrap;
    justify-content: center;
    gap:0px;
    margin: -24px;
  }

  .ew .step li {
    flex:1 0 33.33%;
    max-width: 33.33%;
    padding: 24px;
  }

  .ew .step li:not(:last-child) .img::after {
    display: none;
  }

  .ew .order .rt .txt {
    padding-left: 4.5%;
  }
}
@media screen and (max-width:768px) {
  .ew {
    padding: 80px 0px;
  }

  .ew .article01,
  .ew .article02 {
    padding: 0px 0px 80px;
  }

  .ew .table-scroll-wrap {
    position: relative;
    overflow: hidden;
  }

  .ew .table-wrap {
    width: 100%;
    overflow-x: auto;
  }

  .ew .table-wrap::after {
    content: "";
    display:block;
    position: absolute;
    top: 0;
    left: 100%;
    width: 50px;
    height: 100%;
    border-radius: 10px 0 0 10px/50% 0 0 50%;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.25);
  }

  .ew .table {
    width: 800px;
  }

  .ew .table td {
    font-size: 1.4rem;
  }

  .ew .table td em {
    font-size: 1.2rem;
  }

  .ew .point i {
    width: 16px;
    height:16px;
    margin-top: 3px;
    background-size: auto 16px;
  }

  .ew .pin i {
    width: 16px;
    height:16px;
    margin-top: 3px;
    background-size: auto 16px;
  }

  .ew .pin br {
    display: none;
  }

  .ew .photo {
    flex-wrap: wrap;
    gap:24px;
  }

  .ew .photo li {
    flex:1 1 100%;
  }

  .ew .caution {
    padding: 30px;
  } 

  .ew .step {
    margin: -12px;
  }

  .ew .step li {
    padding: 12px;
  }

  .ew .step img {
    width: 140px;
  }

  .ew .order .box {
    flex-wrap: wrap;
  }

  .ew .order .box:nth-child(2) .lt {
    order: 2;
  }

  .ew .order .box:nth-child(2) .rt {
    order: 1;
  }

  .ew .order .lt, .ew .order .rt {
    width: 100%;
  }

  .ew .order .rt .txt,
  .ew .order .txt {
    padding-left:0px;
    padding-top: 20px;
  }
}
@media screen and (max-width:576px) {
  .ew {
    padding: 60px 0px;
  }

  .ew .article01,
  .ew .article02 {
    padding: 0px 0px 60px;
  }

  .ew .table {
    width: 600px;
  }

  .ew .table td {
    height: 50px;
    font-size: 1.2rem;
  }

  .ew .table td.td-hd {
    height: 36px;
  }

  .ew .table td em {
    font-size: 1rem;
  }

  .ew .point dd {
    gap:4px;
  }

  .ew .point i {
    width: 14px;
    height:14px;
    background-size: auto 14px;
  }

  .ew .pin {
    gap:4px;
  }

  .ew .pin i {
    width: 14px;
    height:14px;
    background-size: auto 14px;
  }

  .ew .caution {
    padding: 20px 12px;
    border-radius: 10px;
  }

  .ew .caution h5 {
    gap:4px;
  }

  .ew .caution h5 i {
    width: 24px;
    height:24px;
    background-size: auto 24px;
  }

  .ew .caution dd span {
    width: calc(100% - 12px);
  }

  .ew .caution dd span.dot {
    width: 12px;
  }

  .ew .caution dd br {
    display: none;
  }

  .ew .step {
    margin: -2px;
  }

  .ew .step li {
    flex:1 1 100%;
    max-width: 100%;
    padding: 2px;
    text-align: left;
  }

  .ew .step .card {
    display: flex;
    align-items: center;
    border-radius:10px;
    padding:0px 16px;
    background-color:#f5f5f5 ;
  }

  .ew .step img {
    width: 70px;
  }

  .ew .order .rt .txt, .ew .order .txt {
    padding-top: 16px;
  }
}


/* Case */
.case {
  padding: 80px 0px 150px;
}

.case .hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width:1200px) {
  .case {
    padding: 80px 0px 120px;
  }
}
@media screen and (max-width:1024px) {
  .case {
    padding: 60px 0px 100px;
  }
}
@media screen and (max-width:768px) {
  .case {
    padding: 40px 0px 80px;
  }
}
@media screen and (max-width:576px) {
  .case {
    padding:30px 0px 60px;
  }

  .case .hd {
    flex-wrap: wrap;
    justify-content: center;
    gap:10px;
  }
}


/* CS */
.cs {
  padding: 80px 0px 150px;
}

.cs .guide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding:40px 30px;
  border-radius: 100px;
  background-color: #F5F5F5; 
}

@media screen and (max-width:1200px) {
  .cs {
    padding: 80px 0px 120px;
  }
}
@media screen and (max-width:1024px) {
  .cs {
    padding: 60px 0px 100px;
  }

  .cs .guide {
    padding: 30px 20px;
  }
}
@media screen and (max-width:768px) {
  .cs {
    padding: 40px 0px 80px;
  }
}
@media screen and (max-width:576px) {
  .cs {
    padding: 30px 0px 60px;
  }

  .cs .guide {
    padding: 20px 12px;
    border-radius: 10px;
  }
}


/* Privacy */
.privacy {
  padding: 150px 0px;
}

.privacy .textarea {
  width: 100%;
  height: 600px;
  border:1px solid #ddd;
  overflow-y: auto;
}

.privacy .textarea > div {
  padding: 20px;
}

.privacy .textarea p {
  font-size: 1.6rem;
}

@media screen and (max-width:1200px) {
  .privacy {
    padding: 120px 0px;
  }

  .privacy .textarea p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width:1024px) {
  .privacy {
    padding: 100px 0px;
  }

  .privacy .textarea {
    height: 400px;
  }

  .privacy .textarea > div {
    padding: 16px;
  }
}
@media screen and (max-width:768px) {
  .privacy {
    padding: 80px 0px;
  }

  .privacy .textarea {
    height: 340px;
  }

  .privacy .textarea p {
    font-size: 1.3rem;
  }
}
@media screen and (max-width:576px) {
  .privacy {
    padding: 60px 0px;
  }

  .privacy .textarea {
    height: 280px;
  }

  .privacy .textarea > div {
    padding: 12px;
  }

  .privacy .textarea p {
    font-size: 1.2rem;
  }
}
