*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  font-family: Noto Sans JP;
}

a {
  text-decoration: none;
  color: inherit;
}

html,
body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

.section {
  padding: 100px 0 100px;
}
@media (max-width: 767px) {
  .section {
    padding: 50px 0 50px;
  }
}

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

.util-title {
  font-size: 64px;
  font-family: "Bebas Neue";
  text-align: center;
  font-weight: 700;
  margin-bottom: 60px;
  -webkit-transition: -webkit-transform 0.6s ease 0s;
  transition: -webkit-transform 0.6s ease 0s;
  transition: transform 0.6s ease 0s;
  transition: transform 0.6s ease 0s, -webkit-transform 0.6s ease 0s;
}
@media (max-width: 767px) {
  .util-title {
    font-size: 50px;
    margin-bottom: 30px;
  }
}

.util-link {
  display: block;
  background: #000;
  width: 200px;
  height: auto;
  color: #fff;
  border: 1px solid #fff;
  font-size: 24px;
  padding: 12px 0;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
  -webkit-transition: background-color 0.8s;
  transition: background-color 0.8s;
  -webkit-transition: color 0.6s;
  transition: color 0.6s;
}
@media (max-width: 767px) {
  .util-link {
    font-size: 16px;
  }
}
.util-link.-active {
  color: #000;
  background: #fff;
  border: 1px solid #000;
}
@media (min-width: 1200px) {
  .util-link:not(.-submit):hover {
    color: #000;
    background: #fff;
    border: 1px solid #000;
  }
}

.header {
  background: radial-gradient(#a2e29b, #00a2af);
  height: 100px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}
@media (max-width: 767px) {
  .header-inner {
    padding: 0 16px;
  }
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}
@media (max-width: 767px) {
  .header-nav {
    display: none;
  }
}

.header-title {
  font-size: 46px;
  font-weight: 700;
  width: 100%;
  font-family: "Bebas Neue";
  letter-spacing: 0.05em;
  line-height: 100px;
}
@media (max-width: 767px) {
  .header-title {
    font-size: 30px;
    line-height: 60px;
  }
}

.header-nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-nav_item {
  font-size: 18px;
  font-weight: 700;
}
.header-nav_item:not(:nth-child(1)) {
  margin-left: 35px;
}

.header-nav_link {
  position: relative;
  line-height: 100px;
}
.header-nav_link:hover {
  color: hsl(0, 98%, 50%);
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.header-nav_link::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  display: block;
  background: transparent;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.header-nav_link:hover:after {
  background: #000;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.drawer-icon {
  position: fixed;
  right: 16px;
  top: 20px;
  z-index: 300;
  display: none;
}
@media (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active {
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
}
.drawer-icon.is-active .drawer-icon_bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-active .drawer-icon_bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon_bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
}

.drawer-icon_bars {
  position: relative;
  width: 22px;
  height: 20px;
}

.drawer-icon_bar1,
.drawer-icon_bar2,
.drawer-icon_bar3 {
  position: absolute;
  width: 22px;
  height: 4px;
  background: #fff;
  top: 0;
  left: 0;
  display: block;
}

.drawer-icon_bar1 {
  top: 0px;
}

.drawer-icon_bar2 {
  top: 8px;
}

.drawer-icon_bar3 {
  top: 16px;
}

.drawer-content {
  width: 200px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  background: #fff;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  z-index: 299;
}
.drawer-content.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content_item {
  border-bottom: 1px dotted #707070;
}
.drawer-content_item a {
  display: block;
  padding: 20px 0 20px 20px;
  color: #000;
  position: relative;
}
.drawer-content_item a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 21px;
  width: 8px;
  height: 11px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/arrow-b@2x.png) no-repeat center center/contain;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 298;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

#hero {
  height: 600px;
  margin-top: 100px;
  background-color: blue;
  background: url(../img/willian-justen-de-vasconcellos-hPcF0UCpNhs-unsplash.jpg) no-repeat center center/cover;
  background-blend-mode: screen;
  -webkit-animation: bg-color 24s infinite;
          animation: bg-color 24s infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 90%, 0 100%);
  position: relative;
}
@media (max-width: 767px) {
  #hero {
    margin-top: 60px;
  }
}

