@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

.gallery {
	font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    background: #fff;
}

.gallery_block {
	max-width: 1200px;
	margin: 40px auto 0 auto;
	padding: 0 10px;
	-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
	.gallery_block {
		padding: 0 0px;
	}
	.gallery_block_list {
		padding: 0;
		margin: 30px auto 0 auto;
	}
}

.gallery .title {
	width: 100%;
	text-align: left;
	font-size: 26px;
	margin-top: 120px;
	font-weight: 700;
	line-height: 0.6em;
}
.gallery .title span {
	font-weight: normal;
	font-size: 12px;
}
@media only screen and (max-width: 767px) {
	.gallery .title {
		width: 24%;
		font-size: 20px;
		margin-top: 40px;
		font-weight: 500;
	}
	.gallery .title span {
		font-size: 10px;
	}
}


.gallery .search_box {
	display: flex;
	align-items: center;
	overflow: hidden;
	border: 1px solid #777777;
	border-radius: 3px;
	background: #ebebeb;
	width: 300px;
	float: right;
	margin-top:　4px;
}
@media only screen and (max-width: 767px) {
	.gallery .search_box {
		width: 60%;
		margin-top: -40px;
	}
}
.gallery .search_box input {
	width: 100%;
	height: 45px;
	padding: 5px 15px 5px 0;
	border: none;
	box-sizing: border-box;
	font-size: 1em;
	outline: none;
}
.gallery .search_box input::placeholder {
	color: #777777;
	font-size: 14px;
}
.gallery .search_box button {
	display: flex;
	float: left;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	border: none;
	background-color: transparent;
	cursor: pointer;
}
.gallery .search_box button::before {
	width: 24px;
	height: 24px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.031 16.6168L22.3137 20.8995L20.8995 22.3137L16.6168 18.031C15.0769 19.263 13.124 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20 13.124 19.263 15.0769 18.031 16.6168ZM16.0247 15.8748C17.2475 14.6146 18 12.8956 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18C12.8956 18 14.6146 17.2475 15.8748 16.0247L16.0247 15.8748Z' fill='%23777777'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	content: '';
}

/*スマホモーダルウインドウ*/
.modal-1__wrap {
	display: inline-block;
	float: right;
	margin-top: -34px;
}
@media only screen and (min-width: 768px) {
	.modal-1__wrap {
		display: none;
	}
}
.modal-1__wrap input {
	display: none;
}
.modal-1__open-label,
.modal-1__close-label {
	cursor: pointer;
}
.modal-1__open-label {
	color: #4f96f6;
	font-size: .95em;
}
.modal-1__open-label:hover {
	text-decoration: underline;
	cursor: pointer;
	color: #c7511f;
}
.modal-1 {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: none;
}
.modal-1__open-input:checked + label + input + .modal-1 {
	display: block;
	animation: modal-1-animation .6s;
}
.modal-1__content-wrap {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 650px;
	background-color: #fefefe;
	z-index: 2;
	border-radius: 5px;
}
.modal-1__close-label {
	background-color: #777;
	color: #fff;
	border: 2px solid #fff;
	border-radius: 20px;
	width: 36px;
	height: 36px;
	line-height: 1.5;
	text-align: center;
	display: table-cell;
	position: fixed;
	top: -15px;
	right: -2%;
	z-index: 99999;
	font-size: 1.4em;
}
.modal-1__content {
	max-height: 50vh;
	overflow-y: auto;
	padding: 39px 45px 40px;
}
.modal-1__background {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .45);
	z-index: 1;
}
@keyframes modal-1-animation {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@media only screen and (max-width: 520px) {
	.modal-1__open-label {
		/*max-width: 90%;
		padding: .94em 2.1em .94em 2.6em;*/
	}

	.modal-1__close-label {
		top: -17px;
		right: -4%;
	}

	.modal-1__content-wrap {
		width: 90vw;
	}

	.modal-1__content {
		padding: 33px 21px 35px;
		max-width: 100%;
	}
}





.gallery_list {
	width: 50%;
	float: left;
}
@media only screen and (max-width: 767px) {
	.gallery_list {
		display: none;
	}
}
.gallery_list .img {
	width: -webkit-calc(100% / 3);
	width: calc(100% / 3);
	margin: 0;
	padding: 0.5px;
	overflow: hidden;
	float: left;
	-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;
}
.gallery_list .img_x {
	width: 33.333333%;
	margin: 0;
	padding: 0.5px;
	overflow: hidden;
	float: left;
	-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;
}
.gallery_list .wide {
	width: -webkit-calc(100% / 3 * 2);
	width: calc(100% / 3 * 2);
}
.img_s {
	width: -webkit-calc(100% / 6);
	width: calc(100% / 6);
	margin: 0;
	padding: 0.5px;
	overflow: hidden;
	float: left;
	-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
	.img_s {
		display: none;
	}
	.img_s_tags {
		display: block;
		width: -webkit-calc(100% / 4);
		width: calc(100% / 4);
	}
}
@media only screen and (max-width: 640px) {
	.img_s_tags {
		width: -webkit-calc(100% / 3);
		width: calc(100% / 3);
	}
}
@media only screen and (max-width: 460px) {
	.gallery_list .img {
		width: 50%;
	}
	.gallery_list .img_x {
		width: 50%;
	}
	.gallery_list .wide {
		width: 50%;
	}
	.img_s {
		width: 50%;
	}
}


.img_r .img {
	float: right;
}

.gallery_list .img figure {
	position: relative;
	overflow: hidden;
	padding-top: 100%;
}
.gallery_list .img figure img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 6s ease;
	-webkit-transition: 0.3s ease-in-out;-moz-transition: 0.3s ease-in-out;-o-transition: 0.3s ease-in-out;transition: 0.3s ease-in-out;
}
.gallery_list .img figure img:hover {
	opacity: 0.6;filter: alpha(opacity=60);
}


