@charset 'UTF-8';
img{
	max-width: 100%;
	height: auto;
}

/* 404
--------------------------- */
.p404_txt{
	margin-bottom: 0;
	margin-top: 1rem;
}

/* 各メディアごとのマージン設定
--------------------------- */
/* 768px以上用の記述 */
@media screen and (min-width: 768px) {
  .col-md-m20-bottom {
    margin-bottom: 20px;
  }
  .col-md-none {
    display: none;
  }
}
/* 991px以下用の記述 */
@media screen and (max-width: 991px) {
  .col-md-m40-bottom {
    margin-bottom: 40px;
  }
}
/* 991px以下用の記述 */
@media screen and (max-width: 991px) {
  .col-md-m40-bottom {
    margin-bottom: 40px;
  }
}
/* 767px以下用の記述 */
@media screen and (max-width: 767px) {
  .col-sm-m20-bottom {
    margin-bottom: 20px;
  }
  .col-sm-none {
    display: none;
  }
}
/* 576px以下用の記述 */
@media screen and (max-width: 576px) {
  .col-xs-m40-bottom {
    margin-bottom: 40px;
  }
  .col-xs-m20-bottom {
    margin-bottom: 20px;
  }
  .col-xs-none {
    display: none;
  }
}
/*******************************
PC/SP切り替え
*******************************/
.pc-none{
    display: block;
}
.sp-none{
    display: none;
}
@media screen and (min-width: 768px){
    .pc-none{
        display: none;
    }
    .sp-none{
        display: block;
    }
}

/*******************************
背景
*******************************/
.bk_f7f5f2{
	position: relative;
}
.bk_f7f5f2::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #f7f5f2;
	z-index: -1;
}

/*******************************
container
*******************************/
.page_container, .page_container2{
	width: 84.61%;
	margin-right: auto;
	margin-left: auto;
}
@media screen and (min-width: 768px){
	.page_container, .page_container2{
		width: 76.47%;
	}
}
@media screen and (min-width: 1200px){
	.page_container2{
		width: 70.58%;
	}
}


/*******************************
見出し
*******************************/
.c-title1{
	font-size: 1rem;
	letter-spacing: 0;
	line-height: 1.5;
	margin-bottom: 3rem;
}
.c-title1 .f-eng{
	display: block;
	font-size: 2.3rem;
	font-weight: 400;
	margin-bottom: -0.04rem;
}
@media screen and (min-width: 1200px){
	.c-title1{
		margin-bottom: 4.93rem;
	}
	.c-title1 .f-eng{
		font-size: 2.66rem;
		margin-bottom: 0.5rem;
	}
}
.en_tit{
	font-size: 1.23rem;
	font-weight: 400;
}
@media screen and (min-width: 1200px){
	.en_tit{
		font-size: 1.33rem;
	}
}

/*******************************
text
*******************************/
.txt_block p{
	margin-bottom: 0;
}

/*******************************
TOP BUTTON
*******************************/
.vm{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #e67800;
	color: #fff;
	border-radius: 60px;
	font-weight: 400;
	letter-spacing: 0.02em;
	font-size: 1rem; 
	width: 197px;
	height: 52px;
	transition: .3s;
}
.vm:hover{
	text-decoration: none;
	opacity: 0.7;
	color: #fff;
}
@media screen and (min-width: 1200px){
	.vm{
		width: 230px;
		height: 60px;
	}
}
/* 稼働状況ボタン */
.ts_situation{
	font-size: 1.23rem;
	letter-spacing: 0;
	text-align: center;
	color: #e67800;
	border: 1px solid #e67800;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 370px;
	height: 70px;
	position: relative;
	transition: .3s;
}
.ts_situation .arrow{
	width: 16px;
	height: 16px;
	background-color: #e67800;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 4.34%;
	transform: translateY(-50%);
	transition: .3s;
}
.ts_situation .arrow::after{
	position: absolute;
	content: "";
	width: 6px;
	height: 4.3px;
	background-image: url("../images/arrow_w.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.ts_situation:hover{
	text-decoration: none;
	color: #e67800;
}
.ts_situation:hover .arrow{
	right: calc(4.34% - 5px);
}
@media screen and (min-width: 1200px){
	.ts_situation{
		font-size: 1.33rem;
		max-width: 460px;
		height: 110px;
	}
	.ts_situation .arrow{
		width: 20px;
		height: 20px;
	}
	.ts_situation .arrow::after{
		width: 9px;
		height: 6.4px;
	}
}

/*******************************
パンクズ
*******************************/
#pls {
	padding-top: 1.95rem;
}
#pan {
    font-size: 0.8rem;
	font-weight: bold;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	color: #000;
	line-height: 1.5;
	letter-spacing: 0.04em;
}
#pan a{
	color: #b2b2b2;
    text-decoration: none;
}
.pan_line{
	position: relative;
	width: 20px;
	display: block;
	margin: 0 10px;
}
.pan_line::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	display: block;
	background-color: rgba(0,0,0,0.25);
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
@media screen and (min-width: 768px){
	#pls{
		padding-top: 2.6rem;;
	}
    #pan{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-start;
    }
}
@media screen and (min-width: 992px){
	#pls{
		padding-top: 3.25rem;
	}
}
@media screen and (min-width: 1400px){
	#pls{
		padding-top: 3.9rem;
	}
}

