@charset "utf-8";

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

body {
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: #333333;
  background-color: #e1e4ff;
}

img {
  width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/*** リセットここまで ***/

/*** 共通設定 ***/

/*** 共通設定ここまで ***/

/*** header ***/

header {
  position: fixed;
  width: 100%;
  background-color: #151586;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
  z-index: 100000;
}

.header-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  width: 200px;
}

/*** headerここまで ***/

/*** footer ***/

footer {
  padding: 40px 0 60px;
  background-color: #e1e4ff;
}

footer .copy {
  text-align: center;
}

/*** footerここまで ***/

/*** main ***/

main {
  padding: calc(75.31px + 100px) 0 100px 0;
  background-color: #fff;
}

.inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
  font-size: 40px;
  color: #151586;
}

.business-container {
  display: flex;
  gap: 40px;
}

.business-message {
  flex: 3;
  display: flex;
}

.business-message p:first-of-type {
  font-weight: bold;
  margin-bottom: 20px;
}

.business-img {
  flex: 2;
}

.business-img {
  width: 40%;
}

/*** mainここまで ***/
