@charset "UTF-8";
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

ol, ul {
  list-style: none;
}

img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid var(--color-mono-5);
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

.boxer-lock {
  overflow: hidden !important;
}

#boxer-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background: #000000;
  opacity: 0;
  -webkit-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
}

.boxer-open #boxer-overlay {
  opacity: 0.75;
}

#boxer {
  width: 200px;
  height: 200px;
  position: absolute;
  right: 0;
  left: 0;
  z-index: 101;
  background: #ffffff;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 25px #000000;
  box-shadow: 0 0 25px #000000;
  opacity: 0;
  margin: 0 auto;
  padding: 10px;
}

#boxer * {
  -webkit-transition: none;
  transition: none;
}

#boxer, #boxer * {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

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

#boxer.fixed {
  position: fixed;
  top: 0;
  bottom: 0;
  margin: auto;
}

#boxer.inline {
  padding: 30px;
}

#boxer.animating {
  -webkit-transition: height 0.25s ease, width 0.25s ease, opacity 0.25s linear, top 0.25s ease;
  transition: height 0.25s ease, width 0.25s ease, opacity 0.25s linear, top 0.25s ease;
}

#boxer.animating .boxer-container {
  -webkit-transition: opacity 0.25s linear 0.25s;
  transition: opacity 0.25s linear 0.25s;
}

.boxer-open #boxer {
  opacity: 1;
}

#boxer.loading .boxer-container {
  opacity: 0;
  -webkit-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
}

#boxer .boxer-close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 105;
  background: #ffffff;
  border-radius: 100%;
  cursor: pointer;
  display: block;
  overflow: hidden;
  padding: 0;
  text-indent: 200%;
  white-space: nowrap;
}

#boxer .boxer-close:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #333333;
  content: "×";
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  margin: auto;
  text-align: center;
  text-indent: 0;
  -webkit-transition: color 0.15s linear;
  transition: color 0.15s linear;
}

.no-opacity #boxer .boxer-close {
  text-indent: -999px;
}

#boxer .boxer-loading {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: block;
  margin: auto;
  opacity: 0;
  -webkit-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
}

#boxer .boxer-loading:before, #boxer .boxer-loading:after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 110%;
  content: "";
  display: block;
}

#boxer .boxer-loading:before {
  border: 5px solid rgba(51, 51, 51, 0.25);
}

#boxer .boxer-loading:after {
  -webkit-animation: boxer-loading-spin 0.75s linear infinite;
  animation: boxer-loading-spin 0.75s linear infinite;
  border: 5px solid transparent;
  border-top-color: #333333;
}

#boxer.loading .boxer-loading {
  opacity: 1;
}

@-webkit-keyframes boxer-loading-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes boxer-loading-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#boxer .boxer-container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 100;
  background: #ffffff;
}

#boxer .boxer-content {
  width: 100%;
  background: #ffffff;
  opacity: 1;
  padding: 0;
}

#boxer .boxer-video-wrapper {
  z-index: 1;
}

#boxer.inline .boxer-content, #boxer.iframe .boxer-content {
  width: auto;
}

#boxer .boxer-image {
  float: left;
}

#boxer .boxer-video {
  width: 100%;
  height: 100%;
}

#boxer .boxer-iframe {
  width: 100%;
  height: 100%;
  border: none;
  float: left;
  overflow: auto;
}

#boxer .boxer-meta {
  clear: both;
}

#boxer .boxer-control {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  background: #ffffff;
  border-radius: 100%;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: block;
  margin-right: auto;
  margin-left: auto;
  opacity: 1;
  overflow: hidden;
  text-indent: 200%;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  white-space: nowrap;
}

#boxer .boxer-control:before {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  margin: auto;
}

#boxer .boxer-control.previous {
  left: 20px;
}

#boxer .boxer-control.previous:before {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10.4px solid #333333;
  margin-left: 14px;
}

#boxer .boxer-control.next {
  right: 20px;
}

#boxer .boxer-control.next:before {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10.4px solid #333333;
  margin-right: 14px;
}

#boxer .boxer-control.disabled {
  opacity: 0;
}

.no-opacity #boxer .boxer-control {
  text-indent: -999px;
}

.no-touch #boxer .boxer-control {
  opacity: 0;
}

.no-touch #boxer:hover .boxer-control {
  opacity: 1;
}

.no-touch #boxer:hover .boxer-control.disabled {
  opacity: 0;
  cursor: default !important;
}

#boxer .boxer-meta {
  padding: 10px 0 0 0;
}

#boxer .boxer-position {
  color: #999999;
  font-size: 12px;
  margin: 0;
  padding: 15px 15px 0 15px;
}

#boxer .boxer-caption p {
  color: #666666;
  font-size: 14px;
  margin: 0;
  padding: 15px;
}

#boxer .boxer-caption.gallery p {
  padding-top: 0;
}

#boxer .boxer-error {
  width: 250px;
}

#boxer .boxer-error p {
  color: #990000;
  font-size: 14px;
  margin: 0;
  padding: 25px;
  text-align: center;
  text-transform: uppercase;
}

#boxer.mobile {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #111111;
  border-radius: 0;
  padding: 40px 0 0;
}

#boxer.mobile .boxer-close, #boxer.mobile .boxer-close:hover {
  height: 40px;
  width: 40px;
  top: 0;
  right: 0;
  background: #111111;
  border-radius: 0;
}

#boxer.mobile .boxer-close:before, #boxer.mobile .boxer-close:hover:before {
  color: #cccccc;
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
}

#boxer.mobile .boxer-loading:before {
  border-color: rgba(153, 153, 153, 0.25);
}

#boxer.mobile .boxer-loading:after {
  border-top-color: #999999;
}

#boxer.mobile .boxer-container {
  background: #111111;
}

#boxer.mobile .boxer-content {
  background-color: #111111;
}

#boxer.mobile .boxer-control {
  width: 50px;
  height: 100%;
  background: #111111;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 1;
}

#boxer.mobile .boxer-control.previous {
  left: 0;
}

#boxer.mobile .boxer-control.previous:before {
  border-right-color: #eeeeee;
  margin-left: 19px;
}

#boxer.mobile .boxer-control.next {
  right: 0;
}

#boxer.mobile .boxer-control.next:before {
  border-left-color: #eeeeee;
  margin-right: 19px;
}

.no-touch #boxer.mobile .boxer-control, .no-touch #boxer.mobile:hover .boxer-control {
  opacity: 1;
}

.no-touch #boxer.mobile .boxer-control.disabled, .no-touch #boxer.mobile:hover .boxer-control.disabled {
  opacity: 0;
  cursor: default !important;
}

#boxer.mobile .boxer-meta {
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #111111;
  padding: 15px 65px;
}

#boxer.mobile .boxer-position {
  color: #999999;
  font-size: 12px;
  margin: 0;
  padding: 0 15px 0 0;
}

#boxer.mobile .boxer-caption p {
  color: #eeeeee;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

#boxer.mobile .boxer-image {
  -webkit-transition: none !important;
  transition: none !important;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

#boxer.mobile.animated .boxer-image {
  -webkit-transition: -webkit-transform 0.25s ease-out !important;
  transition: -webkit-transform 0.25s ease-out !important;
  transition: transform 0.25s ease-out !important;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out !important;
}

#boxer.mobile.inline .boxer-content, #boxer.mobile.iframe .boxer-content {
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
  font-family: "FontAwesome";
  src: url("../font/icomoon/fonts/fontawesome-webfont-e511891d3e01b0b27aed51a219ced5119e2c3d0460465af8242e9bff4cb61b77.eot");
  src: url("../font/icomoon/fonts/fontawesome-webfont-e511891d3e01b0b27aed51a219ced5119e2c3d0460465af8242e9bff4cb61b77.eot?#iefix") format("embedded-opentype"), url("../font/icomoon/fonts/fontawesome-webfont-2adefcbc041e7d18fcf2d417879dc5a09997aa64d675b7a3c4b6ce33da13f3fe.woff2") format("woff2"), url("../font/icomoon/fonts/fontawesome-webfont-199411f659f41aaccb959bacb1b0de30e54f244352a48c6f9894e65ae0f8a9a1.woff") format("woff"), url("../font/icomoon/fonts/fontawesome-webfont-4d6eb9e9d852a2a6f74e7c428456a2f07fc63a1613d10192d8ed3401d9da5ffa.ttf") format("truetype"), url("../font/icomoon/fonts/fontawesome-webfont-d5b5636ebb2e124810436200086b74a60dff9e8a8be7f4a1088bf5d3458bc3c8.svg#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eeeeee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right {
  margin-left: 0.3em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}

.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical {
  -webkit-filter: none;
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #ffffff;
}

.fa-glass:before {
  content: "\f000";
}

.fa-music:before {
  content: "\f001";
}

.fa-search:before {
  content: "\f002";
}

.fa-envelope-o:before {
  content: "\f003";
}

