@charset "UTF-8";
/* ==================================================
	breadcrumb（パンくず）
================================================== */
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600&display=swap");
#breadcrumb {
  display: none;
  padding: 10px 0 50px;
}

#breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 640px) {
  #breadcrumb {
    display: block;
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* ========== end △ */
#breadcrumb li {
  font-size: 14px;
  margin-right: 10px;
}

#breadcrumb li:first-child {
  color: #000;
  text-align: left;
  font-weight: bold;
}

#breadcrumb li::before {
  content: "\f105";
  margin-right: 6px;
  color: #000;
  font-size: 15px;
  font-family: FontAwesome;
}

#breadcrumb li:first-of-type::before {
  display: none;
}

#breadcrumb li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

#breadcrumb li a:hover {
  text-decoration: underline;
}

/* ==================================================
	pagination
================================================== */
.pagination {
  margin-top: 30px;
}

/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 640px) {
  .pagination {
    margin-top: 50px;
  }
}

/* ========== end △ */
.pagination .prev {
  float: left;
}

.pagination .next {
  float: right;
}

.pagination .back {
  text-align: center;
}

.fnt-os {
  font-family: 'Oswald', sans-serif;
}

#mainvisual {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  height: 250px;
}

#mainvisual h1 {
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#mainvisual h1 strong {
  font-size: 45px;
  line-height: 50px;
  font-family: 'Roboto', serif;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

#mainvisual h1 span {
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  #mainvisual {
    height: 250px;
  }
  #mainvisual h1 strong {
    font-size: 36px;
    margin-bottom: 5px;
  }
  #mainvisual h1 span {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  #mainvisual {
    height: 128px;
  }
  #mainvisual h1 strong {
    font-size: 30px;
    line-height: 1.2;
  }
}

.btn a {
  display: block;
  border: 1px solid currentColor;
  color: #000;
  background-color: #fff;
  background-image: url(../company/images/arr.png);
  background-repeat: no-repeat;
  background-position: center right 22px;
  width: 245px;
  text-align: center;
  padding: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: .3s;
  transition: .3s;
}

.btn a:hover {
  background-position: center right 10px;
}

@media screen and (max-width: 767px) {
  .btn a {
    background-size: 18px;
  }
}

.ttlh2 {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 80px;
}

.ttlh2 strong {
  font-size: 42px;
  color: #d50008;
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 70px 3px;
  background-position: center bottom;
  text-transform: uppercase;
  background-repeat: no-repeat;
  line-height: 1;
  padding-bottom: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

.ttlh2 strong .lowercase {
  text-transform: lowercase;
}

.ttlh2 span {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .ttlh2 {
    padding-top: 40px;
  }
  .ttlh2 strong {
    font-size: 36px;
  }
  .ttlh2 span {
    margin-top: 10px;
  }
}

.ly_button .wrap {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 20px 30px !important;
}

.ly_button .b_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#other .ly_button .b_btn {
  justify-content: start;
}

.ly_button .b_btn > * {
  margin-left: 15px;
  margin-right: 15px;
}

.ly_button .b_btn > *:first-child {
  margin-left: 0;
}

.ly_button .b_btn > *:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .ly_button .wrap {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 20px 2% !important;
  }
  .ly_button .b_btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ly_button .b_btn > * {
    margin: 0 0 10px;
  }
  .ly_button .b_btn > *:last-child {
    margin-bottom: 0;
  }
}

#company #mainvisual {
  background-image: url(../company/images/key.jpg);
}

#company #sec1 {
  position: relative;
  z-index: 1;
}

#company #sec1::after {
  content: '';
  background: url(../company/images/s1_bg.jpg) no-repeat center center/cover;
  width: calc(50% + 600px);
  position: absolute;
  bottom: 0;
  top: 220px;
  z-index: -1;
}

#company #sec1 .inner {
  padding-top: 100px;
  padding-bottom: 15px;
  color: #fff;
  position: relative;
  z-index: 2;
}

#company #sec1 .inner .b_txt {
  margin: 0 40px;
}

#company #sec1 .inner .b_txt .w50 {
  width: 530px;
}

#company #sec1 .inner .b_txt dl {
  padding-bottom: 40px;
}

#company #sec1 .inner .b_txt dl dt {
  font-size: 18px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 3px solid #d50008;
}

#company #sec1 .inner .pt {
  position: absolute;
  top: 130px;
  left: 690px;
  width: 490px;
}

@media screen and (max-width: 1200px) and (min-width: 768px) {
  #company #sec1 .inner .pt {
    left: 580px;
  }
}

@media screen and (max-width: 767px) {
  #company #sec1::after {
    width: 100%;
    top: 140px;
  }
  #company #sec1 .inner {
    padding-top: 50px;
  }
  #company #sec1 .inner .b_txt {
    margin: 0;
  }
  #company #sec1 .inner .pt {
    position: unset;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
}

#company #sec2 {
  padding-bottom: 50px;
}

#company #sec2 .inner {
  margin-top: 30px;
  border-right: 1px solid #000;
}

#company #sec2 .inner .txt_blue {
  color: #003ebb;
  text-decoration: underline;
}

#company #sec2 .inner .txt_blue:hover {
  text-decoration: none;
}

