@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 13px;
}

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 #0085b2;
  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: 5px;
    padding-right: 5px;
  }
}

@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: #0085b2;
}

.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;
    font-size: 16px;
  }

  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 #0085b2;
  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: #0085b2;
}

.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: #0085b2;
  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 #0085b2;
  border-radius: 4px;
  background: #fff;
  width: 392px;
  padding: 3px 0;
  color: #0085b2;
  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%;
  }
}

footer {
  background: url(../img/common/bg_footer.jpg) no-repeat center bottom;
  padding: 130px 0 130px;
  padding-bottom: 75px !important;

}

footer .footer-logo {
  margin-bottom: 20px;
}

footer .footer-logo a {
  display: inline-block;
}

footer .footer-logo img {
  display: block;
  margin: 0 auto;
}

footer .block-contact {
  background: #fff;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.15);
}

footer .block-contact .company {
  width: 638px;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

footer .block-contact .company .thumb-map {
  width: 195px;
  text-align: center;
  position: relative;
  top: -16px;
}

footer .block-contact .company .txt {
  flex: 1 0 0%;
  font-weight: bold;
  padding-bottom: 50px;
}

footer .block-contact .ct-us {
  width: 562px;
  padding-top: 20px;
}

footer .block-contact .phone-ct {
  padding-top: 14px;
}

footer .block-contact .phone-ct a {
  display: block;
  font-size: 50px;
  font-weight: bold;
  line-height: 1;
  background: url(../img/common/yubin_tel.png) no-repeat 0 center;
  padding-left: 70px;
}

footer .block-contact .phone-ct .schedule {
  padding-left: 75px;
  color: #666;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

footer .block-contact .mail-ct a {
  display: block;
  margin-left: 20px;
}

footer .block-address {
  padding: 0 20px;
  margin: 35px 0;
}

footer .block-address .list-address {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

footer .block-address .list-address li {
  width: 550px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #fff;
  position: relative;
  padding: 12px 0 12px 15px;
}

footer .block-address .list-address li:nth-child(2n) {
  margin-left: 50px;
}

footer .block-address .list-address li:after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #bdd9f8;
}

footer .block-address .list-address li .name {
  margin-right: 10px;
  color: #0085b2;
}

footer .block-address .list-address li .zip {
  margin-right: 15px;
}

footer .block-address .list-address .fz-sm {
  font-size: 16px;
}

footer .copyright {
  font-size: 14px;
  font-weight: 500;
  padding-left: 40px;
}

footer .sns {
  font-size: 14px;
  font-weight: 500;
}

footer .sns a {
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
}

footer .sns-link img {
  margin-right: 8px;
}

footer .btn-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9990;
}

footer .btn-top img {
  display: block;
}

@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 100px;
    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;
  margin-bottom: 0.4rem;
}

.sec-title small {
  color: #0085b2;
  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: 37px;
  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,
.btn a {
  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,
.btn-default-wp a {
  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: #0085b2;
  display: inline-block;
  padding: 3px 0;
  border-bottom: 1px solid #0085b2;
}

.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;
}

.breadcrumb li br {
  display: none !important;
}


@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: #0085b2;
  color: #0085b2;
}

.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: #0085b2;
    color: #0085b2;
  }

  .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: -0;
  width: 100%;
}

.news-wrapper {
  padding-bottom: 100px;
}

.news-wrapper .block-top-news {
  position: relative;
}

.btn-m-30 {
  margin: 40px 0;
}

.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 #0085b2;
  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;
  color: #0085b2;
}

.block-top-news .news-item .date {
  margin-right: 15px;
}

.section-product {
  padding: 0px 0 10px;
}

.section-product .sec-title {
  margin-bottom: 30px;
}

.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: 1.8em;
  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?01) !important;
  padding: 60px 0 183px;
  background-size: 158%;
  background-size: 145%;
  background: cover;
  padding-bottom: 60px;
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .product-item.air {

    background-size: cover !important;

  }
}


.product-item.air .products {
  padding: 10px 60px 0 78px;
}

.product-item.air+.light {
  margin-top: -181px;
  margin-top: 0;
}

.product-item.light {
  z-index: 4;
  background-image: url(../img/top/bg_lighting.png?01) !important;
  padding: 55px 0 60px;
  background-size: cover;
}

.product-item.light .products {
  padding: 0 60px 10px 78px;
}

.product-item.air .products.cool {
  padding-top: 25px;
}

/*
斜めバージョン
.product-item.smoke {
  z-index: 3;
  background-image: url(../img/top/bg_smoke.png);
  padding: 70px 0 180px;
  margin-top: 8px;
} */

.product-item.smoke {
  z-index: 3;
  background-image: url(../img/top/bg_smoke_st.png) !important;
  background-size: cover;
  padding: 100px 0 210px;
  padding: 55px 0 40px;
  margin-top: 8px;
  margin-bottom: 0;
  padding-bottom: 60px;
}

@media (min-width: 768px) {
  .product-item.smoke {
    /* height: 536px; */
  }
}

.product-item.smoke .products {
  padding: 10px 60px 0 78px;
}

/*---------------------------------------------
 **  遮熱シート
---------------------------------------------*/
.product-item.is {
  z-index: 3;
  background-image: url(../img/top/bg_is.png);
  background-size: cover;
  padding: 100px 0 210px;
  margin-top: 8px;
  margin-bottom: 0;
  padding: 70px 0 70px;
}

@media (min-width: 768px) {
  .product-item.is {
    /* height: 536px; */
  }
}

.product-item.is .products {
  padding: 10px 60px 0 78px;
}



.section-delivery-case {
  margin-bottom: 30px;
  padding: 40px 0 0;
}

.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: 38px;
  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: 15px;
  color: #0085b2;
  font-weight: 500;
  text-align: center;
}

.list-case .case-item .ttl span {
  display: inline-block;
  border-bottom: 1px solid #0085b2;
  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 40px;
    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: 17px;
  color: #fff;
  height: 34px;
  padding: 4px 2px 5px 11px;
  margin-bottom: 5px;
  min-width: 122px;
  text-align: center;
  font-weight: bold;
  position: relative;
}

.product .label-cat:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 34px 0 0 25px;
  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);
}

@media (min-width: 768px) {
  .product .tit {
    min-height: 70px;
  }
}

.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 {
  padding: 45px 0;
}

.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: #0085b2;
}

.product-detail .product-info .tit {
  font-size: 38px;
  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 #0085b2;
  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 #0085b2;
  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: #0085b2;
}

.product-detail .tabs .current a,
.product-detail .tabs li:hover a {
  background: #0085b2;
  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: #0085b2;
  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: #0085b2;
}

.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: 375px;
    margin-right: 33px;
  }

  .related-product .product:nth-child(3n) {
    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: left;
  margin-bottom: 50px;
}

.nav-controls li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
  text-align: center;
}

.nav-controls .nav-link {
  display: block;
  width: 288px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.25;
  padding: 24px 10px;
  color: #fff;
  background: #000 url(../img/common/icn_quote.png) no-repeat right 14px center;
  background-size: 11px auto;
}

.nav-controls .current .nav-link,
.nav-controls li:hover .nav-link {
  background-color: #0085b2;
  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: 20px;
  display: flex;
  flex-direction: column;
}

.delivery-case .case-item .img {
  display: block;
}

.delivery-case .case-item .img img {
  width: 100%;
  height: 200px;
  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: #0085b2;
  text-align: center;
  margin-bottom: 8px;
  font-weight: 500;
}

