@charset "UTF-8";
/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* ======================================================================
 common
====================================================================== */
body {
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-size: 16px;
  color: black;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 779px) {
  body {
    font-size: 14px;
  }
}

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

img {
  vertical-align: bottom;
}
@media screen and (max-width: 779px) {
  img {
    width: 100%;
  }
}

/* iOSでのデフォルトスタイルをリセット */
input, select, textarea, button {
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-size: 16px;
  letter-spacing: 0.05em;
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input::-webkit-search-decoration, select::-webkit-search-decoration, textarea::-webkit-search-decoration, button::-webkit-search-decoration {
  display: none;
}
input::focus, select::focus, textarea::focus, button::focus {
  outline-offset: -2px;
}
@media screen and (max-width: 779px) {
  input, select, textarea, button {
    font-size: 14px;
  }
}

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

.container {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 779px) {
  .container {
    width: 92%;
  }
}

.sm {
  display: none !important;
}

@media screen and (max-width: 779px) {
  .sm {
    display: block !important;
  }

  .md {
    display: none !important;
  }
}
.trans {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.trans:hover,
.trans:hover img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
  opacity: 0.85;
}

.sec_ttl {
  text-align: center;
}
.sec_ttl span {
  display: block;
}
.sec_ttl .en {
  color: #c7000b;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  font-size: 50px;
}
@media screen and (max-width: 779px) {
  .sec_ttl .en {
    font-size: 30px;
  }
}
.sec_ttl .ja {
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 14px;
  margin-top: 15px;
}
@media screen and (max-width: 779px) {
  .sec_ttl .ja {
    margin-top: 3%;
    font-size: 11px;
  }
}

.sec_btn {
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  display: block;
  position: relative;
  text-align: center;
  color: white;
  background: #c7000b;
  border: 1px solid #c7000b;
  font-weight: bold;
  letter-spacing: 0.1em;
  width: 300px;
  height: 60px;
  line-height: 60px;
  margin: 50px auto 0;
}
@media screen and (max-width: 779px) {
  .sec_btn {
    width: 100%;
    height: 50px;
    line-height: 50px;
    margin: 7% auto 0;
  }
}
.sec_btn:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent white transparent;
  position: absolute;
  bottom: 5px;
  right: 5px;
}
.sec_btn:hover {
  background: white;
  color: #c7000b;
}
.sec_btn:hover:after {
  border-color: transparent transparent #c7000b transparent;
}

@media screen and (max-width: 779px) {
  main {
    padding-top: 53px;
  }
}

/* ======================================================================
 header
====================================================================== */
header {
  background: #c7000b;
  padding: 25px 0;
}
@media screen and (max-width: 779px) {
  header {
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0;
    left: 0;
    padding: 5px 0;
  }
}
header .container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (max-width: 779px) {
  header .container {
    display: block;
  }
}
header .container .logo {
  width: 220px;
}
header .container .logo img{
  height: 50px
}
@media screen and (max-width: 779px) {
  header .container .logo {
    width: 100px;
  }
  header .container .logo img{
    height: auto;
  }
}
header .container .menu_btn {
  position: fixed;
  right: 4%;
  top: 16px;
}
header .container .menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}
@media screen and (max-width: 779px) {
  header .container .menu {
    display: none;
  }
}
header .container .menu a {
  color: white;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 17px;
  margin-left: 50px;
}
@media screen and (max-width: 779px) {
  header .container .menu a {
    display: block;
    margin-left: 0;
    text-align: center;
    padding: 3% 0;
  }
}

