/*20221130追加*/
.textbgW{
	background-color: rgba(255,255,255,.7);
	padding: 5px;
}
/*20221130追加おわり*/


* {
	box-sizing: border-box;
}

.alignfull {
	cursor: default;
}

.wp-block-spacer {
	cursor: default;
}

h3 {
	cursor: default;
}

.wow {
	cursor: default;
}

.wp-block-gallery {
	cursor: pointer;
}

/*　ContactForm7のテーブル化レスポンシブ調整　*/
 
/*テーブルを親要素の幅いっぱいに伸ばす*/
.table-res-form {
    width: 100%;
}
/*一行ごとに上ボーダー*/
.table-res-form tr {
    border-top: 1px #DDD solid;
}
/*一番上の行だけボーダーなし*/
.table-res-form tr:first-child {
    border-top: none;
}
/*奇数行だけ背景色つける*/
.table-res-form tr:nth-child(2n+1) {
    background: #eee;
}
/*thとtd内の余白指定*/
.table-res-form th, .table-res-form td {
    padding: 1.5em;
}
/*th（項目欄）は30%幅、テキストを右寄せ*/
.table-res-form th {
    width: 30%;
    text-align: right;
}
/*「必須」部分のスタイリング*/
.table-res-form .requied {
    font-size: 0.8em;
    color: #FFF;
    display: inline-block;
    padding: 0.3em 0.3em 0.2em;
    background: red;
    border-radius: 2px;
}
 
/*ここから768px以下の指定*/
 
@media screen and (max-width: 768px) {
　　　　　/*thとtdをブロック化して幅100％にして、縦積み*/
    .table-res-form, .table-res-form th, .table-res-form td {
        width: 100%;
        display: block;
    }
　　　　　/*th（項目名）欄の不要な余白削除・テキスト左寄せ*/
    .table-res-form, .table-res-form th {
        padding-bottom: 10;
        text-align: left;
    }
　　　　　/*不要な最終行の左のthを非表示にする*/
    .table-res-form, .table-res-form .empty {
        display: none;
    }
}
 
/*ここまで768px以下の指定---終わり*/
 
/*ここから入力欄のスタイル指定*/
 
/*各入力フォームスタイリング*/
.table-res-form input[type="text"], input[type="email"], textarea {
    border: 1px #89BDDE solid;
    padding: 0.5em;
    border-radius: 5px;
    margin-bottom: 0.5em;
    width: 100%;
}
/*入力欄にフォーカスしたら変化*/
.table-res-form input[type="text"]:focus, textarea:focus {
    background: #EEFFFF;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
}
/*送信ボタンスタイリング*/
.table-res-form input[type="submit"] {
    border: 1px #89BDDE solid;
    padding: 0.5em 4em;
    border-radius: 5px;
    background: #4C9ED9;
    color: #fff;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
    font-weight: bold;
}
/*送信ボタン・マウスオーバー時スタイリング*/
.table-res-form input[type="submit"]:hover {
    background: #006599;
    box-shadow: none;
}

/*キャッチフレーズフォント*/
.site-description{
font-family: HelveticaNeue-CondensedBlack;
font-size: 20px!important;
text-shadow: 0.5px 1px 1px #a9a9a9;
}

/*heroセクションカスタマイズforスマートフォン*/
@media screen and (max-width: 375px){
/*文字アニメ　サイズ変更*/
	.js-rotating 
{
font-size: x-large;
}
/*アニメ下テキスト　サイズ変更*/
	.herotext{
font-size: x-small;
}
	.scroll {
  font-size: x-small;
	color: #fff;
}
}
/*heroセクションカスタマイズforスマートフォン終了*/