#company #sec2 .inner dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#company #sec2 .inner dl dt {
  width: 410px;
  background-color: #000;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid currentColor;
  padding: 16px 0;
}

#company #sec2 .inner dl dd {
  border-bottom: 1px solid #000;
  width: calc(100% - 410px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px 0 16px 80px;
}

#company #sec2 .inner dl dd a {color: #000;}

#company #sec2 .inner dl:first-child dt {
  border-top: 1px solid #000;
}

#company #sec2 .inner dl:first-child dd {
  border-top: 1px solid #000;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

#company #sec2 .inner dl:last-child dt {
  border-bottom-color: #000;
}

@media screen and (max-width: 767px) {
  #company #sec2 .inner dl dt {
    width: 25%;
  }
  #company #sec2 .inner dl dd {
    width: 75%;
    padding-left: 3%;
    padding-right: 3%;
  }
}

#company #sec3 {
  background: rgba(0, 0, 0, 0.1);
  padding-bottom: 80px;
}

#company #sec3 .gmap {
  margin-top: 45px;
  line-height: 0;
}

#company #sec3 .gmap iframe {
  width: 100%;
  height: 530px;
}

@media screen and (max-width: 639px) {
  #company #sec3 .gmap iframe {
     height: 260px;
  }
}

#company #sec4 {
  padding-bottom: 50px;
}

#company #sec4 .pt_map {
  margin-top: 60px;
}

.b_list {
  padding: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  color: #000;
}

.b_list h4 {
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 600;
  border-bottom: 3px solid #d50008;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .b_list {
    padding: 15px;
  }
  .b_list h4 {
    font-size: 16px;
    padding-bottom: 5px;
    border-width: 2px;
  }
}

.list-check li {
  background: url(../duct/images/tick.png) no-repeat left center;
  padding-left: 35px;
  line-height: 32px;
}

@media screen and (max-width: 767px) {
  .list-check li {
    background-size: 20px;
    padding-left: 25px;
    line-height: 1.5;
  }
  .list-check li:not(:last-child) {
    margin-bottom: 8px;
  }
}

.b_step .ttl_step {
  font-size: 30px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d50008), to(#d50008));
  background-image: linear-gradient(#d50008, #d50008);
  background-size: 70px 3px;
  background-position: center bottom;
  background-repeat: no-repeat;
  text-align: center;
  padding-bottom: 25px;
  padding-top: 25px;
  letter-spacing: 0;
  margin-bottom: 40px;
}

.b_step h5 {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 50px;
}

.b_step .step > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.b_step .step > *:last-child .num {
  background-image: url(../duct/images/step_arr_last.jpg);
}

.b_step .step .step1 .num {
  padding-bottom: 115px;
}

.b_step .step .step2 .num {
  padding-bottom: 90px;
}

.b_step .step .step3 .num {
  padding-bottom: 115px;
}

.b_step .step .step4 .num {
  padding-bottom: 95px;
}

.b_step .step .num {
  width: 55px;
  background-color: #99090e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  padding-top: 5px;
  background-image: url(../duct/images/step_arr.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
}

.b_step .step .num strong {
  font-size: 42px;
  margin-top: 20px;
}

.b_step .step dl {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 10px;
  width: calc(100% - 55px);
  padding-left: 35px;
  padding-bottom: 50px;
}

.b_step .step dl dt {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .b_step .ttl_step {
    font-size: 18px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .b_step h5 {
    font-size: 15px;
  }
  .b_step .step .num {
    width: 45px;
  }
  .b_step .step .num strong {
    font-size: 35px;
  }
  .b_step .step dl {
    padding-left: 15px;
    width: calc(100% - 45px);
  }
  .b_step .step dl dt {
    font-size: 18px;
  }
}

.c_d50008 {
  color: #d50008;
}

.c_dd0008 {
  color: #dd0008;
}

.b_price {
  display: table;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
}

.b_price ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.b_price ul .ttl_price {
  background-color: #808080;
  width: 255px;
  font-size: 18px;
  text-align: center;
  padding: 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.b_price ul .price {
  font-weight: 700;
  background-color: #fff;
  text-align: center;
  margin-left: 1px;
  padding: 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 310px;
  font-size: 18px;
}

.b_price .cap {
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .b_price {
    width: 100%;
  }
  .b_price ul .ttl_price {
    width: 35%;
    padding: 10px;
  }
  .b_price ul .price {
    width: 65%;
    padding: 10px;
  }
}

.list_img {
  margin-bottom: 50px;
  padding-left: 20px;
}

.list_img dl {
  position: relative;
}

@media screen and (min-width: 1200px) {
  .list_img dl {
	margin-right: 40px;
  }
}

.list_img dl dt {
  background-color: #fff;
  border-bottom: 3px solid #dd0008;
  color: #000;
  padding: 5px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  position: absolute;
  top: 140px;
  left: -20px;
  z-index: 2;
  min-width: 160px;
}

@media screen and (max-width: 767px) {
  .list_img {
    padding-left: 0;
  }
  .list_img .item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
  .list_img dl {
    width: 100%;
    margin-bottom: 3%;
  }
  .list_img dl dt {
    top: 40vw;
    left: 0;
  }
}

.ttlh3 {
  font-size: 20px;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 30px;
  color: #dd0008;
}

@media screen and (max-width: 767px) {
  .ttlh3 {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.1em;
  }
}

.fl {
  float: left;
}

.fr {
  float: right;
}

#duct #mainvisual {
  background-image: url(../duct/images/key.jpg);
}

@media screen and (max-width: 767px) {
  #duct .ttlh2 img {
    width: 100%;
  }
  #duct #main .wrap {
    padding: 0;
  }
}

#duct .inner {
  background-color: #000;
  color: #fff;
  padding: 80px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin-top: 60px;
}

