@charset "UTF-8";
/* ベース */
body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}

.wrapper {
  max-width: 1920px;
  margin: 0 auto;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

ul {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
}

.btn {
  display: inline-block;
  width: 170px;
  line-height: 40px;
  background-color: #e43a47;
  box-shadow: 0px 3px 5px 2px #858585;
  border-radius: 20px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .btn {
    font-size: 14px;
    width: 150px;
    line-height: 35px;
  }
}

.header {
  padding-right: 30px;
  padding-left: 30px;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
}
.header__logo {
  display: flex;
  align-items: center;
  font-size: 20px;
}
.header__logo img {
  width: 45px;
  padding-right: 5px;
}
.header__logo h1 img {
  width: 180px;
  height: 50px;
}
.header__menu {
  margin: auto 0 auto auto;
  z-index: 100;
}
.header__menu ul {
  z-index: 10;
  display: flex;
}
.header__menu ul li {
  margin: 0 10px;
}
.header__menu ul li a {
  position: relative;
  line-height: 40px;
}
.header__menu ul li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #e43a47;
  bottom: 10px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.header__menu ul li a:hover::after {
  visibility: visible;
  bottom: -5px;
  opacity: 1;
}
.header__menubtn {
  display: none;
  position: relative;
  top: 5px;
  background: #666;
  z-index: 100;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}
.header__menubtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
}
.header__menubtn span:nth-of-type(1), .header__menubtn span:nth-of-type(3) {
  height: 2px;
  background: #fff;
  width: 62%;
  left: 10px;
}
.header__menubtn span:nth-of-type(1) {
  top: 13px;
}
.header__menubtn span:nth-of-type(2) {
  top: 20px;
  left: 11px;
  font-size: 0.6rem;
  text-transform: uppercase;
  color: #fff;
}
.header__menubtn span:nth-of-type(3) {
  top: 36px;
}
.header__menubtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.header__menubtn.active span:nth-of-type(2) {
  opacity: 0;
}
.header__menubtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
@media screen and (max-width: 1280px) {
  .header {
    padding-right: 10px;
    padding-left: 10px;
  }
  .header__logo {
    font-size: 18px;
  }
  .header__menu {
    font-size: 12px;
  }
  .header__menu ul li {
    margin: 0 5px;
  }
}
@media screen and (max-width: 599px) {
  .header__menu {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 10;
  }
  .header__menu ul {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    top: 0;
    right: 0;
    width: 40vw;
    height: 40vh;
    background-color: #fff;
    font-size: 18px;
    border: #333 1px solid;
  }
  .header__menubtn {
    display: block;
  }
}

.page-top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 15px;
  bottom: 30px;
  background: #333;
  border: solid 2px #333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  cursor: pointer;
}
.page-top__arrow {
  display: block;
  height: 10px;
  width: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(20%) rotate(-45deg);
}
@media screen and (max-width: 599px) {
  .page-top {
    width: 40px;
    height: 40px;
  }
  .page-top__arrow {
    height: 8px;
    width: 8px;
  }
}

.main-visual {
  max-width: 1260px;
  height: 100%;
}

