@charset "utf-8";
/*---------------------------------------------
 **  リセット
---------------------------------------------*/

article,
aside,
hgroup,
header,
address,
figure,
figcaption {
  margin: 0;
  padding: 0;
}

h2,
h3,
h4,
h5 {
  margin-top: 0;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style-type: none;
}

dd {
  margin-inline-start: 0;
  margin: 0;
}

/*---------------------------------------------
	body
---------------------------------------------*/
* {
  box-sizing: border-box;
  /*通常の記述*/
  -webkit-box-sizing: border-box;
  /*Google ChromeやSafariの機能を利用*/
  -moz-box-sizing: border-box;
  /*Firefoxの機能を利用*/
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  overflow-y: scroll;
}

/* 10px */
body {
  margin: 0;
  padding: 0;
  font-size: 1.8rem;
  color: #333;
  line-height: 1.7;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP";
}

img {
  width: 100%;
  height: auto;
}

/*---------------------------------------------
	Anchor
---------------------------------------------*/
a {
  outline: none;
  -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;
}

a:link {
  text-decoration: none;
  color: #0059b2;
  text-decoration: underline;
}

a:visited {
  text-decoration: none;
  color: #0059b2;
}

a:hover {
  color: color-mod(#0059b2 shade(50%));
  text-decoration: none;
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}



a:active {
  text-decoration: none;
  color: #0059b2;
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*---------------------------------------------
	p
---------------------------------------------*/
p {
  margin-bottom: 0.6em;
  margin-top: 0.6em;
}

p+a {
  margin-top: 0.6em !important;
}

p+div {
  margin-top: 0.6em !important;
}

/*---------------------------------------------
 ** ON OFF 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 )";
}

/*---------------------------------------------
 **  ページトップ
---------------------------------------------*/
#pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

#pageTop a {
  display: block;
  padding: 5px 3px 0px 3px;
  border-radius: 30px;
  background-color: #02529c;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  background: url(../img/common/page_top.png) no-repeat;
  background-size: 100%;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}

/*---------------------------------------------
 **   text-align
---------------------------------------------*/
.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.fwb {
  font-weight: bold;
}

.ma0 {
  margin: 0 auto;
}

/*---------------------------------------------
 **   padding
---------------------------------------------*/
.pLR1em {
  padding: 0 1em;
}

/*---------------------------------------------
 ** パンくずリスト
---------------------------------------------*/
nav#breadcrumbs ol {
  padding: 0;
  z-index: 99;
  position: relative;
}

nav#breadcrumbs ol li {
  display: inline;
  list-style-type: none;
  font-size: 0.8rem;
}

nav#breadcrumbs ol li:before {
  content: " > ";
}

nav#breadcrumbs ol li:first-child:before {
  content: "";
}

/*---------------------------------------------
 **  flexbox
---------------------------------------------*/
.display_flex {
  display: flex;
}

.flex_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex_item_clounm_3 {
  width: 31.5%;
}

.flex_item_clounm_2 {
  width: 48.5%;
  margin-bottom: 25px;
}

.flex_item_clounm_4 {
  width: 23.5%;
  margin-bottom: 25px;
}

.full .flex_item_clounm_4 {
  width: 25%;
  margin-bottom: 0;
  _zoom: 1;
  overflow: hidden;
}

/*=================================================================================================================================*/
/**  共通部分	*/
/*=================================================================================================================================*/

/*---------------------------------------------
 ** 見出し
---------------------------------------------*/
/*---------------------------------------------
 ** h2
---------------------------------------------*/
h2 {
  font-size: 4rem;
  line-height: 1.5;
  margin-bottom: 1.8rem;
}

/*---------------------------------------------
 ** h3
---------------------------------------------*/
h3 {
  font-size: 3rem;
  margin-bottom: 0;
}

/*---------------------------------------------
 ** コンテンツ全体
---------------------------------------------*/
#content {
  width: 100%;
}

#main {
  width: 100%;
  margin: 0 auto;
  padding: inherit;
}

/*---------------------------------------------
 ** セクション
---------------------------------------------*/
.section_block {
  margin-bottom: 100px;
}

/*---------------------------------------------
 ** ヘッダー記述
---------------------------------------------*/
#header {
  width: 100%;
  box-shadow: none;
}



/* ロゴ */

#logo a {
  width: 100%;
  height: 100%;
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(../img/common/logo.png) no-repeat;
  background-size: 100%;
  z-index: 9;
  position: relative;
}

/* メインイメージ */

.main_img {
  width: 100%;
  position: relative;
}

.main_img {
  background: url(../img/bg_sky.jpg) top center no-repeat;
}

/*---------------------------------------------
 ** フッター記述
---------------------------------------------*/
#footer {
  clear: both;
  position: relative;
}

/* footerロゴ */
#footer #logo {
  margin: 0 auto 25px;
  position: relative;
  top: 0;
}

/* フッターインナー */
.footer_inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 0 0 0;
}