#duct .inner h3 {
  background-color: #99090e;
  color: #fff;
  font-size: 22px;
  text-align: center;
  padding: 17px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: -30px;
  left: 140px;
  right: 140px;
}

@media screen and (max-width: 1200px) and (min-width: 768px) {
  #duct .inner {
    padding: 80px 15px;
  }
}

@media screen and (max-width: 767px) {
  #duct .inner {
    padding: 60px 2%;
  }
  #duct .inner h3 {
    left: 2%;
    right: 2%;
    font-size: 17px;
    line-height: 1.5;
    padding: 5px;
  }
}

#duct #sec1 .row1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#duct #sec1 .row1 > * {
  width: 530px;
}

#duct #sec1 .row1 .col1 {
  width: 60%;
}

#duct #sec1 .row2 {
  padding-top: 45px;
}

@media screen and (max-width: 1200px) and (min-width: 768px) {
  #duct #sec1 .row1 > * {
    width: 49%;
  }
  #duct #sec1 .row1 .col1, #duct #sec1 .row1 .col2 {
    width: 49%;
  }
}

@media screen and (max-width: 767px) {
  #duct #sec1 .row1 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #duct #sec1 .row1 > * {
    width: 100%;
  }
  #duct #sec1 .row1 .left {
    margin-bottom: 4%;
  }
}

#duct #sec2 .row1 .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#duct #sec2 .row2 .item ,.list_img .item{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
	justify-content: flex-start;
}

#product .list_img{
  margin-bottom: 0;
}

#duct #sec2 .row2 .item .txt,.list_img .item .txt {
  margin-top: 20px;
}

#duct #sec2 .row2 dl:first-child .txt,.list_img dl:first-child .txt {
  width: 650px;
}

#duct #sec2 .row2 dl:nth-child(2) .txt,.list_img dl:nth-child(2) .txt {
  width: 320px;
}

#duct #sec2 .b_list {
  width: 566px;
  margin: 40px auto 0;
}

@media screen and (max-width: 1200px) and (min-width: 768px) {
  #duct #sec2 .list_img,.list_img {
    padding-left: 0;
  }
  #duct #sec2 .list_img dl dt,.list_img dl dt {
    top: 110px;
  }
  #duct #sec2 .row1 .item dl,.list_img dl {
    width: 31%;
  }
  #duct #sec2 .row2 dl:first-child,.list_img dl:first-child {
    width: 65%;
  }
  #duct #sec2 .row2 dl:first-child .txt,.list_img dl:first-child .txt {
    width: 100%;
  }
  #duct #sec2 .row2 dl:nth-child(2),.list_img dl:nth-child(2) {
    width: 32%;
  }
  #duct #sec2 .row2 dl:nth-child(2) .txt,.list_img dl:nth-child(2) .txt{
    width: 100%;
  }
  #duct #sec2 .row2 dl .pt,.list_img dl .pt1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #duct #sec2 .row2 dl .pt img ,.list_img dl .pt1 img{
    width: 49%;
  }
}

@media screen and (max-width: 767px) {
  #duct #sec2 .row2 dl:nth-child(2) .txt,.list_img dl:nth-child(2) .txt {
    width: 100%;
  }
  #duct #sec2 .row2 ,.list_img{
    margin-bottom: 30px;
  }
  #duct #sec2 .row2 dl:first-child,.list_img dl:first-child {
    margin-bottom: 30px;
  }
  /*
  #duct #sec2 .row2 dl:first-child dt, .list_img dl:first-child dt {
    top: 97vw;
  }
  */
  #duct #sec2 .ttl_step {
    margin-bottom: 20px;
  }
}

#duct #sec3 .row1 .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#duct #sec3 .row1 .item .right {
  width: 560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#duct #sec3 .row1 .item .right .list-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#duct #sec3 .row1 .txt_last {
  margin-top: 15px;
  margin-bottom: 50px;
}

#duct #sec3 .row1 .ttlh3 {
  margin-bottom: 8px;
  text-align: left;
}

#duct #sec3 .row2 {
  padding-left: 0;
  margin-bottom: 0;
}

#duct #sec3 .row2 h4 {
  text-align: center;
}

#duct #sec3 .row2 .item,
#duct #sec4 .row2 .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -40px;
}

#duct #sec3 .row2 .item > *,
#duct #sec4 .row2 .item > * {
  margin-bottom: 40px;
}

#duct #sec3 .row2 .item > *:not(:last-child),
#duct #sec4 .row2 .item > *:not(:last-child) {
  margin-right: 70px;
}