/*******************************
/* フォーム/テーブル
*******************************/
.wpcf7-submit {
  font-size: 1.2em;
  background-color: #000;
  color: #fff;
  border-style: none;
  width: 60%;
  margin-bottom: 30px;
  padding-top: 15px;
  padding-right: 40px;
  padding-bottom: 15px;
  padding-left: 40px;
}
#form {
	max-width: 100%;
}
#form th span {
	font-size: 0.8em;
	color: #FFF;
	background-color: #C00;
	padding: 3px;
}
#form th, #form td{
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.6;
	padding: 30px 0 30px;
	border-bottom: 1px solid rgba(190,190,190,0.5);
}
#form th {
  width: 30%;
}
#form td {
	text-align: left;
}
#form2 {
  max-width: 100%;
  margin-bottom: 40px;
  background-color: #FFF;
}
#form2 th span {
  font-size: 0.8em;
  color: #FFF;
  background-color: #C00;
  padding: 3px;
}
#form2 th {
  padding: 10px;
  width: 30%;
  border-bottom: 1px solid #1a1a1a;
  text-align: center;
}
#form2 td {
  padding: 10px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
  font-weight: normal;
  text-align: center;
}
#form3 {
  max-width: 100%;
  margin-bottom: 40px;
  background-color: #FFF;
}
#form3 tr {
  border-bottom: 1px dotted #bfbfbf;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  display: flex;
}
#form3 th {
  width: 150px;
  color: #FFF;
  text-align: center;
  padding-top: 10px;
}
#form3 th span {
  background-color: #808080;
  display: inline-block;
  width: 150px;
}
#form3 td {
  padding: 10px;
  vertical-align: middle;
  font-weight: normal;
  padding-left: 4rem;
}
#form3 td .tel_txt1 {
  font-size: 1.2rem;
  margin-bottom: 0;
}
#form3 td .tel_txt2 {
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  display: block;
}
/* テキストエリアの設定 */
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  color: #000;
  padding: 10px 0 10px 10px;
  margin: 10px 0;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus, select:focus {
  background-color: #fff;
}
@media only screen and (max-width:479px) {
  /* 479px以下用（スマートフォン用）の記述 */
  #form {
    max-width: 100%;
  }
  #form th {
    width: 100%;
    display: block;
    border-top: none;
	  padding: 20px 0 0;
	  border-bottom: none;
  }
  #form td {
    width: 100%;
    display: block;
    border-top: none;
	  padding: 8px 0 20px;
  }
	#form th, #form td{
		font-size: 1.06rem;
	}
  #form2 {
    max-width: 100%;
    margin-bottom: 40px;
  }
  #form2 th {
    width: 50%;
    border-top: none;
    text-align: center;
  }
  #form2 td {
    width: 100%;
    display: block;
    border-top: none;
    text-align: center;
  }
  #form3 {
    max-width: 100%;
    margin-bottom: 40px;
  }
  #form3 tr {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    flex-direction: column;
  }
  #form3 th {
    width: 50%;
    display: block;
    border-top: none;
  }
  #form3 td {
    width: 100%;
    display: block;
    border-top: none;
    margin-bottom: 0;
    padding-left: 10px;
  }
  #form3 tr:first-child th {
    /*	border-top: 1px solid #ddd;*/
  }
  /* テキストエリアの設定 */
  input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    width: 100%;
    padding: 10px 0px 0px 0px;
    margin: 10px 0;
  }
  .wpcf7-submit {
    font-size: 1.2em;
    border-style: none;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
/*--------------------------------------
archiveページャー
--------------------------------------*/
.pagenation {
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
	margin-top: 3.166rem;
}
.pagenation:after, .pagenation ul:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
.pagenation ul {
  margin: 0;
    display: flex;
    justify-content: center;
}
.pagenation li {
  list-style: none outside none;
  margin-left: 15px;
}
.pagenation li:first-child {
  margin-left: 0;
}
.pagenation li.active {
    cursor: not-allowed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 1.06rem;
	font-family: "Outfit", system-ui;
  font-optical-sizing: auto;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0.04em;
	color: #000;
	border-radius: 50%;
	opacity: 0.5;
}
.pagenation li a {
    position: relative;
	text-decoration: none;
	width: 30px;
	height: 30px;
	font-family: "Outfit", system-ui;
  font-optical-sizing: auto;
	display: flex;
	justify-content: center;
	align-items: center;
    font-size: 1.06rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	overflow: hidden;
	color: #000;
	border-radius: 50%;
}
.pagenation li.prev,
.pagenation li.next{
	text-transform: uppercase;
	width: 30px;
	height: 30px;
}
.pagenation li.prev a,
.pagenation li.next a{
	position: relative;
	font-size: 0;
	color: transparent;
}
.pagenation li.prev a::after,
.pagenation li.next a::after{
	position: absolute;
	content: "";
	background-image: url("../images/arrow_b.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 15px;
	height: 10px;
	top: 50%;
	left: 50%;
}
.pagenation li.prev a::after{
	transform: translate(-50%,-50%) rotate(180deg);
}
.pagenation li.next a::after{
	transform: translate(-50%,-50%);
}
@media screen and (min-width: 1200px){
	.pagenation li{
		margin-left: 20px;
	}
}
@media screen and (max-width: 1199px){
	.pagenation li.prev a::after, .pagenation li.next a::after{
		width: 14px;
		height: 9px;
	}
}


/*******************************
/* single.php　アイキャッチ
***************************/
.sgl {
  margin-bottom: 30px;
  text-align: center;
}
/*************************
/* single.php 日付
*************************/
#date span {
	color: #878787;
	font-size: 1rem;
	font-family: "Poppins", sans-serif;
	letter-spacing: 0;
}
/* single.php ページ送り
----------------------------------------------------------------------------------------------------*/

#next {
  background-color: #efefef;
  padding: 10px;
  margin-top: 30px;
}
.nx_left {
  width: 100%;
  text-align: left;
}
.nx_left a {
  background-color: #FFF;
  color: #000;
  text-decoration: none;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: url(../images/left.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 35px;
}
.nx_left a:hover {
  background-color: #828282;
  color: #FFF;
  text-decoration: none;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: url(../images/left2.png);
  background-repeat: no-repeat;
  background-position: left center;
}
.nx_right {
  width: 100%;
  text-align: right;
}
.nx_right a {
  background-color: #FFF;
  color: #000;
  text-decoration: none;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: url(../images/right.png);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 35px;
}
.nx_right a:hover {
  background-color: #828282;
  color: #FFF;
  text-decoration: none;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: url(../images/right2.png);
  background-repeat: no-repeat;
  background-position: right center;
}
/*--------------------------------
PREV NEXT
---------------------------------*/
#prev_next {
  width: 100%;
  margin: 36px 0 24px;
  padding: 0;
  display: table;
}
#prev_next #prev, #prev_next #next {
  width: 50%;
  padding: 30px 10px 10px;
  border-top: #000 1px solid;
  border-bottom: #000 1px solid;
  display: table-cell;
  position: relative;
  text-decoration: none;
}
#prev_next #next{
	text-align: right;
}
#prev_next #prev p, #prev_next #next p {
  font-size: 90%;
  line-height: 1.5;
    margin-top: 0.5rem;
    color: #000;
}
#prev_next #prev:hover, #prev_next #next:hover {
  background-color: #f7f7f5;
}
#prev_next #prev {
  border-right: #000 1px solid;
}
#prev_next #prev_title, #prev_next #next_title {
  font-size: 90%;
  top: -1em;
  position: absolute;
  border: 1px #000 solid;
  background: #fff;
  text-align: center;
  padding: 3px;
  color: #000;
    font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