/* スクロールアニメーション */
.scroll {
  font-size: large;
	color: #fff;
}
.scroll span {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 1.5s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

/*HeroセクションBOX*/
.greenbox {
    padding: 0.5em 1em;
    margin: 2em 20%;
    color: #2c2c2f;
    background: #82C8C7;/*背景色*/
}
.greenbox p {
    margin: 0; 
    padding: 0;
}

.section-features {
	background-color: #82C8C7;
    background-image: url("http://n-create-s.com/wp-content/uploads/2019/09/cleaningbgimg.png");
	background-position: center;
	background-repeat: no-repeat;
	color: white;
}

.section-features h2 {
	color: white;
}
.section-content h4 a {
	color: white;
}

/* Newsセクションカスタマイズ */
.wp-show-posts {
	background-color: #EEE;
    background-image: url("http://n-create-s.com/wp-content/uploads/2019/09/newsbgimg.png");
		background-size: 100%;
	background-repeat: no-repeat;
}

.wp-show-posts-inner{
	background-color: rgba(255,255,255,0.7);
}

/* 清掃ページコメント */
.comment1 {
	text-align: center;
	color: #e6483b;
	background-color: #fff;
}

/* 各ページ背景画像 */
.yuka {
  background-image: url("http://n-create-s.com/wp-content/uploads/2021/01/back_yukabgimg2.png");
	background-size: cover;
	background-repeat: no-repeat;
  background-position: right;
 }

.hakuri {
    background-image: url("http://n-create-s.com/wp-content/uploads/2019/09/hakurigbimg.png");
	background-size: cover;
	background-repeat: no-repeat;
  background-position: left;
	background-color: #fff;
}

.glass {
    background-image: url("http://n-create-s.com/wp-content/uploads/2019/09/glassbgimg.png");
	background-size: cover;
	background-repeat: no-repeat;
  background-position: right;
}

.teikibackimage::before {
  content: "";
  background: url(http://n-create-s.com/wp-content/uploads/2019/11/back_teikitopimgbk.jpeg) no-repeat center center;
  background-size: cover;
  display: block;
  position: fixed;
  top: 10%;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  transform: translateZ(0);
}

.housebackimage::before {
   content: "";
  background: url(http://n-create-s.com/wp-content/uploads/2021/01/housetopimgbk1.png) no-repeat center center;
  background-size: cover;
  display: block;
  position: fixed;
  top: 10%;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  transform: translateZ(0);
}

.companybackimage::before {
  content: "";
  background: url(http://n-create-s.com/wp-content/uploads/2021/01/back_companybgimg1.png) no-repeat center center;
  background-size: cover;
  display: block;
  position: fixed;
  top: 10%;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  transform: translateZ(0);
}

.saiyobackimage::before {
  content: "";
  background: url(http://n-create-s.com/wp-content/uploads/2019/11/back_saiyotopimg.png) no-repeat center center;
  background-size: cover;
  display: block;
  position: fixed;
  top: 10%;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  transform: translateZ(0);
}

/*コンテンツ幅調整*/
.chousei {
    padding-left: 6%;
		padding-right: 6%;
}

.chouseinarrow {
    padding-left: 10%;
		padding-right: 10%;
}


.housebgcolor{
    background-color: #CFECF0;
}

.bkrgba{
	background:rgba(255,255,255,0.8);
}



/*---採用ページ---*/

.saiyouMidashi {
	background-image: url(http://n-create-s.com/wp-content/uploads/2019/11/siyoumidashibkimg.png);
	background-size: cover;
	width: 100%;
	padding-top: 40px;
}

.saiyouMidashi p {
	  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
	font-size: x-large;
	font-family: YuMincho;
	padding: 30px 0;
	display: inline-block;
	font-weight: bold;
	color: #2F2F2F;
	filter: drop-shadow(5px 5px 4px rgba(0,0,0,0.2));
		white-space: nowrap;
}

.saiyoucontents {
	text-align: center;
background-color: rgba(255,255,255,.7);
	margin: 40px 0px;
}

.interviewbackimage::before {
  content: "";
  background: url(http://n-create-s.com/wp-content/uploads/2019/09/interviewtopimg.png) no-repeat center center;
  background-size: cover;
  display: block;
  position: fixed;
  top: 12%;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  transform: translateZ(0);
}

/*レスポンシブ用インラインブロック*/
.textblock{
    display: inline-block;
}

.shadow{
    text-shadow:1px 2px 1px rgba(0,0,0,0.6);
}

.rbox{
	border-radius: 10px;
}

.boxline{
    border: solid 1px rgba(255,255,255,0.8);
}

.h1back{
    background: linear-gradient(-110deg, rgba(255, 255, 255, 0),rgba(203, 236, 240, .4))
}

.triangleDown{
	width:0;
	height:0;
	border-right:50px solid transparent;
	border-left:50px solid transparent;
	border-top:40px solid #F00;
	margin: 0 auto;
}

.triangleDownbk{
	width:0;
	height:0;
	border-right:50px solid transparent;
	border-left:50px solid transparent;
	border-top:40px solid #000;
	margin: 0 auto;
}

/*ギャラリー*/
#jp-carousel-comments-loading {
 display: none !important;
}

.blocks-gallery-item{
	opacity: .8;
}

.blocks-gallery-item:hover{
	    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all  0.5s ease;
		opacity: 1;
	transform: scale(1.04);
}

.titleimage:hover{
	    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
		opacity: .7;
}

.topbox{
	text-align: center;
}

.interview{
	width:100%;
	margin: 0 ;
}

.interview dl {
	width:calc(100% - 30px);
	max-width:560px;
	margin-bottom: 2em;
	margin: 0 auto;
	display:flex;
	flex-wrap:wrap;
}

.interview dl dt{
	width:15%;
}

.interview dl dd{
	width:75%;
}

th {
	border: none!important;
	white-space: nowrap;
}

/*見積もりフロー */
.mitsumoriarea {
	background: #fff;
	padding: 20px;
	border-radius: 30px;
	opacity: 0.95;
}

.mitsumori {
	font-size: large;
	font-weight: bold;
	text-align: center;
	padding-top: 10px;
}

.mitsumori span {
	font-family:'Sacramento';
	font-size: 16px;
}

.mitsumori i {
	display: block;
	font-size: xx-large;
	padding-bottom: 10px;
}

.mitsumoriItem {
	width: 24%;
	padding: 0 5px;
}

.step1 {
	display: inline-block;
	color: green;
	vertical-align: top;
}

.step2 {
display: inline-block;
	color: blue;
	  vertical-align: top;
}

.step3 {
display: inline-block;
	color: red;
	  vertical-align: top;
}

.step4 {
display: inline-block;
	color: orange;
	  vertical-align: top;
}

.clear {
	clear: left;
}


/*ハウスクリーニング価格表*/
.housePricearea{
	padding: 20px;
	opacity: 0.95;
}

.housePrice{
	text-align: center;
}

.housePrice div {
	display: inline-block;
	font-weight: bold;
	line-height: 30px;
	width: 300px;
	margin: 5px 5px;
		box-shadow: 3px 5px rgba(200,200,200,0.3);
	background-color: #fff;
	border-radius: 30px;
	padding: 10px;
	vertical-align: top;
}

.price {
	border-bottom: 1px dashed;
}

.setPrice {
	background: #F2F2F2;
	border-radius: 20px;
	padding: 10px;
	display: block;
	line-height: 18px;
}

.setPricetitle {
	color: #fff;
	background-color: #e6483b;
	padding: 2px 5px;
	border-radius: 10px;
}

.priceoff{
	color: #e6483b;
	border-bottom: 2px solid;
	background-image: linear-gradient(25deg,#fff,rgba(255,255,255,.0))
}

.blueicon {
	color: royalblue;
	margin: 10px 0;
}

/*ポイント*/
.point {
	background-color: rgba(255,255,255,.9);
	border-radius: 30px;
	padding: 10px;
	font-weight: bold;
	text-align: center;
	color: #679D9C;
	font-size: 12px;
	line-height: 25px
}

.point i {
	font-size: x-large;
	color: blue;
}

/* 1000px以下　*/
@media (max-width: 1000px){
.mitsumoriItem {
 width: 50%;
 float: left;
}
}

/*--ギャラリー レスポンシブ1カラム
------------------------------*/

@media screen and (max-width: 480px)
{		.blocks-gallery-item
{        width: 100vw!important;
    margin: 10px!important;}
    /*レスポンシブフォントサイズ中*/
    .font-medium{
        font-size: small;
    }
	.sp-font-small{
        font-size: smaller;
    }
	    .teikibackimage::before {
  content: "";
  background: url(http://n-create-s.com/wp-content/uploads/2019/11/back_teikitopimg_mbk1.jpeg) no-repeat center center;
  background-size: cover;
  display: block;
  position: fixed;
  top: 10%;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  transform: translateZ(0);
}

.housebackimage::before {
   content: "";
  background: url(http://n-create-s.com/wp-content/uploads/2021/01/housetopimg_m1bk.png) no-repeat center center;
  background-size: cover;
  display: block;
  position: fixed;
  top: 10%;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  transform: translateZ(0);
}

.companybackimage::before {
  content: "";
  background: url(http://n-create-s.com/wp-content/uploads/2019/10/companytopimg_m.png) no-repeat center center;
  background-size: cover;
  display: block;
  position: fixed;
  top: 10%;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  transform: translateZ(0);
}

.saiyobackimage::before {
  content: "";
  background: url(http://n-create-s.com/wp-content/uploads/2019/10/saiyotopimg_m.png) no-repeat center center;
  background-size: cover;
  display: block;
  position: fixed;
  top: 10%;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  transform: translateZ(0);
}

.interviewbackimage::before {
  content: "";
  background: url(http://n-create-s.com/wp-content/uploads/2019/10/interviewtopimg_m.png) no-repeat center center;
  background-size: cover;
  display: block;
  position: fixed;
  top: 10%;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  transform: translateZ(0);
}

/*採用ページ*/
.saiyoucontents {
	text-align: center;
background-color: rgba(255,255,255,.7);
	margin: 40px 0px;
}
	
	.saiyouMidashi p {
	white-space: nowrap;
	font-size: 16px;
	}

/* 見積もりフロー　*/
	.mitsumoriItem {
 width: 100%;
 float: left;
}
	.mitsumori span {
	font-family:'Sacramento';
	font-size: 16px;
}
}

/* テストページ */
.test_yuka {
    background-image: url("http://n-create-s.com/wp-content/uploads/2021/01/back_yukabgimg2.png");
	background-size: cover;
	background-repeat: no-repeat;
  background-position: right;
 }
.test_housebackimage::before {
  content: "";
  background: url(http://n-create-s.com/wp-content/uploads/2021/01/housetopimgbk1.png) no-repeat center center;
  background-size: cover;
  display: block;
  position: fixed;
  top: 10%;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  transform: translateZ(0);
}
@media screen and (max-width: 480px)
{
.test_housebackimage::before {
  content: "";
  background: url(http://n-create-s.com/wp-content/uploads/2021/01/housetopimg_m1bk.png) no-repeat center center;
  background-size: cover;
  display: block;
  position: fixed;
  top: 10%;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  transform: translateZ(0);
}
}