@charset "UTF-8";
/*==========================================
PC共通
===========================================*/
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  margin: 0 auto;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  color: #474747;
  line-height: 1.8;
  text-align: center;
  letter-spacing: .08em;
  font-size: 1.6rem;
  word-break: break-all;
}

#wrapper {
  min-width: 1200px;
}

/*==========================================
PC表示で電話番号リンクを無効
===========================================*/
a[href^="tel:"] {
  pointer-events: none;
}

/*==========================================
サイトの標準横幅と内部余白
===========================================*/
.inbox {
  width: 1080px;
  margin: 0 auto;
}

.com-pd {
  padding: 115px 0;
}

.com-pt {
  padding-top: 115px;
}

.com-pb {
  padding-bottom: 115px;
}

.com-mb {
  margin-bottom: 115px;
}

/*==========================================
PC非表示
===========================================*/
.pc-none {
  display: none !important;
}

/*==========================================
パンくずリスト
===========================================*/
div .bread {
  font-size: 10px;
  text-align: left;
  position: relative;
  z-index: 1;
}
div .bread .breadcrumbs {
  position: absolute;
  width: 1080px;
  margin: 0 auto;
  left: 0;
  top: 10px;
}
div .bread li {
  display: inline-block;
  color: #fecb7d;
}
div .bread li:after {
  content: " > ";
  padding: 0 2px;
  color: #999;
}
div .bread li:last-child:after {
  content: "";
}
div .bread li a {
  color: #999;
}

/*==========================================
float
===========================================*/
.fl-l {
  float: left;
}

.fl-r {
  float: right;
}

/*==========================================
Flexbox
===========================================*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*折り返し
-----------------------*/
.flx-wrp {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/*逆順
-----------------------*/
.flx-rr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/*水平方向の揃え
=================================================*/
/*初期値
-----------------------*/
.flx-strt {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

/*並列で均等配置（左右隙間なし=space-between）
-----------------------*/
.flx-btw {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*並列で均等配置（左右隙間あり=space-around）
-----------------------*/
.flx-ard {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

/*水平揃え　末揃え
-----------------------*/
.flx-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/*水平揃え　中央揃え
-----------------------*/
.flx-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*垂直方向の揃え
=================================================*/
/*水平揃え　上揃え
-----------------------*/
.flx-alitem-strt {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/*水平揃え　高さ揃え
-----------------------*/
.flx-alitem-strch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

/*水平揃え　縦・横の中央揃え
-----------------------*/
.flx-alitem-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*水平揃え　下揃え
-----------------------*/
.flx-alitem-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/*水平揃え　ベースライン揃え
-----------------------*/
.flx-alitem-base {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

/*複数行にした揃え方
=================================================*/
/*初期値
-----------------------*/
.flx-alcont-strt {
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

/*親要素の開始位置から配置。上揃え
-----------------------*/
.flx-alcont-strch {
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

/*親要素の終点から配置。下揃え
-----------------------*/
.flx-alcont-end {
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

/*中央揃え
-----------------------*/
.flx-alcont-c {
  -ms-flex-line-pack: center;
      align-content: center;
}

/*最初と最後の子要素を上下の端に配置し、残りの要素は均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-btw {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

/*上下端にある子要素も含め、均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-ard {
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}

.flex-order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.flex-order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

/*==========================================
スマホ用ドロワー無効
===========================================*/
.drawer_menu {
  display: none;
}

#nav-toggle,
#global-nav {
  display: none;
}

.drawer_menu {
  display: none;
}

/*==========================================
header
===========================================*/
#header {
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1001;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 25px;
}
#header .hd-right {
  width: 850px;
}
#header .hd-right .hd-right_l {
  width: 715px;
}
#header .hd-right .hd-right_l .hd-info {
  width: 455px;
  margin: 0 0 5px auto;
}
#header .hd-right .hd-right_l .hd-info .num {
  font-weight: 700;
  font-size: 3rem;
  padding-left: 25px;
  background: url(../img/common/hd-tel_icon.png) left center no-repeat;
}
#header .hd-right .mail {
  width: 120px;
  height: 120px;
  display: block;
  background: url(../img/common/hd-mail_icon.png) top 30px center no-repeat, #fecb7d;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 75px 0 5px 0;
}

/*==========================================
メインビジュアル
===========================================*/
#mv {
  position: relative;
  height: 36.458vw;
  min-height: 530px;
  max-height: 700px;
  background: url(../img/top/mv/mv.png) right 6.25% top 120px/59.375% no-repeat, url(../img/top/mv/mv-base.png) left top/49.0625% no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#mv h2 {
  width: 25.989%;
  position: absolute;
  left: 21.875%;
  bottom: 11vw;
  min-width: 350px;
}

/*==========================================
共通ブロック・要素
===========================================*/
.txt-blc {
  text-align: left;
}
.txt-blc p {
  margin-bottom: 25px;
  line-height: 1.8;
}
.txt-blc p:last-child {
  margin-bottom: 0;
}

#g-map h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
#g-map h4 span {
  padding-left: 20px;
}
#g-map .map {
  height: 400px;
}
#g-map .map iframe {
  width: 100%;
  height: 100%;
}

