@charset "UTF-8";

/* normalize, 変数(for Sass) */

@-webkit-keyframes topanimation {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
  }
}

@keyframes topanimation {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
  }
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  letter-spacing: 0.05em;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* mixin(for Sass) */

/* ベースの要素スタイル */

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: border-box;
}

body {
  background: #ffffff;
  /* Fallback for when there is no custom background color defined. */
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "HiraKakuProN-W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
}

blockquote,
q {
  quotes: "" "";
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

img {
  display: inline-block;
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
  vertical-align: middle;
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

/*===================================
module flexbox
====================================*/

.flex-col-sp {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-col-sp_2 > li {
  width: calc(50% - 5px);
}

.flex-col-sp_2_nmargin > li {
  width: 50%;
}

a {
  color: #424242;
  text-decoration: none;
}

a:visited {
  color: #424242;
}

a:hover,
a:focus,
a:active {
  color: #424242;
}

a:focus {
  outline: none;
}

a:hover,
a:active {
  outline: 0;
}

a:hover {
  opacity: 0.8;
}

.link-arrow::after {
  content: "\f105";
  display: inline-block;
  font-family: FontAwesome;
  margin-left: 5px;
  font-size: 12px;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol > li {
  counter-increment: number;
  position: relative;
}

ol > li:before {
  content: counter(number) ".";
  display: inline-block;
  margin-left: -1em;
}

dl {
  margin: 0;
}

dl dd {
  margin: 0;
}

table {
  margin: 0 0 1em;
  table-layout: fixed;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}

th {
  font-weight: normal;
}

input[type=text] {
  border-radius: 0;
  -webkit-appearance: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: none;
  border-color: #424242;
  border-radius: 3px;
  background: #424242;
  color: #fff;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb;
  outline: none;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #424242;
  border: none;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0px 2px 6px -1px #ccc inset;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
  resize: vertical;
}

input[type="text"] {
  display: block;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0px 2px 6px -1px #ccc inset;
}

body,
button,
input,
select,
textarea {
  color: #424242;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "HiraKakuProN-W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-weight: normal;
  margin: 0;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "HiraKakuProN-W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
}

p {
  margin: 0;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.4;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/* ライブラリ */

/* コンポーネント */

.c-breadcrumb li {
  position: relative;
  display: inline-block;
  margin-right: 20px;
  font-size: 14px;
}

.c-breadcrumb li a:after {
  right: -15px;
  font-size: 18px;
}

.btn {
  position: relative;
}

.btn a {
  padding: 15px 8px;
  border-radius: 8px;
}

.anchor:after {
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: fontawesome;
  content: "\f105";
  position: absolute;
  right: 20px;
  font-size: 24px;
}

.btn-blue a {
  display: block;
  background: #263b7b;
  border: 1px solid #263b7b;
  color: #fff;
  text-align: center;
}

.btn-blue a:hover {
  background: #ffffff;
  color: #263b7b;
}

.base-title {
  margin-bottom: 20px;
  padding: 6px 15px;
  background: white;
  background: linear-gradient(to bottom, white 0%, #f7f7f7 100%, #f7f7f7 102%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f7f7f7',GradientType=0 );
  font-size: 18px;
  font-weight: bold;
  border-top: 2px solid #a40000;
  border-bottom: 1px solid #ccc;
}

.sec-title {
  margin-bottom: 30px;
  font-size: 33px;
  color: #a40000;
  font-weight: bold;
  text-align: center;
}

.page-title {
  margin-bottom: 70px;
  padding: 60px 0;
  background-position: center center;
  background-size: cover;
}

.page-title--frame {
  width: 534px;
  margin: 0 auto;
  padding: 40px 0;
  background: rgba(164, 0, 0, 0.85);
  text-align: center;
  color: #ffffff;
}

.page-title--txt {
  display: inline;
  padding-bottom: 3px;
  font-size: 52px;
  border-bottom: 1px solid #ffffff;
}

.page-title--en {
  display: block;
  font-size: 16px;
}

.management .page-title {
  background-image: url(../images/bg_management.jpg);
}

.construction .page-title {
  background-image: url(../images/bg_construction.jpg);
}

.company .page-title {
  background-image: url(../images/bg.jpg);
}

.works .page-title {
  background-image: url(../images/bg.jpg);
}

.qa .page-title {
  background-image: url(../images/bg.jpg);
}

.contact .page-title {
  background-image: url(../images/bg.jpg);
}

.recruit .page-title {
  background-image: url(../images/bg.jpg);
}

.news .page-title {
  background-image: url(../images/bg.jpg);
}

.c-pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
}

.c-table dl {
  width: 49%;
  display: inline-block;
  margin-bottom: 20px;
}

.c-table dt {
  margin-bottom: 5px;
  color: #263b7b;
  font-weight: bold;
}

/* 共通レイアウト(header, footer, etc.) */

.l-contact--btm {
  margin-top: 40px;
  padding: 30px 0 50px;
  background: #f7f7f7;
}

.l-contact--btm li {
  width: 490px;
  height: 133px;
  display: inline-block;
  padding: 20px 13px;
  background: #ffffff;
  vertical-align: top;
}

.l-contact--btm li:first-child {
  margin-right: 13px;
}

.l-contact--btm__title {
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 16px;
  color: #263b7b;
}

.l-contact--btm__txt {
  display: inline-block;
  margin-right: 10px;
  font-size: 14px;
  vertical-align: middle;
  letter-spacing: 0.01em;
}

.l-contact--btm__right {
  display: inline-block;
}

.l-contact--btm__right .btn a {
  width: 321px;
  font-size: 15px;
  font-weight: bold;
}

.l-contact--btm__right .anchor:after {
  font-size: 15px;
}

.l-footer {
  padding: 20px 0 0;
  background: #b40000;
  background: linear-gradient(to bottom, #b40000 0%, #8f0000 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b40000', endColorstr='#8f0000',GradientType=0 );
  color: #ffffff;
  font-size: 12px;
  overflow: hidden;
}

.l-footer__list {
  float: left;
}

.l-footer__list li {
  position: relative;
  display: inline-block;
  margin-right: 5px;
}

.l-footer__list li a {
  margin-left: 10px;
  color: #ffffff;
}

.l-footer__list li a:hover {
  text-decoration: underline;
}

.l-footer__list li:before {
  display: block;
  top: 46%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: fontawesome;
  content: "\f105";
  position: absolute;
  left: 0;
  font-size: 15px;
}

.l-footer address {
  float: right;
  font-style: normal;
}

.l-header__nav {
  padding-top: 22px;
  float: right;
}

.l-header__nav li {
  position: relative;
  display: inline-block;
  margin-left: 35px;
}

.l-header__nav a:hover {
  color: #a40000;
}

#service .nav-service {
  color: #a40000;
}

.company .nav-company a {
  color: #a40000;
}

.works .nav-works a {
  color: #a40000;
}

.qa .nav-qa a {
  color: #a40000;
}

.contact .nav-contact a {
  color: #a40000;
}

.recruit .nav-recruit a {
  color: #a40000;
}

.l-header__nav--child {
  display: none;
  position: absolute;
  left: -34px;
  background: rgba(0, 0, 0, 0.7);
  transition: all .2s ease;
}

.l-header__nav--child li {
  width: 136px;
  padding: 10px 0;
  margin-left: 0;
  text-align: center;
}

.l-header__nav--child li:first-child {
  padding-bottom: 10px;
  border-bottom: 1px solid #ffffff;
}

.l-header__nav--child a {
  color: #ffffff;
}

.l-header__nav--child a:hover {
  opacity: 0.6;
  color: #ffffff;
}

.nav-service {
  height: 52px;
}

.nav-service:hover .l-header__nav--child {
  display: block;
  top: 50px;
  visibility: visible;
  opacity: 1;
}

.l-header {
  border-bottom: 1px solid #f7f7f7;
}

.l-header:before {
  content: "";
  display: block;
  background: #a40000;
  height: 5px;
}

.l-header__logo {
  width: 271px;
  display: inline-block;
}

.l-inner {
  width: 1000px;
  margin: 0 auto;
}

.l-inner--index {
  padding: 0 50px;
}

.l-conts {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
}

.l-conts--inner {
  margin: 0 40px;
}

/* ページごとのスタイル */

.l-company--greeting .l-conts--inner {
  padding: 20px;
  background: #f7f7f7;
}

.l-company--greeting--credit {
  margin-top: 5px;
  text-align: right;
}

.l-company--profile {
  margin-bottom: 80px;
}

.l-company--profile dl:last-of-type {
  width: 100%;
}

.l-company--profile iframe {
  margin-top: 8px;
  width: 100%;
  height: 278px;
}

.l-contact {
  margin-bottom: 80px;
}

.l-contact__form {
  margin-top: 30px;
}

.l-contact__form--frame {
  margin-bottom: 30px;
  border: 3px solid #f7f7f7;
}

.l-contact__form dl {
  padding: 15px;
  border: 3px solid #f7f7f7;
}

.l-contact__form span {
  color: #a40000;
}

.l-contact__form--en {
  display: block;
  font-size: 12px;
  font-weight: normal;
}

.l-contact__form dt {
  display: inline-block;
  width: 235px;
  font-weight: bold;
  vertical-align: top;
}

.l-contact__form dd {
  position: relative;
  display: inline-block;
  min-height: 40px;
}

.l-contact__form dd:before {
  content: "";
  position: absolute;
  background: #a40000;
  width: 5px;
  height: 100%;
}

.l-contact__form dd input,
.l-contact__form dd textarea {
  margin-left: 25px;
}

.l-contact__form .long-width {
  width: 692px;
}

.l-contact__form input[type="checkbox"] {
  margin: 13px 6px 0 25px;
}

.l-contact__form input[type="reset"],
.l-contact__form input[type="submit"] {
  width: 150px;
  padding: 10px 0;
  font-weight: bold;
  border: 1px solid #263b7b;
  border-radius: 8px;
  text-align: center;
}

.l-contact__form input[type="submit"] {
  background: #263b7b;
}

.l-contact__form input[type="submit"]:hover {
  background: #ffffff;
  color: #263b7b;
}

.l-contact__form input[type="reset"] {
  background: #ffffff;
  color: #263b7b;
}

.l-contact__form input[type="reset"]:hover {
  background: #263b7b;
  color: #ffffff;
}

.l-contact__form--btn {
  text-align: center;
}

.l-contact__form--btn li {
  display: inline-block;
}

.l-contact__form--btn li:first-child {
  margin-right: 20px;
}

.l-index {
  margin-bottom: 40px;
  padding-bottom: 50px;
  background: url(../images/bg.jpg);
  background-size: cover;
}

.l-index__title {
  padding: 225px 0 170px;
  text-align: center;
}

.l-index__business {
  margin-bottom: 30px;
}

.l-index__business li {
  position: relative;
  width: 432px;
  display: inline-block;
}

.l-index__business li:first-child {
  margin-right: 30px;
}

.l-index__business li a {
  padding: 20px;
  display: block;
  background: rgba(255, 255, 255, 0.8);
}

.l-index__business li img {
  width: 180px;
  display: inline-block;
  margin-right: 20px;
}

.l-index__business p {
  display: inline-block;
  font-size: 22px;
  font-weight: bold;
  color: #263b7b;
  vertical-align: -5px;
}

.l-index__business .anchor {
  color: #263b7b;
  font-weight: bold;
}

.l-index__reason {
  background: #a40000;
  color: #fff;
}

.l-index__reason--image {
  display: inline-block;
  vertical-align: top;
}

.l-index__reason--text {
  width: 445px;
  display: inline-block;
  padding: 30px 20px;
}

.l-index__reason--title {
  margin-bottom: 15px;
  font-size: 39px;
  font-weight: bold;
  text-align: right;
  line-height: 1.4em;
}

.l-index__reason--btn {
  position: relative;
  margin-top: 20px;
}

.l-index__reason--btn a {
  display: block;
  width: 405px;
  padding: 20px 0;
  border: 1px solid #fff;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.l-index__reason--btn a:hover {
  background: #ffffff;
  color: #a40000;
  opacity: 1;
}

.l-news__list {
  margin: 0 10px;
}

.l-news__list dl {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ccc;
}

.l-news__list dt {
  width: 88px;
  display: inline-block;
}

.l-news__list dd {
  display: inline-block;
  margin-left: 20px;
}

.l-news__list a {
  color: #263b7b;
  text-decoration: underline;
}

.l-news__list a:before {
  content: "▶";
  font-size: 10px;
  vertical-align: 2px;
  margin-right: 5px;
}

.l-news__list a:hover {
  text-decoration: none;
}

.l-news__more {
  text-align: right;
  font-weight: bold;
  font-size: 14px;
}

.l-news__more a {
  text-decoration: underline;
  color: #263b7b;
}

.l-news__more a:hover {
  text-decoration: none;
}

.l-news__more:after {
  content: "\f105";
  font-family: fontawesome;
  padding-left: 10px;
}

.l-privacy {
  margin: 50px 0 80px;
}

.l-privacy__title {
  font-size: 16px;
  font-weight: bold;
}

.l-privacy li {
  margin-bottom: 15px;
}

.l-qa {
  margin-bottom: 80px;
  padding: 30px 0 1px;
  background: #f7f7f7;
}

.l-qa__list li {
  margin-bottom: 30px;
  padding: 20px;
  background: #ffffff;
}

.l-qa__list--q {
  padding-bottom: 5px;
  margin-bottom: 10px;
  color: #263b7b;
  font-weight: bold;
  font-size: 16px;
  border-bottom: 2px dashed #f7f7f7;
}

.l-qa__list--q:before {
  content: "Q";
  margin-right: 10px;
  padding: 1px 5px;
  background: #dde3f8;
  font-weight: bold;
  border-radius: 20px;
}

.l-qa__list--a {
  padding-left: 2em;
  text-indent: -2em;
}

.l-qa__list--a:before {
  content: "A";
  margin-right: 10px;
  padding: 1px 5px;
  background: #ffe5e5;
  font-weight: bold;
  border-radius: 20px;
  color: #a40000;
}

.l-recruit {
  margin-bottom: 80px;
}

.l-recruit a {
  color: #a40000;
  font-weight: bold;
}

.l-service__anchor {
  margin-bottom: 70px;
}

.l-service__anchor li {
  display: inline-block;
}

.l-service__anchor li:first-child {
  margin-right: 34px;
}

.l-service--image {
  float: left;
  margin: 0 20px 0 40px;
}

.l-service--txt {
  margin-right: 30px;
}

.l-service--txt li {
  min-width: 315px;
  display: inline-block;
  margin: 0 0px 7px 0;
}

.l-service--txt li:before {
  content: "◆";
  color: #ccc;
  margin-right: 8px;
}

.l-service--table {
  padding: 0 40px;
  border: 1px solid #ccc;
  text-align: left;
}

.l-service--table th {
  width: 276px;
  padding: 12px;
  background: #f7f7f7;
  font-weight: bold;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  vertical-align: top;
}

.l-service--table td {
  padding: 12px;
  border-bottom: 1px solid #ccc;
}

.l-service--management {
  margin-bottom: 60px;
}

.l-service--cleaning {
  margin-bottom: 80px;
}

.l-sitemap {
  margin: 50px 0 80px;
}

.l-sitemap__list {
  width: 24%;
  display: inline-block;
  margin-bottom: 15px;
  vertical-align: top;
  font-weight: bold;
}

.l-sitemap a {
  position: relative;
  color: #263b7b;
}

.l-sitemap a:before {
  display: block;
  top: 47%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: fontawesome;
  content: "\f105";
  position: absolute;
  left: 0;
  font-size: 16px;
}

.l-sitemap span {
  margin-left: 10px;
}

.l-works {
  margin-bottom: 60px;
}

.l-works__list > li {
  width: 449px;
  display: inline-block;
  margin-bottom: 20px;
  padding: 0 12px 20px 0;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.l-works__list > li:nth-child(odd) {
  margin-right: 15px;
}

.l-works__list__title {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
  color: #263b7b;
}

.l-works__list__image {
  overflow: hidden;
}

.l-works__list__image li {
  position: relative;
  float: left;
}

.l-works__list__image li:before {
  display: block;
  padding: 5px 0;
  background: #f7f7f7;
  font-size: 14px;
  color: #a40000;
  text-align: center;
  font-weight: bold;
}

.l-works__list__image--before {
  margin-right: 30px;
}

.l-works__list__image--before:before {
  content: "作業前";
}

.l-works__list__image--before:after {
  content: "▶";
  position: absolute;
  right: -25px;
  top: 47%;
  color: #263b7b;
}

.l-works__list__image--after:before {
  content: "作業後";
}

.l-works__list--pic {
  overflow: hidden;
}

.l-works__list--pic li {
  width: 286px;
  margin: 0 30px 30px 0;
  float: left;
}

.l-works__list--pic li:nth-child(3n) {
  margin-right: 0;
}

/* ユーティリティ(color, size, spacing, etc.) */

.u-ta-l {
  text-align: left !important;
}

.u-ta-c {
  text-align: center !important;
}

.u-ta-r {
  text-align: right !important;
}

.u-ta-j {
  text-align: justify !important;
  -ms-text-justify: inter-ideograph !important;
  text-justify: inter-ideograph !important;
}

.u-bc-white {
  background-color: #FFF !important;
}

.u-bc-lightgray {
  background-color: #f7f7f7 !important;
}

.u-bc-blue {
  background-color: #263b7b !important;
}

.u-bdr-t {
  border-top: 1px solid !important;
}

.u-bdr-b {
  border-bottom: 1px solid !important;
}

.u-bdr-l {
  border-left: 1px solid !important;
}

.u-bdr-r {
  border-right: 1px solid !important;
}

.u-bdr-n {
  border: none !important;
}

.u-c-black {
  color: #000 !important;
}

.u-c-white {
  color: white !important;
}

.u-c-red {
  color: #a40000 !important;
}

.u-cs-a {
  cursor: auto;
}

.u-cs-p {
  cursor: pointer;
}

.u-sp-hide {
  display: none !important;
}

.u-sp-hide-b {
  display: none !important;
}

.u-d-i {
  display: inline !important;
}

.u-d-ib {
  display: inline-block !important;
}

.u-d-b {
  display: block !important;
}

.u-fs-8 {
  font-size: 8px !important;
}

.u-fs-9 {
  font-size: 9px !important;
}

.u-fs-10 {
  font-size: 10px !important;
}

.u-fs-11 {
  font-size: 11px !important;
}

.u-fs-12 {
  font-size: 12px !important;
}

.u-fs-13 {
  font-size: 13px !important;
}

.u-fs-14 {
  font-size: 14px !important;
}

.u-fs-15 {
  font-size: 15px !important;
}

.u-fs-16 {
  font-size: 16px !important;
}

.u-fs-17 {
  font-size: 17px !important;
}

.u-fs-18 {
  font-size: 18px !important;
}

.u-fs-19 {
  font-size: 19px !important;
}

.u-fs-20 {
  font-size: 20px !important;
}

.u-fs-21 {
  font-size: 21px !important;
}

.u-fs-22 {
  font-size: 22px !important;
}

.u-fs-23 {
  font-size: 23px !important;
}

.u-fs-24 {
  font-size: 24px !important;
}

.u-fs-25 {
  font-size: 25px !important;
}

.u-fs-26 {
  font-size: 26px !important;
}

.u-fs-27 {
  font-size: 27px !important;
}

.u-fs-28 {
  font-size: 28px !important;
}

.u-fs-29 {
  font-size: 29px !important;
}

.u-fs-30 {
  font-size: 30px !important;
}

.u-fs-31 {
  font-size: 31px !important;
}

.u-fs-32 {
  font-size: 32px !important;
}

.u-fs-33 {
  font-size: 33px !important;
}

.u-fs-34 {
  font-size: 34px !important;
}

.u-fs-35 {
  font-size: 35px !important;
}

.u-fs-36 {
  font-size: 36px !important;
}

.u-fs-37 {
  font-size: 37px !important;
}

.u-fs-38 {
  font-size: 38px !important;
}

.u-fs-39 {
  font-size: 39px !important;
}

.u-fs-40 {
  font-size: 40px !important;
}

.u-mt-0 {
  margin-top: 0px !important;
}

.u-mt-5 {
  margin-top: 5px !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-mt-15 {
  margin-top: 15px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mt-25 {
  margin-top: 25px !important;
}

.u-mt-30 {
  margin-top: 30px !important;
}

.u-mt-35 {
  margin-top: 35px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mt-45 {
  margin-top: 45px !important;
}

.u-mt-50 {
  margin-top: 50px !important;
}

.u-mt-55 {
  margin-top: 55px !important;
}

.u-mt-60 {
  margin-top: 60px !important;
}

.u-mt-65 {
  margin-top: 65px !important;
}

.u-mt-70 {
  margin-top: 70px !important;
}

.u-mt-75 {
  margin-top: 75px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mt-85 {
  margin-top: 85px !important;
}

.u-mt-90 {
  margin-top: 90px !important;
}

.u-mt-95 {
  margin-top: 95px !important;
}

.u-mt-100 {
  margin-top: 100px !important;
}

.u-mb-0 {
  margin-bottom: 0px !important;
}

.u-mb-5 {
  margin-bottom: 5px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mb-25 {
  margin-bottom: 25px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-mb-35 {
  margin-bottom: 35px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mb-45 {
  margin-bottom: 45px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

.u-mb-55 {
  margin-bottom: 55px !important;
}

.u-mb-60 {
  margin-bottom: 60px !important;
}

.u-mb-65 {
  margin-bottom: 65px !important;
}

.u-mb-70 {
  margin-bottom: 70px !important;
}

.u-mb-75 {
  margin-bottom: 75px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

.u-mb-85 {
  margin-bottom: 85px !important;
}

.u-mb-90 {
  margin-bottom: 90px !important;
}

.u-mb-95 {
  margin-bottom: 95px !important;
}

.u-mb-100 {
  margin-bottom: 100px !important;
}

.u-pt-0 {
  padding-top: 0px !important;
}

.u-pt-5 {
  padding-top: 5px !important;
}

.u-pt-10 {
  padding-top: 10px !important;
}

.u-pt-15 {
  padding-top: 15px !important;
}

.u-pt-20 {
  padding-top: 20px !important;
}

.u-pt-25 {
  padding-top: 25px !important;
}

.u-pt-30 {
  padding-top: 30px !important;
}

.u-pt-35 {
  padding-top: 35px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pt-45 {
  padding-top: 45px !important;
}

.u-pt-50 {
  padding-top: 50px !important;
}

.u-pt-55 {
  padding-top: 55px !important;
}

.u-pt-60 {
  padding-top: 60px !important;
}

.u-pt-65 {
  padding-top: 65px !important;
}

.u-pt-70 {
  padding-top: 70px !important;
}

.u-pt-75 {
  padding-top: 75px !important;
}

.u-pt-80 {
  padding-top: 80px !important;
}

.u-pt-85 {
  padding-top: 85px !important;
}

.u-pt-90 {
  padding-top: 90px !important;
}

.u-pt-95 {
  padding-top: 95px !important;
}

.u-pt-100 {
  padding-top: 100px !important;
}

.u-pb-0 {
  padding-bottom: 0px !important;
}

.u-pb-5 {
  padding-bottom: 5px !important;
}

.u-pb-10 {
  padding-bottom: 10px !important;
}

.u-pb-15 {
  padding-bottom: 15px !important;
}

.u-pb-20 {
  padding-bottom: 20px !important;
}

.u-pb-25 {
  padding-bottom: 25px !important;
}

.u-pb-30 {
  padding-bottom: 30px !important;
}

.u-pb-35 {
  padding-bottom: 35px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-pb-45 {
  padding-bottom: 45px !important;
}

.u-pb-50 {
  padding-bottom: 50px !important;
}

.u-pb-55 {
  padding-bottom: 55px !important;
}

.u-pb-60 {
  padding-bottom: 60px !important;
}

.u-pb-65 {
  padding-bottom: 65px !important;
}

.u-pb-70 {
  padding-bottom: 70px !important;
}

.u-pb-75 {
  padding-bottom: 75px !important;
}

.u-pb-80 {
  padding-bottom: 80px !important;
}

.u-pb-85 {
  padding-bottom: 85px !important;
}

.u-pb-90 {
  padding-bottom: 90px !important;
}

.u-pb-95 {
  padding-bottom: 95px !important;
}

.u-pb-100 {
  padding-bottom: 100px !important;
}

.u-fs-o {
  font-style: oblique !important;
}

.u-td-u {
  text-decoration: underline !important;
}

.u-fw-n {
  font-weight: normal !important;
}

.u-fw-b {
  font-weight: bold !important;
}

@media screen and (min-width: 736px) {
  .flex-col {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .flex-col_2 > li {
    width: 50%;
  }

  .flex-col_3 > li {
    width: 33.3333%;
  }

  .flex-col_4 > li {
    width: 25%;
  }

  .flex-col_5 > li {
    width: 20%;
  }

  .flex-col-sp_2 > li {
    width: 100%;
  }

  .flex-col-sp_2_nmargin > li {
    width: 100%;
  }

  .flex-col_pc {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .link-arrow::after {
    margin-top: -3px;
    margin-left: 10px;
    font-size: 16px;
  }

  textarea {
    width: 620px;
    height: 85px;
  }

  input[type="text"] {
    width: 340px;
    height: 40px;
    padding: 0 8px;
    font-size: 16px;
    float: left;
  }

  input[type="text"].input-fullwidth {
    width: 620px;
  }

  body,
  button,
  input,
  select,
  textarea {
    font-size: 16px;
  }

  .u-pc-hide {
    display: none !important;
  }

  .u-sp-hide {
    display: inline !important;
  }

  .u-sp-hide-b {
    display: block !important;
  }
}