@-webkit-keyframes bg-color {
  0% {
    background-color: blue;
  }
  12.5% {
    background-color: purple;
  }
  25% {
    background-color: plum;
  }
  37.5% {
    background-color: pink;
  }
  50% {
    background-color: orange;
  }
  62.5% {
    background-color: yellow;
  }
  75% {
    background-color: lightgreen;
  }
  85.7% {
    background-color: green;
  }
  100% {
    background-color: blue;
  }
}

@keyframes bg-color {
  0% {
    background-color: blue;
  }
  12.5% {
    background-color: purple;
  }
  25% {
    background-color: plum;
  }
  37.5% {
    background-color: pink;
  }
  50% {
    background-color: orange;
  }
  62.5% {
    background-color: yellow;
  }
  75% {
    background-color: lightgreen;
  }
  85.7% {
    background-color: green;
  }
  100% {
    background-color: blue;
  }
}
.hero-inner {
  -webkit-transition: -webkit-transform 0.6s ease 0s;
  transition: -webkit-transform 0.6s ease 0s;
  transition: transform 0.6s ease 0s;
  transition: transform 0.6s ease 0s, -webkit-transform 0.6s ease 0s;
}

.hero-content {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.hero-title,
.hero-name {
  font-size: 84px;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid #707070;
  font-family: "Bebas Neue";
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .hero-title,
  .hero-name {
    font-size: 54px;
  }
}

.hero_message {
  font-size: 20px;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .hero_message {
    font-size: 16px;
  }
}

.hero-button {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .self-introduction {
    text-align: center;
  }
}

.self-introduction_inner {
  width: 900px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .self-introduction_inner {
    padding: 0 16px;
  }
}

@media (min-width: 1200px) {
  .self-introduction_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: -webkit-transform 0.6s ease 0s;
    transition: -webkit-transform 0.6s ease 0s;
    transition: transform 0.6s ease 0s;
    transition: transform 0.6s ease 0s, -webkit-transform 0.6s ease 0s;
  }
}

.self-introduction_picture img {
  width: 160px;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .self-introduction_picture {
    text-align: center;
  }
}

.self-introduction_sns_link {
  display: block;
  width: 16px;
  height: 16px;
  font-size: 24px;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .self-introduction_content {
    margin-left: 36px;
  }
}

.self-introduction_header_title {
  font-weight: 700;
}
@media (max-width: 767px) {
  .self-introduction_header_title {
    margin-top: 20px;
  }
}
.self-introduction_header_title .left {
  margin-right: 6px;
}
.self-introduction_header_title .right {
  margin-left: 6px;
}

.self-introduction_header_name {
  font-size: 26px;
  font-weight: 700;
  margin-top: 8px;
}

.self-introduction_header_text {
  margin-top: 16px;
}

.self-introduction_header_message {
  margin-top: 10px;
}

.self-introduction_body {
  margin-top: 20px;
}

.self-introduction_body_text {
  font-weight: 700;
  font-size: 18px;
  margin-top: 26px;
}
.self-introduction_body_text .left {
  margin-right: 6px;
}
.self-introduction_body_text .right {
  margin-left: 6px;
}

.self-introduction_body_message {
  margin-top: 10px;
}

.self-introduction_button {
  margin-top: 40px;
}

.work-inner {
  padding: 0 14px;
  -webkit-transition: -webkit-transform 0.6s ease 0s;
  transition: -webkit-transform 0.6s ease 0s;
  transition: transform 0.6s ease 0s;
  transition: transform 0.6s ease 0s, -webkit-transform 0.6s ease 0s;
}

.swiper-container {
  border: 1px solid blue;
  position: relative;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
}

.swiper-wrapper {
  position: relative;
}