.more-btn {
  display: block;
  color: #fff;
  background: #fecb7d;
  border-radius: 25px;
  padding: 10px 5px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.more-btn:hover {
  opacity: 1;
  background: #ffaf35;
}
.more-btn span {
  padding-right: 55px;
  background: url(../img/common/more-arr.png) right center no-repeat;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-dl > dl {
  border-bottom: 1px solid #eee;
}
.com-dl > dl:last-child {
  border-bottom: none;
}
.com-dl > dl > dt, .com-dl > dl > dd {
  display: table-cell;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}
.com-dl > dl > dt {
  padding: 20px 10px;
  width: 180px;
  vertical-align: top;
  background: #474747;
  color: #fff;
}
.com-dl > dl > dd {
  padding: 20px;
}
.com-dl > dl > dd a[href^="mailto:"] {
  text-decoration: underline;
}

/*==========================================
トップページ
===========================================*/
/*---------------------------
Greeting
----------------------------*/
#top-greeting {
  padding: 135px 0;
  background: url(../img/top/greeting-map.png) right 21.875% top -12vw/43.69791% no-repeat;
}
#top-greeting .inbox {
  width: 750px;
}
#top-greeting .ttl01 {
  text-align: left;
}
#top-greeting .ttl01 .en:after {
  margin: 0 auto 0 0;
  right: auto;
}
#top-greeting p {
  width: 485px;
  text-align: left;
}

/*---------------------------
Service
----------------------------*/
#top-service {
  padding: 55px 0 60px 0;
  background: url(../img/top/service-bg.png) center/cover no-repeat;
}
#top-service .service-wrp li {
  width: 33.33333%;
  width: calc(100% / 3);
}
#top-service .service-wrp li a {
  height: 23.437vw;
  max-height: 450px;
  min-height: 295px;
  display: block;
  position: relative;
  z-index: 1;
  color: #fff;
}
#top-service .service-wrp li a:before, #top-service .service-wrp li a:after {
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
#top-service .service-wrp li a:before {
  z-index: -2;
}
#top-service .service-wrp li a:after {
  z-index: -1;
  background: rgba(0, 0, 0, 0.35);
}
#top-service .service-wrp li a:hover {
  opacity: 1;
}
#top-service .service-wrp li a:hover:after {
  background: rgba(0, 0, 0, 0.65);
}
#top-service .service-wrp li:nth-child(1) a:before {
  background: url(../img/top/reform-bg.png) center/cover no-repeat;
}
#top-service .service-wrp li:nth-child(2) a:before {
  background: url(../img/top/garden-care-bg.png) center/cover no-repeat;
}
#top-service .service-wrp li:nth-child(3) a:before {
  background: url(../img/top/housecleaning-bg.png) center/cover no-repeat;
}
#top-service .service-wrp li p {
  position: absolute;
  left: 0;
  right: 0;
  top: 40%;
  margin: auto 0;
}
#top-service .service-wrp li p .ja {
  font-weight: 500;
  display: block;
  font-size: 2.2rem;
}
#top-service .service-wrp li p .en {
  display: block;
  font-size: 1.6rem;
}
#top-service .service-wrp li .view-more {
  width: 185px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.6rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  font-weight: 700;
  padding-right: 55px;
  background: url(../img/common/more-arr.png) right center no-repeat;
}
#top-service .add-txt {
  margin-top: 45px;
}

