@charset "UTF-8";
/* ルートのフォントサイズを16pxに設定*/
/* ルートのフォントサイズを16pxに設定*/
@media (max-width: 1180px) {
  .aa {
    color: red;
  }
}

@media (max-width: 1179px) {
  .aa {
    color: blue;
  }
}

@media (max-width: 767px) {
  .aa {
    color: yellow;
  }
}

/* ルートのフォントサイズを16pxに設定*/
@media (max-width: 1180px) {
  .aa {
    color: red;
  }
}

@media (max-width: 1179px) {
  .aa {
    color: blue;
  }
}

@media (max-width: 767px) {
  .aa {
    color: yellow;
  }
}

/*
    リセットCSS等の基本設定
*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:focus {
  outline: none;
}

html {
  font-size: 62.5%;
  /* ルートのフォントサイズ*/
}

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

body {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.6em;
  font-weight: 500;
  color: #3e3e3e;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
a, p, span,
blockquote, code,
ol, ul, li, dl, dt, dd,
div, section, article, main, aside,
nav, header, footer,
img, figure, figcaption,
address, time, audio, video,
iframe, fieldset,
form, label, table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}

article, aside, footer, header, nav, section, main {
  display: block;
}

li, ol {
  list-style: none;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
  border: 1px solid;
}

th {
  padding: 30px 0;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #c7c1c1;
  border-right: none;
  color: #ffffff;
  background-color: #1F81C2;
  width: 20%;
}

@media (max-width: 767px) {
  th {
    width: 30%;
  }
}

td {
  padding-left: 20px;
  text-align: left;
  vertical-align: middle;
  border: 1px solid #c7c1c1;
}

td li {
  padding-left: 1em;
  text-indent: -1em;
}

input, textarea {
  padding: 8px;
  border: 1px solid #3e3e3e;
  border-radius: 0;
  background-image: none;
  font-family: inherit;
  font-size: inherit;
  -webkit-appearance: none;
}

input:focus, textarea:focus {
  outline: none;
  border: 1px solid #3e3e3e;
  -webkit-box-shadow: none;
          box-shadow: none;
}

textarea {
  resize: none;
}

input[type="submit"] {
  cursor: pointer;
  border: none;
}

input[type="submit"]:hover, input[type="submit"]:focus {
  outline: none;
  border: none;
}

input[type="submit"] ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input[type="radio"] {
  display: none;
}

input[type="radio"] + span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 1.2em;
  margin: 0 0.2em 0;
  cursor: pointer;
}

input[type="radio"] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  border: 1px solid #3e3e3e;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  display: block;
}

input[type="radio"] + span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

input[type="radio"] + span:focus, input[type="radio"] + span:checked {
  outline: none;
  border: 1px solid #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #3e3e3e;
}

input[type="radio"]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0.2em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #3e3e3e;
  border-radius: 50%;
  width: 0.6em;
  height: 0.6em;
  display: block;
  opacity: 1;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 1.2em;
  margin: 0 0.2em 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

input[type="checkbox"] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  border: 1px solid #3e3e3e;
  border-radius: 2px;
  width: 1em;
  height: 1em;
  display: block;
}

input[type="checkbox"] + span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

input[type="checkbox"]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 1em;
  height: 0.6em;
  margin-top: -0.2em;
  display: block;
  border-left: 3px solid #3e3e3e;
  border-bottom: 3px solid #3e3e3e;
  opacity: 1;
}

select {
  border-radius: 0;
  background-image: none;
  border: 2px solid #1F81C2;
  font-family: inherit;
  font-size: 1em;
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  margin: auto;
  display: block;
  padding: 16px;
  margin-bottom: 30px;
  width: 70%;
  background-color: #fff;
}

@media (max-width: 767px) {
  select {
    width: 94%;
  }
}

select::-ms-expand {
  display: none;
}

select:focus {
  outline: none;
  border: 1px solid #3e3e3e;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.hidden {
  display: none;
}

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

.wrapper {
  overflow: hidden;
}

.br-pc {
  display: block;
}

@media (max-width: 1179px) {
  .br-pc {
    display: none;
  }
}

@media (max-width: 767px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}

@media (max-width: 767px) {
  .br-sp {
    display: block;
  }
}