#duct #sec3 .row2 .item > *:nth-child(3n+3),
#duct #sec4 .row2 .item > *:nth-child(3n+3) {
  margin-right: 0;
}

@media screen and (max-width: 1200px) and (min-width: 768px) {
  #duct #sec3 .row1 .item > * {
    width: 49% !important;
  }
  #duct #sec3 .row2 dl dt,
  #duct #sec4 .row2 dl dt{
    top: 110px;
  }
  #duct #sec3 .row2 .item > *,
  #duct #sec4 .row2 .item > * {
    width: 31%;
  }
  #duct #sec3 .row2 .item > *:not(:last-child),
  #duct #sec4 .row2 .item > *:not(:last-child) {
    margin-right: 3.5%;
  }
  #duct #sec3 .row2 .item > *:nth-child(3n+3),
  #duct #sec4 .row2 .item > *:nth-child(3n+3) {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  #duct #sec3 .row1 .item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #duct #sec3 .row1 .item .pt {
    margin-top: 15px;
  }
  #duct #sec3 .row1 .item .right {
    width: 100%;
    margin-top: 20px;
  }
  #duct #sec3 .row1 .item .right dl {
    margin-bottom: 15px;
  }
  #duct #sec3 .row2 .item,
  #duct #sec4 .row2 .item {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #duct #sec4 .row2 .item > *{
    margin-right: 0 !important;
  }
  #duct #sec3 .row2 dl {
    width: 100%;
    margin: 0 0 20px !important;
  }
}

#duct #sec4 {
  padding-bottom: 60px;
}

#duct #sec4 .ttl_step {
  padding-top: 0;
  margin-bottom: 40px;
}

#duct #sec4 .b_list {
  width: 566px;
  margin: 40px auto 0;
}

@media screen and (max-width: 767px) {
  #duct #sec4 {
    padding-bottom: 50px;
  }
  #duct #sec4 .inner {
    margin-top: 30px;
    padding-top: 30px;
  }
}

#aircon .btn a {
  width: 300px;
}

#aircon #mainvisual {
  background-image: url(../aircon/images/key.jpg);
}

#aircon #main:nth-child(n+1) .wrap {
  padding: 0;
}

@media screen and (max-width: 767px) {
  #aircon .ttlh2 img {
    width: 100%;
  }
}

#aircon #sec1 {
  padding-bottom: 75px;
}

#aircon #sec1 .inner {
  background-color: #000;
  color: #fff;
  padding: 80px 60px 80px 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 35px;
}

#aircon #sec1 .inner .step4 .num {
  padding-bottom: 115px;
}

#aircon #sec1 .inner .step5 .num {
  padding-bottom: 115px;
}

#aircon #sec1 .inner .step6 .num {
  padding-bottom: 95px;
}

#aircon #sec1 .b_step .step dl {
  position: relative;
  width: calc(100% - 55px);
}

#aircon #sec1 .b_step .step dl >*:nth-child(2){
  width: calc(100% - 250px);
}

#aircon #sec1 .b_step .step dl .pt {
  position: absolute;
  right: 0;
  top: 10px;
  width: 217px;
}

#aircon #sec1 .b_list {
  margin-top: 40px;
  margin-bottom: 15px;
}

#aircon #sec1 .b_list .list-check {
  width: 33%;
}

@media screen and (max-width: 767px) {
  #aircon #sec1 {
    padding-bottom: 50px;
  }
  #aircon #sec1 .inner {
    padding: 60px 2%;
  }
  #aircon #sec1 .b_step .step dl .pt {
    position: unset;
    width: 70%;
    margin: 0 auto;
    padding-top: 20px;
  }
  #aircon #sec1 .b_step .step dl >*:nth-child(2){
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  #aircon #sec1 .b_list .list-check {
    width: 100%;
    float: none;
  }
  #aircon #sec1 .b_list .list-check li {
    margin-bottom: 0;
    line-height: 1.8;
  }
}

#aircon #sec2 {
  background-color: rgba(0, 0, 0, 0.1);
  padding-bottom: 50px;
}

#aircon #sec2 h2 {
  margin-bottom: 40px;
}

#aircon #sec2 .row1 {
  background-image: url(../aircon/images/s2_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  margin-bottom: 40px;
}

#aircon #sec2 .row1 h3 {
  font-size: 24px;
  text-align: center;
  line-height: 48px;
  padding-top: 50px;
  margin-bottom: 25px;
}

#aircon #sec2 .row1 h3 span {
  font-size: 36px;
}

#aircon #sec2 .row1 .list_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 60px;
}

#aircon #sec2 .row1 .list_contact .tel_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#aircon #sec2 .row1 .list_contact .tel_inner img {
  margin-right: 8px;
}

#aircon #sec2 .row1 .list_contact .tel_inner span {
  font-size: 40px;
  white-space: nowrap;
  font-weight: 600;
}

#aircon #sec2 .row1 .list_contact .tel_inner small {
  font-size: 14px;
  white-space: nowrap;
  margin-left: -50px;
}

#aircon #sec2 .row1 .list_contact .btn_mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #99090e;
  width: 320px;
  height: 60px;
}

#aircon #sec2 .row1 .list_contact .btn_mail:hover {
  background-color: #000;
}