.swiper-pagination-bullet {
  opacity: 1;
  background: gray;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: red;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.swiper-pagination.swiper-pagination-progressbar.swiper-pagination-horizontal {
  top: calc(100% - 10px);
  height: 10px;
  background: gray;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: red;
}

.swiper-button-prev::after {
  content: "";
  position: absolute;
  width: 20px;
  height: auto;
  aspect-ratio: 1;
  border-right: 4px solid red;
  border-bottom: 4px solid red;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.swiper-button-next::after {
  content: "";
  position: absolute;
  width: 20px;
  height: auto;
  aspect-ratio: 1;
  border-right: 4px solid red;
  border-bottom: 4px solid red;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.work-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.work-text_message {
  margin-top: 18px;
}

.work-text_ms {
  margin-left: auto;
}

.work-text_link {
  color: red;
}

.service {
  background: #eee;
}

@media (max-width: 767px) {
  .service-inner {
    padding: 0 16px;
  }
}

@media (min-width: 1200px) {
  .service-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
  }
}

.service-item {
  background: #fff;
  padding: 16px;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
  -webkit-transition: -webkit-transform 0.6s ease 0s;
  transition: -webkit-transform 0.6s ease 0s;
  transition: transform 0.6s ease 0s;
  transition: transform 0.6s ease 0s, -webkit-transform 0.6s ease 0s;
}
@media (min-width: 1200px) {
  .service-item {
    width: calc(33.3333333333% - 16px);
  }
  .service-item:not(:first-child) {
    margin-left: 24px;
  }
}
.service-item img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .service-item:not(:first-child) {
    margin-top: 24px;
  }
}

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

.service-item_message {
  margin-top: 18px;
}

.service-item_title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .service-item_title {
    font-size: 20px;
  }
}

.service-item_text {
  margin-top: 12px;
}

.contact {
  background: -webkit-gradient(linear, left top, right top, from(#238ccc), to(#c5e5ee));
  background: linear-gradient(90deg, #238ccc, #c5e5ee);
  padding: 7rem 0;
  -webkit-clip-path: polygon(0 0, 100% 10%, 100% 90% m, 0 100%);
  clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
}
@media (max-width: 767px) {
  .contact {
    padding: 6rem 0;
  }
}

.contact-form {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 60px 60px 60px;
  -webkit-transition: -webkit-transform 0.6s ease 0s;
  transition: -webkit-transform 0.6s ease 0s;
  transition: transform 0.6s ease 0s;
  transition: transform 0.6s ease 0s, -webkit-transform 0.6s ease 0s;
}
@media (max-width: 767px) {
  .contact-form {
    padding: 0 20px 20px 20px;
  }
}

.contact-form_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact-form_row:not(:first-child) {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .contact-form_row {
    display: block;
  }
  .contact-form_row:not(:first-child) {
    margin-top: 20px;
  }
}

.contact-form_label {
  width: 160px;
  margin-right: 16px;
  margin-top: 4px;
  position: relative;
}
.contact-form_label span {
  color: #f00;
}
@media (max-width: 767px) {
  .contact-form_label {
    margin-bottom: 8px;
  }
}

.contact-form_input {
  width: calc(100% - 160px);
}
@media (max-width: 767px) {
  .contact-form_input {
    width: 100%;
  }
}
.contact-form_input [type=text],
.contact-form_input [type=email] {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  background: #fff;
  padding: 10px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
}
.contact-form_input select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  padding: 12px 40px 12px 12px;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  width: 100%;
  background: #fff url(../img/select-arrow.png) no-repeat right 12px center/17px 14px;
}
.contact-form_input textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  padding: 12px 40px 12px 12px;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  width: 100%;
  resize: vertical;
  height: 240px;
}

.contact-form_radio {
  margin-top: 32px;
}

.contact-radio_wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid #fff;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
}

.contact-radio {
  position: relative;
}

.contact-radio_input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.contact-radio_input:checked + .contact-radio_part {
  background: blue;
  color: #fff;
}
.contact-radio_input:focus + .contact-radio_part {
  outline: -webkit-focus-ring-color auto 1px;
}

.contact-radio_part {
  display: block;
  color: blue;
  background: #fff;
  height: 38px;
  line-height: 38px;
  width: 80px;
  text-align: center;
}

.contact-footer {
  margin-top: 40px;
  text-align: center;
}

.contact-privacy {
  position: relative;
  height: 22px;
  width: 22px;
  display: inline-block;
  vertical-align: middle;
}

.contact-privacy_input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.contact-privacy_input:checked + .contact-privacy_part {
  width: 10px;
  border-top: 0;
  border-left: 0;
  background-color: transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: -5px;
  left: 5px;
}
.contact-privacy_input:focus + .contact-privacy_part {
  outline: -webkit-focus-ring-color auto 1px;
}
.contact-privacy_input:checked + .contact-privacy_part {
  outline: none;
}

