JSFiddle - React, Tailwind, and code Playground
HTML
<!doctype html>
<html lang="ja">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="" crossorigin="anonymous">
<style type="text/css">
.jumbotron {
background: url(airbnb/airbnb4.png) center no-repeat;
background-size: cover;
}
.box {
text-justify: auto;
margin-top: 2px;
margin-bottom: 6px;
justify-content: space-evenly;
}
.ln::after { /* 追記 */
content: "";
margin: 0 auto;
border-top: 3px solid #000;
width: 5%;
}
</style>
<title>Airbnbでお家、アパート、お部屋をシェアしよう</title>
</head>
<body>
<header>
<div></div>
</header>
<main>
<section class="jumbotron rounded-0">
<div class="container"></div>
</section>
<section class="d-flex flex-wrap ln">
<div class="box box-1 w-50">
<h3>Airbnbでホストするこれだけの理由</h3><br>
<p>どんなお家やお部屋でも、Airbnbなら簡単かつ安全にシェアでき、世界中の旅好きな仲間とつながれます。 予約可能日から料金、ハウスルール、ゲストとの交流程度まで、すべて自分で決めることができます。</p>
</div>
<div class="box box-2 w-50">
<h3>困ったときも安心</h3><br>
<p>万一に備えるUS$1,000,000の財物補償、US$1,000,000の賠償責任保険が全予約に自動付帯。ホストのみなさまと建物・家財の安全をお守りするため全力で取り組んでいます。</p>
</div>
</section>
</main>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js" integrity="" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js" integrity="" crossorigin="anonymous"></script>
...