.delivery-case .case-item .ttl span {
  display: inline-block;
  border-bottom: 1px solid #0085b2;
  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;
  margin-top: auto;
}

.case-cats a,
.case-cats .case-category {
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  background: #00a3d9;
  color: #fff;
  margin-right: 6px;
  padding: 8px 10px;
}

.case-cats a:last-child,
.case-cats .case-category: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: #0085b2;
  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: #0085b2;
  border-bottom: 1px solid #0085b2;
  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;
}

.btn-back-02 {
  max-width: 500px !important;
  padding: 30px 10px !important;
  width: 100% !important;
}

.wp-singel-all {
  display: block !important;
}

.wp-singel-all p {
  margin-bottom: 1em;
}

.wp-singel-all h3 {
  margin-top: 3em;
  font-size: 30px;
  display: block;
  line-height: 1.333;
  margin-bottom: 1rem;
}


@media (min-width: 768px) {
  .delivery-case .case-item {
    width: 373px;
    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: 28px;
  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: #0085b2;
  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: #0085b2;
  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: #0085b2;
  border-bottom: 1px solid #0085b2;
}

.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 #0085b2;
  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: #0085b2;
  font-weight: 600;
  margin-right: 1em;
}

.notice-item .title span,
.event-item .title span {
  display: inline-block;
  border-bottom: 1px solid #0085b2;
  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 #0085b2;
  margin-bottom: 10px;
}

.event-item>* {
  display: block;
}

.event-item .thumbnail {
  width: 148px;
  border-right: 1px solid #0085b2;
  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: #0085b2;
  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: 0em;
}

.product_catch em.kakko {
  margin-left: -0.4em;
}

.product_catch strong {
  color: #0085b2;
}

.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%;
  object-fit: contain;
}

.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: -0em;
  }

  .product_catch em.kakko {
    margin-left: -0.4em;
  }

  .product_catch strong {
    color: #0085b2;
  }

  .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: #0085b2;
}

@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;
}

/* hover */
.hover {
  -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;
}

.hover:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}

.img_top {
  padding: 30px 0 0 0;
  _zoom: 1;
  overflow: hidden;
}

@media (max-width: 768px) {
  .img_top div {
    width: 90%;
    margin: 0 5% 30px;
  }
}

.footer_banner {
  border-top: 1px solid #bdd9f8;
  position: relative;
  max-width: 1160px;
  width: 100%;
  margin: 50px auto 0;
  padding: 30px 20px 0;
  text-align: center;
}

.footer_banner:before {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  border-top: 1px solid #fff;
}

.footer_banner_img {
  height: 80px;
}

@media (min-width: 768px) {
  .img_top {
    width: 1200px;
    margin: 0 auto;
  }

  .img_top div {
    text-align: center;
    font-weight: bold;
  }

  .img_top div img {
    padding-bottom: 10px;
  }

  .img_top div p {
    border-bottom: 1px solid #000;
    display: inline-block;
    font-size: 22px;
    padding: 0 0 5px 0;
    letter-spacing: 0.5px;
  }

  .img_top_b_L {
    width: 47%;
    float: left;
    _zoom: 1;
    overflow: hidden;
  }

  .product-info-half {
    width: 46% !important;
    margin: 0 2%;
  }

  .product-info-half a {
    margin: 15px auto;
    display: block;
  }
}

@media (max-width: 768px) {
  .product-info-half {
    margin: 0 0% 30px !important;
  }
}

.img_top_b_R {
  width: 51%;
  float: right;
  _zoom: 1;
  overflow: hidden;
  padding: 11px 0 0 0;
}

@media (max-width: 768px) {
  .img_top div img {
    margin-bottom: 4px;
  }

  .img_top div p {
    font-size: 14px;
    text-align: center;
  }
}

.rental .facilities {
  display: none;
}

.rental .product.mini .thumb {
  margin-bottom: 0;
}

.dn {
  display: none;
}

.rev_list {
  justify-content: space-between;
  box-sizing: border-box;
  /*通常の記述*/
  -webkit-box-sizing: border-box;
  /*Google ChromeやSafariの機能を利用*/
  -moz-box-sizing: border-box;
  /*Firefoxの機能を利用*/
  margin: 30px auto;
  padding: 15px 20px;
  border: 3px solid #058d8d;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  width: 90%;
}

.rev_list li {
  position: relative;
  padding-left: 24px;
  display: inline-block;
  margin-right: 30px;
  line-height: 1.8;
}

.rev_list li:before {
  width: ■;
  height: ■;
  position: absolute;
  top: 0px;
  left: 0px;
  content: "●";
  color: #058d8d;
}

.btn_typ {
  background-color: #0085b2;
  padding: 18px;
  width: 292px;
}

.bd_box {
  border: 1px solid #0085b2;
  padding: 10px;
  background: #ffffff;
  color: #0085b2;
  font-size: 90%;
  font-weight: bold;
  text-align: center;
}

.btn-blue {
  background-color: #1383b2;
}

.btn-blue .wp-block-button__link {
  background-color: #1383b2;
}

.fz15 {
  font-size: 15px;
}

@media (max-width: 767px) {
  .fz15 {
    font-size: 14px;
  }
}

.fwb500 {
  font-weight: 500;
}

.ts_01 {
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.22);
  text-shadow: 1px 0px 2px rgb(255 255 255);
  color: #064b66;
  font-weight: bold;
  font-size: 15px;
}

.mt10 {
  margin-top: 10px;
}

.lh16 {
  line-height: 1.6;
}

.bnr_ed {
  display: block;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .bnr_ed {
    margin-top: 20px;
    margin-bottom: 15px;
  }
}

.only_sp_none {
  display: none;
}

@media (min-width: 768px) {
  .only_sp_none {
    display: block;
  }
}

@media (max-width: 767px) {
  .only_sp_none {
    display: none;
  }
}

.ryouhu_top_p {
  padding: 0 3%;
}

@media (max-width: 767px) {
  .ryouhu_top_p {
    text-align: left;
  }
}

.tm {
  font-size: 90%;
  margin-left: -17px;
}

.tm.koujyoumarugoto {
  margin-left: -17px;
}

@media (max-width: 767px) {
  .product.mini img {
    width: 80%;
  }
}

.rooffan-category {
  border: 1px solid #4399e2;
  color: #4399e2;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  margin: 0 auto;
  padding: 3px 21px 4px 21px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.others_product img {
  height: 290px !important;
  width: auto !important;
  margin: 0 auto;
  display: block;
  margin-bottom: 40px;
}

.others_product h4 {
  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);
  margin-bottom: 30px !important;
}

.ed_bt {
  display: block;
  font-size: 11px;
  margin-top: 6px;
  color: #fff;
  font-weight: normal;
}

.btn-size-s {
  font-size: 14px;
}

.bg-movie {
  height: 800px !important;
  width: 100% !important;
  overflow: hidden;
}

.header_area {
  position: relative;
  margin: 0 auto;
  width: 1280px;
  z-index: 1000;
}