.fa-heart:before {
  content: "\f004";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-o:before {
  content: "\f006";
}

.fa-user:before {
  content: "\f007";
}

.fa-film:before {
  content: "\f008";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-check:before {
  content: "\f00c";
}

.fa-remove:before, .fa-close:before, .fa-times:before {
  content: "\f00d";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-signal:before {
  content: "\f012";
}

.fa-gear:before, .fa-cog:before {
  content: "\f013";
}

.fa-trash-o:before {
  content: "\f014";
}

.fa-home:before {
  content: "\f015";
}

.fa-file-o:before {
  content: "\f016";
}

.fa-clock-o:before {
  content: "\f017";
}

.fa-road:before {
  content: "\f018";
}

.fa-download:before {
  content: "\f019";
}

.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-play-circle-o:before {
  content: "\f01d";
}

.fa-rotate-right:before, .fa-repeat:before {
  content: "\f01e";
}

.fa-refresh:before {
  content: "\f021";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-lock:before {
  content: "\f023";
}

.fa-flag:before {
  content: "\f024";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-print:before {
  content: "\f02f";
}

.fa-camera:before {
  content: "\f030";
}

.fa-font:before {
  content: "\f031";
}

.fa-bold:before {
  content: "\f032";
}

.fa-italic:before {
  content: "\f033";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-list:before {
  content: "\f03a";
}

.fa-dedent:before, .fa-outdent:before {
  content: "\f03b";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-video-camera:before {
  content: "\f03d";
}

.fa-photo:before, .fa-image:before, .fa-picture-o:before {
  content: "\f03e";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-tint:before {
  content: "\f043";
}

.fa-edit:before, .fa-pencil-square-o:before {
  content: "\f044";
}

.fa-share-square-o:before {
  content: "\f045";
}

.fa-check-square-o:before {
  content: "\f046";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-play:before {
  content: "\f04b";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-eject:before {
  content: "\f052";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-times-circle-o:before {
  content: "\f05c";
}

.fa-check-circle-o:before {
  content: "\f05d";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-mail-forward:before, .fa-share:before {
  content: "\f064";
}

.fa-expand:before {
  content: "\f065";
}

.fa-compress:before {
  content: "\f066";
}

.fa-plus:before {
  content: "\f067";
}

.fa-minus:before {
  content: "\f068";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-warning:before, .fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-plane:before {
  content: "\f072";
}

.fa-calendar:before {
  content: "\f073";
}

.fa-random:before {
  content: "\f074";
}

.fa-comment:before {
  content: "\f075";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-bar-chart-o:before, .fa-bar-chart:before {
  content: "\f080";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-key:before {
  content: "\f084";
}

.fa-gears:before, .fa-cogs:before {
  content: "\f085";
}

.fa-comments:before {
  content: "\f086";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}

.fa-thumbs-o-down:before {
  content: "\f088";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-heart-o:before {
  content: "\f08a";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-linkedin-square:before {
  content: "\f08c";
}

.fa-thumb-tack:before {
  content: "\f08d";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-upload:before {
  content: "\f093";
}

.fa-lemon-o:before {
  content: "\f094";
}

.fa-phone:before {
  content: "\f095";
}

.fa-square-o:before {
  content: "\f096";
}

.fa-bookmark-o:before {
  content: "\f097";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook-f:before, .fa-facebook:before {
  content: "\f09a";
}

.fa-github:before {
  content: "\f09b";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-feed:before, .fa-rss:before {
  content: "\f09e";
}

.fa-hdd-o:before {
  content: "\f0a0";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-group:before, .fa-users:before {
  content: "\f0c0";
}

.fa-chain:before, .fa-link:before {
  content: "\f0c1";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-cut:before, .fa-scissors:before {
  content: "\f0c4";
}

.fa-copy:before, .fa-files-o:before {
  content: "\f0c5";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-save:before, .fa-floppy-o:before {
  content: "\f0c7";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
  content: "\f0c9";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-plus:before {
  content: "\f0d5";
}

.fa-money:before {
  content: "\f0d6";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-unsorted:before, .fa-sort:before {
  content: "\f0dc";
}

.fa-sort-down:before, .fa-sort-desc:before {
  content: "\f0dd";
}

.fa-sort-up:before, .fa-sort-asc:before {
  content: "\f0de";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-rotate-left:before, .fa-undo:before {
  content: "\f0e2";
}

.fa-legal:before, .fa-gavel:before {
  content: "\f0e3";
}

.fa-dashboard:before, .fa-tachometer:before {
  content: "\f0e4";
}

.fa-comment-o:before {
  content: "\f0e5";
}

.fa-comments-o:before {
  content: "\f0e6";
}

.fa-flash:before, .fa-bolt:before {
  content: "\f0e7";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-paste:before, .fa-clipboard:before {
  content: "\f0ea";
}

.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-bell-o:before {
  content: "\f0a2";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cutlery:before {
  content: "\f0f5";
}

.fa-file-text-o:before {
  content: "\f0f6";
}

.fa-building-o:before {
  content: "\f0f7";
}

.fa-hospital-o:before {
  content: "\f0f8";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-mobile-phone:before, .fa-mobile:before {
  content: "\f10b";
}

.fa-circle-o:before {
  content: "\f10c";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-circle:before {
  content: "\f111";
}

.fa-mail-reply:before, .fa-reply:before {
  content: "\f112";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-folder-o:before {
  content: "\f114";
}

.fa-folder-open-o:before {
  content: "\f115";
}

.fa-smile-o:before {
  content: "\f118";
}

.fa-frown-o:before {
  content: "\f119";
}

.fa-meh-o:before {
  content: "\f11a";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-keyboard-o:before {
  content: "\f11c";
}

.fa-flag-o:before {
  content: "\f11d";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-code:before {
  content: "\f121";
}

.fa-mail-reply-all:before, .fa-reply-all:before {
  content: "\f122";
}

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
  content: "\f123";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-crop:before {
  content: "\f125";
}

.fa-code-fork:before {
  content: "\f126";
}

.fa-unlink:before, .fa-chain-broken:before {
  content: "\f127";
}

.fa-question:before {
  content: "\f128";
}

.fa-info:before {
  content: "\f129";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-shield:before {
  content: "\f132";
}

.fa-calendar-o:before {
  content: "\f133";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-minus-square-o:before {
  content: "\f147";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-pencil-square:before {
  content: "\f14b";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-toggle-down:before, .fa-caret-square-o-down:before {
  content: "\f150";
}

.fa-toggle-up:before, .fa-caret-square-o-up:before {
  content: "\f151";
}

.fa-toggle-right:before, .fa-caret-square-o-right:before {
  content: "\f152";
}

.fa-euro:before, .fa-eur:before {
  content: "\f153";
}

.fa-gbp:before {
  content: "\f154";
}

.fa-dollar:before, .fa-usd:before {
  content: "\f155";
}

.fa-rupee:before, .fa-inr:before {
  content: "\f156";
}

.fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
  content: "\f157";
}

.fa-ruble:before, .fa-rouble:before, .fa-rub:before {
  content: "\f158";
}

.fa-won:before, .fa-krw:before {
  content: "\f159";
}

.fa-bitcoin:before, .fa-btc:before {
  content: "\f15a";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-text:before {
  content: "\f15c";
}

.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-youtube-square:before {
  content: "\f166";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-youtube-play:before {
  content: "\f16a";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-adn:before {
  content: "\f170";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitbucket-square:before {
  content: "\f172";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-apple:before {
  content: "\f179";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-android:before {
  content: "\f17b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-trello:before {
  content: "\f181";
}

.fa-female:before {
  content: "\f182";
}

.fa-male:before {
  content: "\f183";
}

.fa-gittip:before, .fa-gratipay:before {
  content: "\f184";
}

.fa-sun-o:before {
  content: "\f185";
}

.fa-moon-o:before {
  content: "\f186";
}

.fa-archive:before {
  content: "\f187";
}

.fa-bug:before {
  content: "\f188";
}

.fa-vk:before {
  content: "\f189";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

.fa-arrow-circle-o-left:before {
  content: "\f190";
}

.fa-toggle-left:before, .fa-caret-square-o-left:before {
  content: "\f191";
}

.fa-dot-circle-o:before {
  content: "\f192";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-turkish-lira:before, .fa-try:before {
  content: "\f195";
}

.fa-plus-square-o:before {
  content: "\f196";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-slack:before {
  content: "\f198";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-institution:before, .fa-bank:before, .fa-university:before {
  content: "\f19c";
}

.fa-mortar-board:before, .fa-graduation-cap:before {
  content: "\f19d";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-spoon:before {
  content: "\f1b1";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-automobile:before, .fa-car:before {
  content: "\f1b9";
}

.fa-cab:before, .fa-taxi:before {
  content: "\f1ba";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa-file-word-o:before {
  content: "\f1c2";
}

.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
  content: "\f1c5";
}

.fa-file-zip-o:before, .fa-file-archive-o:before {
  content: "\f1c6";
}

.fa-file-sound-o:before, .fa-file-audio-o:before {
  content: "\f1c7";
}

.fa-file-movie-o:before, .fa-file-video-o:before {
  content: "\f1c8";
}

.fa-file-code-o:before {
  content: "\f1c9";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
  content: "\f1cd";
}

.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa-ra:before, .fa-resistance:before, .fa-rebel:before {
  content: "\f1d0";
}

.fa-ge:before, .fa-empire:before {
  content: "\f1d1";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before {
  content: "\f1d4";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-wechat:before, .fa-weixin:before {
  content: "\f1d7";
}

.fa-send:before, .fa-paper-plane:before {
  content: "\f1d8";
}

.fa-send-o:before, .fa-paper-plane-o:before {
  content: "\f1d9";
}

.fa-history:before {
  content: "\f1da";
}

.fa-circle-thin:before {
  content: "\f1db";
}

.fa-header:before {
  content: "\f1dc";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-sliders:before {
  content: "\f1de";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-soccer-ball-o:before, .fa-futbol-o:before {
  content: "\f1e3";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bell-slash-o:before {
  content: "\f1f7";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-eyedropper:before {
  content: "\f1fb";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-area-chart:before {
  content: "\f1fe";
}

.fa-pie-chart:before {
  content: "\f200";
}

.fa-line-chart:before {
  content: "\f201";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bus:before {
  content: "\f207";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-cc:before {
  content: "\f20a";
}

.fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
  content: "\f20b";
}

.fa-meanpath:before {
  content: "\f20c";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-venus:before {
  content: "\f221";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-intersex:before, .fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-facebook-official:before {
  content: "\f230";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-server:before {
  content: "\f233";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-hotel:before, .fa-bed:before {
  content: "\f236";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before {
  content: "\f239";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-yc:before, .fa-y-combinator:before {
  content: "\f23b";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-battery-4:before, .fa-battery:before, .fa-battery-full:before {
  content: "\f240";
}

.fa-battery-3:before, .fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battery-2:before, .fa-battery-half:before {
  content: "\f242";
}

.fa-battery-1:before, .fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-0:before, .fa-battery-empty:before {
  content: "\f244";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-sticky-note-o:before {
  content: "\f24a";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-hourglass-o:before {
  content: "\f250";
}

.fa-hourglass-1:before, .fa-hourglass-start:before {
  content: "\f251";
}

.fa-hourglass-2:before, .fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-3:before, .fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hand-grab-o:before, .fa-hand-rock-o:before {
  content: "\f255";
}

.fa-hand-stop-o:before, .fa-hand-paper-o:before {
  content: "\f256";
}

.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa-hand-spock-o:before {
  content: "\f259";
}

.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-safari:before {
  content: "\f267";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-tv:before, .fa-television:before {
  content: "\f26c";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa-calendar-times-o:before {
  content: "\f273";
}

.fa-calendar-check-o:before {
  content: "\f274";
}

.fa-industry:before {
  content: "\f275";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-map-o:before {
  content: "\f278";
}

.fa-map:before {
  content: "\f279";
}

.fa-commenting:before {
  content: "\f27a";
}

.fa-commenting-o:before {
  content: "\f27b";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-vimeo:before {
  content: "\f27d";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-edge:before {
  content: "\f282";
}

.fa-credit-card-alt:before {
  content: "\f283";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-modx:before {
  content: "\f285";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-usb:before {
  content: "\f287";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-pause-circle-o:before {
  content: "\f28c";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stop-circle-o:before {
  content: "\f28e";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-percent:before {
  content: "\f295";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-envira:before {
  content: "\f299";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-wheelchair-alt:before {
  content: "\f29b";
}

.fa-question-circle-o:before {
  content: "\f29c";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before {
  content: "\f2a4";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-signing:before, .fa-sign-language:before {
  content: "\f2a7";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-google-plus-circle:before, .fa-google-plus-official:before {
  content: "\f2b3";
}

.fa-fa:before, .fa-font-awesome:before {
  content: "\f2b4";
}

.fa-handshake-o:before {
  content: "\f2b5";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-o:before {
  content: "\f2b7";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-book-o:before {
  content: "\f2ba";
}

.fa-vcard:before, .fa-address-card:before {
  content: "\f2bb";
}

.fa-vcard-o:before, .fa-address-card-o:before {
  content: "\f2bc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-circle-o:before {
  content: "\f2be";
}

.fa-user-o:before {
  content: "\f2c0";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-drivers-license:before, .fa-id-card:before {
  content: "\f2c2";
}

.fa-drivers-license-o:before, .fa-id-card-o:before {
  content: "\f2c3";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-thermometer-4:before, .fa-thermometer:before, .fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-3:before, .fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-thermometer-2:before, .fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-1:before, .fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-0:before, .fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-bathtub:before, .fa-s15:before, .fa-bath:before {
  content: "\f2cd";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-times-rectangle:before, .fa-window-close:before {
  content: "\f2d3";
}

.fa-times-rectangle-o:before, .fa-window-close-o:before {
  content: "\f2d4";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-eercast:before {
  content: "\f2da";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-snowflake-o:before {
  content: "\f2dc";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-meetup:before {
  content: "\f2e0";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

html, body {
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-family-default);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

button {
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

:root {
  --color-mono-1: #111111;
  --color-mono-2: #333333;
  --color-mono-3: #666666;
  --color-mono-4: #999999;
  --color-mono-5: #cccccc;
  --color-mono-6: #dddddd;
  --color-mono-7: #e8e8e8;
  --color-mono-8: #eeeeee;
  --color-mono-9: #f2f2f2;
  --color-mono-a: #f5f5f5;
  --color-mono-b: #f8f8f8;
  --color-mono-c: #ffffff;
  --color-red: #e60012;
  --color-orange: #d27e3f;
  --color-yellow: #e3af49;
  --color-sushi: #7caa2f;
  --color-green: #3a9a59;
  --color-turquoise: #52c3c4;
  --color-blue: #358ed7;
  --color-steel-blue: #4183ad;
  --color-dark-blue: #2a3d95;
  --color-navy: #166eb6;
  --color-purple: #9357aa;
  --color-pink: #ec6276;
  --color-rate: #ffb100;
  --color-key: var(--color-red);
  --color-favorite: var(--color-pink);
  --color-primary: var(--color-red);
  --color-placeholder: var(--color-mono-5);
  --color-text-link: var(--color-blue);
  --color-text-link--hover: var(--color-navy);
  --color-button-bg-normal: var(--color-mono-9);
  --color-button-bg-normal--hover: var(--color-mono-7);
  --color-button-bg-primary: var(--color-primary);
  --color-button-bg-primary--hover: #c51618;
  --color-button-bg-special: var(--color-primary);
  --color-button-bg-special--hover: #c51618;
  --color-button-bg-black: var(--color-mono-2);
  --color-button-bg-black--hover: var(--color-mono-1);
  --color-tab--active: var(--color-mono-2);
  --color-tab-switch--active: var(--color-mono-3) ;
}

:root {
  --font-family-default: "HiraKakuProN-W3", "Hiragino Kaku Gothic ProN W3", "HiraKakuN-W3", "Hiragino Kaku Gothic N W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Helvetica Neue", "Helvetica", system-ui, sans-serif;
  --font-family-alphanumeric: Arial, "Helvetica Neue", HelveticaNeue, system-ui, sans-serif ;
}

:root {
  --decoration-card-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1) ;
}

:root {
  --transition-timing: cubic-bezier(0, .94, .06, 1);
  --transition-timing--bounce: cubic-bezier(0, 1.91, .34, .79) ;
}

:root {
  --layout-crevo-container-width: 1140px;
  --layout-crevo-container-width--narrow: 980px;
  --layout-crevo-container-width--narrow-more: 900px;
  --color-crevo-gray: #40454e;
  --color-crevo-red: #d63e43;
  --color-crevo-pink: #dd7a7d;
  --color-crevo-blue: #3aa4da;
  --color-crevo-yellow: #e2ae1c;
  --color-crevo-purple: #9665d1;
  --color-crevo-green: #38a0a4;
  --color-crevo-turquoise: #38c298;
  --color-crevo-feature-bg: var(--color-mono-a);
  --color-crevo-merit-bg: #40454f;
  --color-crevo-news-category-press-release: var(--color-crevo-pink);
  --color-crevo-news-category-media: var(--color-crevo-yellow);
  --color-crevo-news-category-customer: var(--color-crevo-purple);
  --color-crevo-news-category-event: var(--color-crevo-turquoise);
  --color-crevo-news-category-information: var(--color-crevo-blue);
  --color-crevo-button-red: var(--color-crevo-red);
  --color-crevo-button-green: var(--color-crevo-green);
  --color-crevo-button-blue: var(--color-crevo-blue) ;
}

#boxer {
  border-radius: 3px;
}

#boxer.mobile {
  z-index: 10000;
}

#boxer.mobile .boxer-container .boxer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#boxer .boxer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow-y: hidden !important;
}

#boxer .boxer-content .boxer-meta {
  padding: 0;
}

#boxer .boxer-content iframe, #boxer .boxer-content video {
  width: 90%;
  height: 90%;
}

#boxer .boxer-video-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0 !important;
}

#boxer .boxer-caption.gallery p {
  padding: 15px;
}

#boxer .boxer-video {
  border: none;
}

#boxer .boxer-meta {
  padding-top: 10px;
}

#boxer .boxer-position {
  display: none;
}

#boxer .boxer-close {
  top: 25px;
  right: 25px;
}

#boxer .boxer-close:before {
  width: 30px;
  height: 30px;
}

:root {
  --color-mono-1: #111111;
  --color-mono-2: #333333;
  --color-mono-3: #666666;
  --color-mono-4: #999999;
  --color-mono-5: #cccccc;
  --color-mono-6: #dddddd;
  --color-mono-7: #e8e8e8;
  --color-mono-8: #eeeeee;
  --color-mono-9: #f2f2f2;
  --color-mono-a: #f5f5f5;
  --color-mono-b: #f8f8f8;
  --color-mono-c: #ffffff;
  --color-red: #e60012;
  --color-orange: #d27e3f;
  --color-yellow: #e3af49;
  --color-sushi: #7caa2f;
  --color-green: #3a9a59;
  --color-turquoise: #52c3c4;
  --color-blue: #358ed7;
  --color-steel-blue: #4183ad;
  --color-dark-blue: #2a3d95;
  --color-navy: #166eb6;
  --color-purple: #9357aa;
  --color-pink: #ec6276;
  --color-rate: #ffb100;
  --color-key: var(--color-red);
  --color-favorite: var(--color-pink);
  --color-primary: var(--color-red);
  --color-placeholder: var(--color-mono-5);
  --color-text-link: var(--color-blue);
  --color-text-link--hover: var(--color-navy);
  --color-button-bg-normal: var(--color-mono-9);
  --color-button-bg-normal--hover: var(--color-mono-7);
  --color-button-bg-primary: var(--color-primary);
  --color-button-bg-primary--hover: #c51618;
  --color-button-bg-special: var(--color-primary);
  --color-button-bg-special--hover: #c51618;
  --color-button-bg-black: var(--color-mono-2);
  --color-button-bg-black--hover: var(--color-mono-1);
  --color-tab--active: var(--color-mono-2);
  --color-tab-switch--active: var(--color-mono-3) ;
}

:root {
  --font-family-default: "HiraKakuProN-W3", "Hiragino Kaku Gothic ProN W3", "HiraKakuN-W3", "Hiragino Kaku Gothic N W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Helvetica Neue", "Helvetica", system-ui, sans-serif;
  --font-family-alphanumeric: Arial, "Helvetica Neue", HelveticaNeue, system-ui, sans-serif ;
}

:root {
  --decoration-card-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1) ;
}

:root {
  --transition-timing: cubic-bezier(0, .94, .06, 1);
  --transition-timing--bounce: cubic-bezier(0, 1.91, .34, .79) ;
}

.u-dropdown {
  position: relative;
  white-space: nowrap;
}

@-webkit-keyframes showDropDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes showDropDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
.open > .u-dropdown__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-animation: showDropDown 0.5s cubic-bezier(0, 0.94, 0.06, 1) forwards;
  animation: showDropDown 0.5s cubic-bezier(0, 0.94, 0.06, 1) forwards;
}

.u-dropdown__menu-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  color: var(--color-mono-2);
  cursor: pointer;
  font-size: 13px;
  font-weight: normal;
  text-decoration: none;
  -webkit-transition: 0.5s cubic-bezier(0, 0.94, 0.06, 1);
  transition: 0.5s cubic-bezier(0, 0.94, 0.06, 1);
}

.u-dropdown__menu-btn:focus, .u-dropdown__menu-btn:hover {
  color: var(--color-mono-1);
  text-decoration: none;
}

.u-dropdown__menu-btn .fa {
  margin: -6px 0 0 5px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.u-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 1000;
  padding: 5px 0;
  min-width: 160px;
  background-clip: padding-box;
  background-color: var(--color-mono-c);
  border-radius: 4px;
  border: none;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
  font-size: 14px;
  list-style: none;
}

.u-dropdown__menu-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 5px auto 5px;
  -ms-grid-columns: 12px 1fr 12px;
  grid-template: ".  .   ." 5px ". body ." auto ".  .   ." 5px/12px 1fr 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0;
  padding: 0;
}

.u-dropdown__menu-item__body {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: body;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  white-space: nowrap;
  border-radius: 3px;
  color: var(--color-mono-1);
  font-size: 13px;
  font-weight: normal;
  line-height: 1.4;
  padding: 8px 12px;
  margin: 0;
  cursor: pointer;
  -webkit-transition: 0.5s cubic-bezier(0, 0.94, 0.06, 1);
  transition: 0.5s cubic-bezier(0, 0.94, 0.06, 1);
}

.molecule-about-service > .u-dropdown__menu-item__body {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

.molecule-philosophy > .u-dropdown__menu-item__body {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}

.molecule-section > .u-dropdown__menu-item__body {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}

.molecule-step > .u-dropdown__menu-item__body {
  -ms-grid-row: 3;
  -ms-grid-column: 4;
}

.organism-feature-detail__container > .u-dropdown__menu-item__body {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

.u-dropdown__menu-item__body:focus, .u-dropdown__menu-item__body:hover {
  background-color: var(--color-mono-a);
  color: var(--color-mono-2);
  text-decoration: none;
}

.u-dropdown__menu-item__body--disabled {
  color: var(--color-mono-5);
  pointer-events: none;
}

.atom-button {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 17px 15px;
  margin: 0;
  font-size: 16px;
  font-weight: normal;
  color: var(--color-mono-c);
  text-decoration: none;
  background-color: #40454e;
  border: 1px solid #40454e;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-font-smoothing: auto;
}

.atom-button:hover, .atom-button:active, .atom-button:focus {
  background-color: #262a31;
  border-color: #262a31;
}

.atom-button--s {
  padding: 12px 15px;
  font-size: 14px;
}

.atom-button--m {
  padding: 17px 15px;
  font-size: 16px;
}

.atom-button--l {
  font-size: 18px;
}

.atom-button--long {
  min-width: 250px;
}

.atom-button--accent {
  padding: 20px 16px;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
}

.atom-button--shadow {
  -webkit-box-shadow: 0 1px 1px 0 rgba(17, 17, 17, 0.25);
  box-shadow: 0 1px 1px 0 rgba(17, 17, 17, 0.25);
}

.atom-button--green {
  color: var(--color-mono-c);
  background-color: var(--color-crevo-button-green);
  border-color: var(--color-crevo-button-green);
}

.atom-button--green:hover, .atom-button--green:active, .atom-button--green:focus {
  background: #29b9be;
  border-color: #29b9be;
}

.atom-button--blue {
  color: var(--color-mono-c);
  background-color: var(--color-crevo-button-blue);
  border-color: var(--color-crevo-button-blue);
}

.atom-button--blue:hover, .atom-button--blue:active, .atom-button--blue:focus {
  background: #56b6e6;
  border-color: #56b6e6;
}

.atom-button--red {
  color: var(--color-mono-c);
  background-color: var(--color-crevo-button-red);
  border-color: var(--color-crevo-button-red);
}

.atom-button--red:hover, .atom-button--red:active, .atom-button--red:focus {
  background: var(--color-red);
  border-color: var(--color-red);
}

.atom-button--white {
  color: var(--color-mono-1);
  background-color: var(--color-mono-c);
  border-color: var(--color-mono-6);
}

.atom-button--white:hover, .atom-button--white:active, .atom-button--white:focus {
  background-color: var(--color-mono-c);
  border-color: var(--color-mono-4);
}

.atom-button__label {
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  color: var(--color-mono-c);
  -webkit-font-smoothing: auto;
}

.atom-button__icon {
  margin-right: 4px;
  color: inherit;
}

.atom-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: var(--layout-crevo-container-width);
  height: auto;
  margin: 0 auto;
}

@media (max-width: 1279px) {
  .atom-container {
    max-width: calc(100% - 40px);
    margin: 0 20px;
  }
}
.atom-container--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
}

@media (min-width: 1024px) {
  .atom-container--narrow {
    max-width: var(--layout-crevo-container-width--narrow);
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .atom-container--narrow-more {
    max-width: var(--layout-crevo-container-width--narrow-more);
    margin: 0 auto;
  }
}
.atom-container--debug {
  background: var(--color-crevo-pink);
}

@media (max-width: 1279px) {
  .atom-container--debug {
    background: var(--color-crevo-blue);
  }
}
@media (max-width: 1024px) {
  .atom-container--debug {
    background: var(--color-crevo-purple);
  }
}
@media (max-width: 768px) {
  .atom-container--debug {
    background: var(--color-crevo-yellow);
  }
}
@media (max-width: 480px) {
  .atom-container--debug {
    background: var(--color-crevo-green);
  }
}
.atom-news-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: bold;
  color: var(--color-mono-c);
  border-radius: 3px;
}

.atom-news-tag--press_release {
  background-color: var(--color-crevo-news-category-press-release);
}

.atom-news-tag--event {
  background-color: var(--color-crevo-news-category-event);
}

.atom-news-tag--customer {
  background-color: var(--color-crevo-news-category-customer);
}

.atom-news-tag--media {
  background-color: var(--color-crevo-news-category-media);
}

.atom-news-tag--information {
  background-color: var(--color-crevo-news-category-information);
}

.atom-project-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4px 6px 4px 4px;
  font-size: 12px;
  color: var(--color-mono-2);
  letter-spacing: 0.5px;
  white-space: nowrap;
  background: var(--color-mono-c);
  border: solid 1px var(--color-mono-6);
  border-radius: 3px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.atom-project-tag:hover {
  color: var(--color-mono-c);
  border-color: transparent;
}

.atom-project-tag:hover:before {
  color: var(--color-mono-c);
}

.atom-project-tag:before {
  display: inline-block;
  margin-top: -2px;
  margin-right: 2px;
  vertical-align: middle;
  content: "●";
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
}

.atom-project-tag-type:before {
  color: #f0a568;
}

.atom-project-tag-type:hover {
  background: #f0a568;
}

.atom-project-tag-purpose:before {
  color: #75cbad;
}

.atom-project-tag-purpose:hover {
  background: #75cbad;
}

.atom-project-tag-length:before {
  color: #c678c4;
}

.atom-project-tag-length:hover {
  background: #c678c4;
}

.atom-project-tag-business:before {
  color: #ed7071;
}

.atom-project-tag-business:hover {
  background: #ed7071;
}

.atom-project-tag-price-range:before {
  color: #78bbd7;
}

.atom-project-tag-price-range:hover {
  background: #78bbd7;
}

.atom-section-sub {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.88;
  text-align: center;
  letter-spacing: normal;
}

.atom-section-title {
  font-size: 36px;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 3px;
}

.atom-section-title--small {
  font-size: 24px;
  line-height: 1.9;
  letter-spacing: 1.2px;
}

.atom-section-title--bold {
  font-weight: bold;
}

.atom-section-title--red {
  color: var(--color-crevo-red);
}

.atom-section-title--white {
  color: var(--color-mono-c);
}

.atom-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.atom-tab--active .atom-tab__body {
  color: var(--color-crevo-red);
  border-color: var(--color-crevo-red);
}

.atom-tab__input {
  display: none;
}

.atom-tab__input:checked + .atom-tab__body {
  color: var(--color-crevo-red);
  border-color: var(--color-crevo-red);
}

.atom-tab__body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  min-width: 100px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: normal;
  color: var(--color-mono-1);
  text-align: center;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  -webkit-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.atom-tab__body:hover {
  color: var(--color-crevo-pink);
  border-color: var(--color-crevo-pink);
}

.atom-text--link {
  color: var(--color-text-link);
}

.atom-text--red {
  color: var(--color-crevo-red);
}

.atom-text--bold {
  font-weight: bold;
}

.atom-text--article-title {
  font-size: 36px;
  font-weight: normal;
  line-height: 1.33;
  color: var(--color-mono-1);
  letter-spacing: normal;
}

.atom-text--article-sub-title {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  font-size: 15px;
  font-weight: bold;
  line-height: 15px;
  color: var(--color-mono-2);
  letter-spacing: normal;
}

.molecule-about-service {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 20px auto 20px auto;
  -ms-grid-columns: 290px 40px 1fr;
  grid-template: "logo . title" auto "logo . ." 20px "logo . body" auto "logo . ." 20px "logo . link" auto/290px 40px 1fr;
}

.molecule-about-service__logo {
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  -ms-grid-column: 1;
  grid-area: logo;
  width: 100%;
  height: 200px;
  border: 1px solid var(--color-mono-5);
}

.molecule-about-service__logo-img {
  display: block;
  width: 100%;
  max-width: 200px;
  height: 100%;
  margin: auto;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
}

.molecule-about-service__title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: title;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-mono-1);
}

.molecule-article-header > .molecule-about-service__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
}

.molecule-article-header--interview > .molecule-about-service__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-footer-nav-category > .molecule-about-service__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-footer-nav-category--2-column > .molecule-about-service__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-news-item > .molecule-about-service__title {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
}

.molecule-philosophy > .molecule-about-service__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-project-article-header > .molecule-about-service__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-section > .molecule-about-service__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-service-genre > .molecule-about-service__title {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

.molecule-step > .molecule-about-service__title {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

.molecule-usage-item > .molecule-about-service__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
}

.organism-feature-detail__container > .molecule-about-service__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

.organism-hero-section__container > .molecule-about-service__title {
  -ms-grid-row: 5;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.organism-interview-card__link > .molecule-about-service__title {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

.molecule-about-service__body {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: body;
  font-size: 16px;
  line-height: 2;
}

.molecule-about-service > .molecule-about-service__body {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

.molecule-philosophy > .molecule-about-service__body {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}

.molecule-section > .molecule-about-service__body {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}

.molecule-step > .molecule-about-service__body {
  -ms-grid-row: 3;
  -ms-grid-column: 4;
}

.organism-feature-detail__container > .molecule-about-service__body {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

.molecule-about-service__link {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
  grid-area: link;
  align-self: flex-start;
  justify-self: flex-end;
}

@media all and (-ms-high-contrast: none) {
  .molecule-about-service__link {
    width: 160px;
  }
}
.molecule-alternate-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.molecule-alternate-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.molecule-alternate-list__item:nth-of-type(odd) .molecule-alternate-list__item__content:first-child {
  margin-right: 40px;
}

.molecule-alternate-list__item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.molecule-alternate-list__item:nth-of-type(even) .molecule-alternate-list__item__content:first-child {
  margin-left: 40px;
}

.molecule-alternate-list--with-gap .molecule-alternate-list__item + .molecule-alternate-list__item {
  margin-top: 50px;
}

.molecule-article-header {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 10px auto;
  -ms-grid-columns: auto 10px auto 10px 1fr 10px auto;
  grid-template: "sub    tags   .   share" auto "title title title title" auto/auto auto 1fr auto;
  gap: 10px;
}

@media (max-width: 768px) {
  .molecule-article-header {
    -ms-grid-rows: auto auto auto;
    -ms-grid-columns: auto auto 1fr;
    grid-template: " sub   tags   .  " auto "title title title" auto "share share share" auto/auto auto 1fr;
  }
  .molecule-article-header > .molecule-about-service__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}
.molecule-article-header--interview {
  -ms-grid-rows: auto auto auto;
  -ms-grid-columns: auto 1fr auto;
  grid-template: "sub     .   share" auto "title title title" auto "tags  tags  tags" auto/auto 1fr auto;
}

@media (max-width: 768px) {
  .molecule-article-header--interview {
    -ms-grid-rows: auto auto auto auto;
    -ms-grid-columns: 100%;
    grid-template: " sub " auto "title" auto "tags" auto "share" auto/100%;
  }
  .molecule-article-header--interview > .molecule-about-service__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
}
.molecule-article-header__title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: title;
  width: 100%;
}

.molecule-article-header > .molecule-article-header__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
}

.molecule-article-header--interview > .molecule-article-header__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-footer-nav-category > .molecule-article-header__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-footer-nav-category--2-column > .molecule-article-header__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-news-item > .molecule-article-header__title {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
}

.molecule-philosophy > .molecule-article-header__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-project-article-header > .molecule-article-header__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-section > .molecule-article-header__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-service-genre > .molecule-article-header__title {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

.molecule-step > .molecule-article-header__title {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

.molecule-usage-item > .molecule-article-header__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
}

.organism-feature-detail__container > .molecule-article-header__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

.organism-hero-section__container > .molecule-article-header__title {
  -ms-grid-row: 5;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.organism-interview-card__link > .molecule-article-header__title {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

@media (max-width: 768px) {
  .molecule-article-header__title {
    font-size: 20px;
    line-height: 1.4;
  }
}
.molecule-article-header__sub-title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: sub;
  -ms-grid-row-align: center;
  align-self: center;
  font-size: 14px;
  font-weight: normal;
  color: var(--color-mono-3);
}

.molecule-article-header--interview > .molecule-article-header__sub-title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.molecule-section > .molecule-article-header__sub-title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.organism-hero-section__container > .molecule-article-header__sub-title {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
}

@media (max-width: 768px) {
  .molecule-article-header__sub-title {
    font-size: 14px;
  }
}
.molecule-article-header__tags {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  grid-area: tags;
}

.molecule-article-header--interview > .molecule-article-header__tags {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.organism-interview-card__link > .molecule-article-header__tags {
  -ms-grid-row: 5;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

.molecule-article-header__tags .atom-project-tag {
  margin: 4px 4px 0 0;
  pointer-events: none;
}

.molecule-article-header__share-list {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
  grid-area: share;
}

.molecule-article-header--interview > .molecule-article-header__share-list {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
}

.molecule-project-article-header > .molecule-article-header__share-list {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
}

.molecule-chief-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.molecule-chief-message__title {
  font-size: 24px;
  line-height: 1.4;
}

.molecule-chief-message__body {
  display: block;
  width: 100%;
  margin-top: 40px;
  font-size: 18px;
  line-height: 2.5;
}

.molecule-chief-message__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 40px;
}

.molecule-chief-message__sub-position {
  margin-right: 10px;
  font-size: 12px;
}

.molecule-chief-message__sub-name {
  font-size: 18px;
}

.molecule-contact {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  grid-area: contact;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.organism-inquiry-header__container > .molecule-contact {
  -ms-grid-row: 2;
  -ms-grid-column: 5;
}

.molecule-contact__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 3px 12px 0;
  font-size: 18px;
  opacity: 0.8;
}

.molecule-contact__tel__number {
  margin-bottom: 2px;
  font-family: var(--font-family-alphanumeric);
  letter-spacing: 2px;
}

.molecule-contact__tel__business-day {
  font-size: 10px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.8);
}

.molecule-contact__phone-icon {
  font-size: 45px;
  color: var(--color-mono-5);
}

.molecule-contact__heading {
  margin: 40px 0 20px 0;
  font-size: 16px;
  color: var(--color-mono-4);
  text-align: center;
}

.molecule-contact-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .molecule-contact-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
}
.molecule-contact-buttons__button + .molecule-contact-buttons__button {
  margin-left: 15px;
}

@media (max-width: 768px) {
  .molecule-contact-buttons__button + .molecule-contact-buttons__button {
    margin: 20px 0 0 0;
  }
}
@media (max-width: 480px) {
  .molecule-contact-buttons__button {
    width: 100%;
  }
}
.molecule-contact-tel__icon {
  width: 14px;
  margin: 1px -2px 0 0;
}

.molecule-contact-tel__num {
  font-family: var(--font-family-alphanumeric);
  font-size: 18px;
}

.molecule-contact-tel__num a {
  font-family: var(--font-family-alphanumeric);
  font-size: 18px;
  color: var(--color-mono-c);
}

.molecule-contact-tel__num a:hover {
  font-family: var(--font-family-alphanumeric);
  font-size: 18px;
  color: var(--color-mono-c);
  text-decoration: underline;
}

.molecule-contact-tel__hours {
  margin-left: -8px;
  font-size: 13px;
  font-weight: normal;
  color: var(--color-mono-c);
}

.molecule-contents-header__container {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .molecule-contents-header__container {
    padding: 40px 0;
  }
}
.molecule-contents-header__title {
  display: inline-block;
  font-size: 44px;
  font-weight: normal;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 768px) {
  .molecule-contents-header__title {
    font-size: 23px;
    line-height: 33.6px;
  }
}
.molecule-contents-header__title:after {
  display: block;
  width: 36px;
  height: 5px;
  margin: 30px auto;
  content: "";
  background: var(--color-crevo-red);
}

.molecule-contents-header__subtitle {
  font-weight: 400;
  font-size: 36px;
  line-height: 54px;
  text-align: center;
  margin-bottom: 24px;
}

.pc-none {
  display: none;
}

@media (max-width: 768px) {
  .pc-none {
    display: block;
  }
  .molecule-contents-header__subtitle {
    font-size: 24px;
    line-height: 36px;
  }
}
.molecule-contents-header__body {
  width: 100%;
  font-size: 16px;
  line-height: 2;
  text-align: center;
}

@media (max-width: 768px) {
  .molecule-contents-header__body {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .molecule-contents-header__body br {
    display: none;
  }
  .molecule-contents-header__body br + * {
    margin-left: 10px;
  }
}
.molecule-contents-header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.molecule-contents-header__contact__title {
  margin: 40px 0;
  font-size: 16px;
  font-weight: bold;
  color: var(--color-mono-4);
}

.molecule-footer-nav-category {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 18px 1fr;
  -ms-grid-columns: auto;
  grid-template: "title" auto "  .  " 18px "list" 1fr/auto;
}

.molecule-footer-nav-category--2-column {
  -ms-grid-rows: auto 18px 1fr;
  -ms-grid-columns: auto 20px auto;
  grid-template: "title title title" auto "  .     .     .  " 18px "first   .  second" 1fr/auto 20px auto;
}

.molecule-footer-nav-category--2-column .molecule-footer-nav-category__list {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: first;
}

.molecule-footer-nav-category--2-column .molecule-footer-nav-category__list:last-of-type {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: second;
}

.molecule-footer-nav-category__title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: title;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-mono-c);
}

.molecule-article-header > .molecule-footer-nav-category__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
}

.molecule-article-header--interview > .molecule-footer-nav-category__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-footer-nav-category > .molecule-footer-nav-category__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-footer-nav-category--2-column > .molecule-footer-nav-category__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-news-item > .molecule-footer-nav-category__title {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
}

.molecule-philosophy > .molecule-footer-nav-category__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-project-article-header > .molecule-footer-nav-category__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-section > .molecule-footer-nav-category__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-service-genre > .molecule-footer-nav-category__title {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

.molecule-step > .molecule-footer-nav-category__title {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

.molecule-usage-item > .molecule-footer-nav-category__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
}

.organism-feature-detail__container > .molecule-footer-nav-category__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

.organism-hero-section__container > .molecule-footer-nav-category__title {
  -ms-grid-row: 5;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.organism-interview-card__link > .molecule-footer-nav-category__title {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

.molecule-footer-nav-category__title:hover, .molecule-footer-nav-category__title:focus {
  color: var(--color-mono-c);
}

.molecule-footer-nav-category__list {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: list;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.molecule-footer-nav-category__list__item {
  margin-bottom: 15px;
}

.molecule-footer-nav-category__list__item:last-of-type {
  margin-bottom: 0;
}

.molecule-header-bottom__container {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 20px 0 40px 0 20px;
  -ms-grid-columns: 124px 30px 1fr 30px auto;
  grid-template: ". . ." 20px "brand-logo nav contact" 40px ". . ." 20px/124px 1fr auto;
  gap: 0 20px;
}

.molecule-header-bottom__brand-logo {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  overflow: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  grid-area: brand-logo;
  width: 100%;
  height: 100%;
}

.molecule-header-bottom__brand-logo__image {
  position: relative;
  width: 248px;
  left: -124px;
}

@media all and (-ms-high-contrast: none) {
  .molecule-header-bottom__brand-logo {
    display: -ms-inline-grid;
  }
  .molecule-header-bottom__brand-logo *::-ms-backdrop, .molecule-header-bottom__brand-logo__image {
    top: 5px;
  }
}
.molecule-header-bottom__menu-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-area: menu;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  justify-self: right;
  max-width: 40px;
  height: 100%;
  font-size: 30px;
}

.molecule-header-bottom__nav {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: nav;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

.organism-footer__container > .molecule-header-bottom__nav {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}

.organism-footer__container--before-service-opened > .molecule-header-bottom__nav {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
}

.molecule-header-bottom .molecule-nav-link-list {
  height: 100%;
}

@media (max-width: 768px) {
  .molecule-header-bottom .molecule-nav-link-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: auto;
  }
}
@media (max-width: 768px) {
  .molecule-header-bottom .molecule-nav-link-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .molecule-header-bottom .molecule-nav-link-list__item + .molecule-nav-link-list__item {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .molecule-header-bottom .molecule-nav-link-list__item__link, .molecule-header-bottom .molecule-nav-link-list .u-dropdown__menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 52px;
    padding: 0 8px 0 6px;
    font-size: 15px;
    font-weight: bold;
    color: var(--color-mono-2);
    border-bottom: 1px solid var(--color-mono-8);
  }
}
@media (max-width: 1023px) {
  .molecule-header-bottom .molecule-contact__tel {
    display: none;
  }
}
@media (max-width: 1024px) {
  .molecule-header-bottom .molecule-contact__phone-icon {
    display: none;
  }
}
@media (max-width: 768px) {
  .molecule-header-bottom .molecule-contact__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .molecule-header-bottom .molecule-contact__buttons .atom-button {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .molecule-header-bottom .molecule-contact__buttons .atom-button + .atom-button {
    margin: 15px 0 0 0;
  }
}
@media (max-width: 768px) {
  .molecule-header-bottom .u-dropdown.open .u-dropdown__menu-btn:after {
    content: url(../img/crevo_jp/minus-cac4acf7f69fadaca7d5ca69ab411b9c594ae3dd7c1a18630065d4cab6f58df8.svg);
  }
}
@media (max-width: 768px) {
  .molecule-header-bottom .u-dropdown__menu {
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.molecule-header-bottom .u-dropdown__menu-btn .caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

@media (max-width: 768px) {
  .molecule-header-bottom .u-dropdown__menu-btn {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }
  .molecule-header-bottom .u-dropdown__menu-btn:after {
    float: right;
    content: url(../img/crevo_jp/plus-9d6de21e972a870d7428df1b514fca66ba88a6cf87ac0055f3263e1e9143f8ad.svg);
  }
  .molecule-header-bottom .u-dropdown__menu-btn .caret {
    display: none;
  }
}
@media (max-width: 768px) {
  .molecule-header-bottom .u-dropdown__menu-item {
    border-bottom: 1px solid var(--color-mono-8);
  }
}
.molecule-header-bottom .u-dropdown__menu-item__body {
  font-size: 15px;
  color: var(--color-mono-2);
}

.molecule-header-top {
  height: 40px;
  background: rgba(22, 25, 31, 0.5);
}

.molecule-header-top__container {
  height: 100%;
}

.molecule-header-top__container__catch {
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  color: var(--color-mono-c);
}

.molecule-header-top__container__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.molecule-header-top__container__nav-list__item:after {
  display: inline-block;
  width: 1px;
  height: 11px;
  margin: -2px 12px 0;
  line-height: -4px;
  vertical-align: middle;
  content: "";
  background: var(--color-mono-c);
  opacity: 0.4;
}

.molecule-header-top__container__nav-list__item:last-child:after {
  display: none;
}

.molecule-header-top__container__nav-list__item__link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.molecule-header-top__container__nav-list__item__link:hover {
  color: var(--color-mono-c);
}

.molecule-header-top__container__nav-list__item__link + .molecule-header-top__container__nav-list__item {
  margin-left: 10px;
}

.molecule-interview-card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.molecule-interview-card-list__item {
  width: 100%;
  margin-bottom: 30px;
}

.molecule-location-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.molecule-location-detail__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.molecule-location-detail__title {
  width: 100%;
  max-width: 90px;
  font-size: 14px;
  line-height: 31px;
  color: var(--color-mono-1);
  font-weight: bold;
}

@media (max-width: 768px) {
  .molecule-location-detail__title {
    font-size: 13px;
    line-height: 19px;
  }
}
.molecule-location-detail__body {
  font-size: 13px;
  line-height: 2em;
  color: var(--color-mono-1);
  text-align: left;
}

@media (max-width: 768px) {
  .molecule-location-detail__body {
    line-height: 19px;
  }
}
.molecule-merit {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 20px auto 20px 1fr;
  grid-template-rows: auto 20px auto 20px 1fr;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
}

.molecule-merit > * {
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
  align-self: start;
  -ms-grid-column-align: center;
  justify-self: center;
}

.molecule-merit__title {
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 1;
  grid-column: 1;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6em;
  color: var(--color-mono-c);
  text-align: center;
}

.molecule-merit__image {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
  width: 100%;
  height: auto;
}

.molecule-merit__body {
  -ms-grid-row: 5;
  grid-row: 5;
  -ms-grid-column: 1;
  grid-column: 1;
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-mono-c);
  text-align: left;
  letter-spacing: 0.05em;
}

.molecule-merit-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.molecule-merit-list__item {
  width: calc((100% - 120px) / 3);
}

.molecule-module-list__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.molecule-module-list__title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

.molecule-module-list__body {
  font-size: 14px;
  line-height: 1.6;
}

.molecule-nav-link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.molecule-nav-link-list__item, .molecule-nav-link-list .u-dropdown__menu-btn {
  height: 100%;
  font-size: 14px;
  font-weight: normal;
  white-space: nowrap;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.molecule-nav-link-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.molecule-nav-link-list__item + .molecule-nav-link-list__item {
  margin-left: 30px;
}

.molecule-nav-link-list .u-dropdown__menu {
  top: calc(100% - 2px);
}

.molecule-nav-category-item__link {
  font-size: 13px;
  color: var(--color-mono-c);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.molecule-nav-category-item__link:hover {
  color: var(--color-mono-c);
}

.molecule-nav-category-item__link:before {
  position: relative;
  display: inline-block;
  width: 5px;
  height: 9px;
  margin: 0 8px 0 4px;
  content: "";
  background-image: url(../img/crevo_jp/ftr-arrow-right.svg);
}

.molecule-nav-list__item__link {
  color: var(--color-mono-c);
  text-decoration: none;
}

.molecule-news-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  -ms-grid-columns: 120px 20px 132px 20px 1fr;
  grid-template: "date tag title" auto/120px 132px 1fr;
  gap: 4px 20px;
}

.molecule-news-item > * {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: center;
  align-self: center;
}

.molecule-news-item__date {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: date;
  font-size: 14px;
  white-space: nowrap;
}

.molecule-news-item__tag {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: tag;
  white-space: nowrap;
}

.molecule-news-item__title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: title;
  justify-self: flex-start;
  font-size: 14px;
  line-height: 1.4;
}

.molecule-article-header > .molecule-news-item__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
}

.molecule-article-header--interview > .molecule-news-item__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-footer-nav-category > .molecule-news-item__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-footer-nav-category--2-column > .molecule-news-item__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-news-item > .molecule-news-item__title {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
}

.molecule-philosophy > .molecule-news-item__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-project-article-header > .molecule-news-item__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-section > .molecule-news-item__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-service-genre > .molecule-news-item__title {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

.molecule-step > .molecule-news-item__title {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

.molecule-usage-item > .molecule-news-item__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
}

.organism-feature-detail__container > .molecule-news-item__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

.organism-hero-section__container > .molecule-news-item__title {
  -ms-grid-row: 5;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.organism-interview-card__link > .molecule-news-item__title {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

.molecule-news-item__title:hover {
  text-decoration: underline;
}

.molecule-other-link {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px;
  background: var(--color-mono-9);
  border: 1px solid var(--color-mono-5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.molecule-other-link:hover {
  opacity: 0.7;
}

.molecule-other-link__thumbnail {
  width: 150px;
  height: auto;
  margin-right: 16px;
}

.molecule-other-link__body {
  font-size: 16px;
}

.molecule-other-link__tag {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  color: var(--color-text-link);
}

.molecule-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--color-mono-c);
  border: 1px solid var(--color-mono-6);
  border-radius: 4px;
}

.molecule-pagination__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 34px;
  line-height: 1.4;
  color: var(--color-mono-3);
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.molecule-pagination__item:hover {
  background-color: var(--color-mono-9);
}

.molecule-pagination__item--active {
  color: var(--color-mono-c);
  background-color: var(--color-red);
}

.molecule-pagination__item--active:hover {
  background-color: var(--color-red);
}

.molecule-pagination__item--disabled {
  padding: 0 12px;
  cursor: not-allowed;
  opacity: 0.6;
}

.molecule-pagination__item--disabled:hover {
  background-color: var(--color-mono-c);
}

.molecule-pagination__item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 12px;
}

.molecule-pagination__item + .molecule-pagination__item {
  border-left: 1px solid var(--color-mono-8);
}

.molecule-pankuzu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.molecule-pankuzu-list__item + .molecule-pankuzu-list__item:before {
  margin: 0 4px 0 10px;
  font-size: 13px;
  color: var(--color-mono-3);
  content: ">";
}

.molecule-pankuzu-list__item + .molecule-pankuzu-list__item:last-of-type .molecule-pankuzu-list__item__link {
  font-weight: bold;
}

.molecule-pankuzu-list__item__link {
  font-size: 12px;
  color: var(--color-mono-3);
  text-decoration: none;
}

.molecule-philosophy {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 20px auto 20px auto;
  -ms-grid-columns: 100%;
  grid-template: "title" auto "." 20px "copy" auto "." 20px "body" auto/100%;
}

.molecule-philosophy > * {
  -ms-grid-column-align: center;
  justify-self: center;
  text-align: center;
}

.molecule-philosophy__title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: title;
  font-size: 16px;
  font-weight: normal;
  color: var(--color-mono-2);
}

.molecule-article-header > .molecule-philosophy__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
}

.molecule-article-header--interview > .molecule-philosophy__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-footer-nav-category > .molecule-philosophy__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-footer-nav-category--2-column > .molecule-philosophy__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-news-item > .molecule-philosophy__title {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
}

.molecule-philosophy > .molecule-philosophy__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-project-article-header > .molecule-philosophy__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-section > .molecule-philosophy__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-service-genre > .molecule-philosophy__title {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

.molecule-step > .molecule-philosophy__title {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

.molecule-usage-item > .molecule-philosophy__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
}

.organism-feature-detail__container > .molecule-philosophy__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

.organism-hero-section__container > .molecule-philosophy__title {
  -ms-grid-row: 5;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.organism-interview-card__link > .molecule-philosophy__title {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

.molecule-philosophy__copy {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: copy;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
}

.molecule-philosophy__body {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: body;
  font-size: 16px;
  line-height: 2;
}

.molecule-about-service > .molecule-philosophy__body {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

.molecule-philosophy > .molecule-philosophy__body {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}

.molecule-section > .molecule-philosophy__body {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}

.molecule-step > .molecule-philosophy__body {
  -ms-grid-row: 3;
  -ms-grid-column: 4;
}

.organism-feature-detail__container > .molecule-philosophy__body {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

.molecule-philosophy__values-title {
  font-family: var(--font-family-alphanumeric);
  font-size: 20px;
  font-weight: bold;
  color: var(--color-mono-1);
}

.molecule-philosophy__values-body {
  font-size: 16px;
  line-height: 2;
}

.molecule-project-article-header {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 10px auto;
  -ms-grid-columns: 1fr;
  grid-template: "sub-title share" auto "title title" auto/1fr;
  gap: 10px;
}

@media (max-width: 768px) {
  .molecule-project-article-header {
    -ms-grid-rows: auto auto auto;
    -ms-grid-columns: 1fr;
    grid-template: "sub-title" auto "title" auto "share" auto/1fr;
    margin-bottom: 25px;
  }
  .molecule-project-article-header > .molecule-about-service__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-project-article-header > .molecule-article-header__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-project-article-header > .molecule-article-header__share-list {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-project-article-header > .molecule-footer-nav-category__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-project-article-header > .molecule-news-item__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-project-article-header > .molecule-philosophy__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
}
.molecule-project-article-header__title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: title;
  width: 100%;
}

.molecule-article-header > .molecule-project-article-header__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
}

.molecule-article-header--interview > .molecule-project-article-header__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-footer-nav-category > .molecule-project-article-header__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-footer-nav-category--2-column > .molecule-project-article-header__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-news-item > .molecule-project-article-header__title {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
}

.molecule-philosophy > .molecule-project-article-header__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-project-article-header > .molecule-project-article-header__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-section > .molecule-project-article-header__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-service-genre > .molecule-project-article-header__title {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

.molecule-step > .molecule-project-article-header__title {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

.molecule-usage-item > .molecule-project-article-header__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
}

.organism-feature-detail__container > .molecule-project-article-header__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

.organism-hero-section__container > .molecule-project-article-header__title {
  -ms-grid-row: 5;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.organism-interview-card__link > .molecule-project-article-header__title {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

@media (max-width: 768px) {
  .molecule-project-article-header__title {
    font-size: 20px;
    line-height: 1.4;
  }
}
.molecule-project-article-header__sub-title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: sub-title;
}

@media (max-width: 768px) {
  .molecule-project-article-header__sub-title {
    font-size: 14px;
    font-weight: bold;
  }
}
.molecule-project-article-header__share-list {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
  grid-area: share;
}

.molecule-article-header--interview > .molecule-project-article-header__share-list {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
}

.molecule-project-article-header > .molecule-project-article-header__share-list {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
}

.molecule-project-card {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 140px 15px auto 20px 1fr 20px;
  -ms-grid-columns: 18px 1fr 18px;
  grid-template: "thumbnail thumbnail thumbnail" 140px ".      .      ." 15px ". client-name ." auto ".      .      ." 20px ".  tag-list   ." 1fr ".      .      ." 20px/18px 1fr 18px;
  height: 100%;
  overflow: hidden;
  background: var(--color-mono-c);
  border-radius: 5px;
  -webkit-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.molecule-project-card:hover {
  top: -1px;
  -webkit-box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.1);
}

.molecule-project-card.status-label-new:after {
  position: absolute;
  top: 7px;
  left: -30px;
  z-index: 1;
  width: 100px;
  height: auto;
  padding: 7px 10px 6px;
  font-size: 12px;
  font-weight: bold;
  color: var(--color-mono-c);
  text-align: center;
  content: "NEW";
  background: #ef8686;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.molecule-project-card__thumbnail {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  position: relative;
  grid-area: thumbnail;
  overflow: hidden;
  background: var(--color-mono-8);
}

.molecule-project-card__thumbnail .slideshow {
  height: 100%;
}

.molecule-project-card__thumbnail img {
  width: 100%;
  height: 100%;
  font-family: "object-fit: cover;";
  -o-object-fit: cover;
  object-fit: cover;
}

@media all and (-ms-high-contrast: none) {
  .molecule-project-card__thumbnail img {
    height: auto;
  }
}
.molecule-project-card__client-name {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  grid-area: client-name;
  overflow: hidden;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text-link);
  text-overflow: ellipsis;
  letter-spacing: normal;
}

.molecule-project-card__tag-list {
  -ms-grid-row: 5;
  -ms-grid-column: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-area: tag-list;
}

.molecule-project-card__tag-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.molecule-project-card__tag-list__item + .molecule-project-card__tag-list__item {
  margin-top: 4px;
}

.molecule-project-card__tag-list__item > * + * {
  margin-top: 4px;
}

.molecule-project-card__tag-list__item .atom-project-tag {
  pointer-events: none;
}

.molecule-qa__q {
  font-size: 18px;
  font-weight: bold;
  line-height: 2.5rem;
  color: var(--color-crevo-red);
}

.molecule-qa__a {
  margin-top: 10px;
  font-size: 16px;
  line-height: 2.5rem;
  color: var(--color-mono-1);
}

.molecule-qa-list__item {
  padding: 0 20px 40px 20px;
  border-bottom: 1px solid var(--color-mono-6);
}

.molecule-qa-list__item + .molecule-qa-list__item {
  margin-top: 40px;
}

.molecule-related-creative {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.molecule-related-creative__thumbnail-area {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.molecule-related-creative__thumbnail-area__thumbnail {
  width: 100%;
  height: 100%;
  font-family: "object-fit: cover;";
  -o-object-fit: cover;
  object-fit: cover;
}

.molecule-related-creative__thumbnail-area__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 60px;
  color: var(--color-mono-c);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.molecule-related-creative__title {
  padding-top: 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: normal;
  color: var(--color-mono-1);
  letter-spacing: normal;
}

.molecule-section {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 80px auto auto 80px auto auto 80px;
  -ms-grid-columns: 1fr;
  grid-template: "." 80px "title" auto "sub" auto "." 80px "body" auto "more" auto ". " 80px/1fr;
}

.molecule-section__without-top-gap {
  margin-top: -80px;
}

.molecule-section__without-bottom-gap {
  margin-bottom: -80px;
}

@media (max-width: 768px) {
  .molecule-section {
    -ms-grid-rows: 40px auto auto 40px auto auto 40px;
    -ms-grid-columns: 1fr;
    grid-template: "." 40px "title" auto "sub" auto "." 40px "body" auto "more" auto ". " 40px/1fr;
  }
  .molecule-section__without-top-gap {
    margin-top: -40px;
  }
  .molecule-section__without-bottom-gap {
    margin-bottom: -40px;
  }
  .molecule-section > .u-dropdown__menu-item__body {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .molecule-section > .molecule-about-service__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-section > .molecule-about-service__body {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .molecule-section > .molecule-article-header__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-section > .molecule-article-header__sub-title {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .molecule-section > .molecule-footer-nav-category__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-section > .molecule-news-item__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-section > .molecule-philosophy__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-section > .molecule-philosophy__body {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .molecule-section > .molecule-project-article-header__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
}
.molecule-section__title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: title;
}

.molecule-article-header > .molecule-section__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
}

.molecule-article-header--interview > .molecule-section__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-footer-nav-category > .molecule-section__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-footer-nav-category--2-column > .molecule-section__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-news-item > .molecule-section__title {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
}

.molecule-philosophy > .molecule-section__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-project-article-header > .molecule-section__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-section > .molecule-section__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-service-genre > .molecule-section__title {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

.molecule-step > .molecule-section__title {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

.molecule-usage-item > .molecule-section__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
}

.organism-feature-detail__container > .molecule-section__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

.organism-hero-section__container > .molecule-section__title {
  -ms-grid-row: 5;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.organism-interview-card__link > .molecule-section__title {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

@media (max-width: 768px) {
  .molecule-section__title {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: normal;
  }
}
.molecule-section__sub {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: sub;
  margin-top: 80px;
}

.molecule-article-header--interview > .molecule-section__sub {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.molecule-section > .molecule-section__sub {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.organism-hero-section__container > .molecule-section__sub {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
}

@media (max-width: 768px) {
  .molecule-section__sub {
    text-align: left;
  }
  .molecule-section__sub br {
    display: none;
  }
}
@media (max-width: 768px) {
  .molecule-section__sub {
    margin-top: 15px;
  }
}
.molecule-section__body {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: body;
}

.molecule-about-service > .molecule-section__body {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

.molecule-philosophy > .molecule-section__body {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}

.molecule-section > .molecule-section__body {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}

.molecule-step > .molecule-section__body {
  -ms-grid-row: 3;
  -ms-grid-column: 4;
}

.organism-feature-detail__container > .molecule-section__body {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

.molecule-section__more {
  -ms-grid-row: 6;
  -ms-grid-column: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-area: more;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .molecule-section__more {
    margin-top: 40px;
  }
  .molecule-section__more .atom-button--long {
    width: 100%;
  }
}
.molecule-service-creative__image {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr auto 1fr;
  grid-template-rows: 1fr auto 1fr;
  -ms-grid-columns: 1fr auto 1fr;
  grid-template-columns: 1fr auto 1fr;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 3px;
}

.molecule-service-creative__thumbnail {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  grid-row: 1/4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.molecule-service-creative__icon {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 2;
  grid-column: 2;
  font-size: 80px;
  color: var(--color-mono-c);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.molecule-service-creative__title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-mono-1);
  text-align: left;
}

.molecule-service-creative-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.molecule-service-creative-list__item {
  width: calc((100% - 120px) / 3);
}

.molecule-service-genre {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 20px 2em 20px;
  -ms-grid-columns: 18px 1fr 18px;
  grid-template: "image image image" auto "  .     .     .  " 20px "  .   title   .  " 2em "  .     .     .  " 20px/18px 1fr 18px;
  background-color: var(--color-mono-c);
  border: 1px solid var(--color-mono-7);
  border-radius: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.molecule-service-genre:hover {
  -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15);
}

.molecule-service-genre__image {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: image;
  width: 100%;
  height: auto;
}

.molecule-step > .molecule-service-genre__image {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

.organism-company-info > .molecule-service-genre__image {
  -ms-grid-row: 2;
  -ms-grid-row-span: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

.organism-interview-card__link > .molecule-service-genre__image {
  -ms-grid-row: 2;
  -ms-grid-row-span: 4;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

.molecule-service-genre__title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  position: relative;
  grid-area: title;
  -ms-grid-row-align: center;
  align-self: center;
}

.molecule-article-header > .molecule-service-genre__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
}

.molecule-article-header--interview > .molecule-service-genre__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-footer-nav-category > .molecule-service-genre__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-footer-nav-category--2-column > .molecule-service-genre__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-news-item > .molecule-service-genre__title {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
}

.molecule-philosophy > .molecule-service-genre__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-project-article-header > .molecule-service-genre__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-section > .molecule-service-genre__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-service-genre > .molecule-service-genre__title {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

.molecule-step > .molecule-service-genre__title {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

.molecule-usage-item > .molecule-service-genre__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
}

.organism-feature-detail__container > .molecule-service-genre__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

.organism-hero-section__container > .molecule-service-genre__title {
  -ms-grid-row: 5;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.organism-interview-card__link > .molecule-service-genre__title {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

.molecule-service-genre__title:after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  content: "";
  border: 0px;
  border-top: solid 1px var(--color-mono-4);
  border-right: solid 1px var(--color-mono-4);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.molecule-service-genre-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.molecule-service-genre-list__item {
  width: 24%;
  margin-bottom: 20px;
}

.molecule-service-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.molecule-service-type__image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

@media all and (-ms-high-contrast: none) {
  .molecule-service-type__image {
    height: 100%;
  }
}
.molecule-service-type__title {
  padding: 30px 0;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background-color: var(--color-mono-b);
  border: none;
  border-top: 2px solid var(--color-mono-2);
}

.molecule-step {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 10px 1fr;
  -ms-grid-columns: 20px auto 40px 1fr;
  grid-template: ".  image . title" auto ".  image .   .  " 10px ".  image . body " 1fr/20px auto 40px 1fr;
}

.molecule-step__step {
  position: absolute;
  top: -20px;
  left: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-family: var(--font-family-alphanumeric);
  font-size: 22px;
  font-weight: bold;
  color: var(--color-mono-c);
  text-align: center;
  background: var(--color-red);
  border-radius: 50%;
}

.molecule-step__image {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  grid-area: image;
  width: 100%;
  max-width: 320px;
  height: auto;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.15);
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.molecule-step > .molecule-step__image {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

.organism-company-info > .molecule-step__image {
  -ms-grid-row: 2;
  -ms-grid-row-span: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

.organism-interview-card__link > .molecule-step__image {
  -ms-grid-row: 2;
  -ms-grid-row-span: 4;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

.molecule-step__title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: title;
  font-size: 24px;
  font-weight: normal;
  color: var(--color-mono-1);
}

.molecule-article-header > .molecule-step__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
}

.molecule-article-header--interview > .molecule-step__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-footer-nav-category > .molecule-step__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-footer-nav-category--2-column > .molecule-step__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-news-item > .molecule-step__title {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
}

.molecule-philosophy > .molecule-step__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-project-article-header > .molecule-step__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-section > .molecule-step__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-service-genre > .molecule-step__title {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

.molecule-step > .molecule-step__title {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

.molecule-usage-item > .molecule-step__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
}

.organism-feature-detail__container > .molecule-step__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

.organism-hero-section__container > .molecule-step__title {
  -ms-grid-row: 5;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.organism-interview-card__link > .molecule-step__title {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

.molecule-step__body {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: body;
  font-size: 16px;
  line-height: 1.88;
  letter-spacing: 0.9px;
}

.molecule-about-service > .molecule-step__body {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

.molecule-philosophy > .molecule-step__body {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}

.molecule-section > .molecule-step__body {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}

.molecule-step > .molecule-step__body {
  -ms-grid-row: 3;
  -ms-grid-column: 4;
}

.organism-feature-detail__container > .molecule-step__body {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

.molecule-tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 1px solid var(--color-mono-7);
}

.molecule-tab-list--fixed {
  position: fixed;
  top: 80px;
  right: 0;
  left: 0;
  z-index: 1;
  background: var(--color-mono-c);
}

.molecule-tab-list--fixed + .js-observed-contents {
  padding-top: 50px;
}

.molecule-tab-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.molecule-tab-list__link {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px 30px;
  font-size: 16px;
  color: var(--color-mono-1);
  border-bottom: 2px solid transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.molecule-tab-list__link:hover, .molecule-tab-list__link:active {
  color: var(--color-crevo-red);
  border-color: var(--color-crevo-red);
}

.molecule-terms-date-list__item {
  font-size: 14px;
  color: var(--color-mono-1);
}

.molecule-terms-date-list__item + .molecule-terms-date-list__item {
  margin-top: 10px;
}

.molecule-trouble {
  position: relative;
  padding: 55px 45px 45px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
}

.molecule-trouble--trouble {
  color: var(--color-mono-2);
  border: 1px dashed var(--color-mono-4);
}

.molecule-trouble--trouble .molecule-trouble__title {
  background-color: var(--color-mono-2);
}

.molecule-trouble--trouble .fake-checkbox {
  background: var(--color-mono-7);
}

.molecule-trouble--result {
  color: var(--color-crevo-red);
  border: 1px solid var(--color-crevo-red);
}

.molecule-trouble--result .molecule-trouble__title {
  background-color: var(--color-crevo-red);
}

.molecule-trouble--result .fake-checkbox {
  background-color: #fdd5d8;
  background-image: url(../img/crevo_jp/check-white-88277ea781e3638f80e78800af9ab73447015815263639ee35c22b06d948cf9c.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.molecule-trouble__title {
  position: absolute;
  top: -18px;
  left: 20px;
  padding: 0 15px;
  font-size: 16px;
  font-weight: bold;
  line-height: 35px;
  color: var(--color-mono-c);
  border-radius: 5px;
}

.molecule-trouble__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
}

.molecule-trouble__list-item + .molecule-trouble__list-item {
  margin-top: 20px;
}

.molecule-trouble .fake-checkbox {
  position: relative;
  display: block;
  min-width: 20px;
  min-height: 20px;
  margin-right: 10px;
}

.molecule-usage-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 12px 12px 12px;
  -ms-grid-columns: 36px 8px 1fr 6px;
  grid-template: "icon  .   title   ." 12px "icon  .   title arrow" 12px "icon  .   title   ." 12px/36px 8px 1fr 6px;
}

.molecule-usage-item:hover .molecule-usage-item__title {
  text-decoration: underline;
}

.molecule-usage-item > * {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
}

.molecule-usage-item__icon {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: icon;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: cover;";
  border-radius: 5px;
}

.molecule-usage-item__title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  grid-area: title;
  align-self: center;
  width: 100%;
  font-size: 13px;
  color: var(--color-mono-2);
  text-align: left;
}

.molecule-article-header > .molecule-usage-item__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
}

.molecule-article-header--interview > .molecule-usage-item__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-footer-nav-category > .molecule-usage-item__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-footer-nav-category--2-column > .molecule-usage-item__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-news-item > .molecule-usage-item__title {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
}

.molecule-philosophy > .molecule-usage-item__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-project-article-header > .molecule-usage-item__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-section > .molecule-usage-item__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-service-genre > .molecule-usage-item__title {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

.molecule-step > .molecule-usage-item__title {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

.molecule-usage-item > .molecule-usage-item__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
}

.organism-feature-detail__container > .molecule-usage-item__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

.organism-hero-section__container > .molecule-usage-item__title {
  -ms-grid-row: 5;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.organism-interview-card__link > .molecule-usage-item__title {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

.molecule-usage-item__arrow {
  -ms-grid-row: 2;
  -ms-grid-column: 4;
  display: inline-block;
  grid-area: arrow;
  width: 100%;
  height: 100%;
  background-image: url(../img/root/right-arrow-mini-09cd81c2d6de9c57ee8a74972be9a294e8928a19390c43fbe1981005065b215c.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.molecule-use-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.molecule-use-card:hover .molecule-use-card__image {
  opacity: 0.9;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.molecule-use-card__icon {
  position: absolute;
  top: -8px;
  left: -12px;
  z-index: 1;
  width: 116px;
  height: 116px;
}

@media (max-width: 768px) {
  .molecule-use-card__icon {
    display: none;
    visibility: hidden;
  }
}
@media (max-width: 1024px) {
  .molecule-use-card__icon {
    top: -38px;
    left: -25px;
    z-index: 1;
    max-width: initial;
  }
}
.molecule-use-card__image-crop {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr auto 1fr;
  grid-template-rows: 1fr auto 1fr;
  -ms-grid-columns: 1fr auto 1fr;
  grid-template-columns: 1fr auto 1fr;
  overflow: hidden;
}

.molecule-use-card__image {
  z-index: 0;
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  grid-row: 1/4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  width: 100%;
  height: auto;
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.molecule-use-card__title {
  z-index: 1;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 2;
  grid-column: 2;
  font-size: 26px;
  font-weight: bold;
  line-height: 48px;
  color: var(--color-mono-c);
  border-bottom: 2px solid var(--color-mono-c);
}

.molecule-use-card__description {
  padding: 20px 24px;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: 1.8;
  letter-spacing: 0.4px;
  background-color: var(--color-mono-a);
}

@media (max-width: 480px) {
  .molecule-use-card__description {
    padding: 18px;
    letter-spacing: 0;
  }
}
.molecule-vs-card {
  cursor: pointer;
  border: solid 1px var(--color-mono-6);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.molecule-vs-card:hover {
  border-color: var(--color-mono-3);
}

.molecule-vs-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 18px 20px;
}

.molecule-vs-card__link:hover, .molecule-vs-card__link:active, .molecule-vs-card__link:focus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 18px 20px;
}

.molecule-vs-card__thumbnail {
  width: 90px;
  height: 60px;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.molecule-vs-card__title {
  width: 180px;
  margin-left: 16px;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  word-break: break-word;
}

.molecule-vs-card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.molecule-vs-card-list__item:nth-of-type(2) {
  margin: 0 20px;
}

.organism-company-info {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 28px auto 10px 1fr 28px;
  -ms-grid-columns: 28px 300px 1fr 28px;
  grid-template: ".   .     .  ." 28px ". image name ." auto ". image   .  ." 10px ". image desc ." 1fr ".   .     .  ." 28px/28px 300px 1fr 28px;
  color: var(--color-mono-1);
  background-color: var(--color-mono-b);
}

@media (max-width: 768px) {
  .organism-company-info {
    -ms-grid-rows: 28px auto auto 10px 1fr 28px;
    -ms-grid-columns: 28px 1fr 28px;
    grid-template: ".   .   ." 28px ". image ." auto ". name ." auto ".   .   ." 10px ". desc ." 1fr ".   .  ." 28px/28px 1fr 28px;
  }
  .organism-company-info > .molecule-service-genre__image {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
  .organism-company-info > .molecule-step__image {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
}
.organism-company-info--without-image {
  -ms-grid-rows: 28px auto 10px 1fr 28px;
  -ms-grid-columns: 28px 1fr 28px;
  grid-template: ".   .  ." 28px ". name ." auto ".   .  ." 10px ". desc ." 1fr ".   .  ." 28px/28px 1fr 28px;
}

@media (max-width: 768px) {
  .organism-company-info--without-image {
    -ms-grid-rows: 28px auto 10px 1fr 28px;
    -ms-grid-columns: 28px 1fr 28px;
    grid-template: ".   .   ." 28px ". name ." auto ".   .   ." 10px ". desc ." 1fr ".   .  ." 28px/28px 1fr 28px;
  }
}
.organism-company-info__image {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: image;
  -ms-grid-row-align: center;
  align-self: center;
  width: 100%;
  height: auto;
  padding-right: 20px;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
}

.molecule-step > .organism-company-info__image {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

.organism-company-info > .organism-company-info__image {
  -ms-grid-row: 2;
  -ms-grid-row-span: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

.organism-interview-card__link > .organism-company-info__image {
  -ms-grid-row: 2;
  -ms-grid-row-span: 4;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

@media (max-width: 768px) {
  .organism-company-info__image {
    padding: 0;
    margin-bottom: 28px;
  }
}
.organism-company-info__name {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
  display: block;
  grid-area: name;
  font-size: 14px;
  font-weight: bold;
}

.organism-company-info--without-image > .organism-company-info__name {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}

.organism-company-info__description {
  -ms-grid-row: 4;
  -ms-grid-column: 3;
  display: block;
  grid-area: desc;
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: normal;
}

.organism-company-info--without-image > .organism-company-info__description {
  -ms-grid-row: 4;
  -ms-grid-column: 2;
}

.organism-contact-section {
  display: block;
  background-position: top;
  background-size: cover;
}

.organism-contact-section__container {
  padding: 80px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .organism-contact-section__container {
    padding: 40px 0;
  }
}
.organism-contact-section__title {
  margin: 0;
  font-size: 24px;
  font-weight: normal;
  line-height: 1.85;
  color: var(--color-mono-c);
  text-align: center;
  letter-spacing: normal;
}

@media (max-width: 768px) {
  .organism-contact-section__title {
    font-size: 18px;
    line-height: 1.78;
  }
}
.organism-contact-section__buttons {
  margin: 30px auto;
}

@media (max-width: 480px) {
  .organism-contact-section .molecule-contact-tel__icon {
    width: 12px;
  }
}
@media (max-width: 768px) {
  .organism-contact-section .molecule-contact-tel__num a {
    font-size: 15px;
    letter-spacing: normal;
  }
}
@media (max-width: 768px) {
  .organism-contact-section .molecule-contact-tel__hours {
    font-size: 12px;
    letter-spacing: normal;
  }
}
.organism-feature-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.organism-feature-detail__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 15px auto;
  -ms-grid-columns: auto 1fr;
  grid-template: "title title" auto ". ." 15px "body body" auto/auto 1fr;
}

.organism-feature-detail__title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: title;
  font-size: 20px;
  font-weight: bold;
  line-height: 2;
  color: var(--color-mono-2);
  letter-spacing: 0.8px;
}

.molecule-article-header > .organism-feature-detail__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
}

.molecule-article-header--interview > .organism-feature-detail__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-footer-nav-category > .organism-feature-detail__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-footer-nav-category--2-column > .organism-feature-detail__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-news-item > .organism-feature-detail__title {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
}

.molecule-philosophy > .organism-feature-detail__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-project-article-header > .organism-feature-detail__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-section > .organism-feature-detail__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-service-genre > .organism-feature-detail__title {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

.molecule-step > .organism-feature-detail__title {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

.molecule-usage-item > .organism-feature-detail__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
}

.organism-feature-detail__container > .organism-feature-detail__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

.organism-hero-section__container > .organism-feature-detail__title {
  -ms-grid-row: 5;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.organism-interview-card__link > .organism-feature-detail__title {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

.organism-feature-detail__body {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: body;
  font-size: 15px;
  line-height: 28px;
}

.molecule-about-service > .organism-feature-detail__body {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

.molecule-philosophy > .organism-feature-detail__body {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}

.molecule-section > .organism-feature-detail__body {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}

.molecule-step > .organism-feature-detail__body {
  -ms-grid-row: 3;
  -ms-grid-column: 4;
}

.organism-feature-detail__container > .organism-feature-detail__body {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

.organism-feature-detail__image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 300px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
}

.organism-footer {
  background: var(--color-crevo-gray);
}

.organism-footer__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 70px 0 auto 0 60px 0 auto 0 70px;
  -ms-grid-columns: 120px 70px 1fr 70px auto;
  grid-template: "  .     .     .  " 70px "info    .    nav " auto "  .     .     .  " 60px "logos logos logos" auto "  .     .     .  " 70px/120px 1fr auto;
  gap: 0 70px;
}

.organism-footer__container > * {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

@media (max-width: 1024px) {
  .organism-footer__container {
    -ms-grid-rows: 60px 0 auto 0 60px 0 auto 0 60px 0 auto 0 60px;
    -ms-grid-columns: 1fr 0 120px 0 1fr;
    grid-template: ". . ." 60px ". info ." auto ". . .  " 60px "nav nav nav" auto ". . ." 60px "logos logos logos" auto ". . ." 60px/1fr 120px 1fr;
    gap: 0;
  }
  .organism-footer__container > * {
    -ms-grid-column-align: center;
    justify-self: center;
  }
  .organism-footer__container > .molecule-header-bottom__nav {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
  }
}
@media (max-width: 480px) {
  .organism-footer__container {
    -ms-grid-rows: 50px auto 50px auto 40px auto 40px;
    -ms-grid-columns: 1fr 120px 1fr;
    grid-template: ". . ." 50px ". info ." auto ". . ." 50px "nav nav nav" auto ". . ." 40px "logos logos logos" auto ". . ." 40px/1fr 120px 1fr;
  }
  .organism-footer__container > .molecule-header-bottom__nav {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}
.organism-footer__company-info {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: info;
}

.organism-footer__container--before-service-opened > .organism-footer__company-info {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.organism-footer__company-info__copy {
  margin-top: 10px;
  font-family: var(--font-family-alphanumeric);
  font-size: 11px;
  color: var(--color-mono-4);
  text-align: center;
  letter-spacing: normal;
}

.organism-footer__nav {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-area: nav;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.organism-footer__container > .organism-footer__nav {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}

.organism-footer__container--before-service-opened > .organism-footer__nav {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
}

@media (max-width: 1024px) {
  .organism-footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .organism-footer__nav__item.show--pc {
    display: none;
  }
}
.organism-footer__nav__item.show--mobile {
  left: -20px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: calc(100% + 40px);
  border-top: 1px solid #5b616c;
  border-bottom: 1px solid #5b616c;
}

@media (max-width: 1024px) {
  .organism-footer__nav__item.show--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.organism-footer__nav__item.show--mobile + .show--mobile {
  border-top: none;
}

.organism-footer__logos {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-area: logos;
}

.organism-footer__container--before-service-opened > .organism-footer__logos {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
}

@media (max-width: 1024px) {
  .organism-footer__logos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.organism-footer__logos__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: calc((100% - 60px) / 4);
  opacity: 0.9;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1024px) {
  .organism-footer__logos__logo {
    width: 100%;
    max-width: 300px;
  }
}
.organism-footer__logos__logo:hover {
  opacity: 1;
}

.organism-footer__logos__logo + .organism-footer__logos__logo {
  margin: 0;
}

@media (max-width: 1024px) {
  .organism-footer__logos__logo + .organism-footer__logos__logo {
    margin-top: 16px;
  }
}
.organism-footer__logos__logo__image {
  height: 60px;
  width: 100%;
  padding: 20px;
  background: var(--color-mono-c);
}

@media (max-width: 1024px) {
  .organism-footer__logos__logo__image {
    height: 80px;
    padding: 26px 20px;
  }
}
.organism-footer__logos__logo__image--higher {
  padding: 16px 20px;
}

.organism-footer__logos__logo__title {
  color: var(--color-mono-4);
  font-size: 12px;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .organism-footer .molecule-nav-category-item__link:before {
    margin: 0 8px 0 14px;
  }
}
.organism-footer .molecule-footer-nav-category.open .molecule-footer-nav-category__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.organism-footer .molecule-footer-nav-category.open .u-dropdown__menu-btn:after {
  content: url(../img/crevo_jp/minus-cac4acf7f69fadaca7d5ca69ab411b9c594ae3dd7c1a18630065d4cab6f58df8.svg);
}

.organism-footer .molecule-footer-nav-category + .molecule-footer-nav-category {
  margin-left: 100px;
}

@media (max-width: 1024px) {
  .organism-footer .molecule-footer-nav-category + .molecule-footer-nav-category {
    margin-left: 0px;
  }
}
@media (max-width: 1024px) {
  .organism-footer .molecule-footer-nav-category__title {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}
@media (max-width: 1024px) {
  .organism-footer .molecule-footer-nav-category__list {
    display: none;
    margin-top: 0;
    border-top: 1px solid #2c3036;
  }
}
.organism-footer .u-dropdown__menu {
  position: relative;
  padding: 0;
  background-color: #363a41;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.organism-footer .u-dropdown__menu-btn {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 60px;
}

.organism-footer .u-dropdown__menu-btn:after {
  float: right;
  margin-top: 4px;
  content: url(../img/crevo_jp/plus-9d6de21e972a870d7428df1b514fca66ba88a6cf87ac0055f3263e1e9143f8ad.svg);
  opacity: 0.3;
}

.organism-footer .u-dropdown__menu-item {
  min-height: 60px;
  margin: 0;
  border-bottom: 1px solid #2c3036;
}

.organism-footer .u-dropdown__menu-item:last-of-type {
  border: none;
}

.organism-footer .u-dropdown__menu-item__body {
  padding: 0;
  font-size: 15px;
  color: var(--color-mono-c);
  border-radius: 0;
}

.organism-footer .u-dropdown__menu-item__body:hover {
  background-color: var(--color-mono-2);
}

.organism-footer__container--before-service-opened {
  -ms-grid-rows: 70px 0 auto 0 70px;
  -ms-grid-columns: 120px 70px 1fr 70px 300px;
  grid-template: " .    .    .  " 70px "info nav logos" auto " .    .    .  " 70px/120px 1fr 300px;
  gap: 0 70px;
}

@media (max-width: 1024px) {
  .organism-footer__container--before-service-opened {
    -ms-grid-rows: 60px 0 auto 0 60px 0 auto 0 60px 0 auto 0 60px;
    -ms-grid-columns: 1fr 0 120px 0 1fr;
    grid-template: ". . ." 60px ". info ." auto ". . .  " 60px "nav nav nav" auto ". . ." 60px "logos logos logos" auto ". . ." 60px/1fr 120px 1fr;
    gap: 0;
  }
  .organism-footer__container--before-service-opened > * {
    -ms-grid-column-align: center;
    justify-self: center;
  }
  .organism-footer__container--before-service-opened > .molecule-header-bottom__nav {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
  }
  .organism-footer__container--before-service-opened > .organism-footer__company-info {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .organism-footer__container--before-service-opened > .organism-footer__nav {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
  }
  .organism-footer__container--before-service-opened > .organism-footer__logos {
    -ms-grid-row: 11;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
  }
}
.organism-footer__container--before-service-opened .molecule-footer-nav-category + .molecule-footer-nav-category {
  margin-left: 0px;
}

.organism-footer__container--before-service-opened .organism-footer__logos {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.organism-footer__container--before-service-opened .organism-footer__logos__logo {
  width: 100%;
}

.organism-footer__container--before-service-opened .organism-footer__logos__logo + .organism-footer__logos__logo {
  margin-top: 20px;
}

.organism-footer__container--before-service-opened .organism-footer__logos__logo__image {
  height: 80px;
  padding: 0;
}

.organism-header {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr;
  -ms-grid-columns: 1fr;
  grid-template: "top" auto "bottom" 1fr/1fr;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

@media (min-width: 769px) {
  .organism-header.hide-top {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@media (max-width: 768px) {
  .organism-header {
    max-height: 81px;
    overflow: hidden;
  }
  .organism-header.open {
    max-height: 100%;
  }
}
.organism-header__top {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: top;
}

@media (max-width: 768px) {
  .organism-header__top {
    display: none;
  }
}
.organism-header__bottom {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: bottom;
  background-color: #fff;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

@media (max-width: 768px) {
  .organism-header__bottom {
    height: 100vh;
    background: var(--color-mono-c);
  }
}
@media (min-width: 769px) {
  .organism-header__bottom--white {
    background-color: transparent;
  }
  .organism-header__bottom--white .molecule-header-bottom__brand-logo__image {
    left: 0px;
  }
  .organism-header__bottom--white .molecule-nav-link-list__item, .organism-header__bottom--white .molecule-nav-link-list .u-dropdown__menu-btn {
    color: rgba(255, 255, 255, 0.8);
  }
  .organism-header__bottom--white .molecule-nav-link-list__item:hover, .organism-header__bottom--white .molecule-nav-link-list .u-dropdown__menu-btn:hover {
    color: var(--color-mono-c);
  }
  .organism-header__bottom--white .molecule-contact__phone-icon {
    color: var(--color-mono-c);
  }
  .organism-header__bottom--white .molecule-contact__tel {
    color: var(--color-mono-c);
  }
  .organism-header__bottom--white .molecule-contact__tel__business-day {
    color: var(--color-mono-c);
  }
  .organism-header__bottom--white .molecule-contact .atom-button {
    background: transparent;
    border-color: var(--color-mono-c);
    opacity: 0.7;
  }
  .organism-header__bottom--white .molecule-contact .atom-button:hover {
    color: black;
    background-color: var(--color-mono-c);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .organism-header .molecule-header-bottom__container {
    -ms-grid-rows: 25px 0 30px 0 25px 0 minmax(0, 1fr) 0 25px;
    -ms-grid-columns: 5px 0 124px 0 30px 0 1fr;
    grid-template: ". . . ." 25px ". brand-logo . menu" 30px ". . . ." 25px ". nav nav nav" minmax(0, 1fr) ". . . ." 25px/5px 124px 30px 1fr;
    gap: 0;
    height: 100%;
  }
  .organism-header .molecule-header-bottom__container:after {
    position: absolute;
    top: 80px;
    left: -20px;
    display: block;
    width: calc(100% + 40px);
    content: "";
    border-top: 1px solid var(--color-mono-8);
  }
  .organism-header .molecule-header-bottom__container > .molecule-header-bottom__brand-logo {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .molecule-header-bottom__menu-button {
    -ms-grid-row: 3;
    -ms-grid-column: 7;
  }
  .organism-header .molecule-header-bottom__container > .molecule-header-bottom__nav {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
    -ms-grid-column-span: 5;
  }
  .organism-header .molecule-header-bottom__container > .organism-footer__nav {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
    -ms-grid-column-span: 5;
  }
}
@media (min-width: 769px) {
  .organism-header .molecule-header-bottom__menu-button {
    display: none;
  }
}
@media (max-width: 768px) {
  .organism-header .molecule-header-bottom__nav {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
  }
}
@media (max-width: 768px) {
  .organism-header .molecule-header-bottom__contact.show--pc {
    display: none;
  }
}
.organism-header .molecule-header-bottom__contact.show--mobile {
  display: none;
}

@media (max-width: 768px) {
  .organism-header .molecule-header-bottom__contact.show--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
}
.organism-hero-section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  background-image: url(../img/crevo_jp/pattern_dot_2x2-f45a798f4b1090071835e23caa995788069ec29f6b00e8045a9396af0495028f.png);
  background-size: 2px 2px;
}

.organism-hero-section:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url(../img/crevo_jp/main-img-static-ac611b534793cd2409138053ed92fe13eea5a713926ee4fa241a0d6747894d7b.png);
  background-position: center;
  background-size: cover;
  background-blend-mode: color;
}

.organism-hero-section__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 20px 20px 20px auto 20px auto 20px 5px 20px auto 20px 1fr;
  -ms-grid-columns: 1fr;
  grid-template: "." 1fr "." 20px "title" auto "sub" auto "." 5px "buttons" auto "." 1fr/1fr;
  gap: 20px 0;
}

@media (max-width: 480px) {
  .organism-hero-section__container {
    gap: 10px 0;
  }
}
.organism-hero-section__title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: title;
  font-size: 40px;
  font-weight: normal;
  line-height: 1.5;
  color: var(--color-mono-c);
  letter-spacing: 0;
}

.molecule-article-header > .organism-hero-section__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
}

.molecule-article-header--interview > .organism-hero-section__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-footer-nav-category > .organism-hero-section__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-footer-nav-category--2-column > .organism-hero-section__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-news-item > .organism-hero-section__title {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
}

.molecule-philosophy > .organism-hero-section__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-project-article-header > .organism-hero-section__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-section > .organism-hero-section__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-service-genre > .organism-hero-section__title {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

.molecule-step > .organism-hero-section__title {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

.molecule-usage-item > .organism-hero-section__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
}

.organism-feature-detail__container > .organism-hero-section__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

.organism-hero-section__container > .organism-hero-section__title {
  -ms-grid-row: 5;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.organism-interview-card__link > .organism-hero-section__title {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

@media (max-width: 480px) {
  .organism-hero-section__title {
    font-size: 28px;
    font-weight: bolder;
    line-height: 1.6;
  }
}
.organism-hero-section__sub {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: sub;
  font-size: 18px;
  line-height: 2;
  color: var(--color-mono-c);
  text-align: center;
  letter-spacing: 0.05em;
}

.molecule-article-header--interview > .organism-hero-section__sub {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.molecule-section > .organism-hero-section__sub {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.organism-hero-section__container > .organism-hero-section__sub {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
}

@media (max-width: 480px) {
  .organism-hero-section__sub {
    font-size: 16px;
  }
}
.organism-hero-section__buttons {
  -ms-grid-row: 11;
  -ms-grid-column: 1;
  grid-area: buttons;
}

.organism-hero-section__buttons .molecule-contact-buttons__button {
  min-width: 260px;
}

@media (max-width: 768px) {
  .organism-hero-section__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .organism-hero-section__buttons .molecule-contact-buttons__button + .molecule-contact-buttons__button {
    margin: 15px 0 0 0;
  }
}
@media (max-width: 480px) {
  .organism-hero-section__buttons .molecule-contact-buttons__button {
    width: 100%;
  }
}
.organism-inquiry-footer {
  background: var(--color-mono-2);
}

.organism-inquiry-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.organism-inquiry-footer__copyright {
  font-family: var(--font-family-alphanumeric);
  font-size: 11px;
  color: var(--color-mono-4);
}

.organism-inquiry-header {
  height: 100%;
}

.organism-inquiry-header__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr auto 1fr;
  -ms-grid-columns: 124px 20px 1fr 20px auto;
  grid-template: " .   .   .   .    .   " 1fr "logo . catch . contact" auto " .   .   .   .    .   " 1fr/124px 20px 1fr 20px auto;
  height: 100%;
}

.organism-inquiry-header__container > * {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

@media (max-width: 768px) {
  .organism-inquiry-header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.organism-inquiry-header__brand-logo {
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  -ms-grid-column: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  grid-area: logo;
  width: 100%;
  height: 30px;
  background-image: url(../img/logo/crevo_basic_horizontal-363fe32963e199b560d7ec6e803ba3c01e7e04213d08d546133648ff6a3f26f7.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media (max-width: 768px) {
  .organism-inquiry-header__brand-logo {
    width: 124px;
  }
}
.organism-inquiry-header__catch {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
  display: inline-block;
  grid-area: catch;
  font-size: 13px;
  font-weight: normal;
  color: var(--color-mono-1);
}

@media (max-width: 768px) {
  .organism-inquiry-header__catch {
    display: none;
  }
}
.organism-inquiry-header__contact {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
  grid-area: contact;
}

.organism-inquiry-header__container > .organism-inquiry-header__contact {
  -ms-grid-row: 2;
  -ms-grid-column: 5;
}

@media (max-width: 1024px) {
  .organism-footer__company-info {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .organism-footer__container > .organism-footer__nav {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
  }
  .organism-footer__logos {
    -ms-grid-row: 11;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
  }
}
@media (max-width: 480px) {
  .organism-footer__company-info {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .organism-footer__container > .organism-footer__nav {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .organism-footer__logos {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}
@media (max-width: 768px) {
  .organism-inquiry-header__contact {
    display: none;
  }
}
.organism-interview-article {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 50px auto 50px auto 50px auto 80px auto 60px auto 60px auto;
  grid-template-rows: auto 50px auto 50px auto 50px auto 80px auto 60px auto 60px auto;
}

.organism-interview-article__header {
  -ms-grid-row: 1;
  grid-row: 1;
}

.organism-interview-article__hero {
  -ms-grid-row: 3;
  grid-row: 3;
  width: 100%;
  height: auto;
}

.organism-interview-article__introduction {
  -ms-grid-row: 5;
  grid-row: 5;
  font-size: 16px;
  font-weight: normal;
  line-height: 2;
  color: var(--color-mono-1);
  letter-spacing: normal;
}

.organism-interview-article__trouble {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 7;
  grid-row: 7;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .organism-interview-article__trouble {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.organism-interview-article__trouble .molecule-trouble {
  width: calc((100% - 80px) / 2);
}

@media (max-width: 768px) {
  .organism-interview-article__trouble .molecule-trouble {
    width: 100%;
    padding: 40px 20px 20px;
  }
}
.organism-interview-article__trouble-arrow {
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 20px solid var(--color-mono-2);
}

@media (max-width: 768px) {
  .organism-interview-article__trouble-arrow {
    margin: 14px 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
.organism-interview-article__body {
  -ms-grid-row: 9;
  grid-row: 9;
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-mono-1);
}

@media (max-width: 768px) {
  .organism-interview-article__body {
    padding: 0;
    border: none;
  }
}
.organism-interview-article__body h2 {
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: normal;
  border-bottom: 1px solid var(--color-mono-2);
}

.organism-interview-article__body p {
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: normal;
  line-height: 2;
  color: var(--color-mono-1);
  letter-spacing: normal;
}

.organism-interview-article__body a {
  color: var(--color-text-link);
}

.organism-interview-article__body img, .organism-interview-article__body iframe {
  display: block;
  max-width: 100%;
  height: auto !important;
  margin: 30px auto;
}

.organism-interview-article__body iframe {
  width: 100%;
  max-width: 800px;
  min-height: 450px;
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .organism-interview-article__body iframe {
    min-height: 200px;
  }
}
.organism-interview-article__info {
  -ms-grid-row: 11;
  grid-row: 11;
}

.organism-interview-article__more {
  -ms-grid-row: 13;
  grid-row: 13;
  -ms-grid-column-align: center;
  justify-self: center;
}

@media (max-width: 480px) {
  .organism-interview-article__more {
    width: 100%;
  }
}
.organism-interview-card {
  background: var(--color-mono-c);
  border-radius: 5px;
  -webkit-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.organism-interview-card:hover {
  -webkit-box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.1);
}

.organism-interview-card__link {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 40px auto 10px auto 1fr 40px;
  -ms-grid-columns: 40px 288px 40px 1fr 40px;
  grid-template: ".    .    .    .    ." 40px ".  image  .  title  ." auto ".  image  .    .    ." 10px ".  image  . company ." auto ".  image  .  tags   ." 1fr ".    .    .    .    ." 40px/40px 288px 40px 1fr 40px;
}

@media (max-width: 768px) {
  .organism-interview-card__link {
    -ms-grid-rows: 190px 15px auto 10px auto 20px 1fr 20px;
    -ms-grid-columns: 18px 1fr 18px;
    grid-template: "image image image" 190px ".       .      . " 15px ".     title    . " auto ".       .      . " 10px ".     company  . " auto ".       .      . " 20px ".     tags    .  " 1fr ".       .      . " 20px/18px 1fr 18px;
  }
  .organism-interview-card__link > .molecule-about-service__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
  .organism-interview-card__link > .molecule-article-header__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
  .organism-interview-card__link > .molecule-article-header__tags {
    -ms-grid-row: 7;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
  .organism-interview-card__link > .molecule-footer-nav-category__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
  .organism-interview-card__link > .molecule-news-item__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
  .organism-interview-card__link > .molecule-philosophy__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
  .organism-interview-card__link > .molecule-project-article-header__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
  .organism-interview-card__link > .molecule-section__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
  .organism-interview-card__link > .molecule-service-genre__image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .organism-interview-card__link > .molecule-service-genre__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
  .organism-interview-card__link > .molecule-step__image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .organism-interview-card__link > .molecule-step__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
  .organism-interview-card__link > .molecule-usage-item__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
  .organism-interview-card__link > .organism-company-info__image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .organism-interview-card__link > .organism-feature-detail__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
  .organism-interview-card__link > .organism-hero-section__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
}
.organism-interview-card__image {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: image;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.molecule-step > .organism-interview-card__image {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

.organism-company-info > .organism-interview-card__image {
  -ms-grid-row: 2;
  -ms-grid-row-span: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

.organism-interview-card__link > .organism-interview-card__image {
  -ms-grid-row: 2;
  -ms-grid-row-span: 4;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

@media (max-width: 768px) {
  .organism-interview-card__image {
    height: 100%;
  }
}
.organism-interview-card__title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: title;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text-link);
}

.molecule-article-header > .organism-interview-card__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
}

.molecule-article-header--interview > .organism-interview-card__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-footer-nav-category > .organism-interview-card__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-footer-nav-category--2-column > .organism-interview-card__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-news-item > .organism-interview-card__title {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
}

.molecule-philosophy > .organism-interview-card__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-project-article-header > .organism-interview-card__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.molecule-section > .organism-interview-card__title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.molecule-service-genre > .organism-interview-card__title {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

.molecule-step > .organism-interview-card__title {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

.molecule-usage-item > .organism-interview-card__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
}

.organism-feature-detail__container > .organism-interview-card__title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

.organism-hero-section__container > .organism-interview-card__title {
  -ms-grid-row: 5;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

.organism-interview-card__link > .organism-interview-card__title {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

.organism-interview-card__company {
  -ms-grid-row: 4;
  -ms-grid-column: 4;
  display: block;
  grid-area: company;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.3;
  color: var(--color-mono-2);
}

.organism-interview-card__tags {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  grid-area: tags;
}

.molecule-article-header--interview > .organism-interview-card__tags {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}

.organism-interview-card__link > .organism-interview-card__tags {
  -ms-grid-row: 5;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
}

@media (max-width: 768px) {
  .molecule-article-header > .molecule-article-header__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .molecule-article-header--interview > .molecule-article-header__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-article-header__sub-title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .molecule-article-header--interview > .molecule-article-header__sub-title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .molecule-article-header__tags {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .molecule-article-header--interview > .molecule-article-header__tags {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-article-header__share-list {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .molecule-article-header--interview > .molecule-article-header__share-list {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-article-header > .molecule-footer-nav-category__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .molecule-article-header--interview > .molecule-footer-nav-category__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-article-header > .molecule-news-item__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .molecule-article-header--interview > .molecule-news-item__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-article-header > .molecule-philosophy__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .molecule-article-header--interview > .molecule-philosophy__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-article-header > .molecule-project-article-header__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .molecule-article-header--interview > .molecule-project-article-header__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-project-article-header > .molecule-project-article-header__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-project-article-header__sub-title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .molecule-project-article-header__share-list {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .molecule-article-header--interview > .molecule-project-article-header__share-list {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-project-article-header > .molecule-project-article-header__share-list {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-article-header > .molecule-section__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .molecule-article-header--interview > .molecule-section__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-project-article-header > .molecule-section__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-section > .molecule-section__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-section__sub {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .molecule-article-header--interview > .molecule-section__sub {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .molecule-section > .molecule-section__sub {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .molecule-section > .molecule-section__body {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .molecule-section__more {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
  }
  .molecule-article-header > .molecule-service-genre__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .molecule-article-header--interview > .molecule-service-genre__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-project-article-header > .molecule-service-genre__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-section > .molecule-service-genre__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-article-header > .molecule-step__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .molecule-article-header--interview > .molecule-step__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-project-article-header > .molecule-step__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-section > .molecule-step__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-section > .molecule-step__body {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .molecule-article-header > .molecule-usage-item__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .molecule-article-header--interview > .molecule-usage-item__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-project-article-header > .molecule-usage-item__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-section > .molecule-usage-item__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .organism-company-info > .organism-company-info__image {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
  .organism-company-info__name {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
  .organism-company-info--without-image > .organism-company-info__name {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .organism-company-info__description {
    -ms-grid-row: 5;
    -ms-grid-column: 2;
  }
  .organism-company-info--without-image > .organism-company-info__description {
    -ms-grid-row: 4;
    -ms-grid-column: 2;
  }
  .molecule-article-header > .organism-feature-detail__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .molecule-article-header--interview > .organism-feature-detail__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-project-article-header > .organism-feature-detail__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-section > .organism-feature-detail__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-section > .organism-feature-detail__body {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .molecule-article-header > .organism-hero-section__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .molecule-article-header--interview > .organism-hero-section__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-project-article-header > .organism-hero-section__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-section > .organism-hero-section__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .organism-hero-section__sub {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .molecule-article-header--interview > .organism-hero-section__sub {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .molecule-section > .organism-hero-section__sub {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .organism-company-info > .organism-interview-card__image {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
  .organism-interview-card__link > .organism-interview-card__image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .molecule-article-header > .organism-interview-card__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .molecule-article-header--interview > .organism-interview-card__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-project-article-header > .organism-interview-card__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .molecule-section > .organism-interview-card__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .organism-interview-card__link > .organism-interview-card__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
  .organism-interview-card__company {
    -ms-grid-row: 5;
    -ms-grid-column: 2;
  }
  .organism-interview-card__tags {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .molecule-article-header--interview > .organism-interview-card__tags {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .organism-interview-card__link > .organism-interview-card__tags {
    -ms-grid-row: 7;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
}
@media (max-width: 768px) {
  .organism-interview-card__tags {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.organism-interview-card__tags .atom-project-tag {
  -ms-flex-item-align: end;
  align-self: flex-end;
  pointer-events: none;
}

@media (max-width: 768px) {
  .organism-interview-card__tags .atom-project-tag {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}
.organism-interview-card__tags .atom-project-tag + .atom-project-tag {
  margin-left: 4px;
}

@media (max-width: 768px) {
  .organism-interview-card__tags .atom-project-tag + .atom-project-tag {
    margin: 4px 0 0 0;
  }
}
.organism-news-article {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 40px auto 50px auto 60px auto;
  grid-template-rows: auto 40px auto 50px auto 60px auto;
}

.organism-news-article__header {
  -ms-grid-row: 1;
  grid-row: 1;
}

.organism-news-article__body a, .organism-news-article__signature a {
  color: var(--color-text-link);
  word-break: break-all;
}

.organism-news-article__body img, .organism-news-article__body iframe, .organism-news-article__signature img, .organism-news-article__signature iframe {
  display: block;
  max-width: 100%;
  height: auto !important;
  margin: 30px auto;
}

.organism-news-article__body iframe, .organism-news-article__signature iframe {
  width: 100%;
  max-width: 800px;
  min-height: 450px;
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .organism-news-article__body iframe, .organism-news-article__signature iframe {
    min-height: 200px;
  }
}
.organism-news-article__body {
  -ms-grid-row: 3;
  grid-row: 3;
  padding-top: 40px;
  font-size: 16px;
  line-height: 1.88;
  border-top: 1px solid var(--color-mono-6);
}

@media (max-width: 768px) {
  .organism-news-article__body {
    padding: 0;
    border: none;
  }
}
.organism-news-article__signature {
  -ms-grid-row: 5;
  grid-row: 5;
  font-size: 14px;
  line-height: 1.88;
}

.organism-news-article__more {
  -ms-grid-row: 7;
  grid-row: 7;
  -ms-grid-column-align: center;
  justify-self: center;
}

@media (max-width: 480px) {
  .organism-news-article__more {
    width: 100%;
  }
}
.organism-news-article .download-pdf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color-text-link);
}

.organism-news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 768px) {
  .organism-news-list__item {
    padding: 14px 0;
    border-bottom: 1px solid var(--color-mono-6);
  }
  .organism-news-list__item:last-of-type {
    border-bottom: none;
  }
}
.organism-news-list__item + .organism-news-list__item {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .organism-news-list__item + .organism-news-list__item {
    margin: 0;
  }
}
@media (max-width: 480px) {
  .organism-news-list .molecule-news-item {
    gap: 4px;
  }
}
@media (min-width: 768px) {
  .organism-news-list .molecule-news-item__title {
    color: var(--color-mono-2);
  }
}
@media (max-width: 768px) {
  .organism-news-list .molecule-news-item__title {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1/4;
    align-self: flex-start;
    line-height: 1.6;
    color: var(--color-text-link);
  }
}
@media (max-width: 480px) {
  .organism-news-list .molecule-news-item__tag {
    padding: 4px;
  }
}
.organism-pankuzu {
  background: var(--color-mono-a);
}

.organism-pankuzu .atom-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 44px;
  grid-template-rows: 44px;
  width: 100%;
}

.organism-point-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.organism-point-detail__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media all and (-ms-high-contrast: none) {
  .organism-point-detail__container {
    width: 100%;
  }
}
.organism-point-detail__point-image {
  display: block;
  width: 80px;
  height: auto;
}

.organism-point-detail__title {
  margin: 10px auto 15px auto;
  font-size: 36px;
  font-weight: normal;
  line-height: 1.33;
  letter-spacing: 0.8px;
}

.organism-point-detail__body {
  font-size: 15px;
  line-height: 28px;
}

.organism-point-detail__image {
  width: 100%;
  max-width: 550px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
}

@media all and (-ms-high-contrast: none) {
  .organism-point-detail__image {
    width: auto;
  }
}
.organism-point-detail__image--wide {
  position: relative;
  right: -300px;
  width: auto;
  max-width: none;
  height: 500px;
  margin-left: -300px;
}

.organism-policy-section__title {
  font-size: 24px;
  font-weight: normal;
  line-height: 1.4;
  color: var(--color-mono-1);
}

.organism-policy-section__sub-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-mono-1);
}

.organism-policy-section__body > * {
  margin-top: 20px;
}

.organism-policy-section__terms-text {
  display: block;
  font-size: 14px;
  line-height: 2;
  color: var(--color-mono-1);
}

.organism-policy-section__terms-list {
  padding-left: 20px;
  margin-left: 20px;
  list-style: disc;
}

.organism-policy-section__terms-list--decimal {
  list-style: decimal;
}

.organism-policy-section__terms-list__item {
  font-size: 14px;
  line-height: 2;
  color: var(--color-mono-1);
}

.organism-policy-section__terms-list__item + .organism-policy-section__terms-list__item {
  margin-top: 10px;
}

.organism-policy-section__module-list .molecule-module-list__section + .molecule-module-list__section {
  margin-top: 20px;
}

.organism-policy-section__terms-table {
  width: 100%;
}

.organism-policy-section__terms-table + table.organism-policy-section__terms-table {
  margin-top: 60px;
}

.organism-policy-section__terms-table thead {
  background: var(--color-mono-9);
}

.organism-policy-section__terms-table thead th {
  font-size: 13px;
  font-weight: bold;
}

.organism-policy-section__terms-table tbody td {
  font-size: 14px;
  line-height: 1.4;
  border-bottom: 1px solid var(--color-mono-6);
}

.organism-policy-section__terms-table th, .organism-policy-section__terms-table td {
  padding: 10px;
}

.organism-price-project {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 50px auto 20px auto;
  -ms-grid-columns: 1fr;
  grid-template: "iframe" auto "client" 50px "purpose" auto "   .   " 20px "business" auto/1fr;
}

.organism-price-project__iframe-wrapper {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  position: relative;
  grid-area: iframe;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

@media all and (-ms-high-contrast: none) {
  .organism-price-project__iframe-wrapper {
    min-height: 300px;
  }
}
.organism-price-project__iframe-wrapper iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.organism-price-project__client-name {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: client;
  -ms-grid-row-align: center;
  align-self: center;
  font-size: 16px;
  font-weight: normal;
  color: var(--color-mono-1);
}

.organism-price-project__tag--purpose {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: purpose;
}

.organism-price-project__tag--business {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  grid-area: business;
}

.organism-price-project__tag__title {
  font-size: 12px;
  color: var(--color-mono-4);
}

.organism-price-project__tag .atom-project-tag {
  margin-top: 4px;
}

.organism-price-project-section {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 40px auto 50px auto 15px auto 50px auto;
  grid-template-rows: auto 40px auto 50px auto 15px auto 50px auto;
}

.organism-price-project-section__title {
  position: relative;
  -ms-grid-row: 1;
  grid-row: 1;
}

.organism-price-project-section__title__body {
  padding-right: 16px;
  font-size: 24px;
  font-weight: normal;
  color: var(--color-mono-1);
  background: var(--color-mono-c);
}

.organism-price-project-section__title:after {
  position: absolute;
  top: 12px;
  z-index: -1;
  display: block;
  width: 100%;
  content: "";
  border-bottom: 1px solid var(--color-mono-5);
}

.organism-price-project-section__title--sub {
  -ms-grid-row: 5;
  grid-row: 5;
  font-size: 18px;
  font-weight: bold;
}

.organism-price-project-section__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 3;
  grid-row: 3;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .organism-price-project-section__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.organism-price-project-section__list__item {
  width: calc((100% - 40px) / 2);
}

@media (max-width: 768px) {
  .organism-price-project-section__list__item {
    width: 100%;
  }
  .organism-price-project-section__list__item + .organism-price-project-section__list__item {
    margin-top: 60px;
  }
}
.organism-price-project-section__description {
  -ms-grid-row: 7;
  grid-row: 7;
  font-size: 16px;
  line-height: 1.8em;
}

.organism-price-project-section__more {
  -ms-grid-row: 9;
  grid-row: 9;
  -ms-grid-column-align: center;
  justify-self: center;
}

.organism-project-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.organism-project-list__item {
  height: auto;
  margin: 0 20px 20px 0;
}

@media (min-width: 768px) and (max-width: 1279px) {
  .organism-project-list__item {
    width: calc((100% - 40px) / 3);
  }
  .organism-project-list__item:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .organism-project-list__item {
    width: calc((100% - 20px) / 2);
  }
  .organism-project-list__item:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  .organism-project-list__item {
    width: 100%;
    margin-right: 0;
  }
  .organism-project-list__item:last-of-type {
    margin-bottom: 0;
  }
}
.organism-project-search-box__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.organism-project-search-box__list__item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .organism-project-search-box__list__item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.organism-project-search-box__list__item--type .checkbox:checked + .check-label, .organism-project-search-box__list__item--type .checkbox:checked + .check-label:before, .organism-project-search-box__list__item--type .check-label:hover, .organism-project-search-box__list__item--type .check-label:hover .crevo-icon {
  color: #f0a568;
  border-color: #f0a568;
}

@media (max-width: 768px) {
  .organism-project-search-box__list__item--type .check-label:hover, .organism-project-search-box__list__item--type .check-label:hover .crevo-icon {
    color: var(--color-mono-2);
    border-color: var(--color-mono-5);
  }
}
.organism-project-search-box__list__item--purpose .checkbox:checked + .check-label, .organism-project-search-box__list__item--purpose .checkbox:checked + .check-label:before, .organism-project-search-box__list__item--purpose .check-label:hover, .organism-project-search-box__list__item--purpose .check-label:hover .crevo-icon {
  color: #75cbad;
  border-color: #75cbad;
}

@media (max-width: 768px) {
  .organism-project-search-box__list__item--purpose .check-label:hover, .organism-project-search-box__list__item--purpose .check-label:hover .crevo-icon {
    color: var(--color-mono-2);
    border-color: var(--color-mono-5);
  }
}
.organism-project-search-box__list__item--price-range .checkbox:checked + .check-label, .organism-project-search-box__list__item--price-range .checkbox:checked + .check-label:before, .organism-project-search-box__list__item--price-range .check-label:hover, .organism-project-search-box__list__item--price-range .check-label:hover .crevo-icon {
  color: #78bbd7;
  border-color: #78bbd7;
}

@media (max-width: 768px) {
  .organism-project-search-box__list__item--price-range .check-label:hover, .organism-project-search-box__list__item--price-range .check-label:hover .crevo-icon {
    color: var(--color-mono-2);
    border-color: var(--color-mono-5);
  }
}
.organism-project-search-box__list__item--length .checkbox:checked + .check-label, .organism-project-search-box__list__item--length .checkbox:checked + .check-label:before, .organism-project-search-box__list__item--length .check-label:hover, .organism-project-search-box__list__item--length .check-label:hover .crevo-icon {
  color: #c678c4;
  border-color: #c678c4;
}

@media (max-width: 768px) {
  .organism-project-search-box__list__item--length .check-label:hover, .organism-project-search-box__list__item--length .check-label:hover .crevo-icon {
    color: var(--color-mono-2);
    border-color: var(--color-mono-5);
  }
}
.organism-project-search-box__list__item--business .checkbox:checked + .check-label, .organism-project-search-box__list__item--business .checkbox:checked + .check-label:before, .organism-project-search-box__list__item--business .check-label:hover, .organism-project-search-box__list__item--business .check-label:hover .crevo-icon {
  color: #f97b7e;
  border-color: #f97b7e;
}

@media (max-width: 768px) {
  .organism-project-search-box__list__item--business .check-label:hover, .organism-project-search-box__list__item--business .check-label:hover .crevo-icon {
    color: var(--color-mono-2);
    border-color: var(--color-mono-5);
  }
}
.organism-project-search-box__action-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .organism-project-search-box__action-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .organism-project-search-box__action-area button {
    width: 100%;
    max-width: 250px;
  }
}
@media (max-width: 480px) {
  .organism-project-search-box__action-area button {
    max-width: none;
  }
}
.organism-project-search-box__action-area button + button {
  margin-left: 15px;
}

@media (max-width: 768px) {
  .organism-project-search-box__action-area button + button {
    margin: 20px 0 0 0;
  }
}
.organism-project-search-box .field-title {
  min-width: 130px;
  font-size: 14px;
  font-weight: bold;
  color: var(--color-mono-1);
  vertical-align: middle;
}

@media (max-width: 768px) {
  .organism-project-search-box .field-title {
    min-width: 100px;
    margin-top: 10px;
  }
}
.organism-project-search-box .field-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  border: none;
}

@media (max-width: 768px) {
  .organism-project-search-box .field-input {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.organism-project-search-box .form-control {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: var(--color-mono-3);
  background-color: var(--color-mono-c);
  background-image: none;
  border: 1px solid var(--color-mono-5);
  border-radius: 4px;
  outline: none;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.organism-project-search-box .checkbox {
  display: none;
  margin: 0;
}

.organism-project-search-box .checkbox:checked + .check-label .crevo-icon {
  color: inherit;
}

.organism-project-search-box .checkbox:checked + .check-label .crevo-icon:before {
  opacity: 1;
}

.organism-project-search-box .check-label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 32px;
  margin-right: 16px;
  font-size: 14px;
  color: var(--color-mono-2);
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.organism-project-search-box .check-label .crevo-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1px;
  margin-right: 4px;
  font-family: crevo-icon;
  font-size: 12px;
  color: var(--color-mono-5);
  vertical-align: middle;
  content: "";
  border: 2px solid;
  border-radius: 3px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.organism-project-search-box .check-label .crevo-icon:before {
  opacity: 0;
}

.organism-project-tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.organism-project-tag-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  font-size: 12px;
}

.organism-project-tag-list__item + .organism-project-tag-list__item {
  margin-top: 6px;
}

.organism-project-tag-list__item__title {
  min-width: 70px;
  font-weight: bold;
  color: var(--color-mono-1);
  white-space: nowrap;
}

.organism-project-tag-list__item__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.organism-project-tag-list__item__link {
  position: relative;
  padding: 0px 2px;
  margin: 4px 6px 0 6px;
  line-height: 1.6;
  color: var(--color-mono-3);
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.organism-project-tag-list__item__link:hover {
  color: var(--color-mono-1);
  border-bottom: 1px solid;
}

.organism-project-tag-list__item__link:not(:last-of-type):after {
  position: absolute;
  top: -1px;
  right: -7px;
  color: var(--color-mono-3);
  content: "|";
}

.organism-service-type-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.organism-service-type-list__item {
  width: calc((100% - 120px) / 3);
}

@media (max-width: 980px) {
  .organism-service-type-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .organism-service-type-list__item {
    width: 100%;
  }
  .organism-service-type-list__item:nth-of-type(2) {
    margin: 60px 0;
  }
}
@media (max-width: 980px) and (max-width: 480px) {
  .organism-service-type-list__item:nth-of-type(2) {
    margin: 20px 0;
  }
}
.organism-service-useage-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.organism-service-useage-list__item {
  width: calc((100% - 120px) / 5);
  margin-bottom: 25px;
}

.organism-service-useage-list__item:last-of-type {
  margin: 0;
}

@media (max-width: 480px) {
  .organism-service-useage-list__item {
    margin-bottom: 20px;
  }
}
@media (max-width: 1279px) {
  .organism-service-useage-list__item {
    width: calc((100% - 90px) / 4);
  }
}
@media (max-width: 1024px) {
  .organism-service-useage-list__item {
    width: calc((100% - 60px) / 3);
  }
}
@media (max-width: 768px) {
  .organism-service-useage-list__item {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 480px) {
  .organism-service-useage-list__item {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .organism-service-useage-list .molecule-usage-item {
    -ms-grid-rows: 14px 14px 14px;
    -ms-grid-columns: 42px 12px 1fr 7px 6px;
    grid-template: "icon  .   title  .    ." 14px "icon  .   title arrow ." 14px "icon  .   title  .    ." 14px/42px 12px 1fr 7px 6px;
  }
  .organism-service-useage-list .molecule-usage-item > .molecule-about-service__title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
  }
  .organism-service-useage-list .molecule-usage-item > .molecule-article-header__title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
  }
  .organism-service-useage-list .molecule-usage-item > .molecule-footer-nav-category__title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
  }
  .organism-service-useage-list .molecule-usage-item > .molecule-news-item__title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
  }
  .organism-service-useage-list .molecule-usage-item > .molecule-philosophy__title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
  }
  .organism-service-useage-list .molecule-usage-item > .molecule-project-article-header__title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
  }
  .organism-service-useage-list .molecule-usage-item > .molecule-section__title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
  }
  .organism-service-useage-list .molecule-usage-item > .molecule-service-genre__title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
  }
  .organism-service-useage-list .molecule-usage-item > .molecule-step__title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
  }
  .organism-service-useage-list .molecule-usage-item > .molecule-usage-item__icon {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
  }
  .organism-service-useage-list .molecule-usage-item > .molecule-usage-item__title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
  }
  .organism-service-useage-list .molecule-usage-item > .molecule-usage-item__arrow {
    -ms-grid-row: 2;
    -ms-grid-column: 4;
  }
  .organism-service-useage-list .molecule-usage-item > .organism-feature-detail__title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
  }
  .organism-service-useage-list .molecule-usage-item > .organism-hero-section__title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
  }
  .organism-service-useage-list .molecule-usage-item > .organism-interview-card__title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
  }
}
@media (max-width: 480px) {
  .organism-service-useage-list .molecule-usage-item__title {
    font-size: 15px;
  }
}
.organism-sns-share-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.organism-sns-share-buttons__item {
  margin-left: 6px;
}

@media (max-width: 768px) {
  .organism-sns-share-buttons__item {
    margin-left: 5px;
  }
  .organism-sns-share-buttons__item:first-of-type {
    margin: 0;
  }
}
.organism-use-card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .organism-use-card-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.organism-use-card-list__item {
  width: calc((100% - 40px) / 2);
}

@media (max-width: 768px) {
  .organism-use-card-list__item {
    width: 100%;
  }
}
.organism-use-card-list__item + .organism-use-card-list__item {
  margin-left: 40px;
}

@media (max-width: 768px) {
  .organism-use-card-list__item + .organism-use-card-list__item {
    margin: 40px 0 0 0;
  }
}
@media (max-width: 480px) {
  .organism-use-card-list__item + .organism-use-card-list__item {
    margin: 20px 0 0 0;
  }
}
.template-about #detail {
  padding: 80px 0;
  background: var(--color-crevo-feature-bg);
}

@media (max-width: 768px) {
  .template-about #detail {
    padding: 40px 0;
  }
}
.template-about .organism-point-detail {
  width: 100%;
}

@media (max-width: 1024px) {
  .template-about .organism-point-detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .template-about .organism-point-detail:nth-of-type(odd) .organism-point-detail__container, .template-about .organism-point-detail:nth-of-type(even) .organism-point-detail__container {
    margin: 0;
  }
  .template-about .organism-point-detail__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .template-about .organism-point-detail__point-image {
    display: block;
    width: auto;
    height: 18px;
    margin: 0 auto;
  }
  .template-about .organism-point-detail__title {
    margin: 10px auto 20px auto;
    font-size: 24px;
    text-align: center;
  }
  .template-about .organism-point-detail__image--wide {
    position: static;
    width: 100%;
    max-width: 550px;
    height: auto;
    margin: 30px auto 0 auto;
  }
}
.template-article .molecule-contents-header__container {
  padding-bottom: 0px;
}

.template-article .organism-news-list {
  display: none;
  width: 100%;
  padding: 60px 0;
}

.template-article .organism-news-list.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.template-article .atom-tab__body {
  font-family: var(--font-family-alphanumeric);
}

@media (max-width: 480px) {
  .template-article .atom-tab__body {
    min-width: 0;
    padding: 14px 16px;
    font-size: 15px;
  }
}
.template-article #article {
  margin-top: 60px;
  margin-bottom: 60px;
}

.template-base {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 80px auto 1fr auto auto;
  -ms-grid-columns: 100vw;
  grid-template: "header" 80px "pankuzu" auto "main" 1fr "bottom-ad" auto "footer" auto/100vw;
  min-height: 100vh;
}

.template-base #header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  grid-area: header;
}

@media (max-width: 768px) {
  .template-base #header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
}
.template-base #pankuzu {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: pankuzu;
}

@media (max-width: 768px) {
  .template-base #pankuzu {
    display: none;
  }
}
.template-base #main {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: main;
}

.template-base #bottom-ad {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  grid-area: bottom-ad;
}

.template-base #footer {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  grid-area: footer;
}

.template-company .molecule-contents-header__container {
  padding-bottom: 0px;
}

.template-company #location {
  margin: 0 auto 100px;
}

@media (max-width: 768px) {
  .template-company #location {
    max-width: 100%;
    margin: 0;
    display: block;
  }
}
.template-company #location .location-map {
  position: relative;
  width: 50%;
  max-width: 480px;
  height: 480px;
  -webkit-box-shadow: 20px 20px 50px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 20px 20px 50px 0 rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .template-company #location .location-map {
    width: 100vw;
    max-width: 100%;
    height: 50vh;
    margin-top: 30px;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.template-company #location .location-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.template-company #location .location-detail {
  width: 50%;
}

@media (max-width: 768px) {
  .template-company #location .location-detail {
    margin: 0 40px 32px;
    width: 100%;
  }
}
.template-company #location .molecule-location-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 68px 0 0 72px;
}

@media (max-width: 768px) {
  .template-company #location .molecule-location-detail {
    width: 100%;
    margin: 0;
  }
  .template-company #location .molecule-location-detail__section {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .template-company #location .molecule-location-detail__section + .molecule-location-detail__section {
    margin-top: 10px;
  }
}
.template-company #location .molecule-location-detail + .molecule-location-detail {
  margin-top: 14px;
}

.template-company #employ {
  height: 287px;
  background-color: var(--color-mono-a);
}

@media (max-width: 768px) {
  .template-company #employ {
    height: 254px;
    background-color: var(--color-mono-c);
  }
}
.template-company #employ .employ__title {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 92px;
  margin-bottom: 37px;
}

@media (max-width: 768px) {
  .template-company #employ .employ__title {
    max-width: 260px;
    margin-top: 60px;
    margin-bottom: 37px;
    text-align: center;
  }
}
.template-company #employ .employ__more {
  margin-top: 0;
}

@media all and (-ms-high-contrast: none) {
  .template-company #employ .employ__more {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .template-company .only-pc {
    display: none;
  }
}
@media (max-width: 640px) {
  .template-faq .molecule-tab-list {
    display: none;
  }
}
@media (max-width: 768px) {
  .template-faq .molecule-tab-list--fixed + .js-observed-contents {
    padding-top: 0;
  }
}
.template-faq .molecule-tab-list__item {
  width: 150px;
}

.template-faq .molecule-tab-list__item .atom-tab {
  width: 100%;
}

@media (max-width: 768px) {
  .template-faq .molecule-tab-list__item {
    width: 25%;
  }
}
@media (max-width: 768px) {
  .template-faq .molecule-tab-list__link {
    padding: 20px 0;
  }
}
@media (max-width: 768px) {
  .template-faq .molecule-qa-list__item {
    padding: 0 0 40px 0;
  }
}
.template-flow #steps {
  padding: 80px 0;
  background: var(--color-crevo-feature-bg);
}

@media (max-width: 768px) {
  .template-flow #steps {
    padding: 40px 0;
  }
}
.template-flow #steps .atom-button {
  margin-top: 80px;
}

@media (max-width: 768px) {
  .template-flow #steps .atom-button {
    margin-top: 40px;
  }
}
.template-flow .molecule-step-list {
  width: 100%;
}

.template-flow .molecule-step-list__item + .molecule-step-list__item {
  margin-top: 130px;
}

.template-flow .molecule-step-list__item + .molecule-step-list__item:before {
  position: absolute;
  top: -120px;
  left: calc((100% - 48px) / 2);
  width: 48px;
  height: 24px;
  margin: 34px auto;
  content: "";
  background-image: url(../img/root/gray-arrow-e34f04b6efad196111e87e7733d5cd2268d49845a858668f53a5d54c9f1c1140.svg);
}

.template-flow .molecule-step-list__item .atom-text--link {
  margin-right: 0.4em;
}

@media (max-width: 768px) {
  .template-flow .molecule-step {
    -ms-grid-rows: auto 40px auto 20px 1fr;
    -ms-grid-columns: 1fr auto 1fr;
    grid-template: ".     image   .  " auto ".       .     .  " 40px "title title title" auto ".       .     .  " 20px "body   body  body" 1fr/1fr auto 1fr;
  }
  .template-flow .molecule-step__title {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.67;
    text-align: center;
  }
  .template-flow .molecule-step__step {
    top: 150px;
    left: calc((100% - 50px) / 2);
  }
  .template-flow .molecule-step__body {
    line-height: 1.75;
    letter-spacing: normal;
  }
  .template-flow .molecule-step > .u-dropdown__menu-item__body {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .template-flow .molecule-step > .molecule-about-service__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .template-flow .molecule-step > .molecule-about-service__body {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .template-flow .molecule-step > .molecule-article-header__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .template-flow .molecule-step > .molecule-footer-nav-category__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .template-flow .molecule-step > .molecule-news-item__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .template-flow .molecule-step > .molecule-philosophy__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .template-flow .molecule-step > .molecule-philosophy__body {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .template-flow .molecule-step > .molecule-project-article-header__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .template-flow .molecule-step > .molecule-section__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .template-flow .molecule-step > .molecule-section__body {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .template-flow .molecule-step > .molecule-service-genre__image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
  .template-flow .molecule-step > .molecule-service-genre__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .template-flow .molecule-step > .molecule-step__image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
  .template-flow .molecule-step > .molecule-step__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .template-flow .molecule-step > .molecule-step__body {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .template-flow .molecule-step > .molecule-usage-item__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .template-flow .molecule-step > .organism-company-info__image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
  .template-flow .molecule-step > .organism-feature-detail__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .template-flow .molecule-step > .organism-feature-detail__body {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .template-flow .molecule-step > .organism-hero-section__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .template-flow .molecule-step > .organism-interview-card__image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
  .template-flow .molecule-step > .organism-interview-card__title {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}
@font-face {
  font-family: "crevo-icon";
  font-weight: normal;
  font-style: normal;
  src: url(../font/icomoon/fonts/crevo-icon-e3f4e543aa9d390fdedfc68b68a3d93e9958cfed167b77b08ddd16684c2b6988.eot) format("embedded-opentype"), url(../font/icomoon/fonts/crevo-icon-8205efab8a7dab79aa5a5bd4d444e64b1bf6ab869a1138329b432d5d544fc13c.woff2) format("woff2"), url(../font/icomoon/fonts/crevo-icon-553147dfc0971da697e082d60c3ef4754b20dc1314ca710e44529146a21e82a4.woff) format("woff"), url(../font/icomoon/fonts/crevo-icon-e99cbddb48255ea91c236b1cb3479c523475fec162b7a90132f9ca227a349796.ttf) format("truetype"), url(../font/icomoon/fonts/crevo-icon-e7ea386b69bb76a83974a8764464859de35519706a110db901dbd1e35124aa8b.svg) format("svg");
}
[class^=crevo-] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  vertical-align: bottom;
  -ms-flex-item-align: center;
  align-self: center;
  justify-self: center;
  text-align: center;
  line-height: 1;
}

[class^=crevo-]:before, [class*=" crevo-"]:before {
  font-family: crevo-icon !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.crevo-icon.crevo-add:before {
  content: "\f101";
}

.crevo-icon.crevo-add_bag_fill:before {
  content: "\f102";
}

.crevo-icon.crevo-add_file:before {
  content: "\f103";
}

.crevo-icon.crevo-add_file_fill:before {
  content: "\f104";
}

.crevo-icon.crevo-add_fill:before {
  content: "\f105";
}

.crevo-icon.crevo-add_folder:before {
  content: "\f106";
}

.crevo-icon.crevo-add_folder_fill:before {
  content: "\f107";
}

.crevo-icon.crevo-add_job_fill:before {
  content: "\f108";
}

.crevo-icon.crevo-add_project_fill:before {
  content: "\f109";
}

.crevo-icon.crevo-arrow2_bottom:before {
  content: "\f10a";
}

.crevo-icon.crevo-arrow2_left:before {
  content: "\f10b";
}

.crevo-icon.crevo-arrow2_right:before {
  content: "\f10c";
}

.crevo-icon.crevo-arrow2_up:before {
  content: "\f10d";
}

.crevo-icon.crevo-arrow_bottom:before {
  content: "\f10e";
}

.crevo-icon.crevo-arrow_left:before {
  content: "\f10f";
}

.crevo-icon.crevo-arrow_right:before {
  content: "\f110";
}

.crevo-icon.crevo-arrow_up:before {
  content: "\f111";
}

.crevo-icon.crevo-asterisk:before {
  content: "\f112";
}

.crevo-icon.crevo-bag:before {
  content: "\f113";
}

.crevo-icon.crevo-bag_fill:before {
  content: "\f114";
}

.crevo-icon.crevo-bell:before {
  content: "\f115";
}

.crevo-icon.crevo-bell_fill:before {
  content: "\f116";
}

.crevo-icon.crevo-camera:before {
  content: "\f117";
}

.crevo-icon.crevo-camera_fill:before {
  content: "\f118";
}

.crevo-icon.crevo-check:before {
  content: "\f119";
}

.crevo-icon.crevo-clip:before {
  content: "\f11a";
}

.crevo-icon.crevo-close:before {
  content: "\f11b";
}

.crevo-icon.crevo-cloud:before {
  content: "\f11c";
}

.crevo-icon.crevo-cloud_download:before {
  content: "\f11d";
}

.crevo-icon.crevo-cloud_upload:before {
  content: "\f11e";
}

.crevo-icon.crevo-cog:before {
  content: "\f11f";
}

.crevo-icon.crevo-cog_fill:before {
  content: "\f120";
}

.crevo-icon.crevo-comment:before {
  content: "\f121";
}

.crevo-icon.crevo-comment_fill:before {
  content: "\f122";
}

.crevo-icon.crevo-company:before {
  content: "\f123";
}

.crevo-icon.crevo-company_fill:before {
  content: "\f124";
}

.crevo-icon.crevo-dashboard:before {
  content: "\f125";
}

.crevo-icon.crevo-dashboard_fill:before {
  content: "\f126";
}

.crevo-icon.crevo-download:before {
  content: "\f127";
}

.crevo-icon.crevo-download2:before {
  content: "\f128";
}

.crevo-icon.crevo-download_fill:before {
  content: "\f129";
}

.crevo-icon.crevo-edit:before {
  content: "\f12a";
}

.crevo-icon.crevo-edit_fill:before {
  content: "\f12b";
}

.crevo-icon.crevo-exclamation:before {
  content: "\f12c";
}

.crevo-icon.crevo-exclamation_fill:before {
  content: "\f12d";
}

.crevo-icon.crevo-exlink:before {
  content: "\f12e";
}

.crevo-icon.crevo-filter:before {
  content: "\f12f";
}

.crevo-icon.crevo-folder:before {
  content: "\f130";
}

.crevo-icon.crevo-folder_fill:before {
  content: "\f131";
}

.crevo-icon.crevo-folder_move:before {
  content: "\f132";
}

.crevo-icon.crevo-folder_move_fill:before {
  content: "\f133";
}

.crevo-icon.crevo-fullscreen:before {
  content: "\f134";
}

.crevo-icon.crevo-hamburger:before {
  content: "\f135";
}

.crevo-icon.crevo-headphone:before {
  content: "\f136";
}

.crevo-icon.crevo-headphone_fill:before {
  content: "\f137";
}

.crevo-icon.crevo-heart:before {
  content: "\f138";
}

.crevo-icon.crevo-heart_fill:before {
  content: "\f139";
}

.crevo-icon.crevo-help:before {
  content: "\f13a";
}

.crevo-icon.crevo-help_fill:before {
  content: "\f13b";
}

.crevo-icon.crevo-home:before {
  content: "\f13c";
}

.crevo-icon.crevo-home_fill:before {
  content: "\f13d";
}

.crevo-icon.crevo-information:before {
  content: "\f13e";
}

.crevo-icon.crevo-information_fill:before {
  content: "\f13f";
}

.crevo-icon.crevo-job:before {
  content: "\f140";
}

.crevo-icon.crevo-job_fill:before {
  content: "\f141";
}

.crevo-icon.crevo-link:before {
  content: "\f142";
}

.crevo-icon.crevo-list_user:before {
  content: "\f143";
}

.crevo-icon.crevo-list_user_fill:before {
  content: "\f144";
}

.crevo-icon.crevo-lock:before {
  content: "\f145";
}

.crevo-icon.crevo-lock_fill:before {
  content: "\f146";
}

.crevo-icon.crevo-logout:before {
  content: "\f147";
}

.crevo-icon.crevo-logout_fill:before {
  content: "\f148";
}

.crevo-icon.crevo-minus:before {
  content: "\f149";
}

.crevo-icon.crevo-option:before {
  content: "\f14a";
}

.crevo-icon.crevo-pen:before {
  content: "\f14b";
}

.crevo-icon.crevo-pen_fill:before {
  content: "\f14c";
}

.crevo-icon.crevo-pin:before {
  content: "\f14d";
}

.crevo-icon.crevo-plus:before {
  content: "\f14e";
}

.crevo-icon.crevo-print:before {
  content: "\f14f";
}

.crevo-icon.crevo-print_fill:before {
  content: "\f150";
}

.crevo-icon.crevo-profile:before {
  content: "\f151";
}

.crevo-icon.crevo-profile_fill:before {
  content: "\f152";
}

.crevo-icon.crevo-project:before {
  content: "\f153";
}

.crevo-icon.crevo-project_fill:before {
  content: "\f154";
}

.crevo-icon.crevo-rectangle:before {
  content: "\f155";
}

.crevo-icon.crevo-reduce:before {
  content: "\f156";
}

.crevo-icon.crevo-reduce_fill:before {
  content: "\f157";
}

.crevo-icon.crevo-reply:before {
  content: "\f158";
}

.crevo-icon.crevo-result:before {
  content: "\f159";
}

.crevo-icon.crevo-result_fill:before {
  content: "\f15a";
}

.crevo-icon.crevo-search:before {
  content: "\f15b";
}

.crevo-icon.crevo-share:before {
  content: "\f15c";
}

.crevo-icon.crevo-star:before {
  content: "\f15d";
}

.crevo-icon.crevo-star_fill:before {
  content: "\f15e";
}

.crevo-icon.crevo-thumbsup:before {
  content: "\f15f";
}

.crevo-icon.crevo-thumbsup_fill:before {
  content: "\f160";
}

.crevo-icon.crevo-trash:before {
  content: "\f161";
}

.crevo-icon.crevo-trash_fill:before {
  content: "\f162";
}

.crevo-icon.crevo-triangle_bottom:before {
  content: "\f163";
}

.crevo-icon.crevo-triangle_bottom_fill:before {
  content: "\f164";
}

.crevo-icon.crevo-triangle_left:before {
  content: "\f165";
}

.crevo-icon.crevo-triangle_left_fill:before {
  content: "\f166";
}

.crevo-icon.crevo-triangle_right:before {
  content: "\f167";
}

.crevo-icon.crevo-triangle_right_fill:before {
  content: "\f168";
}

.crevo-icon.crevo-triangle_up:before {
  content: "\f169";
}

.crevo-icon.crevo-triangle_up_fill:before {
  content: "\f16a";
}

.crevo-icon.crevo-updown:before {
  content: "\f16b";
}

.crevo-icon.crevo-upload_file:before {
  content: "\f16c";
}

.crevo-icon.crevo-upload_file_fill:before {
  content: "\f16d";
}

.crevo-icon.crevo-upload_folder:before {
  content: "\f16e";
}

.crevo-icon.crevo-upload_folder_fill:before {
  content: "\f16f";
}

.crevo-icon.crevo-view:before {
  content: "\f170";
}

.crevo-icon.crevo-view_none:before {
  content: "\f171";
}

.crevo-icon.crevo-voice:before {
  content: "\f172";
}

.crevo-icon.crevo-voice_fill:before {
  content: "\f173";
}

.crevo-icon.crevo-volume:before {
  content: "\f174";
}

.crevo-icon.crevo-volume_mute:before {
  content: "\f175";
}

.template-inquiry {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 80px 1fr 40px 40px;
  -ms-grid-columns: 100vw;
  grid-template: "header" 80px "main" 1fr "." 40px "footer" 40px/100vw;
  min-height: 100vh;
}

.template-inquiry .molecule-contents-header__container {
  padding: 80px 0 0;
}

.template-inquiry .molecule-contents-header__complete__title {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-mono-1);
}

.template-inquiry .molecule-contents-header__complete__desc {
  font-size: 16px;
  line-height: 2;
  color: var(--color-mono-1);
  text-align: center;
}

@media (max-width: 768px) {
  .template-inquiry .molecule-contents-header__complete__desc {
    text-align: left;
  }
}
.template-inquiry .molecule-contents-header__complete__desc .text {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .template-inquiry .molecule-contents-header__complete__desc .text br {
    display: none;
  }
}
.template-inquiry .molecule-contents-header__complete__desc .caution {
  display: inline-block;
  margin: 5px 0 50px;
  font-size: 13px;
  color: var(--color-mono-3);
}

@media (max-width: 768px) {
  .template-inquiry .molecule-contents-header__complete__desc .caution {
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .template-inquiry .molecule-contents-header__body br + * {
    margin-left: 0px;
  }
}
.template-inquiry .molecule-contents-header__body.white-paper-title {
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .template-inquiry .molecule-contents-header__body.white-paper-title {
    text-align: center;
  }
}
.template-inquiry .container__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .template-inquiry .container__contact {
    display: block;
    padding: 0px 20px;
    text-align: center;
  }
}
.template-inquiry .container__contact__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .template-inquiry .container__contact__block {
    display: block;
    padding: 0 0 20px;
    margin-bottom: 0px;
  }
}
.template-inquiry .container__contact__block__image, .template-inquiry .container__contact__block__form {
  width: 50%;
}

@media (max-width: 768px) {
  .template-inquiry .container__contact__block__image, .template-inquiry .container__contact__block__form {
    width: 100%;
    padding: 0;
  }
}
.template-inquiry .container__contact__block__image .highlight, .template-inquiry .container__contact__block__form .highlight {
  margin: 0 -5px;
  font-size: 1em;
  font-weight: bold;
  color: --color-crevo-red;
}

.template-inquiry .container__contact__block__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 30px 0 0;
}

@media (max-width: 768px) {
  .template-inquiry .container__contact__block__image {
    padding: 0 0 20px;
  }
}
.template-inquiry .container__contact__block__image--img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 400px;
  padding: 37px;
  margin-bottom: 15px;
  background-color: #40454e;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .template-inquiry .container__contact__block__image--img {
    min-height: 200px;
  }
}
.template-inquiry .container__contact__block__image--img img {
  width: 100%;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}

.template-inquiry .container__contact__block__image--text {
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}

.template-inquiry .container__contact--border {
  padding: 20px 21px 20px 32px;
  border: 4px solid var(--color-mono-a);
}

@media (max-width: 768px) {
  .template-inquiry .container__contact--border {
    padding: 0px 20px;
    border: none;
  }
}
.template-inquiry .container__contact__description {
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
}

@media (max-width: 768px) {
  .template-inquiry .container__contact__description {
    margin-bottom: 20px;
    text-align: left;
  }
  .template-inquiry .container__contact__description br {
    display: none;
  }
}
@media (max-width: 768px) {
  .template-inquiry .container__contact__detail {
    padding: 25px 30px;
    border: 4px solid var(--color-mono-a);
  }
}
.template-inquiry .container__contact__detail--number--block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.template-inquiry .container__contact__detail--number--number {
  display: inline-block;
  font-family: var(--font-family-alphanumeric);
  font-size: 28px;
  letter-spacing: 0.9px;
}

.template-inquiry .container__contact__detail--number--icon {
  position: static;
  top: -6px;
  right: -3px;
  display: inline-block;
}

.template-inquiry .container__contact__detail--number--icon--image {
  width: 21px;
  line-height: 21px;
}

.template-inquiry .container__contact__detail--time {
  display: block;
  font-size: 14px;
  color: var(--color-mono-4);
}

.template-inquiry .container__contact__button .atom-button {
  max-width: 250px;
  margin: 50px auto 0;
}

@media (max-width: 768px) {
  .template-inquiry .container__contact__button .atom-button {
    max-width: 100%;
    margin: 20px 20px 0;
  }
}
.template-inquiry #header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: header;
  border-bottom: 1px solid var(--color-mono-6);
}

@media (max-width: 768px) {
  .template-inquiry #header {
    border-bottom: 1px solid var(--color-mono-8);
  }
}
.template-inquiry #main {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: main;
}

.template-inquiry #footer {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  grid-area: footer;
}

.template-inquiry .more {
  width: 100%;
  margin: 50px 0 20px;
}

@media (max-width: 768px) {
  .template-inquiry .more {
    width: 100%;
    margin: 20px 0;
  }
}
.template-inquiry .more .atom-button {
  margin: auto;
}

@media (max-width: 768px) {
  .template-inquiry .more .atom-button {
    width: 100%;
  }
}
.template-inquiry .accent {
  width: 100%;
  color: var(--color-crevo-red);
  text-align: center;
}

@-webkit-keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .template-inquiry .form {
    padding: 30px 0 0;
    margin-top: 0px;
  }
}
.template-inquiry .form .form-group {
  max-width: 800px;
}

.template-inquiry .form .form-group-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

@media (max-width: 768px) {
  .template-inquiry .form .form-group-row {
    display: block;
  }
}
.template-inquiry .form .form-group-row.js-topic-row {
  -webkit-animation: show 0.5s linear 0s;
  animation: show 0.5s linear 0s;
}

.template-inquiry .form .form-group-row .form-group {
  width: 100%;
  max-width: 395px;
}

@media (min-width: 768px) {
  .template-inquiry .form .form-group-row .form-group {
    margin-left: 10px;
  }
  .template-inquiry .form .form-group-row .form-group:first-child {
    margin-left: 0px;
  }
}
.template-inquiry .form .form-group {
  position: relative;
  text-align: left;
}

.template-inquiry .form .form-group.invalid .a-label-text {
  color: #d72022;
}

.template-inquiry .form .form-group.invalid .a-input {
  border-color: #d72022;
}

.template-inquiry .form .form-group.invalid .a-select__select {
  border-color: #d72022;
}

.template-inquiry .form .form-group.invalid .m-input-set__validation-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.template-inquiry .form .form-group .form-control:not(textarea) {
  height: 46px;
}

.template-inquiry .form .form-group .form-control {
  padding: 15px;
  background-color: var(--color-mono-c);
  -webkit-box-shadow: unset;
  box-shadow: unset;
}

.template-inquiry .form .form-group .a-input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  min-height: 40px;
  padding: 0 14px;
  font-size: 14px;
  color: var(--color-mono-1);
  letter-spacing: 0.4px;
  background-color: var(--color-mono-c);
  border: 1px solid var(--color-mono-5);
  border-radius: 3px;
  outline: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (max-width: 768px) {
  .template-inquiry .form .form-group .a-input {
    font-size: 16px;
  }
}
.template-inquiry .form .form-group .a-input--l {
  min-height: 46px;
}

.template-inquiry .form .form-group .a-input:-ms-input-placeholder {
  color: #aaa;
}

.template-inquiry .form .form-group .a-select__select {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-line-pack: center;
  align-content: center;
  width: 100%;
  padding: 0 14px;
  font-size: 14px;
  color: var(--color-mono-1);
  letter-spacing: 0.4px;
  cursor: pointer;
  background-color: var(--color-mono-c);
  border: 1px solid var(--color-mono-5);
  border-radius: 3px;
  outline: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (max-width: 768px) {
  .template-inquiry .form .form-group .a-select__select {
    font-size: 16px;
  }
  .template-inquiry .form .form-group .a-select__select.form-control {
    padding: 0 10px;
  }
}
.template-inquiry .form .form-group .a-select__select--l {
  min-height: 46px;
  line-height: 44px;
}

.template-inquiry .form .form-group .a-select__select::-ms-expand {
  display: none;
}

.template-inquiry .form .form-group .a-select__caret {
  position: absolute;
  top: 53px;
  right: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 8px;
  font-size: 10px;
  color: var(--color-mono-3);
  pointer-events: none;
  cursor: pointer;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

@media (max-width: 768px) {
  .template-inquiry .form .form-group .form-input-textarea {
    font-size: 16px;
  }
}
.template-inquiry .form .form-group .a-label-text {
  font-size: 13px;
}

.template-inquiry .form .form-group .m-input-set__validation-message {
  display: none;
  grid-area: vm;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.2;
  color: #d72022;
  -webkit-transition: 0.3s cubic-bezier(0, 0.94, 0.06, 1);
  transition: 0.3s cubic-bezier(0, 0.94, 0.06, 1);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.template-inquiry .form .form-group .m-input-set__validation-message .crevo-icon {
  margin-right: 2px;
}

.template-inquiry .form .form-group input[type=checkbox], .template-inquiry .form .form-group input[type=radio] {
  margin: 0 6px 0 0;
}

.template-inquiry .form .form-group label {
  display: inline-block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.template-inquiry .form .text-area {
  max-width: 100%;
}

@media (max-width: 768px) {
  .template-inquiry .text {
    margin-bottom: 0;
  }
}
.template-inquiry .text .atom-text--link {
  font-size: 14px;
}

@media (max-width: 768px) {
  .template-inquiry .container .button-area .atom-button {
    min-width: 120px;
  }
}
.template-inquiry .container .button-area .atom-button + .atom-button {
  margin-left: 40px;
}

.template-inquiry .container__complete {
  margin: 0 20px;
}

.template-inquiry .atom-button:hover, .template-inquiry .atom-button:active, .template-inquiry .atom-button:focus {
  color: var(--color-mono-c);
  text-decoration: none;
}

.template-inquiry .atom-button--accent[disabled] {
  opacity: 0.25;
}

.template-interview #detail {
  padding: 80px 0;
  background-color: var(--color-crevo-feature-bg);
}

@media (max-width: 768px) {
  .template-interview #detail {
    padding: 40px 0;
  }
}
.template-interview .molecule-interview-card-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 768px) {
  .template-interview .molecule-interview-card-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .template-interview .molecule-interview-card-list__item {
    width: calc((100% - 40px) / 2);
  }
}
@media (max-width: 640px) {
  .template-interview .molecule-interview-card-list__item {
    width: 100%;
  }
  .template-interview .molecule-interview-card-list__item:last-of-type {
    margin: 0;
  }
}
.template-interview #article {
  margin-top: 60px;
  margin-bottom: 60px;
}

.template-policy .molecule-contents-header__container {
  padding-bottom: 0;
}

.template-policy #detail {
  margin-bottom: 80px;
}

.template-policy .organism-policy-section {
  width: 100%;
}

.template-policy .organism-policy-section + .organism-policy-section {
  margin-top: 60px;
}

.template-price #merits {
  background: var(--color-crevo-merit-bg);
}

@media (max-width: 768px) {
  .template-price .molecule-merit-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .template-price .molecule-merit-list__item {
    width: 100%;
  }
  .template-price .molecule-merit-list__item:nth-of-type(2) {
    margin: 60px 0;
  }
}
.template-price .molecule-merit {
  -ms-grid-rows: 90px 20px 50px 20px 1fr;
  grid-template-rows: 90px 20px 50px 20px 1fr;
}

@media (max-width: 768px) {
  .template-price .molecule-merit {
    -ms-grid-rows: 90px 20px auto 20px 1fr;
    grid-template-rows: 90px 20px auto 20px 1fr;
    height: 100%;
  }
}
.template-price .molecule-merit__image {
  width: auto;
  height: 100%;
}

@media (max-width: 768px) {
  .template-price .molecule-merit__body {
    font-size: 16px;
  }
}
.template-price .organism-price-project-section + .organism-price-project-section {
  margin-top: 80px;
}

@media (max-width: 768px) {
  .template-price .organism-price-project-section + .organism-price-project-section {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .template-price .organism-price-project-section__more {
    width: 100%;
  }
}
.template-projects #result {
  padding: 80px 0;
  background: var(--color-crevo-feature-bg);
}

@media (max-width: 768px) {
  .template-projects #result {
    padding: 40px 0;
  }
}
.template-projects #result .result-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
}

.template-projects #result .organism-project-list {
  width: 100%;
}

.template-projects #result .action-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-top: 60px;
}

.template-projects #result .no-project-results {
  width: 100%;
  font-size: 13px;
  line-height: 1.8em;
  text-align: center;
}

.template-projects #result .search-condition {
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  color: var(--color-mono-2);
}

.template-projects #more-projects {
  display: none;
}

@media (max-width: 768px) {
  .template-projects #more-projects {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 480px) {
  .template-projects #more-projects {
    width: 100%;
  }
}
.template-projects .molecule-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 768px) {
  .template-projects .molecule-pagination {
    display: none;
  }
}
.template-projects .project-search {
  width: 100%;
  margin-top: 60px;
}

.template-projects .project-search__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 12px 0;
  color: var(--color-text-link);
  cursor: pointer;
  background-color: var(--color-mono-b);
  border: 1px solid var(--color-mono-6);
  border-radius: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.template-projects .project-search__button:hover span {
  text-decoration: underline;
}

.template-projects .project-search__button span {
  font-size: 14px;
}

.template-projects .project-search__button .fa-plus-circle:before {
  margin-right: 6px;
  font-size: 18px;
}

.template-projects .project-search__box {
  display: none;
  margin-top: 20px;
}

.template-projects .organism-project-tag-list {
  width: 100%;
  margin: 80px 0;
}

@media (max-width: 768px) {
  .template-projects .organism-project-tag-list {
    display: none;
  }
}
.template-projects #detail .detail-container {
  margin-top: 65px;
}

@media (max-width: 768px) {
  .template-projects #detail .detail-container {
    margin-top: 30px;
  }
}
.template-projects #detail .molecule-project-article-header, .template-projects #detail .project-creative, .template-projects #detail .project-tags, .template-projects #detail .project-section, .template-projects #detail .project-thumbnails, .template-projects #detail .project-client-info {
  width: 100%;
}

.template-projects #detail .molecule-project-article-header {
  margin-bottom: 40px;
}

.template-projects #detail .project-creative {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}

@media (max-width: 768px) {
  .template-projects #detail .project-creative {
    margin-bottom: 10px;
  }
}
.template-projects #detail .project-creative iframe, .template-projects #detail .project-creative video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.template-projects #detail .project-tags {
  margin: 30px 0;
}

.template-projects #detail .project-tags__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-mono-7);
}

.template-projects #detail .project-tags__title {
  width: 140px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: bold;
  line-height: normal;
  color: var(--color-mono-3);
  letter-spacing: normal;
}

.template-projects #detail .project-section {
  height: 100%;
  color: var(--color-mono-1);
}

.template-projects #detail .project-section + * {
  margin-top: 40px;
}

.template-projects #detail .project-section__title {
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: 100%;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}

.template-projects #detail .project-section__body {
  width: 100%;
  font-size: 16px;
  line-height: 2;
}

.template-projects #detail .project-thumbnails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 40px;
}

.template-projects #detail .project-thumbnails__thumbnail {
  display: block;
  width: 100%;
  max-width: calc((100% - 40px) / 4);
  height: auto;
  border: 1px solid var(--color-mono-7);
}

@media (max-width: 768px) {
  .template-projects #detail .project-thumbnails__thumbnail {
    max-width: calc((100% - 10px) / 2);
    margin-bottom: 10px;
  }
}
.template-projects #detail .related-creatives-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 20px;
}

.template-projects #detail .related-creatives-list__item {
  width: calc((100% - 80px) / 4);
  margin: 0 20px 20px 0;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .template-projects #detail .related-creatives-list__item {
    width: calc((100% - 40px) / 2);
    margin: 0 auto 20px auto;
  }
  .template-projects #detail .related-creatives-list__item:nth-of-type(odd) {
    margin: 0 auto 0 0;
  }
  .template-projects #detail .related-creatives-list__item:nth-of-type(even) {
    margin: 0 0 0 auto;
  }
}
@media (max-width: 768px) {
  .template-projects #detail .related-creatives-list__item {
    width: 100%;
    margin: 0 auto;
  }
  .template-projects #detail .related-creatives-list__item + .related-creatives-list__item {
    margin-top: 40px;
  }
}
.template-projects #detail .project-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 30px 0 60px;
}

.template-projects #detail .recommend-projects {
  display: block;
  padding: 50px 0 0;
}

.template-projects #detail .recommend-projects__list {
  width: 100%;
}

.template-services #service-feature {
  background: var(--color-crevo-feature-bg);
}

@media (max-width: 768px) {
  .template-services .organism-feature-detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .template-services .organism-feature-detail + .organism-feature-detail {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .template-services .organism-feature-detail__title {
    font-size: 18px;
    line-height: 1.4;
  }
}
@media (max-width: 768px) {
  .template-services .organism-feature-detail__image {
    max-width: 100%;
  }
}
.template-services .organism-feature-detail__container {
  width: 100%;
}

@media (max-width: 768px) {
  .template-services .organism-feature-detail__container {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .template-services .molecule-alternate-list__item:nth-of-type(odd) .molecule-alternate-list__item__content:first-child, .template-services .molecule-alternate-list__item:nth-of-type(even) .molecule-alternate-list__item__content:first-child {
    margin: 0;
  }
}
@media (max-width: 1024px) {
  .template-services .molecule-vs-card-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  .template-services .molecule-vs-card-list__item {
    width: 100%;
  }
  .template-services .molecule-vs-card-list__item:nth-of-type(2) {
    margin: 20px 0;
  }
  .template-services .molecule-vs-card-list .molecule-vs-card__title {
    width: 100%;
  }
}
.template-services #merits {
  background: var(--color-crevo-merit-bg);
}

@media (max-width: 768px) {
  .template-services .molecule-merit-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .template-services .molecule-merit-list__item {
    width: 100%;
  }
  .template-services .molecule-merit-list__item:nth-of-type(2) {
    margin: 60px 0;
  }
}
@media (max-width: 768px) {
  .template-services .molecule-merit {
    -ms-grid-rows: 90px 20px auto 20px 1fr;
    grid-template-rows: 90px 20px auto 20px 1fr;
    height: 100%;
  }
}
.template-services .molecule-merit__image {
  width: 160px;
}

@media (max-width: 768px) {
  .template-services .molecule-merit__image {
    width: auto;
    height: 100%;
  }
}
@media (max-width: 768px) {
  .template-services .molecule-merit__body {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .template-services #vs .molecule-section__title {
    font-size: 18px;
    line-height: 1.7;
  }
  .template-services #vs .molecule-section__title br {
    display: none;
  }
}
.template-services #vs .molecule-section__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.template-services #vs .molecule-other-link {
  margin-top: 60px;
}

@media (max-width: 768px) {
  .template-services #vs .molecule-other-link {
    width: 100%;
  }
}
.template-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 100vh auto auto;
  grid-template-rows: auto 100vh auto auto;
  -ms-grid-columns: 100vw;
  grid-template-columns: 100vw;
  min-height: 100vh;
}

.template-top #header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
}

.template-top #hero {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  -ms-grid-column: 1;
  grid-column: 1;
}

.template-top #main {
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 1;
  grid-column: 1;
}

.template-top #footer {
  -ms-grid-row: 4;
  grid-row: 4;
  -ms-grid-column: 1;
  grid-column: 1;
}

.template-top #achievement {
  background: var(--color-crevo-feature-bg);
}

.template-top .client-image {
  width: 100%;
  height: auto;
  margin-bottom: 60px;
}

@media (max-width: 480px) {
  .template-top .client-image {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .template-top .client-image.show--pc {
    display: none;
  }
}
.template-top .client-image.show--mobile {
  display: none;
}

@media (max-width: 768px) {
  .template-top .client-image.show--mobile {
    display: block;
  }
}
.template-top .news-section .more {
  float: right;
  margin-top: 20px;
  font-size: 14px;
}

.template-top .atom-section-title--red {
  margin-right: -10px;
}

.template-usages .molecule-service-genre-list {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .template-usages .molecule-service-genre-list__item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .template-usages .molecule-service-genre__image {
    height: 150px;
    font-family: "object-fit: cover;";
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media (max-width: 768px) {
  .template-usages .molecule-service-genre__title br {
    display: none;
  }
}
@media (max-width: 768px) {
  .template-usages .molecule-service-creative-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .template-usages .molecule-service-creative-list__item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .template-usages .molecule-service-creative-list__item:nth-of-type(2) {
    margin: 60px 0;
  }
}
@media (max-width: 768px) {
  .template-usages .molecule-service-creative__thumbnail {
    max-height: 240px;
  }
}
.template-usages #features {
  background: var(--color-crevo-feature-bg);
}

.template-usages #scenes {
  background: var(--color-crevo-merit-bg);
}

.template-usages #scenes .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.template-usages #scenes .contact__title {
  margin: 80px 0 40px 0;
  font-size: 16px;
  font-weight: bold;
  color: var(--color-mono-c);
}

@media (max-width: 768px) {
  .template-usages #scenes .contact__title {
    margin: 40px 0;
  }
}
.template-usages #genre .atom-section-title--small {
  margin: 40px 0;
}

@media (max-width: 768px) {
  .template-usages #genre .atom-section-title--small {
    font-size: 18px;
    line-height: 1.7;
  }
  .template-usages #genre .atom-section-title--small br {
    display: none;
  }
}
@media (max-width: 768px) {
  .template-usages .organism-feature-detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .template-usages .organism-feature-detail + .organism-feature-detail {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .template-usages .organism-feature-detail__title {
    font-size: 18px;
    line-height: 1.4;
  }
}
@media (max-width: 768px) {
  .template-usages .organism-feature-detail__image {
    max-width: 100%;
  }
}
.template-usages .organism-feature-detail__container {
  width: 100%;
}

@media (max-width: 768px) {
  .template-usages .organism-feature-detail__container {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .template-usages .molecule-alternate-list__item:nth-of-type(odd) .molecule-alternate-list__item__content:first-child, .template-usages .molecule-alternate-list__item:nth-of-type(even) .molecule-alternate-list__item__content:first-child {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .template-usages .molecule-merit-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .template-usages .molecule-merit-list__item:nth-of-type(2) {
    margin: 60px 0;
  }
}
@media (max-width: 768px) {
  .template-usages .molecule-merit-list .molecule-merit {
    width: 100%;
  }
}
.template-usages .molecule-merit-list .molecule-merit__image {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

@media (max-width: 768px) {
  .template-usages .molecule-merit-list .molecule-merit__body {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .template-usages .molecule-vs-card-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  .template-usages .molecule-vs-card-list__item {
    width: 100%;
  }
  .template-usages .molecule-vs-card-list__item:nth-of-type(2) {
    margin: 20px 0;
  }
  .template-usages .molecule-vs-card-list .molecule-vs-card__title {
    width: 100%;
  }
}
.template-usages .action-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .template-usages .action-area {
    margin-top: 40px;
  }
}