/* ルートのフォントサイズを16pxに設定*/
/* ルートのフォントサイズを16pxに設定*/
@media (max-width: 1180px) {
  .aa {
    color: red;
  }
}

@media (max-width: 1179px) {
  .aa {
    color: blue;
  }
}

@media (max-width: 767px) {
  .aa {
    color: yellow;
  }
}

/*
    header
*/
.header {
  height: 80px;
}

/* ドロワーメニュー*/
.drower-circle {
  background: #ffffff;
  z-index: 99;
  width: 60px;
  height: 60px;
  top: 11px;
  right: 9px;
  position: fixed;
  display: none;
}

@media (max-width: 1179px) {
  .drower-circle {
    display: block;
  }
}

.screen-menu {
  height: 20px;
  position: absolute;
  right: 24px;
  top: 30px;
  width: 30px;
  z-index: 99;
  display: none;
}

@media (max-width: 1179px) {
  .screen-menu {
    display: block;
    position: fixed;
  }
}

.menu__line {
  background: #117cb7;
  display: block;
  height: 3px;
  position: absolute;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  width: 100%;
}

.menu__line--center {
  top: 9px;
}

.menu__line--bottom {
  bottom: -1px;
}

.menu__line--top.active {
  top: 7px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.menu__line--center.active {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.menu__line--bottom.active {
  bottom: 10px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.gnav {
  background: rgba(56, 132, 184, 0.8);
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 98;
}

.gnav__wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  width: 100%;
  text-align: center;
}

.gnav__menu__item {
  margin: 40px 0;
}

.gnav__menu__item p {
  text-align: center;
  font-size: 1.6rem;
}

.gnav__menu__item a {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: .5s;
  transition: .5s;
}

@media (max-width: 767px) {
  .gnav__menu__item a {
    font-size: 3rem;
  }
}

.gnav__menu__item a:hover {
  color: #666;
}

/* ドロワーメニュー end*/
.header-left {
  z-index: 2;
}

@media (max-width: 1179px) {
  .header-left {
    margin-left: 20px;
  }
}

.header-left img {
  height: auto;
  width: 200px;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .header-left img {
    margin-top: 18px;
  }
}

.header-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1;
}

.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  z-index: 2;
}

@media (max-width: 1179px) {
  .header-right {
    display: none;
  }
}

.global-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.global-nav li {
  margin: 30px auto 0px 0;
  padding-right: 50px;
  font-weight: bold;
  font-weight: bold;
}

.global-nav li:last-child {
  padding-right: 0px;
}

.global-nav .nav-link {
  text-decoration: none;
  color: #3e3e3e;
}

.global-nav p {
  font-size: 1.3rem;
  color: #b5e0f5;
  text-align: center;
}

.nav-link {
  display: inline-block;
  position: relative;
  text-decoration: none;
}

.nav-link::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #1F81C2;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  padding-top: 2px;
}

@media (max-width: 1179px) {
  .nav-link::after {
    display: none;
  }
}

.nav-link:hover {
  cursor: pointer;
}

.nav-link:hover::after {
  width: 100%;
}

/*
    header end
*/
/* ルートのフォントサイズを16pxに設定*/
/* ルートのフォントサイズを16pxに設定*/
@media (max-width: 1180px) {
  .aa {
    color: red;
  }
}

@media (max-width: 1179px) {
  .aa {
    color: blue;
  }
}

@media (max-width: 767px) {
  .aa {
    color: yellow;
  }
}

/*
    main-visual
*/
.swiper-slide img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  background-size: cover;
  background-position: center;
}

.swiper-button-prev,
.swiper-button-next {
  width: 100px;
  height: 32px;
  margin-top: -16px;
  margin-right: 200px;
  margin-left: 200px;
}

.swiper-button-prev:after {
  content: none !important;
}

.swiper-button-next:after {
  content: none !important;
}

.main-title p {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  color: #FFFFFC;
  font-size: 10.5rem;
  font-style: normal;
  white-space: nowrap;
  text-shadow: 0px 11px 25px rgba(0, 0, 0, 0.5);
  border-bottom: 4px solid rgba(191, 202, 211, 0.6);
  line-height: 1;
  letter-spacing: 20px;
}

@media (max-width: 1179px) {
  .main-title p {
    font-size: 7.5rem;
  }
}

@media (max-width: 767px) {
  .main-title p {
    font-size: 4rem;
  }
}

