@charset "utf-8";
* {
  box-sizing: border-box;
}
.contents-wrapper {
  max-width: 1160px;
  width: calc(100% - 100px);
  margin: 0 auto;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: 400;
}

.left-float {
  float: left;
}

.right-float {
  float: right;
}

.clear {
  clear: both;
}

img,
iframe {
  display: block;
  width: 100%;
  margin: 0 auto;
  object-fit: cover;
}

.bg-change {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

a {
  text-decoration: none;
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}

a:hover {
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.color-black {
  color: rgb(0, 0, 0);
}

.color-white {
  color: rgb(255, 255, 255);
}

table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
}

.block-item {
  display: block;
}

.inlineblock-item {
  display: inline-block;
}

.inline-item {
  display: inline;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.flex-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
}

.left-flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.right-flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.space-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.white-space {
  white-space: nowrap;
}

.top-section-titlebox {
  position: relative;
}
.top-section-title-left {
  text-align: left;
}
.top-section-title {
  font-weight: bold;
  font-size: 2rem;
  position: relative;
  z-index: 1;
}
.top-section-title-bg {
  background-repeat: no-repeat;
  position: absolute;
  top: -125%;
  right: 0;
  left: 0;
  bottom: 0;
  background-position: center left;
}
.top-section-title-features {
  background-image: url("../images/features.svg");
  background-position: center;
}
.top-section-title-service {
  background-image: url("../images/service.svg");
}
.top-section-title-aboutus {
  background-image: url("../images/aboutus-text.svg");
}
.top-section-title-works {
  background-image: url("../images/works.svg");
}
.top-section-title-news {
  background-image: url("../images/news.svg");
}
.top-section-title-blog {
  background-image: url("../images/blog.svg");
}
.top-section-title-contact {
  background-image: url("../images/contact.svg");
}

.top-section-bg-layer {
  z-index: -1;
}
.top-section-title-blue {
  color: var(--blue);
}
.top-section-title-blue svg {
  color: var(--white);
}
.top-section-title-white {
  color: var(--white);
}