#prev_next #next_title {
  right: 10px;
}
#prev_next #prev img, #prev_next #next img {
  margin: 0 auto;
    width: auto;
}
#prev_next #prev_no, #prev_next #next_no {
  width: 50%;
  height: 140px;
  padding: 0 10px;
  display: table-cell;
}
#prev_next #prev_no {
  border-right: #000 1px solid;
}
#prev_next_home {
  margin: 0 auto;
  background-color: #000;
  border: solid 9px #fff;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  box-shadow: 0 0 0 3px #000;
  -webkit-box-shadow: 0 0 0 3px #000;
  -moz-box-shadow: 0 0 0 3px #000;
  text-align: center;
}
#prev_next_home:hover {
opacity: 0.7;
}
#prev_next_home i {
  color: #FFF;
  margin: 10px auto;
  font-size: 60px;
}
@media screen and (min-width: 768px){
    #prev_next #prev, #prev_next #next{
        padding: 40px 10px 20px;
    }
}
/*media Queries PCサイズ
----------------------------------------------------*/
@media only screen and (min-width: 780px) {
  /*-- ここから --*/
  /*--------------------------------------
768px PREV NEXT
--------------------------------------*/
  #prev_next #prev, #prev_next #prev::before, #prev_next #prev::after, #prev_next #next, #prev_next #next::before, #prev_next #next::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  #prev_next #prev_title, #prev_next #next_title {
    padding: 3px 10px;
  }
  #prev_next #next_title {
    right: 10px;
  }
  #prev_next #prev img {
    float: left;
    margin-right: 10px
  }
  #prev_next #next img {
    float: right;
    margin-left: 10px;
  }
  /*-- ここまで --*/
}
/*************
/* 投稿ギャラリー
*************/
.wp-caption-text {
  font-size: 12px;
  color: #999999;
  text-align: center;
}
.gallery {
  margin: auto;
}
.gallery .gallery-item {
  float: left;
  margin-top: 10px;
  text-align: center;
  width: 25%;
  padding: 5px;
}
.gallery img {
  margin-bottom: 5px;
}
.gallery .gallery-caption {
  margin-left: 0;
  margin-bottom: 35px;
  padding-right: 20px;
  padding-left: 20px;
}
/*-----------------------------
wordpressのギャラリースマホ調整
------------------------------*/
@media screen and (max-width: 640px) {
  #gallery-1 {
    display: flex;
    flex-wrap: wrap;
  }
  .gallery-columns-3 .gallery-item, .gallery-columns-4 .gallery-item {
    float: none;
    width: 50% !important;
    margin: 0;
  }
}
/*******************************
/* youtube　gmapレスポンシブ対応
***************************/
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.ggmap iframe, .ggmap object, .ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*******************************
/* レスポンシブ改行
***************************/
@media screen and (min-width: 576px) {
  .br-pc {
    display: block;
  }
  .br-sp {
    display: none;
  }
}
@media screen and (max-width: 567px) {
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
}
@media screen and (min-width: 992px){
	.br_min992{
		display: block;
	}
}
@media screen and (max-width: 991px){
	.br_min992{
		display: none;
	}
}