/* ======================================================================
 footer
====================================================================== */
footer {
  /* margin-top: 80px; */
}
@media screen and (max-width: 779px) {
  footer {
    /* margin-top: 10%; */
  }
}
footer .top {
  text-align: center;
  background: url("../img/common/footer.jpg") no-repeat;
  background-size: cover;
  padding: 50px 0 70px;
}
@media screen and (max-width: 779px) {
  footer .top {
    padding: 10% 0;
  }
}
footer .top .container > .ttl {
  color: white;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 50px;
}
@media screen and (max-width: 779px) {
  footer .top .container > .ttl {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 7%;
  }
}
footer .top .container .btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
@media screen and (max-width: 779px) {
  footer .top .container .btn {
    display: block;
  }
}
footer .top .container .btn a {
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: relative;
  background: white;
  width: 350px;
  height: 100px;
  margin: 0 25px;
}
@media screen and (max-width: 779px) {
  footer .top .container .btn a {
    display: block;
    width: 100%;
    height: auto;
    padding: 4% 0;
    margin: 2% 0;
  }
}
footer .top .container .btn a:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #c7000b transparent;
  right: 10px;
  bottom: 10px;
}
footer .top .container .btn a:hover {
  background: #c7000b;
  color: white;
}
footer .top .container .btn a:hover:after {
  border-color: transparent transparent white transparent;
}
footer .top .container .btn a:hover .box .ttl {
  color: white;
}
footer .top .container .btn a.tel {
  pointer-events: none;
}
@media screen and (max-width: 779px) {
  footer .top .container .btn a.tel {
    pointer-events: auto;
  }
}
footer .top .container .btn a.tel:after {
  display: none;
}
@media screen and (max-width: 779px) {
  footer .top .container .btn a.tel:after {
    display: block;
  }
}
footer .top .container .btn a .box {
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
}
@media screen and (max-width: 779px) {
  footer .top .container .btn a .box {
    position: static;
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
footer .top .container .btn a .box span {
  display: block;
}
footer .top .container .btn a .box .txt {
  font-size: 14px;
}
@media screen and (max-width: 779px) {
  footer .top .container .btn a .box .txt {
    font-size: 12px;
  }
}
footer .top .container .btn a .box .ttl {
  color: #c7000b;
  font-weight: bold;
  font-size: 26px;
  margin: 10px 0;
}
@media screen and (max-width: 779px) {
  footer .top .container .btn a .box .ttl {
    font-size: 20px;
    margin: 3% 0;
  }
}
footer .top .container .btn a .box .time {
  font-size: 12px;
}
@media screen and (max-width: 779px) {
  footer .top .container .btn a .box .time {
    font-size: 10px;
  }
}
footer .menu {
  background: #c7000b;
  padding: 21px 0;
}
@media screen and (max-width: 779px) {
  footer .menu {
    display: none;
  }
}
footer .menu .container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
footer .menu .container a {
  font-family: "Roboto Condensed", sans-serif;
  color: white;
  font-size: 18px;
}
footer .menu .container a:not(:last-child) {
  margin-right: 50px;
}
footer .btm .container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding: 30px 0;
  font-size: 12px;
  line-height: 1.5;
}
@media screen and (max-width: 779px) {
  footer .btm .container {
    display: block;
    padding: 4% 0;
    font-size: 10px;
  }
}
footer .btm .container > * {
  width: 50%;
}
@media screen and (max-width: 779px) {
  footer .btm .container > * {
    width: 100%;
  }
}
footer .btm .container .copy {
  text-align: right;
}
@media screen and (max-width: 779px) {
  footer .btm .container .copy {
    text-align: center;
    margin-top: 4%;
  }
}

/* ======================================================================
 under
====================================================================== */
.under_kv {
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-color: #999;
  height: 300px;
}
@media screen and (max-width: 779px) {
  .under_kv {
    height: 200px;
  }
}
.under_kv.service {
  background-image: url("../img/service/kv_service.jpg");
}
.under_kv.works {
  background-image: url("../img/works/kv_works.jpg");
}
.under_kv.company {
  background-image: url("../img/company/kv_company.jpg");
}
.under_kv.recruit {
  background-image: url("../img/recruit/kv_recruit.jpg");
}
.under_kv.contact {
  background-image: url("../img/contact/kv_contact.jpg");
}
.under_kv .ttl {
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  color: white;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  font-size: 50px;
}
@media screen and (max-width: 779px) {
  .under_kv .ttl {
    font-size: 40px;
  }
}

.under_ttl {
  text-align: center;
  color: #c7000b;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 30px;
}
@media screen and (max-width: 779px) {
  .under_ttl {
    font-size: 20px;
  }
}

/* ======================================================================
 top
====================================================================== */
.top_kv {
  position: relative;
}
.top_kv img {
  width: 100%;
}
.top_kv .ttl {
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9;
  color: white;
  font-size: 36px;
  line-height: 1.3;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 779px) {
  .top_kv .ttl {
    font-size: 18px;
  }
}

.top_about {
  padding: 65px 0 70px;
}
@media screen and (max-width: 779px) {
  .top_about {
    padding: 10% 0;
  }
}
.top_about .txt {
  line-height: 2;
  margin-top: 55px;
}
@media screen and (max-width: 779px) {
  .top_about .txt {
    margin-top: 7%;
  }
}

.top_service {
  background: #c7000b;
  padding: 65px 0 70px;
}
@media screen and (max-width: 779px) {
  .top_service {
    padding: 10% 0;
  }
}
.top_service .sec_ttl .en, .top_service .sec_ttl .ja {
  color: white;
}
.top_service .list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 50px;
}
@media screen and (max-width: 779px) {
  .top_service .list {
    margin-top: 3%;
  }
}
.top_service .list li {
  background: white;
  width: 249px;
}
@media screen and (max-width: 779px) {
  .top_service .list li {
    width: 48%;
    margin-top: 4%;
  }
}
.top_service .list li:not(:nth-child(4n)) {
  margin-right: 1px;
}
@media screen and (max-width: 779px) {
  .top_service .list li:not(:nth-child(4n)) {
    margin-right: 0;
  }
}
@media screen and (max-width: 779px) {
  .top_service .list li:not(:nth-child(2n)) {
    margin-right: 4%;
  }
}
.top_service .list li .img img {
  width: 100%;
}
.top_service .list li .box {
  padding: 20px;
}
@media screen and (max-width: 779px) {
  .top_service .list li .box {
    padding: 6%;
  }
}
.top_service .list li .box .ttl {
  text-align: center;
  color: #c7000b;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 18px;
  margin: 0 0 15px;
}
@media screen and (max-width: 779px) {
  .top_service .list li .box .ttl {
    font-size: 16px;
    margin: 4% 0 6%;
    line-height: 1.3;
  }
}
.top_service .list li .box .txt {
  font-size: 14px;
  line-height: 1.7;
}
@media screen and (max-width: 779px) {
  .top_service .list li .box .txt {
    font-size: 12px;
  }
}
.top_service .list li .box .btn {
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: relative;


  display: block;
  text-align: center;
  color: #c7000b;
  font-weight: bold;
  border: 1px solid #c7000b;
  font-size: 14px;
  width: 100%;
  height: 40px;
  line-height: 40px;
  margin-top: 20px;
}
@media screen and (max-width: 779px) {
  .top_service .list li .box .btn {
    margin-top: 6%;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
  }
}
.top_service .list li .box .btn:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 8px 8px;
  border-color: transparent transparent #c7000b transparent;
  position: absolute;
  right: 5px;
  bottom: 5px;
}
.top_service .list li .box .btn:hover {
  background: #c7000b;
  color: white;
}
.top_service .list li .box .btn:hover:after {
  border-color: transparent transparent white transparent;
}