/* コピーライト */
#copyright {
  color: #ffffff;
  font-weight: bold;
  font-size: 0.8em;
  letter-spacing: 5px;
  width: 100%;
  text-align: center;
  padding: 15px 0 18px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1283aa+0,0b9cad+100 */
  background: #1283aa;
  /* Old browsers */
  background: -moz-linear-gradient(left, #1283aa 0%, #0b9cad 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #1283aa 0%, #0b9cad 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #1283aa 0%, #0b9cad 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1283aa', endColorstr='#0b9cad', GradientType=1);
  /* IE6-9 */
}

/*=================================================================================================================================*/
/**  TOPコンテンツ	*/
/*=================================================================================================================================*/

/*=================================================================================================================================*/
/**  内部ページ	*/
/*=================================================================================================================================*/

.top_01_features .flex_item_clounm_3 .top_01_features {
  background: #21a4ae;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  padding: 9px;
}

.top_01_features .bdr {
  border: 3px dashed #fff;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
  padding: 0px 20px 20px 20px;
}

.bt_base {
  display: block;
  border: 1px solid #eeeeee;
  background: #eeeeee;
  /* Old browsers */
  background: -moz-linear-gradient(top,
      #eeeeee 0%,
      #eeeeee 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top,
      #eeeeee 0%,
      #eeeeee 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,
      #eeeeee 0%,
      #eeeeee 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#eeeeee', GradientType=0);
  /* IE6-9 */
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  color: #333 !important;
  font-size: 20px;
  text-decoration: none !important;
  padding: 8px 5px;
}

.txt_sdw {
  color: #ffffff !important;
  text-shadow: 2px 3px 0px #156b71;
}

.top_01_features .bdr h3 {
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
  line-height: 1.4;
  font-size: 3.4rem;
  margin-bottom: 2.5rem;
  margin-top: 2.6rem;
}

/* 限られた予算で熱中症対策を行う */

.bg_01 {
  padding: 80px 0 100px 0;
  background: url(../img//bg_01.jpg) top center;
  background-size: cover;
}

.h2_ptn_01 {
  font-size: 4.7rem;
  font-weight: bold;
  color: #000000;
  line-height: 1.3;
  letter-spacing: -1px;
}

.h2_span {
  font-size: 2.9rem;
  color: #1fa4ac;
  display: block;
}

.h2_ptn_02 {
  font-size: 4rem;
  font-weight: bold;
  color: #000000;
  line-height: 1.6;
  letter-spacing: -1px;
  text-align: center;
  margin: 0 auto 3rem;
}

.h2_ptn_03 {
  font-size: 3rem !important;
  margin: 0 auto 0rem !important;

}

.h2_span_ptn_02 {
  font-size: 2rem;
  color: #1fa4ac;
  display: block;
  letter-spacing: 1px;
}


strong.strong {
  font-size: 24px;
  color: #000000;
  font-weight: bold;
  margin: 1rem 0 0;
  display: inline-block;
}

strong.strong span {
  color: #1fa4ac;
}

.img_01 {
  margin-top: 60px;
}

.img_03 {
  max-width: 1135px;
}

.img_04 {
  max-width: 590px;
}

.img_product_01 {
  max-width: 739px;
}

.img_product_02 {
  max-width: 330px;
}

.img_product_03 {
  max-width: 330px;
}

.img_product_04 {
  max-width: 330px;
}

.red {
  color: #ff0000;
}

.bg_green {
  background: #21a4ae;
  font-size: 2.8rem;
  color: #fff;
  padding: 13px;
  font-weight: bold;
}

.colYellow {
  color: #ffd200;
}

.fzl {
  font-size: 4.8rem;
}

.fzm {
  font-size: 3.8rem;
}

.fzmm {
  font-size: 3rem;
}

.fzs {
  font-size: 2rem;
}

.fzss {
  font-size: 1.6rem;
}

.bg_02 {
  padding: 0;
  background: url(../img//bg_02.jpg) top center no-repeat;
}

/* キャスター・操作パネル付きだから */
.dl_wrapper {
  border: 3px solid #1fa4ac;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  _zoom: 1;
  overflow: hidden;
}

.dl_wrapper>dt {
  background: #1fa4ac;
  text-align: center;
  padding: 1rem;
  font-size: 3rem;
  color: #fff;
}

.dl_wrapper>dd {
  padding: 1% 5%;
  background: #ffffff;
}

.bg_03 {
  padding: 70px 0 0 0;
  background: url(../img//bg_03.jpg) top center no-repeat;
}

/* 設置例のご紹介 */
.h2_strong_coolx {
  position: relative;
}

.h2_strong_coolx:before {
  width: 350px;
  height: 118px;
  display: block;
  margin: 0 auto 15px;
  background: url(../img/strongcoolx.png) no-repeat;
  content: "";
}

#strongcool7 .h2_strong_coolx:before {
  background: url(../img/product/strongcool7/logo.png) no-repeat;
}


.dl_wrapper.ex dt {
  background: #fff;
  color: #333333;
  font-size: 1.8rem;
  width: 30%;
  padding: 1.1rem 1rem 1rem;
  border-right: 1px solid #1fa4ac;
}

.dl_wrapper.ex dd {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dl_wrapper.ex dd p {
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0;
}

.dl_wrapper.ex dd p span {
  font-size: 1.8rem;
}

.ex_wrapper {
  position: relative;
  margin: 0 0 44px;
}

.ex_hkd {
  width: 100px;
  height: 100px;
  background: #1fa4ac;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.2));
  -moz-filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.2));
  -ms-filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.2));
  text-align: center;
  padding: 10px;
  color: #fff;
}

