.sell-section{
	width:100%;
	height: 60em;
	background-image: url("../img/process/sell-bkimg.png");
	background-repeat: no-repeat;
	background-size: cover;
}

.buy-section{
	width:100%;
	height: 60em;
	background-image: url("../img/process/buy-bkimg.png");
	background-repeat: no-repeat;
	background-size: cover;
}


/*---- ファーストビュー ----*/

/*タイトルの文字*/

.title {
  padding: 50px 0;
}

.title-inner {
  max-width: 800px;
  padding: 0 100px;
  
}
.title h2 {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  color: #FFFFFF;
  letter-spacing: 1.92px;
  line-height: 1.2;
	
  position: absolute;
  z-index: 2;
}
.title h2 span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 1px;
  margin-top: 8px;
}

.explanation{
	font-size: 25px;
	font-weight: lighter;
}

	.sell_card1{
		top: 100px;
	}
	.sell_card2{
		top: 202px;
	}
	.sell_card3{
		top: 304px;
	}
	.sell_card4{
		top: 406px;
	}
	.sell_card5{
		top: 508px;
	}
	.sell_card6{
		top: 610px;
	}
	.sell_card7{
		top: 712px;
	}
	.sell_card8{
		top: 814px;
	}
	.buy_card1{
		top: 1066px;
	}
	.buy_card2{
		top: 1168px;
	}
	.buy_card3{
		top: 1270px;
	}
	.buy_card4{
		top: 1372px;
	}
	.buy_card5{
		top: 1474px;
	}
	.buy_card6{
		top: 1576px;
	}
	.buy_card7{
		top: 1678px;
	}
	.buy_card8{
		top: 1780px;
	}

/*タイトルレスポンシブ*/

@media screen and (max-width: 768px) {
	
.title {
  padding: 30px 0 5px 0;
}
	
.title-inner {
  max-width: 600px;
  padding: 0 50px;
  
}
	
.title h2 {
   font-size: 24px;
   letter-spacing: 1.5px;
   line-height: 1.3;
   margin-bottom: 24px;
 }
.title h2 span {
   font-size: 12px;
   letter-spacing: 0px;
   margin-top: 4px;
 }
	
.title p{
	font-size:16px;
	}
}


@media screen and (max-width: 480px) {
	
.title-inner {
  max-width: 500px;
  padding: 0 20px;
  
}
	
.title h2 {
   font-size: 24px;
   letter-spacing: 1.5px;
   line-height: 1.3;
   margin-bottom: 24px;
 }
.title h2 span {
   font-size: 12px;
   letter-spacing: 0px;
   margin-top: 4px;
 }
	
.title p{
		font-size:14px;
	}
}

/*---- back-pattern ----*/

.fv-wrap {
  position: relative;
  width: 100%;
  /*height: 1000px;/* fv全体の高さに合わせる */
  /*overflow: hidden;*/
}


/*---- back-pattern ----*/

.pattern {
  width: 100vw;;
  height: 255px;
  background: #2f3d4f; /* 濃紺 */
  clip-path: polygon(
    0 0,       /* 左上の角 */
    25% 0,     /* 上辺の70%地点 */
    30% 30%,   /* 右上に少し下がった所（斜め部分の角） */
    100% 30%,  /* 右端で少し下の所 */
    100% 80%,  /* 右下の角 */
    0 80%      /* 左下の角 */
  );
  transform: scaleX(-1); /* 反転 */
  position: relative;
  display: block; /* inline-block だと余白が出やすい */
  margin: 100px 0 0 0;      /* 余白リセット */
  padding: 0;
}

.fv-img{
  margin: -60px 0 0 0;      /* 余白リセット */
  padding: 0;
}