.top_works {
  padding: 65px 0;
}
@media screen and (max-width: 779px) {
  .top_works {
    padding: 10% 0;
  }
}
.top_works .works_slick {
  margin-top: 50px;
}
@media screen and (max-width: 779px) {
  .top_works .works_slick {
    margin-top: 7%;
  }
}
.top_works .works_slick .box .txt {
  text-align: center;
  margin-top: 20px;
  line-height: 1.7;
  font-size: 14px;
}
@media screen and (max-width: 779px) {
  .top_works .works_slick .box .txt {
    font-size: 12px;
    margin-top: 4%;
  }
}
.top_works .works_slick .box .img {
  position: relative;
}
.top_works .works_slick .box .img img {
  width: 100%;
  max-width: 360px;
  height: 270px;
}
.top_works .works_slick .box .img .tag {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
  width: 100%;
}
.top_works .works_slick .box .img .tag li {
  width: 49.85%;
  background-color: rgba(181, 35, 38, 0.75);
  text-align: center;
  color: white;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 5px 0;
  margin-top: 1px;
}
@media screen and (max-width: 779px) {
  .top_works .works_slick .box .img .tag li {
    font-size: 10px;
  }
}
.top_works .works_slick .box .img .tag li:not(:nth-child(2n)) {
  margin-right: 0.25%;
}