/*---------------------------
For Beginner
----------------------------*/
#top-beginner {
  padding: 140px 0;
  position: relative;
  z-index: 1;
}
#top-beginner .ttl01 {
  width: 750px;
  margin: 0 auto 50px auto;
}
#top-beginner .ttl01 .en {
  width: 340px;
  margin-left: auto;
  text-align: left;
}
#top-beginner .ttl01 .en:after {
  margin: 0 auto 0 0;
  right: auto;
}
#top-beginner .txt-blc {
  width: 595px;
  background: #fafafa;
  padding: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 -100px 0 auto;
  position: relative;
}
#top-beginner .txt-blc h4 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 20px;
}
#top-beginner .txt-blc p {
  margin-bottom: 0;
}
#top-beginner .txt-blc .more-btn {
  width: 260px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -25px;
}
#top-beginner .img-blc {
  width: 57.8125%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

/*---------------------------
Cases
----------------------------*/
#top-cases {
  padding: 150px 0 165px 0;
  background: url(../img/top/cases-bg.png) bottom 70px center no-repeat;
}
#top-cases .inbox {
  position: relative;
}
#top-cases .ttl01 {
  margin-bottom: 50px;
  text-align: left;
}
#top-cases .ttl01 .en:after {
  margin: 0 auto 0 0;
  right: auto;
}
#top-cases .txt-blc {
  width: 595px;
  background: #fafafa;
  padding: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
#top-cases .txt-blc h4 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 20px;
}
#top-cases .txt-blc p {
  margin-bottom: 0;
}
#top-cases .txt-blc .more-btn {
  width: 260px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -25px;
}
#top-cases .img-blc {
  width: 585px;
  height: 680px;
  position: absolute;
  right: -165px;
  top: -150px;
}
#top-cases .img-blc div {
  position: absolute;
}
#top-cases .img-blc div:first-child {
  right: 0;
  top: 0;
}
#top-cases .img-blc div:last-child {
  bottom: 0;
  left: 0;
}

.other-site {
  padding: 80px 0 70px 0;
  width: 580px;
  margin: 0 auto;
}
.other-site li {
  width: 280px;
  font-size: 2.2rem;
}
.other-site li .more-btn {
  border-radius: 0;
  padding: 20px 5px;
}

/*==========================================
footer
===========================================*/
#footer {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fecb7d+1,fbcdd0+100 */
  background: #fecb7d;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, rgba(254, 203, 125, 0.5)), to(rgba(251, 205, 208, 0.5)));
  background: linear-gradient(to bottom, rgba(254, 203, 125, 0.5) 1%, rgba(251, 205, 208, 0.5) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fecb7d', endColorstr='#fbcdd0',GradientType=0 );
  /* IE6-9 */
}
#footer .side-fixed {
  position: fixed;
  right: 0;
  bottom: 30px;
  z-index: 1001;
  width: 3.6453%;
}
#footer .side-fixed li {
  width: 100%;
  margin-bottom: 10px;
}
#footer .side-fixed li:last-child {
  margin-bottom: 0;
}
#footer .inbox {
  padding: 70px 0 20px 0;
}
#footer .ft-logo {
  margin-bottom: 35px;
}
#footer .sns {
  width: 85px;
  margin: 0 auto 35px auto;
}
#footer .num {
  font-size: 3rem;
  font-weight: 700;
  padding-left: 25px;
  background: url(../img/common/ft-tel_icon.png) left center no-repeat;
}
#footer .open {
  margin-bottom: 15px;
}
#footer .mail {
  width: 260px;
  margin: 0 auto 60px auto;
  display: block;
  padding: 12px 5px 12px 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  background: url(../img/common/ft-mail_icon.png) left 45px center no-repeat, #fecb7d;
}
#footer .ft-nav {
  width: 750px;
  margin: 0 auto;
}
#footer .ft-nav li {
  font-weight: 500;
  margin: 0 20px 15px 0;
}
#footer .ft-nav li:nth-child(6), #footer .ft-nav li:last-child {
  margin-right: 0;
}

