@charset "UTF-8";
/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");
/*汎用パーツ
---------------------------------------------------------------------------*/
.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt40 {
  margin-top: 40px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

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

.text-right {
  text-align: right;
}

.text-lg {
  font-size: 1.3em;
}

.text-md {
  font-size: 1.1em;
}

.text-bold {
  font-weight: 800;
}

/*全体の設定
---------------------------------------------------------------------------*/
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Ｐゴシック", "MS PGothic", sans-serif; /*フォント種類*/
  -webkit-text-size-adjust: none;
  background: #fff;
  color: #292a2e;
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 1rem;
  font-weight: 400;
  -webkit-font-kerning: normal;
          font-kerning: normal;
}

/*リセット*/
figure {
  margin: 0;
}

dd {
  margin: 0;
}

nav {
  margin: 0;
  padding: 0;
}

/*table全般の設定*/
table {
  border-collapse: collapse;
}

/*画像全般の設定*/
img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/*videoタグ*/
video {
  max-width: 100%;
}

/*iframeタグ*/
iframe {
  width: 100%;
}

/*ul,olタグ*/
ul, ol {
  margin-bottom: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

h2 {
  font-weight: 400;
  text-align: center;
  font-size: 30px;
  letter-spacing: 0.1em;
  margin-top: 10px;
}
@media screen and (max-width: 600px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  text-align: center;
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  h3 {
    font-size: 1.1em;
  }
}

.sub-ttl {
  color: #7F8EB4;
  text-align: center;
}

a {
  color: #292a2e;
}

a.caret {
  font-size: 16px;
  font-weight: 300;
  position: relative;
  display: inline-block;
}
a.caret:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 50%;
  right: -10px;
  margin-top: -2px;
}

p {
  margin: 0;
  line-height: 1.8rem;
}

dl dt {
  font-weight: 800;
  line-height: 2em;
  font-size: 1.1em;
}
dl dd {
  line-height: 1.7em;
}

/*mainブロック
---------------------------------------------------------------------------*/
main {
  padding-top: 70px;
}
@media screen and (max-width: 900px) {
  main {
    padding-top: 70px;
  }
}

/*section
---------------------------------------------------------------------------*/
.section__body {
  margin: 0 auto;
  max-width: 1200px;
  padding: 50px 60px;
}
@media screen and (max-width: 600px) {
  .section__body {
    padding: 40px 16px;
  }
}

.section__body_non-padding {
  margin: 0 auto;
  max-width: 1200px;
  padding: 50px 60px;
}
@media screen and (max-width: 600px) {
  .section__body_non-padding {
    padding: 40px 16px;
  }
}

.content__container {
  padding-top: 40px;
}
.content__container.first {
  padding-top: 0;
}
.content__container.bg_color {
  background-color: #F0F4F8;
  padding-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .content__container.bg_color {
    padding: 10px;
  }
}

.content__ttl {
  margin-bottom: 30px;
}

.content_inner_box {
  background-color: #fff;
  width: 800px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 900px) {
  .content_inner_box {
    width: 100%;
    padding: 20px 10px;
  }
}

/*layout
---------------------------------------------------------------------------*/
.column__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.column__container .item_sm {
  width: 30%;
}
.column__container .item_lg {
  width: 70%;
}