.gallery_list .img_x figure {
	position: relative;
	overflow: hidden;
	padding-top: 100%;
}
.gallery_list .img_x figure img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 6s ease;
	-webkit-transition: 0.3s ease-in-out;-moz-transition: 0.3s ease-in-out;-o-transition: 0.3s ease-in-out;transition: 0.3s ease-in-out;
}
.gallery_list .img_x figure img:hover {
	opacity: 0.6;filter: alpha(opacity=60);
}


.img_s figure {
	position: relative;
	overflow: hidden;
	padding-top: 100%;
}
.img_s figure img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 6s ease;
	-webkit-transition: 0.3s ease-in-out;-moz-transition: 0.3s ease-in-out;-o-transition: 0.3s ease-in-out;transition: 0.3s ease-in-out;
}
.img_s figure img:hover {
	opacity: 0.6;filter: alpha(opacity=60);
}



.gallery_list .img figure .gallery_top {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: 0.3s ease-in-out;-moz-transition: 0.3s ease-in-out;-o-transition: 0.3s ease-in-out;transition: 0.3s ease-in-out;
}
.gallery_list .img figure .gallery_top:hover {
	opacity: 1;
	background: rgba(000,000,000, 0.4);
}

.gallery_list .img_x figure .gallery_top {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: 0.3s ease-in-out;-moz-transition: 0.3s ease-in-out;-o-transition: 0.3s ease-in-out;transition: 0.3s ease-in-out;
}
.gallery_list .img_x figure .gallery_top:hover {
	opacity: 1;
	background: rgba(000,000,000, 0.4);
}

.img_s figure .gallery_top {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: 0.3s ease-in-out;-moz-transition: 0.3s ease-in-out;-o-transition: 0.3s ease-in-out;transition: 0.3s ease-in-out;
}
.img_s figure .gallery_top:hover {
	opacity: 1;
	background: rgba(000,000,000, 0.4);
}

.gallery_list .img figure .gallery_title {
	position: absolute;
	top: 10px;
	left: 10px;
	color: #fff;
	line-height: 1.2em;
}
.gallery_list .img figure .gallery_title .gallery_title_l {
	width: 50px;
	padding-top: 50px;
	border-radius: 50%;
	float: left;
}
.gallery_list .img figure .gallery_title .gallery_title_r {
	float: left;
	padding-left: 6px;
}