.ex_hkd:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top-color: #1fa4ac;
}

.ex_hkd_inner_top {
  display: block;
  font-size: 1.6rem;
  border-bottom: 1px solid #fff;
  margin: 0;
}

.ex_hkd_inner_bottom {
  display: block;
  font-size: 3.8rem;
  margin: 0;
  line-height: 1.5;
}

.colGreen {
  color: #1fa4ac;
}

.ex_ls {
  background: #eafafb;
  padding: 5%;
  max-width: 500px;
  margin: 0 auto;
}

.ex_ls li {
  position: relative;
  margin-bottom: 5px;
  letter-spacing: -1px;
}

.ex_ls li::before {
  display: inline-block;
  content: "■";
  color: #1fa4ac;
  margin-right: 5px;
}

.w100 {
  width: 100%;
}

.ex_ls .w100 {
  width: 100%;
}

.ex_ls .w50 {
  width: 50%;
}

.bg_04 {
  padding: 70px 0 0 0;
  background: url(../img//bg_02.jpg) top center no-repeat;
}

.bgno {
  background: unset;
}

.proce {
  max-width: 1201px;
  margin-top: 15px;
}

.pbtw {
  margin-bottom: 30px;
}

.pbtw dt {
  background: #a3a3a3;
  color: #fff;
  text-align: left;
  padding: 4px 40px;
  margin-bottom: 5px;
}

.send_price>dl {
  width: 190px;
  border-color: #000;
}

.send_price>dl>dt {
  font-size: 21px;
  padding: 1.5rem 1rem;
  background: #000;
}

.send_price>dl>dd {
  padding: 0 0px;
}

.send_price>dl>dd>dl {
  border-bottom: 1px solid #000;
  padding-bottom: 10px;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.send_price>dl>dd>dl:last-of-type {
  border-bottom: none;
  padding-bottom: 0px;
}

.send_price>dl>dd>dl dt {
  background: #eeeeee;
  font-size: 1.6rem;
  width: 30%;
  margin: 0 10px;
  padding: 2px 0 0 0;
}

.send_price>dl>dd>dl dd {
  font-size: 1.8rem;
  width: 47%;
  margin: 0 10px;
  text-align: left;
}

.hn {
  margin-top: 20px;
}

.hn_h {
  font-size: 3rem;
  position: relative;
  padding-left: 1.5em;
  font-weight: bold;
}

.hn_h:before {
  display: inline-block;
  font-size: 1.4rem;
  padding: 10px;
  /* content: "●"; */
  /* position: absolute; */
  /* top: 5px; */
}

.product_img {
  width: 40%;
}

.product_dl {
  width: 60%;
}

.product_dl dl {
  width: 100%;
}

.product_dl dl {
  margin-bottom: 3px;
}

.product_dl dl>dt {
  font-size: 2rem;
  padding: 1rem 0.6rem;
}

.product_dl dl>dd {
  text-align: center;
  padding: 1.5rem 1rem;
}

.product_dl_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  margin-bottom: 0;
  margin-top: 0;
}

.product_dl .product_dl_list dt {
  background: #fff !important;
  text-align: right;
  width: 40%;
}

.product_dl .product_dl_list dd {
  text-align: left;
  width: 60%;
}

.ch {
  color: #666666;
  font-size: 1.6rem;
  margin: 10px auto;
}

/*=================================================================================================================================*/
/**  よくある質問	*/
/*=================================================================================================================================*/

@keyframes tabAnim {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.tab_wrap {
  width: 100%;
  margin: 0px auto 53px;
}

input[type="radio"] {
  display: none;
}

.tab_area {
  font-size: 0;
  margin: 0 10px 50px;
  border-bottom: 2px solid #1fa4ac;
}

.tab_area label {
  margin: 0 5px;
  display: inline-block;
  padding: 10px 0px;
  max-width: 197px;
  width: 100%;
  color: #1fa4ac;
  background: #fff;
  border-right: 1px solid #1fa4ac;
  border-left: 1px solid #1fa4ac;
  border-top: 1px solid #1fa4ac;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: ease 0.2s opacity;
  border-radius: 6px 6px 0px 0px;
}

.tab_area label:hover {
  opacity: 0.5;
}

.tab_panel {
  width: 100%;
  opacity: 0;
  padding: 0px 0;
  display: none;
}

.tab_panel p {
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
}

.panel_area {}

#tab1:checked~.tab_area .tab1_label {
  background: #1fa4ac;
  color: #fff !important;
  opacity: 1;
}

#tab1~.tab_area .tab1_label,
#tab2~.tab_area .tab2_label,
#tab3~.tab_area .tab3_label,
#tab4~.tab_area .tab4_label {
  top: -0;
  position: relative;
  display: inline-block;
}

#tab1:checked~.tab_area .tab1_label,
#tab2:checked~.tab_area .tab2_label,
#tab3:checked~.tab_area .tab3_label,
#tab4:checked~.tab_area .tab4_label {
  position: relative;
  top: -0;
  color: #fff !important;
}