@media screen and (max-width: 1280px) {
  .header_area {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .bg-movie {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

@media (min-width: 768px) {
  .pick-01 {
    width: 60%;
    margin-top: -80px;
  }

  .pick-02 {
    width: 100%;
    margin-top: -24px;
    margin-bottom: 10px;
  }

  .pick-03 {
    width: auto;
    max-height: 264px;
    margin-top: -90px;
  }

  .pick-title {
    font-size: 26px !important;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 2px !important;
  }
}

@media screen and (max-width: 640px) {
  .pick-01 {
    width: 45%;
    margin-top: -70px;
  }

  .pick-02 {
    width: 66%;
    margin-top: -20px;
  }

  .pick-03 {
    width: 55%;
    margin-top: -70px;
  }

  .pick-title {
    font-size: 20px !important;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 2px !important;
  }

  .pane-ttl {
    margin-top: 80px !important;
  }
}

.pickup_link {
  color: #fff !important;
}

.icon_img_fukidashi_01 {
  position: relative;
}

.icon_img_fukidashi_02 {
  position: relative;
}

.icon_img_fukidashi_03 {
  position: relative;
}

.icon_img_fukidashi_01:after {
  width: 100px;
  height: 100px;
  background: url(../img/top/icon_img_fukidashi_01.png) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  top: -30px;
  left: -30px;
  content: "";
}

.icon_img_fukidashi_02:after {
  width: 100px;
  height: 100px;
  background: url(../img/top/icon_img_fukidashi_02.png) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  top: -30px;
  left: -30px;
  content: "";
}

.icon_img_fukidashi_03:after {
  width: 100px;
  height: 100px;
  background: url(../img/top/icon_img_fukidashi_03.png) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  top: -30px;
  left: -30px;
  content: "";
}

@media (max-width: 767px) {
  .icon_img_fukidashi_01:after {
    width: 70px;
    height: 70px;
    top: -10px;
    left: 10px;
  }

  .icon_img_fukidashi_02:after {
    width: 70px;
    height: 70px;
    top: -10px;
    left: 10px;
  }

  .icon_img_fukidashi_03:after {
    width: 70px;
    height: 70px;
    top: -10px;
    left: 10px;
  }
}

.fz18 {
  font-size: 18px !important;
}

.txt_box {
  margin-bottom: 30px;
}

.btn-typ-01 {
  padding: 2%;
}

img.ha {
  height: auto !important;
}

/*---------------------------------------------
 **  TOPページスライドショー
---------------------------------------------*/

.main_img_wrapper {
  background: url(../img/top/pattern02.png) no-repeat center 0;
  background-size: cover;
  color: #fff;
  padding: 3% 0;
}

#slideshow>li {
  width: 100%;
  height: 100%;
}

.main_img_slide_01 {
  /* background: url(/img/top/img_slide_0.png?0526) 0 0 no-repeat; */
}

.main_img_slide_01,
.main_img_slide_02,
.main_img_slide_03,
.main_img_slide_04 {
  background-size: contain;
}

.slideshow {
  max-width: 1300px;
  height: 459px;
  list-style-type: none;
  margin: 0 auto;
  padding: 0;

  max-width: unset;
  height: unset;
  padding: 20px;
  background: #143F73;
}

@media (min-width: 1260px) and (max-width: 1531px) {
  header .logo {
    width: 16%;
    height: auto;
    margin: 38px 0 0 50px;
  }
}

@media (min-width: 1290px) and (max-width: 1300px) {}

@media (max-width: 1260px) {
  header .logo {
    width: 270px;
  }
}

/* SP用メディアクエリ */
@media screen and (max-width: 812px) {
  .main_img_wrapper {
    width: 100%;
    /* スライドショー幅（SP）*/
    height: 100%;
  }

  #slideshow>li {
    background: none;
  }

  .slideshow {
    height: 100%;
  }
}

@media (min-width: 768px) {
  .only_pc_none {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .product-guide-02 {
    padding: 70px 60px;
  }
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

body {
  padding-top: 100px;
}

@media (max-width: 767px) {
  body {
    padding-top: 66px;
  }
}

.mt-60 {
  margin-top: 60px;
}

.mt-120 {
  margin-top: 120px !important;
}

.btn-maintenance {
  background-color: #ff0000;
}

@media (max-width: 767px) {
  .btn-maintenance {
    margin-top: 15px;
  }
}

#operator,
#toplight {
  margin-top: -130px;
  padding-top: 130px;
}

.blk-center {
  margin: 0 auto;
}

@media (max-width: 767px) {
  .tal-sp {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    margin-bottom: 50px;
  }

  .wp-block-embed__wrapper iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.img-company {
  max-width: 701px;
  width: 100%;
  margin: 0 auto 10px;
}

.mb-40 {
  margin-bottom: 40px;
}

.p-company {
  font-size: 80%;
}

.clm-02-center {
  margin: 0 auto;
}

.fsz-30 {
  font-size: 30px !important;
}

.fsz-20 {
  font-size: 20px !important;
}

@media (max-width: 767px) {
  .fsz-30 {
    font-size: 25px !important;
  }

  .fsz-20 {
    font-size: 18px !important;
  }
}

h4.mb-5 {
  margin-bottom: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.product-spec-p {
  letter-spacing: 1px;
  line-height: 1.3 !important;
  margin: 0 0 15px 0;
}

.product-spec-p span {
  padding: 0 2px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .spot-wrapper img {
    height: 350px !important;
  }
}

.h-bdr_LR {
  position: relative;
}

.h-bdr_LR:before,
.h-bdr_LR:after {
  width: 15%;
  height: 1px;
  margin: auto 0;
  top: -10px;
  display: inline-block;
  background: #000000;
  position: relative;
  content: "";
}

@media (max-width: 767px) {

  .h-bdr_LR:before,
  .h-bdr_LR:after {
    width: 5%;
  }
}

.h-bdr_LR:before {
  margin: 0px 20px 0 20px;
}

.h-bdr_LR:after {
  margin: 0px 0 0 20px;
}

.clm-btn-wrapper {
  width: 90% !important;
  margin: 0 auto 70px !important;
  padding: 0px 20px 0;
}

.page-single-planninng {
  padding: 20px 50px;
  width: 100%;
  max-width: 510px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.sitemap_inner_page {
  padding: 0 5%;
  margin-top: -20px;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1.8;
}

/* hover */
.sitemap-link-hover a {
  -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;
}

.sitemap-link-hover a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}

.txt-f-z-12 {
  font-size: 12px;
}

.txt-f-z-14 {
  font-size: 14px;
}

.txt-right {
  text-align: right;
}

.txt-fw-b {
  font-weight: bold;
}

.txt-size-25 {
  font-size: 25px;
}

.page-title .product-txt-s {
  font-size: 16px;
  display: block;
}

/* 【 PC 】 768px ～ */
@media (min-width: 768px) {
  .page-title .product-txt-s {
    font-size: 1.6rem;
  }
}

.product-single-pankuzu span {
  display: none;
}

.product-single-pankuzu strong {
  font-size: 16px;
  display: inline-block;
  line-height: 1.333;

}

/* 製品　詳細ページ */
.product-single-h3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* 製品名 */
.product-single-h3 .product-txt-s-01 {
  display: block;
  order: 1;
  width: 100%;
}

/* 対策キーワード */
.product-single-h3 .product-txt-s {
  display: inline-block;
  text-align: left;
  font-size: 19px;
  order: 2;
}

.product-single-h3 .product-txt-s:before {
  display: inline-block;
  content: "（";
}

.product-single-h3 .product-txt-s:after {
  display: inline-block;
  content: "）";
}


/* 製品詳細ページ　メイン画像　文言 */
.ttl-bottom-txt {
  margin: -84px 0 0 0;
  color: #FFF;
  font-size: 14px;
}

@media (max-width: 767px) {
  .ttl-bottom-txt {
    margin: 10px 0 0 0;
  }
}

/* 製品詳細ページ　3番　導入事例 */
.section-single-product .ttl {
  padding: 3px 0 3px 0 !important;
  font-size: 16px !important;
  margin-bottom: 15px !important;
}

.section-single-product .ttl span {
  padding-bottom: 15px !important;
}

.section-single-product .txt {
  margin-top: 0 !important;
  padding: 0 !important;
}

.ttl-typ-01 small {
  color: #99e5ff;
}

.link-col-01 {
  margin: 0;
  color: #FFF;
}

.product-boutou {
  max-width: 890px;
  margin: 0 auto;
}



.m-b-30 {
  margin-bottom: 40px !important;
}


.btn-col-02 a {
  background-color: #0972a5;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  position: relative;
  z-index: 1;
}


.img-auto img {
  width: auto !important;
  margin: 0 auto !important;
}


.rental-list-item p,
.rental-list-item .product-price,
.rental-list-item>table>tr th,
.rental-list-item>table>tr td {
  display: none !important;
}

.rental-list-item table tr:nth-of-type(2) th,
.rental-list-item table tr:nth-of-type(2) td,
.rental-list-item table tr:nth-of-type(3) th,
.rental-list-item table tr:nth-of-type(3) td,
.rental-list-item table tr:nth-of-type(4) th,
.rental-list-item table tr:nth-of-type(4) td,
.rental-list-item table tr:nth-of-type(5) th,
.rental-list-item table tr:nth-of-type(5) td,
.rental-list-item table tr:nth-of-type(6) th,
.rental-list-item table tr:nth-of-type(6) td,
.rental-list-item table tr:nth-of-type(7) th,
.rental-list-item table tr:nth-of-type(7) td {
  display: none !important;
}

.rental-list-item table tr th {
  font-size: 75% !important;
}

.rental-list-item table tr td {
  font-size: 100% !important;
}


.mv-wrpaaer {
  text-align: center;
  margin-bottom: 60px;
}

.mv-wrpaaer video {
  width: 100%;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .mv-wrpaaer video {
    width: 70%;
  }
}

.mv-wrpaaer strong {
  font-weight: bold;
}


.ttl-h3-typ-1 {
  padding-left: 0 !important;
  margin-bottom: 13px !important;
}

.col-wrapper-ptn-1 {
  margin: 0 5% !important;
}



.col-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.box-item {
  width: 48%;
}


.faq {
  text-align: left;
  margin-top: 0;
  margin-bottom: 30px;
}

.faq h3:before {
  display: inline-block;
  color: #1fa4ac;
  margin-right: 1em;
}

.box-item:nth-of-type(1) .faq h3:before {
  content: "Q1";
}

.box-item:nth-of-type(2) .faq h3:before {
  content: "Q2";
}

.box-item:nth-of-type(3) .faq h3:before {
  content: "Q3";
}

.box-item:nth-of-type(4) .faq h3:before {
  content: "Q4";
}

.box-item:nth-of-type(5) .faq h3:before {
  content: "Q5";
}

.box-item:nth-of-type(6) .faq h3:before {
  content: "Q6";
}

.box-item:nth-of-type(7) .faq h3:before {
  content: "Q7";
}

.box-item:nth-of-type(8) .faq h3:before {
  content: "Q8";
}

.box-item:nth-of-type(9) .faq h3:before {
  content: "Q9";
}

.box-item:nth-of-type(10) .faq h3:before {
  content: "Q10";
}

.box-item:nth-of-type(11) .faq h3:before {
  content: "Q11";
}

.box-item:nth-of-type(12) .faq h3:before {
  content: "Q12";
}

.box-item:nth-of-type(13) .faq h3:before {
  content: "Q13";
}

.box-item:nth-of-type(14) .faq h3:before {
  content: "Q14";
}

.faq dt {
  font-weight: bold;
  padding-bottom: 15px;
}

.faq dd {
  background: #f1fbfc;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  padding: 3% 5%;
  position: relative;
  font-size: 80%;
}


.maw-90 {
  max-width: 90%;
  margin: 0 auto;
}

.maw-100 {
  max-width: 100%;
  margin: 0 auto;
}

.w-80p {
  width: 80%;
  margin: 0 auto;
}

.br-none br {
  display: none;
}


.dip-i-b * {
  display: inline-block !important;
}


@media (min-width: 768px) {
  .product.mini p {
    min-height: 175px;
  }
}


.col-wrapper {
  display: flex;
  justify-content: center;
}

.col-2 {
  width: auto;
}

.top-main {
  width: auto;
  max-width: 1542px;
  margin: 0 auto;
}

.w-main {
  flex-basis: 74.2%;
  margin-right: 2%;
  display: block;
}

.w-sub {
  flex-basis: 23%;
  display: block;
  position: relative;
}

.w-sub a {
  z-index: 1;
  width: 100%;
  background: #FFF;
  display: block;
  text-align: center;
}

.btn-top-rental {
  width: 187px !important;
  height: 28px;
  position: absolute;
  bottom: 11px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

/* .btn-top-rental {
  width: 187px !important;
  height: 28px;
  display: block;
  margin-left: auto;
  margin-top: -20px;
  z-index: 2;
  position: relative;
} */

@media (max-width: 767px) {
  .w-main {
    flex-basis: 100%;
    margin-right: unset;
    margin-bottom: 5%;
  }

  .w-sub {
    flex-basis: 100%;
  }

  .w-sub img {
    width: 100%;
  }
}


.tal {
  text-align: left !important;
}


.css_column h2 {
  color: #0085B2;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 1px solid #0085B2;
  padding-bottom: 15px;
  padding-top: 1em;
  width: 100%;
}

.css_column h3 {
  color: #0085B2;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 1.5em;
  border-left: 3px solid #0085B2;
  padding: .5em 1em .5em 1em;
  width: 100%;
  background: #FFF;
}

.css_column h4 {

  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
  text-shadow: 2px 2px 0 rgb(0 0 0 / 15%);
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: .5em 1em;
  width: 100%;
  margin: 0 auto 1em;

}

.css_column p {
  margin-bottom: 1.3em;
}

.css_column a {
  color: #0085B2 !important;
  text-decoration: underline !important;
  margin-bottom: 1.5em;
}

.css_column a:hover {
  text-decoration: none !important;

}


.img-no1 img {
  text-align: center;
  display: block;
  max-width: 750px;
  margin: 0 auto 30px;
}

@media (max-width: 767px) {
  .img-no1 img {
    width: 95%;
  }

}

/*---------------------------------------------
 **  ブログ
---------------------------------------------*/
.blog-wrapper {
  display: flex;
  margin: 0 auto;
  width: 1340px;
}

.main-inner {
  width: 80%;
}

.main-inner .detail-info {
  padding-left: unset !important;
}


.side-wrapper #sidebar {
  width: 100%;
  max-width: 280px;
  float: unset;
  font-size: 80%;
}

.side-wrapper #sidebar ul li {
  margin-left: 0 !important;
}


@media (max-width: 767px) {
  .blog-wrapper {
    width: 90%;
    flex-direction: column;
  }

  .main-inner {
    width: 100%;
  }

  .sidebar-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .side-wrapper {
    margin-top: 50px;
  }

  .side-wrapper #sidebar {
    max-width: 90%;
    margin-top: 50px;

    margin: 0 auto;
  }
}


body {
  padding-top: 65px !important;
}



@media (min-width: 768px) {
  .notice-item .desc {
    width: 280px;
  }
}



/* ol.kanren-post{
  border: 1px solid #000;
  padding: 5%;
} */


.yarpp-related-none {
  width: 100%;
  border: 1px solid #EEE;
  text-align: center;
  padding: 18px 0 0 0;
}


.tax-none {
  font-size: 13px;
  display: inline-block;
  line-height: 1.2;
  color: rgb(134, 132, 132);
}

.tax-none:before {
  content: '（税別 ';
  font-size: 11px;
  display: inline-block;
  padding-right: 0.5em;
}

.tax-none:after {
  content: '円)';
  font-size: 10px;
  display: inline-block;
}



.m-b-0 {
  margin-bottom: 0 !important;
}




@media screen and (min-width:1260px) and (max-width:1443px) {
  .navigation {
    font-size: 14px;
  }

  header .menu>li>a {
    padding: 43px 12px !important;
  }
}

@media screen and (min-width:1337px) and (max-width:1380px) {
  .navigation {
    font-size: 13px;
  }

  header .menu>li>a {
    padding: 43px 9px !important;
  }
}

@media screen and (min-width:1532px) and (max-width:1582px) {
  .navigation {
    font-size: 14px;
  }

  header .menu>li>a {
    padding: 43px 7px !important;
  }
}

@media screen and (min-width:1260px) and (max-width:1276px) {
  .navigation {
    font-size: 14px;
  }

  header .menu>li>a {
    padding: 43px 6px !important;
  }
}

.rental-bt {
  display: block !important;
}



figure.wp-block-embed-youtube {
  width: 100% !important;
}


.youtube-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #F7F7F7;
  padding: 3.5% 5% 3%;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  max-height: 785px;
  overflow-y: scroll;
}

@media (max-width: 767px) {
  .youtube-list {
    /* max-height: 500px; */
    max-height: 500px;
    width: 90%;
    margin: 0 auto;

  }
}

.youtube-list a {
  width: 33%;
  display: block;
}

.youtube-list span {
  margin-top: 0.5em;
  padding: 0 1em 1.5em;
  display: block;
}

@media (max-width: 767px) {
  .youtube-list {
    padding: 5% 5% 3%;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
  }

  .youtube-list a {
    width: 100%;
    display: block;
    margin-bottom: 30px;
  }

  .youtube-list span {
    margin-top: 0.5em;
    padding: 0 1em;
    display: block;
  }
}













/* 長期休業のお知らせ */
.content_wrap {
  margin-top: 40px;
}

.long_v {
  width: 100%;
  max-width: 740px;
  margin: 0 auto 20px;
  background: #f1f1f1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
  font-size: 15px !important;
}

.long_v_top {
  font-size: 18px;
  background: #0F59BD;
  color: #fff100;
  padding: 10px 4px 10px;
  text-align: center;
  color: #FFF;
  font-weight: bold;
  letter-spacing: 0.05em;
  display: block;
  font-weight: bold;
}

.long_v_top_2 {
  background: #064B66;
}

.long_v p {
  padding: 15px 5%;
  margin: 0;
  color: #000;
  text-align: center;
}

.long_v p span {
  font-weight: bold;
  color: #FF0000;
  line-height: 1.5;
}



.product-heading.hot {
  padding: 0;
  margin-top: -63px;
}

@media (max-width: 767px) {
  .product-heading.hot {
    padding: 0;
    margin-top: -31px;
  }
}

.product-heading.hot:before {
  background: none;
}

.product-heading.hot p {
  text-align: right;
  margin-right: 2em;
}

.product-heading.hot .product_catch strong {
  color: #EC7C30;
}



.product-photo.icn_hot_cool {
  position: relative;
}

.icn_hot_cool:after {
  content: '';
  position: absolute;
  top: 120px;
  right: 20px;
  display: block;
  width: 104px;
  height: 104px;
  background: url(../img/product/icn-cool-hot.png) 0 0 no-repeat;
}

@media (max-width: 767px) {
  .icn_hot_cool:after {
    top: 0px;
    right: 0%;
  }
}


.hikaku-pdf {
  border: 2px solid #0085b2;
  background: #fff;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  padding: 0.7em 3% !important;
  flex: none !important;
}



.faq .sec-title strong {
  color: #000 !important;
  font-size: 30px;
  display: block;
  line-height: 1.333;
  margin-bottom: 0.4rem;
}


.faq .sec-title .small {
  line-height: 2;
  display: inherit;
}

.faq h3 {
  font-size: unset !important;
  padding: unset !important;
  margin-bottom: unset !important;
  color: unset !important;
}

.faq p {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

footer .block-contact .phone-ct {
  padding-bottom: 20px !important;
}


.bg-flow {
  padding: 4% 0 6%;
  background: url(../img/top/top_bg.png) top center no-repeat;
}

.bg-flow .txt {
  color: #000;

}

.bg-flow .note {
  margin-top: 1em;
}

a.btn-default,
.wp-block-button__link,
.btn-back {
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  box-shadow: 0px 6px 0px #064b66 !important;
}

a.btn-default:hover,
.wp-block-button__link:hover,
.btn-back:hover {
  background-color: #339DC1 !important;
}


a.btn-default,
.wp-block-button__link {
  background-color: unset !important;
  background-color: #064B66 !important;
  background-image: url(../img/common/icn_quote.png) !important;
  background-position: right 30px center !important;
  background-repeat: no-repeat;
  box-shadow: 2px 2px 4px #80808073 !important;
  color: #f9f40c;
  border: 1px solid #000;
  text-shadow: 2px 2px 3px rgb(0 0 0 / 22%) !important;

}

.btn-back {
  background-color: unset !important;
  background-color: #064B66 !important;
  background-image: url(../img/common/icn_quote_left.png) !important;
  background-position: left 30px center !important;

  background-repeat: no-repeat;
  box-shadow: 2px 2px 4px #80808073 !important;
  color: #f9f40c;
  border: 1px solid #000;
  text-shadow: 2px 2px 3px rgb(0 0 0 / 22%) !important;
}

.btn-maintenance {
  background-color: #ff0000 !important;

}





.footer-nav .menu {
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .footer-nav .menu {
    flex-wrap: wrap;
  }
}



.footer-nav .menu li {
  font-size: 13px !important;
  color: #666 !important;
}

@media (max-width: 767px) {
  .footer-nav .menu li {
    width: 48%;
    margin-bottom: 10px;
    background: #eeeeee61;
    padding: 1em;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
  }
}


.footer-nav .menu li::before {
  content: "●";
  color: #0085B2;
  margin-right: 0.5em;
  margin-bottom: unset;
  font-size: 12px;
}

.footer-nav .menu li a {
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  border-bottom: 1px solid #0085b2;
  padding: 3px 0;
}

.footer-nav .menu li a:hover {
  color: #26aad6;
}

@media (max-width: 767px) {
  .footer-nav .menu li a {
    font-size: 14px;
  }
}

.footer-nav .menu li .sub-menu {
  margin-top: 6px;
}

@media (max-width: 767px) {
  .footer-nav .menu li .sub-menu li {
    width: 100%;
  }
}

.footer-nav .menu li .sub-menu a {
  font-size: 14px;
  margin-top: 4px;
  display: inline-block;
}

.footer-nav .menu li .sub-menu li::before {
  content: "└";
  color: #0085B2;
  margin-right: 0.5em;
  margin-bottom: unset;
}



.delivery-case a {
  box-sizing: border-box;
  /*通常の記述*/
  -webkit-box-sizing: border-box;
  /*Google ChromeやSafariの機能を利用*/
  -moz-box-sizing: border-box;
  /*Firefoxの機能を利用*/

}




.notice-item {
  border: 2px solid #0085b2;
  margin-bottom: 30px;
  background: unset;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.notice-item:hover {
  background: #f0fcff;
}


.ttl-remake .ttl {
  font-size: unset !important;
  font-weight: 0 !important;
  margin-bottom: 8px !important;


  padding: 2px 0 !important;
}

.ttl-remake .txt {
  padding: 0 !important;
  margin: 0 !important;
}


.ttl-other-products {
  width: 100%;
  font-size: 40px;
  font-weight: 600;
  color: #0085B2;
  padding: 3px 0 0px 0px;
  margin-bottom: 40px;
  position: relative;
  line-height: 0.333;
}

.other-col-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 2em;
}

.other-col-3 .item {
  width: calc((100% - 4em)/3);
}

.other-col-3 .item img {
  height: 290px !important;
  width: auto !important;
  margin: 0 auto;
  display: block;
  margin-bottom: 40px;
}

.other-col-3 .item h3 {
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
  text-shadow: 2px 2px 0 rgb(0 0 0 / 15%);
  margin-bottom: 30px !important;
}

.other-col-3 .item p {
  margin-right: 5%;
  margin-left: 5%;
  line-height: 1.8;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 5%;
}

@media (max-width: 767px) {
  .other-col-wrapper {
    display: block;
  }

  .other-col-3 .item {
    width: 100% !important;
  }

  .other-col-3 .item img {
    margin: 40px auto 10px;
  }

  .other-col-3 .item h3 {
    margin-bottom: 15px !important;
  }
}


.btn-01 {
  margin-top: 30px;
  font-size: 30px;
  font-weight: 600;
  color: #000;
  margin-bottom: 35px;
  position: relative;
  align-items: center;

  border: 2px solid #0085b2;
  background: #fff;
  border-radius: 8px;
  padding: 0.7em 3% !important;
  display: inline-block;
}

.btn-01:after {
  content: '≫';
  color: #0085B2;
  margin-left: .5em;

}


@media (max-width: 767px) {
  .btn-01 {
    font-size: 16px !important;
  }
}






.ttl-other-products {
  width: 100%;
  font-size: 40px;
  font-weight: 600;
  color: #0085B2;
  padding: 3px 0 0px 0px;
  margin-bottom: 40px;
  position: relative;
  line-height: 0.333;
}

/* .col-wrapper{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 2em;
} */
.col-3 .item {
  width: calc((100% - 4em)/3);
}

.col-3 .item img {
  height: 290px !important;
  width: auto !important;
  margin: 0 auto;
  display: block;
  margin-bottom: 40px;
}

.col-3 .item h3 {
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
  text-shadow: 2px 2px 0 rgb(0 0 0 / 15%);
  margin-bottom: 30px !important;
}

.col-3 .item p {
  margin-right: 5%;
  margin-left: 5%;
  line-height: 1.8;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 5%;
}


.btn-01 {
  margin-top: 30px;
  font-size: 30px;
  font-weight: 600;
  color: #000;
  margin-bottom: 35px;
  position: relative;
  align-items: center;

  border: 2px solid #0085b2;
  background: #fff;
  border-radius: 8px;
  padding: 0.7em 3% !important;
  display: inline-block;
}

.btn-01:after {
  content: '≫';
  color: #0085B2;
  margin-left: .5em;

}

.tal {
  text-align: left !important;
}


.top-news-bnr {
  width: 90%;
  margin: 10px 0 0 0;
}



.product-p {
  background: #ffffff85;
  padding: 1.6em 1.7em 1.4em;
  margin: -10px 0 40px;
  line-height: 1.7;
  text-align: center;
  box-shadow: 0px 1px 14px #cccccc5c;
}

/*---------------------------------------------
 **  会社概要
---------------------------------------------*/
/* ページナビ */
.inner-nav {
  margin: 60px auto 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-size: 18px;
}

.inner-nav li {
  max-width: 250px;
  width: 100%;
  position: relative;
}

.inner-nav li:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5%;
  margin: auto 0;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent #0A86B0;
}

.inner-nav li a {
  text-align: center;
  padding: 20px;
  border: 3px solid #0A86B0;
  display: block;
  font-weight: bold;
  box-sizing: border-box;
}

.inner-nav li:hover {
  background: #0A86B0;
}

.inner-nav li:hover:after {
  border-color: transparent transparent transparent #FFF;
}

.inner-nav li:hover a {
  color: #FFF;
}

/* アクティブ判定 */
.actv {
  background: #0A86B0;
  color: #FFF;
}

@media (max-width: 767px) {
  .inner-nav {
    flex-wrap: nowrap;
    width: 100%;
    margin: 30px auto;
    gap: 10px;

  }

  .inner-nav li {
    width: 50%;
    font-size: 13px;
    box-sizing: border-box;
  }

  .inner-nav li:after {
    border-width: 4px 0 4px 4.5px;
  }

  .inner-nav li a {
    padding: 10px 0;
  }
}

/* サステナビリティ　ゴール */
.sustainability-goals {
  height: 470px;
  box-sizing: border-box;
  border: 15px solid #e1f0f5;
  font-size: 22px;
  text-align: center;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sustainability-goals p {
  margin-bottom: 60px;
  padding: 40px 0 60px;
  letter-spacing: 3px;
  line-height: 1.8;
  position: relative;
}

.sustainability-goals p::after {
  content: '';
  border-bottom: 3px solid #0A86B0;
  width: 37px;
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0 auto;
}


/*---------------------------------------------
 **  サステナビリティ　項目
---------------------------------------------*/
.sec-sustainability {
  margin-bottom: 6em;
}

.area-wrapper-number {
  padding-bottom: 5em;
}

.area-wrapper-number.color-on {
  background: #b0e5dc47;
  padding: 5.5em 0;
  margin-bottom: 5.5em;
}

.common-inner-number {
  max-width: 800px;
  margin: 0 auto;
}

.common-inner-number p {
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ナンバリング　見出し */
.ttl-header-sustainability {
  font-size: 25px;
  text-align: center;
  font-weight: bold;
}

.ttl-header-sustainability img {
  right: -13px;
  position: relative;
}

.ttl-header-sustainability h2 {
  padding: 1.5em;
  position: relative;
}

.ttl-header-sustainability h2:after {
  content: '';
  width: 80px;
  border-bottom: 7px solid #0A86B0;
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0 auto;
}

/* sdgsアイコン */
.sdgs-icon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin: 40px 0;
}


/* 具体的な取り組み */
.torikumi {
  border: 1px solid #0A86B0;
  padding: 1.5em 2.8em;
  border-radius: 8px;
  margin-top: 30px;
  background: #FFF;
}

.torikumi dt {
  font-size: 18px;
  font-weight: bold;
  color: #0A86B0;
  margin-bottom: 1em;
  position: relative;
}

.torikumi dt::before {
  content: '';
  width: 2em;
  border-bottom: 6px solid #0A86B0;
  display: block;
  position: absolute;
  right: 0;
  left: -2.8em;
  top: .5em;
}

.torikumi dd {
  line-height: 1.6;
}

.detail-list li::before {
  content: '●';
  font-size: 10px;
  color: #0A86B0;
  position: relative;
  top: -2px;
  padding-right: 0.5em;
}


.s-date {
  width: 100%;
  text-align: right;
  margin: 4em 0 3em;
}


@media (max-width: 767px) {
  .sustainability-goals {
    font-size: 14px;
    border: 10px solid #e1f0f5;
    padding: 5%;
    height: 330px;
  }

  .sustainability-goals p {
    padding: 20px 0 30px;
  }

  .sustainability-goals img {
    width: 80%;
    max-width: 305px;
  }

  .ttl-header-sustainability h2 {
    font-size: 18px;
  }

  .sdgs-icon {
    width: 70%;
    margin: 20px auto;
  }

  .sdgs-icon img {
    width: 48%;
  }

  .torikumi {
    padding: 1.5em 8%;
  }

  .detail-list {
    font-size: 12px;
  }
}




#wp-single-page table td:nth-of-type(1) {
  width: 180px;
}

#wp-single-page .wp-table-single {
  margin-bottom: 0;
}