/* ======================================================================
 service
====================================================================== */
.service_sec01 {
  padding: 70px 0;
}
@media screen and (max-width: 779px) {
  .service_sec01 {
    padding: 10% 0;
  }
}
.service_sec01 .list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 779px) {
  .service_sec01 .list {
    display: block;
  }
}
.service_sec01 .list li {
  width: 313px;
  margin-top: 50px;
}
@media screen and (max-width: 779px) {
  .service_sec01 .list li {
    width: 100%;
    margin-top: 7%;
  }
}
.service_sec01 .list li:not(:nth-child(3n)) {
  margin-right: 30px;
}
@media screen and (max-width: 779px) {
  .service_sec01 .list li:not(:nth-child(3n)) {
    margin-right: 0;
  }
}
.service_sec01 .list li .img img {
  width: 100%;
}
.service_sec01 .list li .ttl {
  text-align: center;
  font-weight: bold;
  color: #c7000b;
  letter-spacing: 0.05em;
  font-size: 18px;
  line-height: 1.5;
  margin: 25px 0 20px;
}
@media screen and (max-width: 779px) {
  .service_sec01 .list li .ttl {
    font-size: 16px;
    margin: 7% 0 4%;
  }
}
.service_sec01 .list li .txt {
  line-height: 2;
}