#copyright {
  font-size: 10px;
  background: #bebebe;
  color: #fff;
  padding: 5px 0;
  word-break: normal;
}
#copyright a {
  color: #fff;
}

/*==========================================
サブビジュアル
===========================================*/
.lower-sv {
  position: relative;
  height: 400px;
}
.lower-sv h2 {
  font-size: 4rem;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
  position: absolute;
  width: 1080px;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 110px;
  text-align: left;
  font-weight: 600;
}
.lower-sv h2 span {
  background: #fff;
  padding: 5px 20px;
}

#remodel-sv {
  background: url(../img/sv/remodel-sv.png) center bottom no-repeat, url(../img/sv/sv-base.png) left top/48.95833% no-repeat;
}

#gardening-sv {
  background: url(../img/sv/gardening-sv.png) center bottom no-repeat, url(../img/sv/sv-base.png) left top/48.95833% no-repeat;
}

#cleaning-sv {
  background: url(../img/sv/cleaning-sv.png) center bottom no-repeat, url(../img/sv/sv-base.png) left top/48.95833% no-repeat;
}

#beginner-sv {
  background: url(../img/sv/beginner-sv.png) center bottom no-repeat, url(../img/sv/sv-base.png) left top/48.95833% no-repeat;
}

#info-sv {
  background: url(../img/sv/info-sv.png) center bottom no-repeat, url(../img/sv/sv-base.png) left top/48.95833% no-repeat;
}

#contact-sv {
  background: url(../img/sv/contact-sv.png) center bottom no-repeat, url(../img/sv/sv-base.png) left top/48.95833% no-repeat;
}

#complete-sv {
  background: url(../img/sv/complete-sv.png) center bottom no-repeat, url(../img/sv/sv-base.png) left top/48.95833% no-repeat;
}

#news-sv {
  background: url(../img/sv/news-sv.png) center bottom no-repeat, url(../img/sv/sv-base.png) left top/48.95833% no-repeat;
}

#site-sv {
  background: url(../img/sv/site-sv.png) center bottom no-repeat, url(../img/sv/sv-base.png) left top/48.95833% no-repeat;
}

#privacy-sv {
  background: url(../img/sv/privacy-sv.png) center bottom no-repeat, url(../img/sv/sv-base.png) left top/48.95833% no-repeat;
}

#e404-sv {
  background: url(../img/sv/e404-sv.png) center bottom no-repeat, url(../img/sv/sv-base.png) left top/48.95833% no-repeat;
}

/*==========================================
共通タイトル
===========================================*/
.ttl01 {
  margin-bottom: 25px;
}
.ttl01 .en {
  display: block;
  font-size: 5rem;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}
.ttl01 .en:after {
  width: 60px;
  height: 5px;
  background: #474747;
  margin: 0 auto;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
}
.ttl01 .ja {
  display: block;
  font-size: 2.5rem;
  margin-top: 35px;
}

.ttl02 {
  font-size: 2.5rem;
  font-weight: 500;
  text-align: left;
  margin-bottom: 20px;
}

/*==========================================
FEATURE
===========================================*/
.feature .sub-ttl {
  font-size: 2.5rem;
  margin-bottom: 60px;
}
.feature .sub-ttl span {
  display: block;
  font-size: 1.6rem;
  color: #fecb7d;
}
.feature .remodel-item {
  margin-top: 135px;
}
.feature .remodel-item h4 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.feature .remodel-item p {
  margin-bottom: 55px;
}
.feature .remodel-item .item-wrp li {
  width: 515px;
  margin-bottom: 50px;
}
.feature .remodel-item .item-wrp li:nth-child(2n+1):nth-last-child(-n+2), .feature .remodel-item .item-wrp li:nth-child(2n+1):nth-last-child(-n+2) ~ li {
  margin-bottom: 0;
}
.feature .remodel-item .item-wrp li figcaption {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fecb7d+1,fbcdd0+100 */
  background: #fecb7d;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, color-stop(1%, rgba(254, 203, 125, 0.5)), to(rgba(251, 205, 208, 0.5)));
  background: linear-gradient(to right, rgba(254, 203, 125, 0.5) 1%, rgba(251, 205, 208, 0.5) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fecb7d', endColorstr='#fbcdd0',GradientType=1 );
  /* IE6-9 */
  font-size: 2.5rem;
  height: 120px;
  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;
}

.point-wrp li {
  padding-bottom: 35px;
  margin-bottom: 55px;
}
.point-wrp li:last-child {
  margin-bottom: 0;
}
.point-wrp li .txt-blc {
  width: 595px;
  background: #fafafa;
  padding: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 -60px 0 auto;
}
.point-wrp li .txt-blc h4 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
}
.point-wrp li .txt-blc h4:before {
  position: absolute;
  font-size: 6rem;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
  font-weight: 600;
  left: 0;
  top: -120px;
}
.point-wrp li:nth-child(1) h4:before {
  content: "01";
}
.point-wrp li:nth-child(2) h4:before {
  content: "02";
}
.point-wrp li:nth-child(3) h4:before {
  content: "03";
}