#aircon #sec2 .row1 .list_contact .btn_mail img {
  margin-right: 12px;
}

#aircon #sec2 .row1 .list_contact .btn_mail .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#aircon #sec2 .row1 .list_contact .btn_mail .txt span {
  font-size: 16px;
  font-weight: 600;
}

#aircon #sec2 .row1 .list_contact .btn_mail .txt small {
  font-size: 13px;
}

#aircon #sec2 .row1 .list_contact > * {
  padding: 0 40px;
}

#aircon #sec2 .row1 .list_contact > * .tel_inner img {
  width: auto;
}

#aircon #sec2 .row1 .list_contact > * .btn_mail img {
  width: auto;
}

#aircon #sec2 .row1 .list_contact > *:first-child {
  border-right: 3px solid #d50008;
}

#aircon #sec2 .row1 .list_contact > *:last-child {
  -webkit-transition: .3s;
  transition: .3s;
}

#aircon #sec2 .row1 .list_contact > *:last-child:hover {
  opacity: .8;
}

#aircon #sec2 .row2 {
  padding-bottom: 50px;
}

#aircon #sec2 .row2 .tbl01 tr:first-child th {
  width: 405px;
}

#aircon #sec2 .row2 .tbl01 tr:first-child .bg_td {
  width: 265px;
}

#aircon #sec2 .row2 .tbl01 tr:first-child > * {
  background-color: #000;
  color: #fff;
  text-align: center;
  border-bottom: 1px solid #fff;
  font-weight: 600;
}

#aircon #sec2 .row2 .tbl01 tr:first-child > *:not(:last-child) {
  border-right: 1px solid #fff;
}

#aircon #sec2 .row2 .tbl01 tr > * {
  padding: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}

#aircon #sec2 .row2 .tbl01 tr th {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid #fff;
}

#aircon #sec2 .row2 .tbl01 tr td {
  background-color: #fff;
  border: 1px solid #000;
}

#aircon #sec2 .row2 .tbl01 tr:nth-last-child(2) > *:first-child {
  border-bottom: none;
}

@media screen and (max-width: 767px) {
  #aircon #sec2 .row1 h3 {
    font-size: 18px;
    line-height: 1.5;
  }
  #aircon #sec2 .row1 h3 span {
    font-size: 28px;
  }
  #aircon #sec2 .row1 .list_contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin: 0 auto;
  }
  #aircon #sec2 .row1 .list_contact > *:first-child {
    border-right: none;
    margin-bottom: 20px;
  }
  #aircon #sec2 .row2 {
    padding: 0 2%;
  }
}

.ly2_1 {
  position: relative;
  z-index: 1;
  color: #fff;
  margin-top: 50px;
}

.ly2_1 .wrap {
  padding: 50px 40px 60px;
}

.ly2_1::before {
  content: '';
  position: absolute;
  background-image: url(../images/s1_bg.jpg);
  top: 0;
  left: 0;
  width: calc(50% + 600px);
  bottom: 0;
  z-index: -1;
}

.ly2_1 h2 {
  background-color: #d50008;
  color: #fff;
  font-weight: 600;
  font-size: 22px;
  padding: 14px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
}

.ly2_1 h2 small{
  font-size: 14px;
  font-weight: normal;
  margin-left: auto;
}

.ly2_1 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ly2_1 .inner .col1 {
  width: 625px;
}

.ly2_1 .inner .col1 .txt {
  margin-bottom: 15px;
}

.ly2_1 .inner .col1 .cap {
  margin-top: 10px;
}

.ly2_1 .inner .col1 .price_dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
  margin-top: 1px;
}

.ly2_1 .inner .col1 .price_dl > * {
  background-color: #cccccc;
  width: 210px;
  text-align: center;
  font-weight: 600;
  padding: 7px 0;
}

.ly2_1 .inner .col1 .price_dl dt {
  margin-right: 1px;
}

.ly2_1 .inner .col1 .price_dl dd {
  background-color: #fff;
  width: 320px;
}

.ly2_1 .inner .col1 .list_check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 25px;
}

.ly2_1 .inner .col1 .list_check > * {
  width: 210px;
}

.ly2_1 table {
  background-color: #fff;
  color: #000;
}

.ly2_1 table tr:first-child {
  background-color: #cccccc;
}

.ly2_1 table tr th {
  font-weight: 600;
}

.ly2_1 table tr > * {
  border: 1px solid #000;
  padding: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  width: 215px;
}

.ly2_1.reserve::before {
  right: 0;
  left: auto;
}

.ly2_1.reserve .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 1200px) and (min-width: 768px) {
  .ly2_1 .col1 {
    max-width: 70%;
  }
  .ly2_1 .pt {
    width: 28%;
  }
}

@media screen and (max-width: 767px) {
  .ly2_1 {
    margin-top: 30px;
  }
  .ly2_1 h2 {
    font-size: 18px;
    padding: 8px 10px;
    margin-bottom: 20px;
  }
  .ly2_1 .wrap {
    padding: 25px 20px 30px;
  }
  .ly2_1::before {
    width: 100%;
  }
  .ly2_1 .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ly2_1 .inner .pt {
    margin-top: 2%;
  }
  .ly2_1.reserve .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 460px) {
  .ly2_1 h2{
    display: flex;
    flex-direction: column;
  }
  .ly2_1 h2 small{
    margin-left: 0;
  }
}