.contact-privacy_part {
  display: inline-block;
  height: 22px;
  width: 22px;
  border: 1px solid blue;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.contact-footer_text span {
  color: #f00;
}

.contact-footer_submit {
  margin-top: 36px;
}

.contact-message {
  margin-top: 50px;
  text-align: center;
  display: none;
}
.contact-message.-error {
  color: red;
}

.contact-sns_content {
  margin-top: 64px;
  text-align: center;
}

.contact-sns_item {
  text-align: center;
  margin-top: 20px;
}

.contact-sns_item_link {
  font-size: 24px;
}

.to-top {
  position: fixed;
  bottom: 58px;
  right: 24px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 100;
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}

.footer {
  height: 80px;
  line-height: 80px;
}

.footer-copyright {
  font-size: 14px;
  text-align: right;
}
@media (max-width: 767px) {
  .footer-copyright {
    font-size: 12px;
    padding: 0 16px;
  }
}

.works {
  font-family: Noto Sans JP;
}

.works-inner {
  padding: 0 16px;
}

.works-title {
  font-family: "Bebas Neue";
  font-size: 65px;
  font-weight: 600;
  -webkit-transition: -webkit-transform 0.6s ease 0s;
  transition: -webkit-transform 0.6s ease 0s;
  transition: transform 0.6s ease 0s;
  transition: transform 0.6s ease 0s, -webkit-transform 0.6s ease 0s;
}
@media (max-width: 767px) {
  .works-title {
    text-align: center;
    font-size: 50px;
  }
}

.works-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .works-list {
    display: block;
  }
}

.works-item {
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
  -webkit-transition: -webkit-transform 0.6s ease 0s;
  transition: -webkit-transform 0.6s ease 0s;
  transition: transform 0.6s ease 0s;
  transition: transform 0.6s ease 0s, -webkit-transform 0.6s ease 0s;
}
@media (min-width: 1200px) {
  .works-item {
    width: calc(50% - 20px);
  }
  .works-item:not(:nth-child(2n+1)) {
    margin-left: 40px;
  }
  .works-item:nth-child(3), .works-item:nth-child(4) {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .works-item:not(:nth-child(1)) {
    margin-top: 16px;
  }
}

.works-item_text {
  padding: 20px;
}
@media (max-width: 767px) {
  .works-item_text {
    padding: 12px;
  }
}

.works-item_title {
  font-weight: 600;
  font-size: 18px;
}

.works-message {
  font-size: 14px;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .about {
    text-align: center;
  }
}

.about-inner {
  width: 900px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .about-inner {
    padding: 0 16px;
  }
}

@media (min-width: 1200px) {
  .about-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: -webkit-transform 0.6s ease 0s;
    transition: -webkit-transform 0.6s ease 0s;
    transition: transform 0.6s ease 0s;
    transition: transform 0.6s ease 0s, -webkit-transform 0.6s ease 0s;
  }
}

.about-picture img {
  width: 160px;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .about-picture {
    text-align: center;
  }
}

.about-sns_link {
  display: block;
  width: 16px;
  height: 16px;
  font-size: 24px;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .about-content {
    margin-left: 80px;
    letter-spacing: 0.1em;
  }
}
@media (max-width: 767px) {
  .about-content {
    padding-top: 16px;
  }
}

.about-header_title {
  font-weight: 700;
  font-size: 20px;
}
@media (max-width: 767px) {
  .about-header_title {
    margin-top: 16px;
  }
}
.about-header_title .left {
  margin-right: 6px;
}
.about-header_title .right {
  margin-left: 6px;
}

.about-skill_picture1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 60px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .about-skill_picture1 {
    text-align: center;
    display: block;
    margin-top: 14px;
  }
}

.about-header_message {
  margin-top: 8px;
}
@media (max-width: 767px) {
  .about-header_message {
    text-align: left;
  }
}

.about-header_text {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .about-header_text {
    margin-top: 16px;
    text-align: left;
  }
}

.about-body {
  margin-top: 20px;
}

.about-body_text {
  font-weight: 700;
  font-size: 18px;
  margin-top: 36px;
}
.about-body_text .left {
  margin-right: 6px;
}
.about-body_text .right {
  margin-left: 6px;
}

.about-skill_picture2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 60px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .about-skill_picture2 {
    text-align: center;
    display: block;
    margin-top: 14px;
  }
}

.about-body_message {
  margin-top: 10px;
}

.about-link_button {
  margin-top: 40px;
}