/*==========================================
リフォーム
===========================================*/
#remodel .point-wrp li:nth-child(1) {
  background: url(../img/remodel/feature01-img01.png) left bottom/57.8125% no-repeat, url(../img/remodel/feature01-img02.png) right bottom/30.46875% no-repeat;
}
#remodel .point-wrp li:nth-child(2) {
  background: url(../img/remodel/feature02-img01.png) left bottom/57.8125% no-repeat, url(../img/remodel/feature02-img02.png) right bottom/30.46875% no-repeat;
}

/*==========================================
お庭のお手入れ
===========================================*/
#gardening .point-wrp li:nth-child(1) {
  background: url(../img/gardening/gardening01-img01.png) left bottom/57.8125% no-repeat, url(../img/gardening/gardening01-img02.png) right bottom/30.46875% no-repeat;
}
#gardening .point-wrp li:nth-child(2) {
  background: url(../img/gardening/gardening02-img01.png) left bottom/57.8125% no-repeat, url(../img/gardening/gardening02-img02.png) right bottom/30.46875% no-repeat;
}
#gardening .more-btn {
  width: 450px;
  margin: 65px auto 0 auto;
}

/*==========================================
ハウスクリーニング
===========================================*/
#cleaning .point-wrp li:nth-child(1) {
  background: url(../img/cleaning/cleaning01-img01.png) left bottom/57.8125% no-repeat, url(../img/cleaning/cleaning01-img02.png) right bottom/30.46875% no-repeat;
}
#cleaning .point-wrp li:nth-child(2) {
  background: url(../img/cleaning/cleaning02-img01.png) left bottom/57.8125% no-repeat, url(../img/cleaning/cleaning02-img02.png) right bottom/30.46875% no-repeat;
}
#cleaning .more-btn {
  width: 450px;
  margin: 65px auto 0 auto;
}

/*==========================================
初めての方へ
===========================================*/
/*---------------------------
茅野店が選ばれる理由
----------------------------*/
#reason {
  background: url(../img/beginner/reason-bg.png) bottom -15vw center no-repeat;
}
#reason .reason-wrp li {
  margin-bottom: 40px;
}
#reason .reason-wrp li:last-child {
  margin-bottom: 0;
}
#reason .reason-wrp li .txt-blc {
  width: 530px;
}
#reason .reason-wrp li .txt-blc h4 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 15px;
}
#reason .reason-wrp li .txt-blc h4 .point {
  display: block;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
  font-size: 2.2rem;
}
#reason .reason-wrp li .txt-blc h4 .point em {
  font-size: 6rem;
}