.gallery_list .img figure .gallery_title .gallery_shop {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.05em;
	margin-top: 4px;
}
.gallery_list .img figure .gallery_title .gallery_client {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.05em;
}
.gallery_list .img figure .gallery_title .gallery_client span {
	font-size: 22px;
	font-weight: 700;
}
.gallery_list .img figure .gallery_details {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 10px;
	line-height: 1.1em;
	-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;
}

.gallery_list .img figure .gallery_charge {
	color: #fff;
	text-align: right;
}
.gallery_list .img figure .gallery_charge .charge_img {
	width: 50px;
	padding-top: 50px;
	border-radius: 50%;
	float: right;
}
.gallery_list .img figure .gallery_charge .charge_name {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.05em;
    margin-top: 6px;
}
.gallery_list .img figure .gallery_charge .content {
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.05em;
}
.gallery_list .img figure .gallery_tag {
	position: absolute;
	bottom: 10px;
	left: 10px;
	color: #fff;
	font-size: 11px;
	float: left;
	text-align: left;
	width: 60%;
}
.gallery_list .img_x figure .gallery_tag {
	position: absolute;
	bottom: 10px;
	left: 10px;
	color: #fff;
	font-size: 11px;
	float: left;
	text-align: left;
	width: 60%;
}
.img_s figure .gallery_tag {
	position: absolute;
	bottom: 10px;
	left: 10px;
	color: #fff;
	font-size: 11px;
	float: left;
	text-align: left;
	width: 90%;
}
@media only screen and (max-width: 900px) {
	.gallery_list .img figure .gallery_tag {
		width: 50%;
	}
	.gallery_list .img_x figure .gallery_tag {
		/*width: 50%;*/
	}
}
.gallery_list .img figure .gallery_tag_w {
	width: 90%;
}
.gallery_tag_p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gallery_list_sp {
	width: 100%;
}
@media only screen and (min-width: 768px) {
	.gallery_list_sp {
		display: none;
	}
}
.gallery_list_sp .img {
	width: -webkit-calc(100% / 3);
	width: calc(100% / 3);
	margin: 0;
	padding-bottom: calc(100% / 2 / 2);
	overflow: hidden;
	float: left;
	outline: 1px solid rgb(255, 255, 255);
	outline-offset: -1px;
	-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;
}
.gallery_list_sp .wide {
	width: -webkit-calc(100% / 3 * 2);
	width: calc(100% / 3 * 2);
	padding: 0 0 50% 0;
	-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;

}

.gallery_list_sp .wide_r {
	float: right;
}

.gallery_list_sp .img figure .gallery_tag {
	position: absolute;
	bottom: 10px;
	left: 10px;
	color: #fff;
	font-size: 11px;
	float: left;
	text-align: left;
}


.title_sub {
	max-width: 900px;
	margin: auto;
	font-size: 28px;
	border-bottom: 2px solid #666;
	padding: 10px 0 15px 10px;
	-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;
}
.title_sub span {
	font-size: 24px;
}
@media only screen and (max-width: 640px) {
	.title_sub {
		font-size: 22px;
	}
	.title_sub span {
		font-size: 18px;
	}
}
.title_sub_block {
	margin-top: 20px;
	margin-bottom: 40px;
	width: 100%;
	padding: 10px 0 15px 10px;
	text-align: left;
	-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;
}
@media only screen and (max-width: 640px) {
	.title_sub_block {
		margin-top: 10px;
		margin-bottom: 20px;
	}
}
.title_sub_block li {
	float: left;
}
.title_sub_block li a:hover {
	color: #d30015;
	text-decoration: underline;
}

.title_sub_block3 {
	width: 100%;
}
.title_sub_block3 li {
	width: -webkit-calc(100% / 3);
	width: calc(100% / 3);
	border-bottom: 1px solid #afafaf;
	text-align: left;
}


.tags_hush_block {
	float: left;
	border: 1px solid #ccc;
	font-size: 14px;
	padding: 6px 14px;
	margin: 10px 4px;
	border-radius: 30px;-webkit-border-radius: 30px;-moz-border-radius: 30px;
}