/*****************************
/* form_customize
*****************************/
.form_intro{
	margin-bottom: 1.9rem;
	text-align: left;
}
.form_intro p{
	font-size: 0.928rem;
	letter-spacing: 0.05em;
	line-height: 2.1;
	margin-bottom: 0;
}
#form_customize input, #form_customize select, #form_customize textarea, #form_customize input[type="date"]{
    background-color: #fff;
	border: none;
    padding: 1.17rem 1rem;
	font-size: 1rem;
    margin: 0;
    width: 100%;
	line-height: 1.9;
	letter-spacing: 0.05em;
	outline: none;
	resize: none;
}
#form_customize input[type="text"], #form_customize input[type="email"], #form_customize input[type="tel"], #form_customize textarea, #form_customize select{
	color: #595757;
}
#form_customize input:focus, #form_customize select:focus, #form_customize textarea:focus{
	outline: none;
}
#form_customize .form_block{
	margin-bottom: 1.68rem;
}
#form_customize .form_block.mb0{
	margin-bottom: 0;
}
#form_customize .form_block p{
	font-size: 0.78rem;
	letter-spacing: 0.05em;
	margin-top: 0.07rem;
	margin-bottom: 0;
}
/* プレースホルダー */
#form_customize .wpcf7-form-control::placeholder{
	color: #b3b3b3;
	opacity: 1;
}
/* ラベル */
#form_customize .form_c_label{
	display: flex;
	align-items: center;
	font-size: 1rem;
	letter-spacing: 0.05em;
	margin-bottom: 0.97rem;
	line-height: 1.9;
}
/* 必須 */
.form_label_req{
	background-color: #e67800;
	color: #fff;
	font-size: 0.857rem;
	line-height: 1;
	letter-spacing: 0.05em;
	margin-right: 0.85rem;
	width: 47px;
	height: 22px;
	border-radius: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
}
/* 入力してください */
#form_customize .wpcf7-not-valid-tip{
	font-size: 0.88rem;
	color: #c31a00;
}
/* 個人情報 */
#form_customize .form_c_agree{
	border-bottom: none;
	margin-top: 1.5rem;
	margin-bottom: 2.033rem;
	text-align: center;
}
#form_customize .form_c_agree .form_check_box{
	margin-bottom: 0.86rem;
}
#form_customize .form_c_agree .form_check_box .wpcf7-list-item{
	width: 100%;
	text-align: center;
}
.f_note{
	font-size: 0.857rem;
	line-height: 1.6;
	letter-spacing: 0.05em;
	margin-bottom: 1rem;
	color: #333;
	text-align: center;
}
.f_note a{
	color: #333;
	transition: .3s;
}
.f_note a:hover{
	text-decoration: none;
	opacity: 0.7;
	transition: .3s;
}
/* 送信ボタン */
#form_customize .form_c_submit{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
	position: relative;
	text-align: center;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
#form_customize .form_c_submit input{
	width: 100%;
	max-width: 280px;
	height: 50px;
	font-size: 1rem;
	font-weight: 500;
	line-height: 50px;
	background-color: #e67800;
	color: #fff;
	border-radius: 70px;
	margin-bottom: 0;
	padding: 0;
	transition: .3s;
}
#form_customize .form_c_submit input:hover{
	text-decoration: none;
	opacity: 0.8;
	transition: .3s;
}
#form_customize .form_c_submit .wpcf7-spinner{
	position: absolute;
	margin: 0;
	top: 0;
	left: calc((50% + 100px) + 30px);
	transform: translateX(-50%);
}
@media screen and (min-width: 768px){
	.form_intro{
		margin-bottom: 2.49rem;
	}
	#form_customize .form_block{
		margin-bottom: 2.09rem;
	}
	/* 入力欄 */
	#form_customize input, #form_customize select, #form_customize textarea, #form_customize input[type="date"]{
		padding: 1.55rem 1.5rem;
	}
	/* 入力欄 */
	#form_customize .form_c_item{
		margin-top: 0;
		margin-left: auto;
		text-align: left;
	}
	/* 個人情報 */
	#form_customize .form_c_agree .form_check_box .wpcf7-form-control{
		justify-content: flex-start;
	}
	#form_customize .form_c_agree .form_check_box .wpcf7-list-item{
		margin-right: 0;
	}
	/* 送信ボタン */
	#form_customize .form_block.form_c_submit{
		width: 100%;
		margin-right: 0;
		margin-bottom: 0;
		padding-bottom: 0;
	}
	#form_customize .form_c_submit input{
		width: 360px;
		height: 60px;
		line-height: 60px;
	}
}
@media screen and (min-width: 992px){
	.form_intro{
		margin-bottom: 3.08rem;
	}
	#form_customize .form_block{
		margin-bottom: 2.5rem;
	}
	/* 送信ボタン */
	#form_customize .form_c_submit{
		padding-bottom: 0;
	}
}
@media screen and (min-width: 1200px){
	.form_intro{
		margin-bottom: 3.67rem;
	}
	#form_customize input, #form_customize select, #form_customize textarea, #form_customize input[type="date"]{
		padding: 1.25rem 1.75rem;
	}
	#form_customize .form_block{
		margin-bottom: 2.92rem;
	}
	#form_customize .form_block p{
		font-size: 0.8125rem;
		margin-top: 0.25rem;
	}
	/* ラベル */
	#form_customize .form_c_label{
		margin-bottom: 1.05rem;
	}
	/* 個人情報 */
	#form_customize .form_block.form_c_agree{
		margin-bottom: 3.55rem;
	}
	/* 必須 */
	.form_label_req{
		font-size: 0.875rem;
		width: 55px;
		height: 25px;
		margin-right: 0.812rem;
	}
	.f_note{
		font-size: 0.875rem;
	}
}



/* CUSTOM SELECTBOX */
#form_customize select{
	color: #b3b3b3;
	-webkit-appearance: none;
    appearance: none;
}
#form_customize select.selected{
	color: #333;
}