/*---------------------------
ご依頼の流れ
----------------------------*/
#flow .inbox {
  width: 1220px;
}
#flow .flow-wrp {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fecb7d+1,fbcdd0+100 */
  background: #fecb7d;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, rgba(254, 203, 125, 0.5)), to(#fbcdd0));
  background: linear-gradient(to bottom, rgba(254, 203, 125, 0.5) 1%, #fbcdd0 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fecb7d', endColorstr='#fbcdd0',GradientType=0 );
  /* IE6-9 */
  padding: 65px 70px;
}
#flow .flow-wrp > li {
  padding-bottom: 40px;
  margin-bottom: 40px;
  background: url(../img/beginner/step-arr.png) bottom center no-repeat;
}
#flow .flow-wrp > li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  background: none;
}
#flow .flow-wrp > li .contact-box {
  width: 540px;
  background: #fff;
  padding: 45px 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#flow .flow-wrp > li .contact-box dt {
  font-size: 2.5rem;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  font-weight: 500;
}
#flow .flow-wrp > li .contact-box dt:before {
  width: 30px;
  height: 2px;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  background: #474747;
}
#flow .flow-wrp > li .contact-box dd p {
  margin-bottom: 20px;
}
#flow .flow-wrp > li .contact-box dd li {
  width: 260px;
  margin: 0 auto 15px auto;
}
#flow .flow-wrp > li .contact-box dd li:first-child a {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fbcdd0+1,fecb7d+100 */
  background: #fbcdd0;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, color-stop(1%, #fbcdd0), to(#fecb7d));
  background: linear-gradient(to right, #fbcdd0 1%, #fecb7d 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbcdd0', endColorstr='#fecb7d',GradientType=1 );
  /* IE6-9 */
}
#flow .flow-wrp > li .contact-box dd li:last-child a {
  background: url(../img/common/hd-mail_icon.png) left 35px center/8% no-repeat, #fecb7d;
}
#flow .flow-wrp > li .contact-box dd li a {
  display: block;
  padding: 12px 5px;
  color: #fff;
}
#flow .flow-wrp > li .contact-box dd .num {
  font-size: 3rem;
  font-weight: 500;
  padding-left: 30px;
  background: url(../img/common/hd-tel_icon.png) left center no-repeat;
}
#flow .flow-wrp > li .txt-blc {
  width: 475px;
}
#flow .flow-wrp > li .txt-blc dt {
  margin-bottom: 40px;
}
#flow .flow-wrp > li .txt-blc dt .step {
  border-radius: 50%;
  width: 90px;
  height: 90px;
  background: #fff;
  font-size: 1.6rem;
  text-align: center;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 25px;
  display: inline-block;
  padding-top: 13px;
}
#flow .flow-wrp > li .txt-blc dt .step em {
  line-height: 1;
  display: block;
  font-size: 3rem;
}
#flow .flow-wrp > li .txt-blc dt .ja {
  font-size: 2.5rem;
  font-weight: 500;
}
#flow .flow-wrp > li .txt-blc dt small {
  font-size: 1.6rem;
  margin-left: 15px;
}
#flow .flow-wrp > li .txt-blc dd span {
  display: block;
  margin-bottom: 30px;
}
#flow .flow-wrp > li .txt-blc dd span:last-child {
  margin-bottom: 0;
}

/*==========================================
会社概要
===========================================*/
#greeting .ttl01 .en:after {
  margin: 0 auto 0 0;
  right: auto;
}
#greeting .txt-blc {
  width: 540px;
}
#greeting figure {
  width: 505px;
}
#greeting figure figcaption {
  text-align: right;
  font-weight: 700;
  margin-top: 5px;
}

/*==========================================
一覧ぺージ用カテゴリ(セレクトボックス)
===========================================*/
.category-select {
  overflow: hidden;
  width: 300px;
  margin-left: auto;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  border-radius: 2px;
  border: 2px solid #2e2e2e;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.category-select:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  right: .8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #2e2e2e;
  pointer-events: none;
}
.category-select select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: .01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 10px 38px 10px 8px;
  color: #2e2e2e;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.category-select select::-ms-expand {
  display: none;
}