@media screen and (max-width: 900px) {
  .column__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .column__container .item {
    width: 100%;
  }
}
/*page-menu
---------------------------------------------------------------------------*/
.page-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 30px;
  height: 40px;
  overflow-x: scroll;
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 900px) {
  .page-menu {
    -webkit-box-pack: inherit;
    -webkit-justify-content: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .page-menu {
    font-size: 15px;
  }
}
.page-menu a {
  text-decoration: none;
  margin: 0 20px;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
@media screen and (max-width: 900px) {
  .page-menu a {
    margin: 0 10px;
  }
}
.page-menu a.current:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px; /*線の上下位置*/
  display: inline-block;
  width: 60px; /*線の長さ*/
  height: 3px; /*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); /*位置調整*/
  background-color: black; /*線の色*/
  border-radius: 2px; /*線の丸み*/
}
@media screen and (max-width: 900px) {
  .page-menu a.current:before {
    bottom: -5px; /*線の上下位置*/
    width: 40px; /*線の長さ*/
  }
}

/*スクロールバー非表示（Chrome・Safari）*/
.page-menu::-webkit-scrollbar {
  display: none;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {
  display: block;
}

/*ボタンの設定*/
a.pagetop {
  display: block;
  text-decoration: none;
  text-align: center;
  z-index: 10;
  position: fixed;
  right: 20px;
  bottom: 40px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.4);
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
}

.effect-fade {
  opacity: 0;
  -webkit-transform: translate(0, 80px);
          transform: translate(0, 80px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.effect-fade.effect-scroll {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
  text-align: center;
  padding: 30px 10px 60px;
  background: #35333e;
  color: #fff;
}
@media screen and (max-width: 600px) {
  footer {
    padding: 30px 10px;
  }
}
footer .footer_nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  font-size: 15px;
}
footer .footer_nav a {
  color: #fff;
  text-decoration: none;
}
footer .footer_nav a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 600px) {
  footer .footer_nav {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    font-size: 13px;
    gap: 16px;
  }
}
footer .footer_copy {
  font-size: 0.8rem;
  margin-top: 40px;
}

/*header
---------------------------------------------------------------------------*/
header {
  width: 100%;
  position: fixed;
  z-index: 99;
  background: #FFF;
  border-bottom: 1px solid #eeeeee;
}
header .header_inner {
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  height: 70px;
}
@media screen and (max-width: 900px) {
  header .header_inner {
    max-width: 100%;
  }
}
header .header-logo {
  display: block;
  width: 277.5px;
  height: 41.6666666667px;
}
@media screen and (max-width: 900px) {
  header .header-logo {
    padding-left: 10px;
    width: 222px;
    height: 33.3333333333px;
  }
}

/*menubarブロック基本設定
---------------------------------------------------------------------------*/
#menubar {
  display: block;
  /*spの開閉用のスタイル*/
}
#menubar.db {
  display: block;
}
#menubar.dn {
  display: none;
}