#tab1:checked~.panel_area #panel1 {
  display: block;
  animation: tabAnim ease 0.6s forwards;
  -ms-animation: tabAnim ease 0.6s forwards;
  opacity: 1;
}

#tab2:checked~.tab_area .tab2_label {
  background: #1fa4ac;
  color: #fff !important;
  opacity: 1;
}

#tab2:checked~.panel_area #panel2 {
  display: block;
  animation: tabAnim ease 0.6s forwards;
  -ms-animation: tabAnim ease 0.6s forwards;
  opacity: 1;
}

#tab3:checked~.tab_area .tab3_label {
  background: #1fa4ac;
  color: #fff !important;
  opacity: 1;
}

#tab3:checked~.panel_area #panel3 {
  display: block;
  animation: tabAnim ease 0.6s forwards;
  -ms-animation: tabAnim ease 0.6s forwards;
  opacity: 1;
}

#tab4:checked~.tab_area .tab4_label {
  background: #1fa4ac;
  color: #fff !important;
  opacity: 1;
}

#tab4:checked~.panel_area #panel4 {
  display: block;
  animation: tabAnim ease 0.6s forwards;
  -ms-animation: tabAnim ease 0.6s forwards;
  opacity: 1;
}

.bg_black {
  background: #000;
}

.faq {
  text-align: left;
  margin-top: 0;
}

.faq:before {
  display: block;
  color: #1fa4ac;
  font-size: 2.2rem;
}

.flex_item_clounm_2:nth-of-type(1) .faq:before {
  content: "Q1";
}

.flex_item_clounm_2:nth-of-type(2) .faq:before {
  content: "Q2";
}

.flex_item_clounm_2:nth-of-type(3) .faq:before {
  content: "Q3";
}

.flex_item_clounm_2:nth-of-type(4) .faq:before {
  content: "Q4";
}

.flex_item_clounm_2:nth-of-type(5) .faq:before {
  content: "Q5";
}

.flex_item_clounm_2:nth-of-type(6) .faq:before {
  content: "Q6";
}

.flex_item_clounm_2:nth-of-type(7) .faq:before {
  content: "Q7";
}

.flex_item_clounm_2:nth-of-type(8) .faq:before {
  content: "Q8";
}

.flex_item_clounm_2:nth-of-type(9) .faq:before {
  content: "Q9";
}

.flex_item_clounm_2:nth-of-type(10) .faq:before {
  content: "Q10";
}

.flex_item_clounm_2:nth-of-type(11) .faq:before {
  content: "Q11";
}

.flex_item_clounm_2:nth-of-type(12) .faq:before {
  content: "Q12";
}

.flex_item_clounm_2:nth-of-type(13) .faq:before {
  content: "Q13";
}



.faq dt {
  font-weight: bold;
  padding-bottom: 15px;
}

.faq dd {
  background: #f1fbfc;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  padding: 6% 5%;
  position: relative;
}

.faq dd:after {
  width: 97px;
  height: 97px;
  position: absolute;
  top: -79px;
  right: 20px;
  background: url(../img/faq_icon.png) no-repeat;
  content: "";
}

.gr {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3",
    "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.about_table_wrapper {
  border: 2px solid #1fa4ac;
  margin-top: 30px;
}

.about_table {
  width: 50%;
  border-collapse: collapse;
}

.about_table th {
  background: #f0f0f0;
  width: 200px;
  text-align: center;
  padding: 15px;
  border-bottom: 1px solid #cdcdcd;
}

.about_table td {
  padding: 15px 30px;
  background: #fff;
  border-bottom: 1px solid #cdcdcd;
}

/*２カラムのときは消す*/
.about_table {
  width: 100%;
}

.about_table th {
  width: 300px;
}

/*２カラムのときは消す*/

.flow dl {
  width: 23%;
  border-color: #053479;
  position: relative;
  overflow: unset;
  background: #fff;
}

.flow dl:after {
  position: absolute;
  top: 40%;
  right: -25px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24.5px 0 24.5px 22px;
  border-color: transparent transparent transparent #053479;
}

.flow dl:last-of-type:after {
  display: none;
}

.flow dl dt {
  background: #053479;
}

.flow dl dd {
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 1.6rem;
  text-align: left;
  padding: 1.5rem 1.5rem 1rem;
}

.blue {
  color: #053479;
}

/*===========================================================================================*/
/**  お問い合わせフォーム	*/
/*====================================================================================*/
.form_inner {
  background: #fff;
  margin-bottom: 0;
  padding: 2rem 0 0.1rem;
}

.form_inner dl {
  padding: 3.5rem 6rem 3rem;
  border-bottom: 1px solid #cdcdcd;
  margin: 0;
}

.form_inner dl dt {
  position: relative;
  padding-left: 30px;
  width: 20%;
  font-size: 2rem;
  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;
}

.rtl3 {
  width: 100px;
}

.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: 2rem;
  padding: 3rem 4rem;
  margin-top: 40px;
  margin-bottom: 41px;
}

.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;
  padding: 0.2rem 1rem;
  margin: 0.2rem;
  display: inline-block;
  border-radius: 5px;
  background-color: #FFE8DF;
}