/*==========================================
ギャラリー
===========================================*/
#gallery .gallery-lists > li {
  width: 240px;
  margin-right: 40px;
  margin-bottom: 50px;
  padding-bottom: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#gallery .gallery-lists > li:nth-child(4n+1):nth-last-child(-n+4), #gallery .gallery-lists > li:nth-child(4n+1):nth-last-child(-n+4) ~ li {
  margin-bottom: 0;
}
#gallery .gallery-lists > li:nth-child(4n), #gallery .gallery-lists > li:last-child {
  margin-right: 0;
}
#gallery .gallery-lists > li .thumb {
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
}
#gallery .gallery-lists > li a {
  display: block;
}
#gallery .gallery-lists figcaption {
  text-align: left;
  font-size: 17px;
}
#gallery .img-eff {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}
#gallery .img-eff:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  opacity: 0;
}
#gallery .img-eff:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#gallery .img-eff:hover:before {
  opacity: 1;
}
#gallery .gallery-img .main-img {
  width: 550px;
  margin-bottom: 10px;
  max-height: 405px;
  overflow: hidden;
}
#gallery .gallery-img .main-img img {
  max-width: 100%;
  height: auto;
}
#gallery .gallery-img .gallery-img-lists li {
  width: 175px;
  height: 130px;
  margin-right: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#gallery .gallery-img .gallery-img-lists li:nth-child(3n+1):nth-last-child(-n+3), #gallery .gallery-img .gallery-img-lists li:nth-child(3n+1):nth-last-child(-n+3) ~ li {
  margin-bottom: 0;
}
#gallery .gallery-img .gallery-img-lists li:hover {
  filter: alpha(opacity=60);
  opacity: .6;
}
#gallery .gallery-img .gallery-img-lists li:nth-child(3n), #gallery .gallery-img .gallery-img-lists li:last-child {
  margin-right: 0;
}
#gallery .comment {
  width: 405px;
  text-align: left;
  padding-bottom: 10px;
}

/*==========================================
お知らせ
===========================================*/
.post-wrap .column-lists > li {
  margin-bottom: 25px;
  border-bottom: 1px solid #ccc;
}
.post-wrap .column-lists > li a {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  box-sizing: border-box;
}
.post-wrap .column-lists > li a:hover .more-btn {
  background: #fff;
  color: #fecb7d;
}
.post-wrap .column-lists > li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.post-wrap .column-lists .post-ttl {
  text-align: left;
  margin-bottom: 15px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-wrap .column-lists .post-ttl time {
  color: #fecb7d;
  text-align: left;
  padding: 4px 0;
  width: 65px;
}
.post-wrap .column-lists .post-ttl time,
.post-wrap .column-lists .post-ttl .category-label {
  font-weight: normal;
  font-size: 10px;
}
.post-wrap .column-lists .post-ttl .category-label {
  width: 720px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-wrap .column-lists .post-ttl .category-label li {
  border: 1px solid #fecb7d;
  color: #fff;
  background: #fecb7d;
  padding: 2px 10px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.post-wrap .column-lists .post-ttl .category-label li:last-child {
  margin-right: 0;
}
.post-wrap .column-lists .post-ttl .column-ttl {
  width: 100%;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
}
.post-wrap .column-lists .post-body {
  text-align: left;
  margin-bottom: 20px;
}
.post-wrap .column-lists .more-btn {
  width: 125px;
  font-size: 14px;
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: #fecb7d;
  border: 1px solid #fecb7d;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 0;
  display: block;
  color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.post-wrap .column-lists .thumb {
  width: 210px;
  height: 200px;
}
.post-wrap .column-lists .post-area {
  width: 800px;
}
.post-wrap .post-content {
  padding: 0 20px 5px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}
.post-wrap .post-content img {
  max-width: 100%;
}

/*----------------------------------
詳細ページのカテゴリー表示(タイトル下部)
----------------------------------*/
.single-meta {
  margin-bottom: 20px;
}
.single-meta time {
  font-size: 11px;
  text-align: left;
  width: 85px;
  padding: 3px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.single-meta .category-label {
  width: 950px;
  font-size: 10px;
  margin-left: 10px;
}
.single-meta .category-label li {
  margin-right: 10px;
  margin-bottom: 10px;
}
.single-meta .category-label li:last-child {
  margin-right: 0;
}
.single-meta .category-label li a {
  border: 1px solid #fecb7d;
  color: #fecb7d;
  padding: 3px 10px;
  border-radius: 25px;
  display: block;
}
.single-meta .category-label li a:hover {
  opacity: 1;
  color: #fff;
  background: #fecb7d;
}

/*----------------------------------
詳細ページのカテゴリー表示(テキストエリア下部)
----------------------------------*/
.single-category {
  max-width: 250px;
  min-width: 150px;
  margin-top: 10px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 10px;
}
.single-category dt {
  width: 80px;
}
.single-category dt:after {
  content: ':';
  padding: 0 5px;
}
.single-category dd {
  max-width: 170px;
  line-height: 2;
  min-width: 60px;
}
.single-category ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-category ul li {
  margin-right: 5px;
}
.single-category ul li:last-child {
  margin-right: 0;
}
.single-category ul li a {
  display: block;
  padding-left: 8px;
  position: relative;
}
.single-category ul li a:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  left: 0;
  content: '#';
}
.single-category ul li a:hover {
  background: #ccc;
}

/*==========================================
お問い合わせ
===========================================*/
#contact .contact-form {
  margin-bottom: 20px;
}
#contact .contact-form dl dt {
  width: 320px !important;
  position: relative;
  vertical-align: top;
}
#contact .contact-form dl dt em {
  position: absolute;
  top: 20px;
  right: 10px;
  color: #f00;
  background: #fff;
  font-weight: 500;
  padding: 3px;
  font-size: 11px;
}
#contact .contact-form dl dd li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#contact .contact-form dl dd li:last-child {
  margin-right: 0;
}
#contact .contact-form .txtarea {
  width: 640px;
  font-size: 16px;
  border: 1px solid #ccc;
  background: #fff;
  padding: 5px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