/* メインビジュアル */
.news {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 10px 100px;
}
.news .section-title {
  width: 330px;
  margin: 0 auto;
  padding-top: 50px;
  text-align: center;
  font-size: 36px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 10;
  border-bottom: solid 3px #e43a47;
  padding-bottom: 10px;
}
.news .section-title::before {
  color: rgba(221, 222, 255, 0.3);
  font-size: 72px;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .news .section-title {
    font-size: 28px;
    padding-top: 40px;
  }
  .news .section-title::before {
    font-size: 56px;
  }
}
@media screen and (max-width: 599px) {
  .news .section-title {
    font-size: 24px;
    padding-top: 30px;
  }
  .news .section-title::before {
    font-size: 48px;
  }
}
.news .section-title::before {
  content: "NEWS";
}
.news__area {
  width: 70%;
  cursor: default;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  border-top: solid 1px #ccc;
}
.news__area__list {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: solid 2px #ccc;
}
.news__area__list__date {
  width: 150px;
}
@media screen and (max-width: 1280px) {
  .news__area {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  .news__area {
    width: 100%;
  }
  .news__area__list {
    font-size: 14px;
  }
  .news__area__list__date {
    width: 90px;
  }
}

.works {
  padding: 30px 10px 100px;
  background-color: #f5f5f5;
}
.works .section-title {
  width: 330px;
  margin: 0 auto;
  padding-top: 50px;
  text-align: center;
  font-size: 36px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 10;
  border-bottom: solid 3px #e43a47;
  padding-bottom: 10px;
}
.works .section-title::before {
  color: rgba(221, 222, 255, 0.3);
  font-size: 72px;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .works .section-title {
    font-size: 28px;
    padding-top: 40px;
  }
  .works .section-title::before {
    font-size: 56px;
  }
}
@media screen and (max-width: 599px) {
  .works .section-title {
    font-size: 24px;
    padding-top: 30px;
  }
  .works .section-title::before {
    font-size: 48px;
  }
}
.works .section-title::before {
  content: "WORKS";
}
.works__area {
  margin-top: 80px;
  margin-bottom: 70px;
  display: flex;
  justify-content: center;
}
.works__area__card {
  cursor: pointer;
  width: 300px;
  line-height: 1.5;
}
.works__area__card:nth-of-type(2) {
  margin-left: 10px;
  margin-right: 10px;
}
.works__area__card:hover {
  opacity: 0.6;
  transition: 0.5s;
}
.works__area__card img {
  height: 200px;
}
.works__area__card__ttl {
  text-align: center;
  font-weight: bold;
  padding-bottom: 8px;
}
.works .btn-works {
  margin: 0 auto;
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
.works .btn-works a {
  color: #fff;
  font-size: 18px;
}
@media screen and (max-width: 1280px) {
  .works {
    padding-bottom: 50px;
  }
  .works__area {
    margin-top: 50px;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
  }
  .works__area__card {
    width: 100%;
    margin-bottom: 30px;
  }
  .works__area__card img {
    height: 300px;
  }
  .works__area__card__ttl {
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  .works__area {
    margin-bottom: 20px;
  }
  .works__area__card img {
    height: 200px;
  }
}

.construction-flow {
  padding-bottom: 100px;
  background-color: #f5f5f5;
}
.construction-flow .section-title {
  width: 330px;
  margin: 0 auto;
  padding-top: 50px;
  text-align: center;
  font-size: 36px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 10;
  border-bottom: solid 3px #e43a47;
  padding-bottom: 10px;
}
.construction-flow .section-title::before {
  color: rgba(221, 222, 255, 0.3);
  font-size: 72px;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .construction-flow .section-title {
    font-size: 28px;
    padding-top: 40px;
  }
  .construction-flow .section-title::before {
    font-size: 56px;
  }
}
@media screen and (max-width: 599px) {
  .construction-flow .section-title {
    font-size: 24px;
    padding-top: 30px;
  }
  .construction-flow .section-title::before {
    font-size: 48px;
  }
}
.construction-flow .section-title::before {
  content: "FLOW";
}
.construction-flow_area {
  margin-top: 50px;
}
.construction-flow_area_text {
  width: 50%;
  font-size: 18px;
  line-height: 1.25;
  margin: 0 auto;
}
.construction-flow_area-img {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}
.construction-flow_area-img img {
  padding: 10px;
  max-width: 350px;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}
.construction-flow_area .btn-flow {
  margin: 0 auto;
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
.construction-flow_area .btn-flow a {
  color: #fff;
  font-size: 18px;
}
@media screen and (max-width: 1280px) {
  .construction-flow {
    padding-bottom: 30px;
  }
  .construction-flow_area_text {
    width: 60%;
    font-size: 16px;
  }
  .construction-flow_area-img img {
    max-width: 300px;
    height: 200px;
  }
}
@media screen and (max-width: 599px) {
  .construction-flow_area_text {
    width: 80%;
    font-size: 14px;
  }
  .construction-flow_area-img img {
    height: 170px;
  }
}

.company-about {
  padding-top: 30px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 100px;
}
.company-about .section-title {
  width: 330px;
  margin: 0 auto;
  padding-top: 50px;
  text-align: center;
  font-size: 36px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 10;
  border-bottom: solid 3px #e43a47;
  padding-bottom: 10px;
}
.company-about .section-title::before {
  color: rgba(221, 222, 255, 0.3);
  font-size: 72px;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .company-about .section-title {
    font-size: 28px;
    padding-top: 40px;
  }
  .company-about .section-title::before {
    font-size: 56px;
  }
}
@media screen and (max-width: 599px) {
  .company-about .section-title {
    font-size: 24px;
    padding-top: 30px;
  }
  .company-about .section-title::before {
    font-size: 48px;
  }
}
.company-about .section-title::before {
  content: "company";
}
.company-about__area {
  margin-top: 70px;
  padding-right: 50px;
  padding-left: 50px;
  display: flex;
  justify-content: space-around;
}
.company-about__area__left {
  text-align: center;
}
.company-about__area__left img {
  max-width: 550px;
  max-height: 350px;
}
.company-about__area__left h3 {
  font-size: 24px;
  margin-top: 20px;
}
.company-about__area__profile {
  width: 750px;
  margin-right: 20px;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.company-about__area__profile .btn-works {
  width: 100%;
  display: flex;
  margin-top: 20px;
}
.company-about__area__profile .btn-works a {
  color: #fff;
}
.company-about__area__profile .btn-works .ml20 {
  margin-left: 30px;
}
.company-about__area__profile h3 {
  display: inline-block;
  font-size: 24px;
  border-bottom: 2px solid #333;
  margin-bottom: 20px;
  line-height: 1.5;
}
.company-about__area__profile p {
  font-size: 18px;
  line-height: 1.5;
}
.company-about__item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.company-about__item img {
  padding: 10px;
  max-width: 350px;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
}
.company-about__table {
  padding-top: 50px;
}
.company-about__table table {
  width: 100%;
}
.company-about__table table tr {
  border: solid 2px #fff;
  height: 70px;
}
.company-about__table table tr th {
  border-right: solid 2px #fff;
  background-color: rgb(230, 230, 230);
  width: 110px;
  text-align: center;
  line-height: 1.75;
}
.company-about__table table tr td {
  padding-left: 20px;
  background-color: rgb(250, 250, 250);
  line-height: 1.75;
}
@media screen and (max-width: 1280px) {
  .company-about {
    padding-bottom: 30px;
  }
  .company-about__area {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }
  .company-about__area__profile {
    width: auto;
    margin: 30px 0 50px;
  }
  .company-about__area__profile h3 {
    font-size: 18px;
  }
  .company-about__area__profile p {
    font-size: 14px;
  }
  .company-about__area__profile .btn-works {
    margin-top: 30px;
  }
  .company-about__table {
    padding-top: 0;
  }
}
@media screen and (max-width: 599px) {
  .company-about__area {
    padding-right: 30px;
    padding-left: 30px;
  }
  .company-about__item {
    margin-top: 0;
    margin-bottom: 20px;
  }
  .company-about__item img {
    height: 150px;
  }
  .company-about__table table tr {
    height: 60px;
    font-size: 14px;
  }
  .company-about__table table tr td {
    line-height: 1.5;
  }
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 10000;
  /* モーダル背景 */
}
.modal-bg {
  position: absolute;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.modal {
  /* モーダル本体 */
}
.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: scroll; /* はみ出た部分はスクロールさせる */
  height: 70%; /* これが無いと「overflow:scroll」が利かない */
  width: 70%; /* これが無いと「overflow:scroll」が利かない */
  background: white;
  padding: 40px;
}
.modal__content__ttl {
  font-size: 26px;
  text-align: center;
  margin-bottom: 20px;
}
.modal__content__img-other {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.modal__content__img-other img {
  padding: 3px;
  max-width: 30%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal__content__img1 {
  display: flex;
  margin-bottom: 40px;
}
.modal__content__img1 img {
  max-width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal__content__img2 {
  display: flex;
  margin-bottom: 40px;
}
.modal__content__img2 img {
  max-width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal__content__img3 {
  display: flex;
  margin-bottom: 40px;
}
.modal__content__img3 img {
  max-width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal__content__img4 {
  display: flex;
  margin-bottom: 40px;
}
.modal__content__img4 img {
  max-width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal__content__img5 {
  display: flex;
  margin-bottom: 40px;
}
.modal__content__img5 img {
  max-width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal__content__img6 {
  display: flex;
  margin-bottom: 40px;
}
.modal__content__img6 img {
  max-width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal__content__img7 {
  display: flex;
  margin-bottom: 40px;
}
.modal__content__img7 img {
  max-width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal__content__img8 {
  display: flex;
  margin-bottom: 40px;
}
.modal__content__img8 img {
  max-width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal__content__img9 {
  display: flex;
  margin-bottom: 40px;
}
.modal__content__img9 img {
  max-width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal__content__img10 {
  display: flex;
  margin-bottom: 40px;
}
.modal__content__img10 img {
  max-width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.company-info__area {
  padding: 50px 0;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.company-info__area__map {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.company-info__area__map img {
  width: 350px;
  padding-bottom: 20px;
}
.company-info__area__map iframe {
  width: 500px;
  height: 500px;
}
@media screen and (max-width: 1280px) {
  .company-info__area {
    padding: 30px 0;
    flex-direction: column-reverse;
  }
  .company-info__area__map {
    padding-bottom: 20px;
    margin-left: 0;
  }
  .company-info__area__map iframe {
    width: 90vw;
  }
}

.contact {
  padding-top: 30px;
  padding-bottom: 50px;
}
.contact .section-title {
  width: 330px;
  margin: 0 auto;
  padding-top: 50px;
  text-align: center;
  font-size: 36px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 10;
  border-bottom: solid 3px #e43a47;
  padding-bottom: 10px;
}
.contact .section-title::before {
  color: rgba(221, 222, 255, 0.3);
  font-size: 72px;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .contact .section-title {
    font-size: 28px;
    padding-top: 40px;
  }
  .contact .section-title::before {
    font-size: 56px;
  }
}
@media screen and (max-width: 599px) {
  .contact .section-title {
    font-size: 24px;
    padding-top: 30px;
  }
  .contact .section-title::before {
    font-size: 48px;
  }
}
.contact .section-title::before {
  content: "Contact";
}
.contact-text {
  width: 800px;
  margin: 0px auto;
  padding: 50px 100px;
  line-height: 1.75;
}
.contact .form {
  width: 800px;
  margin: 0 auto;
  background-color: #f5f5f5;
  padding: 50px 0;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact .form-wrapper {
  width: 600px;
  margin: 0 auto;
}
.contact .form input {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding-left: 10px;
  font-size: 16px;
  box-sizing: border-box;
}
.contact .form textarea {
  width: 100%;
  height: 150px;
  font-size: 16px;
  padding-left: 10px;
  box-sizing: border-box;
}
.contact .form__name, .contact .form__furigana, .contact .form__mail, .contact .form__message, .contact .form__tell {
  margin-top: 35px;
}
.contact .form__name .req, .contact .form__furigana .req, .contact .form__mail .req, .contact .form__message .req, .contact .form__tell .req {
  padding: 5px;
  font-size: 12px;
  color: #fff;
  background-color: #e43a47;
}
.contact .form__name label, .contact .form__furigana label, .contact .form__mail label, .contact .form__message label, .contact .form__tell label {
  font-size: 18px;
  margin-left: 10px;
}
.contact .form__name .alert, .contact .form__furigana .alert, .contact .form__mail .alert, .contact .form__message .alert, .contact .form__tell .alert {
  padding-left: 10px;
  font-size: 18px;
  color: #e43a47;
}
.contact .form__name__text, .contact .form__furigana__text, .contact .form__mail__text, .contact .form__message__text, .contact .form__tell__text {
  margin-bottom: 15px;
  display: flex;
}
.contact input[type=submit] {
  margin-top: 50px;
  width: 200px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  background-color: #fff;
  display: inline-block;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width: 1280px) {
  .contact-text {
    width: 90vw;
    padding: 20px 0;
  }
  .contact .form {
    width: 90vw;
    padding: 20px 0;
  }
  .contact .form-wrapper {
    width: 90%;
  }
}
@media screen and (max-width: 599px) {
  .contact {
    font-size: 14px;
  }
  .contact .form {
    padding-top: 0;
  }
  .contact .form input {
    font-size: 14px;
  }
  .contact .form textarea {
    font-size: 14px;
  }
  .contact .form__name, .contact .form__furigana, .contact .form__mail, .contact .form__message, .contact .form__tell {
    margin-top: 20px;
  }
  .contact .form__name .req, .contact .form__furigana .req, .contact .form__mail .req, .contact .form__message .req, .contact .form__tell .req {
    font-size: 14px;
    line-height: 22px;
  }
  .contact .form__name .alert, .contact .form__furigana .alert, .contact .form__mail .alert, .contact .form__message .alert, .contact .form__tell .alert {
    font-size: 14px;
  }
}

.footer__info {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.5;
}
.footer__info img {
  width: 120px;
}
.footer > p {
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: #fff;
  background-color: #333;
  font-size: 8px;
}
@media screen and (max-width: 599px) {
  .footer__info p {
    font-size: 14px;
  }
  .footer__info img {
    width: 80px;
  }
}

.bf-top {
  max-width: 850px;
  padding: 20px 20px 50px;
  line-height: 1.5;
  margin-right: auto;
  margin-left: auto;
}
.bf-top-ttl {
  width: 300px;
  display: flex;
  justify-content: center;
  margin: 50px auto 0;
  font-size: 32px;
  border-bottom: 3px solid #e43a47;
}
@media screen and (max-width: 1280px) {
  .bf-top-ttl {
    margin-top: 0;
  }
}

.bf {
  padding: 50px;
}
.bf__area {
  padding: 20px 5px;
  display: flex;
  justify-content: center;
  background-color: #f5f5f5;
}
.bf__area-img {
  height: 400px;
}
.bf__area-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bf__area__card {
  width: 700px;
  padding-right: 20px;
  padding-left: 50px;
}
.bf__area__card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.bf__area__card p {
  padding-top: 30px;
  line-height: 1.75;
}
.bf__area:nth-child(2) {
  flex-direction: row-reverse;
  background-color: #fff;
}
@media screen and (max-width: 1280px) {
  .bf {
    padding-top: 0;
  }
  .bf__area-img {
    height: 250px;
  }
  .bf__area__card {
    max-width: 450px;
    padding-left: 25px;
  }
  .bf__area__card h3 {
    font-size: 16px;
  }
  .bf__area__card p {
    font-size: 14px;
    line-height: 1.25;
    padding-top: 15px;
  }
}
@media screen and (max-width: 599px) {
  .bf {
    padding: 5px 5px 30px;
  }
  .bf__area {
    flex-direction: column;
  }
  .bf__area-img {
    width: 100%;
    max-height: auto;
  }
  .bf__area__card {
    width: 95%;
    padding: 10px 5px 0;
  }
  .bf__area:nth-child(2) {
    flex-direction: column;
  }
}

.works-other {
  text-align: center;
}
.works-other h2 {
  display: inline-block;
  width: 250px;
  padding-bottom: 10px;
  font-size: 26px;
  border-bottom: 3px solid #e43a47;
}
.works-other__area {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.works-other__area a {
  margin: 30px;
  cursor: pointer;
}
.works-other__area a:hover {
  opacity: 0.6;
  transition: 0.5s;
}
.works-other__area a img {
  max-width: 300px;
  height: 200px;
}
@media screen and (max-width: 1280px) {
  .works-other h2 {
    font-size: 24px;
  }
  .works-other__area {
    padding: 0;
    margin-top: 20px;
  }
  .works-other__area a {
    margin: 5px;
  }
  .works-other__area a img {
    height: 150px;
  }
}
@media screen and (max-width: 599px) {
  .works-other__area a img {
    height: 100px;
  }
}

.company-us {
  width: 850px;
  padding: 20px 20px 50px;
  line-height: 1.5;
  margin-right: auto;
  margin-left: auto;
}
.company-us-ttl {
  width: 450px;
  display: flex;
  justify-content: center;
  margin: 50px auto;
  font-size: 32px;
  border-bottom: 3px solid #e43a47;
}
@media screen and (max-width: 1280px) {
  .company-us {
    width: 90%;
  }
  .company-us-ttl {
    width: 350px;
    font-size: 24px;
    margin-top: 0;
  }
}
@media screen and (max-width: 599px) {
  .company-us {
    padding-right: 0;
    padding-left: 0;
  }
  .company-us p {
    font-size: 14px;
  }
}

.staff h2 {
  font-size: 28px;
  background-color: #f5f5f5;
  line-height: 2;
  padding-left: 30px;
}
.staff-area {
  display: flex;
  justify-content: space-around;
  padding: 50px;
  margin-bottom: 30px;
}
.staff-area-left {
  width: 35%;
  text-align: center;
}
.staff-area-left--img img {
  max-width: 100%;
  max-height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 15%;
     object-position: 50% 15%;
}
.staff-area-left--name {
  margin-top: 10px;
  font-size: 24px;
}
.staff-area-right {
  width: 50%;
  line-height: 1.5;
}
.staff-area-right--line {
  background-color: #e43a47;
  color: #fff;
  font-size: 18px;
  padding-left: 15px;
  margin-bottom: 20px;
}
.staff-area-right--text {
  margin-bottom: 30px;
}
@media screen and (max-width: 1280px) {
  .staff h2 {
    font-size: 24px;
  }
  .staff-area {
    padding: 20px 10px;
  }
  .staff-area-left--name {
    font-size: 20px;
  }
  .staff-area-right {
    width: 60%;
  }
  .staff-area-right--line {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .staff-area-right--text {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .staff h2 {
    font-size: 18px;
  }
  .staff-area {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
  }
  .staff-area-left {
    width: 90%;
  }
  .staff-area-right {
    width: 90%;
    padding-top: 20px;
  }
  .staff-area-right--name {
    font-size: 18px;
  }
}

.tanks {
  padding: 30px 10px 50px;
  background-color: #f5f5f5;
  text-align: center;
}
.tanks__message {
  margin-top: 50px;
}
.tanks__message .tittle {
  font-size: 36px;
  margin-bottom: 20px;
}
.tanks__message p {
  padding-top: 20px;
}
.tanks__message .back {
  display: inline-block;
  width: 180px;
  margin-top: 50px;
  padding: 10px;
  background-color: rgb(224, 68, 25);
  color: #fff;
}
@media screen and (max-width: 1280px) {
  .tanks__message .tittle {
    font-size: 24px;
  }
}
@media screen and (max-width: 599px) {
  .tanks__message .tittle {
    font-size: 18px;
  }
}

.flow {
  margin-bottom: 40px;
}
.flow-ttl {
  font-size: 28px;
  text-align: center;
  margin-bottom: 50px;
}
.flow-area {
  margin-right: auto;
  margin-left: auto;
  padding-right: 50px;
  padding-left: 50px;
  line-height: 1.25;
}
.flow-area-p {
  font-size: 18px;
}
.flow-area-flex {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}
.flow-area-flex img {
  padding: 10px;
  max-width: 350px;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
}
.flow .overlap {
  text-align: center;
}
.flow .overlap img {
  width: 500px;
}
@media screen and (max-width: 1280px) {
  .flow-ttl {
    font-size: 24px;
  }
  .flow-area {
    padding-left: 10px;
    padding-right: 10px;
  }
  .flow-area-p {
    font-size: 16px;
  }
  .flow-area-flex img {
    max-width: 250px;
    height: 180px;
  }
}
@media screen and (max-width: 599px) {
  .flow-ttl {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.workman {
  text-align: center;
  font-size: 18px;
  padding-right: 5px;
  padding-left: 5px;
  margin-bottom: 30px;
}

.voice {
  padding-bottom: 100px;
  background-color: #f5f5f5;
}
.voice .section-title {
  margin-bottom: 150px;
  width: 330px;
  margin: 0 auto;
  padding-top: 50px;
  text-align: center;
  font-size: 36px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 10;
  border-bottom: solid 3px #e43a47;
  padding-bottom: 10px;
}
.voice .section-title::before {
  color: rgba(221, 222, 255, 0.3);
  font-size: 72px;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .voice .section-title {
    font-size: 28px;
    padding-top: 40px;
  }
  .voice .section-title::before {
    font-size: 56px;
  }
}
@media screen and (max-width: 599px) {
  .voice .section-title {
    font-size: 24px;
    padding-top: 30px;
  }
  .voice .section-title::before {
    font-size: 48px;
  }
}
.voice .voice-message {
  margin: 20px;
}
.voice__area {
  margin: 50px 0;
  text-align: center;
}
.voice__area__box {
  max-width: 350px;
}
.voice__area .jun {
  font-size: 26px;
}

.wpcf7-spinner {
  display: none !important;
}/*# sourceMappingURL=style.css.map */