/*詳細ページ*/
.details {
	max-width: 900px;
	margin: 48px auto 0 auto;
}
.details .details_left {
	float: left;
	width: 50%;
}
.details .details_right {
	float: right;
	width: 50%;
	background: #e8d0ab;
	padding: 90px 30px 30px 30px;
	-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
	.details .details_left {
		width: 100%;
		padding: 0 10px;
		-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;
	}
	.details .details_right {
		width: 100%;
		background: #fff;
		padding: 30px 0px 30px 0px;
	}
	.details .details_right_sp {
		width: 100%;
		padding: 0 10px;
		-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;
	}
}
.details .title_sub {
	font-size: 20px;
	border-bottom: none;
	padding: 30px 0 10px 0px;
}
.details .title_sub span {
	font-size: 16px;
}
@media only screen and (max-width: 640px) {
	.details .title_sub {
		font-size: 18px;
	}
	.details title_sub span {
		font-size: 14px;
	}
}
.details .title_sub_block {
	margin-top: 0px;
	margin-bottom: 20px;
	width: 100%;
	padding: 0;
	text-align: center;
	line-height: 1.2em;
	-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;
}
.details .title_sub_block li {
	padding: 0 5px;
	margin: 0;
}
.details .title_sub_block li a {
	font-size: 12px;
}

.details .title_sub_block {
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
}

.title_sub_block .exterior_left {
	width: 50%;
	display: inline-block;
}
.title_sub_block .exterior_right {
	width: 50%;
	display: inline-block;
}

.details .details_right {
}
.details .details_right .gallery_title_box {
	padding: 0 0 0 10%;
}
@media only screen and (max-width: 767px) {
	.details .details_right .gallery_title_box {
		padding: 0;
	}
}

.gallery_title_box .gallery_title {
	line-height: 1.2em;
}
.gallery_title_box .gallery_title .gallery_title_l {
	width: 50px;
	padding-top: 50px;
	border-radius: 50%;
	float: left;
}
.gallery_title_box .gallery_title .gallery_title_r {
	float: left;
	padding-left: 10px;
}

.gallery_title_box .gallery_title .gallery_shop {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.05em;
	margin-top: 4px;
}
.gallery_title_box .gallery_title .gallery_client {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.05em;
}
.gallery_title_box .gallery_title .gallery_client span {
	font-size: 22px;
	font-weight: 700;
}

.pg_detaild {
	margin: 50px 0 0 0;
	font-size: 14px;
	line-height: 1.4em;
	text-align: justify;text-justify: inter-ideograph;
}
@media only screen and (max-width: 767px) {
	.pg_detaild {
		margin: 20px 0 0 0;
	}
}
.pg_tags_jp2 {
	font-size: 12px;
}




.details .gallery_charge {
	text-align: center;
	margin: 40px 0 0 0;
}
.details .gallery_charge .charge_img {
	width: 90px;
	padding-top: 90px;
	border-radius: 50%;
	margin: 0 auto 15px auto;
	/*float: right;*/
}
.details .gallery_charge .charge_name {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6em;
	letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
	.details .gallery_charge {
		float: right;
		text-align: right;
	}
	.details .gallery_charge .charge_img {
		float: right;
		margin-left: 18px;
	}
	.gallery_charge_r {
		float: right;
	}
	.details .gallery_charge .charge_name {
		font-size: 18px;
	}
	.details .gallery_charge .charge_name01 {
		font-size: 18px;
		margin-top: 18px;
	}
}

.line {
	border-bottom: 1px solid #333;
	width: 100%;
	margin: 80px 0 20px 0;
}
@media only screen and (max-width: 767px) {
    .line {
        margin: 40px 0 20px 0;
    }
}

/*詳細ページ画像*/
.details .img_pc {
	width: 100%;
	padding-top: 75%;
	-webkit-transition: 0.3s ease-in-out;-moz-transition: 0.3s ease-in-out;-o-transition: 0.3s ease-in-out;transition: 0.3s ease-in-out;
}
.details .img_pc:hover {
	opacity: 0.6;filter: alpha(opacity=60);
}
@media only screen and (max-width: 767px) {
	.details .img_pc {display: none;}
}