/*
    main-visual end
*/
/*
    content
*/
.content-wrapper {
  padding: 100px 0;
}

@media (max-width: 767px) {
  .content-wrapper {
    padding: 30px 0;
  }
}

.content-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}

@media (max-width: 1179px) {
  .content-items {
    padding: 0 10px;
  }
}

@media (max-width: 767px) {
  .content-items {
    display: block;
  }
}

.content-text {
  margin: auto;
}

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

.content-text_sp {
  display: none;
}

@media (max-width: 767px) {
  .content-text_sp {
    text-align: center;
    margin: auto;
    display: block;
  }
}

.content-heading {
  font-size: 2.5rem;
  font-weight: bold;
}

@media (max-width: 767px) {
  .content-heading {
    margin-top: 20px;
  }
}

.content-text_main {
  margin-top: 20px;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .content-text_main {
    text-align: left;
  }
}

.content-btn {
  background-color: #3e3e3e;
  text-decoration: none;
  padding: 14px 40px;
  display: block;
  text-align: center;
  width: 320px;
  color: #ffffff;
  font-weight: bold;
  margin-top: 50px;
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
  background-color: #333;
  border: 2px solid #333;
  color: #fff;
}

@media (max-width: 767px) {
  .content-btn {
    width: 300px;
    margin: auto;
    margin-top: 30px;
  }
}

.works-btn:hover {
  background-color: #fff;
  border-color: #D13328;
  color: #D13328;
}

.content-btn:hover,
.works-btn_house:hover {
  background-color: #fff;
  border-color: #59b1eb;
  color: #59b1eb;
}

.works-btn_synthesis:hover{
  background-color: #fff;
  border-color: #32cd32;
  color: #32cd32;
}

.works-btn_web:hover {
  background-color: #fff;
  border-color: #ffd700;
  color: #ffd700;
}

.content-btn:before,
.content-btn:after {
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #333;
}

.content-btn:before {
  top: 0;
}

.content-btn:after,
.works-btn:after {
  bottom: 0;
}

.content-btn:hover:before,
.content-btn:hover:after,
.works-btn:hover:before,
.works-btn:hover:after {
  height: 0;
  background-color: #59b1eb;
}

#arrow {
  margin-left: 5px;
}

.content-image img {
  max-width: 700px;
  margin-left: 30px;
}

@media (max-width: 1179px) {
  .content-image img {
    width: 95%;
  }
}

@media (max-width: 767px) {
  .content-image img {
    width: 100%;
    display: block;
    margin: auto;
  }
}

.service-image img {
  max-width: 700px;
  margin-right: 30px;
}

@media (max-width: 1179px) {
  .service-image img {
    width: 95%;
  }
}

@media (max-width: 767px) {
  .service-image img {
    width: 100%;
    display: block;
    margin: auto;
  }
}

.service-text {
  margin: auto;
}

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

/*
    content end
*/
/*
    news
*/
.news-wrapper {
  padding-bottom: 30px;
}

.news-heading {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
}

.news-items {
  padding: 16px;
  max-width: 700px;
  margin: auto;
  background-color: #F4F4F4;
  margin-top: 30px;
}