/*レスポシブ動作 
---------------------------------------------------------------------------*/
@media screen and (min-width: 1200px) {
  #menubar {
    display: block;
  }
  #menubar .menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  /*ハンバーガーメニューを非表示*/
  #hamburger-menu {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  #menubar {
    display: none;
  }
  #menubar.db {
    position: fixed;
    overflow: auto;
    z-index: 100;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    padding: 70px 10px;
    background: #fff;
  }
}
/*メニューのデザイン
---------------------------------------------------------------------------*/
.menu a {
  text-decoration: none;
  font-size: 17px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.menu a:hover {
  color: #7F8EB4;
}
.menu a.have-subcontent:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 0 2px 8px;
  border-right: 2px solid #292a2e;
  border-bottom: 2px solid #292a2e;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 900px) {
  .menu a.have-subcontent:after {
    content: none;
  }
}
@media screen and (max-width: 900px) {
  .menu a.have-subcontent {
    color: #7F8EB4;
    font-weight: 800;
    font-size: 15px;
  }
}
@media screen and (max-width: 900px) {
  .menu a.arrow {
    position: relative;
    display: inline-block;
    padding-left: 12px;
  }
  .menu a.arrow:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 6px;
    border-color: transparent transparent transparent #333;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -6px;
  }
}
.menu .menu__first-level {
  padding: 0 16px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .menu .menu__first-level {
    padding: 10px;
    border-bottom: 1px solid #eeeeee;
  }
}
.menu .menu__second-level {
  padding: 6px 0;
}
@media screen and (max-width: 900px) {
  .menu .menu__second-level {
    line-height: 2em;
    display: block;
  }
}
.menu ul.menu__second-level-block {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  position: absolute;
  top: 20px;
  width: 180px;
  background: #fff;
  border: 1px solid #666;
  border-radius: 10px;
  padding: 10px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 900px) {
  .menu ul.menu__second-level-block {
    position: initial;
    visibility: visible;
    opacity: 1;
    width: 100%;
    border: none;
    background: none;
  }
}
.menu li.menu__first-level:hover ul.menu__second-level-block {
  top: 50px;
  visibility: visible;
  opacity: 1;
}

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
@media screen and (max-width: 900px) {
  /*開閉用のスタイル*/
  #hamburger-menu.db {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  #hamburger-menu.dn {
    display: none;
  }
  /*３本バーを囲むブロック*/
  #hamburger-menu {
    z-index: 101;
    cursor: pointer;
    padding: 16px 14px;
    /*上下、左右への余白*/
    width: 52px;
    /*幅（３本バーが出ている場合の幅になります）*/
    height: 52px;
    /*高さ*/
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    /*flexボックスを使う指定*/
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    /*子要素（３本バー）を縦並びにする*/
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    /*並びかたの種類の指定*/
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
    /*表示させる順番。「#menubar_hdr」「#logo」「#header-icon」それぞれに指定しており、数字の「小さな順」に左から並びます。*/
    /*バー１本あたりの設定*/
  }
  #hamburger-menu span {
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    /*アニメーションにかける時間。0.3秒。*/
    border-top: 2px solid #292a2e;
    /*線の幅、線種、色*/
  }
  /*ハンバーガーメニュー挙動*/
  #hamburger-menu.ham {
    /*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
    /*×印が出ている状態の設定。※１本目のバー。*/
    /*×印が出ている状態の設定。※３本目のバー。*/
    /*×印が出ている状態の設定。※２本目のバー。*/
  }
  #hamburger-menu.ham span:nth-of-type(1),
  #hamburger-menu.ham span:nth-of-type(3) {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    /*変形の起点。センターに。*/
    width: 26px;
    /*バーの幅*/
  }
  #hamburger-menu.ham span:nth-of-type(1) {
    -webkit-transform: rotate(45deg) translate(6px, 7px);
            transform: rotate(45deg) translate(6px, 7px);
    /*回転45°と、X軸Y軸への移動距離の指定*/
  }
  #hamburger-menu.ham span:nth-of-type(3) {
    -webkit-transform: rotate(-45deg) translate(6px, -7px);
            transform: rotate(-45deg) translate(6px, -7px);
    /*回転-45°と、X軸Y軸への移動距離の指定*/
  }
  #hamburger-menu.ham span:nth-of-type(2) {
    display: none;
    /*２本目は使わないので非表示にする*/
  }
}
.top-greeting {
  padding: 0 0 30px;
  text-align: center;
}
.top-greeting p {
  font-size: 1.1em;
  line-height: 1.8em;
}

/*profile
---------------------------------------------------------------------------*/
.pic-prof {
  width: 240px;
  height: auto;
  margin: 0 auto 40px;
}
.pic-prof.pic-prof_sm {
  width: 180px;
}
.pic-prof img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*content_box
---------------------------------------------------------------------------*/
.content_box {
  margin-bottom: 20px;
}
.content_box .content_box__ttl {
  color: #666;
  font-weight: 800;
}