#wp-single-page .wp-table-single table tr:last-of-type td {
  border-bottom: unset;

}




.mv-area {
  background: #00000059;
  padding: 70px 0 90px 0;
}

.mv-area .inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mv-area video {
  width: 80%;
  margin: 0 auto;
  display: block;
}

@media (max-width: 767px) {
  .mv-area video {
    width: 90%;
  }

}

.mv-area p {
  text-align: center;
  padding: 20px 0 10px;
}


/*---------------------------------------------
 **  初回アクセス時のみ表示コード
---------------------------------------------*/
#firstAccessPopup {
  display: none;
}

#firstAccessPopup.active {
  display: block;
}



/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 9999;
  /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modalWrapper {
  width: 60%;
}

.modalWrapper video {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .modalWrapper {
    width: 90%;
  }

  .modalWrapper video {
    width: 100%;
  }
}

.closeModal {
  position: absolute;
  bottom: -110px;
  right: 0;
  cursor: pointer;
  left: 0;
  margin: 0 auto;
  display: block;
  text-align: center;
  background: #FFF;
  color: #000;
  padding: 20px;
  max-width: 250px;
  border-radius: 5em;
  font-size: 20px;
  font-weight: bold;

  background: #339dc1;
  color: #FFF;
  padding: 21px;
  max-width: 280px;
  border-radius: 5em;
  font-size: 24px;

}