.news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .news-item {
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.day {
  width: 0%;
  margin: auto;
}

.news-text {
  width: 70%;
}

@media (max-width: 767px) {
  .news-text {
    width: 100%;
  }
}

.contact-btn {
  background-color: #3e3e3e;
  text-decoration: none;
  padding: 14px 40px;
  display: block;
  text-align: center;
  width: 320px;
  color: #ffffff;
  font-weight: bold;
  margin-top: 50px;
  font-size: 1.6rem;
  margin: auto;
  margin-top: 50px;
  position: relative;
  z-index: 2;
  background-color: #333;
  border: 2px solid #333;
  color: #fff;
}

@media (max-width: 767px) {
  .contact-btn {
    width: 300px;
    margin: auto;
    margin-top: 30px;
  }
}

.contact-btn:hover {
  background-color: #fff;
  border-color: #59b1eb;
  color: #59b1eb;
}

.contact-btn:before,
.contact-btn:after {
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #333;
}

.contact-btn:before {
  top: 0;
}

.contact-btn:after {
  bottom: 0;
}

.contact-btn:hover:before,
.contact-btn:hover:after {
  height: 0;
  background-color: #59b1eb;
}

/*
    news end
*/
/*
    footer-list
*/
.footer-top {
  background-color: #F4F4F4;
  padding: 16px 0;
}

.footer-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-nav li {
  margin: 0 5px;
}

.footer-nav li:last-child {
  padding-right: 0px;
}

@media (max-width: 767px) {
  .footer-nav li {
    margin: 0 0;
    font-size: 1.1rem;
  }
}

.footer-nav .nav-link {
  text-decoration: none;
  color: #3e3e3e;
}

/*
    footer-list end
*/
/********************************************/
/********************************************/
/*****************  works.html  *******************/
/********************************************/
/********************************************/
/*
    main-top
*/
.main-top-wrapper {
  border-top: 4px solid rgba(191, 202, 211, 0.25);
}

.top-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top-home {
  padding: 10px;
  text-decoration: none;
  color: #3e3e3e;
}

.fa-home {
  margin-right: 5px;
  text-decoration: none;
  color: #3e3e3e;
}

.top-arrow {
  display: block;
  width: 34px;
  height: 34px;
  border-top: solid 1px #bfcad3;
  border-right: solid 1px #bfcad3;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: 5px;
}

.current-page {
  padding: 10px 30px;
  text-decoration: none;
  color: #3e3e3e;
}

/*
    main-top end
*/
/*
    works-visual
*/
.works-visual-wrapper {
  background: url(/image/haikei.jpg);
  background-position: center;
  height: 330px;
  -o-object-fit: cover;
     object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
}

/*
    works-visual end
*/
/*
    works-content
*/
.works-content_wrapper {
  padding: 30px 10px;
}

.works-heading {
  padding: 50px 0;
  text-align: center;
  display: block;
}

.works-heading_top {
  font-size: 2.8rem;
  text-align: center;
  font-weight: bold;
}

@media (max-width: 767px) {
  .works-heading_top {
    font-size: 2rem;
    display: inline-block;
    text-align: left;
  }
}

.works-heading_bottom {
  text-align: center;
  margin-top: 30px;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .works-heading_bottom {
    display: inline-block;
    text-align: left;
  }
}

.works-text_connect {
  font-size: 2.5rem;
  color: #d42930;
  font-weight: bold;
}

@media (max-width: 767px) {
  .works-text_connect {
    margin-top: 20px;
  }
}

.works-text_house {
  font-size: 2.5rem;
  color: #d42930;
  font-weight: bold;
  color: #34a4e2;
}

@media (max-width: 767px) {
  .works-text_house {
    margin-top: 20px;
  }
}

.works-text_synthesis {
  font-size: 2.5rem;
  color: #d42930;
  font-weight: bold;
}

@media (max-width: 767px) {
  .works-text_synthesis {
    margin-top: 20px;
  }
}

.works-text_middle {
  margin-top: 10px;
  font-size: 2.0rem;
  font-weight: bold;
}

@media (max-width: 767px) {
  .works-text_middle {
    display: inline-block;
    text-align: left;
  }
}

.works-text_bottom {
  margin-top: 10px;
  line-height: 1.9;
}

@media (max-width: 767px) {
  .works-text_bottom {
    display: inline-block;
    text-align: left;
  }
}

.works-text_bottom span {
  color: #D13328;
  font-weight: bold;
}

@media (max-width: 1179px) {
  .works-image_left {
    margin: auto;
  }
}

.works-image_left img {
  max-width: 620px;
  margin-right: 30px;
}

@media (max-width: 1179px) {
  .works-image_left img {
    width: 95%;
  }
}

@media (max-width: 767px) {
  .works-image_left img {
    width: 100%;
    display: block;
    margin: auto;
  }
}

@media (max-width: 1179px) {
  .works-image_right {
    margin: auto;
  }
}

.works-image_right img {
  max-width: 620px;
  margin-left: 30px;
}

@media (max-width: 1179px) {
  .works-image_right img {
    width: 95%;
    max-width: 900px;
  }
}

@media (max-width: 767px) {
  .works-image_right img {
    width: 100%;
    display: block;
    margin: auto;
    max-width: 620px;
  }
}

.works-btn {
  background-color: #3e3e3e;
  text-decoration: none;
  padding: 14px 40px;
  display: block;
  text-align: center;
  width: 320px;
  color: #ffffff;
  font-weight: bold;
  margin-top: 50px;
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
  background-color: #D13328;
  border: 2px solid #D13328;
  color: #fff;
  margin: auto;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .works-btn {
    width: 300px;
    margin: auto;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .works-btn {
    width: 280px;
  }
}

.works-btn p {
  text-align: center;
}

@media (max-width: 767px) {
  .works-btn p {
    font-size: 1.4rem;
  }
}

.works-btn_house {
  background-color: #3e3e3e;
  text-decoration: none;
  padding: 14px 40px;
  display: block;
  text-align: center;
  width: 320px;
  color: #ffffff;
  font-weight: bold;
  margin-top: 50px;
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
  background-color: #34a4e2;
  border: 2px solid #34a4e2;
  color: #fff;
  margin: auto;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.works-btn_synthesis {
  background-color: #3e3e3e;
  text-decoration: none;
  padding: 14px 40px;
  display: block;
  text-align: center;
  width: 320px;
  color: #ffffff;
  font-weight: bold;
  margin-top: 50px;
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
  background-color: #32cd32;
  border: 2px solid #32cd32;
  color: #fff;
  margin: auto;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.works-btn_web {
  background-color: #3e3e3e;
  text-decoration: none;
  padding: 14px 40px;
  display: block;
  text-align: center;
  width: 320px;
  color: #ffffff;
  font-weight: bold;
  margin-top: 50px;
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
  background-color: #ffd700;
  border: 2px solid #ffd700;
  color: #fff;
  margin: auto;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .works-btn_house,
  .works-btn_synthesis,
  .works-btn_web {
    width: 300px;
    margin: auto;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .works-btn_house,
  .works-btn_synthesis,
  .works-btn_web {
    width: 280px;
  }
}

.works-btn_house p,
.works-btn_synthesis p,
.works-btn_web p {
  text-align: center;
}

@media (max-width: 767px) {
  .works-btn_house p,
  .works-btn_synthesis p,
  .works-btn_web p {
    font-size: 1.4rem;
  }
}

#works-arrow {
  margin: auto 7px;
  font-size: 2.6rem;
}

.works-allow {
  display: block;
  width: 20px;
  height: 20px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: auto 7px;
}

.works-allow:hover {
  border-top: solid 2px #59b1eb;
  border-right: solid 2px #59b1eb;
}

/*
    works-content end
*/
/********************************************/
/********************************************/
/*****************  company.html  *******************/
/********************************************/
/********************************************/
/*
    main-top
*/
.company-top-wrapper {
  border-top: 4px solid rgba(191, 202, 211, 0.25);
  border-bottom: 4px solid rgba(191, 202, 211, 0.25);
}

/*
    main-top end
*/
/*
    mission
*/
.mission-wrapper {
  padding: 40px 0;
}

@media (max-width: 767px) {
  .mission-wrapper {
    padding: 40px 0 0 0;
  }
}

.company-heading {
  font-size: 2.8rem;
  text-align: center;
  font-weight: bold;
}

@media (max-width: 767px) {
  .company-heading {
    font-size: 2.5rem;
  }
}

.mission-text {
  position: relative;
  padding: 0.2em 0.5em;
  background-color: #2495d8;
  color: white;
  font-size: 3rem;
  text-align: center;
  font-weight: lighter;
  margin: auto;
  margin-top: 50px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 767px) {
  .mission-text {
    font-size: 2rem;
  }
}

.company-border {
  width: 200px;
  border: 2.5px solid #F1F5F9;
  display: block;
  margin: 0 auto;
  margin-top: -23px;
}

.company-border-bottom {
  border: 2.5px solid #c3d9e4;
  width: 200px;
  display: block;
  margin: 0 auto;
  margin-top: 15px;
}

/*
    mission end
*/
/*
    message
*/
.message-wrapper {
  padding: 40px 5px;
}

.message-box {
  border: 4px solid #408BB8;
}

.message-text {
  padding: 16px;
  font-size: 2rem;
  line-height: 2;
  text-align: justify;
}

.message-text span {
  font-weight: bold;
}

@media (max-width: 767px) {
  .message-text {
    padding: 5px;
    font-size: 1.6rem;
  }
}

.message-text_bottom {
  text-align: right;
  padding: 16px;
  font-weight: bold;
  font-size: 2rem;
}

@media (max-width: 767px) {
  .message-text_bottom {
    padding: 5px;
    font-size: 1.6rem;
  }
}

/*
    message end
*/
/*
    overview 
*/
.overview-wrapper {
  padding: 0 5px;
}

.overview-table {
  margin-top: 50px;
  margin-bottom: 50px;
}

.office {
  margin-top: 5px;
}

/*
    overview end
*/
/********************************************/
/********************************************/
/*****************  contact.html  *******************/
/********************************************/
/********************************************/
.contact-visual-wrapper {
  background: url(/image/contact-form.jpg);
  background-position: center;
  height: 330px;
  -o-object-fit: cover;
     object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-heading {
  text-align: center;
  font-size: 2.5rem;
  text-align: center;
  margin-top: 30px;
}

.contact-form {
  color: #3e3e3e;
  font-weight: bold;
  padding: 30px 0;
}

.contact-form p {
  width: 70%;
  margin: auto;
}

@media (max-width: 767px) {
  .contact-form p {
    width: 94%;
  }
}

.contact-form span {
  color: #d4574f;
  margin-left: 20px;
}

.contact-form_text {
  margin: 20px 0;
  text-align: center;
}

.text-name {
  margin: auto;
  display: block;
  padding: 16px;
  margin-bottom: 30px;
  width: 70%;
  border: 2px solid #1F81C2;
}

@media (max-width: 767px) {
  .text-name {
    width: 94%;
    margin-bottom: 39px;
  }
}

.textarea-text {
  margin: auto;
  display: block;
  margin-bottom: 39px;
  width: 70%;
  height: 210px;
  border: 2px solid #1F81C2;
}

@media (max-width: 767px) {
  .textarea-text {
    width: 94%;
  }
}

.contact-form_btn {
  background-color: #1F81C2;
  font-size: 1.8rem;
  text-decoration: none;
  border-radius: 30px;
  padding: 14px 40px;
  display: block;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
  margin: auto;
  text-align: center;
  width: 350px;
  color: #ffffff;
  font-weight: bold;
}

@media (max-width: 767px) {
  .contact-form_btn {
    width: 94%;
  }
}

/********************************************/
/********************************************/
/*****************  thanks.html  *******************/
/********************************************/
/********************************************/
.thanks-text {
  font-size: 2rem;
  text-align: center;
}

.thanks-text p {
  margin-top: 10px;
}

.back-top_btn {
  background-color: #4ACE95;
  font-size: 1.4rem;
  text-decoration: none;
  border-radius: 30px;
  padding: 14px 40px;
  display: block;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
  margin: auto;
  text-align: center;
  width: 250px;
  color: #ffffff;
  margin-top: 10px;
}

/********************************************/
/********************************************/
/*****************  access.html  *******************/
/********************************************/
/********************************************/
.access-wrapper {
  padding: 50px 0;
}

.access-map {
  display: block;
  margin: auto;
  text-align: center;
}

.iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 75%;
  /* = height ÷ width × 100 */
}

.iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access-text {
  margin-top: 20px;
  font-size: 2rem;
}

@media (max-width: 767px) {
  .access-text {
    text-align: center;
    font-size: 1.6rem;
  }
}

.access-text span {
  border-bottom: solid 3px #D13328;
}

/* ルートのフォントサイズを16pxに設定*/
/* ルートのフォントサイズを16pxに設定*/
@media (max-width: 1180px) {
  .aa {
    color: red;
  }
}

@media (max-width: 1179px) {
  .aa {
    color: blue;
  }
}

@media (max-width: 767px) {
  .aa {
    color: yellow;
  }
}

/*
    footer
*/
.footer-wrapper {
  padding: 10px 0;
}

.footer-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-item img {
  height: auto;
  width: 200px;
}

@media (max-width: 767px) {
  .footer-item {
    display: block;
    text-align: center;
  }
}

.footer-right {
  font-size: 1.2rem;
  margin-left: 20px;
  line-height: 1.3;
  margin-top: 10px;
}

.footer-link {
  text-decoration: none;
  color: #3e3e3e;
}

.footer-link span:hover {
  opacity: 0.4;
}

/*
    footer end
*/
/*# sourceMappingURL=style.css.map */