.screen-reader-response ul {
  display: none;
}

.screen-reader-response {
  display: none;
}



/*---------------------------------------------
 **  ページトップ
---------------------------------------------*/
#pageTop {
  position: fixed;
  bottom: 32px;
  right: 20px;
  z-index: 999;
}

#pageTop a {
  display: block;
  padding: 5px 3px 0px 3px;
  border-radius: 30px;
  width: 56px;
  height: 67px;
  background-color: #02529C;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  background: url(../img/common/page_top.png) no-repeat;
  background-size: 100%;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}


.send_wrapper {
  padding: 3rem;
  border: 3px solid #000;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  width: 85%;
  margin: 0rem auto 0.5rem;
  padding: 3rem 4rem;
}

.send_01 {
  background: #1FA4AC;
  color: #FFF;
  padding: 0.3rem 4rem 0.3rem;
  font-size: 2.4rem;
  margin-right: 3rem;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: inline-block;
}

.send_02 {
  font-size: 4rem;
  color: #000;
  font-weight: bold;
}

.send_03 {
  font-weight: bold;
}

.tar {
  text-align: right;
}

.send_wrapper.option {
  width: 100%;
  margin: 3rem auto 0.0rem !important;
  padding: 3rem 2rem;
  text-align: center;
}

.manual_bt {
  max-width: 350px;
  text-align: center;
  color: #FFF !important;
  text-decoration: none !important;
  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: 2rem;
  padding: 3rem 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.faq_h {
  font-size: 1.8rem;
}


.btc {
  background: #1fa4ac !important;
  color: #FFF !important;
}


/* マニュアルはこちら */

.btn_p {
  -moz-box-shadow: 0px 0px 0px 0px #fff6af;
  -webkit-box-shadow: 0px 0px 0px 0px #fff6af;
  box-shadow: 0px 0px 0px 0px #fff6af;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ffec64), color-stop(1, #ffab23));
  background: -moz-linear-gradient(top, #ffec64 5%, #ffab23 100%);
  background: -webkit-linear-gradient(top, #ffec64 5%, #ffab23 100%);
  background: -o-linear-gradient(top, #ffec64 5%, #ffab23 100%);
  background: -ms-linear-gradient(top, #ffec64 5%, #ffab23 100%);
  background: linear-gradient(to bottom, #ffec64 5%, #ffab23 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffec64', endColorstr='#ffab23', GradientType=0);
  background-color: #ffec64;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  border: 1px solid #ffaa22;
  cursor: pointer;
  color: #333333;
  font-family: Arial;
  font-weight: bold;
  padding: 8% 10%;
  text-decoration: none;
  text-shadow: 0px 1px 0px #ffee66;
  color: #000 !important;
}

.btn_p:hover {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ffab23), color-stop(1, #ffec64));
  background: -moz-linear-gradient(top, #ffab23 5%, #ffec64 100%);
  background: -webkit-linear-gradient(top, #ffab23 5%, #ffec64 100%);
  background: -o-linear-gradient(top, #ffab23 5%, #ffec64 100%);
  background: -ms-linear-gradient(top, #ffab23 5%, #ffec64 100%);
  background: linear-gradient(to bottom, #ffab23 5%, #ffec64 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffab23', endColorstr='#ffec64', GradientType=0);
  background-color: #ffab23;
}

.btn_p:active {
  position: relative;
  top: 1px;
}




/*=================================================================================================================================*/
/**  リニューアル ss-top	*/
/*=================================================================================================================================*/
body#index {
  background: url(../img/bg_top.jpg) center top no-repeat;
}

.main-img {
  max-width: 1200px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  background-color: #ffffff;
}

.main-img img {
  display: block;
}

.slick-dots {
  bottom: -40px !important;
}


/* お知らせ */
.index_news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1200px;
  width: 100%;
  height: 80px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.index_news_logo {
  background-color: #000;
  color: #fff;
  font-size: 24px;
  height: 80px;
  width: 16%;
  line-height: 80px;
  text-align: center;
}

.index_news_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-left: 60px;
  width: 84%;
  height: 80px;
  line-height: 80px;
  background-color: #fff;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
}

.to_news_page a {
  position: absolute;
  right: 0;
  height: 100%;
  background-color: #000;
  padding: 0 5px;
  color: #ffffff !important;
}

.index_news_date {
  margin-right: 20px;
}

.index_news_date a {
  color: #1270A8 !important;
}

.index_news_title a {
  color: #333333 !important;
}

.index_news a {
  text-decoration: none !important;
  font-weight: bold;
}

.bxs {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.10);
}

/* 全国どこでもrental可能 */
.img-top-rental-price {
  margin: -57px auto 1rem;
  max-width: 552px;
  height: auto;
}

.por {
  position: relative;
}

.box_img img {
  display: block;
}

/*---------------------------------------------
 ** パンくずリスト
---------------------------------------------*/
#breadcrumbs {
  width: 100%;
}

nav#breadcrumbs ol {
  padding: 0;
}

nav#breadcrumbs ol li {
  display: inline;
  list-style-type: none;
  font-size: 1.6rem;
  padding: 0 7px 0 0px;
}

nav#breadcrumbs ol li a {
  color: #20A4AD;
}

nav#breadcrumbs ol li:before {
  content: " > ";
}

nav#breadcrumbs ol li:first-child:before {
  content: "";
}

/* アウタータワー */
.outertower_img {
  max-width: 262px;
  width: 100%;
  height: auto;
  margin: -150px auto 0;
}

.outertower_name {
  max-width: 582px;
  width: 100%;
  height: auto;
}

.fb50 {
  flex-basis: 50%;
}

/* HSC */
.hsc_img {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin: -220px auto 0;
}

.hsc_img2 {
  max-width: 300px;
  width: 100%;
  height: auto;
}

/* 外観イメージ */
.img-spec-03 {
  max-width: 693px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* テーブル 変更予定 */

.outertower_page_specification_detail_table {
  width: 100%;
  border-width: thin;
  border-style: solid;
  border-collapse: collapse;
  table-layout: fixed;
  word-break: break-all;
  word-wrap: break-word;
}

.outertower_page_specification_detail_table th {
  background-color: #f0f0f0;
}

.outertower_page_specification_detail_table td {
  padding: 10px;
}

.outertower_page_specification_detail_table td .outertower_page_specification_detail_table_book {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  border: #4aa2ab 1px solid;
  border-radius: 5px;
}

.outertower_page_specification_detail_table td .outertower_page_specification_detail_table_book img {
  display: inline-block;
  width: 36px;
  height: 22px;
  margin: auto 0;
  margin-right: 5px;
}

.outertower_page_specification_detail_table td .outertower_page_specification_detail_table_book span {
  font-size: 25px;
}

.ot_btn {
  width: 257px;
  height: 48px;
}

/* テーブル 変更予定 */


.list-typ-01 {
  border-top: 1px solid #666666;
  border-bottom: 1px solid #666666;
  padding: 10px 0;
}

.list-typ-01 li {
  padding: 0 10%;
  position: relative;
}

.list-typ-01 li::before {
  display: inline-block;
  color: #1FA4AC;
  content: '●';
  margin-right: 5px;
  font-size: 12px;
}

.mb15 {
  margin-bottom: 15px;
}




/*=================================================================================================================================*/
/**  導入事例	*/
/*=================================================================================================================================*/


/* ｈ２ */
.sec-title {
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  margin: 0 0 40px !important;
}

.sec-title strong {
  font-size: 38px !important;
  display: block;
  line-height: 1.333;
}

.sec-title small {
  color: #0085B2;
  font-size: 16px;
  letter-spacing: 0.3em;
}

.wrapper {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ナビ */
.nav-controls {
  text-align: center;
  margin-bottom: 50px;
}

.nav-controls li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
}

.nav-controls li a {
  text-decoration: none;
}

.nav-controls .nav-link {
  display: block;
  width: 220px;
  line-height: 1.25;
  padding: 24px 10px;
  color: #fff;
  background: #000 url(../img/common/icn_quote.png) no-repeat right 20px center;
  background-size: 11px auto;
}

.nav-controls .current .nav-link,
.nav-controls li:hover .nav-link {
  background-color: #0085B2;
  background-image: url(../img/common/icn_quote_down.png);
}



/* 事例 一覧 */
@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;
  }
}






.list-case .case-item {
  width: 288px;
}

.list-case .case-item {
  display: block;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  margin-bottom: 18px;
  margin-right: 16px;
  background: #fff;
  position: relative;
}





/* PAGES
 * ----------------------------------------------- */
/* PAGE TOP
 * ----------------------------------------------- */
.main-slider {
  overflow: hidden;
  position: relative;
}

.main-slider:not(.slick-initialized) .slide-item {
  display: none;
}

.main-slider:not(.slick-initialized) .slide-item:first-child {
  display: block;
}

.main-slider .inner-slide {
  position: absolute;
  width: 100%;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  z-index: 9;
}

.main-slider .slide-item:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/top/pattern01.png) repeat 0 0;
}