.closeModal span {
  /* margin-right: 0.5em; */
}


/* 以下ボタンスタイル */
button {
  padding: 10px;
  background-color: #fff;
  border: 1px solid #282828;
  border-radius: 2px;
  cursor: pointer;
}

.cm-wrapper {
  position: relative;
}

.cm-icn {
  position: absolute;
  top: 10px;
  right: -40px;
  max-width: 84px;
  width: 100%;
  display: block;
}

@media (max-width: 767px) {
  .cm-icn {
    right: -10px;
  }
}


#openModal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#openModal {
  padding: unset;
  background-color: unset;
  border: unset;
  transform: unset;
  border-radius: unset;
  position: unset;
  cursor: pointer;
  height: 300px;
  display: flex;
  align-items: center;
  background: #000;
  margin-top: 27px;

}

#openModal video {
  max-width: 100%;
}



/* TOPページ冒頭の「取り扱い機器から選ぶ」 */
.select-btn-wrapper {
  background: #00000059;
  padding: 60px 0 70px;
}

.select-btn {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.select-btn h2 {
  max-width: 286px;
  width: 100%;
  background: #0085b2;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  font-size: 1.45vw;
  text-align: center;
  font-weight: bold;
  letter-spacing: 3px;
}

.select-btn ul {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 19px 25px;

}

.select-btn ul li {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 0px;
}

.select-btn img {
  max-width: 442px;
  width: 100%;
}

.select-btn-msg {
  text-align: center;
  width: 100%;
  padding: 2.5em 0 0;
  font-size: 14px;
}


@media (max-width: 767px) {

  .select-btn-wrapper {
    padding: 30px 0 40px;
  }

  .select-btn {
    display: block;
    width: 90%;
    margin: 0 auto;


  }

  .select-btn br {
    display: none;
  }

  .select-btn h2 {
    max-width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 18px;
  }

  .select-btn-msg {
    font-size: 12px;
  }
}




@media screen and (max-width: 768px) {
  .product-info.is .product-info {
    width: 100%;
  }

  .product-info.is .products {
    display: none;
  }

  #btn-05 .product-info {
    width: 100% !important;
  }

  #btn-05 .wrapper {
    padding: 0 15px;
  }

  #btn-05 .products {
    width: 100% !important;
    padding: 0 !important;
  }

  #btn-05.is {
    padding: 50px 0 60px !important;

  }
}