/* CUSTOM CHECKBOX */
#form_customize .form_check_box .wpcf7-form-control{
	display: flex;
	flex-wrap: wrap;
}
#form_customize .form_check_box .wpcf7-list-item{
	margin: 0;
	display: block;
	width: 100%;
}
#form_customize .form_check_box label{
	cursor: pointer;
	margin-bottom: 0;
}
#form_customize .form_check_box input{
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
#form_customize .form_check_box .wpcf7-list-item-label{
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 0;
	font-size: 1rem;
	color: #333;
	letter-spacing: 0.05em;
	line-height: 1.9;
}
#form_customize .form_check_box .wpcf7-list-item-label::before, #form_customize .form_check_box .wpcf7-list-item-label::after {
	content: "";
	border-radius: inherit;
	transition: .2s;
}
#form_customize .form_check_box .wpcf7-list-item-label::before{
	left: 0;
	display: block;
	width: 30px;
	height: 30px;
	margin-right: 10px;
	background-color: #fff;
	border: none;
}
#form_customize .form_check_box .wpcf7-list-item-label::after{
	position: absolute;
	top: 10px;
	left: 10px;
	width: 10px;
	height: 10px;
	background-color: #333;
	opacity: 0;
}
#form_customize .form_check_box input:checked ~ .wpcf7-list-item-label::after{
	opacity: 1;
}
@media screen and (min-width: 992px){
	#form_customize .form_check_box .wpcf7-form-control-wrap{
		width: 100%;
	}
}
@media screen and (min-width: 1200px){
	#form_customize .form_check_box .wpcf7-list-item-label::before{
		width: 35px;
		height: 35px;
	}
	#form_customize .form_check_box .wpcf7-list-item-label::after{
		top: 12px;
		left: 12px;
		width: 10px;
		height: 10px;
	}
}

/* CUSTOM RADIO */
#form_customize .form_check_box.radio .wpcf7-list-item-label::before{
	border-radius: 50%;
}
#form_customize .form_check_box.radio .wpcf7-list-item-label::after{
	border-radius: 50%;
}

/* 性別 */
#form_customize .form_check_box #sex .wpcf7-list-item{
	width: auto;
	margin-right: 23px;
}
@media screen and (min-width: 1200px){
	#form_customize .form_check_box #sex .wpcf7-list-item{
		margin: 7px 34px 7px 0;
	}
}
/* ご相談内容 */
@media screen and (min-width: 768px){
	#form_customize .form_check_box #soudan .wpcf7-list-item{
		width: auto;
		margin-right: 23px;
	}
}
@media screen and (min-width: 1200px){
	#form_customize .form_check_box #soudan .wpcf7-list-item{
		margin: 7px 34px 7px 0;
	}
}
/* 建設地 */
#form_customize .form_check_box #build .wpcf7-list-item{
	width: auto;
	margin-right: 23px;
}
@media screen and (min-width: 1200px){
	#form_customize .form_check_box #build .wpcf7-list-item{
		margin: 7px 34px 7px 0;
	}
}
/* 工事希望時期 */
#form_customize .form_check_box #const .wpcf7-list-item{
	width: 108px;
	margin-right: 23px;
}
@media screen and (min-width: 768px){
	#form_customize .form_check_box #const .wpcf7-list-item{
		width: auto;
	}
}
@media screen and (min-width: 1200px){
	#form_customize .form_check_box #const .wpcf7-list-item{
		margin: 7px 34px 7px 0;
	}
}
/* アイムホームを知ったきっかけ */
@media screen and (min-width: 768px){
	#form_customize .form_check_box #imhome .wpcf7-list-item{
		width: auto;
		margin-right: 23px;
	}
}
@media screen and (min-width: 1200px){
	#form_customize .form_check_box #imhome .wpcf7-list-item{
		margin: 7px 34px 7px 0;
	}
}




/* 来場希望日時 */
#form_customize .datetime{
	display: flex;
	justify-content: space-between;
}
#form_customize .datetime .select_item{
	width: calc((100% - 7px)/2);
}
#form_customize .datetime select{
    padding: 1.17rem 1rem;
	-webkit-padding-start: 1.17rem 1rem;
	padding-start: 1.17rem 1rem;
	font-size: 1rem;
	-webkit-appearance: none;
    appearance: none;
	color: #d1d1d1;
}
#form_customize .datetime select.selected{
	color: #595757;
}
@media screen and (min-width: 768px){
	#form_customize .datetime .select_item{
		width: calc((100% - 15px) / 2);
	}
	#form_customize .datetime select{
		padding: 1.55rem 1.5rem;
	}
}
@media screen and (min-width: 992px){
	#form_customize .datetime .select_item{
		width: calc((100% - 20px)/2);
	}
	#form_customize .datetime select{
		padding: 1.55rem 1.5rem;
	}
}
@media screen and (min-width: 1200px){
	#form_customize .datetime select{
		padding: 1.25rem 1.75rem;
	}
}

/* 住所 */
#form_customize .add .form-input__small300{
	width: 50%;
	margin-bottom: 7px;
}
#form_customize #autozip{
	display: none;
} 
@media screen and (min-width: 1200px){
	#form_customize .add .form-input__small300{
		margin-bottom: 14px;
	}
}

/* 2column */
.form_column:first-child{
	margin-top: 0;
}
.form_column + .form_column{
	margin-top: 7px;
}
@media screen and (min-width: 768px){
	.form_column2{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.form_column{
		width: calc((100% - 15px)/2);
	}
	.form_column + .form_column{
		margin-top: 0;
	}
}
@media screen and (min-width: 992px){
	.form_column{
		width: calc((100% - 20px)/2);
	}
}

/* ============================ */
/* POST INDEX */
.c-post-index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
	padding-top: 5.33rem;
	margin-top: 4.03rem;
	border-top: 1px solid rgba(170,170,170,0.5);
}
.c-post-index__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  font-weight: 400;
  line-height: 1;
	transition: .3s;
	position: relative;
}
.c-post-index__link img {
	display: block;
	width: 18px;
	opacity: 1;
	transition: .3s;
}
.c-post-index__link.link-prev img {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
	width: 18px;
}
.c-post-index__link.is-disable {
	opacity: 0.3;
	pointer-events: none;
}
.c-post-index__link:hover{
	text-decoration: none;
	opacity: 0.8;
	transition: .3s;
}
.c-post-index__text {
	line-height: 1;
	text-align: center;
	color: #000;
	font-size: 1.1rem;
	text-decoration-line: none;
	transition: .3s;
}
.c-post-index__text:hover{
	opacity: 0.8;
	text-decoration-line: none;
	transition: .3s;
}
.c-post-index--tab {
  display: none;
}
@media screen and (min-width: 1200px){
	.c-post-index{
		margin-top: 5.16rem;
	}
	.c-post-index__text{
		font-size: 1rem;
	}
	.c-post-index__link{
		font-size: 1rem;
	}
}
@media screen and (max-width: 767px) {
  .c-post-index__link img {
    width: 20px;
  }
  .c-post-index__link.link-prev img {
	  width: 20px;
  }
}
/**************************
/* 404
**************************/
@media screen and (min-width: 768px){
	.block404{
		text-align: center;
	}
}