.main-slider .slide-item>img {
  width: 100%;
}

.section-top-policy {
  background: url(../img/top/pattern02.png) no-repeat center 0;
  background-size: cover;
  color: #fff;
  padding: 90px 0 45px;
}

.section-top-policy .sec-title small {
  color: #99E5FF;
}

.section-top-policy .btn-default {
  margin-top: 50px;
}

.list-policy .item {
  width: 370px;
}

.list-policy .pane-ttl {
  width: 100%;
  height: 330px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  text-align: center;
}

.list-policy .pane-ttl:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.list-policy .pane-ttl .inner {
  display: inline-block;
  vertical-align: middle;
  max-width: 95%;
}

.list-policy .pane-ttl small {
  display: block;
  font-size: 16px;
  letter-spacing: 0.3em;
  margin-top: 10px;
}

.list-policy .desc {
  padding: 0 50px;
  position: relative;
  margin-top: -40px;
  line-height: 1.5;
}

.section-news {
  position: relative;
}

.block-top-news {
  position: absolute;
  top: -40px;
}

.block-top-news .news-group {
  width: 50%;
  display: inherit;
  border: 1px solid #000;
  background: #fff;
}

.block-top-news .news-cat {
  width: 80px;
  background: #000;
  text-align: center;
}

.block-top-news .news-cat a {
  display: block;
  height: 78px;
  color: #fff;
  padding-top: 15px;
}