#other #mainvisual {
  background-image: url(../other/images/key.jpg);
}

#other .ly_button {
  margin-bottom: -7px;
}

#other .ly_button .b_btn {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#other .ly_button .b_btn > * {
  margin-left: 10px;
  margin-right: 10px;
}

#other .ly_button .b_btn .w355 {
  width: 345px;
}

#other .ly_button .btn {
  margin-bottom: 7px;
}

#other .ly_button .btn a {
  background-position: center right 15px;
}

#other .ly_button .btn a:hover {
  background-position: center right 10px;
}

#other .ly_button .mr0 {
  margin-right: 0;
}

#other .ly_button .ml0 {
  margin-left: 0;
}

@media screen and (max-width: 1200px) and (min-width: 768px) {
  #other .ly_button .b_btn > * {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media screen and (max-width: 767px) {
  #other .ly_button .b_btn {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #other .ly_button .b_btn > * {
    margin-left: 0;
    margin-right: 0;
  }
  #other .ly_button .b_btn .w355 {
    width: 100%;
  }
  #other .ly_button .btn {
    width: 80%;
  }
  #other .ly_button .btn a {
    width: 100%;
  }
  #other .ly_button .mr0 {
    margin-right: 0;
  }
  #other .ly_button .ml0 {
    margin-left: 0;
  }
}

#other #main {
  padding-bottom: 60px;
}

.ly1 {
  position: relative;
  z-index: 1;
  color: #fff;
}

.ly1 .ttlh3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 545px;
}

.ly1 .ttlh3 strong {
  margin-right: 20px;
  font-size: 72px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  -webkit-transform: scaleY(1.08);
          transform: scaleY(1.08);
  line-height: 1;
}

.ly1 .ttlh3 span {
  color: #fff;
  font-size: 18px;
  border-bottom: 3px solid #dd0008;
  padding: 14px 0;
  letter-spacing: 0.1em;
  padding-right: 30px;
  width: 100%;
  text-align: left;
}

.ly1::before {
  content: '';
  position: absolute;
  background-color: #000;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  z-index: -1;
}

.ly1.reserve .wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.ly1.reserve .wrap .col:nth-child(1) {
  padding-left: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.ly1.reserve::before {
  left: auto;
  right: 0;
}

.ly1 .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  align-items: center;
}

.ly1 .wrap .txt {
  margin-bottom: 45px;
  width: 545px;
}

.ly1 .wrap .col {
  width: 50%;
}

.ly1 .wrap h2 {
  padding-top: 80px;
}

.ly1 .wrap .btn1 {
  padding-bottom: 20px;
}

@media screen and (max-width: 1200px) and (min-width: 768px) {
  .ly1.reserve .wrap .col:nth-child(1) {
    padding-left: 20px;
  }
  .ly1 .wrap .col:nth-child(1) {
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .ly1 .pt img {
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .ly1 .ttlh3 {
    padding-top: 0;
  }
  .ly1 .ttlh3 strong {
    font-size: 50px;
  }
  .ly1 .ttlh3 span {
    font-size: 20px;
	padding-right: 0;
  }
  .ly1.first .ttlh3 {
    padding-top: 20px;
  }
  .ly1::before {
    width: 100%;
  }
  .ly1 .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ly1 .wrap h2 {
    width: 60%;
    padding-top: 35px;
  }
  .ly1 .wrap .col {
    width: 100%;
  }
  .ly1 .wrap .txt {
    margin-bottom: 20px;
  }
  .ly1 .wrap .pt {
    padding-bottom: 40px;
    background: none !important;
  }
  .ly1.reserve .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ly1.reserve .wrap .col:nth-child(1) {
    padding-left: 0;
  }
  .ly1#sec5 {
    padding-bottom: 55px;
  }
}

#strength #mainvisual {
  background-image: url(../strength/images/key.jpg);
}

#strength #sec1 h2 {
  margin-bottom: 40px;
}

#strength #sec2 {
  position: relative;
  padding-bottom: 60px;
}

#strength #sec2 .row1 h3 {
  font-size: 16px;
  margin-top: 50px;
  margin-bottom: 15px;
}

#strength #sec2 .row2 {
  margin-top: 75px;
  padding: 0 20px;
}

#strength #sec2 .row2 h3 {
  font-size: 30px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d50008), to(#d50008));
  background-image: linear-gradient(#d50008, #d50008);
  background-size: 70px 3px;
  background-repeat: no-repeat;
  background-position: center bottom;
  line-height: 1;
  padding-bottom: 25px;
  margin-bottom: 100px;
}

#strength #sec2 .row2 .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #000;
  padding-bottom: 45px;
  margin-bottom: 45px;
  padding-right: 90px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#strength #sec2 .row2 .item.last {
  border-bottom: none;
}

#strength #sec2 .row2 .item h4 {
  color: #d50008;
  font-size: 24px;
  letter-spacing: 0;
  margin-bottom: 10px;
}

#strength #sec2 .row2 .item .col1 {
  max-width: 568px;
}

#strength #sec2 .row2 .item .col1 dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
}