/**************************
/* お知らせ　top・archive 共通
**************************/
.news_block{
	margin-bottom: 0;
}
.news_block li{
	list-style: none;
	position: relative;
}
.news_block li::before, .news_block li::after{
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: rgba(190,190,190,0.5);
	left: 0;
}
.news_block li:first-child::before{
	content: "";	
	top: 0;
}
.news_block li::after{
	content: "";
	bottom: 0;
}
.news_block li a{
	display: block;
	position: relative;
	padding: 1.99rem 0;
}
.news_block li a::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(255,255,255,0.5);
	transform: scale(0,1);
	transform-origin: left;
	z-index: -1;
	transition: transform .4s;
}
.news_block li a:hover{
	text-decoration: none;	
}
.news_block li a:hover::after{
	transform: scale(1);
}
.news_dc{
	display: flex;
	align-items: center;
}
.news_dc .date{
	color: #a0a0a0;
	font-size: 1rem;
	letter-spacing: 0.02em;
}
.news_dc .cat{
	background-color: #3c3c3c;
	color: #fff;
	font-size: 0.769rem;
	width: 92px;
	height: 23px;
	border-radius: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 10px;
}
.news_tit{
	color: #000;
	line-height: 1.75;
	letter-spacing: 0.05em;
	margin-bottom: 0;
}
@media screen and (min-width: 1200px){
	.news_dc{
		margin-bottom: 0.26rem;
	}
	.news_dc .cat{
		width: 110px;
		height: 28px;
		font-size: 0.8rem;
		margin-left: 13px;
	}
	.news_block li a{
		padding: 2.19rem 0;
	}
}
/* archive */
.archive_block{
	padding: 4.66rem 0;
}
@media screen and (min-width: 1200px){
	.archive_block{
		padding: 10rem 0;
	}
}
/* 詳細ページ */
.container-single .news_dc{
	margin-bottom: 0.838rem;
}
.info_eye{
	text-align: center;
	margin-bottom: 2.47rem;
}
@media screen and (min-width: 1200px){
	.container-single .news_dc{
		margin-bottom: 1.2rem;
	}
	.info_eye{
		margin-bottom: 3.4rem;
	}
}

/*******************************
/* 管理物件情報
*******************************/
/***** 一覧ページ *****/
.bukken_block{
	margin-bottom: 0;
}
.bukken_block li{
	list-style: none;
	background-color: #fff;
	margin-top: 20px;
}
.bukken_block li:first-child{
	margin-top: 0;
}
.bukken_block li a{
	display: block;
}
.bukken_block li a:hover{
	text-decoration: none;
}
.ab_eye{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.704;
}
#main2 .ab_eye img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ab_txtArea{
	padding: 2rem 2rem 2.4rem;
}
.ab_tit{
	color: #000;
	font-size: 1.538rem;
	line-height: 1.5;
	margin-bottom: 0.8rem;
}
.ab_txtArea dl{
	display: flex;
	flex-wrap: wrap;
	color: #000;
}
.ab_txtArea dl dt{
	width: 5rem;
	position: relative;
	font-weight: 500;
	margin-bottom: 0;
}
.ab_txtArea dl dt::after{
	content: "｜";
	position: absolute;
	top: 0;
	right: 0;
}
.ab_txtArea dl dd{
	width: calc(100% - 5rem);
	padding-left: 1rem;
	margin-bottom: 0;
}
.ab_txtArea dl dt.ab_price{
	line-height: 3;
}
.ab_txtArea dl dd.ab_price{
	font-size: 1.4rem;
}
@media screen and (min-width: 768px){
	.bukken_block{
		display: flex;
		flex-wrap: wrap;
	}
	.bukken_block li{
		width: calc((100% - 30px)/2);
		margin-top: 30px;
		margin-right: 30px;
	}
	.bukken_block li:nth-child(2){
		margin-top: 0;
	}
	.bukken_block li:nth-child(2n){
		margin-right: 0;
	}
}
@media screen and (min-width: 992px){
	.bukken_block li{
		width: calc((100% - 60px)/3);
	}
	.bukken_block li:nth-child(3){
		margin-top: 0;
	}
	.bukken_block li:nth-child(2n){
		margin-right: 30px;
	}
	.bukken_block li:nth-child(3n){
		margin-right: 0;
	}
}
@media screen and (min-width: 1600px){
	.bukken_block li{
		width: calc((100% - 100px)/3);
		margin-top: 50px;
		margin-right: 50px;
	}
	.bukken_block li:nth-child(2n){
		margin-right: 50px;
	}
	.bukken_block li:nth-child(3n){
		margin-right: 0;
	}
	.ab_txtArea{
		padding: 2.8rem 2.8rem 3.2rem;
	}
}