#contact .contact-form select {
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  color: #474747;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
}
#contact .contact-form #post01,
#contact .contact-form #post02 {
  width: 150px;
}
#hope{
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 5px;
  box-sizing: border-box;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
#contact .contact-form #addr21 {
  margin-top: 15px;
}
#contact .contact-form textarea {
  height: 260px;
  line-height: 1.8;
}
#contact .contact-form .error-text {
  color: #ff0000;
  margin-bottom: 5px;
}
#contact .contact-form .upload-item-wrap #file01 {
  margin-bottom: 10px;
}
#contact .contact-form .upload-item-wrap .thumb {
  width: 200px;
  margin-right: 25px;
}
#contact .contact-form .upload-item-wrap .thumb img {
  max-width: 100%;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap {
  width: 130px;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button {
  width: 100%;
  border-radius: 5px;
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 5px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .ancion-btn:hover,
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button:hover {
  filter: alpha(opacity=60);
  opacity: .6;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button {
  margin-bottom: 5px;
  background: #fecb7d;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap p {
  background: #fbcdd0;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .select-file,
#contact .contact-form .upload-item-wrap .ancion-btn-wrap input {
  display: none !important;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap input#file-upload-button {
  background: #fbcdd0;
}
#contact .g-recaptcha div {
  margin: 0 auto;
  margin-bottom: 25px;
}
#contact input[type='button'][disabled],
#contact input[type='submit'][disabled] {
  opacity: .7;
  pointer-events: none;
}
#contact input[type='button'],
#contact input[type='submit'],
#contact .contact-submits-wrap button {
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  color: #fff;
  background: #fff;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #fecb7d;
  color: #fecb7d;
  border-radius: 0;
}
#contact input[type='button']:hover,
#contact input[type='submit']:hover,
#contact .contact-submits-wrap button:hover {
  background: #fecb7d;
  cursor: pointer;
  color: #fff;
  filter: alpha(opacity=100);
  opacity: 1;
}
#contact .check-btn {
  width: 260px;
  margin: 0 auto;
  margin-top: 20px;
}
#contact .back-btn {
  width: 270px;
  margin: 0 auto;
  margin-right: 40px;
}
#contact .contact-submits-wrap {
  margin-top: 20px;
}
#contact .send-btn {
  width: 240px;
  margin: 0 auto;
}
#contact .privacy-agree {
  text-decoration: underline;
}

/*==========================================
プライバシーポリシー
===========================================*/
#privacy .privacy-box {
  margin-bottom: 40px;
  text-align: left;
}
#privacy .privacy-box:last-child {
  margin-bottom: 0;
}
#privacy .privacy-box p {
  margin-bottom: 25px;
}
#privacy .privacy-box p:last-child {
  margin-bottom: 0;
}
#privacy .privacy-box ul {
  margin-top: 25px;
}

/*==========================================
プライバシーポリシー(LPフレーム時)
===========================================*/
/*==========================================
404.php
===========================================*/
#err-cont .txt-blc a {
  text-decoration: underline;
}