#strength #sec2 .row2 .item .col1 dl dt {
  min-width: 124px;
}

@media screen and (max-width: 767px) {
  #strength #sec2 {
    padding-bottom: 0;
  }
  #strength #sec2 .row1 h3 {
    margin-top: 20px;
  }
  #strength #sec2 .row2 {
    margin-top: 50px;
    padding: 0;
  }
  #strength #sec2 .row2 h3 {
    margin-bottom: 50px;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
  #strength #sec2 .row2 .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  #strength #sec2 .row2 .item h4 {
    font-size: 20px;
  }
  #strength #sec2 .row2 .item > * {
    width: 100%;
  }
  #strength #sec2 .row2 .item .pt {
    margin-top: 20px;
  }
}

.ttl5 {
  font-size: 30px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d50008), to(#d50008));
  background-image: linear-gradient(#d50008, #d50008);
  background-size: 70px 3px;
  background-repeat: no-repeat;
  background-position: center bottom;
  line-height: 1;
  padding-bottom: 25px;
  margin-bottom: 100px;
  padding-top: 75px;
  margin-bottom: 50px;
}

.ly2_2 {
  padding: 55px 20px 0;
}

#product #sec6.ly2_2 {
  padding: 55px 20px 70px;
}

#product .btn a {
    width: 350px;
    height: 46px;
}

.ly2_2 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ly2_2 .inner .item {
  width: 370px;
}

.ly2_2 .inner .item:nth-child(3n+2) {
  margin-left: 42px;
  margin-right: 42px;
}

.ly2_2 .inner .item .pt {
  width: 100%;
  height: 248px;
}

.ly2_2 .inner .item .pt img {
  -o-object-fit: contain;
     object-fit: contain;
}

.ly2_2 .inner .item dl {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 30px;
}

.ly2_2 .inner .item dl dt {
  font-weight: 600;
  font-size: 18px;
}

.ly2_2 .inner .item dl dd {
  text-align: left;
  letter-spacing: 0;
}

.ly2_2 .btn {
  display: table;
  margin: 0 auto;
  padding-bottom: 30px;
  margin-top: 30px;
}
}

.ly2_2 .btn a {
  width: 350px;
}

@media screen and (max-width: 1210px) and (min-width: 768px) {
  .ly2_2 .inner .item {
    width: calc((100% - 84px)/3);
  }
  .ly2_2 .inner .item .pt {
    position: relative;
  }
  .ly2_2 .inner .item .pt img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    bottom: 0;
    height: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
	.ly2_2 {
	  padding: 5% 0 0;
	}
	#product #sec6.ly2_2 {
	  padding: 5% 0 0;
	}
	#product #sec2.ly2_3 .ttl5{
	  padding: 10% 0 6%;
	  font-size: 20px;
	  margin-bottom: 30px;
	}
  .ly2_2 .inner .item {
    width: 49%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .ly2_2 .inner .item:nth-child(even) {
    margin-left: 2% !important;
  }
  .ly2_2 .inner .item .pt {
    max-height: 250px;
    height: auto;
  }
	#product .btn a {
		width: 310px;
	}
}

.ly2_3 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ly2_3 .inner .item {
  margin-left: 23px;
  margin-right: 23px;
}

.ly2_3 .inner .ml0 {
  margin-left: 0;
}

.ly2_3 .inner .mr0 {
  margin-right: 0;
}

.ly2_3 .inner dl {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 30px;
}

.ly2_3 .inner dl dt {
  font-weight: 600;
  font-size: 18px;
}

.ly2_3 .inner .pt {
  width: 262px;
  height: 262px;
}

.ly2_3 .btn {
  display: table;
  margin: 0 auto;
  padding-bottom: 30px;
  margin-top: 30px;
}

.ly2_3 .btn a {
  width: 350px;
}

@media screen and (max-width: 1210px) and (min-width: 768px) {
  .ly2_3 .inner .item {
    width: calc((100% - 84px)/4);
  }
  .ly2_3 .inner .item .pt {
    position: relative;
    max-height: 248px;
  }
}