/***** 詳細ページ *****/
.bukken_single{
	padding: 4.66rem 0;
}
.container-single{
	width: 84.61%;
	margin-right: auto;
	margin-left: auto;
}
.bukken_cat > span{
	background-color: #e67800;
	color: #fff;
	text-align: center;
	display: inline-block;
	padding: 0.2rem 1.3rem;
	font-size: 0.84rem;
}
.container-single h1{
	font-size: 1.92rem;
	margin-bottom: 2rem;
}
.single_bukken_gallery{
	margin-bottom: 2rem;
}
.single_bukken_gallery img{
	object-fit: contain;
	aspect-ratio: 1 / 0.675;
}
.single-bukken-slide-main{
	position: relative;
	margin-bottom: 1rem;
}
.sesmi-click-icon{
	position: absolute;
	bottom: 0;
	right: 0;
}
.sesmi-click-icon > div{
	width: 4em;
	height: 4em;
	position: relative;
	background-color: #fff;
}
.sesmi-click-icon > div::before, .sesmi-click-icon > div::after{
	content: " ";
	display: block;
	position: absolute;
}
.sesmi-click-icon > div::before{
	top: 1em;
	left: 1.1em;
	border: 4px #828282 solid;
	width: 1.5em;
	height: 1.5em;
	border-radius: 50%;
}
.sesmi-click-icon > div::after{
	top: 2em;
	left: 2.4em;
	width: 4px;
	height: 1em;
	border-radius: 0.5rem;
	transform: rotate(-45deg);
	background-color: #828282;
}
.single-bukken-slide-sub{
	margin-right: 0.5rem;
	margin-left: -0.5rem;
}
.single-bukken-slide-sub-item{
	padding-right: 0.5rem;
    padding-left: 0.5rem;
}
.single-bukken-discription{
	padding: 2rem 2.4rem;
	margin-bottom: 4rem;
	background-color: #fff;
}
.single-bukken-printing a{
	border: 1px #828282 solid;
	background-color: #828282;
	color: #fff;
	display: block;
	text-decoration: none;
	padding-top: 1rem;
	padding-bottom: 1rem;
	border-radius: 0.5rem;
	position: relative;
	transition: .3s;
}
.bukken_single .vm{
	width: 100%;
	max-width: 340px;
}
@media screen and (min-width: 576px){
	.single-bukken-discription{
		display: flex;
		align-items: flex-end;
	}
	.single-bukken-discription-main{
		flex: 1;
	}
}
@media screen and (min-width: 768px){
	.single_bukken_gallery{
		display: flex;
	}
	.single-bukken-slide-main{
		width: 80.1%;
		margin-bottom: 0;
	}
	.single-bukken-slide-sub{
		width: 19.9%;
		padding-left: 1rem;
		margin-top: -0.5rem;
		margin-bottom: -0.5rem;
		margin-right: 0;
		margin-left: 0;
	}
	.single-bukken-slide-sub-item{
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		padding-right: 0;
		padding-left: 0;
	}
	.single-bukken-printing{
		width: 100%;
		max-width: 14rem;
		text-align: center;
	}
}
@media screen and (min-width: 1200px){
	.bukken_single{
		padding: 10rem 0;
	}
	.container-single{
		width: 55.5%;
	}
	.container-single h1{
		font-size: 2.33rem;
		margin-bottom: 2.93rem;
	}
	.single-bukken-discription{
		padding: 4rem 5rem;
		margin-bottom: 8rem;
	}
	.single-bukken-printing a{
		bottom: -2.4rem;
		right: -3.2rem;
	}
	.bukken_single .vm{
		max-width: 400px;
	}
}
/* 概要 */
.bukken_gaiyo{
	margin-top: 3.61rem;
}
.container-single2{
	width: 84.61%;
	margin-right: auto;
	margin-left: auto;
}
.bukken-table th, .bukken-table td{
	padding: 1rem 1.3rem;
	font-size: 0.92rem;
	line-height: 1.6;
	border: 1px rgba(190,190,190,0.5) solid;
}
.bukken-table th{
	width: 10rem;
	font-weight: 500;
	background-color: #f7f5f2;
}
@media screen and (min-width: 768px){
	.bukken-table{
		table-layout: fixed;
	}
}
@media screen and (min-width: 1200px){
	.bukken_gaiyo{
		margin-top: 8.9rem;
	}
	.container-single2{
		width: 72.2%;
	}
	.bukken-table th, .bukken-table td{
		font-size: 0.93rem;
	}
}
@media screen and (max-width: 767px){
	.bukken-table tr{
		display: flex;
		flex-wrap: wrap;
	}
	.bukken-table th{
		display: block;
	}
	.bukken-table td{
		width: calc(100% - 10rem);
		display: flex;
		align-items: center;
		border-left: none;
	}
	.bukken-table tr:not(:last-of-type) th, .bukken-table tr:last-of-type th:not(:last-of-type){
		border-bottom: none;
	}
	.bukken-table tr:not(:last-of-type) td, .bukken-table tr:last-of-type td:not(:last-of-type){
		border-bottom: none;
	}
}
/* 間取り */
.bukken_floor{
	width: 100%;
	height: auto;
	max-height: 700px;
	text-align: center;
}
.bukken_floor a{
	display: inline-block;
	width: 100%;
}
.bukken_floor img{
	width: auto;
	max-height: 700px;
	height: auto;
	object-fit: contain;
	object-position: center;
	display: block;
	margin: 0 auto;
}