.list-case.d-md-flex {
  max-height: 750px !important;
  overflow-y: scroll !important;
  margin-right: -30px !important;
}

@media (max-width: 767px) {
  .list-case.d-md-flex {
    width: 90% !important;
    margin-left: 5% !important;
    margin: 0 auto;
    max-height: 400px !important;
    overflow-y: scroll !important;
    margin-right: unset !important;
  }
}


.recruit-ttl {
  font-size: 1.6em;
  padding: 0 0 0.7em 3em;
  font-weight: bold;
}

@media (max-width: 767px) {
  .recruit-ttl {
    padding: 0 0 0.7em 0;
    font-size: 19px;

  }
}

.recruit-ttl::before {
  content: '●';
  color: #00a5d9;
  padding-right: .3em;
}


.btn-all a {
  margin: 20px auto 40px;
  display: block;
}

/* タブ */
/* タブ */
.tabs {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  gap: 10px;
  border-bottom: 3px solid #0b86b0;
  max-width: 1300px;
  margin: 0 auto 50px;
}

/* タブ ボタン */
.tab__btn {
  padding: 17px 20px;
  border-radius: 15px 15px 0 0;
  transition: background-color 0.3s ease;
  cursor: pointer;
  background-color: white;
  color: #0b86b0;
  border: 2px solid #0b86b0;
  border-bottom: unset;
  max-width: 250px;
  /* 25rem → 250px */
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  font-size: 20px;
  /* 2rem → 20px */
}