.service_sec02 {
  background: #c7000b;
  padding: 70px 0;
}
@media screen and (max-width: 779px) {
  .service_sec02 {
    padding: 10% 0;
  }
}
.service_sec02 .under_ttl {
  color: white;
}
.service_sec02 .list {
  margin-top: 50px;
}
@media screen and (max-width: 779px) {
  .service_sec02 .list {
    margin-top: 7%;
  }
}
.service_sec02 .list li {
  background: white;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (max-width: 779px) {
  .service_sec02 .list li {
    display: block;
  }
}
.service_sec02 .list li:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 779px) {
  .service_sec02 .list li:not(:last-child) {
    margin-bottom: 4%;
  }
}
.service_sec02 .list li > * {
  width: 50%;
}
@media screen and (max-width: 779px) {
  .service_sec02 .list li > * {
    width: 100%;
  }
}
.service_sec02 .list li .img img {
  width: 100%;
}
.service_sec02 .list li .detail {
  position: relative;
}
.service_sec02 .list li .detail .box {
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  top: 50%;
  left: 0;
  padding: 0 50px;
  width: calc(100% - 100px); /*ブランディング販促のtxtの変更でボタン位置がずれたので横幅を指定 */
}
@media screen and (max-width: 779px) {
  .service_sec02 .list li .detail .box {
    padding: 7% 4% 4%;
    width: auto;
    position: relative;
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.service_sec02 .list li .detail .box .ttl {
  font-weight: bold;
  color: #c7000b;
  font-size: 30px;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
@media screen and (max-width: 779px) {
  .service_sec02 .list li .detail .box .ttl {
    text-align: center;
    font-size: 20px;
    margin-bottom: 4%;
  }
}
.service_sec02 .list li .detail .box .txt {
  line-height: 1.7;
  font-size: 14px;
}
.service_sec02 .list li .detail .box .btn {
  position: relative;
  display: block;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: 1px solid #c7000b;
  color: #c7000b;
  text-align: center;
  font-weight: bold;
  float: right;
  width: 210px;
  height: 38px;
  line-height: 38px;
  font-size: 14px;
  margin-top: 30px;
}
@media screen and (max-width: 779px) {
  .service_sec02 .list li .detail .box .btn {
    width: 100%;
    float: none;
    margin-top: 4%;
  }
}
.service_sec02 .list li .detail .box .btn:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 8px 8px;
  border-color: transparent transparent #c7000b transparent;
  position: absolute;
  right: 5px;
  bottom: 5px;
}
.service_sec02 .list li .detail .box .btn:hover {
  background: #c7000b;
  color: white;
}
.service_sec02 .list li .detail .box .btn:hover:after {
  border-color: transparent transparent white transparent;
}

.service_sec03 {
  padding: 70px 0;
}
@media screen and (max-width: 779px) {
  .service_sec03 {
    padding: 10% 0;
  }
}
.service_sec03 .under_ttl {
  margin-bottom: 40px;
}
@media screen and (max-width: 779px) {
  .service_sec03 .under_ttl {
    margin-bottom: 7%;
  }
}
.service_sec03 .txt {
  text-align: center;
  line-height: 2;
}
.service_sec03 .flow {
  /* margin-top: 50px; */
  /* background: #c9c9c9; */
  width: 700px;
  /* height: 500px; */
  margin: 50px auto 0;
}
.service_sec03 .flow li {
    display: flex;
    align-items: center;
    position: relative;
}
.service_sec03 .flow li:not(:last-child):after {
    content: "";
    display: block;
    width: 4px;
    height: 100%;
    background: #c7000b;
    position: absolute;
    left: 68px;
    bottom: -100%;
}
.service_sec03 .flow li:not(:last-child) {
    margin-bottom: 30px;
}
.service_sec03 .flow li .ttl {
    width: 140px;
    margin-right: 30px;
}

.service_sec03 .flow li .box {
    border-radius: 50%;
    width: 140px;
    height: 140px;
    background: #c7000b;
    color: #FFF;
    text-align: center;
    position: relative;
}
.service_sec03 .flow li .box .num {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  line-height: 1.3;
}
.service_sec03 .flow li .box .num span {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  display: block;
  font-size: 30px;
  margin-bottom: 5px;
}
.service_sec03 .flow li .txt {
    text-align: left;
}
@media screen and (max-width: 779px) {
  .service_sec03 .flow {
    /* margin-top: 7%; */
    width: 100%;
    margin: 7% auto 0;
  }
  .service_sec03 .flow li:not(:last-child) {
    margin-bottom: 5%;
  }
  .service_sec03 .flow li .ttl {
    width: auto;
    margin-right: 3%;
    font-size: 12px;
  }
  .service_sec03 .flow li .box {
    width: 90px;
    height: 90px;
  }
  .service_sec03 .flow li .txt {
    font-size: 12px;
  }
  .service_sec03 .flow li .box .num span {
    font-size: 20px;
  }
  .service_sec03 .flow li:not(:last-child):after {
    width: 2px;
    left: 44px;
    bottom: -90%;
  }
}

/* ======================================================================
 works
====================================================================== */
.works_list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 20px auto 150px;
}
@media screen and (max-width: 779px) {
  .works_list {
    margin: 10% auto 15%;
    display: block;
  }
}
.works_list .box {
  text-align: center;
  width: 313px;
  margin-top: 30px;
}
@media screen and (max-width: 779px) {
  .works_list .box {
    display: block;
    width: 100%;
    margin-top: 7%;
  }
}
.works_list .box:not(:nth-child(3n)) {
  margin-right: 30px;
}
@media screen and (max-width: 779px) {
  .works_list .box:not(:nth-child(3n)) {
    margin-right: 0;
  }
}
.works_list .box .img {
  position: relative;
}
.works_list .box .img img {
  width: 100%;
  max-height: 235px;
}
.works_list .box .img .tag {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
  width: 100%;
}
.works_list .box .img .tag li {
  width: 49.85%;
  background-color: rgba(181, 35, 38, 0.75);
  text-align: center;
  color: white;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 5px 0;
  margin-top: 1px;
}
@media screen and (max-width: 779px) {
  .works_list .box .img img {
    max-height: inherit;
  }
  .works_list .box .img .tag li {
    font-size: 10px;
  }
}
.works_list .box .img .tag li:not(:nth-child(2n)) {
  margin-right: 0.25%;
}
.works_list .box .txt {
  line-height: 1.7;
  font-size: 14px;
  margin-top: 20px;
}
@media screen and (max-width: 779px) {
  .works_list .box .txt {
    margin-top: 4%;
  }
}

.works_detail {
  text-align: center;
  padding: 50px 0;
  border-bottom: 1px solid #c7000b;
}
@media screen and (max-width: 779px) {
  .works_detail {
    padding: 10% 0;
  }
}
.works_detail .container {
  width: 800px;
}
@media screen and (max-width: 779px) {
  .works_detail .container {
    width: 92%;
  }
}
.works_detail .container .ttl {
  font-weight: bold;
  /* color: #c7000b; */
  line-height: 1.3;
  font-size: 30px;
  margin-bottom: 15px;
}
@media screen and (max-width: 779px) {
  .works_detail .container .ttl {
    font-size: 18px;
    margin-bottom: 5%;
  }
}
.works_detail .container .date, .works_detail .container .txt {
  line-height: 2;
}
.works_detail .container .txt {
  text-align: left;
  margin-top: 50px;
}
@media screen and (max-width: 779px) {
  .works_detail .container .txt {
    margin-top: 7%;
  }
}
.works_detail .container .tag {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  margin: 20px 0 30px;
}
@media screen and (max-width: 779px) {
  .works_detail .container .tag {
    margin: 5% 0;
  }
}
.works_detail .container .tag li {
  color: white;
  background: #c7000b;
  width: 199px;
  padding: 7px 0;
}
@media screen and (max-width: 779px) {
  .works_detail .container .tag li {
    font-size: 12px;
    width: 49.75%;
    margin-top: 0.5%;
  }
}
.works_detail .container .tag li:not(:last-child) {
  margin-right: 1px;
}
@media screen and (max-width: 779px) {
  .works_detail .container .tag li:not(:last-child) {
    margin-right: 0;
  }
}
@media screen and (max-width: 779px) {
  .works_detail .container .tag li:not(:nth-child(2n)) {
    margin-right: 0.5%;
  }
}
.works_detail .container .slider img {
  width: auto;
  margin: 0 auto;
  max-width: 800px;
  max-height: 600px;
}
.works_detail .container .slider .slick-slide {
  outline: none;
}
.works_detail .container .slider .slick-arrow {
  cursor: pointer;
  position: absolute;
  top: 35%;
  z-index: 99;
  width: 19px;
}
@media screen and (max-width: 779px) {
  .works_detail .container .slider .slick-arrow {
    display: none;
  }
}
.works_detail .container .slider .slick-arrow.slick-next {
  right: -70px;
}
.works_detail .container .slider .slick-arrow.slick-prev {
  left: -70px;
}
.works_detail .container .slider .slick-dots {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 5px;
}
.works_detail .container .slider .slick-dots li {
  /* background: black; */
  outline: none;
  cursor: pointer;
  width: 20%;
}
.works_detail .container .slider .slick-dots li.slick-active img {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.works_detail .container .slider .slick-dots li img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4;
  width: 100%;
}

/* ======================================================================
 company / 404
====================================================================== */
.company .message, .notfound .message {
  padding: 70px 0;
}
@media screen and (max-width: 779px) {
  .company .message, .notfound .message {
    padding: 10% 0;
  }
}
.company .message .ttl, .notfound .message .ttl {
  text-align: center;
  font-weight: bold;
  color: #c7000b;
  font-size: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 779px) {
  .company .message .ttl, .notfound .message .ttl {
    font-size: 20px;
    margin-bottom: 5%;
  }
}
.company .message .txt, .notfound .message .txt {
  line-height: 2;
  width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 779px) {
  .company .message .txt, .notfound .message .txt {
    width: 100%;
  }
}
.company .dummy, .notfound .dummy {
  background: #c9c9c9;
  width: 100%;
  height: 600px;
}
.company .profile, .notfound .profile {
  margin: 70px auto;
  width: 700px;
}
@media screen and (max-width: 779px) {
  .company .profile, .notfound .profile {
    margin: 7% 0;
    width: 100%;
  }
}
.company .profile th, .company .profile td, .notfound .profile th, .notfound .profile td {
  line-height: 1.5;
  border-bottom: 1px solid #c9c9c9;
  padding: 10px 15px;
}
@media screen and (max-width: 779px) {
  .company .profile th, .company .profile td, .notfound .profile th, .notfound .profile td {
    display: block;
    padding: 0;
  }
}
@media screen and (max-width: 779px) {
  .company .profile th, .notfound .profile th {
    border-bottom: none;
    padding: 3% 3% 2%;
  }
}
@media screen and (max-width: 779px) {
  .company .profile td, .notfound .profile td {
    padding: 0 3% 3%;
  }
}
.company .access, .notfound .access {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  background: #c7000b;
  color: white;
  /* margin-bottom: -80px; */
}
@media screen and (max-width: 779px) {
  .company .access, .notfound .access {
    display: block;
    /* margin-bottom: -10%; */
  }
}
.company .access .detail, .notfound .access .detail {
  width: 36%;
  padding: 0 4% 0 10%;
}
@media screen and (max-width: 779px) {
  .company .access .detail, .notfound .access .detail {
    width: 92%;
    padding: 10% 0;
    margin: 0 auto;
  }
}
.company .access .detail .ttl, .notfound .access .detail .ttl {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  font-size: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 779px) {
  .company .access .detail .ttl, .notfound .access .detail .ttl {
    font-size: 30px;
    margin-bottom: 5%;
    text-align: center;
  }
}
.company .access .detail .txt, .notfound .access .detail .txt {
  line-height: 2;
}
@media screen and (max-width: 779px) {
  .company .access .detail .txt, .notfound .access .detail .txt {
    line-height: 1.7;
  }
}
.company .access .map, .notfound .access .map {
  width: 50%;
}
@media screen and (max-width: 779px) {
  .company .access .map, .notfound .access .map {
    width: 100%;
  }
}
.company .access .map iframe, .notfound .access .map iframe {
  vertical-align: bottom;
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 779px) {
  .company .access .map iframe, .notfound .access .map iframe {
    height: 300px;
  }
}

.notfound {
  text-align: center;
}
.notfound a {
  color: #c7000b;
  text-decoration: underline;
  margin-top: 1em;
}

/* ======================================================================
 contact
====================================================================== */
.contact .form {
  margin: 70px auto;
  width: 700px;
}
@media screen and (max-width: 779px) {
  .contact .form {
    margin: 10% 0;
    width: 100%;
  }
}
.contact .form .box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 30px;
}
@media screen and (max-width: 779px) {
  .contact .form .box {
    margin-bottom: 4%;
    display: block;
  }
}
.contact .form .box .ttl {
  position: relative;
  width: 200px;
  margin: 0 30px;
  padding-top: 7px;
}
@media screen and (max-width: 779px) {
  .contact .form .box .ttl {
    width: 100%;
    margin: 0 0 3%;
  }
}
.contact .form .box .ttl span {
  background: #c7000b;
  color: white;
  font-size: 14px;
  padding: 5px;
  position: absolute;
  right: 0;
  top: 5px;
}
@media screen and (max-width: 779px) {
  .contact .form .box .ttl span {
    top: 0;
  }
}
.contact .form .box .input {
  width: 420px;
}
@media screen and (max-width: 779px) {
  .contact .form .box .input {
    width: 100%;
  }
}
.contact .form .box .input input, .contact .form .box .input textarea {
  border: 1px solid black;
  width: 100%;
  padding: 0.25em 0.5em;
}
.contact .form .box .input .mwform-tel-field {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.contact .form .box .input .mwform-tel-field input {
  width: 4em;
}
@media screen and (max-width: 779px) {
  .contact .form .box .input .mwform-tel-field input {
    width: 33.33%;
  }
}
.contact .form .submit {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.contact .form .submit input {
  cursor: pointer;
  letter-spacing: 0.05em;
  font-weight: bold;
  background: #c7000b;
  color: white;
  width: 300px;
  height: 60px;
  margin: 0 50px;
}
@media screen and (max-width: 779px) {
  .contact .form .submit input {
    width: 100%;
    margin: 0;
  }
}
.contact .form .error {
  color: #c7000b;
  font-weight: bold;
  margin-top: 0.5em;
  display: block;
  font-size: 14px;
}
@media screen and (max-width: 779px) {
  .contact .form .error {
    font-size: 12px;
  }
}
@media screen and (max-width: 779px) {
  .contact .mw_wp_form_preview .form .box {
    margin-bottom: 7%;
  }
}
.contact .mw_wp_form_preview .form .box .input {
  padding-top: 7px;
}
@media screen and (max-width: 779px) {
  .contact .mw_wp_form_preview .form .box .input {
    padding-top: 0;
  }
}
.contact .thanks {
  margin: 70px 0;
  text-align: center;
}
@media screen and (max-width: 779px) {
  .contact .thanks {
    margin: 10% 0;
  }
}
.contact .thanks .txt {
  line-height: 2;
}

/* works_detail */
.works_detail_list {
  display: flex;
  flex-wrap: wrap;
}
.works_detail_list_box {
  width: 23.5%;
  margin-bottom: 2%;
}
@media screen and (max-width: 779px) {
  .works_detail_list_box {
    width: 49%;
  }
}
.works_detail_list_box:not(:nth-child(4n)) {
  margin-right: 2%;
}
@media screen and (max-width: 779px) {
  .works_detail_list_box:not(:nth-child(4n)) {
    margin-right: 0;
  }
  .works_detail_list_box:not(:nth-child(2n)) {
    margin-right: 2%;
  }
}
.works_detail_list_box img {
  width: 100%;
}