/* 設備 */
.bukken_equipment{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0;
}
.bukken_equipment li{
	width: calc((100% - 20px)/2);
	margin-top: 1.72rem;
	margin-right: 20px;
	list-style: none;
}
.bukken_equipment li:first-child, .bukken_equipment li:nth-child(2){
	margin-top: 0;
}
.bukken_equipment li:nth-child(2n){
	margin-right: 0;
}
.bukken_equipment li:last-child{
	margin-right: 0!important;
}
.ec_img{
	aspect-ratio: 1 / 1;
	margin-bottom: 0.75rem;
}
.ec_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.eq-description{
	color: #a0a0a0;
	font-size: 0.84rem;
	line-height: 1.6;
	margin-bottom: 0;
}
@media screen and (min-width: 768px){
	.bukken_equipment li{
		width: calc((100% - 60px)/3);
		margin-top: 2.87rem;
		margin-right: 30px;
	}
	.bukken_equipment li:nth-child(3){
		margin-top: 0;
	}
	.bukken_equipment li:nth-child(2n){
		margin-right: 30px;
	}
	.bukken_equipment li:nth-child(3n){
		margin-right: 0;
	}
	.ec_img{
		margin-bottom: 1.13rem;
	}
}
@media screen and (min-width: 992px){
	.bukken_equipment li{
		width: calc((100% - 90px)/4);
	}
	.bukken_equipment li:nth-child(4){
		margin-top: 0;
	}
	.bukken_equipment li:nth-child(3n){
		margin-right: 30px;
	}
	.bukken_equipment li:nth-child(4n){
		margin-right: 0;
	}
}
@media screen and (min-width: 1200px){
	.bukken_equipment li{
		margin-top: 3.13rem;
	}
	.ec_img{
		margin-bottom: 1.36rem;
	}
	.eq-description{
		font-size: 0.86rem;
	}
}
@media screen and (min-width: 1400px){
	.bukken_equipment li{
		width: calc((100% - 150px)/4);
		margin-top: 3.8rem;
		margin-right: 50px;
	}
	.bukken_equipment li:nth-child(2n){
		margin-right: 50px;
	}
	.bukken_equipment li:nth-child(3n){
		margin-right: 50px;
	}
	.bukken_equipment li:nth-child(4n){
		margin-right: 0;
	}
}
@media screen and (min-width: 1600px){
	.bukken_equipment li{
		width: calc((100% - 200px)/5);
		margin-right: 50px;
	}
	.bukken_equipment li:nth-child(5){
		margin-top: 0;
	}
	.bukken_equipment li:nth-child(2n){
		margin-right: 50px;
	}
	.bukken_equipment li:nth-child(3n){
		margin-right: 50px;
	}
	.bukken_equipment li:nth-child(4n){
		margin-right: 50px;
	}
	.bukken_equipment li:nth-child(5n){
		margin-right: 0;
	}
}
/* お問い合わせ */
.bukken_cf{
	margin-top: 5.18rem;
	padding: 4.61rem 0 7.69rem;
}
.bukken_cf .container-single2{
	max-width: 800px;
}
.back_btn{
	position: relative;
	margin-top: 4.61rem;
	padding-top: 4.61rem;
}
.back_btn::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: rgba(190,190,190,0.5);
	top: 0;
	left: 0;
}
.back_btn a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #000;
	color: #fff;
	border-radius: 60px;
	font-weight: 400;
	letter-spacing: 0.02em;
	font-size: 1rem;
	width: 100%;
	max-width: 340px;
	height: 52px;
	transition: .3s;
}
.back_btn a:hover{
	opacity: 0.8;
	text-decoration: none;
}
@media screen and (min-width: 1200px){
	.bukken_cf{
		margin-top: 9.8rem;
		padding: 9rem 0 13.33rem;
	}
	.back_btn{
		margin-top: 8rem;
		padding-top: 8rem;
	}
	.back_btn a{
		max-width: 400px;
		height: 60px;
	}
}


/**************************
/* TOP・下層　共通
**************************/

/* こんなものが洗えます */
.wash_block{
	position: relative;
	text-align: center;
	margin-top: 3.07rem;
}
.wash_tit{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	color: #e67800;
	font-size: 1.38rem;
	width: 260px;
	height: 50px;
	border-radius: 50px;
	margin-bottom: 0;
}
.wash_block .inner{
	position: relative;
	margin-top: -25px;
	padding-top: calc(25px + 38px);
	padding-bottom: 5rem;
}
.wash_block .inner::before{
	position: absolute;
	content: "";
	background-color: #f7f5f2;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 10px;
	z-index: -1;
}
.wash_item{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 84%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 0;
}
.wash_item li{
	list-style: none;
	width: calc(100% / 2);
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 1.42rem;
}
.wash_item li:first-child, .wash_item li:nth-child(2){
	margin-top: 0;
}
.wash_item li img{
	display: block;
	width: 100%;
	max-width: 100px;
	margin-bottom: 0.938rem;
}
@media screen and (min-width: 768px){
	.wash_item li{
		width: calc(100% / 5);
	}
	.wash_item li:nth-child(3), .wash_item li:nth-child(4), .wash_item li:nth-child(5){
		margin-top: 0;
	}
}
@media screen and (min-width: 992px){
}
@media screen and (min-width: 1200px){
	.wash_block{
		margin-top: 3.66rem;
	}
	.wash_tit{
		font-size: 1.66rem;
		width: 400px;
		height: 68px;
	}
	.wash_block .inner{
		margin-top: -34px;
		padding-top: calc(34px + 60px);
		padding-bottom: 6rem;
	}
	.wash_block .inner::before{
		border-radius: 20px;
	}
	.wash_item li{
		margin-top: 2.63rem;
	}
	.wash_item li img{
		max-width: 130px;
		margin-bottom: 2.2rem;
	}
}
@media screen and (min-width: 1400px){
	.wash_item{
		width: 75%;
	}
}
@media screen and (min-width: 1700px){
	.wash_item{
		width: 60%;
	}
}