.fadein {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* 小さい画面向けに微調整 */
@media (max-width: 768px) {
  .pattern {
    height: 200px;
    clip-path: polygon(
      0 0,
      35% 0,
      40% 25%,
      100% 25%,
      100% 75%,
      0 75%
    );
  }
　.fv-wrap {
    height: 100px; /* fv全体の高さに合わせる */
}
  .fv-img{
	height: 300px;
	}
}


@media (max-width: 480px) {
	
  .fv-img{
    margin: -100px 0 0 0;      /* 余白リセット */
	height: 200px;
}
	
  .pattern {
    clip-path: polygon(
      0 0,
      40% 0,
      45% 20%,
      100% 20%,
      100% 50%,
      0 50%
    );
  }
}

/*---- photp ----*/

img {
  width: 100vw;
  height: 400px;
  object-fit: cover;
  display: block;   /* 画像下の隙間を消す */
  margin: 0; 
}





@media (min-width: 1024px) {
	
	
.sell-section{
	width:100%;
	height: 86em;
	background-image: url("../img/process/sell-bkimg.png");
	background-repeat: no-repeat;
	background-size: cover;
}

.buy-section{
	width:100%;
	height: 86em;
	background-image: url("../img/process/buy-bkimg.png");
	background-repeat: no-repeat;
	background-size: cover;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans', Helvetica, sans-serif;
  background-color: #272727;
  overflow-x: hidden;
}

.process-title-group{
	    color: #fff;
	    margin-left: 21px;
		margin: 0 5em;
}

.process-title-group h1{
	    font-size: 24px;
        letter-spacing: 1.4px;
        line-height: 20px;
	    font-family: 'Anton', sans-serif;
}

.process-subtitle{
	margin-top: 10px;
	font-size: 12px;
}
.process-detail{
	margin-top: 20px;
	font-size: 12px;
}

.process-title p{
		font-size: 14px;
        line-height: 14px;
        letter-spacing: 0.7px;
		font-family: 'Noto Sans', Helvetica;
	    font-weight: bold;
}

/* Container */
.container {
  position: relative;
	height: 3700px;
  background-color: #272727;
  overflow: hidden;
  margin: 0 auto;
}

/* Header elements */
.logo {
  position: absolute;
  width: 73px;
  height: 40px;
  top: 12px;
  left: 9px;
  object-fit: cover;
}

.menu-icon {
  position: absolute;
  width: 45px;
  height: 36px;
  top: 16px;
  left: 335px;
}


.process-line {
  position: absolute;
  width: 51px;
  height: 9px;
  top: 126px;
  left: 32px;
}

.process-decoration {
  position: absolute;
  width: 292px;
  height: 11px;
  top: 154px;
  left: 33px;
}
	
.process-topimg{
	width:100%;
	height: 20em;
	background-image: url("../img/process/sell_top.jpg"); 
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: 5em;
	}

/*.header-bg {
  position: absolute;
  width: 100%;
  top: 163px;
  left: 0;
}*/

.header-vector {
  position: absolute;
  width: 100%;
  top: 60px;
  left: 0;
}

/* Content area */
.content-area {
  position: absolute;
  width: 100%;
  height: 1916px;
  top: 55em;
  left: 0;
}

/* Section styles */
.section {
  position: relative;
  width: 100%;
}

.section-bg {
  position: absolute;
  width: 100%;
  height: 958px;
  top: 0;
  left: 2px;
}

.buy-bg {
  top: 958px;
  left: 0;
}

.section-header {
  position: relative;
  z-index: 10;
}

.buy-header {
  position: absolute;
  top: 977px;
  left: 0;
}

.section-title-sell {
  position: absolute;
  top: 30px;
  left: 30%;
  font-family: 'Anton', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 42px;
  letter-spacing: 0.72px;
  line-height: 63px;
  white-space: nowrap;
}

.section-title-buy {
  position: absolute;
  top: 30px;
  left: 30%;
  font-family: 'Anton', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 42px;
  letter-spacing: 0.72px;
  line-height: 63px;
  white-space: nowrap;
}

.section-subtitle {
  position: absolute;
  top: 105px;
  left: 30%;
  font-family: 'Noto Sans', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 18px;
  letter-spacing: 0.30px;
  line-height: 10px;
  white-space: nowrap;
}

.buy-header .section-subtitle {
  top: 54px;
}

/* Step card styles */
.step-card {
  position: absolute;
  width: 625px;
  height: auto;
  left: 30%;
  z-index: 10;
}

.step-bg {
        width: 120%;
        height: 120px;
}

.step-number-label {
  position: absolute;
  top: 21px;
  left: 7px;
  font-family: 'Inter', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 12px;
  letter-spacing: 0.27px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-number {
  position: absolute;
  top: 42px;
  left: 7px;
  font-family: 'Inter', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 28px;
  letter-spacing: 0.54px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-title {
  position: absolute;
  top: 48px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 20px;
  letter-spacing: 0.42px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-description {
  position: absolute;
  top: 42px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 16px;
  letter-spacing: 0.27px;
  line-height: 13px;
  max-width: 500px;
}

.step-title-2line {
  position: absolute;
  top: 35px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 20px;
  letter-spacing: 0.42px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-description-2line {
  position: absolute;
  top: 70px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 16px;
  letter-spacing: 0.27px;
  line-height: 13px;
  max-width: 500px;
}

.step-title-3line {
  position: absolute;
  top: 27px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 20px;
  letter-spacing: 0.42px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-description-3line {
  position: absolute;
  top: 56px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 16px;
  letter-spacing: 0.27px;
  line-height: 21px;
  max-width: 500px;
}

.step-title-4line {
  position: absolute;
  top: 20px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 20px;
  letter-spacing: 0.42px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-description-4line {
  position: absolute;
  top: 48px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 16px;
  letter-spacing: 0.27px;
  line-height: 18px;
  max-width: 500px;
}

.step-title-5line {
  position: absolute;
  top: 10px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 20px;
  letter-spacing: 0.42px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-description-5line {
  position: absolute;
  top: 38px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 16px;
  letter-spacing: 0.27px;
  line-height: 19px;
  max-width: 500px;
}

.step-highlight {
  position: absolute;
/*  top: 58px;
  left: 73px;*/
  font-family: 'Noto Sans', Helvetica;
  font-weight: normal;
  color: #ffe100;
  font-size: 13px;
  letter-spacing: 0.27px;
  line-height: 15px;
  width: 440px;
}

.buy-highlight {
  color: #f2ce02;
}

/* Footer */
.footer-bg {
  position: absolute;
  width: 393px;
  height: 771px;
  top: 2374px;
  left: 0;
}
	
	
	.sell_card1{
		top: 150px;
	}
	.sell_card2{
		top: 300px;
	}
	.sell_card3{
		top: 450px;
	}
	.sell_card4{
		top: 600px;
	}
	.sell_card5{
		top: 750px;
	}
	.sell_card6{
		top: 900px;
	}
	.sell_card7{
		top: 1050px;
	}
	.sell_card8{
		top: 1200px;
	}
	.buy_card1{
		top: 1520px;
	}
	.buy_card2{
		top: 1670px;
	}
	.buy_card3{
		top: 1820px;
	}
	.buy_card4{
		top: 1970px;
	}
	.buy_card5{
		top: 2120px;
	}
	.buy_card6{
		top: 2270px;
	}
	.buy_card7{
		top: 2420px;
	}
	.buy_card8{
		top: 2570px;
	}

}


@media (max-width: 1024px) and (min-width: 769px) {

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans', Helvetica, sans-serif;
  background-color: #272727;
  overflow-x: hidden;
}

.process-title-group{
	    color: #fff;
	    margin-left: 21px;
		margin: 0 5em;
}

.process-title-group h1{
	    font-size: 24px;
        letter-spacing: 1.4px;
        line-height: 20px;
	    font-family: 'Anton', sans-serif;
}

.process-subtitle{
	margin-top: 10px;
	font-size: 12px;
}
.process-detail{
	margin-top: 20px;
	font-size: 12px;
}

.process-title p{
		font-size: 14px;
        line-height: 14px;
        letter-spacing: 0.7px;
		font-family: 'Noto Sans', Helvetica;
	    font-weight: bold;
}

/* Container */
.container {
  position: relative;
  height: 2800px;
  background-color: #272727;
  overflow: hidden;
  margin: 0 auto;
}

/* Header elements */
.logo {
  position: absolute;
  width: 73px;
  height: 40px;
  top: 12px;
  left: 9px;
  object-fit: cover;
}

.menu-icon {
  position: absolute;
  width: 45px;
  height: 36px;
  top: 16px;
  left: 335px;
}


.process-line {
  position: absolute;
  width: 51px;
  height: 9px;
  top: 126px;
  left: 32px;
}

.process-decoration {
  position: absolute;
  width: 292px;
  height: 11px;
  top: 154px;
  left: 33px;
}

.process-topimg{
	width:100%;
	height: 16em;
	background-image: url("../img/process/sell_top.jpg"); 
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: 8em;
	}
	
/*.header-bg {
  position: absolute;
  width: 100%;
  top: 163px;
  left: 0;
}*/

.header-vector {
  position: absolute;
  width: 100%;
  top: 105px;
  left: 0;
}

/* Content area */
.content-area {
  position: absolute;
  width: 100%;
  height: 1916px;
  top: 55em;
  left: 0;
}

/* Section styles */
.section {
  position: relative;
  width: 100%;
}

.section-bg {
  position: absolute;
  width: 100%;
  height: 958px;
  top: 0;
  left: 2px;
}

.buy-bg {
  top: 958px;
  left: 0;
}

.section-header {
  position: relative;
  z-index: 10;
}

.buy-header {
  position: absolute;
  top: 977px;
  left: 0;
}

.section-title-sell {
  position: absolute;
  top: 13px;
  left: 20%;
  font-family: 'Anton', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 28px;
  letter-spacing: 0.72px;
  line-height: 63px;
  white-space: nowrap;
}

.section-title-buy {
  position: absolute;
  left: 20%;
  font-family: 'Anton', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 24px;
  letter-spacing: 0.72px;
  line-height: 63px;
  white-space: nowrap;
}

.section-subtitle {
  position: absolute;
  top: 67px;
  left: 20%;
  font-family: 'Noto Sans', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 14px;
  letter-spacing: 0.30px;
  line-height: 10px;
  white-space: nowrap;
}

.buy-header .section-subtitle {
  top: 54px;
}

/* Step card styles */
.step-card {
  position: absolute;
  width: 625px;
  height: auto;
  left: 20%;
  z-index: 10;
}

.step-bg {
  width: 100%;
  height: 90px;
}

.step-number-label {
  position: absolute;
  top: 21px;
  left: 7px;
  font-family: 'Inter', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 12px;
  letter-spacing: 0.27px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-number {
  position: absolute;
  top: 42px;
  left: 7px;
  font-family: 'Inter', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 28px;
  letter-spacing: 0.54px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-title {
  position: absolute;
  top: 33px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 17px;
  letter-spacing: 0.42px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-description {
  position: absolute;
  top: 42px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 13px;
  letter-spacing: 0.27px;
  line-height: 13px;
  max-width: 440px;
}

.step-title-2line {
  position: absolute;
  top: 22px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 17px;
  letter-spacing: 0.42px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-description-2line {
  position: absolute;
  top: 55px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 13px;
  letter-spacing: 0.27px;
  line-height: 13px;
  max-width: 440px;
}

.step-title-3line {
  position: absolute;
  top: 15px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 17px;
  letter-spacing: 0.42px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-description-3line {
  position: absolute;
  top: 40px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 13px;
  letter-spacing: 0.27px;
  line-height: 21px;
  max-width: 440px;
}

.step-title-4line {
  position: absolute;
  top: 10px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 17px;
  letter-spacing: 0.42px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-description-4line {
  position: absolute;
  top: 33px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 13px;
  letter-spacing: 0.27px;
  line-height: 18px;
  max-width: 440px;
}

.step-title-5line {
  position: absolute;
  top: 2px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 17px;
  letter-spacing: 0.42px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-description-5line {
  position: absolute;
  top: 24px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 13px;
  letter-spacing: 0.27px;
  line-height: 15px;
  max-width: 440px;
}

.step-highlight {
  position: absolute;
/*  top: 58px;
  left: 73px;*/
  font-family: 'Noto Sans', Helvetica;
  font-weight: normal;
  color: #ffe100;
  font-size: 13px;
  letter-spacing: 0.27px;
  line-height: 15px;
  width: 440px;
}

.buy-highlight {
  color: #f2ce02;
}

/* Footer */
.footer-bg {
  position: absolute;
  width: 393px;
  height: 771px;
  top: 2374px;
  left: 0;
}

}

@media (max-width: 768px) and (min-width: 481px){

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans', Helvetica, sans-serif;
  background-color: #272727;
  overflow-x: hidden;
}

.process-title-group{
	    color: #fff;
	    margin-left: 21px;
		margin: 0 5em;
}

.process-title-group h1{
	    font-size: 24px;
        letter-spacing: 1.4px;
        line-height: 20px;
	    font-family: 'Anton', sans-serif;
}

.process-subtitle{
	margin-top: 10px;
	font-size: 12px;
}
.process-detail{
	margin-top: 20px;
	font-size: 12px;
}

.process-title p{
		font-size: 14px;
        line-height: 14px;
        letter-spacing: 0.7px;
		font-family: 'Noto Sans', Helvetica;
	    font-weight: bold;
}

/* Container */
.container {
  position: relative;
	height: 2600px;
  background-color: #272727;
  overflow: hidden;
  margin: 0 auto;
}

/* Header elements */
.logo {
  position: absolute;
  width: 73px;
  height: 40px;
  top: 12px;
  left: 9px;
  object-fit: cover;
}

.menu-icon {
  position: absolute;
  width: 45px;
  height: 36px;
  top: 16px;
  left: 335px;
}


.process-line {
  position: absolute;
  width: 51px;
  height: 9px;
  top: 126px;
  left: 32px;
}

.process-decoration {
  position: absolute;
  width: 292px;
  height: 11px;
  top: 154px;
  left: 33px;
}

.process-topimg{
	width:100%;
	height: 13em;
	background-image: url("../img/process/sell_top.jpg"); 
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: 6em;
	}
	
/*.header-bg {
  position: absolute;
  width: 100%;
  top: 163px;
  left: 0;
}*/

.header-vector {
  position: absolute;
  width: 100%;
  top: 105px;
  left: 0;
}

/* Content area */
.content-area {
  position: absolute;
  width: 100%;
  height: 1916px;
  top: 40em;
  left: 0;
}

/* Section styles */
.section {
  position: relative;
  width: 100%;
}

.section-bg {
  position: absolute;
  width: 100%;
  height: 958px;
  top: 0;
  left: 2px;
}

.buy-bg {
  top: 958px;
  left: 0;
}

.section-header {
  position: relative;
  z-index: 10;
}

.buy-header {
  position: absolute;
  top: 977px;
  left: 0;
}

.section-title-sell {
  position: absolute;
  top: 13px;
  left: 10%;
  font-family: 'Anton', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 28px;
  letter-spacing: 0.72px;
  line-height: 63px;
  white-space: nowrap;
}

.section-title-buy {
  position: absolute;
  left: 10%;
  font-family: 'Anton', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 24px;
  letter-spacing: 0.72px;
  line-height: 63px;
  white-space: nowrap;
}

.section-subtitle {
  position: absolute;
  top: 68px;
  left: 10%;
  font-family: 'Noto Sans', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 13px;
  letter-spacing: 0.30px;
  line-height: 10px;
  white-space: nowrap;
}

.buy-header .section-subtitle {
  top: 54px;
}

/* Step card styles */
.step-card {
  position: absolute;
  width: 625px;
  height: auto;
  left: 10%;
  z-index: 10;
}

.step-bg {
  width: 100%;
  height: 90px;
}

.step-number-label {
  position: absolute;
  top: 21px;
  left: 7px;
  font-family: 'Inter', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 12px;
  letter-spacing: 0.27px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-number {
  position: absolute;
  top: 42px;
  left: 7px;
  font-family: 'Inter', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 28px;
  letter-spacing: 0.54px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-title {
  position: absolute;
  top: 33px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 17px;
  letter-spacing: 0.42px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-description {
  position: absolute;
  top: 42px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 13px;
  letter-spacing: 0.27px;
  line-height: 13px;
  max-width: 440px;
}

.step-title-2line {
  position: absolute;
  top: 22px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 17px;
  letter-spacing: 0.42px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-description-2line {
  position: absolute;
  top: 55px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 13px;
  letter-spacing: 0.27px;
  line-height: 13px;
  max-width: 440px;
}

.step-title-3line {
  position: absolute;
  top: 15px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 17px;
  letter-spacing: 0.42px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-description-3line {
  position: absolute;
  top: 40px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 13px;
  letter-spacing: 0.27px;
  line-height: 21px;
  max-width: 440px;
}

.step-title-4line {
  position: absolute;
  top: 10px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 17px;
  letter-spacing: 0.42px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-description-4line {
  position: absolute;
  top: 33px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 13px;
  letter-spacing: 0.27px;
  line-height: 18px;
  max-width: 440px;
}

.step-title-5line {
  position: absolute;
  top: 2px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 17px;
  letter-spacing: 0.42px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-description-5line {
  position: absolute;
  top: 24px;
  left: 110px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 13px;
  letter-spacing: 0.27px;
  line-height: 15px;
  max-width: 440px;
}

.step-highlight {
  position: absolute;
/*  top: 58px;
  left: 73px;*/
  font-family: 'Noto Sans', Helvetica;
  font-weight: normal;
  color: #ffe100;
  font-size: 13px;
  letter-spacing: 0.27px;
  line-height: 15px;
  width: 440px;
}

.buy-highlight {
  color: #f2ce02;
}

/* Footer */
.footer-bg {
  position: absolute;
  width: 393px;
  height: 771px;
  top: 2374px;
  left: 0;
}

}

@media (max-width: 480px) {

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans', Helvetica, sans-serif;
  background-color: #272727;
  overflow-x: hidden;
}

.process-title-group{
	    color: #fff;
	    margin-left: 21px;
		margin: 0 2em;
}

.process-title-group h1{
	    font-size: 24px;
        letter-spacing: 1.4px;
        line-height: 20px;
	    font-family: 'Anton', sans-serif;
}

.process-subtitle{
	margin-top: 10px;
	font-size: 12px;
}
.process-detail{
	margin-top: 20px;
	font-size: 12px;
}

.process-title p{
		font-size: 14px;
        line-height: 14px;
        letter-spacing: 0.7px;
		font-family: 'Noto Sans', Helvetica;
	    font-weight: bold;
}

/* Container */
.container {
  position: relative;
	height: 2400px;
  background-color: #272727;
  overflow: hidden;
  margin: 0 auto;
}

/* Header elements */
.logo {
  position: absolute;
  width: 73px;
  height: 40px;
  top: 12px;
  left: 9px;
  object-fit: cover;
}

.menu-icon {
  position: absolute;
  width: 45px;
  height: 36px;
  top: 16px;
  left: 335px;
}


.process-line {
  position: absolute;
  width: 51px;
  height: 9px;
  top: 126px;
  left: 32px;
}

.process-decoration {
  position: absolute;
  width: 292px;
  height: 11px;
  top: 154px;
  left: 33px;
}

.process-topimg{
	width:100%;
	height: 10em;
	background-image: url("../img/process/sell_top.jpg"); 
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: 4em;
	}
	
/*.header-bg {
  position: absolute;
  width: 100%;
  height: 160px;
  top: 8em;
  left: 0;
}*/

.header-vector {
  position: absolute;
  width: 100%;
  top: 8em;
  left: 0;
}

/* Content area */
.content-area {
  position: absolute;
  width:100%;
  height: 1916px;
  top: 30em;
  left: 0;
}

/* Section styles */
.section {
  position: relative;
  width: 100%;
}

.section-bg {
  position: absolute;
  width: 100%;
  height: 958px;
  top: 0;
  left: 2px;
}

.buy-bg {
  top: 958px;
  left: 0;
}

.section-header {
  position: relative;
  z-index: 10;
}

.buy-header {
  position: absolute;
  top: 977px;
  left: 0;
}

.section-title-sell {
  position: absolute;
  top: 13px;
  left: 42px;
  font-family: 'Anton', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 24px;
  letter-spacing: 0.72px;
  line-height: 63px;
  white-space: nowrap;
}

.section-title-buy {
  position: absolute;
  left: 42px;
  font-family: 'Anton', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 24px;
  letter-spacing: 0.72px;
  line-height: 63px;
  white-space: nowrap;
}

.section-subtitle {
  position: absolute;
  top: 64px;
  left: 42px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 10px;
  letter-spacing: 0.30px;
  line-height: 10px;
  white-space: nowrap;
}

.buy-header .section-subtitle {
  top: 54px;
}

/* Step card styles */
.step-card {
  position: absolute;
  width: 349px;
  height: auto;
  left: 22px;
  z-index: 10;
}

.step-bg {
  width: 100%;
  height: 77px;
}

.step-number-label {
  position: absolute;
  top: 21px;
  left: 7px;
  font-family: 'Inter', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 8.9px;
  letter-spacing: 0.27px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-number {
  position: absolute;
  top: 35px;
  left: 7px;
  font-family: 'Inter', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 17.9px;
  letter-spacing: 0.54px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-title {
  position: absolute;
  top: 26px;
  left: 73px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 14px;
  letter-spacing: 0.42px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-description {
  position: absolute;
  top: 42px;
  left: 73px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 9px;
  letter-spacing: 0.27px;
  line-height: 13px;
  max-width: 235px;
}

.step-title-2line {
  position: absolute;
  top: 22px;
  left: 73px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 14px;
  letter-spacing: 0.42px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-description-2line {
  position: absolute;
  top: 45px;
  left: 73px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 9px;
  letter-spacing: 0.27px;
  line-height: 13px;
  max-width: 235px;
}

.step-title-3line {
  position: absolute;
  top: 15px;
  left: 73px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 14px;
  letter-spacing: 0.42px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-description-3line {
  position: absolute;
  top: 40px;
  left: 73px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 9px;
  letter-spacing: 0.27px;
  line-height: 13px;
  max-width: 235px;
}

.step-title-4line {
  position: absolute;
  top: 10px;
  left: 73px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 14px;
  letter-spacing: 0.42px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-description-4line {
  position: absolute;
  top: 33px;
  left: 73px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 9px;
  letter-spacing: 0.27px;
  line-height: 13px;
  max-width: 235px;
}

.step-title-5line {
  position: absolute;
  top: 2px;
  left: 73px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: bold;
  color: white;
  font-size: 14px;
  letter-spacing: 0.42px;
  line-height: 23.5px;
  white-space: nowrap;
}

.step-description-5line {
  position: absolute;
  top: 24px;
  left: 73px;
  font-family: 'Noto Sans', Helvetica;
  font-weight: normal;
  color: white;
  font-size: 9px;
  letter-spacing: 0.27px;
  line-height: 13px;
  max-width: 235px;
}

.step-highlight {
  position: absolute;
/*  top: 58px;
  left: 73px;*/
  font-family: 'Noto Sans', Helvetica;
  font-weight: normal;
  color: #ffe100;
  font-size: 9px;
  letter-spacing: 0.27px;
  line-height: 13px;
  width: 235px;
}

.buy-highlight {
  color: #f2ce02;
}

/* Footer */
.footer-bg {
  position: absolute;
  width: 393px;
  height: 771px;
  top: 2374px;
  left: 0;
}

}