@charset "UTF-8";
/* COMPASS
 * ----------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* BASE
 * ----------------------------------------------- */
/* ADDITIONAL RESET
 * ----------------------------------------------- */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  font: inherit;
  line-height: 1;
}

input:focus,
button:focus,
select:focus {
  outline: 0;
}

/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Turn off scroll bars in IE unless needed */
textarea {
  overflow: auto;
  white-space: pre-line;
}

/* PRINTING
 * ----------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
  }

  html,
  body {
    margin: 0;
  }

  @page {
    margin: 0;
  }
  @page :left {
    margin: 0;
  }
  @page :right {
    margin: 0;
  }
  @page :first {
    margin-top: 0;
  }
}
/* GENERAL
 * ----------------------------------------------- */
body {
  color: #000;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, Verdana, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

.ft-serif {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Times New Roman", "游明朝", YuMincho, "メイリオ", Meiryo, Georgia, serif;
}

/* HELPERS
 * ----------------------------------------------- */
a {
  color: #000;
  text-decoration: none;
}

.trans {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: opacity 0.26s ease;
  -o-transition: opacity 0.26s ease;
  -webkit-transition: opacity 0.26s ease;
  transition: opacity 0.26s ease;
}
.trans:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
  text-justify: distribute;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.container {
  min-width: 1200px;
}

.wrapper {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.main {
  background: url(../img/common/bg_body.jpg) no-repeat -180px 0;
  background-attachment: fixed;
}

/* RESPONSIVE
 * ----------------------------------------------- */
.sm {
  display: none !important;
}

@media (max-width: 767px) {
  .md {
    display: none !important;
  }

  .sm {
    display: block !important;
  }

  .trans,
  .trans:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }

  html {
    font-size: 15.625vw;
  }

  body {
    font-size: 14px;
  }

  .container {
    width: auto;
    min-width: 320px;
  }

  .wrapper {
    width: auto;
    margin: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .main {
    background: none;
  }
}
/* PARTS
 * ----------------------------------------------- */
/* COMMON HEADER
 * ----------------------------------------------- */
header {
  width: 100%;
  min-width: 1200px;
  height: 100px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
}
header .header-inner {
  *zoom: 1;
}
header .header-inner:after {
  content: "";
  display: table;
  clear: both;
}
header .logo {
  float: left;
  margin: 32px 0 0 50px;
}
header .navigation {
  float: right;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
header .menu {
  float: left;
  *zoom: 1;
}
header .menu:after {
  content: "";
  display: table;
  clear: both;
}
header .menu > li {
  float: left;
  z-index: 18;
  line-height: 1;
}
header .menu > li > a {
  display: block;
  padding: 41px 20px;
}
header .menu li {
  position: relative;
}
header .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: -8px;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  min-width: 150px;
  border-top: 8px solid #20a4ad;
  background: #000;
}
header .sub-menu a {
  display: block;
  color: #fff;
  text-align: center;
  border-bottom: 1px solid #fff;
  padding: 16px 0;
}
header .buttons {
  overflow: hidden;
  float: right;
  margin-left: 15px;
}
header .buttons a {
  float: left;
  display: block;
}
header .buttons a img {
  display: block;
}

@media (max-width: 1500px) {
  header .menu li {
    font-size: 16px;
  }

  header .menu > li > a {
    padding: 42px 15px;
  }
}
@media (max-width: 1336px) {
  header .menu li {
    font-size: 14px;
  }

  header .menu > li > a {
    padding: 43px 15px;
  }

  header .logo {
    margin-left: 30px;
  }
}
@media (max-width: 1260px) {
  header .menu > li > a {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 768px) {
  .navigation li:hover .sub-menu {
    display: block;
  }
}
.hamburger-btn {
  display: block;
  overflow: visible;
  margin: 0;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity, filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
  position: relative;
  z-index: 9999;
}

.hamburger-box {
  position: relative;
  display: block;
  width: 30px;
  height: 18px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  position: absolute;
  width: 100%;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  border-radius: 1px;
  background-color: #20a4ad;
}

.hamburger-inner {
  top: 0;
  display: block;
}
.hamburger-inner:after, .hamburger-inner:before {
  display: block;
  content: "";
}
.hamburger-inner:before {
  top: 8px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform, opacity;
}
.hamburger-inner:after {
  top: 16px;
}

.is-open .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.is-open .hamburger-inner:before {
  transform: rotate(-45deg) translate3d(-10px, -6px, 0);
  opacity: 0;
}
.is-open .hamburger-inner:after {
  transform: translate3d(0, -16px, 0) rotate(-90deg);
}

@media (max-width: 767px) {
  header {
    height: auto;
    min-width: 320px;
  }
  header .logo {
    margin: 0;
    width: 270px;
    padding: 20px 15px;
  }
  header .header-inner {
    display: flex;
    align-items: center;
  }
  header .hamburger-btn {
    padding: 15px;
    margin-left: auto;
  }
  header .navigation {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    background: #fff;
    overflow: auto;
  }
  header .menu, header .buttons {
    float: none;
    width: 100%;
  }
  header .menu > li {
    float: none;
    width: 100%;
  }
  header .menu > li > a {
    padding: 20px 15px;
    border-bottom: 1px solid #ccc;
  }
  header .sub-menu {
    position: static;
    display: block;
    transform: none;
    width: 100%;
    border: 0;
    margin: 0;
    background-color: transparent;
  }
  header .sub-menu a {
    text-align: left;
    padding-left: 35px;
    background: #f0f0f0;
    color: #000;
  }
  header .buttons {
    padding: 20px;
    margin: 0;
    text-align: center;
  }
  header .buttons a {
    float: none;
    display: inline-block;
    margin: 0 10px;
  }

  .overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9980;
    display: none;
  }
}
/* COMMON FOOTER
 * ----------------------------------------------- */
.section-contact .wrapper {
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  padding-top: 50px;
  padding-bottom: 50px;
}
.section-contact .note {
  font-size: 24px;
  font-weight: 500;
  margin-top: 20px;
}

.block-flow {
  position: relative;
}
.block-flow .box {
  position: relative;
  border: 3px solid #20a4ad;
  border-radius: 9px;
  background: #eee;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.35);
  text-align: center;
  padding-bottom: 15px;
}
.block-flow .icon {
  position: absolute;
  left: 85px;
  top: -35px;
}
.block-flow .heading strong {
  display: block;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.2;
  color: #20a4ad;
}
.block-flow .heading small {
  display: block;
  font-size: 10px;
  color: #888;
  letter-spacing: 0.6em;
  margin-top: 5px;
}
.block-flow .box-lg:before, .block-flow .box-lg:after {
  content: "";
  width: 28px;
  height: 20px;
  background: #20a4ad;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 90;
}
.block-flow .box-lg:before {
  right: 100%;
}
.block-flow .box-lg:after {
  left: 100%;
}
.block-flow .box-lg .icon {
  left: 76px;
}
.block-flow .box-sm {
  padding-top: 65px;
}
.block-flow .lead {
  font-size: 30px;
  font-style: italic;
  font-weight: 500;
  border: 3px solid #20a4ad;
  border-radius: 4px;
  background: #fff;
  width: 392px;
  padding: 3px 0;
  color: #20a4ad;
  margin-top: -27px;
  margin-bottom: 8px;
  text-align: center;
}
.block-flow .txt {
  font-size: 16px;
  text-align: left;
  line-height: 1.9;
}

@media (min-width: 768px) {
  .block-flow .box-sm {
    width: 255px;
  }
  .block-flow .box-lg {
    width: 640px;
  }
  .block-flow .box-lg .heading {
    width: 210px;
    padding-top: 55px;
  }
  .block-flow .box-lg .panel-desc {
    -webkit-flex: 1 0 0%;
    flex: 1 0 0%;
  }
}


@media (max-width: 767px) {
  .section-contact .note {
    font-size: 20px;
  }

  .block-flow .box {
    margin-bottom: 35px;
    padding-top: 0;
  }
  .block-flow .box-sm {
    padding-bottom: 50px;
  }
  .block-flow .box-lg:before, .block-flow .box-lg:after {
    left: 50%;
    margin-left: -10px;
    margin-top: 0;
    width: 20px;
    height: 38px;
  }
  .block-flow .box-lg:before {
    bottom: 100%;
    top: auto;
  }
  .block-flow .box-lg:after {
    top: 100%;
    bottom: auto;
  }
  .block-flow .icon {
    display: block;
    width: 100%;
    position: static;
    text-align: left;
    padding-left: 30px;
    margin-top: -35px;
    margin-bottom: 10px;
  }
  .block-flow .heading br {
    display: none;
  }
  .block-flow .lead {
    font-size: 20px;
    border-width: 2px;
    margin: 10px;
    width: auto;
  }
  .block-flow .txt {
    padding: 0 10px;
  }

  footer {
    padding: 40px 0 0;
    background-size: 100% auto;
  }
  footer .block-contact .company, footer .block-contact .ct-us {
    width: auto;
  }
  footer .block-contact .company {
    align-items: flex-start;
  }
  footer .block-contact .company .thumb-map {
    width: 40%;
  }
  footer .block-contact .company .txt {
    padding: 0 0 0 10px;
  }
  footer .copyright {
    padding: 0;
    margin-bottom: 15px;
  }
  footer .btn-top {
    width: 50px;
    right: 15px;
    bottom: 15px;
  }
  footer .sns .sns-link {
    margin: 0 10px;
  }
}
@media (min-width: 768px) {
  .d-md-flex {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .align-items-md-center {
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .justify-content-md-between {
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .justify-content-md-center {
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .align-items-md-end {
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
}
.d-flex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.align-items-center {
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.align-items-end {
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.justify-content-center {
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.justify-content-between {
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

/* COMMON TITLES
 * ----------------------------------------------- */
.sec-title {
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}
.sec-title strong {
  font-size: 30px;
  display: block;
  line-height: 1.333;
}
.sec-title small {
  color: #20a4ad;
  font-size: 16px;
  letter-spacing: 0.3em;
}

.page-title {
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: cover;
  text-align: center;
}
.page-title .wrapper {
  height: 300px;
}
.page-title .wrapper:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.page-title .ttl {
  display: inline-block;
  vertical-align: middle;
  font-size: 50px;
  color: #fff;
  font-weight: 600;
  text-shadow: 5px 5px 12px rgba(255, 255, 255, 0.3), -5px 5px 12px rgba(255, 255, 255, 0.3), 5px -5px 12px rgba(255, 255, 255, 0.3);
}

@media (max-width: 767px) {
  .page-title {
    padding: 50px 0;
  }
  .page-title .wrapper {
    height: auto;
  }
  .page-title .wrapper:before {
    display: none;
  }
  .page-title .ttl {
    display: block;
    font-size: 30px;
  }
}
/* COMMON BUTTONS
 * ----------------------------------------------- */
.btn {
  display: inline-block;
  font-size: 1em;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 22px 0;
  max-width: 100%;
}

.btn-default {
  width: 412px;
  background: #000 url(../img/common/icn_quote.png) no-repeat right 30px center;
  background-size: 11px auto;
  color: #fff;
}

/* COMMON BREADCRUMBS
 * ----------------------------------------------- */
.breadcrumb {
  padding: 10px 0;
  margin-bottom: 30px;
}
.breadcrumb li {
  display: inline-block;
  vertical-align: middle;
  color: #000;
}
.breadcrumb li a {
  color: #20a4ad;
  display: inline-block;
  padding: 3px 0;
  border-bottom: 1px solid #20a4ad;
}
.breadcrumb li + li:before {
  content: "";
  width: 11px;
  height: 11px;
  display: inline-block;
  background: url(../img/common/icn_quote_b.png) no-repeat 0 0;
  background-size: 11px auto;
  margin: 0 16px;
}

@media (max-width: 767px) {
  .breadcrumb {
    display: none !important;
  }
}
/* COMMON FORMS
 * ----------------------------------------------- */
/* COMMON PAGINATIONS
 * ----------------------------------------------- */
.pagination {
  text-align: center;
  margin-top: 20px;
}
.pagination .page-number {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  border: 1px solid #000;
  line-height: 1.2;
  padding: 8px 12px;
  margin: 0 6px;
  color: #000;
}
.pagination .page-number.current {
  border-color: #20a4ad;
  color: #20a4ad;
}
.pagination .page-prev, .pagination .page-next {
  background: #000;
  color: #fff;
}
.pagination .page-prev {
  margin-right: 10px;
}
.pagination .page-next {
  margin-left: 10px;
}

@media (min-width: 768px) {
  .pagination .page-number:hover {
    border-color: #20a4ad;
    color: #20a4ad;
  }
  .pagination .page-prev:hover, .pagination .page-next:hover {
    background-color: #fff;
    color: #000;
    border-color: #000;
  }
}
@media (max-width: 767px) {
  .pagination .page-prev, .pagination .page-next {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80px;
  }
  .pagination .page-prev {
    margin-bottom: 5px;
  }
  .pagination .page-next {
    margin-top: 5px;
  }
}
@media (min-width: 768px) {
  .grid-col-3 .box {
    width: 370px;
    margin-right: 45px;
  }
  .grid-col-3 .box:nth-child(3n) {
    margin-right: 0 !important;
  }
}
.tab-content {
  display: none;
}
.tab-content.current {
  display: block;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* PAGES
 * ----------------------------------------------- */
/* PAGE TOP
 * ----------------------------------------------- */
.main-slider {
  overflow: hidden;
  position: relative;
}
.main-slider:not(.slick-initialized) .slide-item {
  display: none;
}
.main-slider:not(.slick-initialized) .slide-item:first-child {
  display: block;
}
.main-slider .inner-slide {
  position: absolute;
  width: 100%;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  z-index: 9;
}
.main-slider .slide-item:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/top/pattern01.png) repeat 0 0;
}
.main-slider .slide-item > img {
  width: 100%;
}

.section-top-policy {
  background: url(../img/top/pattern02.png) no-repeat center 0;
  background-size: cover;
  color: #fff;
  padding: 90px 0 45px;
}
.section-top-policy .sec-title small {
  color: #99E5FF;
}
.section-top-policy .btn-default {
  margin-top: 50px;
}

.list-policy .item {
  width: 370px;
}
.list-policy .pane-ttl {
  width: 100%;
  height: 330px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  text-align: center;
}
.list-policy .pane-ttl:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.list-policy .pane-ttl .inner {
  display: inline-block;
  vertical-align: middle;
  max-width: 95%;
}
.list-policy .pane-ttl small {
  display: block;
  font-size: 16px;
  letter-spacing: 0.3em;
  margin-top: 10px;
}
.list-policy .desc {
  padding: 0 50px;
  position: relative;
  margin-top: -40px;
  line-height: 1.5;
}

.section-news {
  position: relative;
}

.block-top-news {
  position: absolute;
  top: -40px;
}
.block-top-news .news-group {
  width: 50%;
  display: inherit;
  border: 1px solid #000;
  background: #fff;
}
.block-top-news .news-cat {
  width: 80px;
  background: #000;
  text-align: center;
}
.block-top-news .news-cat a {
  display: block;
  height: 78px;
  color: #fff;
  padding-top: 15px;
}
.block-top-news .news-cat .cat-label {
  display: block;
  font-size: 12px;
  margin-top: 4px;
}
.block-top-news .list-news-slider {
  width: calc(100% - 80px);
  padding: 18px 40px;
}
.block-top-news .slick-arrow {
  width: 15px;
  height: 10px;
  text-indent: -999px;
  overflow: hidden;
  cursor: pointer;
  position: absolute;
  right: 15px;
  background-repeat: no-repeat;
  background-position: center center;
}
.block-top-news .slick-arrow.slick-disabled {
  cursor: default;
  opacity: 0.2;
}
.block-top-news .slick-prev {
  background-image: url(../img/common/arrow_up.png);
  top: 28px;
}
.block-top-news .slick-next {
  bottom: 28px;
  background-image: url(../img/common/arrow_down.png);
}
.block-top-news .news-item a {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  border-bottom: 1px solid #000;
  padding: 3px 0;
  max-width: 100%;
  outline: none;
}
.block-top-news .news-item .date, .block-top-news .news-item .ttl {
  display: inline-block;
  vertical-align: middle;
}
.block-top-news .news-item .date {
  margin-right: 15px;
}

.section-product {
  padding: 75px 0;
}
.section-product .sec-title {
  margin-bottom: 60px;
}

.product-item {
  color: #fff;
  position: relative;
  background-repeat: no-repeat;
  background-position: center 0;
}
.product-item .wrapper {
  padding: 0 50px;
}
.product-item .product-info, .product-item .products {
  width: 50%;
}
.product-item .product-ttl {
  font-size: 2em;
  text-align: center;
  font-weight: bold;
}
.product-item .product-desc {
  line-height: 1.8;
  margin-top: 15px;
}
.product-item .products a {
  display: block;
  margin-right: 12px;
}
.product-item .products a:last-child {
  margin-right: 0 !important;
}
.product-item .products .btn-default {
  margin-top: 10px;
  display: block;
}
.product-item.air {
  z-index: 5;
  background-image: url(../img/top/bg_condition.png);
  padding: 70px 0 180px;
}
.product-item.air .products {
  padding: 10px 60px 0 78px;
}
.product-item.air + .light {
  margin-top: -181px;
}
.product-item.light {
  z-index: 4;
  background-image: url(../img/top/bg_lighting.png);
  padding: 180px 0 70px;
}
.product-item.light .products {
  padding: 0 60px 10px 78px;
}
.product-item.smoke {
  z-index: 3;
  background-image: url(../img/top/bg_smoke.png);
  padding: 70px 0 180px;
  margin-top: 8px;
}
.product-item.smoke .products {
  padding: 10px 60px 0 78px;
}

.section-delivery-case {
  margin-bottom: 130px;
}
.section-delivery-case .btn-default {
  margin-top: 44px;
}

.list-case .case-item {
  display: block;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  margin-bottom: 18px;
  margin-right: 16px;
  background: #fff;
  position: relative;
}
.list-case .case-item .img {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.list-case .case-item .img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.list-case .case-item.empty {
  border-radius: 0;
  background: #F0F0F0;
}
.list-case .case-item .entry-meta {
  font-size: 12px;
  padding: 0 15px;
  position: relative;
  margin-top: -15px;
}
.list-case .case-item .date, .list-case .case-item .cat {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  color: #fff;
}
.list-case .case-item .date {
  background: #666666;
  width: 120px;
  padding: 7px 0;
  margin-right: 12px;
}
.list-case .case-item .cat {
  padding: 7px 13px;
}
.list-case .case-item .cat.air {
  background-color: #0972A5;
}
.list-case .case-item .case-ct {
  padding: 10px 25px 20px;
}
.list-case .case-item .ttl {
  font-size: 16px;
  color: #20a4ad;
  font-weight: 500;
}
.list-case .case-item .ttl span {
  display: inline-block;
  border-bottom: 1px solid #20a4ad;
  padding: 2px 0;
}
.list-case .case-item .txt {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.6;
}
.list-case .case-item .btn-link {
  position: absolute;
  display: block;
  background: #000;
  width: 30px;
  height: 30px;
  text-align: center;
  bottom: 0;
  left: 50%;
  margin-left: -15px;
  margin-bottom: -15px;
}

@media (min-width: 768px) {
  .list-case .case-item {
    width: 288px;
  }
  .list-case .case-item:nth-child(4n) {
    margin-right: 0;
  }
}
.section-company {
  padding-bottom: 105px;
}

.list-company .box {
  display: block;
}

@media (max-width: 767px) {
  .block-top-news {
    position: static;
  }
  .block-top-news .news-group {
    width: 100%;
  }

  .main-slider .slide-item {
    height: 250px;
  }
  .main-slider .slide-item > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 50%;
    transform: translateX(-50%);
  }

  .section-news {
    padding: 20px 0;
  }
  .section-news .news-group {
    margin-bottom: 2px;
  }

  .block-top-news .list-news-slider {
    padding-left: 20px;
  }

  .section-top-policy {
    padding: 50px 0;
  }
  .section-top-policy .btn-default {
    width: 100%;
  }

  .list-policy .item {
    width: 100%;
    margin-bottom: 40px;
  }
  .list-policy .item .pane-ttl {
    height: 250px;
  }
  .list-policy .item .desc {
    font-size: 16px;
    padding: 0 40px;
  }

  .product-list .product-item {
    padding: 40px 0 15px;
    background-image: none;
    margin: 0;
  }
  .product-list .product-item .product-ttl {
    font-size: 1.6em;
  }
  .product-list .product-item .wrapper {
    padding: 0 15px;
  }
  .product-list .product-item .product-info, .product-list .product-item .products {
    width: 100%;
  }
  .product-list .product-item .products {
    padding: 0;
    margin-top: 20px;
  }
  .product-list .product-item .products a {
    width: 48.5%;
    margin-right: 3%;
  }
  .product-list .product-item .products .btn-default {
    width: 100%;
  }
  .product-list .product-item.air {
    background-color: #0972A5;
  }
  .product-list .product-item.air + .light {
    margin-top: 0;
  }
  .product-list .product-item.light {
    background-color: #ae8c2a;
  }
  .product-list .product-item.smoke {
    background-color: #667743;
  }

  .list-case .case-item {
    margin-right: 0;
  }
  .list-case .case-item .btn-link {
    padding-top: 4px;
  }

  .section-delivery-case {
    margin-bottom: 80px;
  }
  .section-delivery-case .btn-default {
    width: 100%;
  }

  .list-company .box {
    margin-bottom: 20px;
  }
}
/* PAGE POLICY
 * ----------------------------------------------- */
.page-policy {
  background-image: url(../img/policy/bg_title.jpg);
}

.sec-policy {
  background: url(../img/top/pattern02.png) no-repeat center 0;
  background-size: cover;
  color: #fff;
  padding-bottom: 86px;
}
.sec-policy .sec-title small {
  color: #99E5FF;
}

.youtube-iframe {
  height: 0;
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%;
}
.youtube-iframe iframe {
  display: block;
  border: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.sec-support {
  padding: 70px 0;
}
.sec-support .sec-title {
  margin-bottom: 60px;
}

.support-block {
  margin-top: 50px;
}
.support-block .ttl {
  color: #585A8A;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin: 30px 0 20px;
}
.support-block .desc {
  line-height: 1.8;
}

.sec-point .block-flow .heading strong, .sec-point .block-flow .lead {
  color: #084173;
}
.sec-point .block-flow .lead, .sec-point .block-flow .box {
  border-color: #084173;
}
.sec-point .block-flow .box-lg:before, .sec-point .block-flow .box-lg:after {
  background-color: #084173;
}
.sec-point .list-point {
  margin-top: 60px;
}

.list-point {
  position: relative;
}
.list-point .d-md-flex {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.list-point .point-item {
  position: relative;
  width: 430px;
  margin-bottom: 120px;
}
.list-point .point-item .point-ttl {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 8px;
}
.list-point .point-item .point-ttl span {
  display: inline;
  background-repeat: repeat;
  background-position: 0 0;
}
.list-point .point-item .desc {
  line-height: 1.8;
  margin-top: 10px;
}
.list-point .point-item .line {
  position: absolute;
  z-index: 9;
}
.list-point .point-item .line img {
  max-width: none;
}
.list-point .thumb-president {
  position: absolute;
  top: 114px;
  left: 450px;
}
.list-point .point01 .point-ttl span, .list-point .point04 .point-ttl span {
  background-image: url(../img/policy/pattern01.png);
}
.list-point .point02 .point-ttl span, .list-point .point03 .point-ttl span {
  background-image: url(../img/policy/pattern02.png);
  color: #1F3A69;
}
.list-point .point01 .line {
  left: 0;
  bottom: -50px;
}
.list-point .point02 .line {
  right: 0;
  bottom: -55px;
}
.list-point .point03 .line {
  left: 0;
  top: -55px;
}
.list-point .point04 .line {
  right: 0;
  top: -50px;
}

.photo-policy {
  *zoom: 1;
  position: relative;
  margin: -60px 0 60px;
}
.photo-policy:after {
  content: "";
  display: table;
  clear: both;
}
.photo-policy .col {
  float: left;
  width: 390px;
  margin-right: 15px;
}
.photo-policy .col:last-child {
  margin-right: 0;
}
.photo-policy .col .img {
  position: relative;
  margin-bottom: 12px;
}
.photo-policy .mess {
  position: absolute;
  z-index: 9;
}
.photo-policy .mess01 {
  left: 120px;
  top: -38px;
}
.photo-policy .mess02 {
  left: -120px;
  top: -30px;
}
.photo-policy .mess03 {
  left: 37px;
  top: -50px;
}
.photo-policy .mess04 {
  left: -184px;
  top: 45px;
}
.photo-policy .txt-slash {
  position: absolute;
  z-index: 10;
  right: -20px;
  bottom: -15px;
}

@media (min-width: 768px) {
  .support-block .box {
    width: 560px;
  }

  .sec-point .sec-title {
    margin-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .sec-policy {
    padding: 40px 0 50px;
  }

  .support-block .box {
    margin-bottom: 30px;
  }
  .support-block .ttl {
    font-size: 20px;
    margin: 20px 0 10px;
  }
  .support-block .desc {
    line-height: 1.6;
  }

  .list-point .point-item {
    width: auto;
    margin-bottom: 50px;
  }
  .list-point .point-item .point-ttl {
    font-size: 20px;
  }
  .list-point .thumb-president {
    position: static;
    text-align: center;
    margin-bottom: 30px;
  }

  .photo-policy {
    margin: 0 0 30px;
  }
  .photo-policy .col {
    width: auto;
    float: none;
    margin-right: 0;
  }
  .photo-policy figure > img {
    width: 100%;
  }
  .photo-policy .mess02 {
    left: 0;
  }
  .photo-policy .txt-slash {
    right: -15px;
  }
}
/* PAGE PRODUCT
 * ----------------------------------------------- */
.page-product {
  background-image: url(../img/product/bg_title.jpg);
}

.spage-product {
  background-image: url(../img/product/bg_stitle.jpg);
}

.sec-product {
  margin-top: -20px;
}

.product-guide {
  margin-bottom: 60px;
  padding: 0 60px;
}
.product-guide .tit {
  font-size: 24px;
  color: #57598A;
  font-weight: 600;
  margin-bottom: 10px;
}
.product-guide .txt {
  line-height: 1.8;
}

.product-air-conditioning {
  padding: 40px 0;
}

.product .thumb {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 40px;
}
.product .facilities {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -30px;
  text-align: center;
}
.product .facilities li {
  display: inline-block;
  margin: 0 5px;
}
.product .label-cat {
  display: inline-block;
  background: #ff0000;
  font-size: 12px;
  color: #fff;
  height: 23px;
  padding: 3px 5px 0;
  margin-bottom: 5px;
  min-width: 122px;
  text-align: center;
  position: relative;
}
.product .label-cat:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 23px 0 0 15px;
  border-color: transparent transparent transparent red;
  position: absolute;
  left: 100%;
  top: 0;
}
.product .product-ct {
  padding: 0 15px 0 40px;
}
.product .tit {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
}
.product .excerpt {
  line-height: 1.8;
  margin-bottom: 15px;
}
.product .btn-default {
  margin-top: 15px;
  max-width: 100%;
}

.feature-product {
  margin-bottom: 70px;
}
.feature-product .product .thumb {
  margin-bottom: 30px;
}
.feature-product .product .facilities {
  text-align: right;
  padding-right: 10px;
}
.feature-product .product .tit {
  text-align: left;
  font-size: 36px;
}

.related-product .product {
  margin-bottom: 45px;
}

.other-product {
  padding-top: 100px;
  margin-bottom: 60px;
}

.product-detail {
}
.product-detail .product-heading {
  text-align: center;
  position: relative;
  padding: 35px 0;
  margin-bottom: 10px;
}
.product-detail .product-heading:before {
  content: "";
  width: 100%;
  height: 100px;
  background: #DFF7FD;
  position: absolute;
  top: 50%;
  margin-top: -40px;
  left: 0;
}
.product-detail .product-heading .wrapper {
  position: relative;
  z-index: 1;
}
.product-detail .summary-product {
  margin-bottom: 80px;
}
.product-detail .product-info .lead {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 10px;
  color: #20a4ad;
}
.product-detail .product-info .tit {
  font-size: 40px;
  text-align: left;
}
.product-detail .product-info .facilities {
  position: static;
  margin-top: 20px;
  text-align: right;
}
.product-detail .product-price table {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}
.product-detail .product-price table th, .product-detail .product-price table td {
  border: 1px solid #a4a4a4;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding: 11px;
  font-style: italic;
}
.product-price table tr th{
  background: #f0f0f0;
}
.product-detail .product-price table th {
  width: 41.6667%;
}
.product-detail .product-intro {
  line-height: 1.8;
  margin-top: 15px;
}
.product-detail .product-photo .slick-slide img {
  margin: 0 auto;
}
.product-detail .product-photo .slick-arrow {
  width: 30px;
  height: 80px;
  position: absolute;
  top: 50%;
  margin-top: -40px;
  overflow: hidden;
  text-indent: -999px;
  padding: 0;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 11px auto;
  cursor: pointer;
  z-index: 990;
}
.product-detail .product-photo .slick-prev {
  background-image: url(../img/common/icn_quote_left.png);
  left: 0;
}
.product-detail .product-photo .slick-next {
  background-image: url(../img/common/icn_quote.png);
  right: 0;
}
.product-detail .product-photo .slick-dots {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 100%;
  margin-top: 20px;
}
.product-detail .product-photo .slick-dots li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 7px;
}
.product-detail .product-photo .slick-dots button {
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: 8px;
  background: #ccc;
  cursor: pointer;
  overflow: hidden;
  text-indent: -999px;
}
.product-detail .product-photo .slick-dots .slick-active button {
  background-color: #000;
}
.product-detail .product-video {
  padding: 50px 0 65px;
  margin-bottom: 100px;
  background: url(../img/product/bg_video.png) no-repeat center 0;
  background-size: cover;
}
.product-detail .product-video .wrapper {
  padding: 0 30px;
}
.product-detail .product-point-detail .point {
  margin-bottom: 50px;
}
.product-detail .product-point-detail .txt {
  padding: 0 50px;
  margin-top: 20px;
}
.product-detail .product-point-detail .txt p {
  line-height: 1.8;
  font-weight: 500;
}
.product-detail .product-point-detail figure figcaption {
  font-size: 12px;
  text-align: center;
  margin-top: 8px;
}
.product-detail .case-study {
  margin: 20px 0 35px;
}
.product-detail .case-study a {
  display: block;
  width: 360px;
  margin-right: 10px;
}
.product-detail .case-study a:nth-child(3n) {
  margin-right: 0 !important;
}
.product-detail .case-study .tit {
  display: block;
  text-align: center;
  font-weight: 500;
  margin-top: 14px;
}
.product-detail .tabs {
  border-bottom: 3px solid #20a4ad;
  text-align: center;
}
.product-detail .tabs li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 8px;
}
.product-detail .tabs a {
  display: flex;
  height: 76px;
  align-items: center;
  justify-content: center;
  border: 2px solid #20a4ad;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
  background: url(../img/product/bg_gradient.jpg) repeat-x 0 0;
  background-size: auto 100%;
  padding: 10px;
  width: 327px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #20a4ad;
}
.product-detail .tabs .current a, .product-detail .tabs li:hover a {
  background: #20a4ad;
  color: #fff;
}

.group-heading {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 35px;
}
.group-heading .num {
  flex-basis: 105px;
}
.group-heading .title {
  font-size: 30px;
  font-weight: 600;
  color: #20a4ad;
  line-height: 1.4;
  flex: 1 0 0%;
  padding: 3px 0 3px 16px;
}
.group-heading .title .highlight {
  display: inline;
  background: url(../img/product/line.png) repeat-x 0 101%;
}

.sec-spec {
  margin-top: 130px;
}
.sec-spec .tab-content {
  padding: 50px;
}

.spec-intro {
  margin-top: 35px;
}
.spec-intro .ttl {
  font-size: 30px;
  font-weight: 600;
  color: #20a4ad;
}
.spec-intro .txt {
  line-height: 1.8;
  font-weight: 500;
  margin-top: 15px;
}
.spec-intro .thumb {
  text-align: center;
}

.spec-data {
  margin: 50px 0 75px;
}
.spec-data table {
  width: 100%;
}
.spec-data table th, .spec-data table td {
  border: 1px solid #ccc;
  font-weight: 500;
  padding: 15px 10px 15px 50px;
}
.spec-data table th {
  background: #f0f0f0;
  font-size: 20px;
}
.spec-data table td {
  width: 54.545%;
}

@media (min-width: 768px) {
  .sec-product .sec-title {
    margin-bottom: 60px;
  }

  .product-air-conditioning .sec-title {
    margin-bottom: 95px;
  }

  .feature-product .product {
    width: 580px;
  }

  .related-product .product {
    width: 275px;
    margin-right: 33px;
  }
  .related-product .product:nth-child(4n) {
    margin-right: 0;
  }

  .summary-product .product-info, .summary-product .product-photo {
    width: 50%;
  }
  .summary-product .product-photo {
    padding-left: 60px;
    padding-top: 90px;
  }

  .product-point-detail .point {
    width: 50%;
  }
  .product-point-detail .point.box-inline {
    width: 100%;
  }
  .product-point-detail .box-left-right {
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
  .product-point-detail .box-left-right .box-left {
    width: 500px;
  }
  .product-point-detail .box-left-right .box-right {
    width: 700px;
  }

  .sec-spec .sec-title {
    margin-bottom: 80px;
  }

  .spec-intro .txt-info, .spec-intro .thumb {
    width: 550px;
  }
  .spec-intro .thumb {
    padding-left: 40px;
  }

  .spec-detail .btn-default {
    font-size: 20px;
    width: 600px;
    padding: 28px 0;
  }

  .product-detail .product-info .lead {
    margin-right: -30px;
  }
}
@media (max-width: 767px) {
  .sec-product {
    margin-top: 0;
    padding-top: 40px;
  }

  .product .product-ct {
    padding: 0;
  }
  .product .tit {
    font-size: 20px;
  }

  .feature-product .product {
    margin-bottom: 40px;
  }
  .feature-product .product .tit {
    font-size: 24px;
  }

  .other-product {
    padding-top: 0;
  }

  .product-guide {
    padding: 0;
    margin-top: 30px;
  }
  .product-guide .tit {
    font-size: 20px;
  }
  .product-guide .txt {
    line-height: 1.6;
  }

  .product-detail .product-heading {
    padding: 0;
    margin-bottom: 20px;
  }
  .product-detail .product-heading:before {
    height: auto;
    top: 10px;
    bottom: 10px;
    margin: 0;
  }
  .product-detail .product-info .lead {
    font-size: 18px;
  }
  .product-detail .product-info .tit {
    font-size: 25px;
  }
  .product-detail .product-price table th, .product-detail .product-price table td {
    padding: 10px 5px;
    font-size: 1em;
  }
  .product-detail .product-price table th {
    width: 48%;
  }
  .product-detail .product-photo {
    margin: 30px 0 70px;
  }
  .product-detail .product-video {
    padding: 30px 0;
    margin-bottom: 50px;
  }
  .product-detail .product-video .wrapper {
    padding: 0 15px;
  }
  .product-detail .box-left-right .box-left {
    margin-bottom: 20px;
  }
  .product-detail .product-point-detail .txt {
    padding: 0;
  }
  .product-detail .product-point-detail .txt p {
    line-height: 1.6;
  }
  .product-detail .case-study a {
    width: 100%;
    margin: 0 0 20px;
  }
  .product-detail .tabs {
    white-space: nowrap;
    overflow: auto;
  }
  .product-detail .tabs li {
    margin: 0;
  }
  .product-detail .tabs a {
    width: auto;
    font-size: 15px;
    height: 65px;
  }

  .group-heading {
    margin-bottom: 20px;
  }
  .group-heading .num {
    flex-basis: 65px;
  }
  .group-heading .title {
    font-size: 18px;
    padding-left: 10px;
  }

  .sec-spec {
    margin-top: 80px;
  }
  .sec-spec .tab-content {
    padding: 30px 0;
  }
  .sec-spec .spec-intro {
    margin: 0;
  }
  .sec-spec .spec-intro .ttl {
    font-size: 20px;
  }
  .sec-spec .spec-intro .thumb {
    margin-top: 20px;
  }

  .spec-data {
    margin-bottom: 50px;
  }
  .spec-data table th, .spec-data table td {
    padding-left: 10px;
  }
  .spec-data table th {
    font-size: 16px;
  }
  .spec-data table td {
    font-size: 14px;
  }

  .table-responsive {
    width: 100%;
    overflow: auto;
  }
  .table-responsive table th, .table-responsive table td {
    white-space: nowrap;
  }
  .table-responsive::-webkit-scrollbar-track {
    background-color: #fff;
  }
  .table-responsive::-webkit-scrollbar {
    height: 6px;
    background-color: #F5F5F5;
  }
  .table-responsive::-webkit-scrollbar-thumb {
    background-color: #000000;
    border-radius: 3px;
  }
}
/* PAGE CASE
 * ----------------------------------------------- */
.page-case {
  background-image: url(../img/case/bg_title.jpg);
}

.sec-case {
  padding-bottom: 60px;
}
.sec-case .pagination {
  margin-top: 70px;
}

.nav-controls {
  text-align: center;
  margin-bottom: 50px;
}
.nav-controls li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
}
.nav-controls .nav-link {
  display: block;
  width: 220px;
  line-height: 1.25;
  padding: 24px 10px;
  color: #fff;
  background: #000 url(../img/common/icn_quote.png) no-repeat right 20px center;
  background-size: 11px auto;
}
.nav-controls .current .nav-link, .nav-controls li:hover .nav-link {
  background-color: #20a4ad;
  background-image: url(../img/common/icn_quote_down.png);
}

.delivery-case .case-item {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.35);
  border-radius: 9px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 40px;
}
.delivery-case .case-item .img {
  display: block;
}
.delivery-case .case-item .img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.delivery-case .case-item .case-cats {
  padding-left: 24px;
  margin-top: -20px;
  position: relative;
  z-index: 9;
}
.delivery-case .case-item .case-ct {
  padding: 12px 20px 15px 26px;
}
.delivery-case .case-item .ttl {
  color: #20a4ad;
  text-align: center;
  margin-bottom: 8px;
  font-weight: 500;
}
.delivery-case .case-item .ttl span {
  display: inline-block;
  border-bottom: 1px solid #20a4ad;
  padding: 3px 0;
}
.delivery-case .case-item .txt {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 4px;
}
.delivery-case .case-item .facilities a {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  color: #999999;
  border: 1px solid #999;
  padding: 6px 10px;
  margin: 0 4px 4px 0;
}
.delivery-case .case-item .btn-link {
  display: block;
  width: 100%;
  background: #000 url(../img/common/icn_quote.png) no-repeat right 30px center;
  background-size: 11px auto;
  padding: 9px 10px;
  font-size: 16px;
  text-align: center;
  color: #fff;
}

.case-cats a {
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  background: #20a4ad;
  color: #fff;
  margin-right: 6px;
  padding: 8px 10px;
}
.case-cats a:last-child {
  margin-right: 0;
}

.case-detail {
  padding: 0 50px;
}
.case-detail .heading {
  background: url(../img/case/pattern.png) repeat 0 0;
  padding: 23px 20px;
  margin-bottom: 35px;
}
.case-detail .heading .case-title {
  font-size: 24px;
  font-weight: 500;
  margin-left: 28px;
}
.case-detail .heading .case-title:before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background: #20a4ad;
  margin-right: 10px;
}
.case-detail .detail-info .txt {
  font-weight: 500;
  line-height: 1.8;
}
.case-detail .detail-info .rich-ct {
  padding-right: 50px;
  margin-top: 20px;
}
.case-detail .detail-info .thumbnails figure {
  width: 48.5%;
}
.case-detail .detail-info .facilities {
  margin-top: 20px;
}
.case-detail .detail-info .facilities a {
  display: inline-block;
  border: 1px solid #999;
  font-size: 12px;
  color: #999;
  margin-left: 6px;
  margin-bottom: 6px;
  padding: 6px 10px;
}
.case-detail .detail-info .product-copyright {
  font-size: 16px;
  margin-top: 8px;
  width: 100%;
}
.case-detail .detail-info .product-copyright .date, .case-detail .detail-info .product-copyright .link {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-weight: 600;
}
.case-detail .detail-info .product-copyright .date {
  border-right: 1px solid #000;
  margin-right: 5px;
  padding-right: 4px;
}
.case-detail .detail-info .product-copyright .link {
  color: #20a4ad;
  border-bottom: 1px solid #20a4ad;
  padding: 6px 0;
}
.case-detail .btn-back {
  display: inline-block;
  background: #000 url(../img/common/icn_quote_left.png) no-repeat left 30px center;
  background-size: 11px auto;
  width: 200px;
  text-align: center;
  padding: 20px 10px;
  padding-left: 10px;
  color: #fff;
  margin-top: 50px;
}

@media (min-width: 768px) {
  .delivery-case .case-item {
    width: 382px;
    margin-right: 27px;
  }
  .delivery-case .case-item:nth-child(3n) {
    margin-right: 0 !important;
  }

  .detail-info {
    padding-left: 50px;
  }
  .detail-info .thumb {
    width: 500px;
  }
  .detail-info .info {
    width: 550px;
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .sec-case {
    padding-top: 60px;
  }

  .nav-controls {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .nav-controls li {
    width: 50%;
    margin: 0;
    border-bottom: 1px solid #ffffff;
  }
  .nav-controls li:nth-child(odd) {
    border-right: 1px solid #fff;
  }
  .nav-controls .nav-link {
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .delivery-case .case-item .case-ct {
    padding-left: 20px;
  }

  .case-detail {
    padding: 0;
  }
  .case-detail .heading .case-title {
    margin-left: 0;
    margin-bottom: 15px;
  }
  .case-detail .detail-info .thumb {
    margin-bottom: 20px;
  }
  .case-detail .detail-info .rich-ct {
    padding-right: 0;
  }
}
/* PAGE COMPANY
 * ----------------------------------------------- */
.page-company {
  background-image: url(../img/company/bg_title.jpg);
}

.sec-greeting {
  margin-bottom: 190px;
}

.company-message {
  margin-bottom: 70px;
}
.company-message .lead {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}
.company-message p {
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 1em;
}
.company-message .author {
  font-size: 20px;
  font-weight: 600;
  margin-top: 35px;
}

.sec-company {
  margin-bottom: 80px;
}

.company-profile {
  padding: 0 50px;
}
.company-profile table {
  width: 100%;
}
.company-profile table th, .company-profile table td {
  border: 1px solid #cdcdcd;
  vertical-align: middle;
  padding-top: 16px;
  padding-bottom: 16px;
  line-height: 1.6;
}
.company-profile table th {
  background: #FAFCFE;
  text-align: center;
  color: #20a4ad;
  font-weight: 600;
  width: 295px;
}
.company-profile table td {
  font-weight: 500;
  padding-left: 50px;
  padding-right: 20px;
}
.company-profile .major-product {
  margin-left: -20px;
}
.company-profile .major-product > li {
  position: relative;
  padding-left: 14px;
}
.company-profile .major-product > li:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #cdcdcd;
  margin-right: 8px;
  position: absolute;
  top: 12px;
  left: 0;
}
.company-profile .list-inline li {
  margin-right: 10px;
}
.company-profile .location {
  margin: 5px 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.company-profile .location dt {
  width: 120px;
  text-align: center;
  background: #20a4ad;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  padding: 6px 0;
}
.company-profile .location dd {
  padding-left: 10px;
  -webkit-flex: 1 0 0%;
  flex: 1 0 0%;
}
.company-profile .link-tel {
  display: inline-block;
  color: #20a4ad;
  border-bottom: 1px solid #20a4ad;
}

.list-inline > li {
  display: inline-block;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .company-message .thumb, .company-message .message {
    width: 50%;
  }
  .company-message .message {
    padding-right: 40px;
  }

  .sec-greeting .sec-title,
  .sec-company .sec-title {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .sec-greeting {
    margin-bottom: 80px;
    padding-top: 40px;
  }

  .company-message .thumb {
    margin-bottom: 30px;
  }
  .company-message .message .lead {
    font-size: 20px;
  }
  .company-message .message .author {
    font-size: 16px;
    margin-top: 20px;
  }

  .company-profile {
    padding: 0;
  }
  .company-profile table {
    border-bottom: 1px solid #cdcdcd;
  }
  .company-profile table th, .company-profile table td {
    display: block;
    width: 100%;
    border-bottom: 0;
    text-align: left;
    padding: 15px;
  }
  .company-profile .location dt, .company-profile .location dd {
    line-height: 1.2;
  }
  .company-profile .location dt {
    width: 110px;
  }
  .company-profile .major-product {
    margin: 0;
  }
  .company-profile .major-product > li:before {
    top: 9px;
  }
}
/* PAGE INFORMATION
 * ----------------------------------------------- */
.page-info {
  background-image: url(../img/info/bg_title.jpg);
}

.sec-information {
  margin-bottom: 170px;
}

.list-info {
  margin-bottom: 50px;
}

.notice-item {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 22px 20px;
  background: #F0FCFF;
}
.notice-item:nth-child(odd) {
  border: 2px solid #20a4ad;
  background: #fff;
}
.notice-item > span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.notice-item .date, .notice-item .desc {
  font-size: 14px;
  color: #666;
}
.notice-item .date {
  width: 180px;
  font-weight: 600;
  text-align: center;
}
.notice-item .title {
  width: 395px;
}
.notice-item .desc {
  width: 490px;
}
.notice-item .btn-link {
  right: 15px;
}

.notice-item, .event-item {
  position: relative;
}
.notice-item .title, .event-item .title {
  color: #20a4ad;
  font-weight: 600;
}
.notice-item .title span, .event-item .title span {
  display: inline-block;
  border-bottom: 1px solid #20a4ad;
  padding: 3px 0;
}
.notice-item .btn-link, .event-item .btn-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #000 url(../img/common/icn_quote.png) no-repeat center center;
  background-size: 11px auto;
  position: absolute;
  top: 50%;
  margin-top: -20px;
}

.sec-event {
  margin-bottom: 150px;
}

.list-events {
  margin-bottom: 40px;
}

.event-item {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background: #fff;
  border: 2px solid #20a4ad;
  margin-bottom: 10px;
}
.event-item > * {
  display: block;
}
.event-item .thumbnail {
  width: 148px;
  border-right: 1px solid #20a4ad;
  padding: 12px 0;
  text-align: center;
}
.event-item .entry-meta {
  width: 495px;
  padding-left: 30px;
}
.event-item .desc {
  font-size: 16px;
  width: 495px;
}
.event-item .btn-link {
  right: 6px;
}
.event-item dl {
  display: -webkit-flex;
  display: flex;
  margin-top: 8px;
}
.event-item .cat {
  background: #20a4ad;
  font-size: 16px;
  color: #fff;
  text-align: center;
  padding: 5px 15px;
}
.event-item .date {
  padding-left: 10px;
}

@media (min-width: 768px) {
  .sec-information .sec-title {
    margin-bottom: 60px;
  }

  .sec-event .sec-title {
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .sec-information {
    margin-bottom: 100px;
    padding-top: 40px;
  }

  .notice-item {
    display: block;
    border: 0 !important;
    background: #fff;
    margin-bottom: 20px;
    padding-bottom: 0;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  }
  .notice-item .date, .notice-item .title, .notice-item .desc {
    width: auto;
  }
  .notice-item .date {
    text-align: left;
  }
  .notice-item .title {
    margin: 5px 0 10px;
  }
  .notice-item .desc {
    white-space: normal;
  }
  .notice-item .btn-link {
    display: block;
    width: auto;
    position: static;
    margin: 10px -20px 0;
  }

  .sec-event {
    margin-bottom: 100px;
  }

  .event-item {
    display: block;
    padding: 15px 15px 0;
    margin-bottom: 20px;
    border: 0;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  }
  .event-item .entry-meta, .event-item .desc {
    width: auto;
  }
  .event-item .thumbnail {
    margin: 0 auto 5px;
    border-right: 0;
  }
  .event-item .entry-meta {
    padding: 0;
  }
  .event-item dl {
    -webkit-align-items: center;
    align-items: center;
  }
  .event-item .cat {
    padding: 4px 10px;
  }
  .event-item .date {
    -webkit-flex: 1 0 0;
    flex: 1 0 0;
  }
  .event-item .desc {
    font-size: 1em;
    margin-top: 10px;
  }
  .event-item .btn-link {
    display: block;
    position: static;
    margin: 10px -15px 0;
    width: auto;
  }
}
/* PAGE RECRUIT
 * ----------------------------------------------- */
.page-recruit {
  background-image: url(../img/recruit/bg_title.jpg);
}

.sec-works {
  padding-top: 40px;
  margin-bottom: 90px;
}
.sec-works .text-intro .lead {
  font-size: 24px;
  text-align: center;
  font-weight: 600;
  color: #585A8A;
  margin-bottom: 20px;
}
.sec-works .text-intro .txt {
  line-height: 1.8;
  word-break: break-all;
}
.sec-works .img-works {
  margin-top: 60px;
  overflow: hidden;
}
.sec-works .img-works figure {
  float: left;
  width: 33.333%;
}

.sec-recruit {
  margin-bottom: 100px;
}
.sec-recruit .company-profile table td {
  font-size: 16px;
}
.sec-recruit .company-profile .note {
  font-size: 14px;
}
.sec-recruit .company-profile .major-product:not(.list-inline) > li + li {
  margin-top: 5px;
}
.sec-recruit .company-profile .list-inline > li {
  margin-right: 20px;
}
.sec-recruit .company-profile .list-inline > li:last-child {
  margin-right: 0;
}
.sec-recruit .company-profile .list-inline .major-product {
  margin-left: 0;
}

@media (min-width: 768px) {
  .sec-works .sec-title {
    margin-bottom: 80px;
  }

  .sec-recruit .sec-title {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .sec-works .img-works {
    margin-top: 40px;
  }
  .sec-works .img-works figure {
    float: none;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }

  .sec-recruit .company-profile table td {
    font-size: 1em;
  }
  .sec-recruit .company-profile table td .note {
    font-size: 12px;
  }
}

/*# sourceMappingURL=style.css.map */


.product_catch{
  font-size: 4rem;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
  font-style: italic;
}
.product_catch em{
  font-size: 6rem;
  margin-left: -0.2em;

}
.product_catch strong{
  color: #20a4ad;
}

.product_none{
  width: 100%;
  text-align: center;
  font-size: 28px;
}

.product_list_thumbnail_img{
  width: 200px;
  height: 200px;
  background: #FFF;
  margin-right: 12px;
  _zoom: 1; overflow: hidden;
}
.product_list_thumbnail_img:nth-of-type(2){
  margin-right: 0;
}
.product_list_thumbnail_img img{
  width: auto;
  height: 100%;
}
.product_list_thumbnail_img a{
  width: auto;
  height: 100%;
  text-align: center;
  padding: 10px;
}

/*---------------------------------------------
 **  スマホ対応
---------------------------------------------*/
@media screen and (max-width: 740px) {

  /* 製品紹介 詳細ページ */
  .product_catch{
    font-size: 5vw;
    font-weight: bold;
    font-family: 'Noto Sans JP', sans-serif;
    font-style: italic;
  }
  .product_catch em{
    font-size: 9vw;
    margin-left: -0.2em;
  
  }
  .product_catch strong{
    color: #20a4ad;
  }


  .product_list_thumbnail_img {
    width: 47.9%;
    height: 140px;
  }
  .product_list_thumbnail_img img {
    width: auto;
    height: 100%;
  }
  .product-list .product-item .products a {
    width: 100%;
  }

}/* ■ここまで■ */


.lead_list{
font-size: 24px;
font-weight: 600;
line-height: 1.2;
margin-top: 10px;
color: #20a4ad;
}



@media (min-width: 768px) {
  .product.mini .thumb {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    /* background: #FFF; */
    max-height: 290px;
    height: 100%;
  }
  .product.mini .thumb img {
    height: 100%;
    width: auto;
  }
}

.tac{
  text-align: center;
}


.case-detail p{
  font-weight: 500;
  line-height: 1.8;
}

.case-detail p:last-of-type{
  margin-bottom: 20px;
}










/*===========================================================================================*/
/**  お問い合わせフォーム	*/
/*====================================================================================*/
.flex_wrapper{
  display: flex;
}
.form_inner {
  background: #fff;
  margin-bottom: 0;
  padding: 0 0 0.1rem;
}

.form_inner dl {
  padding: 20px 5% 6px 5%;
  border-bottom: 1px solid #cdcdcd;
  margin: 0;
}

.form_inner dl dt {
  position: relative;
  padding-left: 30px;
  width: 30%;
  font-size: 20px;
  font-weight: bold;
}
.form_inner dl dd {
  position: relative;
  padding-left: 30px;
  width: 80%;
}

.form_inner dl dt:before {
  width: 9px;
  height: 33px;
  position: absolute;
  top: 3px;
  left: 0px;
  background: #1fa4ac;
  content: "";
}

.form_inner input[type="text"],
.form_inner input[type="number"],
.form_inner input[type="email"],
.form_inner input[type="tel"] ,
.form_inner input[type="date"]{
  max-width: 90%;
  height: 2.5em;
  padding: 8px 2%;
  border: none;
  background: #f9f9f9;
  font-size: 100%;
  -moz-border-radius: 9px;
  -webkit-border-radius: 9px;
  border-radius: 9px;
  box-shadow: 1px 1px 1px 0px #ccc inset;
  margin-bottom: 1rem;
}
.form_inner input[type="date"]{
font-size: 110%;
padding: 8px 1%　8px 2% !important;
}
.form_inner select {
  max-width: 90%;
  height: 2em;
  padding: 2px 2%;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: #fafafa;
  font-size: 100%;
  -moz-border-radius: 9px;
  -webkit-border-radius: 9px;
  border-radius: 9px;
  box-shadow: 1px 1px 1px 0px #ccc inset;
}

.rtl1,
.rtl2  { width:150px;}

.form_inner textarea {
  display: block;
  width: 90%;
  max-width: 90%;
  height: 200px;
  padding: 8px 2%;
  resize: vertical;
  border: unset;
  border-radius: 3px;
  -moz-border-radius: 9px;
  -webkit-border-radius: 9px;
  border-radius: 9px;
  background:#f9f9f9;
  font-size:110%;
  box-shadow: 1px 1px 1px 0px #ccc inset;
}

.cb label {
  margin-right: 3rem;
}

.w100_input_txt input {
  width: 100%;
}

.form_submit {
  background: #ffffff; /* Old browsers */
  background: -moz-linear-gradient(
    top,
    #ffffff 0%,
    #e7eef8 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    #ffffff 0%,
    #e7eef8 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #e7eef8 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e7eef8',GradientType=0 ); /* IE6-9 */

  border: 1px solid #f0f0f0;
  font-size: 1.6rem;
  padding: 1rem 1.5rem;
}

.wpcf7-submit {
  margin: 1rem auto;
  display:block;
  padding: 9px 15px;
  vertical-align: middle;
  line-height: 1;
  border: unset;
  color: #ffffff;
  font-family: inherit;
  -webkit-appearance: none;
  font-size: 100%;
  background: #1fa4ac;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  font-size: 20px;
  padding: 20px 30px;
  margin-top: 40px;
  margin-bottom: 41px;
  cursor: pointer;
}
/* hover */
.wpcf7-submit {	-webkit-transition: 0.3s ease-in-out;	-moz-transition: 0.3s ease-in-out;	-o-transition: 0.3s ease-in-out;	transition: 0.3s ease-in-out;}
.wpcf7-submit:hover{ opacity:0.6; filter:alpha(opacity=60); -ms-filter: "alpha( opacity=60 )"; }

.bg_05 {
  background: #f1fbfc;
  padding: 5.5rem 0;
}



.wpcf7-mail-sent-ok,
.wpcf7-validation-errors{
  width:90%;
  background:#FBFBFD;
  border: 7px solid #1fa4ac;
  margin:2rem auto;
  padding: 6rem 4rem;
  font-size: 2.5rem;
  text-align:center;
  /* color: #1fa4ac; */
}

.screen-reader-response{
  width:90%;
  /*
  border: 3px solid #FFF;
  margin:2rem auto;
  padding:2rem;
  */
  text-align:center;
}

.wpcf7-not-valid-tip{
  color:#FF0000;

  border:1px solid #FF0000;
  padding:0.2rem 1rem;
  margin:0.2rem;
  display:inline-block;
}


.screen-reader-response ul{ display:none;}

.screen-reader-response{display:none;}


span.wpcf7-not-valid-tip {
  display: inline-block !important;
  margin: 0 0 0 20px;
}


div.wpcf7-response-output {
  margin: 0 auto 30px !important;
  padding: 13px 5% !important;
  font-size: 20px;
}


@media (max-width: 768px) {
  .flex_wrapper{
    display: block;
  }
  .form_inner dl dt {
    width: 100%;
  }
  .form_inner dl dd {
    position: relative;
    padding-left: 0;
    padding: 20px 0 0 0;
    width: 100%;
  }
}



@media (min-width: 768px) {
  .delivery-case .case-item .txt {
    height: 56px;
  }
}

.a_tag_invalid{
  pointer-events: none;
}  




/*=================================================================================================================================*/
/**  グーテンベルグ対応CSS	*/
/*=================================================================================================================================*/
.wp-block-spacer{
  width: 100%;
}
figcaption {
  width: 100%;
  text-align: center;
  padding: 0.2rem 0rem 0rem;
}
.wp-block-gallery {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  padding-left: 0;
}
.wp-block-gallery li {
  margin: 0;
}

/* 画像 */
.wp-block-image{
  margin-bottom: 25px;
}

/* ul  */
section ul li {
	list-style-type: unset;
  margin-left: 2em;
}
section ul{
  margin-bottom: 20px;
}


.columns-1 .blocks-gallery-item {
  width: 100%;
}
.columns-2 .blocks-gallery-item {
  width: 49%;
}
.columns-3 .blocks-gallery-item {
  width: 32%;
}
.columns-4 .blocks-gallery-item {
  width: 24%;
}
.columns-5 .blocks-gallery-item {
  width: 19%;
}
.columns-6 .blocks-gallery-item {
  width: 15%;
}

/* カラム */
@media (min-width: 768px) {
  .wp-block-columns {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    width: 100%;
  }
  .has-2-columns .wp-block-column {
    width: 48%;
  }
  .has-3-columns .wp-block-column {
    width: 32%;
  }
  .has-4-columns .wp-block-column {
    width: 24%;
  }
  .has-5-columns .wp-block-column {
    width: 24%;
  }
  .has-6-columns .wp-block-column {
    width: 15%;
  }
}

/* テーブル */
.wp-block-table {
  width: 90%;
  min-width: 240px;
  border-collapse: collapse;
  margin:0 auto 30px;
}
.wp-block-table td,
.wp-block-table th {
  padding: 1.5em 2em;
  border: 1px solid;
  word-break: break-all;
}
.wp-block-table th,
.wp-block-table td {
  border-color: #bbb;
}

.wp-block-table th{
  width:25%;
  background: #F3F4F5;
  font-size:110%;
}

/* ボタン */
.wp-block-button__link{
  font-size: 20px;
  max-width: 600px;
  padding: 28px 0;
  background: #000 url(/img/common/icn_quote.png) no-repeat right 30px center;
  background-size: 11px auto;
  color: #fff;
  -moz-border-radius:0; -webkit-border-radius:0; border-radius:0;
  margin: 0 auto;
  display: block;
}
.wp-block-button {
  width: 100%;
}

.is-style-stripes tr:nth-child(odd) {
  background-color: #f3f4f5;
}



@media (min-width: 768px) {
  .wp-block-media-text{
    display: grid;
    _zoom: 1; overflow: hidden;
    width: 100%;

  }
  .wp-block-media-text__media{

  }
  .wp-block-media-text__content{
    padding: 15px 30px;


  }
}


/* カラー */
.has-navy-color{
  color: #171A5F;
}
.has-vivid-cyan-blue-color{
  color: #0693e3;
}
.has-light-gray-color{
  color: #eeeeee;
}
.has-cyan-blue-gray-color{
  color: #abb8c3;
}
.has-dark-gray-color{
  color: #313131;
}


.has-navy-background-color{
background: #171A5F;
}
.has-vivid-cyan-blue-background-color{
  background: #0693e3;
}
.has-light-gray-background-color{
background: #eeeeee;
}
.has-cyan-blue-gray-background-color{
  background: #abb8c3;
}
.has-dark-gray-background-color{
  background: #313131;
}






#product_g_wrapper p{
  margin-right: 5%;
  margin-left: 5%;
  line-height: 1.8;
  font-weight: 500;
}

#product_g_wrapper h3{
  font-size: 30px;
  font-weight: 600;
  color: #20a4ad;
  line-height: 1.4;
  flex: 1 0 0%;
  padding: 3px 0 3px 120px;
  margin-bottom: 35px;
  position: relative;
}

#product_g_wrapper h3 strong{
display: inline;
background: url(/img/product/line.png) repeat-x 0 101%;
}



/* 取り扱い機器専用CSS */
.product_page .wp-block-columns{
  margin-bottom: 0 !important;
}
.has-2-columns .wp-block-column{
  margin-bottom: 0 !important;
}
#product_g_wrapper .has-2-columns .wp-block-column p{
  margin-bottom: 0 !important;
  margin-right: 0% !important;
  margin-left: 9.8%;
}

#product_g_wrapper h3 img{
  display: block;
  margin: 0 15px 0 0;
  /*   float: left; */
  position:absolute;
  left: 0;
}

@media (max-width: 767px) {
  #product_g_wrapper h3{
    font-size: 18px;
    padding: 0px 5% 0 58px;
    margin-bottom: 20px;
  }
    #product_g_wrapper h3 br{
      display:none;
    }

  #product_g_wrapper h3 img{
    width: 50px !important;
    position: absolute;
    left: 0;
    top: 4px;
  }
  #product_g_wrapper .has-2-columns .wp-block-column p{
    margin-bottom: 0 !important;
    margin-right: 5% !important;
    margin-left: 5%;
  }
  #product_g_wrapper p{
    line-height: 1.6;
  }

  #product_g_wrapper .wp-block-column{
    margin-bottom: 20px !important;

  }
  .spacer_60{
    height: calc((60px)/2) !important;
  }

  .wp-block-image{
    margin-right: 5% !important;
    margin-left: 5%;
  }



}


.wp-block-image{
  width: 100%;
}

.wp-block-image img {
  height: auto;
  width: 100%;
}


#case_single .wp-block-image img {
  width: unset;
}

#case_single p+.wp-block-image {
  margin-top: 10px;
}

#case_single p+.wp-block-columns {
  margin-top: 10px;
}