.block-top-news .news-cat .cat-label {
  display: block;
  font-size: 12px;
  margin-top: 4px;
}

.block-top-news .list-news-slider {
  width: calc(100% - 80px);
  padding: 18px 40px;
}

.block-top-news .slick-arrow {
  width: 15px;
  height: 10px;
  text-indent: -999px;
  overflow: hidden;
  cursor: pointer;
  position: absolute;
  right: 15px;
  background-repeat: no-repeat;
  background-position: center center;
}

.block-top-news .slick-arrow.slick-disabled {
  cursor: default;
  opacity: 0.2;
}

.block-top-news .slick-prev {
  background-image: url(../img/common/arrow_up.png);
  top: 28px;
}

.block-top-news .slick-next {
  bottom: 28px;
  background-image: url(../img/common/arrow_down.png);
}

.block-top-news .news-item a {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  border-bottom: 1px solid #000;
  padding: 3px 0;
  max-width: 100%;
  outline: none;
}

.block-top-news .news-item .date,
.block-top-news .news-item .ttl {
  display: inline-block;
  vertical-align: middle;
}

.block-top-news .news-item .date {
  margin-right: 15px;
}

.section-product {
  padding: 75px 0;
}

.section-product .sec-title {
  margin-bottom: 60px;
}

.product-item {
  color: #fff;
  position: relative;
  background-repeat: no-repeat;
  background-position: center 0;
}

.product-item .wrapper {
  padding: 0 50px;
}

.product-item .product-info,
.product-item .products {
  width: 50%;
}

.product-item .product-ttl {
  font-size: 2em;
  text-align: center;
  font-weight: bold;
}

.product-item .product-desc {
  line-height: 1.8;
  margin-top: 15px;
}

.product-item .products a {
  display: block;
  margin-right: 12px;
}

.product-item .products a:last-child {
  margin-right: 0 !important;
}

.product-item .products .btn-default {
  margin-top: 10px;
  display: block;
}

.product-item.air {
  z-index: 5;
  background-image: url(../img/top/bg_condition.png);
  padding: 70px 0 180px;
}

.product-item.air .products {
  padding: 10px 60px 0 78px;
}

.product-item.air+.light {
  margin-top: -181px;
}

.product-item.light {
  z-index: 4;
  background-image: url(../img/top/bg_lighting.png);
  padding: 180px 0 70px;
}

.product-item.light .products {
  padding: 0 60px 10px 78px;
}

.product-item.smoke {
  z-index: 3;
  background-image: url(../img/top/bg_smoke.png);
  padding: 70px 0 180px;
  margin-top: 8px;
}

.product-item.smoke .products {
  padding: 10px 60px 0 78px;
}

.section-delivery-case {
  margin-bottom: 130px;
}

.section-delivery-case .btn-default {
  margin-top: 44px;
}

.list-case .case-item {
  display: block;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  margin-bottom: 38px;
  margin-right: 16px;
  background: #fff;
  position: relative;
  color: #000;
  text-decoration: none;
  text-align: left;
}

.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;
}

@supports (object-fit: cover) {
  .list-case .case-item .img img {
    position: static;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    -ms-transform: none;
    -moz-transform: none;
    -webkit-transform: none;
    transform: none;

    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;
  text-align: left;
}

.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: #20a4ad;
}

.list-case .case-item .case-ct {
  padding: 10px 25px 20px;
}

.list-case .case-item .ttl {
  font-size: 16px;
  color: #20a4ad;
  font-weight: 500;
  text-align: left;
}

.list-case .case-item .ttl span {
  display: inline-block;
  border-bottom: 1px solid #20a4ad;
  padding: 2px 0;
}

.list-case .case-item .txt {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.6;
}

.list-case .case-item .btn-link {
  position: absolute;
  display: block;
  background: #000;
  width: 30px;
  height: 30px;
  text-align: center;
  bottom: 0;
  left: 50%;
  margin-left: -15px;
  margin-bottom: -15px;
}

.list-case .case-item .btn-link img {
  width: 11px;
}

@media (min-width: 768px) {
  .list-case .case-item {
    width: 288px;
  }

  .list-case .case-item:nth-child(4n) {
    margin-right: 0;
  }
}

.section-company {
  padding-bottom: 105px;
}

.list-company .box {
  display: block;
}