@media screen and (max-width: 767px) {
  .ly2_3 .inner .item {
    width: 49%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .ly2_3 .inner .item:nth-child(even) {
    margin-left: 2% !important;
  }
  .ly2_3 .inner .item .pt {
    display: table;
    margin: 0 auto;
    width: 96%;
    height: auto;
    max-height: 250px;
  }
}

.ly2_4 {
  position: relative;
  z-index: 1;
  color: #fff;
  margin-bottom: 50px;
}

.ly2_4 .wrap {
  padding: 40px 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.ly2_4::before {
  content: '';
  position: absolute;
  background-image: url(../images/s1_bg.jpg);
  top: 0;
  left: 0;
  width: calc(50% + 600px);
  bottom: 0;
  z-index: -1;
}

.ly2_4 h2 {
  background-color: #d50008;
  font-weight: 600;
  font-size: 24px;
  padding: 14px 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 35px;
}

.ly2_4.reserve::before {
  left: auto;
  right: 0;
}

.ly2_4 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ly2_4 .inner .txt {
  width: 30%;
  margin-left: 40px;
}

.ly2_4 .inner .b_pt {
  width: 67%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.ly2_4 .inner .b_pt .pt1 {
  margin-right: 50px;
  width: 40%;
}

.ly2_4 .inner .b_pt .pt2 {
  width: 60%;
}

.ly2_4 .inner .b_pt .pt1::after {
  content: '';
  background: url(../works/images/arr.png) no-repeat center center/contain;
  width: 17px;
  height: 68px;
  position: absolute;
  bottom: 80px;
  right: -35px;
}

.ly2_4 .inner .b_pt li {
  position: relative;
}

.ly2_4 .inner .b_pt li span {
  position: absolute;
  background-color: #fff;
  border-bottom: 3px solid #d50008;
  color: #000;
  bottom: 17px;
  right: -20px;
  font-weight: 18;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
  width: 120px;
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .ly2_4 {
    margin-bottom: 30px;
  }
  .ly2_4::before {
    width: 98%;
  }
  .ly2_4 .wrap {
    padding: 20px 4%;
  }
  .ly2_4 h2 {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.3;
    padding: 8px 10px;
    text-align: center;
  }
  .ly2_4 .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ly2_4 .inner .b_pt {width: 100%;}
  .ly2_4 .inner .txt {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }
  .ly2_4 .inner .b_pt .pt1 {
    margin-right: 30px;
  }
  .ly2_4 .inner .b_pt .pt1::after {
    width: 10px;
    bottom: 30px;
    right: -22px;
  }
  .ly2_4 .inner .b_pt li span {
    width: 80px;
    padding: 3px;
    bottom: 5px;
    right: -10px;
  }
}

#product #mainvisual {
  background-image: url(../product/images/key.jpg);
}

#work #mainvisual {
  background-image: url(../works/images/key.jpg);
}

#work #sec0 {
  margin-bottom: 50px;
  padding-top: 40px;
}

#work #sec0 h2 {
  padding-top: 0;
}

@media screen and (max-width: 767px) {
  #work #sec0 {
    margin-bottom: 25px;
  }
}

#work #s_button {
  padding-bottom: 180px;
}

#work #s_button .b_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#work #s_button .b_btn .next {
  margin-left: auto;
}

#work #s_button .b_btn .btn a {
  padding: 12px;
}

#work #s_button .b_btn .prev a {
  background-image: url(../company/images/arr_prev.png);
}

#work #s_button .b_btn .prev a:hover {
  background-position: center right 30px;
}

@media screen and (max-width: 767px) {
  #work #s_button {
    padding-bottom: 50px;
  }
  #work #s_button .b_btn .btn {
    width: 45%;
  }
  #work #s_button .b_btn .btn a {
    padding: 6px;
    background-position: center right 10px !important;
  }
}

#contact #mainvisual {
  background-image: url(../contact/images/key.jpg);
}

#contact #sec1 {
  color: #fff;
}

#contact #sec1 .wrap {
  background: url(../contact/images/s1_bg.jpg) no-repeat center top/cover;
  padding-bottom: 60px;
}

#contact #sec1 h3 {
  font-size: 21px;
  font-weight: 600;
  margin-top: 35px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  #contact #sec1 {
    margin-top: 40px;
  }
  #contact #sec1 h3 {
    font-size: 18px;
  }
  #contact #sec1 .tel {
    width: 70%;
    margin: 0 auto;
  }
}

#contact #sec1 .tel {
  display: table;
  margin: 0 auto;
  line-height: 1;
}

#contact #sec1 .tel .tel_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#contact #sec1 .tel img {
  margin-right: 15px;
  margin-top: 5px;
  width: 46px;
}

#contact #sec1 .tel span {
  font-size: 54px;
  display: block;
  white-space: nowrap;
  font-weight: 700;
}

#contact #sec1 .tel small {
  font-size: 17px;
  line-height: 1;
  display: block;
  margin-top: 10px;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  #contact #sec1 .tel img {
    width: 35px;
    margin-top: 5px;
    margin-right: 8px;
  }
  #contact #sec1 .tel .txt {
    text-align: left;
  }
  #contact #sec1 .tel span {
    font-size: 40px;
    letter-spacing: 0.08em;
  }
  #contact #sec1 .tel small {
    font-size: 15px;
  }
}

#contact #sec2 {
  padding-bottom: 80px;
}

#contact #sec2 .cap {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  #contact #sec2 {
    padding-bottom: 40px;
  }
  #contact #sec2 .cap {text-align: left;}
}

#contact #pp {
  background-color: rgba(0, 0, 0, 0.1);
  padding-bottom: 60px;
}

#contact #pp .cap {
  margin-top: 25px;
  margin-bottom: 30px;
}

#contact #pp .gray_sec {
  background-color: #fff;
  padding: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#contact #pp .c_00a7ea {
  color: #003bb4;
}

#contact #pp .c_00a7ea:hover {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  #contact #pp {
    padding-bottom: 40px;
  }
  #contact #pp .gray_sec {
    padding: 15px;
  }
  #contact #pp .gray_sec a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
	color: #000;
	text-decoration: underline;
  }
}

#news #mainvisual {
  background-image: url(../news/images/key.jpg);
}

.price_add {
  display: flex;
  justify-content: space-between;
}
/*# sourceMappingURL=content.css.map */