/*詳細ページ ビフォーアフター*/
.details .before_afte {
	width: 100%;
	margin: 10px 0 0 0;
	background: url(../pg_img/before_after.svg) no-repeat center center;
}
.details .before_afte_l {
	float: left;
	width: 47%;
	padding-top: 30%;
	-webkit-transition: 0.3s ease-in-out;-moz-transition: 0.3s ease-in-out;-o-transition: 0.3s ease-in-out;transition: 0.3s ease-in-out;
}
.details .before_afte_l:hover {
	opacity: 0.6;filter: alpha(opacity=60);
}
.details .before_afte_r {
	float: right;
	width: 47%;
	padding-top: 30%;
	-webkit-transition: 0.3s ease-in-out;-moz-transition: 0.3s ease-in-out;-o-transition: 0.3s ease-in-out;transition: 0.3s ease-in-out;
}
.details .before_afte_r:hover {
	opacity: 0.6;filter: alpha(opacity=60);
}
.details .before_afte .cap {
	width: 100%;
	font-size: 13px;
	padding: 2px 4px;
	background: rgba(000,000,000, 0.4);
	color: #fff;
	-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;
}

/*スマホスライダー*/
.slider_top {
	width: 100%;
	margin-top: 20px;
}
.slider_top li {
	width: 100%;
	padding: 4% 0 0 0;
	margin: 0;
}
.slider01 {
	width: 100%;
	margin-top: 20px;
}
.slider01 li {
	/*width: 100%;*/
	/*padding: 20% 0 0 0;*/
	margin: 0;
}
@media only screen and (min-width: 768px) {
	.slick_slider {display: none;}
}
.slick-prev:before, .slick-next:before {
	color: #666 !important;
	opacity: 1 !important;
}
.slick-prev,.slick-next{
	width: 26px;
	height: 26px;
}
 .slick-prev:before, .slick-next:before {
	font-size: 26px;
}

.slick_block {
	width: 100%;
	background: #f7f7f7;
    margin-top: 60px;
}
.slick_slider {
	padding-bottom: 20px;
}




footer {margin-top: 100px;}


/*ページングここから*/
@media only screen and (min-width: 641px) {.pages_sp {display: none;}}
@media only screen and (max-width: 767px) {.pages_pc {display: none;}}
@media only screen and (max-width: 640px) {.pages_tb {display: none;}}
@media only screen and (min-width: 768px) {.pages_tb {display: none;}}
.pages_block {
	width: 100%;
	margin-top: 40px;
}
.pages {
	display: flex;
	justify-content: center;
	text-align: center;
	line-height: 24px;
	width: auto;
	margin: auto;
	list-style-type: none;
}
.pages li {
	margin: 0 1px;
	display: inline-block;
}
.pages i {
	display:none;
}
.pages li a,
.pages li b {
	display: block;
	padding: 6px 0px;
	line-height: 24px;
	font-weight: normal;
}
.pages li a {
	color: #4d4033;
	/*border: 1px solid #aaa;*/
	text-decoration: none;
}
.pages li b {
	color: #d30015;
	/*border: 1px solid #d30015;*/
	/*background-color: #d30015;*/
}
.pages li a:hover {
	color: #d30015;
	/*border: 1px solid #d30015;*/
	text-decoration: none;
	/*background-color: #d30015;*/
}
@media screen and (max-width : 970px){
	.pages li a,
	.pages li b {
		font-size: 18px;
		/*padding: 8px 6px 8px 6px;*/
	}
}
.pages li.link_side {
	padding-left: 0px;
	padding-right: 0px;
}
/*ページングここまで*/


/*遅延ロード※フッターにJS*/
.sa {
	opacity: 0;
	transition: all .5s ease;
}
.sa.show {
	opacity: 1;
	transform: none;
}
.sa--lr {
	transform: translate(-100px, 0);
}
.sa--rl {
	transform: translate(100px, 0);
}
.sa--up {
	transform: translate(0, 50px);
}
.sa--down {
	transform: translate(0, -100px);
}
.sa--scaleUp {
	transform: scale(.5);
}
.sa--scaleDown {
	transform: scale(1.5);
}
.sa--rotateL {
	transform: rotate(180deg);
}
.sa--rotateR {
	transform: rotate(-180deg);
}

/*改行  <span class="br">改行文字</span>*/
.br::before {
	content: "\A" ;
	white-space: pre ;
}

.clearfix {clear: both;}