#case_single .wp-block-columns img{
  width: 100%;
  height: auto;
}

/* グーテンベルク table */

table.table013{width: 100%;border:1px solid #e6e6e6;background:#FFF;margin-bottom: 0;}

table.table013 th{
	line-height:1.8;
	padding: 8px 6px;
	border:1px solid #e6e6e6;
	background-color:#f5f5f5;
	font-weight:bold;
	vertical-align:top;
	text-align:center;
	font-size: 16px;
}
table.table013 td{
	line-height:19px;
	padding: 8px 6px 8px 6px;
	border:1px solid #e6e6e6;
	vertical-align: middle;
	text-align:center;
	font-size: 17px;
}
table.table013 td.mong{ padding:8px; text-align:left;}

#product_g_wrapper h2{
  width:100%;
  font-size: 45px;
  font-weight: 600;
  color: #20a4ad;
  padding: 3px 0 0px 0px;
  margin-bottom: 28px;
  position: relative;
}
@media (max-width: 767px) {
  #product_g_wrapper h2 {
    font-size: 40px;
    margin-bottom: 17px;
  }
}

.gtn_table{
  width: 100%;
  overflow: auto;
  margin-bottom:15px;
}
@media (max-width: 767px) {
  table.table013 th {
    font-size: 13px;
  }
  table.table013 td {
    font-size: 13px;
  }
}


.gtn_table_2{
  width: 100%;
  overflow: auto;
  margin-bottom:15px;
}
.gtn_table_2 table.table013 th {
  width: 50%;
}
@media (max-width: 767px) {
  .gtn_table_2 table.table013 th {
    font-size: 13px;
  }

}


a {
 text-decoration: none !important;
}

#case_cat{
  color: #000000;
  margin-bottom: 40px;
}



.sec-title{
  margin-bottom: 0;
}



@media (min-width: 767px) {
  .product-detail {
  }

}
@media (max-width: 767px) {
  .wp-block-image {
    width: 90%;
  }

}


.sec-title {
  padding: 0 50px;
  margin: 160px 0 40px;
}


.wp-block-embed__wrapper {
  position: relative;
  width: 100% !important;
  height: 100% !important;
}

.wp-block-embed__wrapper video,
.wp-block-video {
  width: 100% !important;
  height: 100% !important;
  overflow: hidden;
  position: relative;
}