/* スマートフォン向けのスタイル */
@media (max-width: 768px) {
  .tab__btn {
    font-size: 14px;
    padding: 20px 9px;
  }
}


/* アクティブなタブ ボタン */
.tab__btn.--active {
  background-color: #0b86b0;
  /* $color-main を #0b86b0 に変換 */
  color: white;
}

/* コンテンツ */
.tab__content {
  display: none;
}

/* アクティブなコンテンツ */
.tab__content.--active {
  display: block;
  animation: fadeInUp 0.8s ease;
}

/* フェードインアニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* 求人ページ */
.ttl-ask {
  padding-left: 0.6em;
  font-weight: bold;
  font-size: 17px;
  color: #0085b2;
  margin: 15px 0 5px -20px;
}

.owata::before {
  content: '＼';
  padding-right: .5em;
}

.owata::after {
  content: '／';
  padding-left: .5em;
}

.m-b-10 {
  margin-bottom: 10px;
}

.m-b-20 {
  margin-bottom: 20px;
}


.ttl-blue-bg {
  background: #0085b2;
  padding: 1em;
  color: #FFF;
}


#sales-01,
#sales-02,
#souko-01,
#souko-02 {
  padding-top: 110px;
  /* 調整したい高さ（固定ヘッダーの高さ） */
  margin-top: -110px;
  /* heightと同じ分のネガティブマージン */
}

/* 東京営業所 */
.--tokyo .ttl-ask {
  color: #da5305;

}

.--tokyo .ttl-blue-bg {
  background: #da5305;
}

.--tokyo .company-profile table th {
  color: #da5305;

}

.--tokyo .recruit-ttl::before {
  color: #da5305;

}


.recruit-inner-btn {
  max-width: 1020px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto 30px;
}