/*card
---------------------------------------------------------------------------*/
.card__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.card__container:after {
  content: "";
  display: block;
  width: 32%;
}
.card__container.division_three .card {
  width: 32%;
}
.card__container.division_four .card {
  width: 24%;
}
.card__container.division_five .card {
  width: 19%;
}
.card__container .card {
  margin-bottom: 40px;
}
.card__container .card__thumb {
  text-align: center;
  height: 200px;
}
.card__container .card__thumb img {
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.card__container .card__thumb img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.card__container a {
  display: block;
  text-decoration: none;
}
.card__container .card__txt {
  padding: 10px;
  color: #666;
  font-size: 0.9rem;
  max-height: 104px;
}
.card__container .card__txt h4 {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card__container .card__txt p {
  line-height: 1.4em;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media screen and (max-width: 900px) {
  .card__container.division_three .card, .card__container.division_four .card, .card__container.division_five .card {
    width: 48%;
  }
}
/*scroll-gallery-list
---------------------------------------------------------------------------*/
.scroll-gallery-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow-x: scroll;
  gap: 10px;
}
.scroll-gallery-list::-webkit-scrollbar {
  height: 14px;
}
.scroll-gallery-list::-webkit-scrollbar-thumb {
  background: #d0d1e9;
  border-radius: 7px;
}
.scroll-gallery-list::-webkit-scrollbar-track {
  background: #F0F4F8;
  border-radius: 7px;
}
.scroll-gallery-list li {
  width: 300px;
  height: 200px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 600px) {
  .scroll-gallery-list li {
    width: 60%;
    height: 160px;
  }
}
.scroll-gallery-list li img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 600px) {
  .scroll-gallery-list li img {
    height: 160px;
  }
}

.btn__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  width: 840px;
}
@media screen and (max-width: 900px) {
  .btn__container {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.btn {
  display: inline-block;
  font-weight: 800;
  color: #292a2e;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  background-color: transparent;
  white-space: nowrap;
  border: 1px solid #666;
  position: relative;
}
.btn:hover {
  background-color: #F0F4F8;
}
.btn:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -5px;
}
.btn.btn__lg {
  width: 370px;
  height: 64px;
  font-size: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .btn.btn__lg {
    width: 100%;
    max-width: 440px;
    font-size: 16px;
  }
}
@media screen and (max-width: 900px) {
  .btn.btn_first {
    margin-bottom: 26px;
  }
}

/*blog
---------------------------------------------------------------------------*/
.column__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.column__wrap .column__sidebar {
  width: 300px;
}
.column__wrap .column__main {
  width: calc(100% - 380px);
}

@media screen and (max-width: 900px) {
  .column__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .column__wrap .column__sidebar,
  .column__wrap .column__main {
    width: 100%;
  }
}
.item__date {
  font-size: 13px;
  color: #7F8EB4;
}

.sidebar-box {
  border: 1px solid #eeeeee;
  padding: 20px;
}
.sidebar-box .sidebar-box__ttl {
  text-align: center;
  font-weight: 800;
  margin-bottom: 20px;
}

.recent-posts li {
  margin-bottom: 15px;
}

.blog-list {
  border-bottom: 1px solid #eeeeee;
}
.blog-list .blog-list__inner {
  padding: 20px 0;
}
.blog-list .item__ttl {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 10px;
}
.blog-list .item__txt {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 60px;
}

.post__container .item__ttl {
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 10px;
}

.form__container {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .form__container {
    width: 100%;
  }
}
.form__container .btn__container {
  margin-top: 50px;
}

.inquery-form dd {
  margin-bottom: 20px;
}
.inquery-form input {
  font-size: 16px !important;
  width: 100%;
  border: 1px solid #999;
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 55px;
  padding: 2px 16px;
  border-color: #999;
  border-radius: 4px;
}
.inquery-form input:focus {
  border-color: #E6A54D;
}
.inquery-form textarea {
  width: 100%;
  font-size: 16px !important;
  border: 1px solid #999;
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 10px 16px;
  border-color: #999;
  border-radius: 4px;
}
.inquery-form textarea:focus {
  border-color: #E6A54D;
  outline: none;
}

.inquery-form ::-webkit-input-placeholder {
  color: #CCC;
}

.inquery-form ::-moz-placeholder {
  color: #CCC;
}

.inquery-form :-ms-input-placeholder {
  color: #CCC;
}

.inquery-form ::-ms-input-placeholder {
  color: #CCC;
}

.inquery-form ::placeholder {
  color: #CCC;
}

.inquery-form ::-ms-input-placeholder {
  color: #CCC;
}

.inquery-form :-ms-input-placeholder {
  color: #CCC;
}/*# sourceMappingURL=style.css.map */