@media (max-width: 767px) {
  .block-top-news {
    position: static;
  }

  .block-top-news .news-group {
    width: 100%;
  }

  .main-slider .slide-item {
    height: 250px;
  }

  .main-slider .slide-item>img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 50%;
    transform: translateX(-50%);
  }

  .section-news {
    padding: 20px 0;
  }

  .section-news .news-group {
    margin-bottom: 2px;
  }

  .block-top-news .list-news-slider {
    padding-left: 20px;
  }

  .section-top-policy {
    padding: 50px 0;
  }

  .section-top-policy .btn-default {
    width: 100%;
  }

  .list-policy .item {
    width: 100%;
    margin-bottom: 40px;
  }

  .list-policy .item .pane-ttl {
    height: 250px;
  }

  .list-policy .item .desc {
    font-size: 16px;
    padding: 0 40px;
  }

  .product-list .product-item {
    padding: 40px 0 15px;
    background-image: none;
    margin: 0;
  }

  .product-list .product-item .product-ttl {
    font-size: 1.6em;
  }

  .product-list .product-item .wrapper {
    padding: 0 15px;
  }

  .product-list .product-item .product-info,
  .product-list .product-item .products {
    width: 100%;
  }

  .product-list .product-item .products {
    padding: 0;
    margin-top: 20px;
  }

  .product-list .product-item .products a {
    width: 48.5%;
    margin-right: 3%;
  }

  .product-list .product-item .products .btn-default {
    width: 100%;
  }

  .product-list .product-item.air {
    background-color: #20a4ad;
  }

  .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;
    margin: 0 auto 40px;
  }

  .list-case .case-item:nth-of-type(5),
  .list-case .case-item:nth-of-type(6),
  .list-case .case-item:nth-of-type(7),
  .list-case .case-item:nth-of-type(8) {
    display: none;
  }

  .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;
  }
}


.btn-default {
  width: 100%;
  background: #000 url(../img/common/icn_quote.png) no-repeat right 30px center;
  background-size: 11px auto;
  color: #fff !important;
  text-decoration: none !important;
  margin: 40px 0 0;
}

.product-item .products .btn-default {
  margin-top: 10px;
  display: block;
}

.btn {
  display: inline-block;
  font-size: 1em;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 22px 0;
  max-width: 100%;
}

@media (min-width: 767px) {
  .btn-default {
    width: 412px;
  }
}

@media (max-width: 767px) {

  .btnex {
    padding: 3.3% 3% 3.3% !important;
    font-size: 15px !important;
    width: 100%;
    text-align: center;
    margin: 0 0 60px;
    overflow: hidden;
    float: left;
    _zoom: 1;
    overflow: hidden;
  }

}



.btnex {
  background: #333333;
  color: #FFF;
  padding: 25px 5px 25px;
  max-width: 400px;
  width: 100%;
  font-size: 18px;
  margin-right: 3rem;
  -moz-border-radius: 50px;
  /* -webkit-border-radius: 50px; */
  /* border-radius: 50px; */
  display: inline-block;
  text-decoration: none !important;
  color: #FFF !important;
  margin-top: 50px;
  text-align: center;
}

.btnex.color {
  background: #FF7373 !important;
}

.btnex img {
  display: inline-block;
  width: 11px;
  margin-left: 15px;
}


/* 当社にて必要な場合 */
.price-typ-01 {
  padding: 0;
  _zoom: 1;
  overflow: hidden;
  font-size: 2rem;
  font-weight: 500;
}

.itme-h,
.itme-d {
  padding: 2rem;
}

.fz34 {
  font-size: 3.4rem;
}

.fz16 {
  font-size: 1.6rem;
}

.inner-item-50 {
  width: 50%;
}

.itme-h {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.itme-d {
  width: 70%;
  text-align: center;
}

.price-typ-01 .itme-h {
  background: #1fa4ac;
  border-right: 1px solid #000;
  color: #ffffff;
}

.bdr1px {
  border-right: 1px solid #000;
}

.w85 {
  width: 85%;
  margin: 0 auto;
}

.form_require {
  font-size: 0.8em;
  color: #ff0000;
  border: 1px solid #ff0000;
  border-radius: 5px;
  padding: 2px 5px;
  margin-left: 15px;
  display: inline-block;
}

@media (max-width: 767px) {

  .itme-h,
  .itme-d {
    width: 100%;
  }

  .inner-item-50 {
    width: 100%;
  }
}

.btnex-wp {
  background: #20a4ad;
  color: #FFF !important;
  padding: 15px 10px;
  max-width: 300px;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none !important;
  display: inline-block;
}

.js-scrollable>table,
.js-scrollable2>table {
  margin: 15px auto;
}

.js-scrollable>table th,
.js-scrollable2>table th {
  background: #eee;
  text-align: center;
  border: 1px solid #ccc;
}

.js-scrollable>table td,
.js-scrollable2>table td {
  background: #fff;
  text-align: center;
  border: 1px solid #ccc;
}

video {
  width: 100% !important;
}



.m-b-70 {
  margin-bottom: 70px;
}

.table013 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-radius: 8px;
}

/* .table013 td::before {
  content: '¥';
} */

.table013 th,
.table013 td {
  border: 1px solid #f5f5f5;
}

.table013 th {
  line-height: 1.8;
  padding: 8px 6px;
  border: 1px solid #e6e6e6;
  background-color: #f5f5f5;
  font-weight: bold;
  vertical-align: top;
  text-align: center;
  font-size: 16px;
}

.table013 tbody tr:nth-of-type(1) th {
  /* line-height: 1.8;
  padding: 8px 6px;
  border: 1px solid #e6e6e6;
  background-color: #f5f5f5;
  font-weight: bold;
  vertical-align: top;
  text-align: center;
  font-size: 16px; */
}

@media (max-width: 767px) {
  .table013 {
    width: 200%;
  }

  .table013 th,
  .table013 td {
    font-size: 12px;
    text-align: center;
  }
}