.recruit-inner-btn a {
  width: 48%;
  text-align: center;
  border: 1px solid #00a5d9;
  background: #00a5d9;
  padding: .8em .5em;
  color: #FFF;

  background: #FFF;
  color: #00a5d9;
}

.recruit-inner-btn a:hover {}

.recruit-inner-btn a:after {
  content: '▼';
  padding-left: .5em;
  font-size: 13px;
}


.recruit-inner-btn a.--tokyo {
  border: 1px solid #da5305;
  color: #da5305;
  background: #FFF;
}


/* hover */
.hover {
  -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;
}

.hover:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}

.m-b-50 {
  margin-bottom: 50px;
}






/*---------------------------------------------
 **  フォームデザイン
---------------------------------------------*/

.contact-form {
  margin: 0 auto !important;
  background: #fff;
  max-width: 900px;
  padding: 60px 80px 20px;
  box-shadow: 10px 10px 50px -9px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .contact-form {
    padding: 60px 50px;
  }
}

.contact-form dl {
  display: flex;
  justify-content: space-between;
  padding: 10px 10px 27px;
  margin-bottom: 13px;
  flex-direction: column;
  border-bottom: 1px solid #eee;
}

.contact-form dl:last-of-type {
  margin-bottom: 20px;
}

.contact-form dl dt {
  font-size: 16px;
  margin-bottom: 15px;
  color: #01001a;
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.contact-form dl dt span {
  display: inline-block;
  background: #fe7376;
  color: #fff;
  font-size: 11px;
  padding: 0 10px 2px;
  margin-left: 10px;
  border-radius: 4px;
}

.contact-form dl dd input,
.contact-form dl dd textarea,
.contact-form dl dd select {
  width: 100%;
  padding: 12px 13px 11px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.contact-form dl dd input::placeholder {
  color: #ccc;
}

.contact-form dl dd textarea::placeholder {
  color: #ccc !important;
}

.contact-form .wpcf7-not-valid-tip {
  padding: 5px 0 0 5px;
}

.contact-form input[type="submit"] {
  border: none;
  cursor: pointer;
  max-width: 320px;
  width: 100%;
}

.contact-form input[type="radio"] {
  width: unset;
}

.contact-form label {
  cursor: pointer;
}

.contact-form input:checked+span {
  color: #487cff;
  font-weight: bold;
}

.contact-form .clinic-open input {
  max-width: 200px;
}

.contact-tel {
  background: #fff;
  max-width: 900px;
  padding: 40px 80px 40px;
  box-shadow: 10px 10px 50px -9px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .contact-tel {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.tel-num {
  font-size: 40px;
}

.tel-num a {
  text-decoration: none;
}

.contact-requirements .wpcf7-form-control span.wpcf7-list-item {
  width: calc(50% - 10px);
  margin-bottom: 10px;
  font-size: 90%;
}

@media (min-width: 768px) {
  .contact-requirements .wpcf7-form-control span.wpcf7-list-item {
    width: calc(100% - 20px);
  }
}

.contact-requirements .wpcf7-form-control span.wpcf7-list-item label input {
  display: none;
}

.contact-requirements .wpcf7-form-control span.wpcf7-list-item label input:checked+.wpcf7-list-item-label {
  background: #487cff;
  display: block;
}

.contact-requirements .wpcf7-form-control span.wpcf7-list-item label input:checked+span {
  color: #000;
}

.contact-requirements .wpcf7-form-control span.wpcf7-list-item label span {
  padding: 15px 20px;
  display: block;
}

.contact-requirements .wpcf7-form-control span.wpcf7-list-item label {
  background: #487cff;
  display: block;
  text-align: center;
}



@media (max-width: 767px) {
  .recruit-page {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }

  .recruit-page figure {
    width: 50% !important;
    margin-bottom: 0 !important;
  }

  .recruit-page figure:nth-of-type(2) {
    width: 100% !important;
    order: 1;
  }

  .recruit-page img {
    display: block;
  }
}



/* フッター取り組み */
.footer-initiatives {
  display: flex;
  flex-wrap: wrap;
  background: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 60px auto 0;
  justify-content: space-between;
  padding: 50px;
  border-radius: 8px;
  position: relative;
}

.footer-initiatives .item.img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.footer-initiatives .item.txt {
  max-width: 450px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #bebebe;
}

.footer-initiatives__ttl {
  margin-bottom: unset !important;
}

.footer-initiatives__illust {
  position: absolute;
  left: -160px;
  bottom: 0;
}

@media (max-width: 767px) {
  .footer-initiatives {
    width: 90%;
    flex-direction: column;
    padding: 30px 5%;
    margin-top: 90px;
  }

  .footer-initiatives .item.img {}

  .footer-initiatives .item.txt {
    border-right: unset;
    border-bottom: 1px solid #bebebe;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .footer-initiatives__ttl {
    margin-bottom: 30px;
  }

  .footer-initiatives__ttl strong {
    margin-bottom: 10px;
  }

  .footer-initiatives__illust {
    position: absolute;
    left: -14px;
    bottom: unset;
    width: 37%;
    top: -56px;
  }



}



/* LINE公式アカウント */
.line-official-btn {
  max-width: 72px;
  width: 100%;
  position: fixed;
  bottom: 100px;
  right: 19px;
  z-index: 99;
}

@media screen and (max-width: 740px) {
  .line-official-btn {
    max-width: 50px;
    bottom: 75px;
    right: 15px;
  }

}



.page-top h2 strong {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);

}



.rental-anker {
  font-size: 14px;
  font-weight: bold;
  text-decoration: underline;
  color: #1e80b2;
  float: right;
  font-style: normal;
  padding: 1em 1em 0em;
}

@media (max-width: 767px) {
  .rental-anker {
    font-size: 11px;
  }
}



/* 長期パック */
.hsc-rental__long-pack {
  border: 2px solid #ff7300;
  border-radius: 8px;
  position: relative;
  max-width: 310px;
  width: 90%;
  margin: 1em auto 0;
}

.hsc-rental__long-pack:before {
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 16px solid #ff7300;
  border-top: 0;
}

.long-pack__head {
  background: #ff7300;
  font-size: 16px;
  color: #FFF;
  font-style: normal;
  padding: .3em;

}

.long-pack__head span {
  font-size: 12px;
}

.long-pack__price {
  font-size: 15px;
  padding: .5em 1em 0em 1em;
  box-sizing: border-box;
  line-height: 1.3;
  font-weight: bold;
}

.long-pack__price span {
  font-size: 28px;
  color: #d90000;
  font-weight: bold;
  padding: 0 .1em;
}

.long-pack__tax {
  font-size: 10px;
  text-align: right;
  padding: 0em 1em 0.7em 1em;
}

/*---------------------------------------------
 **  スマホ
---------------------------------------------*/
@media (max-width: 767px) {
  .long-pack__head {
    font-size: 12px;

  }

  .long-pack__head span {
    font-size: 10px;
  }

  .long-pack__price {
    font-size: 11px;
  }

  .long-pack__price span {
    font-size: 15px;
  }

  .long-pack__tax span {
    font-size: 9px !important;
  }
}

.only-sp {
  display: none;
}

@media (max-width: 767px) {
  .only-sp {
    display: block;
  }
}



.product-intro .product-info .tit {
  font-size: 37px !important;
}


.c-new__tag {
  background: #ff0000;
  color: #FFF;
  padding: 0em 0.6em 2px 0.5em;
  display: inline-block;
  line-height: 1.5;
  font-size: 16px;
}


.recruit-btn--off {
  display: none;
}

.recruit-status--off {
  display: none;
}